diff options
author | Thomas Lively <tlively@google.com> | 2024-09-04 18:17:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 01:17:59 +0000 |
commit | 67bd84251222099aae542e3871955824499f514b (patch) | |
tree | d6242e2c621d6cbce3f03498276fdf5d06f10827 /src/passes/ReorderGlobals.cpp | |
parent | 9c64fcdf873faec6b6814436bce2db35484888d7 (diff) | |
download | binaryen-67bd84251222099aae542e3871955824499f514b.tar.gz binaryen-67bd84251222099aae542e3871955824499f514b.tar.bz2 binaryen-67bd84251222099aae542e3871955824499f514b.zip |
[NFC] Use Index instead of size_t in topological sort util (#6903)
This saves memory and could in principle improve performance, although a
quick experiment with 30 samples on ReorderGlobals did not yield a
statistically significant improvement. At any rate, using Index is more
consistent with other parts of the code base.
Diffstat (limited to 'src/passes/ReorderGlobals.cpp')
-rw-r--r-- | src/passes/ReorderGlobals.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/passes/ReorderGlobals.cpp b/src/passes/ReorderGlobals.cpp index c5432f006..af0b9572a 100644 --- a/src/passes/ReorderGlobals.cpp +++ b/src/passes/ReorderGlobals.cpp @@ -77,7 +77,7 @@ struct ReorderGlobals : public Pass { // use the index of the global in the original ordering to identify each // global. A different ordering is then a vector of old indices, saying where // each element comes from, which is logically a mapping between indices. - using IndexIndexMap = std::vector<size_t>; + using IndexIndexMap = std::vector<Index>; // We will also track counts of uses for each global. We use floating-point // values here since while the initial counts are integers, we will be @@ -126,7 +126,7 @@ struct ReorderGlobals : public Pass { // (global $b i32 (global.get $a)) ;; $b depends on $a; $a must be first // // To do so we construct a map from each global to those that depends on it. - std::vector<std::unordered_set<size_t>> dependentSets(globals.size()); + std::vector<std::unordered_set<Index>> dependentSets(globals.size()); for (Index i = 0; i < globals.size(); i++) { auto& global = globals[i]; if (!global->imported()) { @@ -138,7 +138,7 @@ struct ReorderGlobals : public Pass { } TopologicalSort::Graph deps; deps.reserve(globals.size()); - for (size_t i = 0; i < globals.size(); ++i) { + for (Index i = 0; i < globals.size(); ++i) { deps.emplace_back(dependentSets[i].begin(), dependentSets[i].end()); } @@ -241,7 +241,7 @@ struct ReorderGlobals : public Pass { // Now use that optimal order to create an ordered graph that includes the // dependencies. The final order will be the minimum topological sort of // this graph. - return TopologicalSort::minSort(deps, [&](size_t a, size_t b) { + return TopologicalSort::minSort(deps, [&](Index a, Index b) { // Imports always go first. The binary writer takes care of this itself // anyhow, but it is better to do it here in the IR so we can actually // see what the final layout will be. @@ -287,8 +287,8 @@ struct ReorderGlobals : public Pass { // Track the size in bits and the next index at which the size increases. At // the first iteration we'll compute the size of the LEB for index 0, and so // forth. - size_t sizeInBits = 0; - size_t nextSizeIncrease = 0; + Index sizeInBits = 0; + Index nextSizeIncrease = 0; for (Index i = 0; i < indices.size(); i++) { if (i == nextSizeIncrease) { sizeInBits++; |