diff options
author | Thomas Lively <tlively@google.com> | 2023-03-10 15:30:37 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-10 21:30:37 +0000 |
commit | a389185799e39368856bc8b6a3f10eb713fc0643 (patch) | |
tree | 1ad07beddf2a9ad79c2c4e967cf7eeee58b43f77 /src/ir/properties.h | |
parent | 271312d06760eb3b1d8de1206cc6d00e2cf30d42 (diff) | |
download | binaryen-a389185799e39368856bc8b6a3f10eb713fc0643.tar.gz binaryen-a389185799e39368856bc8b6a3f10eb713fc0643.tar.bz2 binaryen-a389185799e39368856bc8b6a3f10eb713fc0643.zip |
Make constant expression validation stricter (#5557)
Previously we treated global.get as a constant expression and only
additionally verified that the target globals were immutable in some cases. But
global.get of a mutable global is never a constant expression, and further,
only imported globals are available in constant expressions unless GC is
enabled.
Fix constant expression validation to only allow global.get of immutable,
imported globals, and fix all the invalid tests.
Diffstat (limited to 'src/ir/properties.h')
-rw-r--r-- | src/ir/properties.h | 23 |
1 files changed, 3 insertions, 20 deletions
diff --git a/src/ir/properties.h b/src/ir/properties.h index 43f74ceb8..0fee67ad2 100644 --- a/src/ir/properties.h +++ b/src/ir/properties.h @@ -453,26 +453,9 @@ inline bool canEmitSelectWithArms(Expression* ifTrue, Expression* ifFalse) { // bool isGenerative(Expression* curr, FeatureSet features); -inline bool isValidInConstantExpression(Expression* expr, FeatureSet features) { - if (isSingleConstantExpression(expr) || expr->is<GlobalGet>() || - expr->is<StructNew>() || expr->is<ArrayNew>() || - expr->is<ArrayNewFixed>() || expr->is<I31New>() || - expr->is<StringConst>()) { - return true; - } - - if (features.hasExtendedConst()) { - if (expr->is<Binary>()) { - auto bin = static_cast<Binary*>(expr); - if (bin->op == AddInt64 || bin->op == SubInt64 || bin->op == MulInt64 || - bin->op == AddInt32 || bin->op == SubInt32 || bin->op == MulInt32) { - return true; - } - } - } - - return false; -} +// Whether this expression is valid in a context where WebAssembly requires a +// constant expression, such as a global initializer. +bool isValidConstantExpression(Module& wasm, Expression* expr); } // namespace wasm::Properties |