opnsense-src/contrib/llvm/lib/Target/WebAssembly
2015-08-12 18:31:11 +00:00
..
InstPrinter Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
MCTargetDesc Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
TargetInfo Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
README.txt Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssembly.h
WebAssembly.td
WebAssemblyFrameLowering.cpp
WebAssemblyFrameLowering.h
WebAssemblyInstrAtomics.td Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblyInstrCall.td Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblyInstrConv.td Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblyInstrFloat.td Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblyInstrFormats.td Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblyInstrInfo.cpp
WebAssemblyInstrInfo.h
WebAssemblyInstrInfo.td Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblyInstrInteger.td Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblyInstrMemory.td Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblyInstrSIMD.td Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblyISelDAGToDAG.cpp
WebAssemblyISelLowering.cpp Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblyISelLowering.h
WebAssemblyMachineFunctionInfo.cpp
WebAssemblyMachineFunctionInfo.h
WebAssemblyRegisterInfo.cpp Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblyRegisterInfo.h Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblyRegisterInfo.td Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblySelectionDAGInfo.cpp Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblySelectionDAGInfo.h Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblySubtarget.cpp Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00
WebAssemblySubtarget.h
WebAssemblyTargetMachine.cpp
WebAssemblyTargetMachine.h
WebAssemblyTargetObjectFile.h
WebAssemblyTargetTransformInfo.cpp
WebAssemblyTargetTransformInfo.h Update llvm/clang to r242221. 2015-08-12 18:31:11 +00:00

//===-- README.txt - Notes for WebAssembly code gen -----------------------===//

This WebAssembly backend is presently in a very early stage of development.
The code should build and not break anything else, but don't expect a lot more
at this point.

For more information on WebAssembly itself, see the design documents:
  * https://github.com/WebAssembly/design/blob/master/README.md

The following documents contain some information on the planned semantics and
binary encoding of WebAssembly itself:
  * https://github.com/WebAssembly/design/blob/master/AstSemantics.md
  * https://github.com/WebAssembly/design/blob/master/BinaryEncoding.md

Interesting work that remains to be done:
* Write a pass to restructurize irreducible control flow. This needs to be done
  before register allocation to be efficient, because it may duplicate basic
  blocks and WebAssembly performs register allocation at a whole-function
  level. Note that LLVM's GPU code has such a pass, but it linearizes control
  flow (e.g. both sides of branches execute and are masked) which is undesirable
  for WebAssembly.
* Basic relooper to expose control flow as an AST.
* Figure out how to properly use MC for virtual ISAs. This may require some
  refactoring of MC.

//===---------------------------------------------------------------------===//