diff options
author | Alon Zakai <azakai@google.com> | 2024-09-05 11:00:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 11:00:36 -0700 |
commit | 7562a6b7da0ba517a46db1f1792677f3ebbf2a27 (patch) | |
tree | 897f11766fb7a4d7a295469e44aab87b0702867c /src/passes/LoopInvariantCodeMotion.cpp | |
parent | ad6a124969a9c6874484f0982c10d6f507388b20 (diff) | |
download | binaryen-7562a6b7da0ba517a46db1f1792677f3ebbf2a27.tar.gz binaryen-7562a6b7da0ba517a46db1f1792677f3ebbf2a27.tar.bz2 binaryen-7562a6b7da0ba517a46db1f1792677f3ebbf2a27.zip |
[NFC] Add a lazy mode to LocalGraph (#6895)
LocalGraph by default will compute all the local.sets that can be read from all
local.gets. However, many passes only query a small amount of those. To
avoid wasted work, add a lazy mode that only computes sets when asked about
a get.
This is then used in a single place, LoopInvariantCodeMotion, which becomes
18% faster.
Diffstat (limited to 'src/passes/LoopInvariantCodeMotion.cpp')
-rw-r--r-- | src/passes/LoopInvariantCodeMotion.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/passes/LoopInvariantCodeMotion.cpp b/src/passes/LoopInvariantCodeMotion.cpp index 321267e8e..1277c1a34 100644 --- a/src/passes/LoopInvariantCodeMotion.cpp +++ b/src/passes/LoopInvariantCodeMotion.cpp @@ -45,11 +45,12 @@ struct LoopInvariantCodeMotion // main entry point - LocalGraph* localGraph; + LazyLocalGraph* localGraph; void doWalkFunction(Function* func) { - // Compute all local dependencies first. - LocalGraph localGraphInstance(func, getModule()); + // Prepare to compute the local dependencies we care about. We may only need + // very few, so use a lazy LocalGraph. + LazyLocalGraph localGraphInstance(func, getModule()); localGraph = &localGraphInstance; // Traverse the function. super::doWalkFunction(func); |