diff options
author | Alon Zakai <azakai@google.com> | 2021-09-30 17:54:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-30 17:54:05 -0700 |
commit | 65bcde2c30e82047a892332b95b114bc86f89614 (patch) | |
tree | fad936a8ed9b3275da50917bcebcbc235ab82600 /src/shell-interface.h | |
parent | ce8cdac461db4e0a3e178a59f8eb1447bfee51e1 (diff) | |
download | binaryen-65bcde2c30e82047a892332b95b114bc86f89614.tar.gz binaryen-65bcde2c30e82047a892332b95b114bc86f89614.tar.bz2 binaryen-65bcde2c30e82047a892332b95b114bc86f89614.zip |
Implement table.get (#4195)
Adds the part of the spec test suite that this passes (without table.set we
can't do it all).
Diffstat (limited to 'src/shell-interface.h')
-rw-r--r-- | src/shell-interface.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/shell-interface.h b/src/shell-interface.h index 96b96cf15..66608c37c 100644 --- a/src/shell-interface.h +++ b/src/shell-interface.h @@ -163,7 +163,6 @@ struct ShellExternalInterface : ModuleInstance::ExternalInterface { } auto& table = it->second; - if (index >= table.size()) { trap("callTable overflow"); } @@ -233,6 +232,21 @@ struct ShellExternalInterface : ModuleInstance::ExternalInterface { } } + Literal tableLoad(Name tableName, Address addr) override { + + auto it = tables.find(tableName); + if (it == tables.end()) { + trap("tableGet on non-existing table"); + } + + auto& table = it->second; + if (addr >= table.size()) { + trap("tableGet overflow"); + } + + return table[addr]; + } + bool growMemory(Address /*oldSize*/, Address newSize) override { // Apply a reasonable limit on memory size, 1GB, to avoid DOS on the // interpreter. |