Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [WebAssembly] Basic support for Wasm object file encoding. | Dan Gohman | 2017-02-24 | 1 | -1/+1 |
| | | | | | | | | | With the "wasm32-unknown-unknown-wasm" triple, this allows writing out simple wasm object files, and is another step in a larger series toward migrating from ELF to general wasm object support. Note that this code and the binary format itself is still experimental. llvm-svn: 296190 | ||||
* | [WebAssembly] Convert stackified IMPLICIT_DEF into constant 0. | Dan Gohman | 2016-11-08 | 1 | -0/+50 |
Since IMPLIFIT_DEF instructions are omitted in the output, when the output of an IMPLICIT_DEF instruction is stackified, the resulting register lacks an explicit push, leading to a push/pop mismatch. Fix this by converting such IMPLICIT_DEFs into CONST_I32 0 instructions so that they have explicit pushes. llvm-svn: 286274 |