| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
Add `Installation` section to readme to help the next person ❤️
|
|
|
|
| |
This adds support in the binary/text parsers and writers,
the validator and interpreter, and objdump (but not wasm2c).
|
| |
|
| |
|
|
|
| |
The footnote was removed in https://github.com/WebAssembly/wabt/commit/463b54d39fdc86f41875d185a450173cf236f1f9
|
| |
|
| |
|
|
|
| |
This change incorporates [simd-everywhere](https://github.com/simd-everywhere/simde) into the wasm2c output, which maps wasm SIMD C intrinsics to any supported target architecture.
|
|
|
|
|
|
|
| |
Note, there are still some issues here that needs to be resolved,
mostly about memory sandboxing (bounds checking).
Since this is still experimental I've also added a `--experimental` flag
to wasm2c that is required in addition to passing `--enable-memory64`.
|
|
|
|
| |
The instruction was removed from the Relaxed SIMD spec, so this
implementation is now up to date.
|
|
|
|
|
|
|
|
| |
This adds support for the new opcodes from the Relaxed SIMD proposal
(https://github.com/WebAssembly/relaxed-simd) behind the
"--enable-relaxed-simd" flag.
The exception is the f32x4.relaxed_dot_bf16x8_add_f32x4 instruction
which is not yet implemented.
|
|
|
|
| |
Restores current versions of all non-SIMD tests in the core testsuite
and multi-memory and exception-handling proposals.
|
|
|
| |
Co-authored-by: Yuhan Deng <yhdeng@stanford.edu>
|
|
|
| |
Closes #1716
|
|
|
| |
The name of the target is `emscripten-release`, for example.
|
|
|
|
|
| |
(The imports.txt and exports.txt tests require multi-table and
are disabled until reference types is supported.)
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Add Markdown link to https://github.com/WebAssembly/extended-const
to resolve currently-broken reference in the table above.
|
|
|
|
| |
Edited a word in line 311 from "undefine" to "undefined"
This resolves #1879
|
|
|
|
|
|
|
|
|
|
| |
The primary changes here are to the interpreter and how it handles
initializer expressions. With this change we model these are normal
function that we run during module initialization.
I imagine we could optimize this further by creating one long function
and encoding the `global.set`/`memory.init`/`table.init` into the
function itself, but this change seems like a good first step to make
the current tests pass.
|
| |
|
|
|
|
|
|
|
|
|
| |
This features was finished earlier this year:
https://github.com/WebAssembly/proposals/blob/master/finished-proposals.md
One thing to note is that the version of the spec tests we currently
have in third_party/testsuite doesn't have ref types merged yet so
this change disables ref types when running some of those tests. This
can be removed in a followup when we update the testsuite.
|
|
|
|
|
|
|
|
|
|
|
| |
This features was finished earlier this year:
https://github.com/WebAssembly/proposals/blob/master/finished-proposals.md
One thing to note is that the version of the spec tests we currently
have in third_party/testsuite doesn't have bulk memory merged yet so
this change disables bulk memory when running some of those tests. This
will be removed in a followup when we update the testsuite.
Fixes: #1717
|
|
|
|
|
| |
* SIMD is now phase 5, enable it by default
* Update test flags, rebase test, and docs
|
|
|
| |
Add submodule init before CMake commands. gtest and others will fail when running cmake without this.
|
|
|
|
|
| |
I'm tempted to followup by removing the "Unix Makefile" support
completely from the top level Makefile (users who really prefer that can
still run cmake directly of course).
|
| |
|
|
|
|
|
| |
Some proposals are enabled by default now, so the README should reflect that. Also, the flag was flipped to disable (rather than enable), so change that here too.
See issue #1513.
|
| |
|
|
|
|
| |
This is useful for reproducing bugs found by oss-fuzz (see
https://bugs.chromium.org/p/oss-fuzz/issues/list?q=wabt)
|
| |
|
|
|
| |
This primarily is documentation for the JSON format produced.
|
|
|
|
| |
Added a language description, a man page, and some links in the
general readme.
|
|
|
|
|
|
|
| |
- Allow `ref.func` for global initialization expressions
- Allow `nullref` as a full-fledged type, after
WebAssembly/reference-types#66
- Enable reference types when exnref is used (The reference types
proposal is a prerequisite of the EH proposal)
|
| |
|
|
|
| |
Closes #1154
|
| |
|
| |
|
|
|
| |
The basic instructions describe using `cmake ..` to generate the project files, but don't mention running `make`, etc.
|
|
|
|
|
| |
The current lexer uses re2c. It easy to change, but it generates a huge amount of code, and it's easy to forgot to update it.
This PR rewrites the lexer manually, and uses gperf instead to match keywords. The generated source is much smaller.
|
| |
|
|
|
| |
See issue #992.
|
| |
|
|
|
| |
Apparently some systems have trouble building using the `Makefile`, but can build using CMake directly (see #951, #822, and others). This will at least give some clues about how to work around the bug.
|
| |
|
|
|
| |
Fixes #924.
|