summaryrefslogtreecommitdiff
path: root/src/wasm-interpreter.h
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-11-07 09:04:36 -0800
committerGitHub <noreply@github.com>2024-11-07 09:04:36 -0800
commite409660a5b4dff9891ddb7d4786cc510a5761d3e (patch)
tree7a6c907f6aaca91f72c0a4e0642c57ad3dd1cd29 /src/wasm-interpreter.h
parent0af8f1f2d7ff304837ee0698265c84985420fcae (diff)
downloadbinaryen-e409660a5b4dff9891ddb7d4786cc510a5761d3e.tar.gz
binaryen-e409660a5b4dff9891ddb7d4786cc510a5761d3e.tar.bz2
binaryen-e409660a5b4dff9891ddb7d4786cc510a5761d3e.zip
[wasm64] Make interpreter table methods operate on Address, not Index (#7062)
This allows 64-bit bounds checking to work properly.
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r--src/wasm-interpreter.h34
1 files changed, 13 insertions, 21 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h
index 7f1cf9054..1513b8f45 100644
--- a/src/wasm-interpreter.h
+++ b/src/wasm-interpreter.h
@@ -2598,7 +2598,7 @@ public:
virtual Literals callImport(Function* import,
const Literals& arguments) = 0;
virtual Literals callTable(Name tableName,
- Index index,
+ Address index,
HeapType sig,
Literals& arguments,
Type result,
@@ -2789,10 +2789,11 @@ public:
virtual Index tableSize(Name tableName) = 0;
- virtual void tableStore(Name tableName, Index index, const Literal& entry) {
+ virtual void
+ tableStore(Name tableName, Address index, const Literal& entry) {
WASM_UNREACHABLE("unimp");
}
- virtual Literal tableLoad(Name tableName, Index index) {
+ virtual Literal tableLoad(Name tableName, Address index) {
WASM_UNREACHABLE("unimp");
}
};
@@ -3141,13 +3142,11 @@ public:
}
auto index = target.getSingleValue().getUnsigned();
-
auto info = getTableInstanceInfo(curr->table);
if (curr->isReturn) {
// Return calls are represented by their arguments followed by a reference
// to the function to be called.
- // TODO: switch tableLoad index from Index to Address, to support table64.
auto funcref = info.interface()->tableLoad(info.name, index);
if (!Type::isSubType(funcref.type, Type(curr->heapType, NonNullable))) {
trap("cast failure in call_indirect");
@@ -3201,29 +3200,22 @@ public:
return index;
}
auto info = getTableInstanceInfo(curr->table);
- auto* table = info.instance->wasm.getTable(info.name);
- auto address = table->indexType == Type::i64
- ? index.getSingleValue().geti64()
- : index.getSingleValue().geti32();
+ auto address = index.getSingleValue().getUnsigned();
return info.interface()->tableLoad(info.name, address);
}
Flow visitTableSet(TableSet* curr) {
NOTE_ENTER("TableSet");
- Flow indexFlow = self()->visit(curr->index);
- if (indexFlow.breaking()) {
- return indexFlow;
+ Flow index = self()->visit(curr->index);
+ if (index.breaking()) {
+ return index;
}
- Flow valueFlow = self()->visit(curr->value);
- if (valueFlow.breaking()) {
- return valueFlow;
+ Flow value = self()->visit(curr->value);
+ if (value.breaking()) {
+ return value;
}
auto info = getTableInstanceInfo(curr->table);
- auto* table = info.instance->wasm.getTable(info.name);
- auto address = table->indexType == Type::i64
- ? indexFlow.getSingleValue().geti64()
- : indexFlow.getSingleValue().geti32();
- info.interface()->tableStore(
- info.name, address, valueFlow.getSingleValue());
+ auto address = index.getSingleValue().getUnsigned();
+ info.interface()->tableStore(info.name, address, value.getSingleValue());
return Flow();
}