diff options
author | Alon Zakai <azakai@google.com> | 2023-10-18 09:26:11 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-18 09:26:11 -0700 |
commit | f2a556b1179fe4ee350728ad674bf723eb824768 (patch) | |
tree | 58bce1c29222b8a5ebd946f53e7fd4394def60e6 /test/passes/simplify-globals-optimizing_all-features.txt | |
parent | f45207e02f3f703ef96b23957538a935856cf874 (diff) | |
download | binaryen-f2a556b1179fe4ee350728ad674bf723eb824768.tar.gz binaryen-f2a556b1179fe4ee350728ad674bf723eb824768.tar.bz2 binaryen-f2a556b1179fe4ee350728ad674bf723eb824768.zip |
SimplifyGlobals: Run on function code in missing places (#6020)
The pass was written before we had relevant code in module locations, but now
with GC we can have global.gets of more things.
The scanner did not run on global code in a way that is not a problem yet, but
will be for a later PR I'll open. It will be tested there. That is, right now there is no
optimization that is confused by the fact that we did not scan code at the module
level, but the next PR will do that.
The use modifier did not run on global code either, which was an actual missed
optimization opportunity: There are cases where we want to modify a global.get
to point to another one, and such a get might be in global code, not just in a
function. A test is added for that.
Diffstat (limited to 'test/passes/simplify-globals-optimizing_all-features.txt')
-rw-r--r-- | test/passes/simplify-globals-optimizing_all-features.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/passes/simplify-globals-optimizing_all-features.txt b/test/passes/simplify-globals-optimizing_all-features.txt index 1ffd2a2b3..72c0620a6 100644 --- a/test/passes/simplify-globals-optimizing_all-features.txt +++ b/test/passes/simplify-globals-optimizing_all-features.txt @@ -15,8 +15,8 @@ (type $0 (func)) (import "env" "global-1" (global $g1 i32)) (global $g2 i32 (global.get $g1)) - (global $g3 i32 (global.get $g2)) - (global $g4 i32 (global.get $g3)) + (global $g3 i32 (global.get $g1)) + (global $g4 i32 (global.get $g1)) (func $foo (type $0) (drop (global.get $g1) |