diff options
author | Thomas Lively <tlively@google.com> | 2024-11-15 14:44:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-15 11:44:20 -0800 |
commit | ce1a2b480ae89e65b4d94e1bb3332c5980e2479f (patch) | |
tree | ae2a03df656e0519f47f33983e4197841782c362 /src/wasm/wasm-ir-builder.cpp | |
parent | 49c45ac1675d787e7151f9beafcae479936aa9f3 (diff) | |
download | binaryen-ce1a2b480ae89e65b4d94e1bb3332c5980e2479f.tar.gz binaryen-ce1a2b480ae89e65b4d94e1bb3332c5980e2479f.tar.bz2 binaryen-ce1a2b480ae89e65b4d94e1bb3332c5980e2479f.zip |
Reset function context when ending a function in IRBuilder (#7081)
IRBuilder contains a pointer to the current function that is used to
create scratch locals, look up the operand types for returns, etc. This
pointer is nullable because IRBuilder can also be used in non-function
contexts such as global initializers. Visiting the start of a function
sets the function pointer, and after this change visiting the end of a
function resets the pointer to null. This avoids potential problems
where code outside a function would be able to incorrectly use scratch
locals and returns if the IRBuilder had previously been used to build a
function.
This change requires some adjustments to Outlining, which visits code
out of order, so ends up visiting code from inside a function after
visiting the end of the function. To support this use case, add a
`setFunction` method to IRBuilder that lets the user explicitly control
its function context. Also remove the optional function pointer
parameter to the IRBuilder constructor since it is less flexible and not
used.
Diffstat (limited to 'src/wasm/wasm-ir-builder.cpp')
-rw-r--r-- | src/wasm/wasm-ir-builder.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wasm/wasm-ir-builder.cpp b/src/wasm/wasm-ir-builder.cpp index 5e5decca4..398db68ff 100644 --- a/src/wasm/wasm-ir-builder.cpp +++ b/src/wasm/wasm-ir-builder.cpp @@ -981,6 +981,7 @@ Result<> IRBuilder::visitEnd() { if (scope.needsPopFixup()) { EHUtils::handleBlockNestedPops(func, wasm); } + this->func = nullptr; } else if (auto* block = scope.getBlock()) { assert(*expr == block); block->name = scope.label; |