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/analysis | |
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/analysis')
-rw-r--r-- | src/analysis/reaching-definitions-transfer-function.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/analysis/reaching-definitions-transfer-function.h b/src/analysis/reaching-definitions-transfer-function.h index dcf04e377..7a4fe1afc 100644 --- a/src/analysis/reaching-definitions-transfer-function.h +++ b/src/analysis/reaching-definitions-transfer-function.h @@ -42,7 +42,7 @@ class ReachingDefinitionsTransferFunction std::unordered_map<Index, SmallVector<LocalSet*, 2>> indexSetses; // LocalGraph members we need to update. - LocalGraph::GetSetses& getSetses; + LocalGraph::GetSetsMap& getSetsMap; // Fictitious LocalSet objects to reprsent a local index obtaining its value // from its default initial value or parameter value. @@ -86,9 +86,9 @@ public: // are working with doesn't contain the correct Expression**s, but this is // left in for future improvements. TODO. ReachingDefinitionsTransferFunction(Function* func, - LocalGraph::GetSetses& getSetses, + LocalGraph::GetSetsMap& getSetsMap, LocalGraph::Locations& locations) - : numLocals(func->getNumLocals()), getSetses(getSetses), + : numLocals(func->getNumLocals()), getSetsMap(getSetsMap), lattice(listLocalSets(func, fakeInitialValueSets, fakeSetPtrs)) { // Map every local index to a set of all the local sets which affect it. @@ -129,9 +129,9 @@ public: if (lattice.exists(currState, setInstance)) { // If a pointer to a real LocalSet, add it, otherwise add a nullptr. if (fakeSetPtrs.find(setInstance) == fakeSetPtrs.end()) { - getSetses[curr].insert(setInstance); + getSetsMap[curr].insert(setInstance); } else { - getSetses[curr].insert(nullptr); + getSetsMap[curr].insert(nullptr); } } } |