[llvm] [AMDGPU] Cosmetic tweaks in AMDGPUAtomicOptimizer. NFC. (PR #129081)
Jay Foad via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 27 08:23:41 PST 2025
https://github.com/jayfoad created https://github.com/llvm/llvm-project/pull/129081
Simplify iteration over the ToReplace vector, and some related cosmetic
cleanups.
>From 47960dc8c94c429e60b87576e298b438b0af927e Mon Sep 17 00:00:00 2001
From: Jay Foad <jay.foad at amd.com>
Date: Thu, 27 Feb 2025 16:20:55 +0000
Subject: [PATCH] [AMDGPU] Cosmetic tweaks in AMDGPUAtomicOptimizer. NFC.
Simplify iteration over the ToReplace vector, and some related cosmetic
cleanups.
---
.../Target/AMDGPU/AMDGPUAtomicOptimizer.cpp | 28 ++++++-------------
1 file changed, 9 insertions(+), 19 deletions(-)
diff --git a/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp b/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
index e46d0587e7943..76b1775f0d096 100644
--- a/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
+++ b/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
@@ -151,23 +151,18 @@ PreservedAnalyses AMDGPUAtomicOptimizerPass::run(Function &F,
}
bool AMDGPUAtomicOptimizerImpl::run() {
-
// Scan option None disables the Pass
- if (ScanImpl == ScanOptions::None) {
+ if (ScanImpl == ScanOptions::None)
return false;
- }
visit(F);
+ if (ToReplace.empty())
+ return false;
- const bool Changed = !ToReplace.empty();
-
- for (ReplacementInfo &Info : ToReplace) {
- optimizeAtomic(*Info.I, Info.Op, Info.ValIdx, Info.ValDivergent);
- }
-
+ for (auto &[I, Op, ValIdx, ValDivergent] : ToReplace)
+ optimizeAtomic(*I, Op, ValIdx, ValDivergent);
ToReplace.clear();
-
- return Changed;
+ return true;
}
static bool isLegalCrossLaneType(Type *Ty) {
@@ -247,9 +242,7 @@ void AMDGPUAtomicOptimizerImpl::visitAtomicRMWInst(AtomicRMWInst &I) {
// If we get here, we can optimize the atomic using a single wavefront-wide
// atomic operation to do the calculation for the entire wavefront, so
// remember the instruction so we can come back to it.
- const ReplacementInfo Info = {&I, Op, ValIdx, ValDivergent};
-
- ToReplace.push_back(Info);
+ ToReplace.push_back({&I, Op, ValIdx, ValDivergent});
}
void AMDGPUAtomicOptimizerImpl::visitIntrinsicInst(IntrinsicInst &I) {
@@ -333,17 +326,14 @@ void AMDGPUAtomicOptimizerImpl::visitIntrinsicInst(IntrinsicInst &I) {
// If any of the other arguments to the intrinsic are divergent, we can't
// optimize the operation.
for (unsigned Idx = 1; Idx < I.getNumOperands(); Idx++) {
- if (UA.isDivergentUse(I.getOperandUse(Idx))) {
+ if (UA.isDivergentUse(I.getOperandUse(Idx)))
return;
- }
}
// If we get here, we can optimize the atomic using a single wavefront-wide
// atomic operation to do the calculation for the entire wavefront, so
// remember the instruction so we can come back to it.
- const ReplacementInfo Info = {&I, Op, ValIdx, ValDivergent};
-
- ToReplace.push_back(Info);
+ ToReplace.push_back({&I, Op, ValIdx, ValDivergent});
}
// Use the builder to create the non-atomic counterpart of the specified
More information about the llvm-commits
mailing list