[llvm] 75210df - [AMDGPU] Avoid repeated map lookups (NFC) (#132877)
via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 22:41:32 PDT 2025
Author: Kazu Hirata
Date: 2025-03-24T22:41:27-07:00
New Revision: 75210df5a2dd6bd9b6fb9d8fbaea27f748c4c41e
URL: https://github.com/llvm/llvm-project/commit/75210df5a2dd6bd9b6fb9d8fbaea27f748c4c41e
DIFF: https://github.com/llvm/llvm-project/commit/75210df5a2dd6bd9b6fb9d8fbaea27f748c4c41e.diff
LOG: [AMDGPU] Avoid repeated map lookups (NFC) (#132877)
Added:
Modified:
llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp b/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
index b3fa65512e4c4..2bbbbf4db02db 100644
--- a/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
+++ b/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
@@ -806,15 +806,11 @@ void SIScheduleBlockCreator::colorComputeReservedDependencies() {
CurrentTopDownReservedDependencyColoring[SU->NodeNum] =
*SUColors.begin();
else {
- std::map<std::set<unsigned>, unsigned>::iterator Pos =
- ColorCombinations.find(SUColors);
- if (Pos != ColorCombinations.end()) {
- CurrentTopDownReservedDependencyColoring[SU->NodeNum] = Pos->second;
- } else {
- CurrentTopDownReservedDependencyColoring[SU->NodeNum] =
- NextNonReservedID;
- ColorCombinations[SUColors] = NextNonReservedID++;
- }
+ auto [Pos, Inserted] =
+ ColorCombinations.try_emplace(SUColors, NextNonReservedID);
+ if (Inserted)
+ ++NextNonReservedID;
+ CurrentTopDownReservedDependencyColoring[SU->NodeNum] = Pos->second;
}
}
@@ -1176,14 +1172,15 @@ void SIScheduleBlockCreator::createBlocksForVariant(SISchedulerBlockCreatorVaria
for (unsigned i = 0, e = DAGSize; i != e; ++i) {
SUnit *SU = &DAG->SUnits[i];
unsigned Color = CurrentColoring[SU->NodeNum];
- if (RealID.find(Color) == RealID.end()) {
+ auto [It, Inserted] = RealID.try_emplace(Color);
+ if (Inserted) {
int ID = CurrentBlocks.size();
BlockPtrs.push_back(std::make_unique<SIScheduleBlock>(DAG, this, ID));
CurrentBlocks.push_back(BlockPtrs.rbegin()->get());
- RealID[Color] = ID;
+ It->second = ID;
}
- CurrentBlocks[RealID[Color]]->addUnit(SU);
- Node2CurrentBlock[SU->NodeNum] = RealID[Color];
+ CurrentBlocks[It->second]->addUnit(SU);
+ Node2CurrentBlock[SU->NodeNum] = It->second;
}
// Build dependencies between blocks.
More information about the llvm-commits
mailing list