Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | decompiler.cc: fix vector oob when if has empty then (#2334) | Hyxogen | 2023-11-20 | 2 | -1/+9 | |
| | ||||||
* | wasm2c: define null values of funcref and externref (#2330) | Willy R. Vasquez | 2023-11-16 | 1 | -2/+2 | |
| | | | | wasm_rt_funcref_null_value and wasm_rt_externref_null_value are changed to preprocessor macros for C and C++ compatibility | |||||
* | wasm2c: Improve address abstraction for BE support (#2328) | Soni L | 2023-11-14 | 12 | -509/+447 | |
| | ||||||
* | wasm2c: Fix test harness UB with SIMD (#2327) | Soni L | 2023-11-12 | 6 | -4/+63 | |
| | ||||||
* | Clean up WABT_BIG_ENDIAN handling in tests (#2326) | Soni L | 2023-11-12 | 2 | -6/+5 | |
| | ||||||
* | Avoid use of `typeof` as argument name (#2314) | walkingeyerobot | 2023-10-26 | 1 | -2/+2 | |
| | | | | While typeof is not a standard c++ keyword, it is in the gnu dialect (i.e. -std=gnu++17). Simply renaming typeof to typeoffunc and TypeOf to TypeOfFunc lets wabt be built with either dialect. | |||||
* | Version 1.0.34 (#2313) | Keith Winstein | 2023-10-24 | 1 | -1/+1 | |
| | ||||||
* | Update testsuite (#2287) | Keith Winstein | 2023-10-24 | 19 | -607/+364 | |
| | ||||||
* | wasm2c: implement the tail-call proposal (#2272) | Keith Winstein | 2023-10-24 | 22 | -141/+1768 | |
| | ||||||
* | feat: treat non-seekable files as pipes (#2309) | sethp | 2023-10-02 | 4 | -10/+24 | |
| | | | | | | | | | | | | | | | Previously, attempting to read from a pipe would result in an error: 'not a regular file', disallowing use of files like /dev/stdin or /dev/fd/3, named fifos, sockets, etc. The tools already understand how to (try to) read from non-regular files, so this change attempts to do so when the input is not seek-able (the "regular file" capability that's in use here). Additionally, this adds a test for the new behavior using a bash herestring and process substitution (the latter of which shows up in argv as something like `/dev/fd/NN`). Since bash isn't commonly installed on Windows, this change also introduces a new capability to filter tests to specific platforms (sorry). | |||||
* | Rename wasm-opcodecnt to wasm-stats (#2298) | Soni L | 2023-09-19 | 37 | -67/+65 | |
| | ||||||
* | WastParser: replace CircularArray with internal TokenQueue (NFC) (#2300) | Keith Winstein | 2023-09-18 | 5 | -410/+48 | |
| | ||||||
* | Implement custom section reading/writing (#2284) | Diego Frias | 2023-09-15 | 19 | -1274/+1531 | |
| | ||||||
* | c-writer.cc: clean up some handling of typevector structs (NFC) (#2296) | Keith Winstein | 2023-09-15 | 1 | -10/+13 | |
| | | | | | | - Only use "multivalue" to refer to a multi-value result type (not a tag type) - Deduplicate typevector struct declarations | |||||
* | Flip order of memory indexes on memory.copy (#2294) | Keith Winstein | 2023-09-11 | 18 | -40/+40 | |
| | | | | Reflects change in the multi-memory proposal: https://github.com/WebAssembly/multi-memory/pull/29 | |||||
* | [wasm2c] Use wasm_rt_memcpy everywhere in generated code (#2292) | Sam Clegg | 2023-09-09 | 8 | -120/+120 | |
| | ||||||
* | [wasm2c] Add '-Wno-array-bounds' when building wasm2c output (#2293) | Sam Clegg | 2023-09-08 | 1 | -0/+1 | |
| | | | | | | We are seeing some (spurious?) warning from gcc 12.2. I've been seeing them locally, but they started to show up in CI as part of #2292. | |||||
* | Share reading/validation code between elem exprs & other const exprs (#2288) | Keith Winstein | 2023-09-06 | 41 | -261/+369 | |
| | | | | | | This continues the work from #1783 and reduces special handling of elem exprs, by treating them the same as other const expressions (init expressions). | |||||
* | Add security policy (#2245) | Pedro Nacht | 2023-08-30 | 1 | -0/+14 | |
| | | | | Signed-off-by: Pedro Kaj Kjellerup Nacht <pnacht@google.com> Co-authored-by: Keith Winstein <keithw@cs.stanford.edu> | |||||
* | wasm2c: consolidate pack/unpack of tags & multi-value results (NFC) (#2286) | Keith Winstein | 2023-08-25 | 1 | -105/+84 | |
| | ||||||
* | Validator: normalize handling of Select in ExprVisitor Delegate (#2285) | Keith Winstein | 2023-08-23 | 4 | -14/+0 | |
| | | | | | | | | | Fixes #2283 Previously, the OnSelectExpr delegate would terminate validation if the SharedValidator found an error in the expression, or if the Validator had previously found an error at any point in validating the module. This commit normalizes the behavior to match how the Validator handles other expression types. | |||||
* | wasm-strip: add `-R/--remove-section` option (#2282) | Diego Frias | 2023-08-18 | 2 | -2/+52 | |
| | ||||||
* | wat-writer.cc: resolve missing type index in call_indirect (#2278) | Keith Winstein | 2023-07-31 | 2 | -2/+34 | |
| | ||||||
* | c-writer.cc: clean up handling of functions & tags (NFC) (#2271) | Keith Winstein | 2023-07-31 | 4 | -60/+52 | |
| | ||||||
* | c-writer.cc: eliminate redundant import_syms_ SymbolSet (NFC) (#2275) | Keith Winstein | 2023-07-31 | 1 | -23/+16 | |
| | ||||||
* | decompiler.cc: passive data segments do not have offsets (#2163) | mannkdev | 2023-07-30 | 2 | -1/+14 | |
| | ||||||
* | wasm2c: add link to clang bug on mips force read constraint | Shravan Narayan | 2023-07-30 | 8 | -0/+9 | |
| | ||||||
* | wasm2c: ensure force read constraints compile for clang on mips | Shravan Narayan | 2023-07-30 | 12 | -182/+254 | |
| | ||||||
* | Fix CI from upgraded cmake version on GitHub Ubuntu runner (#2273) | Keith Winstein | 2023-07-30 | 2 | -4/+4 | |
| | ||||||
* | C++20 compatibility fixes | Shravan Narayan | 2023-07-02 | 4 | -10/+10 | |
| | ||||||
* | wasm-objdump: Fix local numbering in disassembly (#2265) | Michael Williamson | 2023-06-27 | 4 | -3/+25 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, in BinaryReaderObjdumpDisassemble::BeginFunctionBody, we had: local_index_ = objdump_state_->function_param_counts[index]; where index is the index of the function i.e. we treat the keys of function_param_counts as function indices. However, function_param_counts is populated in OnFuncType with: objdump_state_->function_param_counts[index] = param_count; where index is the index of the type i.e. we treat the keys of function_param_counts as type indices. This discrepancy would cause the locals to be incorrectly numbered in the "Code Disassembly" section. This fixes the discrepancy by adding a new field, function_types, which maps from function indices to type indices, and is populated in BinaryReaderObjdump::OnFunction. This field is used in BinaryReaderObjdumpDisassemble::BeginFunctionBody to get the type index for the given function, which is then used to get the parameter count. Fixes #2264. | |||||
* | wasm2c: add cpp guard in wasm2c exceptions header | Shravan Narayan | 2023-06-22 | 1 | -0/+8 | |
| | ||||||
* | BinaryReader/Writer: roundtrip large memory64 offsets (#2255) | Keith Winstein | 2023-06-20 | 4 | -8/+21 | |
| | | | With memory64, the offset becomes a u64. | |||||
* | wasm2c: fix bug in windows atomic load macro | Shravan Narayan | 2023-06-19 | 2 | -8/+8 | |
| | ||||||
* | memory64: when enabled, check offset range at validation-time (#2253) | Keith Winstein | 2023-06-12 | 13 | -92/+189 | |
| | | | | | | | | | | | | | | | | * memory64: when enabled, offset range check is at validation-time Before memory64, the "offset" in a load/store expression was a u32, and we enforced this in the WastParser and BinaryReader. After memory64, the "offset" becomes a u64 syntactically, and the validator checks that it's <= UINT32_MAX for i32 memories. We hadn't been correctly allowing these very large offsets in the text format (even when memory64 was enabled and the memory was i64). (This change also eliminates the "memories" member in the BinaryReader. The BinaryReader no longer needs to keep track of the memories and their types to check well-formedness.) | |||||
* | Use tag or sha for tarball name since branch name can have arbitrary ↵ | Anuraag Agrawal | 2023-06-12 | 1 | -1/+1 | |
| | | | | characters (#2260) | |||||
* | Add build and publishing of wabt tools with wasi (#2254) | Anuraag Agrawal | 2023-06-12 | 4 | -48/+106 | |
| | ||||||
* | spectest-interp: assert_malformed must error in reader alone (#2252) | Keith Winstein | 2023-06-12 | 5 | -19/+96 | |
| | | | | | | Previously assert_malformed was treated the same as assert_invalid Also fixes a bug where spectest-interp wasn't trying to validate text modules (e.g. `(assert_invalid (module quote "...") "")`). | |||||
* | src/leb128.cc: fix detection of too-big u64 LEB128s (#2256) | Keith Winstein | 2023-06-09 | 2 | -2/+31 | |
| | ||||||
* | Add error when parameter size does not match on wasm-interp run-export (#2250) | Raphael Amorim | 2023-06-09 | 2 | -0/+16 | |
| | ||||||
* | binary-reader.cc: detect more malformed modules (#2251) | Keith Winstein | 2023-06-08 | 5 | -38/+29 | |
| | ||||||
* | WastParser: allow empty modules/scripts with warning (#2248) | Keith Winstein | 2023-06-07 | 4 | -6/+15 | |
| | ||||||
* | WastParser::ErrorExpected: ensure there is a token to consume (#2247) | Keith Winstein | 2023-06-07 | 2 | -1/+7 | |
| | | | Fixes assertion failure on empty quoted module | |||||
* | Upgrade SIMDe submodule to 0.7.6 + a few fixes (#2239) | Michael R. Crusoe | 2023-05-21 | 1 | -0/+0 | |
| | ||||||
* | wasm2c: partial support for atomic memory ops | Shravan Narayan | 2023-05-17 | 12 | -9/+1420 | |
| | ||||||
* | Version 1.0.33 (#2238) | Keith Winstein | 2023-05-12 | 1 | -1/+1 | |
| | ||||||
* | wasm2c: include simd128.h and wasm-rt-exceptions.h where necessary (#2236) | Keith Winstein | 2023-05-12 | 15 | -1218/+409 | |
| | | | Co-authored-by: Shravan Narayan <shravanrn@gmail.com> | |||||
* | Revert "Version 1.0.33" (#2237) | Keith Winstein | 2023-05-12 | 1 | -1/+1 | |
| | | | | | This reverts commit 0e6861f0480dfbb6461121463e0963391cc38ccf. Push misfire. | |||||
* | Version 1.0.33 | Keith Winstein | 2023-05-12 | 1 | -1/+1 | |
| | ||||||
* | wasm2c: Fix typo in testing harness (#2234) | Shravan Narayan | 2023-05-11 | 1 | -1/+1 | |
| |