summaryrefslogtreecommitdiff
path: root/src/c-writer.cc
Commit message (Expand)AuthorAgeFilesLines
* wasm2c: harmonize bulk mem ops re: i32/i64 (#2506) + parametrize memchecks pe...HEADmainKeith Winstein2024-12-171-1/+18
* binary/wat: Implement EHv4 (#2470)Soni L.2024-11-201-0/+2
* wasm2c: Reset the segment register after call_indirect as the register may ha...Shravan Narayan2024-10-181-0/+3
* wasm2c: Cleanup of handling of WASM_RT_USE_SEGUE macroShravan Narayan2024-10-141-2/+5
* wasm2c: Fix handling of locals in setjmp targets (#2479)Soni L.2024-10-011-14/+35
* wasm2c: Use wrappers for function references (#2465)Soni L.2024-09-231-6/+64
* wasm2c: Add segue option to make exclusive use of the segment registerShravan Narayan2024-09-181-1/+5
* wasm2c: Segue support for CPUs without wrgsbase instructionsShravan Narayan2024-09-061-3/+3
* wasm2c: Segue optimization for modules with a single unshared memory (#2395)Shravan Narayan2024-06-261-2/+62
* Update testsuite and implement table64 (#2418)Sam Clegg2024-05-151-4/+12
* Fix bug in wasm2c's tail-call optimization code generation (#2420)Christian Nieves2024-05-141-1/+1
* wasm2c: Implement big-endian SIMD (#2340)Soni L2024-02-061-66/+64
* wasm2c: atomic and shared mem operations using c11Shravan Narayan2024-01-301-19/+41
* Fix emscripten build warning and add missing export (#2367)Changqing Jing2024-01-191-1/+1
* Avoid use of `typeof` as argument name (#2314)walkingeyerobot2023-10-261-2/+2
* wasm2c: implement the tail-call proposal (#2272)Keith Winstein2023-10-241-93/+486
* c-writer.cc: clean up some handling of typevector structs (NFC) (#2296)Keith Winstein2023-09-151-10/+13
* Share reading/validation code between elem exprs & other const exprs (#2288)Keith Winstein2023-09-061-2/+11
* wasm2c: consolidate pack/unpack of tags & multi-value results (NFC) (#2286)Keith Winstein2023-08-251-105/+84
* c-writer.cc: clean up handling of functions & tags (NFC) (#2271)Keith Winstein2023-07-311-49/+41
* c-writer.cc: eliminate redundant import_syms_ SymbolSet (NFC) (#2275)Keith Winstein2023-07-311-23/+16
* wasm2c: partial support for atomic memory opsShravan Narayan2023-05-171-5/+185
* wasm2c: include simd128.h and wasm-rt-exceptions.h where necessary (#2236)Keith Winstein2023-05-121-7/+57
* c-writer.cc: Correctly handle label names when branching out of try block (#2...Keith Winstein2023-05-081-2/+6
* Track use of SIMD and exceptions in IR, and CWriter includes support only if ...Keith Winstein2023-05-081-2/+2
* wasm2c: Enable exceptions and simd according to command line flagsShravan Narayan2023-05-021-0/+11
* c-writer.cc: cleanup name lookups to happen consistently in one place (NFC) (...Keith Winstein2023-04-271-9/+11
* c-writer.cc: Fix memory64 allocation when limits are >2^32 (#2213)Keith Winstein2023-04-221-5/+10
* wasm2c exception handling: fix unwinding after br inside try (#2204)Soni L2023-04-211-6/+6
* wasm2c: expose the initial and max size required from imported tablesShravan Narayan2023-04-111-10/+20
* wasm2c: Fix warning of missing std namespace in call to move (#2191)Shravan Narayan2023-04-081-1/+1
* wasm2c: multiple .c outputs (#2146)Yuhan Deng2023-04-051-30/+251
* Silence warnings on GCC 12 (#2177)Keith Winstein2023-03-221-1/+1
* c-writer.cc: Add local symbol prefix. (#2171)Yuhan Deng2023-03-151-14/+15
* Add new tests (#2168)Keith Winstein2023-03-131-5/+5
* wasm2c: implement the extended const expressions proposal (#2162)Keith Winstein2023-03-081-13/+85
* c-writer.cc: omit dummy_member in one case where it was unnecessary (NFC) (#2...Keith Winstein2023-02-251-1/+1
* wasm2c: cap blank lines between sections (NFC) (#2148)Keith Winstein2023-02-251-9/+20
* c-writer.cc: sanitize module/field names for use in C comments (NFC) (#2147)Keith Winstein2023-02-251-7/+24
* wasm2c: prettify/change name mangling (#2142)Keith Winstein2023-02-231-136/+317
* wasm2c: handle duplicate names between params/locals and labels (NFC) (#2137)Keith Winstein2023-02-071-33/+62
* wasm2c: add SIMD support (#2119)Willy R. Vasquez2023-01-291-36/+995
* wasm2c: serialize types at wasm2c-time (#2120)Keith Winstein2023-01-251-43/+115
* wasm2c: Initial implementation of memory64 (#2086)Sam Clegg2023-01-121-2/+3
* wasm2c: eliminate wasm_rt_register_tag() (#2122)Keith Winstein2023-01-111-39/+15
* wasm2c: mark manually formatted code in c-writerShravan Narayan2022-12-291-0/+8
* wasm2c: expose the initial and max size required from imported memoryShravan Narayan2022-12-291-8/+44
* Use C++17's [[maybe_unused]]. NFC (#2089)Sam Clegg2022-12-011-4/+6
* fix -Wunused-variable warnings when building without asserts (#2088)walkingeyerobot2022-12-021-4/+4
* wasm2c: handle duplicate names across module fields (#2035)Keith Winstein2022-11-301-155/+227