diff options
author | Alon Zakai <azakai@google.com> | 2024-01-10 15:02:05 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-10 15:02:05 -0800 |
commit | 141f7cad3aa516db3828e619b31fe681e46a151b (patch) | |
tree | 505eba9b38cc81382df26ac06d9d829e2c62d988 /src/passes/ReorderGlobals.cpp | |
parent | 97a61bd7c35756c25ac3637744097c1a0fc99dea (diff) | |
download | binaryen-141f7cad3aa516db3828e619b31fe681e46a151b.tar.gz binaryen-141f7cad3aa516db3828e619b31fe681e46a151b.tar.bz2 binaryen-141f7cad3aa516db3828e619b31fe681e46a151b.zip |
Precompute into select arms (#6212)
E.g.
(i32.add
(select
(i32.const 100)
(i32.const 200)
(..condition..)
)
(i32.const 50)
)
;; =>
(select
(i32.const 150)
(i32.const 250)
(..condition..)
)
We cannot fully precompute the select, but we can "partially precompute" it, by precomputing
its arms using the parent.
This may require looking several steps up the parent chain, which is an awkward operation in
our simple walkers, so to do it we capture stacks of parents and operate directly on them. This
is a little slower than a normal walk, so only do it when we see a promising select, and only in
-O2 and above (this makes the pass 7% or so slower; not a large cost, but best to avoid it in
-O1).
Diffstat (limited to 'src/passes/ReorderGlobals.cpp')
0 files changed, 0 insertions, 0 deletions