summaryrefslogtreecommitdiff
path: root/third_party
Commit message (Collapse)AuthorAgeFilesLines
...
* Update spec tests; rename {grow,current}_memory (#849)Ben Smith2018-05-271-0/+0
| | | | | | | | | `grow_memory` -> `memory.grow` `current_memory` -> `memory.size` This could have been a smaller change, but I took the opportunity to rename the Token types, Expr types, and callback functions too. Many of these are sorted alphabetically, so I resorted based on their new names.
* Update testsuite (#815)Ben Smith2018-03-161-0/+0
|
* Update testsuite (#780)Ben Smith2018-02-281-0/+0
| | | | * Fix edge case elem segment bounds checking * Fix bounds checking when importing spectest table
* Update testsuite (#757)Ben Smith2018-02-131-0/+0
| | | | | The spectest module's functions and globals are no longer overloaded, so their implementations in `spectest-interp` and `spec-wasm2c-prefix.c` have to be changed as well.
* Update testsuite; call_indirect has new syntax (#667)Ben Smith2017-11-111-0/+0
| | | | | | | | | | | | | | | | | | | | | | The `call_indirect` instruction now allows the type to be specified inline or via the common "type use" syntax (or both): ``` call_indirect (type $t1) ... call_indirect (param i32 f32) (result f64) ... call_indirect (type $t2) (param i32) ... ``` This means that `CallIndirectExpr` changes from storing a `Var` (the referenced func type) to a `FuncDeclaration`, which can store both a type use and a function signature. Most of the changes here are fallout from that change. The other major change is that function signature resolution and error checking now needs to iterate over a functions expr list looking for `call_indirect` instructions. I'm not sure if this is a significant overhead in parsing/validation yet, but there are plenty of ways to optimize it if it ends up in profiles.
* Validate utf-8 encoding in text format (#653)Ben Smith2017-10-141-0/+0
|
* Update testsuite (#648)Ben Smith2017-10-101-0/+0
|
* Update testsuite (#609)Ben Smith2017-09-041-0/+0
| | | | | | * Mostly just updating test expectations * Function signatures need to be checked as part of parsing (see assert_malformed test in `testsuite/func.wast`; added `ValidateFuncSignatures` for this.
* Update testsuite (#582)Ben Smith2017-07-261-0/+0
| | | | | | | * Implicit function types are now appended to the module, not directly after the function/import that uses them. * Float and int literals can have an underscore separating digits.
* Update testsuite (#566)Ben Smith2017-07-121-0/+0
|
* Update the testsuite; fix literal parsing issues (#515)Ben Smith2017-06-221-0/+0
| | | | | | | * Return error when floats overflow (used to return inf) * Significantly simplfy the significand parser in FloatParser::ParseHex * Add some new parse tests to hexfloat.cc; the previous tests only checked valid/canonical strings
* Update testsuite; more lexer/parser changes (#484)Ben Smith2017-06-111-0/+0
| | | | | | | | | | | | | | | | | | | | * Add support for quoted modules: `(module quote "...")` * Binary modules must be annotated: `(module binary "...")` * Multiple result blocks are no longer a parser error: `(func (result i32) (result i32) ...)` * Function types can specify unused bind variables: `(type (func (param $foo)))` * Rename `RawModule` -> `ScriptModule`. This encapsulates a module that may not be parsed yet, whether binary or "quoted". * Validate load/store offsets and alignment in the parser, not in the validator. The spec tests assume that you can catch these errors with `assert_malformed`. * Parse wast files in `wasm-interp` when checking malformed/invalid/etc. modules. This allows us to run all assertions at the same time, which is nice. `wasm-interp` should probably be renamed, though. * Two tests in `type.wast` fail because they use: `(assert_invalid (module quote "..."))`. I'd prefer that we don't support this, since it's unnecessary, and additional work. I'll fix in a follow-up CL if we decide this is worth keeping.
* Update testsuite; various lexing/parsing fixes (#482)Ben Smith2017-06-071-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Update testsuite; various lexing/parsing fixes Lexer changes: * Switch re2c parser to UTF-8 parser. This can almost be done "for free" with a flag, but required a bit of work to allow us to catch malformed UTF-8 as well. * Change the re2c fill value to 0xff, since it's never a valid UTF-8 byte. * Allow for more reserved tokens (basically any ascii aside from parentheses, double-quote, and semi-colon) * Remove "infinity" from lexer, only "inf" is allowed now. * Change definition of EOF token, it was implemented incorrectly. The correct way to handle it is to only return it from FILL when there is no more data to fill. * \r is a valid escape. Parser changes: * Changes to match the spec parser: - block signatures use (result <type>) syntax - func/global/table/memory can have multiple inline exports - inline imports are handled in func definition instead of import definition - allow for inline modules (i.e. no "(module ...)" s-expr required) * Remove FuncField. This was previously used for parsing params/results/locals, but it's less code to just parse right-recursive (i.e. backward) and insert everything at the front. This requires reversing the indexes in the BindingHash too. * Remove the nasty macros `APPEND_FIELD_TO_LIST`, `APPEND_ITEM_TO_VECTOR`, `APPEND_INLINE_EXPORT`, and `CHECK_IMPORT_ORDERING`. This behavior is all handled by `append_module_fields` now. * All inline imports/exports are handled by returning additional ModuleFields in a list. This removes the need for `OptionalExport`, `ExportedFunc`, `ExportedGlobal`, `ExportedTable`, and `ExportedMemory`. * Use "_opt" suffix instead of "non_empty_" prefix, e.g.: - text_list => text_list_opt, non_empty_text_list => text_list * The locations changed for some symbols, typically the use the name following the LPAR now, e.g. (import ^^^^^^ * Add PPA for re2c 0.16 * add -y to skip confirmation on travis
* Update testsuite; fix bug w/ \0 in export name (#444)Ben Smith2017-05-221-0/+0
|
* Implement UTF-8 validation, update testsuite (#429)Ben Smith2017-05-191-0/+0
| | | | This is enough to pass the testuite, but doesn't yet validate utf8 strings in the text format.
* Update the testsuite (#410)Ben Smith2017-04-261-0/+0
| | | | This exposed a small bug where an empty init expr would have type 0, which would print as "(null)" since it didn't exist.
* Update testsuite to spec f1b89dfaf379060c7e35eb90b7daeb14d4ade3f7 (#392)Ben Smith2017-04-061-0/+0
|
* Support arithmetic/canonical NaN; update testsuite (#368)Ben Smith2017-03-241-0/+0
| | | | | | | | | | | | | | | Positive NaN (+nan) is defined as being a NaN value where the sign bit is clear, the exponent is all ones, and the tag has only the "quiet" bit set. The quiet bit is the most-significant bit of the tag. For example, for a 32-bit float, +nan is 0x7cf00000. "Canonical NaN" is either +nan or -nan, where -nan is +nan with the sign bit set. "Arithmetic NaN" is defined as any other quiet NaN (i.e. the quiet bit must be set, but any other bit can be either 0 or 1.) This change doesn't update the interpreter because it is only a loosening of the previous NaN behavior.
* Update testsuite to 066e17da (spec e0778664) (#353)Ben Smith2017-03-141-0/+0
|
* Update wasm binary format label to 1 (#310)Derek Schuff2017-02-241-0/+0
| | | | | | | | | | | | * Update wasm binary format label to 1 Rebaseline tests, but no other changes. * Revert test/spec/globals.txt * Update testsuite * Update spec binary.wast test and testsuite repo
* Update testsuite (#311)Ben Smith2017-02-231-0/+0
| | | | | | Fixed a few typechecker errors: * br_table must have consistent type signature for all branch targets * if without else cannot have a signature
* Full typechecking for unreachable code (#302)Ben Smith2017-02-141-0/+0
| | | | | | | | | | | | | | | The typechecking is now shared between the validator and binary-reader-interpreter as well. * Shared the various LabelType enumerations -> WabtLabelType. * Fixed the "invalid depth" errors, the max value was incorrect. * Removed some tests that aren't useful anymore: - interp/if-then-br hasn't been useful for a while, but now is even less so because it doesn't validate without dropping the i32.const from the true branch - typecheck/bad-br-multi-type isn't possible because the block must specify the signature for the br. - typecheck/bad-label-multi-type used to test matching signature for fallthrough and br, but isn't possible because of block signatures.
* Update testsuite (#297)Ben Smith2017-01-291-0/+0
|
* Update testsuite (#291)Ben Smith2017-01-241-0/+0
| | | | | | | Also: * Check all data/elem segments before updating memory/tables * assert_exhaustion should check for call stack or value stack exhaustion. * Don't allow out-of-bound size 0 data segments
* Update testsuite (#269)Ben Smith2017-01-091-0/+0
| | | | Also, update assert_malformed to initialize the environment so the "spectest" module is available.
* Update testsuite to f71cbe72bd5f4fb871bee39a9dc1278fa662a8a5Ben Smith2016-12-151-0/+0
|
* Update testsuiteBen Smith2016-12-091-0/+0
| | | | | | | * Non-imported globals can not be used in initializer expressions * block/loop/if labels can be repeated at the end * get_global index in initializer expression should reference use module index space, not "defined" global index space
* Update spec testsBen Smith2016-11-071-0/+0
|
* Update testsuite and fix testsBen Smith2016-10-131-0/+0
| | | | | | | * `offset=` and `align=` can now specify hex values * data and elem segment offsets are now not checked; they can be out of order or overlapping, and even out-of-bounds if the size is zero * added the new tests `skip-stack-guard-page` and `unwind`
* update spec tests to HEAD (#122)Ben Smith2016-09-291-0/+0
| | | | | | This updates third_party/testsuite to the current head of the `binary_0xc` branch (https://github.com/WebAssembly/testsuite/commit/58c1bf67cc65a1219d49114c41805bafc75ac0c6), which is the collection of tests from the current head of the spec repo's `binary_0xc` branch (https://github.com/WebAssembly/spec/commit/0fa1531c2deebb767b263d405dbce849c9663f55).
* WIP - checker and binary/reader writer compileBen Smith2016-09-291-0/+0
|
* WIPBen Smith2016-09-291-0/+0
|
* update testsuite, and rebase some testsBen Smith2016-09-291-0/+0
|
* remove squirrel stuffBen Smith2016-09-061-0/+0
| | | | It was an interesting experiment, but it is not maintained or tested.
* update testsuite, handle implicit func types (#96)Ben Smith2016-08-041-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change 7c482b1a of the spec repo now requires that implicit function types are created when creating a new func or import, but only when the type is not explicitly specified, and the have not been specified. For example: ``` (func (param i32)) (import "foo" "bar" (result i32) ``` This was previously done in sexpr-wasm when writing the binary, but now these types can be referenced by `call_import`, so it has to be handled earlier. Since all signatures are now defined in the module, I made it so the function signature is shared with the module function types. The tricky part here is when a function type and an explicit signature are both specified: ``` (func (type $t) (param f32) ...) ``` In this case, we need to keep the explicit signature around long enough to be checked against the function type, so it must be owned by the function. The WASM_FUNC_DECLARATION_FLAG_SHARED_SIGNATURE flag specifies this case. To simplify code that uses the AST, I reverted many of the changes introduced in 73e5bc7d. Now the function declaration's signature is always valid to access, and will have been resolved if it was specified with a func type instead of an explicit signature. Some other changes: * There was a bug in the interpreter's `f32.demote/f64` rounding when given a value that is very close to positive or negative F32_MAX * Added `update-spec-tests.py` to more easily update the spec tests in `test/interp/spec/*.txt` from the files in `third_party/testsuite/*.wast`. Previously I would just do it manually.
* functions have an implicit block scope (#91)Ben Smith2016-07-061-0/+0
| | | | | `(func (br 0))` is valid, because the function introduces an implicit block scope. This change also updates the testsuite (which has tests for this behavior).
* Update testsuite, and fix tests (#90)Ben Smith2016-06-241-0/+0
| | | | | | | | | | | | * Modify AST parser to disallow any other order than `param`, `result`, `local`. * Allow parsing all var integers as int64 (the lookups will fail later.) * Fix interpreter logic determining whether to adjust the stack; we were correctly handling the case where `unreachable` was being used in an expression (the value stack is adjusted "up" as if a value was actually produced), but the same behavior is required for `br`, `br_table` and `return`. * Add NAT token to lexer/parser, which is an integer value without a sign.
* remove JavaScript engine testing (#89)Ben Smith2016-06-173-10/+0
| | | | | It's not really the appropriate place to handle it. Now that we have wasm-wast and wasm-interp, we can at least verify that the tools are internally consistent.
* update testsuiteBen Smith2016-05-241-0/+0
|
* update spec testsBen Smith2016-05-181-0/+0
| | | | | | | | | * Parse memory pages as uint64, as we need to check whether it's invalid in assert_invalid, and one of the spec tests uses the value 2**32. * Update WASM_MAX_PAGES to 65535 (not 65536) * Add the new spec tests: binary.wast, break-drop.wast and typecheck.wast. A couple of these were added before, but weren't added as .txt files in the test directory.
* fix build-sm script to use GH archiveBen Smith2016-05-121-0/+1
| | | | | You can't git clone to a specific commit SHA, so we just download the source archive from Github.
* copy FindRE2C.cmake from CMakeXFindBen Smith2016-05-051-0/+0
| | | | | This makes it easier to build for users who don't run `git submodule update --init`.
* update v8, and fix testsBen Smith2016-04-291-0/+0
|
* rename memory_size -> current_memoryBen Smith2016-04-281-0/+0
| | | | | | | * current_memory and grow_memory return page size, not byte size * also update testsuite, which fixes a couple of spec tests * disable d8/spec tests (in a hacky way), because the binary_0xb v8 support isn't landed yet, so we can't easily test it
* add {run-,}gen-wasm.py; used to generate .wasmBen Smith2016-04-271-0/+0
| | | | These will be useful for testing the binary reader.
* lex using re2c instead of flexBen Smith2016-04-211-0/+0
|
* squirrel interpreter works for simple casesBen Smith2016-04-111-0/+0
| | | | It's pretty clunky though
* update v8Ben Smith2016-04-051-0/+0
|
* update testsuiteBen Smith2016-04-021-0/+0
|
* update testsuiteBen Smith2016-03-201-0/+0
|