summaryrefslogtreecommitdiff
path: root/src/wasm/wasm-validator.cpp
diff options
context:
space:
mode:
authorSam Clegg <sbc@chromium.org>2024-05-15 12:53:31 -0700
committerGitHub <noreply@github.com>2024-05-15 12:53:31 -0700
commit2b60f8a212c0e744d0dbf3346498b08c9a27a39e (patch)
treeee80a2e5a894c2af40972c269f2bb69089e9fdc0 /src/wasm/wasm-validator.cpp
parent2cc5e06549a4019eeed7303bfab32b95c32507bc (diff)
downloadbinaryen-2b60f8a212c0e744d0dbf3346498b08c9a27a39e.tar.gz
binaryen-2b60f8a212c0e744d0dbf3346498b08c9a27a39e.tar.bz2
binaryen-2b60f8a212c0e744d0dbf3346498b08c9a27a39e.zip
Add table64 lowering pass (#6595)
Changes to wasm-validator.cpp here are mostly for consistency between elem and data segment validation.
Diffstat (limited to 'src/wasm/wasm-validator.cpp')
-rw-r--r--src/wasm/wasm-validator.cpp42
1 files changed, 15 insertions, 27 deletions
diff --git a/src/wasm/wasm-validator.cpp b/src/wasm/wasm-validator.cpp
index bf7ebc620..74e9b6e79 100644
--- a/src/wasm/wasm-validator.cpp
+++ b/src/wasm/wasm-validator.cpp
@@ -3754,25 +3754,14 @@ static void validateDataSegments(Module& module, ValidationInfo& info) {
"active segment must have a valid memory name")) {
continue;
}
- if (memory->is64()) {
- if (!info.shouldBeEqual(segment->offset->type,
- Type(Type::i64),
- segment->offset,
- "segment offset should be i64")) {
- continue;
- }
- } else {
- if (!info.shouldBeEqual(segment->offset->type,
- Type(Type::i32),
- segment->offset,
- "segment offset should be i32")) {
- continue;
- }
- }
+ info.shouldBeEqual(segment->offset->type,
+ memory->indexType,
+ segment->offset,
+ "segment offset must match memory index type");
info.shouldBeTrue(
Properties::isValidConstantExpression(module, segment->offset),
segment->offset,
- "memory segment offset should be constant");
+ "memory segment offset must be constant");
FunctionValidator(module, &info).validate(segment->offset);
}
}
@@ -3846,31 +3835,30 @@ static void validateTables(Module& module, ValidationInfo& info) {
"elem",
"Non-nullable reference types are not yet supported for tables");
- if (segment->table.is()) {
+ bool isPassive = !segment->table.is();
+ if (isPassive) {
+ info.shouldBeTrue(
+ !segment->offset, "elem", "passive segment should not have an offset");
+ } else {
auto table = module.getTableOrNull(segment->table);
info.shouldBeTrue(table != nullptr,
"elem",
"element segment must have a valid table name");
- info.shouldBeTrue(!!segment->offset,
- "elem",
- "table segment offset should have an offset");
+ info.shouldBeTrue(
+ !!segment->offset, "elem", "table segment offset must have an offset");
info.shouldBeEqual(segment->offset->type,
- Type(Type::i32),
+ table->indexType,
segment->offset,
- "element segment offset should be i32");
+ "element segment offset must match table index type");
info.shouldBeTrue(
Properties::isValidConstantExpression(module, segment->offset),
segment->offset,
- "table segment offset should be constant");
+ "table segment offset must be constant");
info.shouldBeTrue(
Type::isSubType(segment->type, table->type),
"elem",
"element segment type must be a subtype of the table type");
validator.validate(segment->offset);
- } else {
- info.shouldBeTrue(!segment->offset,
- "elem",
- "non-table segment offset should have no offset");
}
for (auto* expr : segment->data) {
info.shouldBeTrue(Properties::isValidConstantExpression(module, expr),