diff options
author | Sam Clegg <sbc@chromium.org> | 2021-10-18 11:54:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-18 11:54:59 -0700 |
commit | 61be173f4b4754cf6e46408a6fd21e175fc8eb7c (patch) | |
tree | 49728637adcda20550279cd6390613501ccefeb4 /src/interp | |
parent | 669d32b09920c41bec6a4524c0f2c371483ad12c (diff) | |
download | wabt-61be173f4b4754cf6e46408a6fd21e175fc8eb7c.tar.gz wabt-61be173f4b4754cf6e46408a6fd21e175fc8eb7c.tar.bz2 wabt-61be173f4b4754cf6e46408a6fd21e175fc8eb7c.zip |
Update testsuite (#1738)
bulk-memory-operations and reference-types were completely
removed from the upstream testsuite becuase there were
merged into the upstream spec:
https://github.com/WebAssembly/testsuite/pull/44
In order to land this I had to disable several spec tests
under wasm2c because it lacks support for mutli-table and
reference types. I filed #1737 to track this.
Diffstat (limited to 'src/interp')
-rw-r--r-- | src/interp/interp.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/interp/interp.cc b/src/interp/interp.cc index 05a40bd4..e5daa6fe 100644 --- a/src/interp/interp.cc +++ b/src/interp/interp.cc @@ -456,6 +456,9 @@ Result Table::Grow(Store& store, u32 count, Ref ref) { u32 new_size; if (store.HasValueType(ref, type_.element) && CanGrow<u32>(type_.limits, old_size, count, &new_size)) { + // Grow the limits of the table too, so that if it is used as an + // import to another module its new size is honored. + type_.limits.initial += count; elements_.resize(new_size); Fill(store, old_size, ref, new_size - old_size); return Result::Ok; @@ -529,6 +532,9 @@ Result Memory::Match(class Store& store, Result Memory::Grow(u64 count) { u64 new_pages; if (CanGrow<u64>(type_.limits, pages_, count, &new_pages)) { + // Grow the limits of the memory too, so that if it is used as an + // import to another module its new size is honored. + type_.limits.initial += count; #if WABT_BIG_ENDIAN auto old_size = data_.size(); #endif |