summaryrefslogtreecommitdiff
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* [EH][GC] Send a non-nullable exnref from TryTable (#7013)Alon Zakai2024-10-171-0/+10
| | | | | | | | | | | | | | | When EH+GC are enabled then wasm has non-nullable types, and the sent exnref should be non-nullable. In BinaryenIR we use the non- nullable type all the time, which we also do for function references and other things; we lower it if GC is not enabled to a nullable type for the binary format (see `WasmBinaryWriter::writeType`, to which comments were added in this PR). That is, this PR makes us handle exnref the same as those other types. A new test verifies that behavior. Various existing tests are updated because ReFinalize will now use the more refined type, so this is an optimization. It is also a bugfix as in #6987 we started to emit the refined form in the fuzzer, and this PR makes us handle it properly in validation and ReFinalization.
* Add OCaml toolchain to binaryen readme (#6939)Ty Overby2024-09-131-0/+1
| | | | `wasm_of_ocaml` uses Binaryen's `wasm_as`, `wasm_merge` and `wasm_opt` as a part of its toolchain.
* Fix an unintentional list item in README.md (#6609)Trevor Elliott2024-05-201-1/+1
|
* Fix binary emitting of br_if with a refined value by emitting a cast (#6510)Alon Zakai2024-05-161-0/+10
| | | | | | | | | | | | | | | | This makes us compliant with the wasm spec by adding a cast: we use the refined type for br_if fallthrough values, and the wasm spec uses the branch target. If the two differ, we add a cast after the br_if to make things match. Alternatively we could match the wasm spec's typing in our IR, but we hope the wasm spec will improve here, and so this is will only be temporary in that case. Even if not, this is useful because by using the most refined type in the IR we optimize in the best way possible, and only suffer when we emit fixups in the binary, but in practice those cases are very rare: br_if is almost always dropped rather than used, in real-world code (except for fuzz cases and exploits). We check carefully when a br_if value is actually used (and not dropped) and its type actually differs, and it does not already have a cast. The last condition ensures that we do not keep adding casts over repeated roundtripping.
* Source maps: Allow specifying that an expression has no debug info in text ↵Jérôme Vouillon2024-05-141-0/+29
| | | | | | | | | | | | (#6520) ;;@ with nothing else (no source:line) can be used to specify that the following expression does not have any debug info associated to it. This can be used to stop the automatic propagation of debug info in the text parsers. The text printer has also been updated to output this comment when needed.
* [Strings] Work around ref.cast not working on string views, and add fuzzing ↵Alon Zakai2024-04-291-0/+8
| | | | | | | | | | | | | (#6549) As suggested in #6434 (comment) , lower ref.cast of string views to ref.as_non_null in binary writing. It is a simple hack that avoids the problem of V8 not allowing them to be cast. Add fuzzing support for the last three core string operations, after which that problem becomes very frequent. Also add yet another makeTrappingRefUse that was missing in that fuzzer code.
* Add a WebAssembly build to release (#6351)Alon Zakai2024-02-271-1/+32
| | | | | | | | | | | | | | | | | | | Simply build wasm-opt with Emscripten and bundle that up. Example build: https://github.com/kripken/binaryen/releases/tag/wasm-build-1 Specifically binaryen-wasm-build-1-wasm.tar.gz Only 1.72 MB, as it's just wasm-opt and not any other tool, so it is much smaller than our other targets. Perhaps we will add more of the tools later as needed (wasm-metadce, wasm-split, etc.). Also update the readme regarding which toolchains use us as a library, that I noticed while editing it to add the release platforms.
* [Docs] Clarify FAQ entry about name (#6241)Alon Zakai2024-01-291-6/+12
|
* Add `wasm-metadce` to tools list (#6248)Thomas Steiner2024-01-291-0/+2
|
* Add browser target for binaryen toolchain utilities (#6131)Thomas Steiner2023-11-211-3/+8
|
* Minor improvements for the `README` (#6009)Thomas Steiner2023-10-131-56/+56
| | | | | | | | * Link building instructions. * Add hint for building on macOS. * Some syntax highlighting fixes. * Minor formatting (code font, remove duplicate spaces, smart quotes,…).
* README.md: eliminate spurious import in wasm-merge sample output (#6006)Keith Winstein2023-10-121-1/+0
|
* [NFC] Document source maps and other debug support (#5911)Alon Zakai2023-08-301-0/+96
|
* Mention determinism in README.md (#5747)Alon Zakai2023-06-011-0/+2
|
* [Docs] Add docs for wasm-merge export handling flags (#5725)Alon Zakai2023-05-171-0/+32
|
* Reintroduce wasm-merge (#5709)Alon Zakai2023-05-161-0/+147
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We used to have a wasm-merge tool but removed it for a lack of use cases. Recently use cases have been showing up in the wasm GC space and elsewhere, as people are using more diverse toolchains together, for example a project might build some C++ code alongside some wasm GC code. Merging those wasm files together can allow for nice optimizations like inlining and better DCE etc., so it makes sense to have a tool for merging. Background: * Removal: #1969 * Requests: * wasm-merge - why it has been deleted #2174 * Compiling and linking wat files #2276 * wasm-link? #2767 This PR is a compete rewrite of wasm-merge, not a restoration of the original codebase. The original code was quite messy (my fault), and also, since then we've added multi-memory and multi-table which makes things a lot simpler. The linking semantics are as described in the "wasm-link" issue #2767 : all we do is merge normal wasm files together and connect imports and export. That is, we have a graph of modules and their names, and each import to a module name can be resolved to that module. Basically, like a JS bundler would do for JS, or, in other words, we do the same operations as JS code would do to glue wasm modules together at runtime, but at compile time. See the README update in this PR for a concrete example. There are no plans to do more than that simple bundling, so this should not really overlap with wasm-ld's use cases. This should be fairly fast as it works in linear time on the total input code. However, it won't be as fast as wasm-ld, of course, as it does build Binaryen IR for each module. An advantage to working on Binaryen IR is that we can easily do some global DCE after merging, and further optimizations are possible later.
* fix trivial typo (extra close paren) (#5197)William Stein2022-10-311-1/+1
|
* Fix 'C API' readme link (#5097)Brian Anderson2022-09-301-1/+1
|
* [Wasm GC] Support non-nullable locals in the "1a" form (#4959)Alon Zakai2022-08-311-0/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | An overview of this is in the README in the diff here (conveniently, it is near the top of the diff). Basically, we fix up nn locals after each pass, by default. This keeps things easy to reason about - what validates is what is valid wasm - but there are some minor nuances as mentioned there, in particular, we ignore nameless blocks (which are commonly added by various passes; ignoring them means we can keep more locals non-nullable). The key addition here is LocalStructuralDominance which checks which local indexes have the "structural dominance" property of 1a, that is, that each get has a set in its block or an outer block that precedes it. I optimized that function quite a lot to reduce the overhead of running that logic after each pass. The overhead is something like 2% on J2Wasm and 0% on Dart (0%, because in this mode we shrink code size, so there is less work actually, and it balances out). Since we run fixups after each pass, this PR removes logic to manually call the fixup code from various places we used to call it (like eh-utils and various passes). Various passes are now marked as requiresNonNullableLocalFixups => false. That lets us skip running the fixups after them, which we normally do automatically. This helps avoid overhead. Most passes still need the fixups, though - any pass that adds a local, or a named block, or moves code around, likely does. This removes a hack in SimplifyLocals that is no longer needed. Before we worked to avoid moving a set into a try, as it might not validate. Now, we just do it and let fixups happen automatically if they need to: in the common code they probably don't, so the extra complexity seems not worth it. Also removes a hack from StackIR. That hack tried to avoid roundtrip adding a nondefaultable local. But we have the logic to fix that up now, and opts will likely keep it non-nullable as well. Various tests end up updated here because now a local can be non-nullable - previous fixups are no longer needed. Note that this doesn't remove the gc-nn-locals feature. That has been useful for testing, and may still be useful in the future - it basically just allows nn locals in all positions (that can't read the null default value at the entry). We can consider removing it separately. Fixes #4824
* Move `auto_update_tests.py` into scripts directory. NFC (#4879)Sam Clegg2022-08-111-3/+12
| | | | So it lives alongside `update_lit_checks.py` and `update_help_checks.py`
* Allow `BINARYEN_DEBUG` environment variable to be used in place of ↵Sam Clegg2022-08-041-1/+5
| | | | | | | | | `--debug`. NFC (#4874) For example I found it useful to able to do something like this: ``` $ BINARYEN_DEBUG=post-emscripten ./test/runner sometest ```
* Enable sign-extension & bulk-memory features for binaryen.js builds (#4804)Max Graey2022-07-141-4/+4
| | | Also document minimal requirements for binaryen.js
* Add note on porting tests to README (#4782)Thomas Lively2022-07-081-0/+4
|
* Updating wasm-opt example to an available pass (#4684)Ashley Nelson2022-05-241-7/+6
| | | The wasm-opt example was using a test pass that was deleted. Updating to use one of the test passes in test/lit/passes.
* Update README.md (#4674)Ashley Nelson2022-05-181-1/+1
| | | Removing the command prompt so copy/paste is easier.
* Fix typo (WASM -> Wasm) (#4565)Clemens Backes2022-04-011-1/+1
|
* Add BUILD_TESTS CMake option (#4536)Thomas Lively2022-03-211-1/+3
| | | | Turning it off removes the build dependency on the third-party googletest library.
* [Docs] Document wasm-ctor-eval (#4493)Alon Zakai2022-02-031-2/+82
|
* Document submodule initialization in README (#4489)Thomas Lively2022-02-011-0/+9
| | | | | Add the missing initialization instructions to the `Building` section. Fixes #4488.
* Add an Intrinsics mechanism, and a call.without.effects intrinsic (#4126)Alon Zakai2021-09-101-0/+40
| | | | | | | | | | | | | | | | | | | | | | | | | An "intrinsic" is modeled as a call to an import. We could also add new IR things for them, but that would take more work and lead to less clear errors in other tools if they try to read a binary using such a nonstandard extension. A first intrinsic is added here, call.without.effects This is basically the same as call_ref except that the optimizer is free to assume the call has no side effects. Consequently, if the result is not used then it can be optimized out (as even if it is not used then side effects could have kept it around). Likewise, the lack of side effects allows more reordering and other things. A lowering pass for intrinsics is provided. Rather than automatically lower them to normal wasm at the end of optimizations, the user must call that pass explicitly. A typical workflow might be -O --intrinsic-lowering -O That optimizes with the intrinsic present - perhaps removing calls thanks to it - then lowers it into normal wasm - it turns into a call_ref - and then optimizes further, which would turns the call_ref into a direct call, potentially inline, etc.
* Remove out-of-date multivalue info in README (#4113)Thomas Lively2021-08-301-14/+5
| | | These paragraphs talked about push and pop, which are no longer relevant. More up-to-date information is already included above in the "Tree structure" section.
* Emit "elem declare" for functions that need it (#3653)Alon Zakai2021-03-041-0/+6
| | | | | | | This adds support for reading (elem declare func $foo .. in the text and binary formats. We can simply ignore it: we don't need to represent it in IR, rather we find what needs to be declared when writing. That part takes a little more work, for which this adds a shared helper function.
* Remove PostAssemblyScript passes (#3643)Daniel Wirtz2021-03-031-1/+1
|
* cleanup to allow binaryen to be built in more strict environments (#3566)walkingeyerobot2021-02-161-2/+3
|
* Document how to install lit test requirements [ci skip] (#3510)Alon Zakai2021-01-221-0/+4
|
* Replace "master" with "main" in scripts and docs (#3502)Thomas Lively2021-01-191-10/+10
| | | | We have updated the default branch name from "master" to "main." This PR updates scripts, configurations, and docs to reflect this change.
* Add an optimizer overview to the readme (#3210)Alon Zakai2020-10-091-10/+102
|
* Add mozjs, V8 and WABT setup script (#3053)Daniel Wirtz2020-09-141-0/+18
| | | Adds a new script `./third_party/setup.py` to conveniently install necessary dependencies for testing and fuzzing, including the SpiderMonkey JS shell (mozjs), the V8 JS shell and WABT. Other scripts now automatically pick these up when installed and fall back to look for the tools in PATH like before.
* Stay on C++14 for now (#3108)Daniel Wirtz2020-09-081-1/+1
| | | | | Switch us back to C++ standard support to 14 (for now), so we can easily upgrade again once the autoroller issues are resolved (atm the chromium roller does not have a libc++ with c++17 support).
* Upgrade to C++17 (#3103)Daniel Wirtz2020-09-061-1/+1
|
* Remove asm2wasm (#3042)Alon Zakai2020-08-171-58/+1
| | | | | | | Now that fastcomp has been removed from Emscripten, there is no need for the asm2wasm tool which it used to compile fastcomp's asm.js output to wasm. See emscripten-core/emscripten#11860
* Use consistent backquotes instead ordinal quotes for Grain in README (#3017)Max Graey2020-08-031-1/+1
|
* Update readme to include Grain [ci skip] (#2950)Alon Zakai2020-07-101-2/+3
|
* Add link to Github Action tab for badge (#2875)Max Graey2020-05-261-1/+1
|
* Update filer actions for CI badge (#2866)Max Graey2020-05-261-1/+1
|
* Update CI status badgeDerek Schuff2020-05-211-2/+1
|
* [NFC] Update readme to discuss tuples rather than push/pop (#2722)Thomas Lively2020-04-091-3/+5
| | | | | General multivalue and stacky code is now represented using tuples. Push should never be used and should be removed, and pop should only be used for exception catch blocks.
* Update build instructions in README (#2667)Thomas Lively2020-03-051-4/+6
|
* Use wat over wast for text format filenames (#2518)Sam Clegg2019-12-081-5/+5
|
* Document wasm-reduce in the readme (#2445)Alon Zakai2019-11-181-0/+6
|