diff options
author | Thomas Lively <tlively@google.com> | 2024-08-21 10:39:09 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-21 10:39:09 -0700 |
commit | 7889abf8137291cc591cac8f38570789ebaf354d (patch) | |
tree | 135b0de5f6ab7c696cfe0796f4a2f4b98901aabe /src/wasm-interpreter.h | |
parent | adf53b3b7606a16988b548fe5423b0272913a05a (diff) | |
download | binaryen-7889abf8137291cc591cac8f38570789ebaf354d.tar.gz binaryen-7889abf8137291cc591cac8f38570789ebaf354d.tar.bz2 binaryen-7889abf8137291cc591cac8f38570789ebaf354d.zip |
Support `ref.extern n` in spec tests (#6858)
Spec tests pass the value `ref.extern n`, where `n` is some integer,
into exported functions that expect to receive externrefs and receive
such values back out as return values. The payload serves to distinguish
externrefs so the test can assert that the correct one was returned.
Parse these values in wast scripts and represent them as externalized
i31refs carrying the payload. We will need a different representation
eventually, since some tests explicitly expect these externrefs to not
be i31refs, but this suffices to get several new tests passing.
To get the memory64 version of table_grow.wast passing, additionally fix
the interpreter to handle growing 64-bit tables correctly.
Delete the local versions of the upstream tests that can now be run
successfully.
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r-- | src/wasm-interpreter.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h index 1bf135c40..cbd2b31d6 100644 --- a/src/wasm-interpreter.h +++ b/src/wasm-interpreter.h @@ -3172,20 +3172,17 @@ public: } auto info = getTableInstanceInfo(curr->table); - Index tableSize = info.interface()->tableSize(info.name); + uint64_t tableSize = info.interface()->tableSize(info.name); auto* table = info.instance->wasm.getTable(info.name); Flow ret = Literal::makeFromInt64(tableSize, table->indexType); Flow fail = Literal::makeFromInt64(-1, table->indexType); - Index delta = deltaFlow.getSingleValue().geti32(); + uint64_t delta = deltaFlow.getSingleValue().getUnsigned(); - if (tableSize >= uint32_t(-1) - delta) { + uint64_t newSize; + if (std::ckd_add(&newSize, tableSize, delta)) { return fail; } - if (uint64_t(tableSize) + uint64_t(delta) > uint64_t(table->max)) { - return fail; - } - Index newSize = tableSize + delta; - if (newSize > WebLimitations::MaxTableSize) { + if (newSize > table->max || newSize > WebLimitations::MaxTableSize) { return fail; } if (!info.interface()->growTable( |