diff options
author | Alon Zakai <azakai@google.com> | 2021-05-17 15:13:27 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-17 15:13:27 -0700 |
commit | f8bb9c228446998882edea012bf9fa3004262504 (patch) | |
tree | 5287729d4bcf75a3aba4e64e34aba1e5a5acd47f /test/passes/simplify-locals_all-features.txt | |
parent | 9f8fca1456fe754ead197b4f9899be190e978c92 (diff) | |
download | binaryen-f8bb9c228446998882edea012bf9fa3004262504.tar.gz binaryen-f8bb9c228446998882edea012bf9fa3004262504.tar.bz2 binaryen-f8bb9c228446998882edea012bf9fa3004262504.zip |
[Wasm GC] Heap2Local: Replace the allocation with null (#3893)
Previously we would try to stop using the allocation as much as possible,
for example not writing it to locals any more, and leaving it to other passes
to actually remove it (and remove gets of those locals etc.). This seemed
simpler and more modular, but does not actually work in some cases as
the fuzzer has found. Specifically, if we stop writing our allocation to
locals, then if we do a (ref.as_non_null (local.get ..)) of that, then we
will trap on the null present in the local.
Instead, this changes our rewriting to do slightly more work, but it is
simpler in the end. We replace the allocation with a null, and replace
all the places that use it accordingly, for example, updating types to be
nullable, and removing RefAsNonNulls, etc. This literally gets rid of the
allocation and all the places it flows to (leaving less for other passes to
do later).
Diffstat (limited to 'test/passes/simplify-locals_all-features.txt')
0 files changed, 0 insertions, 0 deletions