blob: e7998db4a7c1172f10a7b15c3b94b2f031fa7e94 [file] [log] [blame]
Robin Morisset59c23cd2014-08-21 21:50:01 +00001//===-- AtomicExpandPass.cpp - Expand atomic instructions -------===//
Tim Northoverc882eb02014-04-03 11:44:58 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains a pass (at IR level) to replace atomic instructions with
Richard Diamond7ef94562015-08-05 19:40:39 +000011// either (intrinsic-based) load-linked/store-conditional loops or
12// AtomicCmpXchg.
Tim Northoverc882eb02014-04-03 11:44:58 +000013//
14//===----------------------------------------------------------------------===//
15
JF Bastiene8aad292015-08-03 15:29:47 +000016#include "llvm/CodeGen/AtomicExpandUtils.h"
Tim Northoverc882eb02014-04-03 11:44:58 +000017#include "llvm/CodeGen/Passes.h"
18#include "llvm/IR/Function.h"
19#include "llvm/IR/IRBuilder.h"
Robin Morisseted3d48f2014-09-03 21:29:59 +000020#include "llvm/IR/InstIterator.h"
Tim Northoverc882eb02014-04-03 11:44:58 +000021#include "llvm/IR/Instructions.h"
22#include "llvm/IR/Intrinsics.h"
23#include "llvm/IR/Module.h"
24#include "llvm/Support/Debug.h"
25#include "llvm/Target/TargetLowering.h"
26#include "llvm/Target/TargetMachine.h"
Eric Christopherc40e5ed2014-06-19 21:03:04 +000027#include "llvm/Target/TargetSubtargetInfo.h"
28
Tim Northoverc882eb02014-04-03 11:44:58 +000029using namespace llvm;
30
Robin Morisset59c23cd2014-08-21 21:50:01 +000031#define DEBUG_TYPE "atomic-expand"
Chandler Carruth1b9dde02014-04-22 02:02:50 +000032
Tim Northoverc882eb02014-04-03 11:44:58 +000033namespace {
Robin Morisset59c23cd2014-08-21 21:50:01 +000034 class AtomicExpand: public FunctionPass {
Eric Christopherc40e5ed2014-06-19 21:03:04 +000035 const TargetMachine *TM;
Eric Christopherb11a1b72015-01-26 19:45:40 +000036 const TargetLowering *TLI;
Tim Northoverc882eb02014-04-03 11:44:58 +000037 public:
38 static char ID; // Pass identification, replacement for typeid
Robin Morisset59c23cd2014-08-21 21:50:01 +000039 explicit AtomicExpand(const TargetMachine *TM = nullptr)
Eric Christopherb11a1b72015-01-26 19:45:40 +000040 : FunctionPass(ID), TM(TM), TLI(nullptr) {
Robin Morisset59c23cd2014-08-21 21:50:01 +000041 initializeAtomicExpandPass(*PassRegistry::getPassRegistry());
Tim Northover037f26f22014-04-17 18:22:47 +000042 }
Tim Northoverc882eb02014-04-03 11:44:58 +000043
44 bool runOnFunction(Function &F) override;
Tim Northoverc882eb02014-04-03 11:44:58 +000045
Robin Morisseted3d48f2014-09-03 21:29:59 +000046 private:
Robin Morissetdedef332014-09-23 20:31:14 +000047 bool bracketInstWithFences(Instruction *I, AtomicOrdering Order,
48 bool IsStore, bool IsLoad);
Ahmed Bougacha52468672015-09-11 17:08:28 +000049 bool tryExpandAtomicLoad(LoadInst *LI);
Robin Morisset6dbbbc22014-09-23 20:59:25 +000050 bool expandAtomicLoadToLL(LoadInst *LI);
51 bool expandAtomicLoadToCmpXchg(LoadInst *LI);
Robin Morisseted3d48f2014-09-03 21:29:59 +000052 bool expandAtomicStore(StoreInst *SI);
JF Bastienf14889e2015-03-04 15:47:57 +000053 bool tryExpandAtomicRMW(AtomicRMWInst *AI);
Robin Morisset25c8e312014-09-17 00:06:58 +000054 bool expandAtomicRMWToLLSC(AtomicRMWInst *AI);
Tim Northoverc882eb02014-04-03 11:44:58 +000055 bool expandAtomicCmpXchg(AtomicCmpXchgInst *CI);
Robin Morisset810739d2014-09-25 17:27:43 +000056 bool isIdempotentRMW(AtomicRMWInst *AI);
57 bool simplifyIdempotentRMW(AtomicRMWInst *AI);
Tim Northoverc882eb02014-04-03 11:44:58 +000058 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +000059}
Tim Northoverc882eb02014-04-03 11:44:58 +000060
Robin Morisset59c23cd2014-08-21 21:50:01 +000061char AtomicExpand::ID = 0;
62char &llvm::AtomicExpandID = AtomicExpand::ID;
63INITIALIZE_TM_PASS(AtomicExpand, "atomic-expand",
64 "Expand Atomic calls in terms of either load-linked & store-conditional or cmpxchg",
Jiangning Liud623c522014-06-11 07:04:37 +000065 false, false)
Tim Northover037f26f22014-04-17 18:22:47 +000066
Robin Morisset59c23cd2014-08-21 21:50:01 +000067FunctionPass *llvm::createAtomicExpandPass(const TargetMachine *TM) {
68 return new AtomicExpand(TM);
Tim Northover037f26f22014-04-17 18:22:47 +000069}
70
Robin Morisset59c23cd2014-08-21 21:50:01 +000071bool AtomicExpand::runOnFunction(Function &F) {
Eric Christopher4e048eeb2015-01-27 01:04:42 +000072 if (!TM || !TM->getSubtargetImpl(F)->enableAtomicExpand())
Tim Northover037f26f22014-04-17 18:22:47 +000073 return false;
Eric Christopher4e048eeb2015-01-27 01:04:42 +000074 TLI = TM->getSubtargetImpl(F)->getTargetLowering();
Tim Northover037f26f22014-04-17 18:22:47 +000075
Tim Northoverc882eb02014-04-03 11:44:58 +000076 SmallVector<Instruction *, 1> AtomicInsts;
77
78 // Changing control-flow while iterating through it is a bad idea, so gather a
79 // list of all atomic instructions before we start.
Robin Morisseted3d48f2014-09-03 21:29:59 +000080 for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I) {
81 if (I->isAtomic())
82 AtomicInsts.push_back(&*I);
Tim Northoverc882eb02014-04-03 11:44:58 +000083 }
84
Robin Morisseted3d48f2014-09-03 21:29:59 +000085 bool MadeChange = false;
86 for (auto I : AtomicInsts) {
87 auto LI = dyn_cast<LoadInst>(I);
88 auto SI = dyn_cast<StoreInst>(I);
89 auto RMWI = dyn_cast<AtomicRMWInst>(I);
90 auto CASI = dyn_cast<AtomicCmpXchgInst>(I);
Robin Morisseted3d48f2014-09-03 21:29:59 +000091 assert((LI || SI || RMWI || CASI || isa<FenceInst>(I)) &&
92 "Unknown atomic instruction");
93
Robin Morissetdedef332014-09-23 20:31:14 +000094 auto FenceOrdering = Monotonic;
95 bool IsStore, IsLoad;
Eric Christopherb11a1b72015-01-26 19:45:40 +000096 if (TLI->getInsertFencesForAtomic()) {
Robin Morissetdedef332014-09-23 20:31:14 +000097 if (LI && isAtLeastAcquire(LI->getOrdering())) {
98 FenceOrdering = LI->getOrdering();
99 LI->setOrdering(Monotonic);
100 IsStore = false;
101 IsLoad = true;
102 } else if (SI && isAtLeastRelease(SI->getOrdering())) {
103 FenceOrdering = SI->getOrdering();
104 SI->setOrdering(Monotonic);
105 IsStore = true;
106 IsLoad = false;
107 } else if (RMWI && (isAtLeastRelease(RMWI->getOrdering()) ||
108 isAtLeastAcquire(RMWI->getOrdering()))) {
109 FenceOrdering = RMWI->getOrdering();
110 RMWI->setOrdering(Monotonic);
111 IsStore = IsLoad = true;
Ahmed Bougacha52468672015-09-11 17:08:28 +0000112 } else if (CASI && !TLI->shouldExpandAtomicCmpXchgInIR(CASI) &&
Eric Christopherb11a1b72015-01-26 19:45:40 +0000113 (isAtLeastRelease(CASI->getSuccessOrdering()) ||
114 isAtLeastAcquire(CASI->getSuccessOrdering()))) {
Robin Morissetdedef332014-09-23 20:31:14 +0000115 // If a compare and swap is lowered to LL/SC, we can do smarter fence
116 // insertion, with a stronger one on the success path than on the
117 // failure path. As a result, fence insertion is directly done by
118 // expandAtomicCmpXchg in that case.
119 FenceOrdering = CASI->getSuccessOrdering();
120 CASI->setSuccessOrdering(Monotonic);
121 CASI->setFailureOrdering(Monotonic);
122 IsStore = IsLoad = true;
123 }
124
125 if (FenceOrdering != Monotonic) {
126 MadeChange |= bracketInstWithFences(I, FenceOrdering, IsStore, IsLoad);
127 }
128 }
129
Ahmed Bougacha52468672015-09-11 17:08:28 +0000130 if (LI) {
131 MadeChange |= tryExpandAtomicLoad(LI);
Eric Christopherb11a1b72015-01-26 19:45:40 +0000132 } else if (SI && TLI->shouldExpandAtomicStoreInIR(SI)) {
Robin Morisseted3d48f2014-09-03 21:29:59 +0000133 MadeChange |= expandAtomicStore(SI);
Robin Morisset810739d2014-09-25 17:27:43 +0000134 } else if (RMWI) {
135 // There are two different ways of expanding RMW instructions:
136 // - into a load if it is idempotent
137 // - into a Cmpxchg/LL-SC loop otherwise
138 // we try them in that order.
JF Bastienf14889e2015-03-04 15:47:57 +0000139
140 if (isIdempotentRMW(RMWI) && simplifyIdempotentRMW(RMWI)) {
141 MadeChange = true;
142 } else {
143 MadeChange |= tryExpandAtomicRMW(RMWI);
144 }
Ahmed Bougacha52468672015-09-11 17:08:28 +0000145 } else if (CASI && TLI->shouldExpandAtomicCmpXchgInIR(CASI)) {
Robin Morisseted3d48f2014-09-03 21:29:59 +0000146 MadeChange |= expandAtomicCmpXchg(CASI);
147 }
148 }
Tim Northoverc882eb02014-04-03 11:44:58 +0000149 return MadeChange;
150}
151
Robin Morissetdedef332014-09-23 20:31:14 +0000152bool AtomicExpand::bracketInstWithFences(Instruction *I, AtomicOrdering Order,
153 bool IsStore, bool IsLoad) {
154 IRBuilder<> Builder(I);
155
Eric Christopherb11a1b72015-01-26 19:45:40 +0000156 auto LeadingFence = TLI->emitLeadingFence(Builder, Order, IsStore, IsLoad);
Robin Morissetdedef332014-09-23 20:31:14 +0000157
Eric Christopherb11a1b72015-01-26 19:45:40 +0000158 auto TrailingFence = TLI->emitTrailingFence(Builder, Order, IsStore, IsLoad);
Robin Morissetdedef332014-09-23 20:31:14 +0000159 // The trailing fence is emitted before the instruction instead of after
160 // because there is no easy way of setting Builder insertion point after
161 // an instruction. So we must erase it from the BB, and insert it back
162 // in the right place.
163 // We have a guard here because not every atomic operation generates a
164 // trailing fence.
165 if (TrailingFence) {
166 TrailingFence->removeFromParent();
167 TrailingFence->insertAfter(I);
168 }
169
170 return (LeadingFence || TrailingFence);
171}
172
Ahmed Bougacha52468672015-09-11 17:08:28 +0000173bool AtomicExpand::tryExpandAtomicLoad(LoadInst *LI) {
174 switch (TLI->shouldExpandAtomicLoadInIR(LI)) {
175 case TargetLoweringBase::AtomicExpansionKind::None:
176 return false;
177 case TargetLoweringBase::AtomicExpansionKind::LLSC: {
Robin Morisset6dbbbc22014-09-23 20:59:25 +0000178 return expandAtomicLoadToLL(LI);
Ahmed Bougacha52468672015-09-11 17:08:28 +0000179 }
180 case TargetLoweringBase::AtomicExpansionKind::CmpXChg: {
Robin Morisset6dbbbc22014-09-23 20:59:25 +0000181 return expandAtomicLoadToCmpXchg(LI);
Ahmed Bougacha52468672015-09-11 17:08:28 +0000182 }
183 }
184 llvm_unreachable("Unhandled case in tryExpandAtomicLoad");
Robin Morisset6dbbbc22014-09-23 20:59:25 +0000185}
186
187bool AtomicExpand::expandAtomicLoadToLL(LoadInst *LI) {
Tim Northoverc882eb02014-04-03 11:44:58 +0000188 IRBuilder<> Builder(LI);
Tim Northoverc882eb02014-04-03 11:44:58 +0000189
Robin Morissetdedef332014-09-23 20:31:14 +0000190 // On some architectures, load-linked instructions are atomic for larger
191 // sizes than normal loads. For example, the only 64-bit load guaranteed
192 // to be single-copy atomic by ARM is an ldrexd (A3.5.3).
Robin Morisseta47cb412014-09-03 21:01:03 +0000193 Value *Val =
Robin Morissetdedef332014-09-23 20:31:14 +0000194 TLI->emitLoadLinked(Builder, LI->getPointerOperand(), LI->getOrdering());
Tim Northoverc882eb02014-04-03 11:44:58 +0000195
196 LI->replaceAllUsesWith(Val);
197 LI->eraseFromParent();
198
199 return true;
200}
201
Robin Morisset6dbbbc22014-09-23 20:59:25 +0000202bool AtomicExpand::expandAtomicLoadToCmpXchg(LoadInst *LI) {
203 IRBuilder<> Builder(LI);
204 AtomicOrdering Order = LI->getOrdering();
205 Value *Addr = LI->getPointerOperand();
206 Type *Ty = cast<PointerType>(Addr->getType())->getElementType();
207 Constant *DummyVal = Constant::getNullValue(Ty);
208
209 Value *Pair = Builder.CreateAtomicCmpXchg(
210 Addr, DummyVal, DummyVal, Order,
211 AtomicCmpXchgInst::getStrongestFailureOrdering(Order));
212 Value *Loaded = Builder.CreateExtractValue(Pair, 0, "loaded");
213
214 LI->replaceAllUsesWith(Loaded);
215 LI->eraseFromParent();
216
217 return true;
218}
219
Robin Morisset59c23cd2014-08-21 21:50:01 +0000220bool AtomicExpand::expandAtomicStore(StoreInst *SI) {
Robin Morisset25c8e312014-09-17 00:06:58 +0000221 // This function is only called on atomic stores that are too large to be
222 // atomic if implemented as a native store. So we replace them by an
223 // atomic swap, that can be implemented for example as a ldrex/strex on ARM
224 // or lock cmpxchg8/16b on X86, as these are atomic for larger sizes.
JF Bastienf14889e2015-03-04 15:47:57 +0000225 // It is the responsibility of the target to only signal expansion via
Robin Morisset25c8e312014-09-17 00:06:58 +0000226 // shouldExpandAtomicRMW in cases where this is required and possible.
Tim Northoverc882eb02014-04-03 11:44:58 +0000227 IRBuilder<> Builder(SI);
228 AtomicRMWInst *AI =
229 Builder.CreateAtomicRMW(AtomicRMWInst::Xchg, SI->getPointerOperand(),
230 SI->getValueOperand(), SI->getOrdering());
231 SI->eraseFromParent();
232
233 // Now we have an appropriate swap instruction, lower it as usual.
JF Bastienf14889e2015-03-04 15:47:57 +0000234 return tryExpandAtomicRMW(AI);
Tim Northoverc882eb02014-04-03 11:44:58 +0000235}
236
JF Bastiene8aad292015-08-03 15:29:47 +0000237static void createCmpXchgInstFun(IRBuilder<> &Builder, Value *Addr,
238 Value *Loaded, Value *NewVal,
239 AtomicOrdering MemOpOrder,
240 Value *&Success, Value *&NewLoaded) {
241 Value* Pair = Builder.CreateAtomicCmpXchg(
242 Addr, Loaded, NewVal, MemOpOrder,
243 AtomicCmpXchgInst::getStrongestFailureOrdering(MemOpOrder));
244 Success = Builder.CreateExtractValue(Pair, 1, "success");
245 NewLoaded = Builder.CreateExtractValue(Pair, 0, "newloaded");
246}
247
JF Bastienf14889e2015-03-04 15:47:57 +0000248bool AtomicExpand::tryExpandAtomicRMW(AtomicRMWInst *AI) {
249 switch (TLI->shouldExpandAtomicRMWInIR(AI)) {
Ahmed Bougacha9d677132015-09-11 17:08:17 +0000250 case TargetLoweringBase::AtomicExpansionKind::None:
JF Bastienf14889e2015-03-04 15:47:57 +0000251 return false;
Ahmed Bougacha9d677132015-09-11 17:08:17 +0000252 case TargetLoweringBase::AtomicExpansionKind::LLSC: {
Robin Morisset25c8e312014-09-17 00:06:58 +0000253 return expandAtomicRMWToLLSC(AI);
JF Bastienf14889e2015-03-04 15:47:57 +0000254 }
Ahmed Bougacha9d677132015-09-11 17:08:17 +0000255 case TargetLoweringBase::AtomicExpansionKind::CmpXChg: {
JF Bastiene8aad292015-08-03 15:29:47 +0000256 return expandAtomicRMWToCmpXchg(AI, createCmpXchgInstFun);
JF Bastienf14889e2015-03-04 15:47:57 +0000257 }
258 }
259 llvm_unreachable("Unhandled case in tryExpandAtomicRMW");
Robin Morisset25c8e312014-09-17 00:06:58 +0000260}
261
262/// Emit IR to implement the given atomicrmw operation on values in registers,
263/// returning the new value.
264static Value *performAtomicOp(AtomicRMWInst::BinOp Op, IRBuilder<> &Builder,
265 Value *Loaded, Value *Inc) {
266 Value *NewVal;
267 switch (Op) {
268 case AtomicRMWInst::Xchg:
269 return Inc;
270 case AtomicRMWInst::Add:
271 return Builder.CreateAdd(Loaded, Inc, "new");
272 case AtomicRMWInst::Sub:
273 return Builder.CreateSub(Loaded, Inc, "new");
274 case AtomicRMWInst::And:
275 return Builder.CreateAnd(Loaded, Inc, "new");
276 case AtomicRMWInst::Nand:
277 return Builder.CreateNot(Builder.CreateAnd(Loaded, Inc), "new");
278 case AtomicRMWInst::Or:
279 return Builder.CreateOr(Loaded, Inc, "new");
280 case AtomicRMWInst::Xor:
281 return Builder.CreateXor(Loaded, Inc, "new");
282 case AtomicRMWInst::Max:
283 NewVal = Builder.CreateICmpSGT(Loaded, Inc);
284 return Builder.CreateSelect(NewVal, Loaded, Inc, "new");
285 case AtomicRMWInst::Min:
286 NewVal = Builder.CreateICmpSLE(Loaded, Inc);
287 return Builder.CreateSelect(NewVal, Loaded, Inc, "new");
288 case AtomicRMWInst::UMax:
289 NewVal = Builder.CreateICmpUGT(Loaded, Inc);
290 return Builder.CreateSelect(NewVal, Loaded, Inc, "new");
291 case AtomicRMWInst::UMin:
292 NewVal = Builder.CreateICmpULE(Loaded, Inc);
293 return Builder.CreateSelect(NewVal, Loaded, Inc, "new");
294 default:
295 llvm_unreachable("Unknown atomic op");
296 }
297}
298
299bool AtomicExpand::expandAtomicRMWToLLSC(AtomicRMWInst *AI) {
Robin Morissetdedef332014-09-23 20:31:14 +0000300 AtomicOrdering MemOpOrder = AI->getOrdering();
Tim Northoverc882eb02014-04-03 11:44:58 +0000301 Value *Addr = AI->getPointerOperand();
302 BasicBlock *BB = AI->getParent();
303 Function *F = BB->getParent();
304 LLVMContext &Ctx = F->getContext();
305
306 // Given: atomicrmw some_op iN* %addr, iN %incr ordering
307 //
308 // The standard expansion we produce is:
309 // [...]
310 // fence?
311 // atomicrmw.start:
312 // %loaded = @load.linked(%addr)
313 // %new = some_op iN %loaded, %incr
314 // %stored = @store_conditional(%new, %addr)
315 // %try_again = icmp i32 ne %stored, 0
316 // br i1 %try_again, label %loop, label %atomicrmw.end
317 // atomicrmw.end:
318 // fence?
319 // [...]
Duncan P. N. Exon Smith8f11e1a2015-10-09 16:54:49 +0000320 BasicBlock *ExitBB = BB->splitBasicBlock(AI->getIterator(), "atomicrmw.end");
Tim Northoverc882eb02014-04-03 11:44:58 +0000321 BasicBlock *LoopBB = BasicBlock::Create(Ctx, "atomicrmw.start", F, ExitBB);
322
323 // This grabs the DebugLoc from AI.
324 IRBuilder<> Builder(AI);
325
326 // The split call above "helpfully" added a branch at the end of BB (to the
327 // wrong place), but we might want a fence too. It's easiest to just remove
328 // the branch entirely.
329 std::prev(BB->end())->eraseFromParent();
330 Builder.SetInsertPoint(BB);
Tim Northoverc882eb02014-04-03 11:44:58 +0000331 Builder.CreateBr(LoopBB);
332
333 // Start the main loop block now that we've taken care of the preliminaries.
334 Builder.SetInsertPoint(LoopBB);
Robin Morisseta47cb412014-09-03 21:01:03 +0000335 Value *Loaded = TLI->emitLoadLinked(Builder, Addr, MemOpOrder);
Tim Northoverc882eb02014-04-03 11:44:58 +0000336
Robin Morisset25c8e312014-09-17 00:06:58 +0000337 Value *NewVal =
338 performAtomicOp(AI->getOperation(), Builder, Loaded, AI->getValOperand());
Tim Northoverc882eb02014-04-03 11:44:58 +0000339
Eric Christopherd9134482014-08-04 21:25:23 +0000340 Value *StoreSuccess =
Robin Morisseta47cb412014-09-03 21:01:03 +0000341 TLI->emitStoreConditional(Builder, NewVal, Addr, MemOpOrder);
Tim Northoverc882eb02014-04-03 11:44:58 +0000342 Value *TryAgain = Builder.CreateICmpNE(
343 StoreSuccess, ConstantInt::get(IntegerType::get(Ctx, 32), 0), "tryagain");
344 Builder.CreateCondBr(TryAgain, LoopBB, ExitBB);
345
346 Builder.SetInsertPoint(ExitBB, ExitBB->begin());
Tim Northoverc882eb02014-04-03 11:44:58 +0000347
348 AI->replaceAllUsesWith(Loaded);
349 AI->eraseFromParent();
350
351 return true;
352}
353
Robin Morisset59c23cd2014-08-21 21:50:01 +0000354bool AtomicExpand::expandAtomicCmpXchg(AtomicCmpXchgInst *CI) {
Tim Northover70450c52014-04-03 13:06:54 +0000355 AtomicOrdering SuccessOrder = CI->getSuccessOrdering();
356 AtomicOrdering FailureOrder = CI->getFailureOrdering();
Tim Northoverc882eb02014-04-03 11:44:58 +0000357 Value *Addr = CI->getPointerOperand();
358 BasicBlock *BB = CI->getParent();
359 Function *F = BB->getParent();
360 LLVMContext &Ctx = F->getContext();
Robin Morisseted3d48f2014-09-03 21:29:59 +0000361 // If getInsertFencesForAtomic() returns true, then the target does not want
362 // to deal with memory orders, and emitLeading/TrailingFence should take care
363 // of everything. Otherwise, emitLeading/TrailingFence are no-op and we
364 // should preserve the ordering.
Robin Morisseta47cb412014-09-03 21:01:03 +0000365 AtomicOrdering MemOpOrder =
366 TLI->getInsertFencesForAtomic() ? Monotonic : SuccessOrder;
Tim Northoverc882eb02014-04-03 11:44:58 +0000367
368 // Given: cmpxchg some_op iN* %addr, iN %desired, iN %new success_ord fail_ord
369 //
Tim Northover70450c52014-04-03 13:06:54 +0000370 // The full expansion we produce is:
Tim Northoverc882eb02014-04-03 11:44:58 +0000371 // [...]
372 // fence?
373 // cmpxchg.start:
374 // %loaded = @load.linked(%addr)
375 // %should_store = icmp eq %loaded, %desired
Tim Northover70450c52014-04-03 13:06:54 +0000376 // br i1 %should_store, label %cmpxchg.trystore,
Ahmed Bougacha07a844d2015-09-22 17:21:44 +0000377 // label %cmpxchg.nostore
Tim Northoverc882eb02014-04-03 11:44:58 +0000378 // cmpxchg.trystore:
379 // %stored = @store_conditional(%new, %addr)
Tim Northover20b9f732014-06-13 16:45:52 +0000380 // %success = icmp eq i32 %stored, 0
381 // br i1 %success, label %cmpxchg.success, label %loop/%cmpxchg.failure
382 // cmpxchg.success:
383 // fence?
384 // br label %cmpxchg.end
Ahmed Bougacha07a844d2015-09-22 17:21:44 +0000385 // cmpxchg.nostore:
386 // @load_linked_fail_balance()?
387 // br label %cmpxchg.failure
Tim Northover20b9f732014-06-13 16:45:52 +0000388 // cmpxchg.failure:
Tim Northoverc882eb02014-04-03 11:44:58 +0000389 // fence?
Tim Northover70450c52014-04-03 13:06:54 +0000390 // br label %cmpxchg.end
391 // cmpxchg.end:
Tim Northover20b9f732014-06-13 16:45:52 +0000392 // %success = phi i1 [true, %cmpxchg.success], [false, %cmpxchg.failure]
393 // %restmp = insertvalue { iN, i1 } undef, iN %loaded, 0
394 // %res = insertvalue { iN, i1 } %restmp, i1 %success, 1
Tim Northoverc882eb02014-04-03 11:44:58 +0000395 // [...]
Duncan P. N. Exon Smith8f11e1a2015-10-09 16:54:49 +0000396 BasicBlock *ExitBB = BB->splitBasicBlock(CI->getIterator(), "cmpxchg.end");
Tim Northover20b9f732014-06-13 16:45:52 +0000397 auto FailureBB = BasicBlock::Create(Ctx, "cmpxchg.failure", F, ExitBB);
Ahmed Bougacha07a844d2015-09-22 17:21:44 +0000398 auto NoStoreBB = BasicBlock::Create(Ctx, "cmpxchg.nostore", F, FailureBB);
399 auto SuccessBB = BasicBlock::Create(Ctx, "cmpxchg.success", F, NoStoreBB);
Tim Northover20b9f732014-06-13 16:45:52 +0000400 auto TryStoreBB = BasicBlock::Create(Ctx, "cmpxchg.trystore", F, SuccessBB);
Tim Northover70450c52014-04-03 13:06:54 +0000401 auto LoopBB = BasicBlock::Create(Ctx, "cmpxchg.start", F, TryStoreBB);
Tim Northoverc882eb02014-04-03 11:44:58 +0000402
403 // This grabs the DebugLoc from CI
404 IRBuilder<> Builder(CI);
405
406 // The split call above "helpfully" added a branch at the end of BB (to the
407 // wrong place), but we might want a fence too. It's easiest to just remove
408 // the branch entirely.
409 std::prev(BB->end())->eraseFromParent();
410 Builder.SetInsertPoint(BB);
Robin Morisseta47cb412014-09-03 21:01:03 +0000411 TLI->emitLeadingFence(Builder, SuccessOrder, /*IsStore=*/true,
412 /*IsLoad=*/true);
Tim Northoverc882eb02014-04-03 11:44:58 +0000413 Builder.CreateBr(LoopBB);
414
415 // Start the main loop block now that we've taken care of the preliminaries.
416 Builder.SetInsertPoint(LoopBB);
Robin Morisseta47cb412014-09-03 21:01:03 +0000417 Value *Loaded = TLI->emitLoadLinked(Builder, Addr, MemOpOrder);
Tim Northoverc882eb02014-04-03 11:44:58 +0000418 Value *ShouldStore =
419 Builder.CreateICmpEQ(Loaded, CI->getCompareOperand(), "should_store");
Tim Northover70450c52014-04-03 13:06:54 +0000420
Eric Christopher572e03a2015-06-19 01:53:21 +0000421 // If the cmpxchg doesn't actually need any ordering when it fails, we can
Tim Northover70450c52014-04-03 13:06:54 +0000422 // jump straight past that fence instruction (if it exists).
Ahmed Bougacha07a844d2015-09-22 17:21:44 +0000423 Builder.CreateCondBr(ShouldStore, TryStoreBB, NoStoreBB);
Tim Northoverc882eb02014-04-03 11:44:58 +0000424
425 Builder.SetInsertPoint(TryStoreBB);
Robin Morisseta47cb412014-09-03 21:01:03 +0000426 Value *StoreSuccess = TLI->emitStoreConditional(
427 Builder, CI->getNewValOperand(), Addr, MemOpOrder);
Tim Northoverd039abd2014-06-13 16:45:36 +0000428 StoreSuccess = Builder.CreateICmpEQ(
Tim Northoverc882eb02014-04-03 11:44:58 +0000429 StoreSuccess, ConstantInt::get(Type::getInt32Ty(Ctx), 0), "success");
Tim Northover20b9f732014-06-13 16:45:52 +0000430 Builder.CreateCondBr(StoreSuccess, SuccessBB,
431 CI->isWeak() ? FailureBB : LoopBB);
Tim Northoverc882eb02014-04-03 11:44:58 +0000432
Tim Northoverb4ddc082014-05-30 10:09:59 +0000433 // Make sure later instructions don't get reordered with a fence if necessary.
Tim Northover20b9f732014-06-13 16:45:52 +0000434 Builder.SetInsertPoint(SuccessBB);
Robin Morisseta47cb412014-09-03 21:01:03 +0000435 TLI->emitTrailingFence(Builder, SuccessOrder, /*IsStore=*/true,
436 /*IsLoad=*/true);
Tim Northover70450c52014-04-03 13:06:54 +0000437 Builder.CreateBr(ExitBB);
Tim Northoverc882eb02014-04-03 11:44:58 +0000438
Ahmed Bougacha07a844d2015-09-22 17:21:44 +0000439 Builder.SetInsertPoint(NoStoreBB);
440 // In the failing case, where we don't execute the store-conditional, the
441 // target might want to balance out the load-linked with a dedicated
442 // instruction (e.g., on ARM, clearing the exclusive monitor).
443 TLI->emitAtomicCmpXchgNoStoreLLBalance(Builder);
444 Builder.CreateBr(FailureBB);
445
Tim Northover20b9f732014-06-13 16:45:52 +0000446 Builder.SetInsertPoint(FailureBB);
Robin Morisseta47cb412014-09-03 21:01:03 +0000447 TLI->emitTrailingFence(Builder, FailureOrder, /*IsStore=*/true,
448 /*IsLoad=*/true);
Tim Northover20b9f732014-06-13 16:45:52 +0000449 Builder.CreateBr(ExitBB);
450
Tim Northoverb4ddc082014-05-30 10:09:59 +0000451 // Finally, we have control-flow based knowledge of whether the cmpxchg
452 // succeeded or not. We expose this to later passes by converting any
453 // subsequent "icmp eq/ne %loaded, %oldval" into a use of an appropriate PHI.
454
455 // Setup the builder so we can create any PHIs we need.
Tim Northover20b9f732014-06-13 16:45:52 +0000456 Builder.SetInsertPoint(ExitBB, ExitBB->begin());
Tim Northover420a2162014-06-13 14:24:07 +0000457 PHINode *Success = Builder.CreatePHI(Type::getInt1Ty(Ctx), 2);
458 Success->addIncoming(ConstantInt::getTrue(Ctx), SuccessBB);
Tim Northover20b9f732014-06-13 16:45:52 +0000459 Success->addIncoming(ConstantInt::getFalse(Ctx), FailureBB);
Tim Northoverb4ddc082014-05-30 10:09:59 +0000460
461 // Look for any users of the cmpxchg that are just comparing the loaded value
462 // against the desired one, and replace them with the CFG-derived version.
Tim Northover420a2162014-06-13 14:24:07 +0000463 SmallVector<ExtractValueInst *, 2> PrunedInsts;
Tim Northoverb4ddc082014-05-30 10:09:59 +0000464 for (auto User : CI->users()) {
Tim Northover420a2162014-06-13 14:24:07 +0000465 ExtractValueInst *EV = dyn_cast<ExtractValueInst>(User);
466 if (!EV)
Tim Northoverb4ddc082014-05-30 10:09:59 +0000467 continue;
468
Tim Northover420a2162014-06-13 14:24:07 +0000469 assert(EV->getNumIndices() == 1 && EV->getIndices()[0] <= 1 &&
470 "weird extraction from { iN, i1 }");
Tim Northoverb4ddc082014-05-30 10:09:59 +0000471
Tim Northover420a2162014-06-13 14:24:07 +0000472 if (EV->getIndices()[0] == 0)
473 EV->replaceAllUsesWith(Loaded);
474 else
475 EV->replaceAllUsesWith(Success);
476
477 PrunedInsts.push_back(EV);
Tim Northoverb4ddc082014-05-30 10:09:59 +0000478 }
479
Tim Northover420a2162014-06-13 14:24:07 +0000480 // We can remove the instructions now we're no longer iterating through them.
481 for (auto EV : PrunedInsts)
482 EV->eraseFromParent();
Tim Northoverc882eb02014-04-03 11:44:58 +0000483
Tim Northover420a2162014-06-13 14:24:07 +0000484 if (!CI->use_empty()) {
485 // Some use of the full struct return that we don't understand has happened,
486 // so we've got to reconstruct it properly.
487 Value *Res;
488 Res = Builder.CreateInsertValue(UndefValue::get(CI->getType()), Loaded, 0);
489 Res = Builder.CreateInsertValue(Res, Success, 1);
490
491 CI->replaceAllUsesWith(Res);
492 }
493
494 CI->eraseFromParent();
Tim Northoverc882eb02014-04-03 11:44:58 +0000495 return true;
496}
Robin Morisset810739d2014-09-25 17:27:43 +0000497
498bool AtomicExpand::isIdempotentRMW(AtomicRMWInst* RMWI) {
499 auto C = dyn_cast<ConstantInt>(RMWI->getValOperand());
500 if(!C)
501 return false;
502
503 AtomicRMWInst::BinOp Op = RMWI->getOperation();
504 switch(Op) {
505 case AtomicRMWInst::Add:
506 case AtomicRMWInst::Sub:
507 case AtomicRMWInst::Or:
508 case AtomicRMWInst::Xor:
509 return C->isZero();
510 case AtomicRMWInst::And:
511 return C->isMinusOne();
512 // FIXME: we could also treat Min/Max/UMin/UMax by the INT_MIN/INT_MAX/...
513 default:
514 return false;
515 }
516}
517
518bool AtomicExpand::simplifyIdempotentRMW(AtomicRMWInst* RMWI) {
Ahmed Bougacha49b531a2015-09-12 18:51:23 +0000519 if (auto ResultingLoad = TLI->lowerIdempotentRMWIntoFencedLoad(RMWI)) {
520 tryExpandAtomicLoad(ResultingLoad);
521 return true;
522 }
Robin Morisset810739d2014-09-25 17:27:43 +0000523 return false;
524}
JF Bastiene8aad292015-08-03 15:29:47 +0000525
526bool llvm::expandAtomicRMWToCmpXchg(AtomicRMWInst *AI,
527 CreateCmpXchgInstFun CreateCmpXchg) {
528 assert(AI);
529
530 AtomicOrdering MemOpOrder =
531 AI->getOrdering() == Unordered ? Monotonic : AI->getOrdering();
532 Value *Addr = AI->getPointerOperand();
533 BasicBlock *BB = AI->getParent();
534 Function *F = BB->getParent();
535 LLVMContext &Ctx = F->getContext();
536
537 // Given: atomicrmw some_op iN* %addr, iN %incr ordering
538 //
539 // The standard expansion we produce is:
540 // [...]
541 // %init_loaded = load atomic iN* %addr
542 // br label %loop
543 // loop:
544 // %loaded = phi iN [ %init_loaded, %entry ], [ %new_loaded, %loop ]
545 // %new = some_op iN %loaded, %incr
546 // %pair = cmpxchg iN* %addr, iN %loaded, iN %new
547 // %new_loaded = extractvalue { iN, i1 } %pair, 0
548 // %success = extractvalue { iN, i1 } %pair, 1
549 // br i1 %success, label %atomicrmw.end, label %loop
550 // atomicrmw.end:
551 // [...]
Duncan P. N. Exon Smith8f11e1a2015-10-09 16:54:49 +0000552 BasicBlock *ExitBB = BB->splitBasicBlock(AI->getIterator(), "atomicrmw.end");
JF Bastiene8aad292015-08-03 15:29:47 +0000553 BasicBlock *LoopBB = BasicBlock::Create(Ctx, "atomicrmw.start", F, ExitBB);
554
555 // This grabs the DebugLoc from AI.
556 IRBuilder<> Builder(AI);
557
558 // The split call above "helpfully" added a branch at the end of BB (to the
559 // wrong place), but we want a load. It's easiest to just remove
560 // the branch entirely.
561 std::prev(BB->end())->eraseFromParent();
562 Builder.SetInsertPoint(BB);
563 LoadInst *InitLoaded = Builder.CreateLoad(Addr);
564 // Atomics require at least natural alignment.
Richard Diamondbd753c92015-08-06 16:55:03 +0000565 InitLoaded->setAlignment(AI->getType()->getPrimitiveSizeInBits() / 8);
JF Bastiene8aad292015-08-03 15:29:47 +0000566 Builder.CreateBr(LoopBB);
567
568 // Start the main loop block now that we've taken care of the preliminaries.
569 Builder.SetInsertPoint(LoopBB);
570 PHINode *Loaded = Builder.CreatePHI(AI->getType(), 2, "loaded");
571 Loaded->addIncoming(InitLoaded, BB);
572
573 Value *NewVal =
574 performAtomicOp(AI->getOperation(), Builder, Loaded, AI->getValOperand());
575
576 Value *NewLoaded = nullptr;
577 Value *Success = nullptr;
578
579 CreateCmpXchg(Builder, Addr, Loaded, NewVal, MemOpOrder,
580 Success, NewLoaded);
581 assert(Success && NewLoaded);
582
583 Loaded->addIncoming(NewLoaded, LoopBB);
584
585 Builder.CreateCondBr(Success, ExitBB, LoopBB);
586
587 Builder.SetInsertPoint(ExitBB, ExitBB->begin());
588
589 AI->replaceAllUsesWith(NewLoaded);
590 AI->eraseFromParent();
591
592 return true;
593}