| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
| |
When a module is instantiated, and the start function traps, the
contents of the memory and the table may have been modified. This case
is handled by the `assert_uninstantiable` check in a wast test.
In spectest-interp, assert_uninstantiable would instantiate the module,
but was incorrectly resetting the environment. In run-spec-wasm2c, the
`assert_uninstantiable` tests weren't being run at all. Now the module's
`init` function is run, and it is expected to trap.
|
|
|
|
|
|
| |
The only benefit to LexerSourceFile is to read files that are larger
than can be loaded into memory. That probably is only a valuable feature
when loading GB-sized files on a 32-bit machine. I'm not certain that
it's worth the extra complexity.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Update v128.const WAT parsing to conform to the SIMD draft
* manually fix indentation
* rename no_lanes to lane_count
* Fix parsing of OOB integers
* Update simd shuffle tests to new syntax
* Add the v128.const type tokens to the lexer.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Even though we store f32 and f64 values as their representation, we
still use the underlying system's implementations for float operations.
These have non-deterministic behavior w.r.t. NaNs.
This change canoncalizes all NaNs where it is allowed. This excludes
`fxx.abs`, `fxx.neg`, `fxx.copysign` and `fxx.reinterpret*`, which
always work on the floating-point representation directly, and the
`fxx.convert*` instructions, which cannot be NaN because the input is an
integer.
|
|
|
|
|
|
| |
* `ParseHexdigit` allowed `g` as a hex character
* Overflow checking can't just check `old_value > new_value`, that fails
for many cases.
|
|
|
|
|
| |
It's legal in the wasm format to have a local type count of 0. I
originally made it illegal to fix a wabt bug, and didn't notice because
there were no spec tests for this behavior.
|
|
|
|
| |
draft (#1034)
|
|
|
| |
Also add new examples for some of the features.
|
|
|
|
|
| |
The lane-wise SIMD relational operators where setting false lanes to zero and
true lanes to 1, but according to the spec these operators clear all bits of
false lanes, and set all bits of true ones.
|
|
|
|
| |
Use `ObjdumpNames` struct to share similar code for mapping indexes to
names.
|
| |
|
|
|
|
|
|
|
| |
The `PrintInitExpr` function falsely treated f64 as a float instead of
a double.
The test case `global.txt` also contained the wrong output, namely
`0x0p+0` instead of `0x1p+2` for `(f64.const 4)`.
|
| |
|
|
|
|
|
|
|
|
|
| |
Also:
* Add feature limits on using v128 and anyref types (requires
--enable-simd and --enable-reference-types respectively).
* Separate out ParseValueType (used for params, locals, global types)
from ParseRefType (used for table types).
|
|
|
|
|
|
| |
* Added except_ref to be legal in a block type signature
* Added more support for event symbols.
|
| |
|
|
|
| |
Also fixed 2 asserts that could trigger on user data.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Add support for the reference types proposal
This commit adds support for the reference types proposal to wabt.
Namely it adds new opcodes like `table.{get,set,grow}` as well as adds a
new `anyref` type. These are plumbed throughout for various operations
in relatively simple fashions, no support was added for a subtyping
relationship between `anyref` and `anyfunc` just yet.
This also raises the restriction that multiple tables are disallowed,
allowing multiple tables to exist when `--enable-reference-types` is
passed.
* Allow nonzero table indices in `call_indirect`
Plumb support throughout for the `call_indirect` instruction (and
`return_call_indirect`) to work with multi-table modules according to
the reference types proposal.
|
|
|
|
|
|
| |
It takes two u32 immediates: the branch depth and an exception index. The
stack signature is `[expect_ref] -> [except_ref]`, so the `except_ref`
can be tested easily against multiple exception types.
|
|
|
|
|
|
|
|
|
|
|
|
| |
An event has a type-section index, like a function definition. The
current proposal doesn't specify the text format, so I assumed that it
would match the format of the other sections that reference function
types. This means that the following declaration styles are allowed:
```
(type $t (func (param i32)))
(event $e1 (type $t))
(event $e2 (param f32))
```
|
| |
|
|
|
|
|
|
|
| |
The exception section is now a known section with code 13, and is known
as the "Event" section.
The structure of the section has changed too, but I'll fix that in
another PR.
|
|
|
|
| |
It is no longer part of the exception proposal.
|
|
|
|
|
|
|
|
| |
#992
[ 49%] Linking CXX static library libwabt.a
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: libwabt.a(config.cc.o) has no symbols
/Library/Developer/CommandLineTools/usr/bin/ranlib: file: libwabt.a(config.cc.o) has no symbols
If I add a dummy function for clang, there's no ranlib error.
|
|
|
| |
See https://github.com/WebAssembly/tool-conventions/pull/95
|
|
|
| |
Since names are not always unique.
|
|
|
|
|
|
|
| |
`spectest-interp` used to return 0 (success) when tests failed, and
non-zero only if the source could not be parsed. It's more useful to
return non-zero if the tests fail too.
Fixes issue #1002.
|
|
|
| |
Carrying over renames from WebAssembly/bulk-memory-operations#46
|
|
|
|
|
|
| |
This commit updates wabt wrt to two recent PRs:
* WebAssembly/bulk-memory-operations#43
* WebAssembly/bulk-memory-operations#45
|
| |
|
|
|
|
|
| |
Also make explicit when are showing log2 alignment.
We could instead display actual byte alignment (1 << p2align)?
|
|
|
| |
Fixes issue #962.
|
|
|
| |
Fixes issue #989.
|
|
|
| |
They don't seem to be used anymore.
|
|
|
|
|
|
|
|
| |
This huge PR does all the renaming as described in issue #933. It also
updates to the latest testsuite so the new names are used.
The old names of the MVP instructions are still supported for
convenience (though we should remove those too at some point), but the
old simd and atomic instruction names are no longer supported.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Expressions need to be treated specially when folding an expression
with a result count > 1. Since the expression cannot be split, we can
only include it as a child of another expression if all of its values
are used, for example:
```
(func $dup (result i32 i32) ...)
(call $dup) ;; produces two values
(i32.add) ;; consumes two values
```
|
|
|
| |
This is useful for finding large functions with wasm-objdump.
|
|
|
|
|
| |
This field was recently added:
https://github.com/WebAssembly/tool-conventions/blob/master/DynamicLinking.md
|
|
|
|
|
|
| |
The `BindingHash` object is used to map from a name to an Index, and to
detect multiply-defined names. Since the locals and params use the same
Index space and namespace, they should always have been using the same
`BindingHash`.
|
|
|
|
|
|
|
| |
Similar to PR #512, duplicate locals are allowed in the `names` section,
but will produce an invalid wat file. We could support these properly
with custom annotations, but that isn't available yet. In the meantime,
we follow the same before as with functions and append `.1`, `.2`, etc
to the names to make them unique.
|
|
|
| |
This is way I should have implement it the first time around
|
| |
|
|
|
|
|
|
| |
If the function section is present, and has a non-zero count, then if
the code section is absent the module should not validate.
If either section is missing, but the count is zero it is OK.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Some instructions have very long encodings (longer than 9 bytes). For
those instructions, it is nice to write out all the bytes for that
instruction and their immediates. This used to be truncated, and
misaligned:
```
0002f1: fd 02 01 00 00 00 02 00 00 00 03 | v128.const 0x00000001 0x00000002 0x00000003 0x00000004
```
Now it is wrapped:
```
0002f0: fd 02 01 00 00 00 02 00 00 | v128.const 0x00000001 0x00000002 0x00000003 0x00000004
0002f9: 00 03 00 00 00 04 00 00 00 |
```
The instruction offset was also incorrect before for instructions with
a prefix, and is now fixed.
|
|
|
| |
Tests shamelessly borrowed with light editing from test/interp.
|
| |
|