[llvm] 9889de8 - [Utils] Avoid repeated hash lookups (NFC) (#128634)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Feb 25 09:03:20 PST 2025
Author: Kazu Hirata
Date: 2025-02-25T09:03:16-08:00
New Revision: 9889de834b0a9fa4a5a222a81a524c75977e41d4
URL: https://github.com/llvm/llvm-project/commit/9889de834b0a9fa4a5a222a81a524c75977e41d4
DIFF: https://github.com/llvm/llvm-project/commit/9889de834b0a9fa4a5a222a81a524c75977e41d4.diff
LOG: [Utils] Avoid repeated hash lookups (NFC) (#128634)
Added:
Modified:
llvm/include/llvm/Transforms/Utils/SampleProfileLoaderBaseImpl.h
Removed:
################################################################################
diff --git a/llvm/include/llvm/Transforms/Utils/SampleProfileLoaderBaseImpl.h b/llvm/include/llvm/Transforms/Utils/SampleProfileLoaderBaseImpl.h
index 44cb5183fb31d..390f284019bb4 100644
--- a/llvm/include/llvm/Transforms/Utils/SampleProfileLoaderBaseImpl.h
+++ b/llvm/include/llvm/Transforms/Utils/SampleProfileLoaderBaseImpl.h
@@ -745,8 +745,9 @@ bool SampleProfileLoaderBaseImpl<BT>::propagateThroughEdges(
if (i == 0) {
// First, visit all predecessor edges.
- NumTotalEdges = Predecessors[BB].size();
- for (auto *Pred : Predecessors[BB]) {
+ auto &Preds = Predecessors[BB];
+ NumTotalEdges = Preds.size();
+ for (auto *Pred : Preds) {
Edge E = std::make_pair(Pred, BB);
TotalWeight += visitEdge(E, &NumUnknownEdges, &UnknownEdge);
if (E.first == E.second)
@@ -757,8 +758,9 @@ bool SampleProfileLoaderBaseImpl<BT>::propagateThroughEdges(
}
} else {
// On the second round, visit all successor edges.
- NumTotalEdges = Successors[BB].size();
- for (auto *Succ : Successors[BB]) {
+ auto &Succs = Successors[BB];
+ NumTotalEdges = Succs.size();
+ for (auto *Succ : Succs) {
Edge E = std::make_pair(BB, Succ);
TotalWeight += visitEdge(E, &NumUnknownEdges, &UnknownEdge);
}
More information about the llvm-commits
mailing list