summaryrefslogtreecommitdiff
path: root/src/prebuilt/wasm2c_simd_source_declarations.cc
Commit message (Collapse)AuthorAgeFilesLines
* wasm2c: harmonize bulk mem ops re: i32/i64 (#2506) + parametrize memchecks ↵HEADmainKeith Winstein2024-12-171-20/+26
| | | | | | | | | | | | | | | | | per-memory (#2507) The PR updates the bulk memory operations (memory.fill, memory.copy, table.fill, etc.) to support 64-bit addresses and counts. Previously these functions only took u32's, even with memory64 enabled. (#2506) This PR also allows "software-bounds-checked" memories and "guard-page-checked" memories to coexist in the same module. It creates two versions of every memory operation: an unrestricted version (that works with any memory) and a _default32 version (for memories with default page size and i32 indexing). (#2507) #2506 and #2507 have been squashed together to avoid a performance regression. This is a stepping stone to supporting custom-page-sizes (which will need to be software-bounds-checked) (#2508).
* Add macOS arm64 support and CI testing (#2406)Soni L2024-03-261-0/+4
|
* wasm2c: Implement big-endian SIMD (#2340)Soni L2024-02-061-5/+439
|
* wasm2c: Improve address abstraction for BE support (#2328)Soni L2023-11-141-4/+4
|
* wasm2c: ensure force read constraints compile for clang on mipsShravan Narayan2023-07-301-2/+2
|
* wasm2c: include simd128.h and wasm-rt-exceptions.h where necessary (#2236)Keith Winstein2023-05-121-0/+224
Co-authored-by: Shravan Narayan <shravanrn@gmail.com>