diff options
author | Heejin Ahn <aheejin@gmail.com> | 2024-05-15 12:36:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-15 12:36:00 -0700 |
commit | ae9499448c9221290f46eac26169db378fcd6997 (patch) | |
tree | 421f530a1bd76b77810c07b0bf0c771ac1c5653f /test/lit/passes/emit-exnref.wast | |
parent | b70d8dff27ccea2d4546909dba83bf8cae072aba (diff) | |
download | binaryen-ae9499448c9221290f46eac26169db378fcd6997.tar.gz binaryen-ae9499448c9221290f46eac26169db378fcd6997.tar.bz2 binaryen-ae9499448c9221290f46eac26169db378fcd6997.zip |
[EH] Rename option/pass names for new EH (exnref) (#6592)
We settled on the name `WASM_EXNREF` for the new setting in Emscripten
for the name for the new EH option.
https://github.com/emscripten-core/emscripten/blob/2bc5e3156f07e603bc4f3580cf84c038ea99b2df/src/settings.js#L782-L786
"New EH" sounds vague and I'm not sure if "experimental" is really
necessary anyway, given that the potential users of this option is aware
that this is a new spec that has been adopted recently.
To make the option names consistent, this renames `--translate-to-eh`
(the option that only runs the translator) to `--translate-to-exnref`,
and `--experimental-new-eh` to `--emit-exnref` (the option that runs the
translator at the end of the whole pipeline), and renames the pass and
variable names in the code accordingly as well.
In case anyone is using the old option names (and also to make the
Chromium CI pass), this does not delete the old options.
Diffstat (limited to 'test/lit/passes/emit-exnref.wast')
-rw-r--r-- | test/lit/passes/emit-exnref.wast | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/test/lit/passes/emit-exnref.wast b/test/lit/passes/emit-exnref.wast new file mode 100644 index 000000000..d203c2f10 --- /dev/null +++ b/test/lit/passes/emit-exnref.wast @@ -0,0 +1,28 @@ +;; When given alone, --emit-exnref just runs --translate-to-exnref +;; RUN: wasm-opt %s -all --translate-to-exnref -S -o %t1.wasm +;; RUN: wasm-opt %s -all --emit-exnref -S -o %t2.wasm +;; RUN: diff %t1.wasm %t2.wasm + +;; When given with other flags, --emit-exnref runs the translator after running +;; other passes. If --optimize-level >=3, --experimenal-new-eh also runs StackIR +;; (+ local2stack) optimization. So running '-O --emit-exnref' should be the +;; same as running all these passes separately. +;; RUN: wasm-opt %s -all -O --translate-to-exnref --optimize-level=3 --generate-stack-ir --optimize-stack-ir -o %t1.wasm +;; RUN: wasm-opt %s -all -O --emit-exnref -o %t2.wasm +;; RUN: diff %t1.wasm %t2.wasm + +(module + (import "env" "foo" (func $foo)) + (start $test) + (func $test + (try $l + (do + (call $foo) + ) + (catch_all + (call $foo) + (rethrow $l) + ) + ) + ) +) |