diff options
author | Alon Zakai <azakai@google.com> | 2024-08-28 09:13:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-28 09:13:33 -0700 |
commit | 95ddd057424b996a0a2a54f282c6c567246d8cc9 (patch) | |
tree | 5fb5cf34c779f1cf9cb49208e470d557db91b177 /src/passes/SSAify.cpp | |
parent | e2ceaa58c10e9ee3e9eece42466243f5a8aff125 (diff) | |
download | binaryen-95ddd057424b996a0a2a54f282c6c567246d8cc9.tar.gz binaryen-95ddd057424b996a0a2a54f282c6c567246d8cc9.tar.bz2 binaryen-95ddd057424b996a0a2a54f282c6c567246d8cc9.zip |
[NFC] Refactor LocalGraph's core getSets API (#6877)
Before we just had a map that people would access with localGraph.getSetses[get],
while now it is a call localGraph.getSets(get), which more nicely hides the internal
implementation details.
Also rename getSetses => getSetsMap.
This will allow a later PR to optimize the internals of this API.
This is performance-neutral as far as I can measure. (We do replace a direct read
from a data structure with a call, but the call is in a header and should always get
inlined.)
Diffstat (limited to 'src/passes/SSAify.cpp')
-rw-r--r-- | src/passes/SSAify.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/passes/SSAify.cpp b/src/passes/SSAify.cpp index 547b9cb53..0a9c6891d 100644 --- a/src/passes/SSAify.cpp +++ b/src/passes/SSAify.cpp @@ -121,7 +121,7 @@ struct SSAify : public Pass { bool hasMerges(LocalSet* set, LocalGraph& graph) { for (auto* get : graph.setInfluences[set]) { - if (graph.getSetses[get].size() > 1) { + if (graph.getSets(get).size() > 1) { return true; } } @@ -131,7 +131,7 @@ struct SSAify : public Pass { void computeGetsAndPhis(LocalGraph& graph) { FindAll<LocalGet> gets(func->body); for (auto* get : gets.list) { - auto& sets = graph.getSetses[get]; + auto& sets = graph.getSets(get); if (sets.size() == 0) { continue; // unreachable, ignore } |