blob: 64991ad14071c0e1748f5aee08828e057e6f97e6 [file] [log] [blame]
Dan Gohman10e730a2015-06-29 23:51:55 +00001//===-- README.txt - Notes for WebAssembly code gen -----------------------===//
2
Dan Gohman68a423b2016-10-26 17:44:09 +00003This WebAssembly backend is presently under development.
Dan Gohman10e730a2015-06-29 23:51:55 +00004
Dan Gohman68a423b2016-10-26 17:44:09 +00005Currently the easiest way to use it is through Emscripten, which provides a
6compilation environment that includes standard libraries, tools, and packaging
7for producing WebAssembly applications that can run in browsers and other
8environments. For more information, see the Emscripten documentation in
9general, and this page in particular:
10 * https://github.com/kripken/emscripten/wiki/New-WebAssembly-Backend
Dan Gohman10e730a2015-06-29 23:51:55 +000011
Dan Gohman68a423b2016-10-26 17:44:09 +000012Other ways of using this backend, such as via a standalone "clang", are also
13under development, though they are not generally usable yet.
14
15For more information on WebAssembly itself, see the home page:
16 * https://webassembly.github.io/
17
18The following documents contain some information on the semantics and binary
19encoding of WebAssembly itself:
Dan Gohman5d3391f2016-10-24 20:35:17 +000020 * https://github.com/WebAssembly/design/blob/master/Semantics.md
Dan Gohman10e730a2015-06-29 23:51:55 +000021 * https://github.com/WebAssembly/design/blob/master/BinaryEncoding.md
22
JF Bastienf05f6fd2015-12-05 19:36:33 +000023The backend is built, tested and archived on the following waterfall:
JF Bastien4383a342016-01-22 04:21:49 +000024 https://wasm-stat.us
JF Bastienf05f6fd2015-12-05 19:36:33 +000025
Dan Gohman68a423b2016-10-26 17:44:09 +000026The backend's bringup is done in part by using the GCC torture test suite, since
27it doesn't require C library support. Current known failures are in
JF Bastienf05f6fd2015-12-05 19:36:33 +000028known_gcc_test_failures.txt, all other tests should pass. The waterfall will
29turn red if not. Once most of these pass, further testing will use LLVM's own
JF Bastienc2b30482015-12-09 13:29:32 +000030test suite. The tests can be run locally using:
JF Bastien4383a342016-01-22 04:21:49 +000031 https://github.com/WebAssembly/waterfall/blob/master/src/compile_torture_tests.py
JF Bastienf05f6fd2015-12-05 19:36:33 +000032
Dan Gohman10e730a2015-06-29 23:51:55 +000033//===---------------------------------------------------------------------===//
Dan Gohmandfa81d82015-11-20 03:08:27 +000034
Dan Gohmane0405332016-10-03 22:43:53 +000035Br, br_if, and br_table instructions can support having a value on the value
36stack across the jump (sometimes). We should (a) model this, and (b) extend
37the stackifier to utilize it.
Dan Gohmandfa81d82015-11-20 03:08:27 +000038
39//===---------------------------------------------------------------------===//
Dan Gohman753abf82015-12-06 19:29:54 +000040
Dan Gohmane0405332016-10-03 22:43:53 +000041The min/max instructions aren't exactly a<b?a:b because of NaN and negative zero
Dan Gohman753abf82015-12-06 19:29:54 +000042behavior. The ARM target has the same kind of min/max instructions and has
43implemented optimizations for them; we should do similar optimizations for
44WebAssembly.
45
46//===---------------------------------------------------------------------===//
47
48AArch64 runs SeparateConstOffsetFromGEPPass, followed by EarlyCSE and LICM.
49Would these be useful to run for WebAssembly too? Also, it has an option to
50run SimplifyCFG after running the AtomicExpand pass. Would this be useful for
51us too?
52
53//===---------------------------------------------------------------------===//
54
Dan Gohmane0405332016-10-03 22:43:53 +000055Register stackification uses the VALUE_STACK physical register to impose
Dan Gohman753abf82015-12-06 19:29:54 +000056ordering dependencies on instructions with stack operands. This is pessimistic;
57we should consider alternate ways to model stack dependencies.
58
59//===---------------------------------------------------------------------===//
60
61Lots of things could be done in WebAssemblyTargetTransformInfo.cpp. Similarly,
62there are numerous optimization-related hooks that can be overridden in
63WebAssemblyTargetLowering.
64
65//===---------------------------------------------------------------------===//
66
67Instead of the OptimizeReturned pass, which should consider preserving the
68"returned" attribute through to MachineInstrs and extending the StoreResults
69pass to do this optimization on calls too. That would also let the
70WebAssemblyPeephole pass clean up dead defs for such calls, as it does for
71stores.
72
73//===---------------------------------------------------------------------===//
74
Dan Gohman7f86ca12016-01-16 00:20:03 +000075Consider implementing optimizeSelect, optimizeCompareInstr, optimizeCondBranch,
76optimizeLoadInstr, and/or getMachineCombinerPatterns.
77
78//===---------------------------------------------------------------------===//
79
80Find a clean way to fix the problem which leads to the Shrink Wrapping pass
81being run after the WebAssembly PEI pass.
82
83//===---------------------------------------------------------------------===//
Dan Gohmanadf28172016-01-28 01:22:44 +000084
85When setting multiple local variables to the same constant, we currently get
86code like this:
87
88 i32.const $4=, 0
89 i32.const $3=, 0
90
91It could be done with a smaller encoding like this:
92
93 i32.const $push5=, 0
94 tee_local $push6=, $4=, $pop5
95 copy_local $3=, $pop6
96
97//===---------------------------------------------------------------------===//
Dan Gohman49187022016-02-08 03:42:36 +000098
99WebAssembly registers are implicitly initialized to zero. Explicit zeroing is
100therefore often redundant and could be optimized away.
101
102//===---------------------------------------------------------------------===//
Dan Gohman87e368b2016-02-19 19:22:44 +0000103
104Small indices may use smaller encodings than large indices.
Dan Gohman3a71ccb2016-02-20 23:11:14 +0000105WebAssemblyRegColoring and/or WebAssemblyRegRenumbering should sort registers
106according to their usage frequency to maximize the usage of smaller encodings.
Dan Gohman87e368b2016-02-19 19:22:44 +0000107
108//===---------------------------------------------------------------------===//
Dan Gohmane6b81362016-03-04 20:09:57 +0000109
Dan Gohmanddfa1a62016-03-09 04:17:36 +0000110Many cases of irreducible control flow could be transformed more optimally
111than via the transform in WebAssemblyFixIrreducibleControlFlow.cpp.
112
113It may also be worthwhile to do transforms before register coloring,
114particularly when duplicating code, to allow register coloring to be aware of
115the duplication.
116
117//===---------------------------------------------------------------------===//
Dan Gohman6627e5f2016-05-16 18:51:03 +0000118
119WebAssemblyRegStackify could use AliasAnalysis to reorder loads and stores more
120aggressively.
121
122//===---------------------------------------------------------------------===//
123
124WebAssemblyRegStackify is currently a greedy algorithm. This means that, for
125example, a binary operator will stackify with its user before its operands.
126However, if moving the binary operator to its user moves it to a place where
127its operands can't be moved to, it would be better to leave it in place, or
128perhaps move it up, so that it can stackify its operands. A binary operator
129has two operands and one result, so in such cases there could be a net win by
130prefering the operands.
131
132//===---------------------------------------------------------------------===//
Dan Gohmane045f672016-05-18 20:19:02 +0000133
134Instruction ordering has a significant influence on register stackification and
135coloring. Consider experimenting with the MachineScheduler (enable via
136enableMachineScheduler) and determine if it can be configured to schedule
137instructions advantageously for this purpose.
138
139//===---------------------------------------------------------------------===//
Dan Gohmane0405332016-10-03 22:43:53 +0000140
141WebAssembly is now officially a stack machine, rather than an AST, and this
142comes with additional opportunities for WebAssemblyRegStackify. Specifically,
143the stack doesn't need to be empty after an instruction with no return values.
144WebAssemblyRegStackify could be extended, or possibly rewritten, to take
145advantage of the new opportunities.
146
147//===---------------------------------------------------------------------===//