summaryrefslogtreecommitdiff
path: root/src/wasm/wasm-validator.cpp
diff options
context:
space:
mode:
authorDerek Schuff <dschuff@chromium.org>2024-12-06 12:34:19 -0800
committerGitHub <noreply@github.com>2024-12-06 20:34:19 +0000
commit729ea41d145d369b203dca6f70b251ea365cb3d0 (patch)
tree269217c2d17d6e8a4a59eb6b822aa4cdac17aa28 /src/wasm/wasm-validator.cpp
parent3f82ffc70362bf967d91d3cb56ee4c8c5ebe1161 (diff)
downloadbinaryen-729ea41d145d369b203dca6f70b251ea365cb3d0.tar.gz
binaryen-729ea41d145d369b203dca6f70b251ea365cb3d0.tar.bz2
binaryen-729ea41d145d369b203dca6f70b251ea365cb3d0.zip
Add bulk-memory-opt feature and ignore call-indirect-overlong (#7139)
LLVM recently split the bulk-memory-opt feature out from bulk-memory, containing just memory.copy and memory.fill. This change follows that, making bulk-memory-opt also enabled when all of bulk-memory is enabled. It also introduces call-indirect-overlong following LLVM, but ignores it, since Binaryen has always allowed the encoding (i.e. command line flags enabling or disabling the feature are accepted but ignored).
Diffstat (limited to 'src/wasm/wasm-validator.cpp')
-rw-r--r--src/wasm/wasm-validator.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/wasm/wasm-validator.cpp b/src/wasm/wasm-validator.cpp
index e295d3931..242e07c43 100644
--- a/src/wasm/wasm-validator.cpp
+++ b/src/wasm/wasm-validator.cpp
@@ -1526,10 +1526,10 @@ void FunctionValidator::visitDataDrop(DataDrop* curr) {
}
void FunctionValidator::visitMemoryCopy(MemoryCopy* curr) {
- shouldBeTrue(
- getModule()->features.hasBulkMemory(),
- curr,
- "Bulk memory operations require bulk memory [--enable-bulk-memory]");
+ shouldBeTrue(getModule()->features.hasBulkMemoryOpt(),
+ curr,
+ "memory.copy operations require bulk memory operations "
+ "[--enable-bulk-memory-opt]");
shouldBeEqualOrFirstIsUnreachable(
curr->type, Type(Type::none), curr, "memory.copy must have type none");
auto* destMemory = getModule()->getMemoryOrNull(curr->destMemory);
@@ -1561,9 +1561,9 @@ void FunctionValidator::visitMemoryCopy(MemoryCopy* curr) {
void FunctionValidator::visitMemoryFill(MemoryFill* curr) {
auto* memory = getModule()->getMemoryOrNull(curr->memory);
shouldBeTrue(
- getModule()->features.hasBulkMemory(),
+ getModule()->features.hasBulkMemoryOpt(),
curr,
- "Bulk memory operations require bulk memory [--enable-bulk-memory]");
+ "memory.fill operations require bulk memory [--enable-bulk-memory-opt]");
shouldBeEqualOrFirstIsUnreachable(
curr->type, Type(Type::none), curr, "memory.fill must have type none");
shouldBeEqualOrFirstIsUnreachable(