diff options
author | Thomas Lively <tlively123@gmail.com> | 2024-12-02 16:03:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-03 00:03:21 +0000 |
commit | f331120e4b942a795d4a6b6d0d5a3d781c1e6a4c (patch) | |
tree | bb0a9a5b0d2bb19394d4259aa142796b7dd32461 /src/wasm/wasm-ir-builder.cpp | |
parent | 74782d217ed15dd73b58b1636c563aa51334a576 (diff) | |
download | binaryen-f331120e4b942a795d4a6b6d0d5a3d781c1e6a4c.tar.gz binaryen-f331120e4b942a795d4a6b6d0d5a3d781c1e6a4c.tar.bz2 binaryen-f331120e4b942a795d4a6b6d0d5a3d781c1e6a4c.zip |
Fixup block-nested pops even when EH is not enabled (#7130)
While parsing a binary file, there may be pops that need to be fixed up
even if EH is not (yet) enabled because the target features section has
not been parsed yet. Previously `EHUtils::handleBlockNestedPops` did not
do anything if EH was not enabled, so the binary parser would fail to
fix up pops in that case. Add an optional parameter to override this
behavior so the parser can fix up pops unconditionally.
Fixes #7127.
Diffstat (limited to 'src/wasm/wasm-ir-builder.cpp')
-rw-r--r-- | src/wasm/wasm-ir-builder.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wasm/wasm-ir-builder.cpp b/src/wasm/wasm-ir-builder.cpp index fcb1fc48d..a51337cda 100644 --- a/src/wasm/wasm-ir-builder.cpp +++ b/src/wasm/wasm-ir-builder.cpp @@ -1018,7 +1018,10 @@ Result<> IRBuilder::visitEnd() { func->body = maybeWrapForLabel(*expr); labelDepths.clear(); if (scope.needsPopFixup()) { - EHUtils::handleBlockNestedPops(func, wasm); + // We may be in the binary parser, where pops need to be fixed up before + // we know that EH will be enabled. + EHUtils::handleBlockNestedPops( + func, wasm, EHUtils::FeaturePolicy::RunIfNoEH); } this->func = nullptr; blockHint = 0; |