index
:
forks/wabt.git
main
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
include
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue a nicer error message on wasm components. (#2515)
Dan Gohman
2024-12-06
1
-0
/
+2
*
interp: Implement EHv4 (#2512)
Soni L.
2024-11-20
1
-0
/
+2
*
binary/wat: Implement EHv4 (#2470)
Soni L.
2024-11-20
11
-1
/
+77
*
Add support for the custom-page-sizes proposal (#2502)
Keith Winstein
2024-11-08
12
-20
/
+44
*
[EH] Fix exnref's opcode (#2492)
Heejin Ahn
2024-10-21
1
-1
/
+1
*
type.h: Introduce ExnRef (#2489)
Soni L.
2024-10-17
1
-1
/
+5
*
wasm-interp: Fix catch handlers correctly (#2483)
Soni L.
2024-10-07
3
-0
/
+3
*
wasm2c: Use wrappers for function references (#2465)
Soni L.
2024-09-23
1
-0
/
+7
*
Add missing relocation types (and delete a non-existent one) (#2457)
SingleAccretion
2024-08-29
1
-2
/
+6
*
Avoid creating temporary vector copies when checking signature (#2435)
Michael Bradshaw
2024-06-24
1
-0
/
+4
*
Update opcode.def (#2434)
ttt
2024-06-22
1
-14
/
+14
*
Fix typo in token.def (#2433)
Michael Bradshaw
2024-06-21
1
-1
/
+1
*
Update testsuite and implement table64 (#2418)
Sam Clegg
2024-05-15
2
-9
/
+13
*
Update testsuite and corresponding update to comment parser (#2416)
Sam Clegg
2024-05-13
1
-2
/
+2
*
Add support for new WASM_SEGMENT_FLAG_RETAIN segment flag (#2399)
Yuta Saito
2024-03-11
1
-0
/
+1
*
Fix some whitespace in opcode.def. NFC (#2350)
Sam Clegg
2023-12-09
1
-4
/
+4
*
Add support for new WASM_SYMBOL_ABS symbol flag (#2305)
Sam Clegg
2023-11-28
1
-1
/
+2
*
Update ID for tag name subsection (#2336)
Michael Williamson
2023-11-27
1
-6
/
+2
*
wasm2c: implement the tail-call proposal (#2272)
Keith Winstein
2023-10-24
2
-0
/
+15
*
Rename wasm-opcodecnt to wasm-stats (#2298)
Soni L
2023-09-19
1
-0
/
+0
*
WastParser: replace CircularArray with internal TokenQueue (NFC) (#2300)
Keith Winstein
2023-09-18
2
-125
/
+16
*
Implement custom section reading/writing (#2284)
Diego Frias
2023-09-15
6
-0
/
+41
*
Flip order of memory indexes on memory.copy (#2294)
Keith Winstein
2023-09-11
6
-10
/
+10
*
Share reading/validation code between elem exprs & other const exprs (#2288)
Keith Winstein
2023-09-06
6
-23
/
+9
*
C++20 compatibility fixes
Shravan Narayan
2023-07-02
2
-3
/
+3
*
wasm-objdump: Fix local numbering in disassembly (#2265)
Michael Williamson
2023-06-27
1
-0
/
+1
*
memory64: when enabled, check offset range at validation-time (#2253)
Keith Winstein
2023-06-12
1
-10
/
+49
*
WastParser: allow empty modules/scripts with warning (#2248)
Keith Winstein
2023-06-07
1
-0
/
+1
*
wasm2c: partial support for atomic memory ops
Shravan Narayan
2023-05-17
1
-0
/
+1
*
Track use of SIMD and exceptions in IR, and CWriter includes support only if ...
Keith Winstein
2023-05-08
2
-2
/
+8
*
wasm2c: Enable exceptions and simd according to command line flags
Shravan Narayan
2023-05-02
1
-0
/
+3
*
wasm-objdump: Include function names in "init functions" subsection (#2202)
Sam Clegg
2023-04-20
3
-3
/
+3
*
wasm2c: multiple .c outputs (#2146)
Yuhan Deng
2023-04-05
1
-1
/
+18
*
Improve lexing and parsing of invalid annotations (again) (#2166)
Keith Winstein
2023-03-10
1
-1
/
+1
*
Always do a full roundtrip in run-roundtrip.py (#1661)
Sam Clegg
2023-02-28
1
-0
/
+4
*
Replace MakeUnique with c++14 std::make_unique (#2152)
Keith Winstein
2023-02-27
5
-53
/
+8
*
Add ARM64 windows compatibility (#2140)
Changqing Jing
2023-02-09
1
-2
/
+2
*
wasm2c: serialize types at wasm2c-time (#2120)
Keith Winstein
2023-01-25
1
-0
/
+31
*
Use inline keyword over WABT_INLINE. NFC (#2092)
Sam Clegg
2022-12-02
2
-4
/
+4
*
Reduce code duplication in MemcpyEndianAware definition. NFC (#2087)
Sam Clegg
2022-12-01
2
-20
/
+12
*
Implement Relaxed SIMD proposal (#1994)
Marcus Better
2022-11-30
8
-8
/
+92
*
wasm2c: handle duplicate names across module fields (#2035)
Keith Winstein
2022-11-30
1
-1
/
+1
*
interp: Replace condition for including `type` field in `Value` (#2071)
Remko Tronçon
2022-11-16
1
-1
/
+2
*
Switch from `typedef` to using `using` in C++ code. NFC (#2066)
Sam Clegg
2022-11-15
11
-112
/
+112
*
Prefer `constexpr` over `static const`. NFC (#2065)
Sam Clegg
2022-11-15
9
-19
/
+19
*
Use C++ versions of standard headers. NFC (#2064)
Sam Clegg
2022-11-15
4
-6
/
+6
*
add missing include (#2063)
walkingeyerobot
2022-11-15
1
-0
/
+1
*
Update testsuite (#2054)
Sam Clegg
2022-11-13
1
-2
/
+5
*
Convert type checks to assertions in the interpreter. NFC (#2055)
Sam Clegg
2022-11-11
1
-1
/
+1
*
Align `memory.copy` arg types with `memory64` proposal (#2024)
Adam Bratschi-Kaye
2022-11-01
1
-1
/
+1
[next]