diff options
author | Keith Winstein <208955+keithw@users.noreply.github.com> | 2024-12-17 19:06:57 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-17 19:06:57 -0800 |
commit | ea193b40d6d4a1a697d68ae855b2b3b3e263b377 (patch) | |
tree | 03e10d23cf9883f08657f69fa50c66a516ebe17f /wasm2c/wasm-rt.h | |
parent | 4e7d7efe6e9a786370848e669041bdc237730a8b (diff) | |
download | wabt-main.tar.gz wabt-main.tar.bz2 wabt-main.zip |
wasm2c: harmonize bulk mem ops re: i32/i64 (#2506) + parametrize memchecks per-memory (#2507)HEADmain
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).
Diffstat (limited to 'wasm2c/wasm-rt.h')
-rw-r--r-- | wasm2c/wasm-rt.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/wasm2c/wasm-rt.h b/wasm2c/wasm-rt.h index 05757087..c135fdcd 100644 --- a/wasm2c/wasm-rt.h +++ b/wasm2c/wasm-rt.h @@ -129,7 +129,7 @@ extern "C" { * needed (so we can use the guard based range checks below). */ #ifndef WASM_RT_USE_MMAP -#if UINTPTR_MAX > 0xffffffff && !SUPPORT_MEMORY64 +#if UINTPTR_MAX > 0xffffffff #define WASM_RT_USE_MMAP 1 #else #define WASM_RT_USE_MMAP 0 @@ -151,8 +151,7 @@ extern "C" { */ /** Check if Guard checks are supported */ -#if UINTPTR_MAX > 0xffffffff && WASM_RT_USE_MMAP && !SUPPORT_MEMORY64 && \ - !WABT_BIG_ENDIAN +#if UINTPTR_MAX > 0xffffffff && WASM_RT_USE_MMAP && !WABT_BIG_ENDIAN #define WASM_RT_GUARD_PAGES_SUPPORTED 1 #else #define WASM_RT_GUARD_PAGES_SUPPORTED 0 |