From 765b47d02aac894da80b74284263d1b487415aa0 Mon Sep 17 00:00:00 2001 From: Keith Winstein <208955+keithw@users.noreply.github.com> Date: Fri, 8 Nov 2024 07:45:07 -0800 Subject: 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). --- include/wabt/binary-reader.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'include/wabt/binary-reader.h') diff --git a/include/wabt/binary-reader.h b/include/wabt/binary-reader.h index 3d48f574..90161264 100644 --- a/include/wabt/binary-reader.h +++ b/include/wabt/binary-reader.h @@ -125,7 +125,8 @@ class BinaryReaderDelegate { std::string_view module_name, std::string_view field_name, Index memory_index, - const Limits* page_limits) = 0; + const Limits* page_limits, + uint32_t page_size) = 0; virtual Result OnImportGlobal(Index import_index, std::string_view module_name, std::string_view field_name, @@ -156,7 +157,9 @@ class BinaryReaderDelegate { /* Memory section */ virtual Result BeginMemorySection(Offset size) = 0; virtual Result OnMemoryCount(Index count) = 0; - virtual Result OnMemory(Index index, const Limits* limits) = 0; + virtual Result OnMemory(Index index, + const Limits* limits, + uint32_t page_size) = 0; virtual Result EndMemorySection() = 0; /* Global section */ -- cgit v1.2.3