1 //===-- AMDGPUAtomicOptimizer.cpp -----------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 /// \file
10 /// This pass optimizes atomic operations by using a single lane of a wavefront
11 /// to perform the atomic operation, thus reducing contention on that memory
12 /// location.
13 //
14 //===----------------------------------------------------------------------===//
15
16 #include "AMDGPU.h"
17 #include "AMDGPUSubtarget.h"
18 #include "SIDefines.h"
19 #include "llvm/Analysis/LegacyDivergenceAnalysis.h"
20 #include "llvm/CodeGen/TargetPassConfig.h"
21 #include "llvm/IR/IRBuilder.h"
22 #include "llvm/IR/InstVisitor.h"
23 #include "llvm/InitializePasses.h"
24 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
25
26 #define DEBUG_TYPE "amdgpu-atomic-optimizer"
27
28 using namespace llvm;
29 using namespace llvm::AMDGPU;
30
31 namespace {
32
33 struct ReplacementInfo {
34 Instruction *I;
35 AtomicRMWInst::BinOp Op;
36 unsigned ValIdx;
37 bool ValDivergent;
38 };
39
40 class AMDGPUAtomicOptimizer : public FunctionPass,
41 public InstVisitor<AMDGPUAtomicOptimizer> {
42 private:
43 SmallVector<ReplacementInfo, 8> ToReplace;
44 const LegacyDivergenceAnalysis *DA;
45 const DataLayout *DL;
46 DominatorTree *DT;
47 const GCNSubtarget *ST;
48 bool IsPixelShader;
49
50 Value *buildScan(IRBuilder<> &B, AtomicRMWInst::BinOp Op, Value *V,
51 Value *const Identity) const;
52 Value *buildShiftRight(IRBuilder<> &B, Value *V, Value *const Identity) const;
53 void optimizeAtomic(Instruction &I, AtomicRMWInst::BinOp Op, unsigned ValIdx,
54 bool ValDivergent) const;
55
56 public:
57 static char ID;
58
AMDGPUAtomicOptimizer()59 AMDGPUAtomicOptimizer() : FunctionPass(ID) {}
60
61 bool runOnFunction(Function &F) override;
62
getAnalysisUsage(AnalysisUsage & AU) const63 void getAnalysisUsage(AnalysisUsage &AU) const override {
64 AU.addPreserved<DominatorTreeWrapperPass>();
65 AU.addRequired<LegacyDivergenceAnalysis>();
66 AU.addRequired<TargetPassConfig>();
67 }
68
69 void visitAtomicRMWInst(AtomicRMWInst &I);
70 void visitIntrinsicInst(IntrinsicInst &I);
71 };
72
73 } // namespace
74
75 char AMDGPUAtomicOptimizer::ID = 0;
76
77 char &llvm::AMDGPUAtomicOptimizerID = AMDGPUAtomicOptimizer::ID;
78
runOnFunction(Function & F)79 bool AMDGPUAtomicOptimizer::runOnFunction(Function &F) {
80 if (skipFunction(F)) {
81 return false;
82 }
83
84 DA = &getAnalysis<LegacyDivergenceAnalysis>();
85 DL = &F.getParent()->getDataLayout();
86 DominatorTreeWrapperPass *const DTW =
87 getAnalysisIfAvailable<DominatorTreeWrapperPass>();
88 DT = DTW ? &DTW->getDomTree() : nullptr;
89 const TargetPassConfig &TPC = getAnalysis<TargetPassConfig>();
90 const TargetMachine &TM = TPC.getTM<TargetMachine>();
91 ST = &TM.getSubtarget<GCNSubtarget>(F);
92 IsPixelShader = F.getCallingConv() == CallingConv::AMDGPU_PS;
93
94 visit(F);
95
96 const bool Changed = !ToReplace.empty();
97
98 for (ReplacementInfo &Info : ToReplace) {
99 optimizeAtomic(*Info.I, Info.Op, Info.ValIdx, Info.ValDivergent);
100 }
101
102 ToReplace.clear();
103
104 return Changed;
105 }
106
visitAtomicRMWInst(AtomicRMWInst & I)107 void AMDGPUAtomicOptimizer::visitAtomicRMWInst(AtomicRMWInst &I) {
108 // Early exit for unhandled address space atomic instructions.
109 switch (I.getPointerAddressSpace()) {
110 default:
111 return;
112 case AMDGPUAS::GLOBAL_ADDRESS:
113 case AMDGPUAS::LOCAL_ADDRESS:
114 break;
115 }
116
117 AtomicRMWInst::BinOp Op = I.getOperation();
118
119 switch (Op) {
120 default:
121 return;
122 case AtomicRMWInst::Add:
123 case AtomicRMWInst::Sub:
124 case AtomicRMWInst::And:
125 case AtomicRMWInst::Or:
126 case AtomicRMWInst::Xor:
127 case AtomicRMWInst::Max:
128 case AtomicRMWInst::Min:
129 case AtomicRMWInst::UMax:
130 case AtomicRMWInst::UMin:
131 break;
132 }
133
134 const unsigned PtrIdx = 0;
135 const unsigned ValIdx = 1;
136
137 // If the pointer operand is divergent, then each lane is doing an atomic
138 // operation on a different address, and we cannot optimize that.
139 if (DA->isDivergentUse(&I.getOperandUse(PtrIdx))) {
140 return;
141 }
142
143 const bool ValDivergent = DA->isDivergentUse(&I.getOperandUse(ValIdx));
144
145 // If the value operand is divergent, each lane is contributing a different
146 // value to the atomic calculation. We can only optimize divergent values if
147 // we have DPP available on our subtarget, and the atomic operation is 32
148 // bits.
149 if (ValDivergent &&
150 (!ST->hasDPP() || DL->getTypeSizeInBits(I.getType()) != 32)) {
151 return;
152 }
153
154 // If we get here, we can optimize the atomic using a single wavefront-wide
155 // atomic operation to do the calculation for the entire wavefront, so
156 // remember the instruction so we can come back to it.
157 const ReplacementInfo Info = {&I, Op, ValIdx, ValDivergent};
158
159 ToReplace.push_back(Info);
160 }
161
visitIntrinsicInst(IntrinsicInst & I)162 void AMDGPUAtomicOptimizer::visitIntrinsicInst(IntrinsicInst &I) {
163 AtomicRMWInst::BinOp Op;
164
165 switch (I.getIntrinsicID()) {
166 default:
167 return;
168 case Intrinsic::amdgcn_buffer_atomic_add:
169 case Intrinsic::amdgcn_struct_buffer_atomic_add:
170 case Intrinsic::amdgcn_raw_buffer_atomic_add:
171 Op = AtomicRMWInst::Add;
172 break;
173 case Intrinsic::amdgcn_buffer_atomic_sub:
174 case Intrinsic::amdgcn_struct_buffer_atomic_sub:
175 case Intrinsic::amdgcn_raw_buffer_atomic_sub:
176 Op = AtomicRMWInst::Sub;
177 break;
178 case Intrinsic::amdgcn_buffer_atomic_and:
179 case Intrinsic::amdgcn_struct_buffer_atomic_and:
180 case Intrinsic::amdgcn_raw_buffer_atomic_and:
181 Op = AtomicRMWInst::And;
182 break;
183 case Intrinsic::amdgcn_buffer_atomic_or:
184 case Intrinsic::amdgcn_struct_buffer_atomic_or:
185 case Intrinsic::amdgcn_raw_buffer_atomic_or:
186 Op = AtomicRMWInst::Or;
187 break;
188 case Intrinsic::amdgcn_buffer_atomic_xor:
189 case Intrinsic::amdgcn_struct_buffer_atomic_xor:
190 case Intrinsic::amdgcn_raw_buffer_atomic_xor:
191 Op = AtomicRMWInst::Xor;
192 break;
193 case Intrinsic::amdgcn_buffer_atomic_smin:
194 case Intrinsic::amdgcn_struct_buffer_atomic_smin:
195 case Intrinsic::amdgcn_raw_buffer_atomic_smin:
196 Op = AtomicRMWInst::Min;
197 break;
198 case Intrinsic::amdgcn_buffer_atomic_umin:
199 case Intrinsic::amdgcn_struct_buffer_atomic_umin:
200 case Intrinsic::amdgcn_raw_buffer_atomic_umin:
201 Op = AtomicRMWInst::UMin;
202 break;
203 case Intrinsic::amdgcn_buffer_atomic_smax:
204 case Intrinsic::amdgcn_struct_buffer_atomic_smax:
205 case Intrinsic::amdgcn_raw_buffer_atomic_smax:
206 Op = AtomicRMWInst::Max;
207 break;
208 case Intrinsic::amdgcn_buffer_atomic_umax:
209 case Intrinsic::amdgcn_struct_buffer_atomic_umax:
210 case Intrinsic::amdgcn_raw_buffer_atomic_umax:
211 Op = AtomicRMWInst::UMax;
212 break;
213 }
214
215 const unsigned ValIdx = 0;
216
217 const bool ValDivergent = DA->isDivergentUse(&I.getOperandUse(ValIdx));
218
219 // If the value operand is divergent, each lane is contributing a different
220 // value to the atomic calculation. We can only optimize divergent values if
221 // we have DPP available on our subtarget, and the atomic operation is 32
222 // bits.
223 if (ValDivergent &&
224 (!ST->hasDPP() || DL->getTypeSizeInBits(I.getType()) != 32)) {
225 return;
226 }
227
228 // If any of the other arguments to the intrinsic are divergent, we can't
229 // optimize the operation.
230 for (unsigned Idx = 1; Idx < I.getNumOperands(); Idx++) {
231 if (DA->isDivergentUse(&I.getOperandUse(Idx))) {
232 return;
233 }
234 }
235
236 // If we get here, we can optimize the atomic using a single wavefront-wide
237 // atomic operation to do the calculation for the entire wavefront, so
238 // remember the instruction so we can come back to it.
239 const ReplacementInfo Info = {&I, Op, ValIdx, ValDivergent};
240
241 ToReplace.push_back(Info);
242 }
243
244 // Use the builder to create the non-atomic counterpart of the specified
245 // atomicrmw binary op.
buildNonAtomicBinOp(IRBuilder<> & B,AtomicRMWInst::BinOp Op,Value * LHS,Value * RHS)246 static Value *buildNonAtomicBinOp(IRBuilder<> &B, AtomicRMWInst::BinOp Op,
247 Value *LHS, Value *RHS) {
248 CmpInst::Predicate Pred;
249
250 switch (Op) {
251 default:
252 llvm_unreachable("Unhandled atomic op");
253 case AtomicRMWInst::Add:
254 return B.CreateBinOp(Instruction::Add, LHS, RHS);
255 case AtomicRMWInst::Sub:
256 return B.CreateBinOp(Instruction::Sub, LHS, RHS);
257 case AtomicRMWInst::And:
258 return B.CreateBinOp(Instruction::And, LHS, RHS);
259 case AtomicRMWInst::Or:
260 return B.CreateBinOp(Instruction::Or, LHS, RHS);
261 case AtomicRMWInst::Xor:
262 return B.CreateBinOp(Instruction::Xor, LHS, RHS);
263
264 case AtomicRMWInst::Max:
265 Pred = CmpInst::ICMP_SGT;
266 break;
267 case AtomicRMWInst::Min:
268 Pred = CmpInst::ICMP_SLT;
269 break;
270 case AtomicRMWInst::UMax:
271 Pred = CmpInst::ICMP_UGT;
272 break;
273 case AtomicRMWInst::UMin:
274 Pred = CmpInst::ICMP_ULT;
275 break;
276 }
277 Value *Cond = B.CreateICmp(Pred, LHS, RHS);
278 return B.CreateSelect(Cond, LHS, RHS);
279 }
280
281 // Use the builder to create an inclusive scan of V across the wavefront, with
282 // all lanes active.
buildScan(IRBuilder<> & B,AtomicRMWInst::BinOp Op,Value * V,Value * const Identity) const283 Value *AMDGPUAtomicOptimizer::buildScan(IRBuilder<> &B, AtomicRMWInst::BinOp Op,
284 Value *V, Value *const Identity) const {
285 Type *const Ty = V->getType();
286 Module *M = B.GetInsertBlock()->getModule();
287 Function *UpdateDPP =
288 Intrinsic::getDeclaration(M, Intrinsic::amdgcn_update_dpp, Ty);
289 Function *PermLaneX16 =
290 Intrinsic::getDeclaration(M, Intrinsic::amdgcn_permlanex16, {});
291 Function *ReadLane =
292 Intrinsic::getDeclaration(M, Intrinsic::amdgcn_readlane, {});
293
294 for (unsigned Idx = 0; Idx < 4; Idx++) {
295 V = buildNonAtomicBinOp(
296 B, Op, V,
297 B.CreateCall(UpdateDPP,
298 {Identity, V, B.getInt32(DPP::ROW_SHR0 | 1 << Idx),
299 B.getInt32(0xf), B.getInt32(0xf), B.getFalse()}));
300 }
301 if (ST->hasDPPBroadcasts()) {
302 // GFX9 has DPP row broadcast operations.
303 V = buildNonAtomicBinOp(
304 B, Op, V,
305 B.CreateCall(UpdateDPP,
306 {Identity, V, B.getInt32(DPP::BCAST15), B.getInt32(0xa),
307 B.getInt32(0xf), B.getFalse()}));
308 V = buildNonAtomicBinOp(
309 B, Op, V,
310 B.CreateCall(UpdateDPP,
311 {Identity, V, B.getInt32(DPP::BCAST31), B.getInt32(0xc),
312 B.getInt32(0xf), B.getFalse()}));
313 } else {
314 // On GFX10 all DPP operations are confined to a single row. To get cross-
315 // row operations we have to use permlane or readlane.
316
317 // Combine lane 15 into lanes 16..31 (and, for wave 64, lane 47 into lanes
318 // 48..63).
319 Value *const PermX =
320 B.CreateCall(PermLaneX16, {V, V, B.getInt32(-1), B.getInt32(-1),
321 B.getFalse(), B.getFalse()});
322 V = buildNonAtomicBinOp(
323 B, Op, V,
324 B.CreateCall(UpdateDPP,
325 {Identity, PermX, B.getInt32(DPP::QUAD_PERM_ID),
326 B.getInt32(0xa), B.getInt32(0xf), B.getFalse()}));
327 if (!ST->isWave32()) {
328 // Combine lane 31 into lanes 32..63.
329 Value *const Lane31 = B.CreateCall(ReadLane, {V, B.getInt32(31)});
330 V = buildNonAtomicBinOp(
331 B, Op, V,
332 B.CreateCall(UpdateDPP,
333 {Identity, Lane31, B.getInt32(DPP::QUAD_PERM_ID),
334 B.getInt32(0xc), B.getInt32(0xf), B.getFalse()}));
335 }
336 }
337 return V;
338 }
339
340 // Use the builder to create a shift right of V across the wavefront, with all
341 // lanes active, to turn an inclusive scan into an exclusive scan.
buildShiftRight(IRBuilder<> & B,Value * V,Value * const Identity) const342 Value *AMDGPUAtomicOptimizer::buildShiftRight(IRBuilder<> &B, Value *V,
343 Value *const Identity) const {
344 Type *const Ty = V->getType();
345 Module *M = B.GetInsertBlock()->getModule();
346 Function *UpdateDPP =
347 Intrinsic::getDeclaration(M, Intrinsic::amdgcn_update_dpp, Ty);
348 Function *ReadLane =
349 Intrinsic::getDeclaration(M, Intrinsic::amdgcn_readlane, {});
350 Function *WriteLane =
351 Intrinsic::getDeclaration(M, Intrinsic::amdgcn_writelane, {});
352
353 if (ST->hasDPPWavefrontShifts()) {
354 // GFX9 has DPP wavefront shift operations.
355 V = B.CreateCall(UpdateDPP,
356 {Identity, V, B.getInt32(DPP::WAVE_SHR1), B.getInt32(0xf),
357 B.getInt32(0xf), B.getFalse()});
358 } else {
359 // On GFX10 all DPP operations are confined to a single row. To get cross-
360 // row operations we have to use permlane or readlane.
361 Value *Old = V;
362 V = B.CreateCall(UpdateDPP,
363 {Identity, V, B.getInt32(DPP::ROW_SHR0 + 1),
364 B.getInt32(0xf), B.getInt32(0xf), B.getFalse()});
365
366 // Copy the old lane 15 to the new lane 16.
367 V = B.CreateCall(WriteLane, {B.CreateCall(ReadLane, {Old, B.getInt32(15)}),
368 B.getInt32(16), V});
369
370 if (!ST->isWave32()) {
371 // Copy the old lane 31 to the new lane 32.
372 V = B.CreateCall(
373 WriteLane,
374 {B.CreateCall(ReadLane, {Old, B.getInt32(31)}), B.getInt32(32), V});
375
376 // Copy the old lane 47 to the new lane 48.
377 V = B.CreateCall(
378 WriteLane,
379 {B.CreateCall(ReadLane, {Old, B.getInt32(47)}), B.getInt32(48), V});
380 }
381 }
382
383 return V;
384 }
385
getIdentityValueForAtomicOp(AtomicRMWInst::BinOp Op,unsigned BitWidth)386 static APInt getIdentityValueForAtomicOp(AtomicRMWInst::BinOp Op,
387 unsigned BitWidth) {
388 switch (Op) {
389 default:
390 llvm_unreachable("Unhandled atomic op");
391 case AtomicRMWInst::Add:
392 case AtomicRMWInst::Sub:
393 case AtomicRMWInst::Or:
394 case AtomicRMWInst::Xor:
395 case AtomicRMWInst::UMax:
396 return APInt::getMinValue(BitWidth);
397 case AtomicRMWInst::And:
398 case AtomicRMWInst::UMin:
399 return APInt::getMaxValue(BitWidth);
400 case AtomicRMWInst::Max:
401 return APInt::getSignedMinValue(BitWidth);
402 case AtomicRMWInst::Min:
403 return APInt::getSignedMaxValue(BitWidth);
404 }
405 }
406
buildMul(IRBuilder<> & B,Value * LHS,Value * RHS)407 static Value *buildMul(IRBuilder<> &B, Value *LHS, Value *RHS) {
408 const ConstantInt *CI = dyn_cast<ConstantInt>(LHS);
409 return (CI && CI->isOne()) ? RHS : B.CreateMul(LHS, RHS);
410 }
411
optimizeAtomic(Instruction & I,AtomicRMWInst::BinOp Op,unsigned ValIdx,bool ValDivergent) const412 void AMDGPUAtomicOptimizer::optimizeAtomic(Instruction &I,
413 AtomicRMWInst::BinOp Op,
414 unsigned ValIdx,
415 bool ValDivergent) const {
416 // Start building just before the instruction.
417 IRBuilder<> B(&I);
418
419 // If we are in a pixel shader, because of how we have to mask out helper
420 // lane invocations, we need to record the entry and exit BB's.
421 BasicBlock *PixelEntryBB = nullptr;
422 BasicBlock *PixelExitBB = nullptr;
423
424 // If we're optimizing an atomic within a pixel shader, we need to wrap the
425 // entire atomic operation in a helper-lane check. We do not want any helper
426 // lanes that are around only for the purposes of derivatives to take part
427 // in any cross-lane communication, and we use a branch on whether the lane is
428 // live to do this.
429 if (IsPixelShader) {
430 // Record I's original position as the entry block.
431 PixelEntryBB = I.getParent();
432
433 Value *const Cond = B.CreateIntrinsic(Intrinsic::amdgcn_ps_live, {}, {});
434 Instruction *const NonHelperTerminator =
435 SplitBlockAndInsertIfThen(Cond, &I, false, nullptr, DT, nullptr);
436
437 // Record I's new position as the exit block.
438 PixelExitBB = I.getParent();
439
440 I.moveBefore(NonHelperTerminator);
441 B.SetInsertPoint(&I);
442 }
443
444 Type *const Ty = I.getType();
445 const unsigned TyBitWidth = DL->getTypeSizeInBits(Ty);
446 auto *const VecTy = FixedVectorType::get(B.getInt32Ty(), 2);
447
448 // This is the value in the atomic operation we need to combine in order to
449 // reduce the number of atomic operations.
450 Value *const V = I.getOperand(ValIdx);
451
452 // We need to know how many lanes are active within the wavefront, and we do
453 // this by doing a ballot of active lanes.
454 Type *const WaveTy = B.getIntNTy(ST->getWavefrontSize());
455 CallInst *const Ballot =
456 B.CreateIntrinsic(Intrinsic::amdgcn_ballot, WaveTy, B.getTrue());
457
458 // We need to know how many lanes are active within the wavefront that are
459 // below us. If we counted each lane linearly starting from 0, a lane is
460 // below us only if its associated index was less than ours. We do this by
461 // using the mbcnt intrinsic.
462 Value *Mbcnt;
463 if (ST->isWave32()) {
464 Mbcnt = B.CreateIntrinsic(Intrinsic::amdgcn_mbcnt_lo, {},
465 {Ballot, B.getInt32(0)});
466 } else {
467 Value *const BitCast = B.CreateBitCast(Ballot, VecTy);
468 Value *const ExtractLo = B.CreateExtractElement(BitCast, B.getInt32(0));
469 Value *const ExtractHi = B.CreateExtractElement(BitCast, B.getInt32(1));
470 Mbcnt = B.CreateIntrinsic(Intrinsic::amdgcn_mbcnt_lo, {},
471 {ExtractLo, B.getInt32(0)});
472 Mbcnt =
473 B.CreateIntrinsic(Intrinsic::amdgcn_mbcnt_hi, {}, {ExtractHi, Mbcnt});
474 }
475 Mbcnt = B.CreateIntCast(Mbcnt, Ty, false);
476
477 Value *const Identity = B.getInt(getIdentityValueForAtomicOp(Op, TyBitWidth));
478
479 Value *ExclScan = nullptr;
480 Value *NewV = nullptr;
481
482 // If we have a divergent value in each lane, we need to combine the value
483 // using DPP.
484 if (ValDivergent) {
485 // First we need to set all inactive invocations to the identity value, so
486 // that they can correctly contribute to the final result.
487 NewV = B.CreateIntrinsic(Intrinsic::amdgcn_set_inactive, Ty, {V, Identity});
488
489 const AtomicRMWInst::BinOp ScanOp =
490 Op == AtomicRMWInst::Sub ? AtomicRMWInst::Add : Op;
491 NewV = buildScan(B, ScanOp, NewV, Identity);
492 ExclScan = buildShiftRight(B, NewV, Identity);
493
494 // Read the value from the last lane, which has accumlated the values of
495 // each active lane in the wavefront. This will be our new value which we
496 // will provide to the atomic operation.
497 Value *const LastLaneIdx = B.getInt32(ST->getWavefrontSize() - 1);
498 if (TyBitWidth == 64) {
499 Value *const ExtractLo = B.CreateTrunc(NewV, B.getInt32Ty());
500 Value *const ExtractHi =
501 B.CreateTrunc(B.CreateLShr(NewV, 32), B.getInt32Ty());
502 CallInst *const ReadLaneLo = B.CreateIntrinsic(
503 Intrinsic::amdgcn_readlane, {}, {ExtractLo, LastLaneIdx});
504 CallInst *const ReadLaneHi = B.CreateIntrinsic(
505 Intrinsic::amdgcn_readlane, {}, {ExtractHi, LastLaneIdx});
506 Value *const PartialInsert = B.CreateInsertElement(
507 UndefValue::get(VecTy), ReadLaneLo, B.getInt32(0));
508 Value *const Insert =
509 B.CreateInsertElement(PartialInsert, ReadLaneHi, B.getInt32(1));
510 NewV = B.CreateBitCast(Insert, Ty);
511 } else if (TyBitWidth == 32) {
512 NewV = B.CreateIntrinsic(Intrinsic::amdgcn_readlane, {},
513 {NewV, LastLaneIdx});
514 } else {
515 llvm_unreachable("Unhandled atomic bit width");
516 }
517
518 // Finally mark the readlanes in the WWM section.
519 NewV = B.CreateIntrinsic(Intrinsic::amdgcn_wwm, Ty, NewV);
520 } else {
521 switch (Op) {
522 default:
523 llvm_unreachable("Unhandled atomic op");
524
525 case AtomicRMWInst::Add:
526 case AtomicRMWInst::Sub: {
527 // The new value we will be contributing to the atomic operation is the
528 // old value times the number of active lanes.
529 Value *const Ctpop = B.CreateIntCast(
530 B.CreateUnaryIntrinsic(Intrinsic::ctpop, Ballot), Ty, false);
531 NewV = buildMul(B, V, Ctpop);
532 break;
533 }
534
535 case AtomicRMWInst::And:
536 case AtomicRMWInst::Or:
537 case AtomicRMWInst::Max:
538 case AtomicRMWInst::Min:
539 case AtomicRMWInst::UMax:
540 case AtomicRMWInst::UMin:
541 // These operations with a uniform value are idempotent: doing the atomic
542 // operation multiple times has the same effect as doing it once.
543 NewV = V;
544 break;
545
546 case AtomicRMWInst::Xor:
547 // The new value we will be contributing to the atomic operation is the
548 // old value times the parity of the number of active lanes.
549 Value *const Ctpop = B.CreateIntCast(
550 B.CreateUnaryIntrinsic(Intrinsic::ctpop, Ballot), Ty, false);
551 NewV = buildMul(B, V, B.CreateAnd(Ctpop, 1));
552 break;
553 }
554 }
555
556 // We only want a single lane to enter our new control flow, and we do this
557 // by checking if there are any active lanes below us. Only one lane will
558 // have 0 active lanes below us, so that will be the only one to progress.
559 Value *const Cond = B.CreateICmpEQ(Mbcnt, B.getIntN(TyBitWidth, 0));
560
561 // Store I's original basic block before we split the block.
562 BasicBlock *const EntryBB = I.getParent();
563
564 // We need to introduce some new control flow to force a single lane to be
565 // active. We do this by splitting I's basic block at I, and introducing the
566 // new block such that:
567 // entry --> single_lane -\
568 // \------------------> exit
569 Instruction *const SingleLaneTerminator =
570 SplitBlockAndInsertIfThen(Cond, &I, false, nullptr, DT, nullptr);
571
572 // Move the IR builder into single_lane next.
573 B.SetInsertPoint(SingleLaneTerminator);
574
575 // Clone the original atomic operation into single lane, replacing the
576 // original value with our newly created one.
577 Instruction *const NewI = I.clone();
578 B.Insert(NewI);
579 NewI->setOperand(ValIdx, NewV);
580
581 // Move the IR builder into exit next, and start inserting just before the
582 // original instruction.
583 B.SetInsertPoint(&I);
584
585 const bool NeedResult = !I.use_empty();
586 if (NeedResult) {
587 // Create a PHI node to get our new atomic result into the exit block.
588 PHINode *const PHI = B.CreatePHI(Ty, 2);
589 PHI->addIncoming(UndefValue::get(Ty), EntryBB);
590 PHI->addIncoming(NewI, SingleLaneTerminator->getParent());
591
592 // We need to broadcast the value who was the lowest active lane (the first
593 // lane) to all other lanes in the wavefront. We use an intrinsic for this,
594 // but have to handle 64-bit broadcasts with two calls to this intrinsic.
595 Value *BroadcastI = nullptr;
596
597 if (TyBitWidth == 64) {
598 Value *const ExtractLo = B.CreateTrunc(PHI, B.getInt32Ty());
599 Value *const ExtractHi =
600 B.CreateTrunc(B.CreateLShr(PHI, 32), B.getInt32Ty());
601 CallInst *const ReadFirstLaneLo =
602 B.CreateIntrinsic(Intrinsic::amdgcn_readfirstlane, {}, ExtractLo);
603 CallInst *const ReadFirstLaneHi =
604 B.CreateIntrinsic(Intrinsic::amdgcn_readfirstlane, {}, ExtractHi);
605 Value *const PartialInsert = B.CreateInsertElement(
606 UndefValue::get(VecTy), ReadFirstLaneLo, B.getInt32(0));
607 Value *const Insert =
608 B.CreateInsertElement(PartialInsert, ReadFirstLaneHi, B.getInt32(1));
609 BroadcastI = B.CreateBitCast(Insert, Ty);
610 } else if (TyBitWidth == 32) {
611
612 BroadcastI = B.CreateIntrinsic(Intrinsic::amdgcn_readfirstlane, {}, PHI);
613 } else {
614 llvm_unreachable("Unhandled atomic bit width");
615 }
616
617 // Now that we have the result of our single atomic operation, we need to
618 // get our individual lane's slice into the result. We use the lane offset
619 // we previously calculated combined with the atomic result value we got
620 // from the first lane, to get our lane's index into the atomic result.
621 Value *LaneOffset = nullptr;
622 if (ValDivergent) {
623 LaneOffset = B.CreateIntrinsic(Intrinsic::amdgcn_wwm, Ty, ExclScan);
624 } else {
625 switch (Op) {
626 default:
627 llvm_unreachable("Unhandled atomic op");
628 case AtomicRMWInst::Add:
629 case AtomicRMWInst::Sub:
630 LaneOffset = buildMul(B, V, Mbcnt);
631 break;
632 case AtomicRMWInst::And:
633 case AtomicRMWInst::Or:
634 case AtomicRMWInst::Max:
635 case AtomicRMWInst::Min:
636 case AtomicRMWInst::UMax:
637 case AtomicRMWInst::UMin:
638 LaneOffset = B.CreateSelect(Cond, Identity, V);
639 break;
640 case AtomicRMWInst::Xor:
641 LaneOffset = buildMul(B, V, B.CreateAnd(Mbcnt, 1));
642 break;
643 }
644 }
645 Value *const Result = buildNonAtomicBinOp(B, Op, BroadcastI, LaneOffset);
646
647 if (IsPixelShader) {
648 // Need a final PHI to reconverge to above the helper lane branch mask.
649 B.SetInsertPoint(PixelExitBB->getFirstNonPHI());
650
651 PHINode *const PHI = B.CreatePHI(Ty, 2);
652 PHI->addIncoming(UndefValue::get(Ty), PixelEntryBB);
653 PHI->addIncoming(Result, I.getParent());
654 I.replaceAllUsesWith(PHI);
655 } else {
656 // Replace the original atomic instruction with the new one.
657 I.replaceAllUsesWith(Result);
658 }
659 }
660
661 // And delete the original.
662 I.eraseFromParent();
663 }
664
665 INITIALIZE_PASS_BEGIN(AMDGPUAtomicOptimizer, DEBUG_TYPE,
666 "AMDGPU atomic optimizations", false, false)
INITIALIZE_PASS_DEPENDENCY(LegacyDivergenceAnalysis)667 INITIALIZE_PASS_DEPENDENCY(LegacyDivergenceAnalysis)
668 INITIALIZE_PASS_DEPENDENCY(TargetPassConfig)
669 INITIALIZE_PASS_END(AMDGPUAtomicOptimizer, DEBUG_TYPE,
670 "AMDGPU atomic optimizations", false, false)
671
672 FunctionPass *llvm::createAMDGPUAtomicOptimizerPass() {
673 return new AMDGPUAtomicOptimizer();
674 }
675