summaryrefslogtreecommitdiff
path: root/src/passes/LoopInvariantCodeMotion.cpp
diff options
context:
space:
mode:
authorAlon Zakai <azakai@google.com>2024-09-05 11:00:36 -0700
committerGitHub <noreply@github.com>2024-09-05 11:00:36 -0700
commit7562a6b7da0ba517a46db1f1792677f3ebbf2a27 (patch)
tree897f11766fb7a4d7a295469e44aab87b0702867c /src/passes/LoopInvariantCodeMotion.cpp
parentad6a124969a9c6874484f0982c10d6f507388b20 (diff)
downloadbinaryen-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.cpp7
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);