summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-12-12 11:34:26 -0800
committerGitHub <noreply@github.com>2024-12-12 11:34:26 -0800
commit52bc45fc34ec6868400216074744147e9d922685 (patch)
tree6a8859bbf7824dbc8bed30ddf2c9f64d61860a3a /src/tools
parent0b54d74c7ae7e81035a41a4710dca82df19b8638 (diff)
downloadbinaryen-52bc45fc34ec6868400216074744147e9d922685.tar.gz
binaryen-52bc45fc34ec6868400216074744147e9d922685.tar.bz2
binaryen-52bc45fc34ec6868400216074744147e9d922685.zip
Execution results: JS traps on exnref on the boundary (#7147)
Fixes #7145
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/execution-results.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/execution-results.h b/src/tools/execution-results.h
index bffc4e8f2..b8823c3f0 100644
--- a/src/tools/execution-results.h
+++ b/src/tools/execution-results.h
@@ -187,8 +187,8 @@ public:
Literals arguments;
for (const auto& param : func->getParams()) {
// An i64 param can work from JS, but fuzz_shell provides 0, which errors
- // on attempts to convert it to BigInt. v128 cannot work at all.
- if (param == Type::i64 || param == Type::v128) {
+ // on attempts to convert it to BigInt. v128 and exnref are disalloewd.
+ if (param == Type::i64 || param == Type::v128 || param.isExn()) {
throwEmptyException();
}
if (!param.isDefaultable()) {
@@ -200,9 +200,9 @@ public:
// Error on illegal results. Note that this happens, as per JS semantics,
// *before* the call.
for (const auto& result : func->getResults()) {
- // An i64 result is fine: a BigInt will be provided. But v128 still
- // errors.
- if (result == Type::v128) {
+ // An i64 result is fine: a BigInt will be provided. But v128 and exnref
+ // still error.
+ if (result == Type::v128 || result.isExn()) {
throwEmptyException();
}
}