diff options
author | Alon Zakai <azakai@google.com> | 2022-09-19 13:16:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-19 20:16:18 +0000 |
commit | bd76598f8525e15d6649335e1308a27284c4b0ae (patch) | |
tree | d6916ece5f70f3e1058b2e19178b1db1c853f5d0 /test/wasm2js | |
parent | b65d325ac6ec9e5d92e41f1479ef6157ccca64c7 (diff) | |
download | binaryen-bd76598f8525e15d6649335e1308a27284c4b0ae.tar.gz binaryen-bd76598f8525e15d6649335e1308a27284c4b0ae.tar.bz2 binaryen-bd76598f8525e15d6649335e1308a27284c4b0ae.zip |
Vacuum: Ignore effects at the entire function scope when possible (#5053)
Recently we added logic to ignore effects that don't "escape" past the function call.
That is, e.g. local.set only affects the current function scope, and once the call stack
is unwound it no longer matters as an effect. This moves that logic to a shared place,
and uses it in the core Vacuum logic.
The new constructor in EffectAnalyzer receives a function and then scans it as
a whole. This works just like e.g. scanning a Block as a whole (if we see a break in
the block, that has an effect only inside it, and the Block + children doesn't have a
branch effect).
Various tests are updated so they don't optimize away trivially, by adding new
return values for them.
Diffstat (limited to 'test/wasm2js')
-rw-r--r-- | test/wasm2js/get_local.2asm.js | 3 | ||||
-rw-r--r-- | test/wasm2js/set_local.2asm.js | 3 | ||||
-rw-r--r-- | test/wasm2js/tee_local.2asm.js | 3 |
3 files changed, 0 insertions, 9 deletions
diff --git a/test/wasm2js/get_local.2asm.js b/test/wasm2js/get_local.2asm.js index d719e5f4b..da694991b 100644 --- a/test/wasm2js/get_local.2asm.js +++ b/test/wasm2js/get_local.2asm.js @@ -70,9 +70,6 @@ function asmFunc(importObject) { $3_1 = $3_1 | 0; $4_1 = $4_1 | 0; var i64toi32_i32$0 = 0, $5_1 = Math_fround(0), $6$hi = 0, $6_1 = 0, $7$hi = 0, $7_1 = 0, $8_1 = 0.0; - i64toi32_i32$0 = $0$hi; - i64toi32_i32$0 = $6$hi; - i64toi32_i32$0 = $7$hi; } function $9($0_1, $0$hi, $1_1, $2_1, $3_1, $4_1) { diff --git a/test/wasm2js/set_local.2asm.js b/test/wasm2js/set_local.2asm.js index df8226995..4f989942f 100644 --- a/test/wasm2js/set_local.2asm.js +++ b/test/wasm2js/set_local.2asm.js @@ -57,9 +57,6 @@ function asmFunc(importObject) { $3_1 = $3_1 | 0; $4_1 = $4_1 | 0; var i64toi32_i32$0 = 0; - i64toi32_i32$0 = 0; - i64toi32_i32$0 = 0; - i64toi32_i32$0 = 0; } function $9($0_1, $0$hi, $1_1, $2_1, $3_1, $4_1) { diff --git a/test/wasm2js/tee_local.2asm.js b/test/wasm2js/tee_local.2asm.js index 8bced1525..a528e7999 100644 --- a/test/wasm2js/tee_local.2asm.js +++ b/test/wasm2js/tee_local.2asm.js @@ -67,9 +67,6 @@ function asmFunc(importObject) { $3_1 = $3_1 | 0; $4_1 = $4_1 | 0; var i64toi32_i32$0 = 0; - i64toi32_i32$0 = 0; - i64toi32_i32$0 = 0; - i64toi32_i32$0 = 0; } function $9($0_1, $0$hi, $1_1, $2_1, $3_1, $4_1) { |