Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [WebAssembly] Remove old experimental disassemler code. | Dan Gohman | 2017-02-11 | 1 | -84/+2 |
| | | | | | | | Remove support for disassembling an old experimental wasm binary format, which is no longer in use anywhere. llvm-svn: 294809 | ||||
* | [WebAssembly] Add instruction definitions for drop and get/set_global. | Dan Gohman | 2017-02-02 | 1 | -0/+1 |
| | | | | llvm-svn: 293922 | ||||
* | [WebAssembly] Add an option to make get_local/set_local explicit. | Dan Gohman | 2016-10-24 | 1 | -0/+1 |
| | | | | | | | | | | This patch adds a pass, controlled by an option and off by default for now, for making implicit get_local/set_local explicit. This simplifies emitting wasm with MC. Differential Revision: https://reviews.llvm.org/D25836 llvm-svn: 285009 | ||||
* | Move the global variables representing each Target behind accessor function | Mehdi Amini | 2016-10-09 | 1 | -2/+2 |
| | | | | | | | | This avoids "static initialization order fiasco" Differential Revision: https://reviews.llvm.org/D25412 llvm-svn: 283702 | ||||
* | [WebAssembly] Rename OPERAND_FP32IMM to OPERAND_F32IMM. | Dan Gohman | 2016-10-03 | 1 | -2/+2 |
| | | | | | | | WebAssembly documentation consistently says "f32" rather than "fp32" to describe 32-bit floating-point. llvm-svn: 283146 | ||||
* | [WebAssembly] Implement support for custom NaN bit patterns. | Dan Gohman | 2016-02-16 | 1 | -1/+2 |
| | | | | llvm-svn: 260968 | ||||
* | Remove autoconf support | Chris Bieneman | 2016-01-26 | 1 | -16/+0 |
| | | | | | | | | | | | | | | | | Summary: This patch is provided in preparation for removing autoconf on 1/26. The proposal to remove autoconf on 1/26 was discussed on the llvm-dev thread here: http://lists.llvm.org/pipermail/llvm-dev/2016-January/093875.html "I felt a great disturbance in the [build system], as if millions of [makefiles] suddenly cried out in terror and were suddenly silenced. I fear something [amazing] has happened." - Obi Wan Kenobi Reviewers: chandlerc, grosbach, bob.wilson, tstellarAMD, echristo, whitequark Subscribers: chfast, simoncook, emaste, jholewinski, tberghammer, jfb, danalbert, srhines, arsenm, dschuff, jyknight, dsanders, joker.eph, llvm-commits Differential Revision: http://reviews.llvm.org/D16471 llvm-svn: 258861 | ||||
* | Update wasm target for r258819. | Benjamin Kramer | 2016-01-26 | 1 | -1/+1 |
| | | | | llvm-svn: 258827 | ||||
* | [WebAssembly] Implement unaligned loads and stores. | Dan Gohman | 2016-01-26 | 1 | -0/+1 |
| | | | | | | Differential Revision: http://reviews.llvm.org/D16534 llvm-svn: 258779 | ||||
* | [WebAssembly] Implement a prototype instruction encoder and disassembler. | Dan Gohman | 2016-01-12 | 4 | -0/+190 |
This is using an extremely simple temporary made-up binary format, not the official binary format (which isn't defined yet). llvm-svn: 257440 |