diff options
author | Alexander Guryanov <caiiiycuk@gmail.com> | 2022-12-06 19:25:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-06 08:25:48 -0800 |
commit | e2add4b09e394a2ebf89ebcc27b5e9b6417fc68b (patch) | |
tree | 9fb62e549b63f5ac50b6cfbbff60cad48005fa67 /test/lit/passes/asyncify_mod-asyncify-never-unwind.wast | |
parent | 145e8f9ece5a2f6f42eeedf75f8e24987cb8511a (diff) | |
download | binaryen-e2add4b09e394a2ebf89ebcc27b5e9b6417fc68b.tar.gz binaryen-e2add4b09e394a2ebf89ebcc27b5e9b6417fc68b.tar.bz2 binaryen-e2add4b09e394a2ebf89ebcc27b5e9b6417fc68b.zip |
Optimize Asyncify to not flatten/optimize unnecessarily (#5293)
Add a way to proxy passes and the addition of passes in pass runners. With
that we can make Asyncify only modify functions it actually needs to. On a
project that Asyncify only needs to modify a few functions on, this can save
a huge amount of time as it avoids flattening+optimizing the majority of
the module.
Fixes #4822
Diffstat (limited to 'test/lit/passes/asyncify_mod-asyncify-never-unwind.wast')
-rw-r--r-- | test/lit/passes/asyncify_mod-asyncify-never-unwind.wast | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/lit/passes/asyncify_mod-asyncify-never-unwind.wast b/test/lit/passes/asyncify_mod-asyncify-never-unwind.wast index dce366b82..67bfb5694 100644 --- a/test/lit/passes/asyncify_mod-asyncify-never-unwind.wast +++ b/test/lit/passes/asyncify_mod-asyncify-never-unwind.wast @@ -433,15 +433,11 @@ (drop (call $import2)) ) ;; CHECK: (func $calls-nothing - ;; CHECK-NEXT: (local $0 i32) - ;; CHECK-NEXT: (local.set $0 + ;; CHECK-NEXT: (drop ;; CHECK-NEXT: (i32.eqz ;; CHECK-NEXT: (i32.const 17) ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) - ;; CHECK-NEXT: (drop - ;; CHECK-NEXT: (local.get $0) - ;; CHECK-NEXT: ) ;; CHECK-NEXT: ) (func $calls-nothing (drop (i32.eqz (i32.const 17))) |