Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix typo in --finalize-table-base short name to -ftb (#972) | Wink Saville | 2017-04-19 | 1 | -1/+1 |
| | |||||
* | handle unsigned float-to-int properly in asm2wasm | Alon Zakai (kripken) | 2017-04-18 | 1 | -3/+17 |
| | |||||
* | Fix bustage (#975) | Alon Zakai | 2017-04-18 | 1 | -0/+5 |
| | | | | | | * support -g in wasm-opt, which makes it easier to upgrade binaries for bustage * upgrade binaries in test/merge to new names section format | ||||
* | wasm-merge tool (#919) | Alon Zakai | 2017-04-17 | 5 | -1/+653 |
| | | | | wasm-merge tool: combines two wasm files into a larger one, handling collisions, and aware of the dynamic linking conventions. it does not do full static linking, but may eventually. | ||||
* | Replace text annotations with explicit file/line for debug info (#967) | Derek Schuff | 2017-04-13 | 3 | -10/+16 |
| | | | Rather than storing debug info as text annotations, store explicit file and line information. This will make it easier to experiment with outputting other serializations or representations (e.g. source maps), and will allow outputting debug info for binaries as well. | ||||
* | Extensible name section (#933) | pipcet | 2017-04-13 | 2 | -20/+51 |
| | | | | | | | | | | | | | See https://github.com/WebAssembly/binaryen/issues/914. * extensible name section support: read function names, too * c-api-unused-mem.txt: change expected size to match new name section * * check subsection size matches * print warning for unknown name subsections (including the local section) | ||||
* | s2wasm: Add command line option for importing memory (#963) | Max Klein | 2017-04-12 | 1 | -1/+7 |
| | | | | | | This option allows to import the linear memory from JS code instead of exporting it. --emscripten-glue does this too but often the emscripten glue isn't needed, so this option only affects the memory. All the code necessary for importing the memory basically already exists, so nothing except for the command line option itself had to be added. | ||||
* | Don't iterate over removed-but-not-erased functions (#961) | jgravelle-google | 2017-04-07 | 1 | -1/+2 |
| | |||||
* | Fix build with gcc 7 (#957) | Morris Hafner | 2017-03-29 | 2 | -2/+2 |
| | | | | 1. Add a missing <functional> include 2. Put the // fallthrough comment after the closing bracket so the compiler does not emit a implicit fallthrough warning. | ||||
* | New binaryen.js (#922) | Alon Zakai | 2017-03-24 | 9 | -175/+882 |
| | | | New binaryen.js implementation, based on the C API underneath and with a JS-friendly API on top. See docs under docs/ for API details. | ||||
* | Fix comparisons of sign-extends to weird constants (#956) | Alon Zakai | 2017-03-21 | 1 | -6/+31 |
| | | | | * fix eq/ne of sign-ext with a constant, when the constant can never be equal to it as it has the effective sign bit but not the upper bits above it set, which the sign-ext would emit | ||||
* | add a pass to log execution traces via instrumenting the code (#950) | Alon Zakai | 2017-03-16 | 4 | -1/+80 |
| | |||||
* | Skip .size directives that follow .import_global directives (#949) | jgravelle-google | 2017-03-16 | 1 | -1/+7 |
| | |||||
* | fix emitting of unreachable ifs (#944) | Alon Zakai | 2017-03-14 | 1 | -13/+11 |
| | |||||
* | finalize interim ifs in relooper, and other if handling issues (#940) | Alon Zakai | 2017-03-13 | 3 | -1/+14 |
| | |||||
* | Wasm h to cpp (#926) | jgravelle-google | 2017-03-10 | 26 | -1035/+1410 |
| | | | | | | | | | | | | | | | | | | | | | | | | * Move WasmType function implementations to wasm.cpp * Move Literal methods to wasm.cpp * Reorder wasm.cpp shared constants back to top * Move expression functions to wasm.cpp * Finish moving things to wasm.cpp * Split out Literal into its own .h/.cpp. Also factor out common wasm-type module * Remove unneeded/transitive includes from wasm.h * Add comment to try/check methods * Rename tryX/checkX methods to getXOrNull * Add missing include that should fix appveyor build breakage * More appveyor | ||||
* | optimize pow (#934) | Alon Zakai | 2017-03-10 | 4 | -0/+72 |
| | | | | | | * optimize pow(x,2) => x*x * optimize pow(x, 0.5) => sqrt(x) | ||||
* | fix sign-ext opt issues (#935) | Alon Zakai | 2017-03-09 | 1 | -11/+15 |
| | | | | | | * fix a bug where compared sign-exts of different sizes were turned into zero-exts * fix a bug where we consider an almost sign-ext as ok to change the sign of a load inside it, ignoring that the load has the extra shifting | ||||
* | use a single space for pretty printing of wasts, so massive wasts are less ↵ | Alon Zakai | 2017-03-09 | 1 | -1/+1 |
| | | | | unruly (#928) | ||||
* | Local CSE (#930) | Alon Zakai | 2017-03-08 | 5 | -0/+222 |
| | | | Simple local common subexpression elimination. Useful mostly to reduce code size (as VMs do GVN etc.). Enabled by default in -Oz. | ||||
* | Use 3 modes for potentially trapping ops in asm2wasm (#929) | Alon Zakai | 2017-03-07 | 2 | -56/+132 |
| | | | * use 3 modes for potentially trapping ops in asm2wasm: allow (just emit a potentially trapping op), js (do exactly what js does, even if it takes a slow ffi to do it), and clamp (avoid the trap by clamping as necessary) | ||||
* | stop doing dce in -O0, which was just need temporarily while browsers figure ↵ | Alon Zakai | 2017-03-06 | 1 | -3/+0 |
| | | | | out the spec (#932) | ||||
* | do not merge a drop out of an if if the sides have different types, then the ↵ | Alon Zakai | 2017-02-28 | 1 | -5/+9 |
| | | | | if would be invalid (#927) | ||||
* | asm2wasm import overloading fix (#924) | Alon Zakai | 2017-02-28 | 1 | -1/+2 |
| | | | | * asm2wasm should not promote an overloaded import result to f64 if it is a single type and void | ||||
* | Fixes compilation error on clang (#925) | Kazuki Oikawa | 2017-02-27 | 1 | -1/+1 |
| | |||||
* | fix BINARYEN_PASS_DEBUG option (#908) | Alon Zakai | 2017-02-23 | 6 | -5/+25 |
| | | | | | * fix BINARYEN_PASS_DEBUG option * Add isNested property to passRunner | ||||
* | Refactor AsmConstWalker to use smaller subfunctions (#923) | jgravelle-google | 2017-02-23 | 1 | -35/+61 |
| | | | | | | * Refactor AsmConstWalker to use smaller subfunctions * Replace cashew::IStrings with Names | ||||
* | Default Walker subclasses to using Visitor<SubType> (#921) | jgravelle-google | 2017-02-23 | 28 | -58/+58 |
| | | | | Most module walkers use PostWalker<T, Visitor<T>>, let that pattern be expressed as simply PostWalker<T> | ||||
* | Fully handle EM_ASM in s2wasm (#910) | jgravelle-google | 2017-02-23 | 5 | -29/+83 |
| | | | | | | | | | | | | * Fully handle EM_ASM in s2wasm * Iterate with size_ts, remember to erase from importsMap as well * Fix dot_s test EM_ASM signatures * Move Name out to its own file, support/name.h * Move removeImportsWithSubstring out of Module class | ||||
* | fix asm2wasm import type setting - set the type of used calls based o… (#920) | Alon Zakai | 2017-02-21 | 1 | -9/+16 |
| | | | | * fix asm2wasm import type setting - set the type of used calls based on the context, early, so it's valid in the optimizer | ||||
* | read unknown users sections as binary data stored on the Module (#918) | Alon Zakai | 2017-02-21 | 4 | -4/+29 |
| | |||||
* | allow traversing the inits of globals (#917) | Alon Zakai | 2017-02-21 | 1 | -1/+6 |
| | |||||
* | clean up raw pointer import->functionType, make it a Name like everything ↵ | Alon Zakai | 2017-02-17 | 11 | -33/+36 |
| | | | | else (#915) | ||||
* | allow traversing the offset inits of table/memory segments (#916) | Alon Zakai | 2017-02-17 | 1 | -2/+18 |
| | |||||
* | fix a sign/unsigned compare compiler warning | Alon Zakai | 2017-02-16 | 1 | -2/+2 |
| | |||||
* | finish PickLoadSigns pass | Alon Zakai | 2017-02-16 | 2 | -8/+10 |
| | |||||
* | refactor sign/zero extension code into nice headers, and prepare ↵ | Alon Zakai | 2017-02-16 | 7 | -97/+258 |
| | | | | PickLoadSigns pass | ||||
* | fix and clean up fallthrough logic in OptimizeInstructions | Alon Zakai (kripken) | 2017-02-16 | 1 | -22/+18 |
| | |||||
* | optimize a compare of a load_s and a sign-extend into a load_u and a cheaper ↵ | Alon Zakai (kripken) | 2017-02-16 | 1 | -0/+18 |
| | | | | zero-extend | ||||
* | take into account loads into local info in OptimizeInstructions | Alon Zakai (kripken) | 2017-02-16 | 1 | -7/+10 |
| | |||||
* | use local info about maxBits and sign-extendedness in OptimizeInstructions | Alon Zakai (kripken) | 2017-02-16 | 1 | -11/+120 |
| | | | | fix the maxBits of a signed load, which this uncovered - all the bits may be used in such a case | ||||
* | remove unneeded masks using getMaxBits | Alon Zakai (kripken) | 2017-02-16 | 1 | -3/+16 |
| | |||||
* | tiny refactoring in OptimizeInstructions, for clarity | Alon Zakai (kripken) | 2017-02-16 | 1 | -7/+8 |
| | |||||
* | fix fuzz testcase, xor maxBits is the max, not the min | Alon Zakai (kripken) | 2017-02-16 | 1 | -2/+2 |
| | |||||
* | handle fallthrough values in load_s/u and sign/zero-extend optimization | Alon Zakai (kripken) | 2017-02-16 | 1 | -6/+30 |
| | |||||
* | handle load in getMaxBits | Alon Zakai (kripken) | 2017-02-16 | 1 | -0/+2 |
| | |||||
* | handle tee_local in getMaxBits | Alon Zakai (kripken) | 2017-02-16 | 1 | -0/+3 |
| | |||||
* | optimize out a sign-ext into a store of the same size | Alon Zakai (kripken) | 2017-02-16 | 1 | -0/+6 |
| | |||||
* | optimize out add/sub of 0 | Alon Zakai (kripken) | 2017-02-16 | 1 | -1/+9 |
| | |||||
* | optimize sign-extends to a boolean | Alon Zakai (kripken) | 2017-02-16 | 1 | -0/+4 |
| |