diff options
author | Keith Winstein <208955+keithw@users.noreply.github.com> | 2024-11-08 07:45:07 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-08 07:45:07 -0800 |
commit | 765b47d02aac894da80b74284263d1b487415aa0 (patch) | |
tree | 9e7275ddf2f8f3326c3a779e30a3aa963159ffa7 /include/wabt/binary.h | |
parent | c1d97e9c75c687faa81fe0ab4f1ac77c30487f47 (diff) | |
download | wabt-765b47d02aac894da80b74284263d1b487415aa0.tar.gz wabt-765b47d02aac894da80b74284263d1b487415aa0.tar.bz2 wabt-765b47d02aac894da80b74284263d1b487415aa0.zip |
Add support for the custom-page-sizes proposal (#2502)
This adds support in the binary/text parsers and writers,
the validator and interpreter, and objdump (but not wasm2c).
Diffstat (limited to 'include/wabt/binary.h')
-rw-r--r-- | include/wabt/binary.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/wabt/binary.h b/include/wabt/binary.h index ecf11a79..98575f96 100644 --- a/include/wabt/binary.h +++ b/include/wabt/binary.h @@ -24,7 +24,12 @@ #define WABT_BINARY_LIMITS_HAS_MAX_FLAG 0x1 #define WABT_BINARY_LIMITS_IS_SHARED_FLAG 0x2 #define WABT_BINARY_LIMITS_IS_64_FLAG 0x4 -#define WABT_BINARY_LIMITS_ALL_FLAGS \ +#define WABT_BINARY_LIMITS_HAS_CUSTOM_PAGE_SIZE_FLAG 0x8 +#define WABT_BINARY_LIMITS_ALL_MEMORY_FLAGS \ + (WABT_BINARY_LIMITS_HAS_MAX_FLAG | WABT_BINARY_LIMITS_IS_SHARED_FLAG | \ + WABT_BINARY_LIMITS_IS_64_FLAG | \ + WABT_BINARY_LIMITS_HAS_CUSTOM_PAGE_SIZE_FLAG) +#define WABT_BINARY_LIMITS_ALL_TABLE_FLAGS \ (WABT_BINARY_LIMITS_HAS_MAX_FLAG | WABT_BINARY_LIMITS_IS_SHARED_FLAG | \ WABT_BINARY_LIMITS_IS_64_FLAG) |