diff options
author | Soni L. <EnderMoneyMod@gmail.com> | 2024-10-01 19:56:23 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-01 15:56:23 -0700 |
commit | 84ea5d3e3caa92389cec39825cc79140312f6712 (patch) | |
tree | 6df506192ee722bb1bf1e36c9e7192a3e62aa4d3 /test/regress/interp-ehv3-locals.txt | |
parent | 790bc0472552d80671bdf99ba7652876c463d526 (diff) | |
download | wabt-84ea5d3e3caa92389cec39825cc79140312f6712.tar.gz wabt-84ea5d3e3caa92389cec39825cc79140312f6712.tar.bz2 wabt-84ea5d3e3caa92389cec39825cc79140312f6712.zip |
wasm-interp: Fix catch handlers' value stack sizes (#2478)
Fixes the value stack size of the catch handler. There were two
(related) issues here:
- The previous code used `func_->locals.size()` as soon as the function
was available, but it hadn't processed the function's locals yet, so it
was always empty. (This might not matter in practice, as it's only used
by the "function-wide catch handler", which just rethrows.)
- The previous code didn't take the function's locals into account when
computing the value stack height (relative to the function frame) for a
try-catch block. So, it would drop the locals when catching an
exception.
Closes #2476
(Split from #2470 )
Diffstat (limited to 'test/regress/interp-ehv3-locals.txt')
-rw-r--r-- | test/regress/interp-ehv3-locals.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/regress/interp-ehv3-locals.txt b/test/regress/interp-ehv3-locals.txt new file mode 100644 index 00000000..e4f05c83 --- /dev/null +++ b/test/regress/interp-ehv3-locals.txt @@ -0,0 +1,22 @@ +;;; TOOL: run-interp-spec +;;; ARGS*: --enable-exceptions +;;; NOTE: ref: issue-2476 +(module + (tag $e0) + (func (export "broken-local") (result i32) + (local $value i32) + (try $try + (do + (local.set $value (i32.const 1)) + (throw $e0) + ) + (catch $e0) + ) + (local.get $value) + ) +) + +(assert_return (invoke "broken-local") (i32.const 1)) +(;; STDOUT ;;; +2/2 tests passed. +;;; STDOUT ;;) |