blob: a6e6fec206d57eecfe10a761f87f903f638044d1 [file] [log] [blame]
John McCallfc207f22013-03-07 21:37:12 +00001//===--- CGAtomic.cpp - Emit LLVM IR for atomic operations ----------------===//
2//
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 the code for emitting atomic operations.
11//
12//===----------------------------------------------------------------------===//
13
John McCallfc207f22013-03-07 21:37:12 +000014#include "CGCall.h"
Alexey Bataevb57056f2015-01-22 06:17:56 +000015#include "CGRecordLayout.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000016#include "CodeGenFunction.h"
John McCallfc207f22013-03-07 21:37:12 +000017#include "CodeGenModule.h"
18#include "clang/AST/ASTContext.h"
Mark Laceya8e7df32013-10-30 21:53:58 +000019#include "clang/CodeGen/CGFunctionInfo.h"
John McCallfc207f22013-03-07 21:37:12 +000020#include "llvm/IR/DataLayout.h"
21#include "llvm/IR/Intrinsics.h"
John McCalla8ec7eb2013-03-07 21:37:17 +000022#include "llvm/IR/Operator.h"
John McCallfc207f22013-03-07 21:37:12 +000023
24using namespace clang;
25using namespace CodeGen;
26
John McCalla8ec7eb2013-03-07 21:37:17 +000027namespace {
28 class AtomicInfo {
29 CodeGenFunction &CGF;
30 QualType AtomicTy;
31 QualType ValueTy;
32 uint64_t AtomicSizeInBits;
33 uint64_t ValueSizeInBits;
34 CharUnits AtomicAlign;
35 CharUnits ValueAlign;
36 CharUnits LValueAlign;
37 TypeEvaluationKind EvaluationKind;
38 bool UseLibcall;
Alexey Bataevb57056f2015-01-22 06:17:56 +000039 LValue LVal;
40 CGBitFieldInfo BFI;
John McCalla8ec7eb2013-03-07 21:37:17 +000041 public:
Alexey Bataevb57056f2015-01-22 06:17:56 +000042 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue)
43 : CGF(CGF), AtomicSizeInBits(0), ValueSizeInBits(0),
44 EvaluationKind(TEK_Scalar), UseLibcall(true) {
45 assert(!lvalue.isGlobalReg());
John McCalla8ec7eb2013-03-07 21:37:17 +000046 ASTContext &C = CGF.getContext();
Alexey Bataevb57056f2015-01-22 06:17:56 +000047 if (lvalue.isSimple()) {
48 AtomicTy = lvalue.getType();
49 if (auto *ATy = AtomicTy->getAs<AtomicType>())
50 ValueTy = ATy->getValueType();
51 else
52 ValueTy = AtomicTy;
53 EvaluationKind = CGF.getEvaluationKind(ValueTy);
John McCalla8ec7eb2013-03-07 21:37:17 +000054
Alexey Bataevb57056f2015-01-22 06:17:56 +000055 uint64_t ValueAlignInBits;
56 uint64_t AtomicAlignInBits;
57 TypeInfo ValueTI = C.getTypeInfo(ValueTy);
58 ValueSizeInBits = ValueTI.Width;
59 ValueAlignInBits = ValueTI.Align;
John McCalla8ec7eb2013-03-07 21:37:17 +000060
Alexey Bataevb57056f2015-01-22 06:17:56 +000061 TypeInfo AtomicTI = C.getTypeInfo(AtomicTy);
62 AtomicSizeInBits = AtomicTI.Width;
63 AtomicAlignInBits = AtomicTI.Align;
John McCalla8ec7eb2013-03-07 21:37:17 +000064
Alexey Bataevb57056f2015-01-22 06:17:56 +000065 assert(ValueSizeInBits <= AtomicSizeInBits);
66 assert(ValueAlignInBits <= AtomicAlignInBits);
John McCalla8ec7eb2013-03-07 21:37:17 +000067
Alexey Bataevb57056f2015-01-22 06:17:56 +000068 AtomicAlign = C.toCharUnitsFromBits(AtomicAlignInBits);
69 ValueAlign = C.toCharUnitsFromBits(ValueAlignInBits);
70 if (lvalue.getAlignment().isZero())
71 lvalue.setAlignment(AtomicAlign);
John McCalla8ec7eb2013-03-07 21:37:17 +000072
Alexey Bataevb57056f2015-01-22 06:17:56 +000073 LVal = lvalue;
74 } else if (lvalue.isBitField()) {
Alexey Bataevb8329262015-02-27 06:33:30 +000075 ValueTy = lvalue.getType();
76 ValueSizeInBits = C.getTypeSize(ValueTy);
Alexey Bataevb57056f2015-01-22 06:17:56 +000077 auto &OrigBFI = lvalue.getBitFieldInfo();
78 auto Offset = OrigBFI.Offset % C.toBits(lvalue.getAlignment());
79 AtomicSizeInBits = C.toBits(
80 C.toCharUnitsFromBits(Offset + OrigBFI.Size + C.getCharWidth() - 1)
Rui Ueyama83aa9792016-01-14 21:00:27 +000081 .alignTo(lvalue.getAlignment()));
John McCall7f416cc2015-09-08 08:05:57 +000082 auto VoidPtrAddr = CGF.EmitCastToVoidPtr(lvalue.getBitFieldPointer());
Alexey Bataevb57056f2015-01-22 06:17:56 +000083 auto OffsetInChars =
84 (C.toCharUnitsFromBits(OrigBFI.Offset) / lvalue.getAlignment()) *
85 lvalue.getAlignment();
86 VoidPtrAddr = CGF.Builder.CreateConstGEP1_64(
87 VoidPtrAddr, OffsetInChars.getQuantity());
88 auto Addr = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
89 VoidPtrAddr,
90 CGF.Builder.getIntNTy(AtomicSizeInBits)->getPointerTo(),
91 "atomic_bitfield_base");
92 BFI = OrigBFI;
93 BFI.Offset = Offset;
94 BFI.StorageSize = AtomicSizeInBits;
Ulrich Weigand03ce2a12015-07-10 17:30:00 +000095 BFI.StorageOffset += OffsetInChars;
John McCall7f416cc2015-09-08 08:05:57 +000096 LVal = LValue::MakeBitfield(Address(Addr, lvalue.getAlignment()),
97 BFI, lvalue.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +000098 lvalue.getBaseInfo());
Alexey Bataevb8329262015-02-27 06:33:30 +000099 LVal.setTBAAInfo(lvalue.getTBAAInfo());
100 AtomicTy = C.getIntTypeForBitwidth(AtomicSizeInBits, OrigBFI.IsSigned);
101 if (AtomicTy.isNull()) {
102 llvm::APInt Size(
103 /*numBits=*/32,
104 C.toCharUnitsFromBits(AtomicSizeInBits).getQuantity());
105 AtomicTy = C.getConstantArrayType(C.CharTy, Size, ArrayType::Normal,
106 /*IndexTypeQuals=*/0);
107 }
108 AtomicAlign = ValueAlign = lvalue.getAlignment();
Alexey Bataevb57056f2015-01-22 06:17:56 +0000109 } else if (lvalue.isVectorElt()) {
Alexey Bataevb8329262015-02-27 06:33:30 +0000110 ValueTy = lvalue.getType()->getAs<VectorType>()->getElementType();
111 ValueSizeInBits = C.getTypeSize(ValueTy);
112 AtomicTy = lvalue.getType();
113 AtomicSizeInBits = C.getTypeSize(AtomicTy);
114 AtomicAlign = ValueAlign = lvalue.getAlignment();
Alexey Bataevb57056f2015-01-22 06:17:56 +0000115 LVal = lvalue;
116 } else {
117 assert(lvalue.isExtVectorElt());
Alexey Bataevb8329262015-02-27 06:33:30 +0000118 ValueTy = lvalue.getType();
119 ValueSizeInBits = C.getTypeSize(ValueTy);
120 AtomicTy = ValueTy = CGF.getContext().getExtVectorType(
John McCall7f416cc2015-09-08 08:05:57 +0000121 lvalue.getType(), lvalue.getExtVectorAddress()
122 .getElementType()->getVectorNumElements());
Alexey Bataevb8329262015-02-27 06:33:30 +0000123 AtomicSizeInBits = C.getTypeSize(AtomicTy);
124 AtomicAlign = ValueAlign = lvalue.getAlignment();
Alexey Bataevb57056f2015-01-22 06:17:56 +0000125 LVal = lvalue;
126 }
Alexey Bataev452d8e12014-12-15 05:25:25 +0000127 UseLibcall = !C.getTargetInfo().hasBuiltinAtomic(
128 AtomicSizeInBits, C.toBits(lvalue.getAlignment()));
John McCalla8ec7eb2013-03-07 21:37:17 +0000129 }
130
131 QualType getAtomicType() const { return AtomicTy; }
132 QualType getValueType() const { return ValueTy; }
133 CharUnits getAtomicAlignment() const { return AtomicAlign; }
134 CharUnits getValueAlignment() const { return ValueAlign; }
135 uint64_t getAtomicSizeInBits() const { return AtomicSizeInBits; }
Alexey Bataev452d8e12014-12-15 05:25:25 +0000136 uint64_t getValueSizeInBits() const { return ValueSizeInBits; }
John McCalla8ec7eb2013-03-07 21:37:17 +0000137 TypeEvaluationKind getEvaluationKind() const { return EvaluationKind; }
138 bool shouldUseLibcall() const { return UseLibcall; }
Alexey Bataevb57056f2015-01-22 06:17:56 +0000139 const LValue &getAtomicLValue() const { return LVal; }
John McCall7f416cc2015-09-08 08:05:57 +0000140 llvm::Value *getAtomicPointer() const {
Alexey Bataevb8329262015-02-27 06:33:30 +0000141 if (LVal.isSimple())
John McCall7f416cc2015-09-08 08:05:57 +0000142 return LVal.getPointer();
Alexey Bataevb8329262015-02-27 06:33:30 +0000143 else if (LVal.isBitField())
John McCall7f416cc2015-09-08 08:05:57 +0000144 return LVal.getBitFieldPointer();
Alexey Bataevb8329262015-02-27 06:33:30 +0000145 else if (LVal.isVectorElt())
John McCall7f416cc2015-09-08 08:05:57 +0000146 return LVal.getVectorPointer();
Alexey Bataevb8329262015-02-27 06:33:30 +0000147 assert(LVal.isExtVectorElt());
John McCall7f416cc2015-09-08 08:05:57 +0000148 return LVal.getExtVectorPointer();
149 }
150 Address getAtomicAddress() const {
151 return Address(getAtomicPointer(), getAtomicAlignment());
152 }
153
154 Address getAtomicAddressAsAtomicIntPointer() const {
155 return emitCastToAtomicIntPointer(getAtomicAddress());
Alexey Bataevb8329262015-02-27 06:33:30 +0000156 }
John McCalla8ec7eb2013-03-07 21:37:17 +0000157
158 /// Is the atomic size larger than the underlying value type?
159 ///
160 /// Note that the absence of padding does not mean that atomic
161 /// objects are completely interchangeable with non-atomic
162 /// objects: we might have promoted the alignment of a type
163 /// without making it bigger.
164 bool hasPadding() const {
165 return (ValueSizeInBits != AtomicSizeInBits);
166 }
167
Alexey Bataevb57056f2015-01-22 06:17:56 +0000168 bool emitMemSetZeroIfNecessary() const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000169
170 llvm::Value *getAtomicSizeValue() const {
171 CharUnits size = CGF.getContext().toCharUnitsFromBits(AtomicSizeInBits);
172 return CGF.CGM.getSize(size);
173 }
174
Tim Northovercc2a6e02015-11-09 19:56:35 +0000175 /// Cast the given pointer to an integer pointer suitable for atomic
176 /// operations if the source.
177 Address emitCastToAtomicIntPointer(Address Addr) const;
178
179 /// If Addr is compatible with the iN that will be used for an atomic
180 /// operation, bitcast it. Otherwise, create a temporary that is suitable
181 /// and copy the value across.
182 Address convertToAtomicIntPointer(Address Addr) const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000183
184 /// Turn an atomic-layout object into an r-value.
John McCall7f416cc2015-09-08 08:05:57 +0000185 RValue convertAtomicTempToRValue(Address addr, AggValueSlot resultSlot,
186 SourceLocation loc, bool AsValue) const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000187
Alexey Bataev452d8e12014-12-15 05:25:25 +0000188 /// \brief Converts a rvalue to integer value.
189 llvm::Value *convertRValueToInt(RValue RVal) const;
190
Alexey Bataevb8329262015-02-27 06:33:30 +0000191 RValue ConvertIntToValueOrAtomic(llvm::Value *IntVal,
192 AggValueSlot ResultSlot,
193 SourceLocation Loc, bool AsValue) const;
Alexey Bataev452d8e12014-12-15 05:25:25 +0000194
John McCalla8ec7eb2013-03-07 21:37:17 +0000195 /// Copy an atomic r-value into atomic-layout memory.
Alexey Bataevb57056f2015-01-22 06:17:56 +0000196 void emitCopyIntoMemory(RValue rvalue) const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000197
198 /// Project an l-value down to the value field.
Alexey Bataevb57056f2015-01-22 06:17:56 +0000199 LValue projectValue() const {
200 assert(LVal.isSimple());
John McCall7f416cc2015-09-08 08:05:57 +0000201 Address addr = getAtomicAddress();
John McCalla8ec7eb2013-03-07 21:37:17 +0000202 if (hasPadding())
John McCall7f416cc2015-09-08 08:05:57 +0000203 addr = CGF.Builder.CreateStructGEP(addr, 0, CharUnits());
John McCalla8ec7eb2013-03-07 21:37:17 +0000204
John McCall7f416cc2015-09-08 08:05:57 +0000205 return LValue::MakeAddr(addr, getValueType(), CGF.getContext(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +0000206 LVal.getBaseInfo(), LVal.getTBAAInfo());
John McCalla8ec7eb2013-03-07 21:37:17 +0000207 }
208
Alexey Bataevb8329262015-02-27 06:33:30 +0000209 /// \brief Emits atomic load.
210 /// \returns Loaded value.
211 RValue EmitAtomicLoad(AggValueSlot ResultSlot, SourceLocation Loc,
212 bool AsValue, llvm::AtomicOrdering AO,
213 bool IsVolatile);
214
215 /// \brief Emits atomic compare-and-exchange sequence.
216 /// \param Expected Expected value.
217 /// \param Desired Desired value.
218 /// \param Success Atomic ordering for success operation.
219 /// \param Failure Atomic ordering for failed operation.
220 /// \param IsWeak true if atomic operation is weak, false otherwise.
221 /// \returns Pair of values: previous value from storage (value type) and
222 /// boolean flag (i1 type) with true if success and false otherwise.
JF Bastien92f4ef12016-04-06 17:26:42 +0000223 std::pair<RValue, llvm::Value *>
224 EmitAtomicCompareExchange(RValue Expected, RValue Desired,
225 llvm::AtomicOrdering Success =
226 llvm::AtomicOrdering::SequentiallyConsistent,
227 llvm::AtomicOrdering Failure =
228 llvm::AtomicOrdering::SequentiallyConsistent,
229 bool IsWeak = false);
Alexey Bataevb8329262015-02-27 06:33:30 +0000230
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000231 /// \brief Emits atomic update.
NAKAMURA Takumid16af5d2015-05-15 13:47:52 +0000232 /// \param AO Atomic ordering.
233 /// \param UpdateOp Update operation for the current lvalue.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000234 void EmitAtomicUpdate(llvm::AtomicOrdering AO,
235 const llvm::function_ref<RValue(RValue)> &UpdateOp,
236 bool IsVolatile);
237 /// \brief Emits atomic update.
NAKAMURA Takumid16af5d2015-05-15 13:47:52 +0000238 /// \param AO Atomic ordering.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000239 void EmitAtomicUpdate(llvm::AtomicOrdering AO, RValue UpdateRVal,
240 bool IsVolatile);
241
John McCalla8ec7eb2013-03-07 21:37:17 +0000242 /// Materialize an atomic r-value in atomic-layout memory.
John McCall7f416cc2015-09-08 08:05:57 +0000243 Address materializeRValue(RValue rvalue) const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000244
Tim Northovercc2a6e02015-11-09 19:56:35 +0000245 /// \brief Creates temp alloca for intermediate operations on atomic value.
246 Address CreateTempAlloca() const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000247 private:
248 bool requiresMemSetZero(llvm::Type *type) const;
Alexey Bataevb8329262015-02-27 06:33:30 +0000249
Alexey Bataevb8329262015-02-27 06:33:30 +0000250
251 /// \brief Emits atomic load as a libcall.
252 void EmitAtomicLoadLibcall(llvm::Value *AddForLoaded,
253 llvm::AtomicOrdering AO, bool IsVolatile);
254 /// \brief Emits atomic load as LLVM instruction.
255 llvm::Value *EmitAtomicLoadOp(llvm::AtomicOrdering AO, bool IsVolatile);
256 /// \brief Emits atomic compare-and-exchange op as a libcall.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000257 llvm::Value *EmitAtomicCompareExchangeLibcall(
258 llvm::Value *ExpectedAddr, llvm::Value *DesiredAddr,
JF Bastien92f4ef12016-04-06 17:26:42 +0000259 llvm::AtomicOrdering Success =
260 llvm::AtomicOrdering::SequentiallyConsistent,
261 llvm::AtomicOrdering Failure =
262 llvm::AtomicOrdering::SequentiallyConsistent);
Alexey Bataevb8329262015-02-27 06:33:30 +0000263 /// \brief Emits atomic compare-and-exchange op as LLVM instruction.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000264 std::pair<llvm::Value *, llvm::Value *> EmitAtomicCompareExchangeOp(
265 llvm::Value *ExpectedVal, llvm::Value *DesiredVal,
JF Bastien92f4ef12016-04-06 17:26:42 +0000266 llvm::AtomicOrdering Success =
267 llvm::AtomicOrdering::SequentiallyConsistent,
268 llvm::AtomicOrdering Failure =
269 llvm::AtomicOrdering::SequentiallyConsistent,
Alexey Bataevb8329262015-02-27 06:33:30 +0000270 bool IsWeak = false);
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000271 /// \brief Emit atomic update as libcalls.
272 void
273 EmitAtomicUpdateLibcall(llvm::AtomicOrdering AO,
274 const llvm::function_ref<RValue(RValue)> &UpdateOp,
275 bool IsVolatile);
276 /// \brief Emit atomic update as LLVM instructions.
277 void EmitAtomicUpdateOp(llvm::AtomicOrdering AO,
278 const llvm::function_ref<RValue(RValue)> &UpdateOp,
279 bool IsVolatile);
280 /// \brief Emit atomic update as libcalls.
281 void EmitAtomicUpdateLibcall(llvm::AtomicOrdering AO, RValue UpdateRVal,
282 bool IsVolatile);
283 /// \brief Emit atomic update as LLVM instructions.
284 void EmitAtomicUpdateOp(llvm::AtomicOrdering AO, RValue UpdateRal,
285 bool IsVolatile);
John McCalla8ec7eb2013-03-07 21:37:17 +0000286 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000287}
John McCalla8ec7eb2013-03-07 21:37:17 +0000288
John McCall7f416cc2015-09-08 08:05:57 +0000289Address AtomicInfo::CreateTempAlloca() const {
290 Address TempAlloca = CGF.CreateMemTemp(
Alexey Bataevb8329262015-02-27 06:33:30 +0000291 (LVal.isBitField() && ValueSizeInBits > AtomicSizeInBits) ? ValueTy
292 : AtomicTy,
John McCall7f416cc2015-09-08 08:05:57 +0000293 getAtomicAlignment(),
Alexey Bataevb8329262015-02-27 06:33:30 +0000294 "atomic-temp");
Alexey Bataevb8329262015-02-27 06:33:30 +0000295 // Cast to pointer to value type for bitfields.
296 if (LVal.isBitField())
297 return CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
John McCall7f416cc2015-09-08 08:05:57 +0000298 TempAlloca, getAtomicAddress().getType());
Alexey Bataevb8329262015-02-27 06:33:30 +0000299 return TempAlloca;
300}
301
John McCalla8ec7eb2013-03-07 21:37:17 +0000302static RValue emitAtomicLibcall(CodeGenFunction &CGF,
303 StringRef fnName,
304 QualType resultType,
305 CallArgList &args) {
306 const CGFunctionInfo &fnInfo =
John McCallc56a8b32016-03-11 04:30:31 +0000307 CGF.CGM.getTypes().arrangeBuiltinFunctionCall(resultType, args);
John McCalla8ec7eb2013-03-07 21:37:17 +0000308 llvm::FunctionType *fnTy = CGF.CGM.getTypes().GetFunctionType(fnInfo);
309 llvm::Constant *fn = CGF.CGM.CreateRuntimeFunction(fnTy, fnName);
John McCallb92ab1a2016-10-26 23:46:34 +0000310 auto callee = CGCallee::forDirect(fn);
311 return CGF.EmitCall(fnInfo, callee, ReturnValueSlot(), args);
John McCalla8ec7eb2013-03-07 21:37:17 +0000312}
313
314/// Does a store of the given IR type modify the full expected width?
315static bool isFullSizeType(CodeGenModule &CGM, llvm::Type *type,
316 uint64_t expectedSize) {
317 return (CGM.getDataLayout().getTypeStoreSize(type) * 8 == expectedSize);
318}
319
320/// Does the atomic type require memsetting to zero before initialization?
321///
322/// The IR type is provided as a way of making certain queries faster.
323bool AtomicInfo::requiresMemSetZero(llvm::Type *type) const {
324 // If the atomic type has size padding, we definitely need a memset.
325 if (hasPadding()) return true;
326
327 // Otherwise, do some simple heuristics to try to avoid it:
328 switch (getEvaluationKind()) {
329 // For scalars and complexes, check whether the store size of the
330 // type uses the full size.
331 case TEK_Scalar:
332 return !isFullSizeType(CGF.CGM, type, AtomicSizeInBits);
333 case TEK_Complex:
334 return !isFullSizeType(CGF.CGM, type->getStructElementType(0),
335 AtomicSizeInBits / 2);
336
Eli Friedmanbe4504d2013-07-11 01:32:21 +0000337 // Padding in structs has an undefined bit pattern. User beware.
John McCalla8ec7eb2013-03-07 21:37:17 +0000338 case TEK_Aggregate:
Eli Friedmanbe4504d2013-07-11 01:32:21 +0000339 return false;
John McCalla8ec7eb2013-03-07 21:37:17 +0000340 }
341 llvm_unreachable("bad evaluation kind");
342}
343
Alexey Bataevb57056f2015-01-22 06:17:56 +0000344bool AtomicInfo::emitMemSetZeroIfNecessary() const {
345 assert(LVal.isSimple());
John McCall7f416cc2015-09-08 08:05:57 +0000346 llvm::Value *addr = LVal.getPointer();
John McCalla8ec7eb2013-03-07 21:37:17 +0000347 if (!requiresMemSetZero(addr->getType()->getPointerElementType()))
Eli Friedmanbe4504d2013-07-11 01:32:21 +0000348 return false;
John McCalla8ec7eb2013-03-07 21:37:17 +0000349
Alexey Bataevb8329262015-02-27 06:33:30 +0000350 CGF.Builder.CreateMemSet(
351 addr, llvm::ConstantInt::get(CGF.Int8Ty, 0),
352 CGF.getContext().toCharUnitsFromBits(AtomicSizeInBits).getQuantity(),
353 LVal.getAlignment().getQuantity());
Eli Friedmanbe4504d2013-07-11 01:32:21 +0000354 return true;
John McCalla8ec7eb2013-03-07 21:37:17 +0000355}
356
Tim Northovercadbbe12014-06-13 19:43:04 +0000357static void emitAtomicCmpXchg(CodeGenFunction &CGF, AtomicExpr *E, bool IsWeak,
John McCall7f416cc2015-09-08 08:05:57 +0000358 Address Dest, Address Ptr,
359 Address Val1, Address Val2,
360 uint64_t Size,
Tim Northover9c177222014-03-13 19:25:48 +0000361 llvm::AtomicOrdering SuccessOrder,
362 llvm::AtomicOrdering FailureOrder) {
363 // Note that cmpxchg doesn't support weak cmpxchg, at least at the moment.
John McCall7f416cc2015-09-08 08:05:57 +0000364 llvm::Value *Expected = CGF.Builder.CreateLoad(Val1);
365 llvm::Value *Desired = CGF.Builder.CreateLoad(Val2);
Tim Northover9c177222014-03-13 19:25:48 +0000366
Tim Northoverb49b04b2014-06-13 14:24:59 +0000367 llvm::AtomicCmpXchgInst *Pair = CGF.Builder.CreateAtomicCmpXchg(
John McCall7f416cc2015-09-08 08:05:57 +0000368 Ptr.getPointer(), Expected, Desired, SuccessOrder, FailureOrder);
Tim Northoverb49b04b2014-06-13 14:24:59 +0000369 Pair->setVolatile(E->isVolatile());
Tim Northovercadbbe12014-06-13 19:43:04 +0000370 Pair->setWeak(IsWeak);
Tim Northover9c177222014-03-13 19:25:48 +0000371
372 // Cmp holds the result of the compare-exchange operation: true on success,
373 // false on failure.
Tim Northoverb49b04b2014-06-13 14:24:59 +0000374 llvm::Value *Old = CGF.Builder.CreateExtractValue(Pair, 0);
375 llvm::Value *Cmp = CGF.Builder.CreateExtractValue(Pair, 1);
Tim Northover9c177222014-03-13 19:25:48 +0000376
377 // This basic block is used to hold the store instruction if the operation
378 // failed.
379 llvm::BasicBlock *StoreExpectedBB =
380 CGF.createBasicBlock("cmpxchg.store_expected", CGF.CurFn);
381
382 // This basic block is the exit point of the operation, we should end up
383 // here regardless of whether or not the operation succeeded.
384 llvm::BasicBlock *ContinueBB =
385 CGF.createBasicBlock("cmpxchg.continue", CGF.CurFn);
386
387 // Update Expected if Expected isn't equal to Old, otherwise branch to the
388 // exit point.
389 CGF.Builder.CreateCondBr(Cmp, ContinueBB, StoreExpectedBB);
390
391 CGF.Builder.SetInsertPoint(StoreExpectedBB);
392 // Update the memory at Expected with Old's value.
John McCall7f416cc2015-09-08 08:05:57 +0000393 CGF.Builder.CreateStore(Old, Val1);
Tim Northover9c177222014-03-13 19:25:48 +0000394 // Finally, branch to the exit point.
395 CGF.Builder.CreateBr(ContinueBB);
396
397 CGF.Builder.SetInsertPoint(ContinueBB);
398 // Update the memory at Dest with Cmp's value.
399 CGF.EmitStoreOfScalar(Cmp, CGF.MakeAddrLValue(Dest, E->getType()));
Tim Northover9c177222014-03-13 19:25:48 +0000400}
401
402/// Given an ordering required on success, emit all possible cmpxchg
403/// instructions to cope with the provided (but possibly only dynamically known)
404/// FailureOrder.
405static void emitAtomicCmpXchgFailureSet(CodeGenFunction &CGF, AtomicExpr *E,
JF Bastiendda2cb12016-04-18 18:01:49 +0000406 bool IsWeak, Address Dest, Address Ptr,
407 Address Val1, Address Val2,
Tim Northover9c177222014-03-13 19:25:48 +0000408 llvm::Value *FailureOrderVal,
John McCall7f416cc2015-09-08 08:05:57 +0000409 uint64_t Size,
Tim Northover9c177222014-03-13 19:25:48 +0000410 llvm::AtomicOrdering SuccessOrder) {
411 llvm::AtomicOrdering FailureOrder;
412 if (llvm::ConstantInt *FO = dyn_cast<llvm::ConstantInt>(FailureOrderVal)) {
JF Bastiendda2cb12016-04-18 18:01:49 +0000413 auto FOS = FO->getSExtValue();
414 if (!llvm::isValidAtomicOrderingCABI(FOS))
JF Bastien92f4ef12016-04-06 17:26:42 +0000415 FailureOrder = llvm::AtomicOrdering::Monotonic;
JF Bastiendda2cb12016-04-18 18:01:49 +0000416 else
417 switch ((llvm::AtomicOrderingCABI)FOS) {
418 case llvm::AtomicOrderingCABI::relaxed:
419 case llvm::AtomicOrderingCABI::release:
420 case llvm::AtomicOrderingCABI::acq_rel:
421 FailureOrder = llvm::AtomicOrdering::Monotonic;
422 break;
423 case llvm::AtomicOrderingCABI::consume:
424 case llvm::AtomicOrderingCABI::acquire:
425 FailureOrder = llvm::AtomicOrdering::Acquire;
426 break;
427 case llvm::AtomicOrderingCABI::seq_cst:
428 FailureOrder = llvm::AtomicOrdering::SequentiallyConsistent;
429 break;
430 }
JF Bastiendd11ee72016-04-06 23:37:36 +0000431 if (isStrongerThan(FailureOrder, SuccessOrder)) {
432 // Don't assert on undefined behavior "failure argument shall be no
433 // stronger than the success argument".
Tim Northover9c177222014-03-13 19:25:48 +0000434 FailureOrder =
JF Bastiendda2cb12016-04-18 18:01:49 +0000435 llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(SuccessOrder);
Tim Northover9c177222014-03-13 19:25:48 +0000436 }
JF Bastiendda2cb12016-04-18 18:01:49 +0000437 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, SuccessOrder,
438 FailureOrder);
Tim Northover9c177222014-03-13 19:25:48 +0000439 return;
440 }
441
442 // Create all the relevant BB's
Craig Topper8a13c412014-05-21 05:09:00 +0000443 llvm::BasicBlock *MonotonicBB = nullptr, *AcquireBB = nullptr,
444 *SeqCstBB = nullptr;
Tim Northover9c177222014-03-13 19:25:48 +0000445 MonotonicBB = CGF.createBasicBlock("monotonic_fail", CGF.CurFn);
JF Bastien92f4ef12016-04-06 17:26:42 +0000446 if (SuccessOrder != llvm::AtomicOrdering::Monotonic &&
447 SuccessOrder != llvm::AtomicOrdering::Release)
Tim Northover9c177222014-03-13 19:25:48 +0000448 AcquireBB = CGF.createBasicBlock("acquire_fail", CGF.CurFn);
JF Bastien92f4ef12016-04-06 17:26:42 +0000449 if (SuccessOrder == llvm::AtomicOrdering::SequentiallyConsistent)
Tim Northover9c177222014-03-13 19:25:48 +0000450 SeqCstBB = CGF.createBasicBlock("seqcst_fail", CGF.CurFn);
451
452 llvm::BasicBlock *ContBB = CGF.createBasicBlock("atomic.continue", CGF.CurFn);
453
454 llvm::SwitchInst *SI = CGF.Builder.CreateSwitch(FailureOrderVal, MonotonicBB);
455
456 // Emit all the different atomics
457
458 // MonotonicBB is arbitrarily chosen as the default case; in practice, this
459 // doesn't matter unless someone is crazy enough to use something that
460 // doesn't fold to a constant for the ordering.
461 CGF.Builder.SetInsertPoint(MonotonicBB);
Tim Northovercadbbe12014-06-13 19:43:04 +0000462 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2,
JF Bastien92f4ef12016-04-06 17:26:42 +0000463 Size, SuccessOrder, llvm::AtomicOrdering::Monotonic);
Tim Northover9c177222014-03-13 19:25:48 +0000464 CGF.Builder.CreateBr(ContBB);
465
466 if (AcquireBB) {
467 CGF.Builder.SetInsertPoint(AcquireBB);
Tim Northovercadbbe12014-06-13 19:43:04 +0000468 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2,
JF Bastien92f4ef12016-04-06 17:26:42 +0000469 Size, SuccessOrder, llvm::AtomicOrdering::Acquire);
Tim Northover9c177222014-03-13 19:25:48 +0000470 CGF.Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +0000471 SI->addCase(CGF.Builder.getInt32((int)llvm::AtomicOrderingCABI::consume),
Tim Northover9c177222014-03-13 19:25:48 +0000472 AcquireBB);
JF Bastiendda2cb12016-04-18 18:01:49 +0000473 SI->addCase(CGF.Builder.getInt32((int)llvm::AtomicOrderingCABI::acquire),
Tim Northover9c177222014-03-13 19:25:48 +0000474 AcquireBB);
475 }
476 if (SeqCstBB) {
477 CGF.Builder.SetInsertPoint(SeqCstBB);
JF Bastien92f4ef12016-04-06 17:26:42 +0000478 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, SuccessOrder,
479 llvm::AtomicOrdering::SequentiallyConsistent);
Tim Northover9c177222014-03-13 19:25:48 +0000480 CGF.Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +0000481 SI->addCase(CGF.Builder.getInt32((int)llvm::AtomicOrderingCABI::seq_cst),
Tim Northover9c177222014-03-13 19:25:48 +0000482 SeqCstBB);
483 }
484
485 CGF.Builder.SetInsertPoint(ContBB);
486}
487
John McCall7f416cc2015-09-08 08:05:57 +0000488static void EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *E, Address Dest,
489 Address Ptr, Address Val1, Address Val2,
Tim Northovercadbbe12014-06-13 19:43:04 +0000490 llvm::Value *IsWeak, llvm::Value *FailureOrder,
John McCall7f416cc2015-09-08 08:05:57 +0000491 uint64_t Size, llvm::AtomicOrdering Order) {
John McCallfc207f22013-03-07 21:37:12 +0000492 llvm::AtomicRMWInst::BinOp Op = llvm::AtomicRMWInst::Add;
493 llvm::Instruction::BinaryOps PostOp = (llvm::Instruction::BinaryOps)0;
494
495 switch (E->getOp()) {
496 case AtomicExpr::AO__c11_atomic_init:
497 llvm_unreachable("Already handled!");
498
499 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
Tim Northovercadbbe12014-06-13 19:43:04 +0000500 emitAtomicCmpXchgFailureSet(CGF, E, false, Dest, Ptr, Val1, Val2,
John McCall7f416cc2015-09-08 08:05:57 +0000501 FailureOrder, Size, Order);
John McCallfc207f22013-03-07 21:37:12 +0000502 return;
Tim Northovercadbbe12014-06-13 19:43:04 +0000503 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
504 emitAtomicCmpXchgFailureSet(CGF, E, true, Dest, Ptr, Val1, Val2,
John McCall7f416cc2015-09-08 08:05:57 +0000505 FailureOrder, Size, Order);
Tim Northovercadbbe12014-06-13 19:43:04 +0000506 return;
507 case AtomicExpr::AO__atomic_compare_exchange:
508 case AtomicExpr::AO__atomic_compare_exchange_n: {
509 if (llvm::ConstantInt *IsWeakC = dyn_cast<llvm::ConstantInt>(IsWeak)) {
510 emitAtomicCmpXchgFailureSet(CGF, E, IsWeakC->getZExtValue(), Dest, Ptr,
John McCall7f416cc2015-09-08 08:05:57 +0000511 Val1, Val2, FailureOrder, Size, Order);
Tim Northovercadbbe12014-06-13 19:43:04 +0000512 } else {
513 // Create all the relevant BB's
514 llvm::BasicBlock *StrongBB =
515 CGF.createBasicBlock("cmpxchg.strong", CGF.CurFn);
516 llvm::BasicBlock *WeakBB = CGF.createBasicBlock("cmxchg.weak", CGF.CurFn);
517 llvm::BasicBlock *ContBB =
518 CGF.createBasicBlock("cmpxchg.continue", CGF.CurFn);
519
520 llvm::SwitchInst *SI = CGF.Builder.CreateSwitch(IsWeak, WeakBB);
521 SI->addCase(CGF.Builder.getInt1(false), StrongBB);
522
523 CGF.Builder.SetInsertPoint(StrongBB);
524 emitAtomicCmpXchgFailureSet(CGF, E, false, Dest, Ptr, Val1, Val2,
John McCall7f416cc2015-09-08 08:05:57 +0000525 FailureOrder, Size, Order);
Tim Northovercadbbe12014-06-13 19:43:04 +0000526 CGF.Builder.CreateBr(ContBB);
527
528 CGF.Builder.SetInsertPoint(WeakBB);
529 emitAtomicCmpXchgFailureSet(CGF, E, true, Dest, Ptr, Val1, Val2,
John McCall7f416cc2015-09-08 08:05:57 +0000530 FailureOrder, Size, Order);
Tim Northovercadbbe12014-06-13 19:43:04 +0000531 CGF.Builder.CreateBr(ContBB);
532
533 CGF.Builder.SetInsertPoint(ContBB);
534 }
535 return;
536 }
John McCallfc207f22013-03-07 21:37:12 +0000537 case AtomicExpr::AO__c11_atomic_load:
538 case AtomicExpr::AO__atomic_load_n:
539 case AtomicExpr::AO__atomic_load: {
540 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Ptr);
541 Load->setAtomic(Order);
John McCallfc207f22013-03-07 21:37:12 +0000542 Load->setVolatile(E->isVolatile());
John McCall7f416cc2015-09-08 08:05:57 +0000543 CGF.Builder.CreateStore(Load, Dest);
John McCallfc207f22013-03-07 21:37:12 +0000544 return;
545 }
546
547 case AtomicExpr::AO__c11_atomic_store:
548 case AtomicExpr::AO__atomic_store:
549 case AtomicExpr::AO__atomic_store_n: {
John McCall7f416cc2015-09-08 08:05:57 +0000550 llvm::Value *LoadVal1 = CGF.Builder.CreateLoad(Val1);
John McCallfc207f22013-03-07 21:37:12 +0000551 llvm::StoreInst *Store = CGF.Builder.CreateStore(LoadVal1, Ptr);
552 Store->setAtomic(Order);
John McCallfc207f22013-03-07 21:37:12 +0000553 Store->setVolatile(E->isVolatile());
554 return;
555 }
556
557 case AtomicExpr::AO__c11_atomic_exchange:
558 case AtomicExpr::AO__atomic_exchange_n:
559 case AtomicExpr::AO__atomic_exchange:
560 Op = llvm::AtomicRMWInst::Xchg;
561 break;
562
563 case AtomicExpr::AO__atomic_add_fetch:
564 PostOp = llvm::Instruction::Add;
565 // Fall through.
566 case AtomicExpr::AO__c11_atomic_fetch_add:
567 case AtomicExpr::AO__atomic_fetch_add:
568 Op = llvm::AtomicRMWInst::Add;
569 break;
570
571 case AtomicExpr::AO__atomic_sub_fetch:
572 PostOp = llvm::Instruction::Sub;
573 // Fall through.
574 case AtomicExpr::AO__c11_atomic_fetch_sub:
575 case AtomicExpr::AO__atomic_fetch_sub:
576 Op = llvm::AtomicRMWInst::Sub;
577 break;
578
579 case AtomicExpr::AO__atomic_and_fetch:
580 PostOp = llvm::Instruction::And;
581 // Fall through.
582 case AtomicExpr::AO__c11_atomic_fetch_and:
583 case AtomicExpr::AO__atomic_fetch_and:
584 Op = llvm::AtomicRMWInst::And;
585 break;
586
587 case AtomicExpr::AO__atomic_or_fetch:
588 PostOp = llvm::Instruction::Or;
589 // Fall through.
590 case AtomicExpr::AO__c11_atomic_fetch_or:
591 case AtomicExpr::AO__atomic_fetch_or:
592 Op = llvm::AtomicRMWInst::Or;
593 break;
594
595 case AtomicExpr::AO__atomic_xor_fetch:
596 PostOp = llvm::Instruction::Xor;
597 // Fall through.
598 case AtomicExpr::AO__c11_atomic_fetch_xor:
599 case AtomicExpr::AO__atomic_fetch_xor:
600 Op = llvm::AtomicRMWInst::Xor;
601 break;
602
603 case AtomicExpr::AO__atomic_nand_fetch:
James Y Knight7aefb5b2015-11-12 18:37:29 +0000604 PostOp = llvm::Instruction::And; // the NOT is special cased below
605 // Fall through.
John McCallfc207f22013-03-07 21:37:12 +0000606 case AtomicExpr::AO__atomic_fetch_nand:
607 Op = llvm::AtomicRMWInst::Nand;
608 break;
609 }
610
John McCall7f416cc2015-09-08 08:05:57 +0000611 llvm::Value *LoadVal1 = CGF.Builder.CreateLoad(Val1);
John McCallfc207f22013-03-07 21:37:12 +0000612 llvm::AtomicRMWInst *RMWI =
John McCall7f416cc2015-09-08 08:05:57 +0000613 CGF.Builder.CreateAtomicRMW(Op, Ptr.getPointer(), LoadVal1, Order);
John McCallfc207f22013-03-07 21:37:12 +0000614 RMWI->setVolatile(E->isVolatile());
615
616 // For __atomic_*_fetch operations, perform the operation again to
617 // determine the value which was written.
618 llvm::Value *Result = RMWI;
619 if (PostOp)
620 Result = CGF.Builder.CreateBinOp(PostOp, RMWI, LoadVal1);
621 if (E->getOp() == AtomicExpr::AO__atomic_nand_fetch)
622 Result = CGF.Builder.CreateNot(Result);
John McCall7f416cc2015-09-08 08:05:57 +0000623 CGF.Builder.CreateStore(Result, Dest);
John McCallfc207f22013-03-07 21:37:12 +0000624}
625
626// This function emits any expression (scalar, complex, or aggregate)
627// into a temporary alloca.
John McCall7f416cc2015-09-08 08:05:57 +0000628static Address
John McCallfc207f22013-03-07 21:37:12 +0000629EmitValToTemp(CodeGenFunction &CGF, Expr *E) {
John McCall7f416cc2015-09-08 08:05:57 +0000630 Address DeclPtr = CGF.CreateMemTemp(E->getType(), ".atomictmp");
John McCallfc207f22013-03-07 21:37:12 +0000631 CGF.EmitAnyExprToMem(E, DeclPtr, E->getType().getQualifiers(),
632 /*Init*/ true);
633 return DeclPtr;
634}
635
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000636static void
637AddDirectArgument(CodeGenFunction &CGF, CallArgList &Args,
Nick Lewycky2d84e842013-10-02 02:29:49 +0000638 bool UseOptimizedLibcall, llvm::Value *Val, QualType ValTy,
David Majnemer0392cf82014-08-29 07:27:49 +0000639 SourceLocation Loc, CharUnits SizeInChars) {
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000640 if (UseOptimizedLibcall) {
641 // Load value and pass it to the function directly.
John McCall7f416cc2015-09-08 08:05:57 +0000642 CharUnits Align = CGF.getContext().getTypeAlignInChars(ValTy);
David Majnemer0392cf82014-08-29 07:27:49 +0000643 int64_t SizeInBits = CGF.getContext().toBits(SizeInChars);
644 ValTy =
645 CGF.getContext().getIntTypeForBitwidth(SizeInBits, /*Signed=*/false);
646 llvm::Type *IPtrTy = llvm::IntegerType::get(CGF.getLLVMContext(),
647 SizeInBits)->getPointerTo();
John McCall7f416cc2015-09-08 08:05:57 +0000648 Address Ptr = Address(CGF.Builder.CreateBitCast(Val, IPtrTy), Align);
649 Val = CGF.EmitLoadOfScalar(Ptr, false,
650 CGF.getContext().getPointerType(ValTy),
David Majnemer0392cf82014-08-29 07:27:49 +0000651 Loc);
652 // Coerce the value into an appropriately sized integer type.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000653 Args.add(RValue::get(Val), ValTy);
654 } else {
655 // Non-optimized functions always take a reference.
656 Args.add(RValue::get(CGF.EmitCastToVoidPtr(Val)),
657 CGF.getContext().VoidPtrTy);
658 }
659}
660
Tim Northovercc2a6e02015-11-09 19:56:35 +0000661RValue CodeGenFunction::EmitAtomicExpr(AtomicExpr *E) {
John McCallfc207f22013-03-07 21:37:12 +0000662 QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
663 QualType MemTy = AtomicTy;
664 if (const AtomicType *AT = AtomicTy->getAs<AtomicType>())
665 MemTy = AT->getValueType();
John McCall7f416cc2015-09-08 08:05:57 +0000666 CharUnits sizeChars, alignChars;
667 std::tie(sizeChars, alignChars) = getContext().getTypeInfoInChars(AtomicTy);
John McCallfc207f22013-03-07 21:37:12 +0000668 uint64_t Size = sizeChars.getQuantity();
John McCall7f416cc2015-09-08 08:05:57 +0000669 unsigned MaxInlineWidthInBits = getTarget().getMaxAtomicInlineWidth();
670 bool UseLibcall = (sizeChars != alignChars ||
John McCallfc207f22013-03-07 21:37:12 +0000671 getContext().toBits(sizeChars) > MaxInlineWidthInBits);
672
John McCall7f416cc2015-09-08 08:05:57 +0000673 llvm::Value *IsWeak = nullptr, *OrderFail = nullptr;
674
675 Address Val1 = Address::invalid();
676 Address Val2 = Address::invalid();
Tim Northovercc2a6e02015-11-09 19:56:35 +0000677 Address Dest = Address::invalid();
John McCall7f416cc2015-09-08 08:05:57 +0000678 Address Ptr(EmitScalarExpr(E->getPtr()), alignChars);
John McCallfc207f22013-03-07 21:37:12 +0000679
680 if (E->getOp() == AtomicExpr::AO__c11_atomic_init) {
John McCall7f416cc2015-09-08 08:05:57 +0000681 LValue lvalue = MakeAddrLValue(Ptr, AtomicTy);
John McCalla8ec7eb2013-03-07 21:37:17 +0000682 EmitAtomicInit(E->getVal1(), lvalue);
Craig Topper8a13c412014-05-21 05:09:00 +0000683 return RValue::get(nullptr);
John McCallfc207f22013-03-07 21:37:12 +0000684 }
685
Craig Topper8a13c412014-05-21 05:09:00 +0000686 llvm::Value *Order = EmitScalarExpr(E->getOrder());
John McCallfc207f22013-03-07 21:37:12 +0000687
688 switch (E->getOp()) {
689 case AtomicExpr::AO__c11_atomic_init:
James Y Knight81167fb2015-08-05 16:57:36 +0000690 llvm_unreachable("Already handled above with EmitAtomicInit!");
John McCallfc207f22013-03-07 21:37:12 +0000691
692 case AtomicExpr::AO__c11_atomic_load:
693 case AtomicExpr::AO__atomic_load_n:
694 break;
695
696 case AtomicExpr::AO__atomic_load:
John McCall7f416cc2015-09-08 08:05:57 +0000697 Dest = EmitPointerWithAlignment(E->getVal1());
John McCallfc207f22013-03-07 21:37:12 +0000698 break;
699
700 case AtomicExpr::AO__atomic_store:
John McCall7f416cc2015-09-08 08:05:57 +0000701 Val1 = EmitPointerWithAlignment(E->getVal1());
John McCallfc207f22013-03-07 21:37:12 +0000702 break;
703
704 case AtomicExpr::AO__atomic_exchange:
John McCall7f416cc2015-09-08 08:05:57 +0000705 Val1 = EmitPointerWithAlignment(E->getVal1());
706 Dest = EmitPointerWithAlignment(E->getVal2());
John McCallfc207f22013-03-07 21:37:12 +0000707 break;
708
709 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
710 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
711 case AtomicExpr::AO__atomic_compare_exchange_n:
712 case AtomicExpr::AO__atomic_compare_exchange:
John McCall7f416cc2015-09-08 08:05:57 +0000713 Val1 = EmitPointerWithAlignment(E->getVal1());
John McCallfc207f22013-03-07 21:37:12 +0000714 if (E->getOp() == AtomicExpr::AO__atomic_compare_exchange)
John McCall7f416cc2015-09-08 08:05:57 +0000715 Val2 = EmitPointerWithAlignment(E->getVal2());
John McCallfc207f22013-03-07 21:37:12 +0000716 else
717 Val2 = EmitValToTemp(*this, E->getVal2());
718 OrderFail = EmitScalarExpr(E->getOrderFail());
John McCallfc207f22013-03-07 21:37:12 +0000719 if (E->getNumSubExprs() == 6)
Tim Northovercadbbe12014-06-13 19:43:04 +0000720 IsWeak = EmitScalarExpr(E->getWeak());
John McCallfc207f22013-03-07 21:37:12 +0000721 break;
722
723 case AtomicExpr::AO__c11_atomic_fetch_add:
724 case AtomicExpr::AO__c11_atomic_fetch_sub:
725 if (MemTy->isPointerType()) {
726 // For pointer arithmetic, we're required to do a bit of math:
727 // adding 1 to an int* is not the same as adding 1 to a uintptr_t.
728 // ... but only for the C11 builtins. The GNU builtins expect the
729 // user to multiply by sizeof(T).
730 QualType Val1Ty = E->getVal1()->getType();
731 llvm::Value *Val1Scalar = EmitScalarExpr(E->getVal1());
732 CharUnits PointeeIncAmt =
733 getContext().getTypeSizeInChars(MemTy->getPointeeType());
734 Val1Scalar = Builder.CreateMul(Val1Scalar, CGM.getSize(PointeeIncAmt));
John McCall7f416cc2015-09-08 08:05:57 +0000735 auto Temp = CreateMemTemp(Val1Ty, ".atomictmp");
736 Val1 = Temp;
737 EmitStoreOfScalar(Val1Scalar, MakeAddrLValue(Temp, Val1Ty));
John McCallfc207f22013-03-07 21:37:12 +0000738 break;
739 }
740 // Fall through.
741 case AtomicExpr::AO__atomic_fetch_add:
742 case AtomicExpr::AO__atomic_fetch_sub:
743 case AtomicExpr::AO__atomic_add_fetch:
744 case AtomicExpr::AO__atomic_sub_fetch:
745 case AtomicExpr::AO__c11_atomic_store:
746 case AtomicExpr::AO__c11_atomic_exchange:
747 case AtomicExpr::AO__atomic_store_n:
748 case AtomicExpr::AO__atomic_exchange_n:
749 case AtomicExpr::AO__c11_atomic_fetch_and:
750 case AtomicExpr::AO__c11_atomic_fetch_or:
751 case AtomicExpr::AO__c11_atomic_fetch_xor:
752 case AtomicExpr::AO__atomic_fetch_and:
753 case AtomicExpr::AO__atomic_fetch_or:
754 case AtomicExpr::AO__atomic_fetch_xor:
755 case AtomicExpr::AO__atomic_fetch_nand:
756 case AtomicExpr::AO__atomic_and_fetch:
757 case AtomicExpr::AO__atomic_or_fetch:
758 case AtomicExpr::AO__atomic_xor_fetch:
759 case AtomicExpr::AO__atomic_nand_fetch:
760 Val1 = EmitValToTemp(*this, E->getVal1());
761 break;
762 }
763
David Majnemeree8d04d2014-12-12 08:16:09 +0000764 QualType RValTy = E->getType().getUnqualifiedType();
765
Tim Northovercc2a6e02015-11-09 19:56:35 +0000766 // The inlined atomics only function on iN types, where N is a power of 2. We
767 // need to make sure (via temporaries if necessary) that all incoming values
768 // are compatible.
769 LValue AtomicVal = MakeAddrLValue(Ptr, AtomicTy);
770 AtomicInfo Atomics(*this, AtomicVal);
771
772 Ptr = Atomics.emitCastToAtomicIntPointer(Ptr);
773 if (Val1.isValid()) Val1 = Atomics.convertToAtomicIntPointer(Val1);
774 if (Val2.isValid()) Val2 = Atomics.convertToAtomicIntPointer(Val2);
775 if (Dest.isValid())
776 Dest = Atomics.emitCastToAtomicIntPointer(Dest);
777 else if (E->isCmpXChg())
778 Dest = CreateMemTemp(RValTy, "cmpxchg.bool");
779 else if (!RValTy->isVoidType())
780 Dest = Atomics.emitCastToAtomicIntPointer(Atomics.CreateTempAlloca());
John McCallfc207f22013-03-07 21:37:12 +0000781
782 // Use a library call. See: http://gcc.gnu.org/wiki/Atomic/GCCMM/LIbrary .
783 if (UseLibcall) {
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000784 bool UseOptimizedLibcall = false;
785 switch (E->getOp()) {
James Y Knight81167fb2015-08-05 16:57:36 +0000786 case AtomicExpr::AO__c11_atomic_init:
787 llvm_unreachable("Already handled above with EmitAtomicInit!");
788
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000789 case AtomicExpr::AO__c11_atomic_fetch_add:
790 case AtomicExpr::AO__atomic_fetch_add:
791 case AtomicExpr::AO__c11_atomic_fetch_and:
792 case AtomicExpr::AO__atomic_fetch_and:
793 case AtomicExpr::AO__c11_atomic_fetch_or:
794 case AtomicExpr::AO__atomic_fetch_or:
James Y Knight81167fb2015-08-05 16:57:36 +0000795 case AtomicExpr::AO__atomic_fetch_nand:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000796 case AtomicExpr::AO__c11_atomic_fetch_sub:
797 case AtomicExpr::AO__atomic_fetch_sub:
798 case AtomicExpr::AO__c11_atomic_fetch_xor:
799 case AtomicExpr::AO__atomic_fetch_xor:
James Y Knight81167fb2015-08-05 16:57:36 +0000800 case AtomicExpr::AO__atomic_add_fetch:
801 case AtomicExpr::AO__atomic_and_fetch:
802 case AtomicExpr::AO__atomic_nand_fetch:
803 case AtomicExpr::AO__atomic_or_fetch:
804 case AtomicExpr::AO__atomic_sub_fetch:
805 case AtomicExpr::AO__atomic_xor_fetch:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000806 // For these, only library calls for certain sizes exist.
807 UseOptimizedLibcall = true;
808 break;
James Y Knight81167fb2015-08-05 16:57:36 +0000809
810 case AtomicExpr::AO__c11_atomic_load:
811 case AtomicExpr::AO__c11_atomic_store:
812 case AtomicExpr::AO__c11_atomic_exchange:
813 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
814 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
815 case AtomicExpr::AO__atomic_load_n:
816 case AtomicExpr::AO__atomic_load:
817 case AtomicExpr::AO__atomic_store_n:
818 case AtomicExpr::AO__atomic_store:
819 case AtomicExpr::AO__atomic_exchange_n:
820 case AtomicExpr::AO__atomic_exchange:
821 case AtomicExpr::AO__atomic_compare_exchange_n:
822 case AtomicExpr::AO__atomic_compare_exchange:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000823 // Only use optimized library calls for sizes for which they exist.
824 if (Size == 1 || Size == 2 || Size == 4 || Size == 8)
825 UseOptimizedLibcall = true;
826 break;
827 }
John McCallfc207f22013-03-07 21:37:12 +0000828
John McCallfc207f22013-03-07 21:37:12 +0000829 CallArgList Args;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000830 if (!UseOptimizedLibcall) {
831 // For non-optimized library calls, the size is the first parameter
832 Args.add(RValue::get(llvm::ConstantInt::get(SizeTy, Size)),
833 getContext().getSizeType());
834 }
835 // Atomic address is the first or second parameter
John McCall7f416cc2015-09-08 08:05:57 +0000836 Args.add(RValue::get(EmitCastToVoidPtr(Ptr.getPointer())),
837 getContext().VoidPtrTy);
John McCallfc207f22013-03-07 21:37:12 +0000838
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000839 std::string LibCallName;
Logan Chien74798a32014-03-26 17:35:01 +0000840 QualType LoweredMemTy =
841 MemTy->isPointerType() ? getContext().getIntPtrType() : MemTy;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000842 QualType RetTy;
843 bool HaveRetTy = false;
James Y Knight7aefb5b2015-11-12 18:37:29 +0000844 llvm::Instruction::BinaryOps PostOp = (llvm::Instruction::BinaryOps)0;
John McCallfc207f22013-03-07 21:37:12 +0000845 switch (E->getOp()) {
James Y Knight81167fb2015-08-05 16:57:36 +0000846 case AtomicExpr::AO__c11_atomic_init:
847 llvm_unreachable("Already handled!");
848
John McCallfc207f22013-03-07 21:37:12 +0000849 // There is only one libcall for compare an exchange, because there is no
850 // optimisation benefit possible from a libcall version of a weak compare
851 // and exchange.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000852 // bool __atomic_compare_exchange(size_t size, void *mem, void *expected,
John McCallfc207f22013-03-07 21:37:12 +0000853 // void *desired, int success, int failure)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000854 // bool __atomic_compare_exchange_N(T *mem, T *expected, T desired,
855 // int success, int failure)
John McCallfc207f22013-03-07 21:37:12 +0000856 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
857 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
858 case AtomicExpr::AO__atomic_compare_exchange:
859 case AtomicExpr::AO__atomic_compare_exchange_n:
860 LibCallName = "__atomic_compare_exchange";
861 RetTy = getContext().BoolTy;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000862 HaveRetTy = true;
John McCall7f416cc2015-09-08 08:05:57 +0000863 Args.add(RValue::get(EmitCastToVoidPtr(Val1.getPointer())),
864 getContext().VoidPtrTy);
865 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val2.getPointer(),
866 MemTy, E->getExprLoc(), sizeChars);
Nick Lewycky5fa40c32013-10-01 21:51:38 +0000867 Args.add(RValue::get(Order), getContext().IntTy);
John McCallfc207f22013-03-07 21:37:12 +0000868 Order = OrderFail;
869 break;
870 // void __atomic_exchange(size_t size, void *mem, void *val, void *return,
871 // int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000872 // T __atomic_exchange_N(T *mem, T val, int order)
John McCallfc207f22013-03-07 21:37:12 +0000873 case AtomicExpr::AO__c11_atomic_exchange:
874 case AtomicExpr::AO__atomic_exchange_n:
875 case AtomicExpr::AO__atomic_exchange:
876 LibCallName = "__atomic_exchange";
John McCall7f416cc2015-09-08 08:05:57 +0000877 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
878 MemTy, E->getExprLoc(), sizeChars);
John McCallfc207f22013-03-07 21:37:12 +0000879 break;
880 // void __atomic_store(size_t size, void *mem, void *val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000881 // void __atomic_store_N(T *mem, T val, int order)
John McCallfc207f22013-03-07 21:37:12 +0000882 case AtomicExpr::AO__c11_atomic_store:
883 case AtomicExpr::AO__atomic_store:
884 case AtomicExpr::AO__atomic_store_n:
885 LibCallName = "__atomic_store";
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000886 RetTy = getContext().VoidTy;
887 HaveRetTy = true;
John McCall7f416cc2015-09-08 08:05:57 +0000888 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
889 MemTy, E->getExprLoc(), sizeChars);
John McCallfc207f22013-03-07 21:37:12 +0000890 break;
891 // void __atomic_load(size_t size, void *mem, void *return, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000892 // T __atomic_load_N(T *mem, int order)
John McCallfc207f22013-03-07 21:37:12 +0000893 case AtomicExpr::AO__c11_atomic_load:
894 case AtomicExpr::AO__atomic_load:
895 case AtomicExpr::AO__atomic_load_n:
896 LibCallName = "__atomic_load";
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000897 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +0000898 // T __atomic_add_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000899 // T __atomic_fetch_add_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +0000900 case AtomicExpr::AO__atomic_add_fetch:
901 PostOp = llvm::Instruction::Add;
902 // Fall through.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000903 case AtomicExpr::AO__c11_atomic_fetch_add:
904 case AtomicExpr::AO__atomic_fetch_add:
905 LibCallName = "__atomic_fetch_add";
John McCall7f416cc2015-09-08 08:05:57 +0000906 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
907 LoweredMemTy, E->getExprLoc(), sizeChars);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000908 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +0000909 // T __atomic_and_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000910 // T __atomic_fetch_and_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +0000911 case AtomicExpr::AO__atomic_and_fetch:
912 PostOp = llvm::Instruction::And;
913 // Fall through.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000914 case AtomicExpr::AO__c11_atomic_fetch_and:
915 case AtomicExpr::AO__atomic_fetch_and:
916 LibCallName = "__atomic_fetch_and";
John McCall7f416cc2015-09-08 08:05:57 +0000917 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
918 MemTy, E->getExprLoc(), sizeChars);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000919 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +0000920 // T __atomic_or_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000921 // T __atomic_fetch_or_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +0000922 case AtomicExpr::AO__atomic_or_fetch:
923 PostOp = llvm::Instruction::Or;
924 // Fall through.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000925 case AtomicExpr::AO__c11_atomic_fetch_or:
926 case AtomicExpr::AO__atomic_fetch_or:
927 LibCallName = "__atomic_fetch_or";
John McCall7f416cc2015-09-08 08:05:57 +0000928 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
929 MemTy, E->getExprLoc(), sizeChars);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000930 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +0000931 // T __atomic_sub_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000932 // T __atomic_fetch_sub_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +0000933 case AtomicExpr::AO__atomic_sub_fetch:
934 PostOp = llvm::Instruction::Sub;
935 // Fall through.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000936 case AtomicExpr::AO__c11_atomic_fetch_sub:
937 case AtomicExpr::AO__atomic_fetch_sub:
938 LibCallName = "__atomic_fetch_sub";
John McCall7f416cc2015-09-08 08:05:57 +0000939 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
940 LoweredMemTy, E->getExprLoc(), sizeChars);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000941 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +0000942 // T __atomic_xor_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000943 // T __atomic_fetch_xor_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +0000944 case AtomicExpr::AO__atomic_xor_fetch:
945 PostOp = llvm::Instruction::Xor;
946 // Fall through.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000947 case AtomicExpr::AO__c11_atomic_fetch_xor:
948 case AtomicExpr::AO__atomic_fetch_xor:
949 LibCallName = "__atomic_fetch_xor";
John McCall7f416cc2015-09-08 08:05:57 +0000950 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
951 MemTy, E->getExprLoc(), sizeChars);
John McCallfc207f22013-03-07 21:37:12 +0000952 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +0000953 // T __atomic_nand_fetch_N(T *mem, T val, int order)
James Y Knight81167fb2015-08-05 16:57:36 +0000954 // T __atomic_fetch_nand_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +0000955 case AtomicExpr::AO__atomic_nand_fetch:
956 PostOp = llvm::Instruction::And; // the NOT is special cased below
957 // Fall through.
James Y Knight81167fb2015-08-05 16:57:36 +0000958 case AtomicExpr::AO__atomic_fetch_nand:
959 LibCallName = "__atomic_fetch_nand";
John McCall7f416cc2015-09-08 08:05:57 +0000960 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
961 MemTy, E->getExprLoc(), sizeChars);
James Y Knight81167fb2015-08-05 16:57:36 +0000962 break;
John McCallfc207f22013-03-07 21:37:12 +0000963 }
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000964
965 // Optimized functions have the size in their name.
966 if (UseOptimizedLibcall)
967 LibCallName += "_" + llvm::utostr(Size);
968 // By default, assume we return a value of the atomic type.
969 if (!HaveRetTy) {
970 if (UseOptimizedLibcall) {
971 // Value is returned directly.
David Majnemer0392cf82014-08-29 07:27:49 +0000972 // The function returns an appropriately sized integer type.
973 RetTy = getContext().getIntTypeForBitwidth(
974 getContext().toBits(sizeChars), /*Signed=*/false);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000975 } else {
976 // Value is returned through parameter before the order.
977 RetTy = getContext().VoidTy;
John McCall7f416cc2015-09-08 08:05:57 +0000978 Args.add(RValue::get(EmitCastToVoidPtr(Dest.getPointer())),
979 getContext().VoidPtrTy);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000980 }
981 }
John McCallfc207f22013-03-07 21:37:12 +0000982 // order is always the last parameter
983 Args.add(RValue::get(Order),
984 getContext().IntTy);
985
James Y Knight7aefb5b2015-11-12 18:37:29 +0000986 // PostOp is only needed for the atomic_*_fetch operations, and
987 // thus is only needed for and implemented in the
988 // UseOptimizedLibcall codepath.
989 assert(UseOptimizedLibcall || !PostOp);
990
David Majnemer659be552014-11-25 23:44:32 +0000991 RValue Res = emitAtomicLibcall(*this, LibCallName, RetTy, Args);
992 // The value is returned directly from the libcall.
Tim Northovercc2a6e02015-11-09 19:56:35 +0000993 if (E->isCmpXChg())
David Majnemer659be552014-11-25 23:44:32 +0000994 return Res;
Tim Northovercc2a6e02015-11-09 19:56:35 +0000995
996 // The value is returned directly for optimized libcalls but the expr
997 // provided an out-param.
998 if (UseOptimizedLibcall && Res.getScalarVal()) {
David Majnemer659be552014-11-25 23:44:32 +0000999 llvm::Value *ResVal = Res.getScalarVal();
James Y Knight7aefb5b2015-11-12 18:37:29 +00001000 if (PostOp) {
1001 llvm::Value *LoadVal1 = Args[1].RV.getScalarVal();
1002 ResVal = Builder.CreateBinOp(PostOp, ResVal, LoadVal1);
1003 }
1004 if (E->getOp() == AtomicExpr::AO__atomic_nand_fetch)
1005 ResVal = Builder.CreateNot(ResVal);
1006
Tim Northovercc2a6e02015-11-09 19:56:35 +00001007 Builder.CreateStore(
1008 ResVal,
1009 Builder.CreateBitCast(Dest, ResVal->getType()->getPointerTo()));
David Majnemer659be552014-11-25 23:44:32 +00001010 }
Tim Northovercc2a6e02015-11-09 19:56:35 +00001011
1012 if (RValTy->isVoidType())
1013 return RValue::get(nullptr);
1014
1015 return convertTempToRValue(
1016 Builder.CreateBitCast(Dest, ConvertTypeForMem(RValTy)->getPointerTo()),
1017 RValTy, E->getExprLoc());
John McCallfc207f22013-03-07 21:37:12 +00001018 }
1019
1020 bool IsStore = E->getOp() == AtomicExpr::AO__c11_atomic_store ||
1021 E->getOp() == AtomicExpr::AO__atomic_store ||
1022 E->getOp() == AtomicExpr::AO__atomic_store_n;
1023 bool IsLoad = E->getOp() == AtomicExpr::AO__c11_atomic_load ||
1024 E->getOp() == AtomicExpr::AO__atomic_load ||
1025 E->getOp() == AtomicExpr::AO__atomic_load_n;
1026
John McCallfc207f22013-03-07 21:37:12 +00001027 if (isa<llvm::ConstantInt>(Order)) {
JF Bastiendda2cb12016-04-18 18:01:49 +00001028 auto ord = cast<llvm::ConstantInt>(Order)->getZExtValue();
1029 // We should not ever get to a case where the ordering isn't a valid C ABI
1030 // value, but it's hard to enforce that in general.
1031 if (llvm::isValidAtomicOrderingCABI(ord))
1032 switch ((llvm::AtomicOrderingCABI)ord) {
1033 case llvm::AtomicOrderingCABI::relaxed:
1034 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
1035 llvm::AtomicOrdering::Monotonic);
1036 break;
1037 case llvm::AtomicOrderingCABI::consume:
1038 case llvm::AtomicOrderingCABI::acquire:
1039 if (IsStore)
1040 break; // Avoid crashing on code with undefined behavior
1041 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
1042 llvm::AtomicOrdering::Acquire);
1043 break;
1044 case llvm::AtomicOrderingCABI::release:
1045 if (IsLoad)
1046 break; // Avoid crashing on code with undefined behavior
1047 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
1048 llvm::AtomicOrdering::Release);
1049 break;
1050 case llvm::AtomicOrderingCABI::acq_rel:
1051 if (IsLoad || IsStore)
1052 break; // Avoid crashing on code with undefined behavior
1053 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
1054 llvm::AtomicOrdering::AcquireRelease);
1055 break;
1056 case llvm::AtomicOrderingCABI::seq_cst:
1057 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
1058 llvm::AtomicOrdering::SequentiallyConsistent);
1059 break;
1060 }
David Majnemeree8d04d2014-12-12 08:16:09 +00001061 if (RValTy->isVoidType())
Craig Topper8a13c412014-05-21 05:09:00 +00001062 return RValue::get(nullptr);
Tim Northovercc2a6e02015-11-09 19:56:35 +00001063
1064 return convertTempToRValue(
1065 Builder.CreateBitCast(Dest, ConvertTypeForMem(RValTy)->getPointerTo()),
1066 RValTy, E->getExprLoc());
John McCallfc207f22013-03-07 21:37:12 +00001067 }
1068
1069 // Long case, when Order isn't obviously constant.
1070
1071 // Create all the relevant BB's
Craig Topper8a13c412014-05-21 05:09:00 +00001072 llvm::BasicBlock *MonotonicBB = nullptr, *AcquireBB = nullptr,
1073 *ReleaseBB = nullptr, *AcqRelBB = nullptr,
1074 *SeqCstBB = nullptr;
John McCallfc207f22013-03-07 21:37:12 +00001075 MonotonicBB = createBasicBlock("monotonic", CurFn);
1076 if (!IsStore)
1077 AcquireBB = createBasicBlock("acquire", CurFn);
1078 if (!IsLoad)
1079 ReleaseBB = createBasicBlock("release", CurFn);
1080 if (!IsLoad && !IsStore)
1081 AcqRelBB = createBasicBlock("acqrel", CurFn);
1082 SeqCstBB = createBasicBlock("seqcst", CurFn);
1083 llvm::BasicBlock *ContBB = createBasicBlock("atomic.continue", CurFn);
1084
1085 // Create the switch for the split
1086 // MonotonicBB is arbitrarily chosen as the default case; in practice, this
1087 // doesn't matter unless someone is crazy enough to use something that
1088 // doesn't fold to a constant for the ordering.
1089 Order = Builder.CreateIntCast(Order, Builder.getInt32Ty(), false);
1090 llvm::SwitchInst *SI = Builder.CreateSwitch(Order, MonotonicBB);
1091
1092 // Emit all the different atomics
1093 Builder.SetInsertPoint(MonotonicBB);
Tim Northovercadbbe12014-06-13 19:43:04 +00001094 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail,
JF Bastien92f4ef12016-04-06 17:26:42 +00001095 Size, llvm::AtomicOrdering::Monotonic);
John McCallfc207f22013-03-07 21:37:12 +00001096 Builder.CreateBr(ContBB);
1097 if (!IsStore) {
1098 Builder.SetInsertPoint(AcquireBB);
Tim Northovercadbbe12014-06-13 19:43:04 +00001099 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail,
JF Bastien92f4ef12016-04-06 17:26:42 +00001100 Size, llvm::AtomicOrdering::Acquire);
John McCallfc207f22013-03-07 21:37:12 +00001101 Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001102 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::consume),
Tim Northover514fc612014-03-13 19:25:52 +00001103 AcquireBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001104 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::acquire),
Tim Northover514fc612014-03-13 19:25:52 +00001105 AcquireBB);
John McCallfc207f22013-03-07 21:37:12 +00001106 }
1107 if (!IsLoad) {
1108 Builder.SetInsertPoint(ReleaseBB);
Tim Northovercadbbe12014-06-13 19:43:04 +00001109 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail,
JF Bastien92f4ef12016-04-06 17:26:42 +00001110 Size, llvm::AtomicOrdering::Release);
John McCallfc207f22013-03-07 21:37:12 +00001111 Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001112 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::release),
Tim Northover514fc612014-03-13 19:25:52 +00001113 ReleaseBB);
John McCallfc207f22013-03-07 21:37:12 +00001114 }
1115 if (!IsLoad && !IsStore) {
1116 Builder.SetInsertPoint(AcqRelBB);
Tim Northovercadbbe12014-06-13 19:43:04 +00001117 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail,
JF Bastien92f4ef12016-04-06 17:26:42 +00001118 Size, llvm::AtomicOrdering::AcquireRelease);
John McCallfc207f22013-03-07 21:37:12 +00001119 Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001120 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::acq_rel),
Tim Northover514fc612014-03-13 19:25:52 +00001121 AcqRelBB);
John McCallfc207f22013-03-07 21:37:12 +00001122 }
1123 Builder.SetInsertPoint(SeqCstBB);
Tim Northovercadbbe12014-06-13 19:43:04 +00001124 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail,
JF Bastien92f4ef12016-04-06 17:26:42 +00001125 Size, llvm::AtomicOrdering::SequentiallyConsistent);
John McCallfc207f22013-03-07 21:37:12 +00001126 Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001127 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::seq_cst),
Tim Northover514fc612014-03-13 19:25:52 +00001128 SeqCstBB);
John McCallfc207f22013-03-07 21:37:12 +00001129
1130 // Cleanup and return
1131 Builder.SetInsertPoint(ContBB);
David Majnemeree8d04d2014-12-12 08:16:09 +00001132 if (RValTy->isVoidType())
Craig Topper8a13c412014-05-21 05:09:00 +00001133 return RValue::get(nullptr);
Tim Northovercc2a6e02015-11-09 19:56:35 +00001134
1135 assert(Atomics.getValueSizeInBits() <= Atomics.getAtomicSizeInBits());
1136 return convertTempToRValue(
1137 Builder.CreateBitCast(Dest, ConvertTypeForMem(RValTy)->getPointerTo()),
1138 RValTy, E->getExprLoc());
John McCallfc207f22013-03-07 21:37:12 +00001139}
John McCalla8ec7eb2013-03-07 21:37:17 +00001140
John McCall7f416cc2015-09-08 08:05:57 +00001141Address AtomicInfo::emitCastToAtomicIntPointer(Address addr) const {
John McCalla8ec7eb2013-03-07 21:37:17 +00001142 unsigned addrspace =
John McCall7f416cc2015-09-08 08:05:57 +00001143 cast<llvm::PointerType>(addr.getPointer()->getType())->getAddressSpace();
John McCalla8ec7eb2013-03-07 21:37:17 +00001144 llvm::IntegerType *ty =
1145 llvm::IntegerType::get(CGF.getLLVMContext(), AtomicSizeInBits);
1146 return CGF.Builder.CreateBitCast(addr, ty->getPointerTo(addrspace));
1147}
1148
Tim Northovercc2a6e02015-11-09 19:56:35 +00001149Address AtomicInfo::convertToAtomicIntPointer(Address Addr) const {
1150 llvm::Type *Ty = Addr.getElementType();
1151 uint64_t SourceSizeInBits = CGF.CGM.getDataLayout().getTypeSizeInBits(Ty);
1152 if (SourceSizeInBits != AtomicSizeInBits) {
1153 Address Tmp = CreateTempAlloca();
1154 CGF.Builder.CreateMemCpy(Tmp, Addr,
1155 std::min(AtomicSizeInBits, SourceSizeInBits) / 8);
1156 Addr = Tmp;
1157 }
1158
1159 return emitCastToAtomicIntPointer(Addr);
1160}
1161
John McCall7f416cc2015-09-08 08:05:57 +00001162RValue AtomicInfo::convertAtomicTempToRValue(Address addr,
1163 AggValueSlot resultSlot,
1164 SourceLocation loc,
1165 bool asValue) const {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001166 if (LVal.isSimple()) {
1167 if (EvaluationKind == TEK_Aggregate)
1168 return resultSlot.asRValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001169
Alexey Bataevb57056f2015-01-22 06:17:56 +00001170 // Drill into the padding structure if we have one.
1171 if (hasPadding())
John McCall7f416cc2015-09-08 08:05:57 +00001172 addr = CGF.Builder.CreateStructGEP(addr, 0, CharUnits());
John McCalla8ec7eb2013-03-07 21:37:17 +00001173
Alexey Bataevb57056f2015-01-22 06:17:56 +00001174 // Otherwise, just convert the temporary to an r-value using the
1175 // normal conversion routine.
1176 return CGF.convertTempToRValue(addr, getValueType(), loc);
David Blaikie1ed728c2015-04-05 22:45:47 +00001177 }
John McCall7f416cc2015-09-08 08:05:57 +00001178 if (!asValue)
Alexey Bataevb8329262015-02-27 06:33:30 +00001179 // Get RValue from temp memory as atomic for non-simple lvalues
John McCall7f416cc2015-09-08 08:05:57 +00001180 return RValue::get(CGF.Builder.CreateLoad(addr));
David Blaikie1ed728c2015-04-05 22:45:47 +00001181 if (LVal.isBitField())
John McCall7f416cc2015-09-08 08:05:57 +00001182 return CGF.EmitLoadOfBitfieldLValue(
1183 LValue::MakeBitfield(addr, LVal.getBitFieldInfo(), LVal.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +00001184 LVal.getBaseInfo()), loc);
David Blaikie1ed728c2015-04-05 22:45:47 +00001185 if (LVal.isVectorElt())
John McCall7f416cc2015-09-08 08:05:57 +00001186 return CGF.EmitLoadOfLValue(
1187 LValue::MakeVectorElt(addr, LVal.getVectorIdx(), LVal.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +00001188 LVal.getBaseInfo()), loc);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001189 assert(LVal.isExtVectorElt());
1190 return CGF.EmitLoadOfExtVectorElementLValue(LValue::MakeExtVectorElt(
John McCall7f416cc2015-09-08 08:05:57 +00001191 addr, LVal.getExtVectorElts(), LVal.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +00001192 LVal.getBaseInfo()));
John McCalla8ec7eb2013-03-07 21:37:17 +00001193}
1194
Alexey Bataevb8329262015-02-27 06:33:30 +00001195RValue AtomicInfo::ConvertIntToValueOrAtomic(llvm::Value *IntVal,
1196 AggValueSlot ResultSlot,
1197 SourceLocation Loc,
1198 bool AsValue) const {
Alexey Bataev452d8e12014-12-15 05:25:25 +00001199 // Try not to in some easy cases.
1200 assert(IntVal->getType()->isIntegerTy() && "Expected integer value");
Alexey Bataevb8329262015-02-27 06:33:30 +00001201 if (getEvaluationKind() == TEK_Scalar &&
1202 (((!LVal.isBitField() ||
1203 LVal.getBitFieldInfo().Size == ValueSizeInBits) &&
1204 !hasPadding()) ||
1205 !AsValue)) {
1206 auto *ValTy = AsValue
1207 ? CGF.ConvertTypeForMem(ValueTy)
John McCall7f416cc2015-09-08 08:05:57 +00001208 : getAtomicAddress().getType()->getPointerElementType();
Alexey Bataev452d8e12014-12-15 05:25:25 +00001209 if (ValTy->isIntegerTy()) {
1210 assert(IntVal->getType() == ValTy && "Different integer types.");
David Majnemereeaec262015-02-14 02:18:14 +00001211 return RValue::get(CGF.EmitFromMemory(IntVal, ValueTy));
Alexey Bataev452d8e12014-12-15 05:25:25 +00001212 } else if (ValTy->isPointerTy())
1213 return RValue::get(CGF.Builder.CreateIntToPtr(IntVal, ValTy));
1214 else if (llvm::CastInst::isBitCastable(IntVal->getType(), ValTy))
1215 return RValue::get(CGF.Builder.CreateBitCast(IntVal, ValTy));
1216 }
1217
1218 // Create a temporary. This needs to be big enough to hold the
1219 // atomic integer.
John McCall7f416cc2015-09-08 08:05:57 +00001220 Address Temp = Address::invalid();
Alexey Bataev452d8e12014-12-15 05:25:25 +00001221 bool TempIsVolatile = false;
Alexey Bataevb8329262015-02-27 06:33:30 +00001222 if (AsValue && getEvaluationKind() == TEK_Aggregate) {
Alexey Bataev452d8e12014-12-15 05:25:25 +00001223 assert(!ResultSlot.isIgnored());
John McCall7f416cc2015-09-08 08:05:57 +00001224 Temp = ResultSlot.getAddress();
Alexey Bataev452d8e12014-12-15 05:25:25 +00001225 TempIsVolatile = ResultSlot.isVolatile();
1226 } else {
Alexey Bataevb8329262015-02-27 06:33:30 +00001227 Temp = CreateTempAlloca();
Alexey Bataev452d8e12014-12-15 05:25:25 +00001228 }
1229
1230 // Slam the integer into the temporary.
John McCall7f416cc2015-09-08 08:05:57 +00001231 Address CastTemp = emitCastToAtomicIntPointer(Temp);
1232 CGF.Builder.CreateStore(IntVal, CastTemp)
Alexey Bataev452d8e12014-12-15 05:25:25 +00001233 ->setVolatile(TempIsVolatile);
1234
John McCall7f416cc2015-09-08 08:05:57 +00001235 return convertAtomicTempToRValue(Temp, ResultSlot, Loc, AsValue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001236}
1237
1238void AtomicInfo::EmitAtomicLoadLibcall(llvm::Value *AddForLoaded,
1239 llvm::AtomicOrdering AO, bool) {
1240 // void __atomic_load(size_t size, void *mem, void *return, int order);
1241 CallArgList Args;
1242 Args.add(RValue::get(getAtomicSizeValue()), CGF.getContext().getSizeType());
John McCall7f416cc2015-09-08 08:05:57 +00001243 Args.add(RValue::get(CGF.EmitCastToVoidPtr(getAtomicPointer())),
Alexey Bataevb8329262015-02-27 06:33:30 +00001244 CGF.getContext().VoidPtrTy);
1245 Args.add(RValue::get(CGF.EmitCastToVoidPtr(AddForLoaded)),
1246 CGF.getContext().VoidPtrTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001247 Args.add(
1248 RValue::get(llvm::ConstantInt::get(CGF.IntTy, (int)llvm::toCABI(AO))),
1249 CGF.getContext().IntTy);
Alexey Bataevb8329262015-02-27 06:33:30 +00001250 emitAtomicLibcall(CGF, "__atomic_load", CGF.getContext().VoidTy, Args);
1251}
1252
1253llvm::Value *AtomicInfo::EmitAtomicLoadOp(llvm::AtomicOrdering AO,
1254 bool IsVolatile) {
1255 // Okay, we're doing this natively.
John McCall7f416cc2015-09-08 08:05:57 +00001256 Address Addr = getAtomicAddressAsAtomicIntPointer();
Alexey Bataevb8329262015-02-27 06:33:30 +00001257 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Addr, "atomic-load");
1258 Load->setAtomic(AO);
1259
1260 // Other decoration.
Alexey Bataevb8329262015-02-27 06:33:30 +00001261 if (IsVolatile)
1262 Load->setVolatile(true);
1263 if (LVal.getTBAAInfo())
Piotr Padlewski4b1ac722015-09-15 21:46:55 +00001264 CGF.CGM.DecorateInstructionWithTBAA(Load, LVal.getTBAAInfo());
Alexey Bataevb8329262015-02-27 06:33:30 +00001265 return Load;
Alexey Bataev452d8e12014-12-15 05:25:25 +00001266}
1267
David Majnemera5b195a2015-02-14 01:35:12 +00001268/// An LValue is a candidate for having its loads and stores be made atomic if
1269/// we are operating under /volatile:ms *and* the LValue itself is volatile and
1270/// performing such an operation can be performed without a libcall.
1271bool CodeGenFunction::LValueIsSuitableForInlineAtomic(LValue LV) {
John McCall7f416cc2015-09-08 08:05:57 +00001272 if (!CGM.getCodeGenOpts().MSVolatile) return false;
David Majnemera5b195a2015-02-14 01:35:12 +00001273 AtomicInfo AI(*this, LV);
1274 bool IsVolatile = LV.isVolatile() || hasVolatileMember(LV.getType());
1275 // An atomic is inline if we don't need to use a libcall.
1276 bool AtomicIsInline = !AI.shouldUseLibcall();
David Majnemerfc80b6e2016-01-22 16:36:44 +00001277 // MSVC doesn't seem to do this for types wider than a pointer.
David Majnemera38c9f12016-05-24 16:09:25 +00001278 if (getContext().getTypeSize(LV.getType()) >
David Majnemerfc80b6e2016-01-22 16:36:44 +00001279 getContext().getTypeSize(getContext().getIntPtrType()))
1280 return false;
David Majnemera38c9f12016-05-24 16:09:25 +00001281 return IsVolatile && AtomicIsInline;
David Majnemera5b195a2015-02-14 01:35:12 +00001282}
1283
1284RValue CodeGenFunction::EmitAtomicLoad(LValue LV, SourceLocation SL,
1285 AggValueSlot Slot) {
1286 llvm::AtomicOrdering AO;
1287 bool IsVolatile = LV.isVolatileQualified();
1288 if (LV.getType()->isAtomicType()) {
JF Bastien92f4ef12016-04-06 17:26:42 +00001289 AO = llvm::AtomicOrdering::SequentiallyConsistent;
David Majnemera5b195a2015-02-14 01:35:12 +00001290 } else {
JF Bastien92f4ef12016-04-06 17:26:42 +00001291 AO = llvm::AtomicOrdering::Acquire;
David Majnemera5b195a2015-02-14 01:35:12 +00001292 IsVolatile = true;
1293 }
1294 return EmitAtomicLoad(LV, SL, AO, IsVolatile, Slot);
1295}
1296
Alexey Bataevb8329262015-02-27 06:33:30 +00001297RValue AtomicInfo::EmitAtomicLoad(AggValueSlot ResultSlot, SourceLocation Loc,
1298 bool AsValue, llvm::AtomicOrdering AO,
1299 bool IsVolatile) {
1300 // Check whether we should use a library call.
1301 if (shouldUseLibcall()) {
John McCall7f416cc2015-09-08 08:05:57 +00001302 Address TempAddr = Address::invalid();
Alexey Bataevb8329262015-02-27 06:33:30 +00001303 if (LVal.isSimple() && !ResultSlot.isIgnored()) {
1304 assert(getEvaluationKind() == TEK_Aggregate);
John McCall7f416cc2015-09-08 08:05:57 +00001305 TempAddr = ResultSlot.getAddress();
Alexey Bataevb8329262015-02-27 06:33:30 +00001306 } else
1307 TempAddr = CreateTempAlloca();
1308
John McCall7f416cc2015-09-08 08:05:57 +00001309 EmitAtomicLoadLibcall(TempAddr.getPointer(), AO, IsVolatile);
Alexey Bataevb8329262015-02-27 06:33:30 +00001310
1311 // Okay, turn that back into the original value or whole atomic (for
1312 // non-simple lvalues) type.
John McCall7f416cc2015-09-08 08:05:57 +00001313 return convertAtomicTempToRValue(TempAddr, ResultSlot, Loc, AsValue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001314 }
1315
1316 // Okay, we're doing this natively.
1317 auto *Load = EmitAtomicLoadOp(AO, IsVolatile);
1318
1319 // If we're ignoring an aggregate return, don't do anything.
1320 if (getEvaluationKind() == TEK_Aggregate && ResultSlot.isIgnored())
John McCall7f416cc2015-09-08 08:05:57 +00001321 return RValue::getAggregate(Address::invalid(), false);
Alexey Bataevb8329262015-02-27 06:33:30 +00001322
1323 // Okay, turn that back into the original value or atomic (for non-simple
1324 // lvalues) type.
1325 return ConvertIntToValueOrAtomic(Load, ResultSlot, Loc, AsValue);
1326}
1327
John McCalla8ec7eb2013-03-07 21:37:17 +00001328/// Emit a load from an l-value of atomic type. Note that the r-value
1329/// we produce is an r-value of the atomic *value* type.
Nick Lewycky2d84e842013-10-02 02:29:49 +00001330RValue CodeGenFunction::EmitAtomicLoad(LValue src, SourceLocation loc,
David Majnemera5b195a2015-02-14 01:35:12 +00001331 llvm::AtomicOrdering AO, bool IsVolatile,
Nick Lewycky2d84e842013-10-02 02:29:49 +00001332 AggValueSlot resultSlot) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001333 AtomicInfo Atomics(*this, src);
1334 return Atomics.EmitAtomicLoad(resultSlot, loc, /*AsValue=*/true, AO,
1335 IsVolatile);
John McCalla8ec7eb2013-03-07 21:37:17 +00001336}
1337
John McCalla8ec7eb2013-03-07 21:37:17 +00001338/// Copy an r-value into memory as part of storing to an atomic type.
1339/// This needs to create a bit-pattern suitable for atomic operations.
Alexey Bataevb57056f2015-01-22 06:17:56 +00001340void AtomicInfo::emitCopyIntoMemory(RValue rvalue) const {
1341 assert(LVal.isSimple());
John McCalla8ec7eb2013-03-07 21:37:17 +00001342 // If we have an r-value, the rvalue should be of the atomic type,
1343 // which means that the caller is responsible for having zeroed
1344 // any padding. Just do an aggregate copy of that type.
1345 if (rvalue.isAggregate()) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001346 CGF.EmitAggregateCopy(getAtomicAddress(),
John McCall7f416cc2015-09-08 08:05:57 +00001347 rvalue.getAggregateAddress(),
John McCalla8ec7eb2013-03-07 21:37:17 +00001348 getAtomicType(),
1349 (rvalue.isVolatileQualified()
John McCall7f416cc2015-09-08 08:05:57 +00001350 || LVal.isVolatileQualified()));
John McCalla8ec7eb2013-03-07 21:37:17 +00001351 return;
1352 }
1353
1354 // Okay, otherwise we're copying stuff.
1355
1356 // Zero out the buffer if necessary.
Alexey Bataevb57056f2015-01-22 06:17:56 +00001357 emitMemSetZeroIfNecessary();
John McCalla8ec7eb2013-03-07 21:37:17 +00001358
1359 // Drill past the padding if present.
Alexey Bataevb57056f2015-01-22 06:17:56 +00001360 LValue TempLVal = projectValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001361
1362 // Okay, store the rvalue in.
1363 if (rvalue.isScalar()) {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001364 CGF.EmitStoreOfScalar(rvalue.getScalarVal(), TempLVal, /*init*/ true);
John McCalla8ec7eb2013-03-07 21:37:17 +00001365 } else {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001366 CGF.EmitStoreOfComplex(rvalue.getComplexVal(), TempLVal, /*init*/ true);
John McCalla8ec7eb2013-03-07 21:37:17 +00001367 }
1368}
1369
1370
1371/// Materialize an r-value into memory for the purposes of storing it
1372/// to an atomic type.
John McCall7f416cc2015-09-08 08:05:57 +00001373Address AtomicInfo::materializeRValue(RValue rvalue) const {
John McCalla8ec7eb2013-03-07 21:37:17 +00001374 // Aggregate r-values are already in memory, and EmitAtomicStore
1375 // requires them to be values of the atomic type.
1376 if (rvalue.isAggregate())
John McCall7f416cc2015-09-08 08:05:57 +00001377 return rvalue.getAggregateAddress();
John McCalla8ec7eb2013-03-07 21:37:17 +00001378
1379 // Otherwise, make a temporary and materialize into it.
John McCall7f416cc2015-09-08 08:05:57 +00001380 LValue TempLV = CGF.MakeAddrLValue(CreateTempAlloca(), getAtomicType());
Alexey Bataevb8329262015-02-27 06:33:30 +00001381 AtomicInfo Atomics(CGF, TempLV);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001382 Atomics.emitCopyIntoMemory(rvalue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001383 return TempLV.getAddress();
John McCalla8ec7eb2013-03-07 21:37:17 +00001384}
1385
Alexey Bataev452d8e12014-12-15 05:25:25 +00001386llvm::Value *AtomicInfo::convertRValueToInt(RValue RVal) const {
1387 // If we've got a scalar value of the right size, try to avoid going
1388 // through memory.
Alexey Bataevb8329262015-02-27 06:33:30 +00001389 if (RVal.isScalar() && (!hasPadding() || !LVal.isSimple())) {
Alexey Bataev452d8e12014-12-15 05:25:25 +00001390 llvm::Value *Value = RVal.getScalarVal();
1391 if (isa<llvm::IntegerType>(Value->getType()))
Alexey Bataevb4505a72015-03-30 05:20:59 +00001392 return CGF.EmitToMemory(Value, ValueTy);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001393 else {
Alexey Bataevb8329262015-02-27 06:33:30 +00001394 llvm::IntegerType *InputIntTy = llvm::IntegerType::get(
1395 CGF.getLLVMContext(),
1396 LVal.isSimple() ? getValueSizeInBits() : getAtomicSizeInBits());
Alexey Bataev452d8e12014-12-15 05:25:25 +00001397 if (isa<llvm::PointerType>(Value->getType()))
1398 return CGF.Builder.CreatePtrToInt(Value, InputIntTy);
1399 else if (llvm::BitCastInst::isBitCastable(Value->getType(), InputIntTy))
1400 return CGF.Builder.CreateBitCast(Value, InputIntTy);
1401 }
1402 }
1403 // Otherwise, we need to go through memory.
1404 // Put the r-value in memory.
John McCall7f416cc2015-09-08 08:05:57 +00001405 Address Addr = materializeRValue(RVal);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001406
1407 // Cast the temporary to the atomic int type and pull a value out.
1408 Addr = emitCastToAtomicIntPointer(Addr);
John McCall7f416cc2015-09-08 08:05:57 +00001409 return CGF.Builder.CreateLoad(Addr);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001410}
1411
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001412std::pair<llvm::Value *, llvm::Value *> AtomicInfo::EmitAtomicCompareExchangeOp(
1413 llvm::Value *ExpectedVal, llvm::Value *DesiredVal,
1414 llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001415 // Do the atomic store.
John McCall7f416cc2015-09-08 08:05:57 +00001416 Address Addr = getAtomicAddressAsAtomicIntPointer();
1417 auto *Inst = CGF.Builder.CreateAtomicCmpXchg(Addr.getPointer(),
1418 ExpectedVal, DesiredVal,
Alexey Bataevb4505a72015-03-30 05:20:59 +00001419 Success, Failure);
Alexey Bataevb8329262015-02-27 06:33:30 +00001420 // Other decoration.
1421 Inst->setVolatile(LVal.isVolatileQualified());
1422 Inst->setWeak(IsWeak);
1423
1424 // Okay, turn that back into the original value type.
1425 auto *PreviousVal = CGF.Builder.CreateExtractValue(Inst, /*Idxs=*/0);
1426 auto *SuccessFailureVal = CGF.Builder.CreateExtractValue(Inst, /*Idxs=*/1);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001427 return std::make_pair(PreviousVal, SuccessFailureVal);
Alexey Bataevb8329262015-02-27 06:33:30 +00001428}
1429
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001430llvm::Value *
1431AtomicInfo::EmitAtomicCompareExchangeLibcall(llvm::Value *ExpectedAddr,
1432 llvm::Value *DesiredAddr,
Alexey Bataevb8329262015-02-27 06:33:30 +00001433 llvm::AtomicOrdering Success,
1434 llvm::AtomicOrdering Failure) {
1435 // bool __atomic_compare_exchange(size_t size, void *obj, void *expected,
1436 // void *desired, int success, int failure);
1437 CallArgList Args;
1438 Args.add(RValue::get(getAtomicSizeValue()), CGF.getContext().getSizeType());
John McCall7f416cc2015-09-08 08:05:57 +00001439 Args.add(RValue::get(CGF.EmitCastToVoidPtr(getAtomicPointer())),
Alexey Bataevb8329262015-02-27 06:33:30 +00001440 CGF.getContext().VoidPtrTy);
1441 Args.add(RValue::get(CGF.EmitCastToVoidPtr(ExpectedAddr)),
1442 CGF.getContext().VoidPtrTy);
1443 Args.add(RValue::get(CGF.EmitCastToVoidPtr(DesiredAddr)),
1444 CGF.getContext().VoidPtrTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001445 Args.add(RValue::get(
1446 llvm::ConstantInt::get(CGF.IntTy, (int)llvm::toCABI(Success))),
Alexey Bataevb8329262015-02-27 06:33:30 +00001447 CGF.getContext().IntTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001448 Args.add(RValue::get(
1449 llvm::ConstantInt::get(CGF.IntTy, (int)llvm::toCABI(Failure))),
Alexey Bataevb8329262015-02-27 06:33:30 +00001450 CGF.getContext().IntTy);
1451 auto SuccessFailureRVal = emitAtomicLibcall(CGF, "__atomic_compare_exchange",
1452 CGF.getContext().BoolTy, Args);
Alexey Bataevb4505a72015-03-30 05:20:59 +00001453
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001454 return SuccessFailureRVal.getScalarVal();
Alexey Bataevb8329262015-02-27 06:33:30 +00001455}
1456
Alexey Bataevb4505a72015-03-30 05:20:59 +00001457std::pair<RValue, llvm::Value *> AtomicInfo::EmitAtomicCompareExchange(
Alexey Bataevb8329262015-02-27 06:33:30 +00001458 RValue Expected, RValue Desired, llvm::AtomicOrdering Success,
1459 llvm::AtomicOrdering Failure, bool IsWeak) {
JF Bastiendd11ee72016-04-06 23:37:36 +00001460 if (isStrongerThan(Failure, Success))
1461 // Don't assert on undefined behavior "failure argument shall be no stronger
1462 // than the success argument".
Alexey Bataevb8329262015-02-27 06:33:30 +00001463 Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(Success);
1464
1465 // Check whether we should use a library call.
1466 if (shouldUseLibcall()) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001467 // Produce a source address.
John McCall7f416cc2015-09-08 08:05:57 +00001468 Address ExpectedAddr = materializeRValue(Expected);
1469 Address DesiredAddr = materializeRValue(Desired);
1470 auto *Res = EmitAtomicCompareExchangeLibcall(ExpectedAddr.getPointer(),
1471 DesiredAddr.getPointer(),
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001472 Success, Failure);
1473 return std::make_pair(
John McCall7f416cc2015-09-08 08:05:57 +00001474 convertAtomicTempToRValue(ExpectedAddr, AggValueSlot::ignored(),
1475 SourceLocation(), /*AsValue=*/false),
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001476 Res);
Alexey Bataevb8329262015-02-27 06:33:30 +00001477 }
1478
1479 // If we've got a scalar value of the right size, try to avoid going
1480 // through memory.
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001481 auto *ExpectedVal = convertRValueToInt(Expected);
1482 auto *DesiredVal = convertRValueToInt(Desired);
1483 auto Res = EmitAtomicCompareExchangeOp(ExpectedVal, DesiredVal, Success,
1484 Failure, IsWeak);
1485 return std::make_pair(
1486 ConvertIntToValueOrAtomic(Res.first, AggValueSlot::ignored(),
1487 SourceLocation(), /*AsValue=*/false),
1488 Res.second);
1489}
1490
1491static void
1492EmitAtomicUpdateValue(CodeGenFunction &CGF, AtomicInfo &Atomics, RValue OldRVal,
1493 const llvm::function_ref<RValue(RValue)> &UpdateOp,
John McCall7f416cc2015-09-08 08:05:57 +00001494 Address DesiredAddr) {
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001495 RValue UpRVal;
1496 LValue AtomicLVal = Atomics.getAtomicLValue();
1497 LValue DesiredLVal;
1498 if (AtomicLVal.isSimple()) {
1499 UpRVal = OldRVal;
John McCall7f416cc2015-09-08 08:05:57 +00001500 DesiredLVal = CGF.MakeAddrLValue(DesiredAddr, AtomicLVal.getType());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001501 } else {
1502 // Build new lvalue for temp address
John McCall7f416cc2015-09-08 08:05:57 +00001503 Address Ptr = Atomics.materializeRValue(OldRVal);
1504 LValue UpdateLVal;
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001505 if (AtomicLVal.isBitField()) {
1506 UpdateLVal =
1507 LValue::MakeBitfield(Ptr, AtomicLVal.getBitFieldInfo(),
John McCall7f416cc2015-09-08 08:05:57 +00001508 AtomicLVal.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +00001509 AtomicLVal.getBaseInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001510 DesiredLVal =
1511 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(),
John McCall7f416cc2015-09-08 08:05:57 +00001512 AtomicLVal.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +00001513 AtomicLVal.getBaseInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001514 } else if (AtomicLVal.isVectorElt()) {
1515 UpdateLVal = LValue::MakeVectorElt(Ptr, AtomicLVal.getVectorIdx(),
1516 AtomicLVal.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +00001517 AtomicLVal.getBaseInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001518 DesiredLVal = LValue::MakeVectorElt(
1519 DesiredAddr, AtomicLVal.getVectorIdx(), AtomicLVal.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +00001520 AtomicLVal.getBaseInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001521 } else {
1522 assert(AtomicLVal.isExtVectorElt());
1523 UpdateLVal = LValue::MakeExtVectorElt(Ptr, AtomicLVal.getExtVectorElts(),
1524 AtomicLVal.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +00001525 AtomicLVal.getBaseInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001526 DesiredLVal = LValue::MakeExtVectorElt(
1527 DesiredAddr, AtomicLVal.getExtVectorElts(), AtomicLVal.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +00001528 AtomicLVal.getBaseInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001529 }
1530 UpdateLVal.setTBAAInfo(AtomicLVal.getTBAAInfo());
1531 DesiredLVal.setTBAAInfo(AtomicLVal.getTBAAInfo());
1532 UpRVal = CGF.EmitLoadOfLValue(UpdateLVal, SourceLocation());
1533 }
1534 // Store new value in the corresponding memory area
1535 RValue NewRVal = UpdateOp(UpRVal);
1536 if (NewRVal.isScalar()) {
1537 CGF.EmitStoreThroughLValue(NewRVal, DesiredLVal);
1538 } else {
1539 assert(NewRVal.isComplex());
1540 CGF.EmitStoreOfComplex(NewRVal.getComplexVal(), DesiredLVal,
1541 /*isInit=*/false);
1542 }
1543}
1544
1545void AtomicInfo::EmitAtomicUpdateLibcall(
1546 llvm::AtomicOrdering AO, const llvm::function_ref<RValue(RValue)> &UpdateOp,
1547 bool IsVolatile) {
1548 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1549
John McCall7f416cc2015-09-08 08:05:57 +00001550 Address ExpectedAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001551
John McCall7f416cc2015-09-08 08:05:57 +00001552 EmitAtomicLoadLibcall(ExpectedAddr.getPointer(), AO, IsVolatile);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001553 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1554 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1555 CGF.EmitBlock(ContBB);
John McCall7f416cc2015-09-08 08:05:57 +00001556 Address DesiredAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001557 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001558 requiresMemSetZero(getAtomicAddress().getElementType())) {
1559 auto *OldVal = CGF.Builder.CreateLoad(ExpectedAddr);
1560 CGF.Builder.CreateStore(OldVal, DesiredAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001561 }
John McCall7f416cc2015-09-08 08:05:57 +00001562 auto OldRVal = convertAtomicTempToRValue(ExpectedAddr,
1563 AggValueSlot::ignored(),
1564 SourceLocation(), /*AsValue=*/false);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001565 EmitAtomicUpdateValue(CGF, *this, OldRVal, UpdateOp, DesiredAddr);
1566 auto *Res =
John McCall7f416cc2015-09-08 08:05:57 +00001567 EmitAtomicCompareExchangeLibcall(ExpectedAddr.getPointer(),
1568 DesiredAddr.getPointer(),
1569 AO, Failure);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001570 CGF.Builder.CreateCondBr(Res, ExitBB, ContBB);
1571 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1572}
1573
1574void AtomicInfo::EmitAtomicUpdateOp(
1575 llvm::AtomicOrdering AO, const llvm::function_ref<RValue(RValue)> &UpdateOp,
1576 bool IsVolatile) {
1577 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1578
1579 // Do the atomic load.
1580 auto *OldVal = EmitAtomicLoadOp(AO, IsVolatile);
1581 // For non-simple lvalues perform compare-and-swap procedure.
1582 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1583 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1584 auto *CurBB = CGF.Builder.GetInsertBlock();
1585 CGF.EmitBlock(ContBB);
1586 llvm::PHINode *PHI = CGF.Builder.CreatePHI(OldVal->getType(),
1587 /*NumReservedValues=*/2);
1588 PHI->addIncoming(OldVal, CurBB);
John McCall7f416cc2015-09-08 08:05:57 +00001589 Address NewAtomicAddr = CreateTempAlloca();
1590 Address NewAtomicIntAddr = emitCastToAtomicIntPointer(NewAtomicAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001591 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001592 requiresMemSetZero(getAtomicAddress().getElementType())) {
1593 CGF.Builder.CreateStore(PHI, NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001594 }
1595 auto OldRVal = ConvertIntToValueOrAtomic(PHI, AggValueSlot::ignored(),
1596 SourceLocation(), /*AsValue=*/false);
1597 EmitAtomicUpdateValue(CGF, *this, OldRVal, UpdateOp, NewAtomicAddr);
John McCall7f416cc2015-09-08 08:05:57 +00001598 auto *DesiredVal = CGF.Builder.CreateLoad(NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001599 // Try to write new value using cmpxchg operation
1600 auto Res = EmitAtomicCompareExchangeOp(PHI, DesiredVal, AO, Failure);
1601 PHI->addIncoming(Res.first, CGF.Builder.GetInsertBlock());
1602 CGF.Builder.CreateCondBr(Res.second, ExitBB, ContBB);
1603 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1604}
1605
1606static void EmitAtomicUpdateValue(CodeGenFunction &CGF, AtomicInfo &Atomics,
John McCall7f416cc2015-09-08 08:05:57 +00001607 RValue UpdateRVal, Address DesiredAddr) {
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001608 LValue AtomicLVal = Atomics.getAtomicLValue();
1609 LValue DesiredLVal;
1610 // Build new lvalue for temp address
1611 if (AtomicLVal.isBitField()) {
1612 DesiredLVal =
1613 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(),
John McCall7f416cc2015-09-08 08:05:57 +00001614 AtomicLVal.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +00001615 AtomicLVal.getBaseInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001616 } else if (AtomicLVal.isVectorElt()) {
1617 DesiredLVal =
1618 LValue::MakeVectorElt(DesiredAddr, AtomicLVal.getVectorIdx(),
John McCall7f416cc2015-09-08 08:05:57 +00001619 AtomicLVal.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +00001620 AtomicLVal.getBaseInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001621 } else {
1622 assert(AtomicLVal.isExtVectorElt());
1623 DesiredLVal = LValue::MakeExtVectorElt(
1624 DesiredAddr, AtomicLVal.getExtVectorElts(), AtomicLVal.getType(),
Krzysztof Parzyszek8f248232017-05-18 17:07:11 +00001625 AtomicLVal.getBaseInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001626 }
1627 DesiredLVal.setTBAAInfo(AtomicLVal.getTBAAInfo());
1628 // Store new value in the corresponding memory area
1629 assert(UpdateRVal.isScalar());
1630 CGF.EmitStoreThroughLValue(UpdateRVal, DesiredLVal);
1631}
1632
1633void AtomicInfo::EmitAtomicUpdateLibcall(llvm::AtomicOrdering AO,
1634 RValue UpdateRVal, bool IsVolatile) {
1635 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1636
John McCall7f416cc2015-09-08 08:05:57 +00001637 Address ExpectedAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001638
John McCall7f416cc2015-09-08 08:05:57 +00001639 EmitAtomicLoadLibcall(ExpectedAddr.getPointer(), AO, IsVolatile);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001640 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1641 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1642 CGF.EmitBlock(ContBB);
John McCall7f416cc2015-09-08 08:05:57 +00001643 Address DesiredAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001644 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001645 requiresMemSetZero(getAtomicAddress().getElementType())) {
1646 auto *OldVal = CGF.Builder.CreateLoad(ExpectedAddr);
1647 CGF.Builder.CreateStore(OldVal, DesiredAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001648 }
1649 EmitAtomicUpdateValue(CGF, *this, UpdateRVal, DesiredAddr);
1650 auto *Res =
John McCall7f416cc2015-09-08 08:05:57 +00001651 EmitAtomicCompareExchangeLibcall(ExpectedAddr.getPointer(),
1652 DesiredAddr.getPointer(),
1653 AO, Failure);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001654 CGF.Builder.CreateCondBr(Res, ExitBB, ContBB);
1655 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1656}
1657
1658void AtomicInfo::EmitAtomicUpdateOp(llvm::AtomicOrdering AO, RValue UpdateRVal,
1659 bool IsVolatile) {
1660 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1661
1662 // Do the atomic load.
1663 auto *OldVal = EmitAtomicLoadOp(AO, IsVolatile);
1664 // For non-simple lvalues perform compare-and-swap procedure.
1665 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1666 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1667 auto *CurBB = CGF.Builder.GetInsertBlock();
1668 CGF.EmitBlock(ContBB);
1669 llvm::PHINode *PHI = CGF.Builder.CreatePHI(OldVal->getType(),
1670 /*NumReservedValues=*/2);
1671 PHI->addIncoming(OldVal, CurBB);
John McCall7f416cc2015-09-08 08:05:57 +00001672 Address NewAtomicAddr = CreateTempAlloca();
1673 Address NewAtomicIntAddr = emitCastToAtomicIntPointer(NewAtomicAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001674 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001675 requiresMemSetZero(getAtomicAddress().getElementType())) {
1676 CGF.Builder.CreateStore(PHI, NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001677 }
1678 EmitAtomicUpdateValue(CGF, *this, UpdateRVal, NewAtomicAddr);
John McCall7f416cc2015-09-08 08:05:57 +00001679 auto *DesiredVal = CGF.Builder.CreateLoad(NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001680 // Try to write new value using cmpxchg operation
1681 auto Res = EmitAtomicCompareExchangeOp(PHI, DesiredVal, AO, Failure);
1682 PHI->addIncoming(Res.first, CGF.Builder.GetInsertBlock());
1683 CGF.Builder.CreateCondBr(Res.second, ExitBB, ContBB);
1684 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1685}
1686
1687void AtomicInfo::EmitAtomicUpdate(
1688 llvm::AtomicOrdering AO, const llvm::function_ref<RValue(RValue)> &UpdateOp,
1689 bool IsVolatile) {
1690 if (shouldUseLibcall()) {
1691 EmitAtomicUpdateLibcall(AO, UpdateOp, IsVolatile);
1692 } else {
1693 EmitAtomicUpdateOp(AO, UpdateOp, IsVolatile);
1694 }
1695}
1696
1697void AtomicInfo::EmitAtomicUpdate(llvm::AtomicOrdering AO, RValue UpdateRVal,
1698 bool IsVolatile) {
1699 if (shouldUseLibcall()) {
1700 EmitAtomicUpdateLibcall(AO, UpdateRVal, IsVolatile);
1701 } else {
1702 EmitAtomicUpdateOp(AO, UpdateRVal, IsVolatile);
1703 }
Alexey Bataevb8329262015-02-27 06:33:30 +00001704}
1705
David Majnemera5b195a2015-02-14 01:35:12 +00001706void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue lvalue,
1707 bool isInit) {
1708 bool IsVolatile = lvalue.isVolatileQualified();
1709 llvm::AtomicOrdering AO;
1710 if (lvalue.getType()->isAtomicType()) {
JF Bastien92f4ef12016-04-06 17:26:42 +00001711 AO = llvm::AtomicOrdering::SequentiallyConsistent;
David Majnemera5b195a2015-02-14 01:35:12 +00001712 } else {
JF Bastien92f4ef12016-04-06 17:26:42 +00001713 AO = llvm::AtomicOrdering::Release;
David Majnemera5b195a2015-02-14 01:35:12 +00001714 IsVolatile = true;
1715 }
1716 return EmitAtomicStore(rvalue, lvalue, AO, IsVolatile, isInit);
1717}
1718
John McCalla8ec7eb2013-03-07 21:37:17 +00001719/// Emit a store to an l-value of atomic type.
1720///
1721/// Note that the r-value is expected to be an r-value *of the atomic
1722/// type*; this means that for aggregate r-values, it should include
1723/// storage for any padding that was necessary.
David Majnemera5b195a2015-02-14 01:35:12 +00001724void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue dest,
1725 llvm::AtomicOrdering AO, bool IsVolatile,
1726 bool isInit) {
John McCalla8ec7eb2013-03-07 21:37:17 +00001727 // If this is an aggregate r-value, it should agree in type except
1728 // maybe for address-space qualification.
1729 assert(!rvalue.isAggregate() ||
John McCall7f416cc2015-09-08 08:05:57 +00001730 rvalue.getAggregateAddress().getElementType()
1731 == dest.getAddress().getElementType());
John McCalla8ec7eb2013-03-07 21:37:17 +00001732
1733 AtomicInfo atomics(*this, dest);
Alexey Bataevb8329262015-02-27 06:33:30 +00001734 LValue LVal = atomics.getAtomicLValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001735
1736 // If this is an initialization, just put the value there normally.
Alexey Bataevb8329262015-02-27 06:33:30 +00001737 if (LVal.isSimple()) {
1738 if (isInit) {
1739 atomics.emitCopyIntoMemory(rvalue);
1740 return;
1741 }
1742
1743 // Check whether we should use a library call.
1744 if (atomics.shouldUseLibcall()) {
1745 // Produce a source address.
John McCall7f416cc2015-09-08 08:05:57 +00001746 Address srcAddr = atomics.materializeRValue(rvalue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001747
1748 // void __atomic_store(size_t size, void *mem, void *val, int order)
1749 CallArgList args;
1750 args.add(RValue::get(atomics.getAtomicSizeValue()),
1751 getContext().getSizeType());
John McCall7f416cc2015-09-08 08:05:57 +00001752 args.add(RValue::get(EmitCastToVoidPtr(atomics.getAtomicPointer())),
Alexey Bataevb8329262015-02-27 06:33:30 +00001753 getContext().VoidPtrTy);
John McCall7f416cc2015-09-08 08:05:57 +00001754 args.add(RValue::get(EmitCastToVoidPtr(srcAddr.getPointer())),
1755 getContext().VoidPtrTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001756 args.add(
1757 RValue::get(llvm::ConstantInt::get(IntTy, (int)llvm::toCABI(AO))),
1758 getContext().IntTy);
Alexey Bataevb8329262015-02-27 06:33:30 +00001759 emitAtomicLibcall(*this, "__atomic_store", getContext().VoidTy, args);
1760 return;
1761 }
1762
1763 // Okay, we're doing this natively.
1764 llvm::Value *intValue = atomics.convertRValueToInt(rvalue);
1765
1766 // Do the atomic store.
John McCall7f416cc2015-09-08 08:05:57 +00001767 Address addr =
Alexey Bataevb8329262015-02-27 06:33:30 +00001768 atomics.emitCastToAtomicIntPointer(atomics.getAtomicAddress());
1769 intValue = Builder.CreateIntCast(
John McCall7f416cc2015-09-08 08:05:57 +00001770 intValue, addr.getElementType(), /*isSigned=*/false);
Alexey Bataevb8329262015-02-27 06:33:30 +00001771 llvm::StoreInst *store = Builder.CreateStore(intValue, addr);
1772
1773 // Initializations don't need to be atomic.
1774 if (!isInit)
1775 store->setAtomic(AO);
1776
1777 // Other decoration.
Alexey Bataevb8329262015-02-27 06:33:30 +00001778 if (IsVolatile)
1779 store->setVolatile(true);
1780 if (dest.getTBAAInfo())
Piotr Padlewski4b1ac722015-09-15 21:46:55 +00001781 CGM.DecorateInstructionWithTBAA(store, dest.getTBAAInfo());
John McCalla8ec7eb2013-03-07 21:37:17 +00001782 return;
1783 }
1784
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001785 // Emit simple atomic update operation.
1786 atomics.EmitAtomicUpdate(AO, rvalue, IsVolatile);
John McCalla8ec7eb2013-03-07 21:37:17 +00001787}
1788
Alexey Bataev452d8e12014-12-15 05:25:25 +00001789/// Emit a compare-and-exchange op for atomic type.
1790///
Alexey Bataevb4505a72015-03-30 05:20:59 +00001791std::pair<RValue, llvm::Value *> CodeGenFunction::EmitAtomicCompareExchange(
Alexey Bataev452d8e12014-12-15 05:25:25 +00001792 LValue Obj, RValue Expected, RValue Desired, SourceLocation Loc,
1793 llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak,
1794 AggValueSlot Slot) {
1795 // If this is an aggregate r-value, it should agree in type except
1796 // maybe for address-space qualification.
1797 assert(!Expected.isAggregate() ||
John McCall7f416cc2015-09-08 08:05:57 +00001798 Expected.getAggregateAddress().getElementType() ==
1799 Obj.getAddress().getElementType());
Alexey Bataev452d8e12014-12-15 05:25:25 +00001800 assert(!Desired.isAggregate() ||
John McCall7f416cc2015-09-08 08:05:57 +00001801 Desired.getAggregateAddress().getElementType() ==
1802 Obj.getAddress().getElementType());
Alexey Bataev452d8e12014-12-15 05:25:25 +00001803 AtomicInfo Atomics(*this, Obj);
1804
Alexey Bataevb4505a72015-03-30 05:20:59 +00001805 return Atomics.EmitAtomicCompareExchange(Expected, Desired, Success, Failure,
1806 IsWeak);
1807}
1808
1809void CodeGenFunction::EmitAtomicUpdate(
1810 LValue LVal, llvm::AtomicOrdering AO,
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001811 const llvm::function_ref<RValue(RValue)> &UpdateOp, bool IsVolatile) {
Alexey Bataevb4505a72015-03-30 05:20:59 +00001812 AtomicInfo Atomics(*this, LVal);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001813 Atomics.EmitAtomicUpdate(AO, UpdateOp, IsVolatile);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001814}
1815
John McCalla8ec7eb2013-03-07 21:37:17 +00001816void CodeGenFunction::EmitAtomicInit(Expr *init, LValue dest) {
1817 AtomicInfo atomics(*this, dest);
1818
1819 switch (atomics.getEvaluationKind()) {
1820 case TEK_Scalar: {
1821 llvm::Value *value = EmitScalarExpr(init);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001822 atomics.emitCopyIntoMemory(RValue::get(value));
John McCalla8ec7eb2013-03-07 21:37:17 +00001823 return;
1824 }
1825
1826 case TEK_Complex: {
1827 ComplexPairTy value = EmitComplexExpr(init);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001828 atomics.emitCopyIntoMemory(RValue::getComplex(value));
John McCalla8ec7eb2013-03-07 21:37:17 +00001829 return;
1830 }
1831
1832 case TEK_Aggregate: {
Eli Friedmanbe4504d2013-07-11 01:32:21 +00001833 // Fix up the destination if the initializer isn't an expression
1834 // of atomic type.
1835 bool Zeroed = false;
John McCalla8ec7eb2013-03-07 21:37:17 +00001836 if (!init->getType()->isAtomicType()) {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001837 Zeroed = atomics.emitMemSetZeroIfNecessary();
1838 dest = atomics.projectValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001839 }
1840
1841 // Evaluate the expression directly into the destination.
1842 AggValueSlot slot = AggValueSlot::forLValue(dest,
1843 AggValueSlot::IsNotDestructed,
1844 AggValueSlot::DoesNotNeedGCBarriers,
Eli Friedmanbe4504d2013-07-11 01:32:21 +00001845 AggValueSlot::IsNotAliased,
1846 Zeroed ? AggValueSlot::IsZeroed :
1847 AggValueSlot::IsNotZeroed);
1848
John McCalla8ec7eb2013-03-07 21:37:17 +00001849 EmitAggExpr(init, slot);
1850 return;
1851 }
1852 }
1853 llvm_unreachable("bad evaluation kind");
1854}