8000 Tags · johnhues/WAVM · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: johnhues/WAVM

Tags

nightly/2020-09-16

Toggle nightly/2020-09-16's commit message
Fix the utf-8 form check issue

From table 3-7 in the Unicode Standard 9.0, the valid range of the
second byte should be [0x80, 0x9F] when the first byte is 0xED

Signed-off-by: Xiaokang Qin <xiaokang.qxk@antgroup.com>

nightly/2020-08-21

Toggle nightly/2020-08-21's commit message
Merge latest tests from spec repos:

- Fix WAVM ignoring unused bits of the memory/table type flags. It now throws a serialization exception if any unknown bits are set on load.
- Change serialization of non-standard ExternKind::exceptionType to avoid conflict with a malformed binary test.

nightly/2020-08-07

Toggle nightly/2020-08-07's commit message
Update tests from spec repos, and update WAVM to pass them:

- Serialize extended opcodes as u32 instead of u7.
- Don't allow sign on text format SIMD lane indices.

nightly/2020-07-06

Toggle nightly/2020-07-06's commit message
Fix `isSubtype(ReferenceType, ReferenceType)` getting out of sync wit…

…h `isSubtype(ValueType, ValueType)`.

nightly/2020-05-28

Toggle nightly/2020-05-28's commit message
Make wasm_module_new_text produce an error if the input string is not…

… null terminated.

Previously, it added a null terminator to all input strings, which resulted in a lexer error if the input string was already null terminated.
Fixes WAVM#264

nightly/2020-05-13

Toggle nightly/2020-05-13's commit message
[simd] Add more address overflow tests

Echo to github.com/WebAssembly/spec/pull/1188,
add more address overflow tests with offset set
to `1` and address set to `-1`, which may be complied
differently.

nightly/2020-04-12

Toggle nightly/2020-04-12's commit message
Renamed/renumbered WAVM's ltz_mask to match the proposed bitmask inst…

…ruction.

nightly/2020-04-11

Toggle nightly/2020-04-11's commit message
Build WASI tests with latest SDK

nightly/2020-04-07

Toggle nightly/2020-04-07's commit message
[simd] Further improvement for simd_integer_op.py

- Use a more descriptive parameter name
- Rename saturate() as _saturate() to make it clear that
  it is a private implementation detail

This is pulled from WebAssembly/simd@cca1413

nightly/2020-03-30

Toggle nightly/2020-03-30's commit message
[simd] Fixed mismatched op names in comments

0