blob: aa5a32dd5213e4d99d8769187d12d468b13abe83 [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
14#include "CodeGenFunction.h"
15#include "CGCall.h"
Alexey Bataevb57056f2015-01-22 06:17:56 +000016#include "CGRecordLayout.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"
Ed Schoutenc7e82bd2013-05-31 19:27:59 +000020#include "llvm/ADT/StringExtras.h"
John McCallfc207f22013-03-07 21:37:12 +000021#include "llvm/IR/DataLayout.h"
22#include "llvm/IR/Intrinsics.h"
John McCalla8ec7eb2013-03-07 21:37:17 +000023#include "llvm/IR/Operator.h"
John McCallfc207f22013-03-07 21:37:12 +000024
25using namespace clang;
26using namespace CodeGen;
27
John McCalla8ec7eb2013-03-07 21:37:17 +000028namespace {
29 class AtomicInfo {
30 CodeGenFunction &CGF;
31 QualType AtomicTy;
32 QualType ValueTy;
33 uint64_t AtomicSizeInBits;
34 uint64_t ValueSizeInBits;
35 CharUnits AtomicAlign;
36 CharUnits ValueAlign;
37 CharUnits LValueAlign;
38 TypeEvaluationKind EvaluationKind;
39 bool UseLibcall;
Alexey Bataevb57056f2015-01-22 06:17:56 +000040 LValue LVal;
41 CGBitFieldInfo BFI;
John McCalla8ec7eb2013-03-07 21:37:17 +000042 public:
Alexey Bataevb57056f2015-01-22 06:17:56 +000043 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue)
44 : CGF(CGF), AtomicSizeInBits(0), ValueSizeInBits(0),
45 EvaluationKind(TEK_Scalar), UseLibcall(true) {
46 assert(!lvalue.isGlobalReg());
John McCalla8ec7eb2013-03-07 21:37:17 +000047 ASTContext &C = CGF.getContext();
Alexey Bataevb57056f2015-01-22 06:17:56 +000048 if (lvalue.isSimple()) {
49 AtomicTy = lvalue.getType();
50 if (auto *ATy = AtomicTy->getAs<AtomicType>())
51 ValueTy = ATy->getValueType();
52 else
53 ValueTy = AtomicTy;
54 EvaluationKind = CGF.getEvaluationKind(ValueTy);
John McCalla8ec7eb2013-03-07 21:37:17 +000055
Alexey Bataevb57056f2015-01-22 06:17:56 +000056 uint64_t ValueAlignInBits;
57 uint64_t AtomicAlignInBits;
58 TypeInfo ValueTI = C.getTypeInfo(ValueTy);
59 ValueSizeInBits = ValueTI.Width;
60 ValueAlignInBits = ValueTI.Align;
John McCalla8ec7eb2013-03-07 21:37:17 +000061
Alexey Bataevb57056f2015-01-22 06:17:56 +000062 TypeInfo AtomicTI = C.getTypeInfo(AtomicTy);
63 AtomicSizeInBits = AtomicTI.Width;
64 AtomicAlignInBits = AtomicTI.Align;
John McCalla8ec7eb2013-03-07 21:37:17 +000065
Alexey Bataevb57056f2015-01-22 06:17:56 +000066 assert(ValueSizeInBits <= AtomicSizeInBits);
67 assert(ValueAlignInBits <= AtomicAlignInBits);
John McCalla8ec7eb2013-03-07 21:37:17 +000068
Alexey Bataevb57056f2015-01-22 06:17:56 +000069 AtomicAlign = C.toCharUnitsFromBits(AtomicAlignInBits);
70 ValueAlign = C.toCharUnitsFromBits(ValueAlignInBits);
71 if (lvalue.getAlignment().isZero())
72 lvalue.setAlignment(AtomicAlign);
John McCalla8ec7eb2013-03-07 21:37:17 +000073
Alexey Bataevb57056f2015-01-22 06:17:56 +000074 LVal = lvalue;
75 } else if (lvalue.isBitField()) {
Alexey Bataevb8329262015-02-27 06:33:30 +000076 ValueTy = lvalue.getType();
77 ValueSizeInBits = C.getTypeSize(ValueTy);
Alexey Bataevb57056f2015-01-22 06:17:56 +000078 auto &OrigBFI = lvalue.getBitFieldInfo();
79 auto Offset = OrigBFI.Offset % C.toBits(lvalue.getAlignment());
80 AtomicSizeInBits = C.toBits(
81 C.toCharUnitsFromBits(Offset + OrigBFI.Size + C.getCharWidth() - 1)
Rui Ueyama83aa9792016-01-14 21:00:27 +000082 .alignTo(lvalue.getAlignment()));
John McCall7f416cc2015-09-08 08:05:57 +000083 auto VoidPtrAddr = CGF.EmitCastToVoidPtr(lvalue.getBitFieldPointer());
Alexey Bataevb57056f2015-01-22 06:17:56 +000084 auto OffsetInChars =
85 (C.toCharUnitsFromBits(OrigBFI.Offset) / lvalue.getAlignment()) *
86 lvalue.getAlignment();
87 VoidPtrAddr = CGF.Builder.CreateConstGEP1_64(
88 VoidPtrAddr, OffsetInChars.getQuantity());
89 auto Addr = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
90 VoidPtrAddr,
91 CGF.Builder.getIntNTy(AtomicSizeInBits)->getPointerTo(),
92 "atomic_bitfield_base");
93 BFI = OrigBFI;
94 BFI.Offset = Offset;
95 BFI.StorageSize = AtomicSizeInBits;
Ulrich Weigand03ce2a12015-07-10 17:30:00 +000096 BFI.StorageOffset += OffsetInChars;
John McCall7f416cc2015-09-08 08:05:57 +000097 LVal = LValue::MakeBitfield(Address(Addr, lvalue.getAlignment()),
98 BFI, lvalue.getType(),
99 lvalue.getAlignmentSource());
Alexey Bataevb8329262015-02-27 06:33:30 +0000100 LVal.setTBAAInfo(lvalue.getTBAAInfo());
101 AtomicTy = C.getIntTypeForBitwidth(AtomicSizeInBits, OrigBFI.IsSigned);
102 if (AtomicTy.isNull()) {
103 llvm::APInt Size(
104 /*numBits=*/32,
105 C.toCharUnitsFromBits(AtomicSizeInBits).getQuantity());
106 AtomicTy = C.getConstantArrayType(C.CharTy, Size, ArrayType::Normal,
107 /*IndexTypeQuals=*/0);
108 }
109 AtomicAlign = ValueAlign = lvalue.getAlignment();
Alexey Bataevb57056f2015-01-22 06:17:56 +0000110 } else if (lvalue.isVectorElt()) {
Alexey Bataevb8329262015-02-27 06:33:30 +0000111 ValueTy = lvalue.getType()->getAs<VectorType>()->getElementType();
112 ValueSizeInBits = C.getTypeSize(ValueTy);
113 AtomicTy = lvalue.getType();
114 AtomicSizeInBits = C.getTypeSize(AtomicTy);
115 AtomicAlign = ValueAlign = lvalue.getAlignment();
Alexey Bataevb57056f2015-01-22 06:17:56 +0000116 LVal = lvalue;
117 } else {
118 assert(lvalue.isExtVectorElt());
Alexey Bataevb8329262015-02-27 06:33:30 +0000119 ValueTy = lvalue.getType();
120 ValueSizeInBits = C.getTypeSize(ValueTy);
121 AtomicTy = ValueTy = CGF.getContext().getExtVectorType(
John McCall7f416cc2015-09-08 08:05:57 +0000122 lvalue.getType(), lvalue.getExtVectorAddress()
123 .getElementType()->getVectorNumElements());
Alexey Bataevb8329262015-02-27 06:33:30 +0000124 AtomicSizeInBits = C.getTypeSize(AtomicTy);
125 AtomicAlign = ValueAlign = lvalue.getAlignment();
Alexey Bataevb57056f2015-01-22 06:17:56 +0000126 LVal = lvalue;
127 }
Alexey Bataev452d8e12014-12-15 05:25:25 +0000128 UseLibcall = !C.getTargetInfo().hasBuiltinAtomic(
129 AtomicSizeInBits, C.toBits(lvalue.getAlignment()));
John McCalla8ec7eb2013-03-07 21:37:17 +0000130 }
131
132 QualType getAtomicType() const { return AtomicTy; }
133 QualType getValueType() const { return ValueTy; }
134 CharUnits getAtomicAlignment() const { return AtomicAlign; }
135 CharUnits getValueAlignment() const { return ValueAlign; }
136 uint64_t getAtomicSizeInBits() const { return AtomicSizeInBits; }
Alexey Bataev452d8e12014-12-15 05:25:25 +0000137 uint64_t getValueSizeInBits() const { return ValueSizeInBits; }
John McCalla8ec7eb2013-03-07 21:37:17 +0000138 TypeEvaluationKind getEvaluationKind() const { return EvaluationKind; }
139 bool shouldUseLibcall() const { return UseLibcall; }
Alexey Bataevb57056f2015-01-22 06:17:56 +0000140 const LValue &getAtomicLValue() const { return LVal; }
John McCall7f416cc2015-09-08 08:05:57 +0000141 llvm::Value *getAtomicPointer() const {
Alexey Bataevb8329262015-02-27 06:33:30 +0000142 if (LVal.isSimple())
John McCall7f416cc2015-09-08 08:05:57 +0000143 return LVal.getPointer();
Alexey Bataevb8329262015-02-27 06:33:30 +0000144 else if (LVal.isBitField())
John McCall7f416cc2015-09-08 08:05:57 +0000145 return LVal.getBitFieldPointer();
Alexey Bataevb8329262015-02-27 06:33:30 +0000146 else if (LVal.isVectorElt())
John McCall7f416cc2015-09-08 08:05:57 +0000147 return LVal.getVectorPointer();
Alexey Bataevb8329262015-02-27 06:33:30 +0000148 assert(LVal.isExtVectorElt());
John McCall7f416cc2015-09-08 08:05:57 +0000149 return LVal.getExtVectorPointer();
150 }
151 Address getAtomicAddress() const {
152 return Address(getAtomicPointer(), getAtomicAlignment());
153 }
154
155 Address getAtomicAddressAsAtomicIntPointer() const {
156 return emitCastToAtomicIntPointer(getAtomicAddress());
Alexey Bataevb8329262015-02-27 06:33:30 +0000157 }
John McCalla8ec7eb2013-03-07 21:37:17 +0000158
159 /// Is the atomic size larger than the underlying value type?
160 ///
161 /// Note that the absence of padding does not mean that atomic
162 /// objects are completely interchangeable with non-atomic
163 /// objects: we might have promoted the alignment of a type
164 /// without making it bigger.
165 bool hasPadding() const {
166 return (ValueSizeInBits != AtomicSizeInBits);
167 }
168
Alexey Bataevb57056f2015-01-22 06:17:56 +0000169 bool emitMemSetZeroIfNecessary() const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000170
171 llvm::Value *getAtomicSizeValue() const {
172 CharUnits size = CGF.getContext().toCharUnitsFromBits(AtomicSizeInBits);
173 return CGF.CGM.getSize(size);
174 }
175
Tim Northovercc2a6e02015-11-09 19:56:35 +0000176 /// Cast the given pointer to an integer pointer suitable for atomic
177 /// operations if the source.
178 Address emitCastToAtomicIntPointer(Address Addr) const;
179
180 /// If Addr is compatible with the iN that will be used for an atomic
181 /// operation, bitcast it. Otherwise, create a temporary that is suitable
182 /// and copy the value across.
183 Address convertToAtomicIntPointer(Address Addr) const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000184
185 /// Turn an atomic-layout object into an r-value.
John McCall7f416cc2015-09-08 08:05:57 +0000186 RValue convertAtomicTempToRValue(Address addr, AggValueSlot resultSlot,
187 SourceLocation loc, bool AsValue) const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000188
Alexey Bataev452d8e12014-12-15 05:25:25 +0000189 /// \brief Converts a rvalue to integer value.
190 llvm::Value *convertRValueToInt(RValue RVal) const;
191
Alexey Bataevb8329262015-02-27 06:33:30 +0000192 RValue ConvertIntToValueOrAtomic(llvm::Value *IntVal,
193 AggValueSlot ResultSlot,
194 SourceLocation Loc, bool AsValue) const;
Alexey Bataev452d8e12014-12-15 05:25:25 +0000195
John McCalla8ec7eb2013-03-07 21:37:17 +0000196 /// Copy an atomic r-value into atomic-layout memory.
Alexey Bataevb57056f2015-01-22 06:17:56 +0000197 void emitCopyIntoMemory(RValue rvalue) const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000198
199 /// Project an l-value down to the value field.
Alexey Bataevb57056f2015-01-22 06:17:56 +0000200 LValue projectValue() const {
201 assert(LVal.isSimple());
John McCall7f416cc2015-09-08 08:05:57 +0000202 Address addr = getAtomicAddress();
John McCalla8ec7eb2013-03-07 21:37:17 +0000203 if (hasPadding())
John McCall7f416cc2015-09-08 08:05:57 +0000204 addr = CGF.Builder.CreateStructGEP(addr, 0, CharUnits());
John McCalla8ec7eb2013-03-07 21:37:17 +0000205
John McCall7f416cc2015-09-08 08:05:57 +0000206 return LValue::MakeAddr(addr, getValueType(), CGF.getContext(),
207 LVal.getAlignmentSource(), LVal.getTBAAInfo());
John McCalla8ec7eb2013-03-07 21:37:17 +0000208 }
209
Alexey Bataevb8329262015-02-27 06:33:30 +0000210 /// \brief Emits atomic load.
211 /// \returns Loaded value.
212 RValue EmitAtomicLoad(AggValueSlot ResultSlot, SourceLocation Loc,
213 bool AsValue, llvm::AtomicOrdering AO,
214 bool IsVolatile);
215
216 /// \brief Emits atomic compare-and-exchange sequence.
217 /// \param Expected Expected value.
218 /// \param Desired Desired value.
219 /// \param Success Atomic ordering for success operation.
220 /// \param Failure Atomic ordering for failed operation.
221 /// \param IsWeak true if atomic operation is weak, false otherwise.
222 /// \returns Pair of values: previous value from storage (value type) and
223 /// boolean flag (i1 type) with true if success and false otherwise.
JF Bastien92f4ef12016-04-06 17:26:42 +0000224 std::pair<RValue, llvm::Value *>
225 EmitAtomicCompareExchange(RValue Expected, RValue Desired,
226 llvm::AtomicOrdering Success =
227 llvm::AtomicOrdering::SequentiallyConsistent,
228 llvm::AtomicOrdering Failure =
229 llvm::AtomicOrdering::SequentiallyConsistent,
230 bool IsWeak = false);
Alexey Bataevb8329262015-02-27 06:33:30 +0000231
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000232 /// \brief Emits atomic update.
NAKAMURA Takumid16af5d2015-05-15 13:47:52 +0000233 /// \param AO Atomic ordering.
234 /// \param UpdateOp Update operation for the current lvalue.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000235 void EmitAtomicUpdate(llvm::AtomicOrdering AO,
236 const llvm::function_ref<RValue(RValue)> &UpdateOp,
237 bool IsVolatile);
238 /// \brief Emits atomic update.
NAKAMURA Takumid16af5d2015-05-15 13:47:52 +0000239 /// \param AO Atomic ordering.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000240 void EmitAtomicUpdate(llvm::AtomicOrdering AO, RValue UpdateRVal,
241 bool IsVolatile);
242
John McCalla8ec7eb2013-03-07 21:37:17 +0000243 /// Materialize an atomic r-value in atomic-layout memory.
John McCall7f416cc2015-09-08 08:05:57 +0000244 Address materializeRValue(RValue rvalue) const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000245
Tim Northovercc2a6e02015-11-09 19:56:35 +0000246 /// \brief Creates temp alloca for intermediate operations on atomic value.
247 Address CreateTempAlloca() const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000248 private:
249 bool requiresMemSetZero(llvm::Type *type) const;
Alexey Bataevb8329262015-02-27 06:33:30 +0000250
Alexey Bataevb8329262015-02-27 06:33:30 +0000251
252 /// \brief Emits atomic load as a libcall.
253 void EmitAtomicLoadLibcall(llvm::Value *AddForLoaded,
254 llvm::AtomicOrdering AO, bool IsVolatile);
255 /// \brief Emits atomic load as LLVM instruction.
256 llvm::Value *EmitAtomicLoadOp(llvm::AtomicOrdering AO, bool IsVolatile);
257 /// \brief Emits atomic compare-and-exchange op as a libcall.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000258 llvm::Value *EmitAtomicCompareExchangeLibcall(
259 llvm::Value *ExpectedAddr, llvm::Value *DesiredAddr,
JF Bastien92f4ef12016-04-06 17:26:42 +0000260 llvm::AtomicOrdering Success =
261 llvm::AtomicOrdering::SequentiallyConsistent,
262 llvm::AtomicOrdering Failure =
263 llvm::AtomicOrdering::SequentiallyConsistent);
Alexey Bataevb8329262015-02-27 06:33:30 +0000264 /// \brief Emits atomic compare-and-exchange op as LLVM instruction.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000265 std::pair<llvm::Value *, llvm::Value *> EmitAtomicCompareExchangeOp(
266 llvm::Value *ExpectedVal, llvm::Value *DesiredVal,
JF Bastien92f4ef12016-04-06 17:26:42 +0000267 llvm::AtomicOrdering Success =
268 llvm::AtomicOrdering::SequentiallyConsistent,
269 llvm::AtomicOrdering Failure =
270 llvm::AtomicOrdering::SequentiallyConsistent,
Alexey Bataevb8329262015-02-27 06:33:30 +0000271 bool IsWeak = false);
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000272 /// \brief Emit atomic update as libcalls.
273 void
274 EmitAtomicUpdateLibcall(llvm::AtomicOrdering AO,
275 const llvm::function_ref<RValue(RValue)> &UpdateOp,
276 bool IsVolatile);
277 /// \brief Emit atomic update as LLVM instructions.
278 void EmitAtomicUpdateOp(llvm::AtomicOrdering AO,
279 const llvm::function_ref<RValue(RValue)> &UpdateOp,
280 bool IsVolatile);
281 /// \brief Emit atomic update as libcalls.
282 void EmitAtomicUpdateLibcall(llvm::AtomicOrdering AO, RValue UpdateRVal,
283 bool IsVolatile);
284 /// \brief Emit atomic update as LLVM instructions.
285 void EmitAtomicUpdateOp(llvm::AtomicOrdering AO, RValue UpdateRal,
286 bool IsVolatile);
John McCalla8ec7eb2013-03-07 21:37:17 +0000287 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000288}
John McCalla8ec7eb2013-03-07 21:37:17 +0000289
John McCall7f416cc2015-09-08 08:05:57 +0000290Address AtomicInfo::CreateTempAlloca() const {
291 Address TempAlloca = CGF.CreateMemTemp(
Alexey Bataevb8329262015-02-27 06:33:30 +0000292 (LVal.isBitField() && ValueSizeInBits > AtomicSizeInBits) ? ValueTy
293 : AtomicTy,
John McCall7f416cc2015-09-08 08:05:57 +0000294 getAtomicAlignment(),
Alexey Bataevb8329262015-02-27 06:33:30 +0000295 "atomic-temp");
Alexey Bataevb8329262015-02-27 06:33:30 +0000296 // Cast to pointer to value type for bitfields.
297 if (LVal.isBitField())
298 return CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
John McCall7f416cc2015-09-08 08:05:57 +0000299 TempAlloca, getAtomicAddress().getType());
Alexey Bataevb8329262015-02-27 06:33:30 +0000300 return TempAlloca;
301}
302
John McCalla8ec7eb2013-03-07 21:37:17 +0000303static RValue emitAtomicLibcall(CodeGenFunction &CGF,
304 StringRef fnName,
305 QualType resultType,
306 CallArgList &args) {
307 const CGFunctionInfo &fnInfo =
John McCallc56a8b32016-03-11 04:30:31 +0000308 CGF.CGM.getTypes().arrangeBuiltinFunctionCall(resultType, args);
John McCalla8ec7eb2013-03-07 21:37:17 +0000309 llvm::FunctionType *fnTy = CGF.CGM.getTypes().GetFunctionType(fnInfo);
310 llvm::Constant *fn = CGF.CGM.CreateRuntimeFunction(fnTy, fnName);
311 return CGF.EmitCall(fnInfo, fn, ReturnValueSlot(), args);
312}
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(),
1184 LVal.getAlignmentSource()));
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(),
1188 LVal.getAlignmentSource()), 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(),
1192 LVal.getAlignmentSource()));
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();
John McCall7f416cc2015-09-08 08:05:57 +00001277 return IsVolatile && AtomicIsInline;
David Majnemera5b195a2015-02-14 01:35:12 +00001278}
1279
1280/// An type is a candidate for having its loads and stores be made atomic if
1281/// we are operating under /volatile:ms *and* we know the access is volatile and
1282/// performing such an operation can be performed without a libcall.
1283bool CodeGenFunction::typeIsSuitableForInlineAtomic(QualType Ty,
1284 bool IsVolatile) const {
David Majnemerfc80b6e2016-01-22 16:36:44 +00001285 // The operation must be volatile for us to make it atomic.
1286 if (!IsVolatile)
1287 return false;
1288 // The -fms-volatile flag must be passed for us to adopt this behavior.
1289 if (!CGM.getCodeGenOpts().MSVolatile)
1290 return false;
1291
David Majnemera5b195a2015-02-14 01:35:12 +00001292 // An atomic is inline if we don't need to use a libcall (e.g. it is builtin).
David Majnemerfc80b6e2016-01-22 16:36:44 +00001293 if (!getContext().getTargetInfo().hasBuiltinAtomic(
1294 getContext().getTypeSize(Ty), getContext().getTypeAlign(Ty)))
1295 return false;
1296
1297 // MSVC doesn't seem to do this for types wider than a pointer.
1298 if (getContext().getTypeSize(Ty) >
1299 getContext().getTypeSize(getContext().getIntPtrType()))
1300 return false;
1301 return true;
David Majnemera5b195a2015-02-14 01:35:12 +00001302}
1303
1304RValue CodeGenFunction::EmitAtomicLoad(LValue LV, SourceLocation SL,
1305 AggValueSlot Slot) {
1306 llvm::AtomicOrdering AO;
1307 bool IsVolatile = LV.isVolatileQualified();
1308 if (LV.getType()->isAtomicType()) {
JF Bastien92f4ef12016-04-06 17:26:42 +00001309 AO = llvm::AtomicOrdering::SequentiallyConsistent;
David Majnemera5b195a2015-02-14 01:35:12 +00001310 } else {
JF Bastien92f4ef12016-04-06 17:26:42 +00001311 AO = llvm::AtomicOrdering::Acquire;
David Majnemera5b195a2015-02-14 01:35:12 +00001312 IsVolatile = true;
1313 }
1314 return EmitAtomicLoad(LV, SL, AO, IsVolatile, Slot);
1315}
1316
Alexey Bataevb8329262015-02-27 06:33:30 +00001317RValue AtomicInfo::EmitAtomicLoad(AggValueSlot ResultSlot, SourceLocation Loc,
1318 bool AsValue, llvm::AtomicOrdering AO,
1319 bool IsVolatile) {
1320 // Check whether we should use a library call.
1321 if (shouldUseLibcall()) {
John McCall7f416cc2015-09-08 08:05:57 +00001322 Address TempAddr = Address::invalid();
Alexey Bataevb8329262015-02-27 06:33:30 +00001323 if (LVal.isSimple() && !ResultSlot.isIgnored()) {
1324 assert(getEvaluationKind() == TEK_Aggregate);
John McCall7f416cc2015-09-08 08:05:57 +00001325 TempAddr = ResultSlot.getAddress();
Alexey Bataevb8329262015-02-27 06:33:30 +00001326 } else
1327 TempAddr = CreateTempAlloca();
1328
John McCall7f416cc2015-09-08 08:05:57 +00001329 EmitAtomicLoadLibcall(TempAddr.getPointer(), AO, IsVolatile);
Alexey Bataevb8329262015-02-27 06:33:30 +00001330
1331 // Okay, turn that back into the original value or whole atomic (for
1332 // non-simple lvalues) type.
John McCall7f416cc2015-09-08 08:05:57 +00001333 return convertAtomicTempToRValue(TempAddr, ResultSlot, Loc, AsValue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001334 }
1335
1336 // Okay, we're doing this natively.
1337 auto *Load = EmitAtomicLoadOp(AO, IsVolatile);
1338
1339 // If we're ignoring an aggregate return, don't do anything.
1340 if (getEvaluationKind() == TEK_Aggregate && ResultSlot.isIgnored())
John McCall7f416cc2015-09-08 08:05:57 +00001341 return RValue::getAggregate(Address::invalid(), false);
Alexey Bataevb8329262015-02-27 06:33:30 +00001342
1343 // Okay, turn that back into the original value or atomic (for non-simple
1344 // lvalues) type.
1345 return ConvertIntToValueOrAtomic(Load, ResultSlot, Loc, AsValue);
1346}
1347
John McCalla8ec7eb2013-03-07 21:37:17 +00001348/// Emit a load from an l-value of atomic type. Note that the r-value
1349/// we produce is an r-value of the atomic *value* type.
Nick Lewycky2d84e842013-10-02 02:29:49 +00001350RValue CodeGenFunction::EmitAtomicLoad(LValue src, SourceLocation loc,
David Majnemera5b195a2015-02-14 01:35:12 +00001351 llvm::AtomicOrdering AO, bool IsVolatile,
Nick Lewycky2d84e842013-10-02 02:29:49 +00001352 AggValueSlot resultSlot) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001353 AtomicInfo Atomics(*this, src);
1354 return Atomics.EmitAtomicLoad(resultSlot, loc, /*AsValue=*/true, AO,
1355 IsVolatile);
John McCalla8ec7eb2013-03-07 21:37:17 +00001356}
1357
John McCalla8ec7eb2013-03-07 21:37:17 +00001358/// Copy an r-value into memory as part of storing to an atomic type.
1359/// This needs to create a bit-pattern suitable for atomic operations.
Alexey Bataevb57056f2015-01-22 06:17:56 +00001360void AtomicInfo::emitCopyIntoMemory(RValue rvalue) const {
1361 assert(LVal.isSimple());
John McCalla8ec7eb2013-03-07 21:37:17 +00001362 // If we have an r-value, the rvalue should be of the atomic type,
1363 // which means that the caller is responsible for having zeroed
1364 // any padding. Just do an aggregate copy of that type.
1365 if (rvalue.isAggregate()) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001366 CGF.EmitAggregateCopy(getAtomicAddress(),
John McCall7f416cc2015-09-08 08:05:57 +00001367 rvalue.getAggregateAddress(),
John McCalla8ec7eb2013-03-07 21:37:17 +00001368 getAtomicType(),
1369 (rvalue.isVolatileQualified()
John McCall7f416cc2015-09-08 08:05:57 +00001370 || LVal.isVolatileQualified()));
John McCalla8ec7eb2013-03-07 21:37:17 +00001371 return;
1372 }
1373
1374 // Okay, otherwise we're copying stuff.
1375
1376 // Zero out the buffer if necessary.
Alexey Bataevb57056f2015-01-22 06:17:56 +00001377 emitMemSetZeroIfNecessary();
John McCalla8ec7eb2013-03-07 21:37:17 +00001378
1379 // Drill past the padding if present.
Alexey Bataevb57056f2015-01-22 06:17:56 +00001380 LValue TempLVal = projectValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001381
1382 // Okay, store the rvalue in.
1383 if (rvalue.isScalar()) {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001384 CGF.EmitStoreOfScalar(rvalue.getScalarVal(), TempLVal, /*init*/ true);
John McCalla8ec7eb2013-03-07 21:37:17 +00001385 } else {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001386 CGF.EmitStoreOfComplex(rvalue.getComplexVal(), TempLVal, /*init*/ true);
John McCalla8ec7eb2013-03-07 21:37:17 +00001387 }
1388}
1389
1390
1391/// Materialize an r-value into memory for the purposes of storing it
1392/// to an atomic type.
John McCall7f416cc2015-09-08 08:05:57 +00001393Address AtomicInfo::materializeRValue(RValue rvalue) const {
John McCalla8ec7eb2013-03-07 21:37:17 +00001394 // Aggregate r-values are already in memory, and EmitAtomicStore
1395 // requires them to be values of the atomic type.
1396 if (rvalue.isAggregate())
John McCall7f416cc2015-09-08 08:05:57 +00001397 return rvalue.getAggregateAddress();
John McCalla8ec7eb2013-03-07 21:37:17 +00001398
1399 // Otherwise, make a temporary and materialize into it.
John McCall7f416cc2015-09-08 08:05:57 +00001400 LValue TempLV = CGF.MakeAddrLValue(CreateTempAlloca(), getAtomicType());
Alexey Bataevb8329262015-02-27 06:33:30 +00001401 AtomicInfo Atomics(CGF, TempLV);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001402 Atomics.emitCopyIntoMemory(rvalue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001403 return TempLV.getAddress();
John McCalla8ec7eb2013-03-07 21:37:17 +00001404}
1405
Alexey Bataev452d8e12014-12-15 05:25:25 +00001406llvm::Value *AtomicInfo::convertRValueToInt(RValue RVal) const {
1407 // If we've got a scalar value of the right size, try to avoid going
1408 // through memory.
Alexey Bataevb8329262015-02-27 06:33:30 +00001409 if (RVal.isScalar() && (!hasPadding() || !LVal.isSimple())) {
Alexey Bataev452d8e12014-12-15 05:25:25 +00001410 llvm::Value *Value = RVal.getScalarVal();
1411 if (isa<llvm::IntegerType>(Value->getType()))
Alexey Bataevb4505a72015-03-30 05:20:59 +00001412 return CGF.EmitToMemory(Value, ValueTy);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001413 else {
Alexey Bataevb8329262015-02-27 06:33:30 +00001414 llvm::IntegerType *InputIntTy = llvm::IntegerType::get(
1415 CGF.getLLVMContext(),
1416 LVal.isSimple() ? getValueSizeInBits() : getAtomicSizeInBits());
Alexey Bataev452d8e12014-12-15 05:25:25 +00001417 if (isa<llvm::PointerType>(Value->getType()))
1418 return CGF.Builder.CreatePtrToInt(Value, InputIntTy);
1419 else if (llvm::BitCastInst::isBitCastable(Value->getType(), InputIntTy))
1420 return CGF.Builder.CreateBitCast(Value, InputIntTy);
1421 }
1422 }
1423 // Otherwise, we need to go through memory.
1424 // Put the r-value in memory.
John McCall7f416cc2015-09-08 08:05:57 +00001425 Address Addr = materializeRValue(RVal);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001426
1427 // Cast the temporary to the atomic int type and pull a value out.
1428 Addr = emitCastToAtomicIntPointer(Addr);
John McCall7f416cc2015-09-08 08:05:57 +00001429 return CGF.Builder.CreateLoad(Addr);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001430}
1431
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001432std::pair<llvm::Value *, llvm::Value *> AtomicInfo::EmitAtomicCompareExchangeOp(
1433 llvm::Value *ExpectedVal, llvm::Value *DesiredVal,
1434 llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001435 // Do the atomic store.
John McCall7f416cc2015-09-08 08:05:57 +00001436 Address Addr = getAtomicAddressAsAtomicIntPointer();
1437 auto *Inst = CGF.Builder.CreateAtomicCmpXchg(Addr.getPointer(),
1438 ExpectedVal, DesiredVal,
Alexey Bataevb4505a72015-03-30 05:20:59 +00001439 Success, Failure);
Alexey Bataevb8329262015-02-27 06:33:30 +00001440 // Other decoration.
1441 Inst->setVolatile(LVal.isVolatileQualified());
1442 Inst->setWeak(IsWeak);
1443
1444 // Okay, turn that back into the original value type.
1445 auto *PreviousVal = CGF.Builder.CreateExtractValue(Inst, /*Idxs=*/0);
1446 auto *SuccessFailureVal = CGF.Builder.CreateExtractValue(Inst, /*Idxs=*/1);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001447 return std::make_pair(PreviousVal, SuccessFailureVal);
Alexey Bataevb8329262015-02-27 06:33:30 +00001448}
1449
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001450llvm::Value *
1451AtomicInfo::EmitAtomicCompareExchangeLibcall(llvm::Value *ExpectedAddr,
1452 llvm::Value *DesiredAddr,
Alexey Bataevb8329262015-02-27 06:33:30 +00001453 llvm::AtomicOrdering Success,
1454 llvm::AtomicOrdering Failure) {
1455 // bool __atomic_compare_exchange(size_t size, void *obj, void *expected,
1456 // void *desired, int success, int failure);
1457 CallArgList Args;
1458 Args.add(RValue::get(getAtomicSizeValue()), CGF.getContext().getSizeType());
John McCall7f416cc2015-09-08 08:05:57 +00001459 Args.add(RValue::get(CGF.EmitCastToVoidPtr(getAtomicPointer())),
Alexey Bataevb8329262015-02-27 06:33:30 +00001460 CGF.getContext().VoidPtrTy);
1461 Args.add(RValue::get(CGF.EmitCastToVoidPtr(ExpectedAddr)),
1462 CGF.getContext().VoidPtrTy);
1463 Args.add(RValue::get(CGF.EmitCastToVoidPtr(DesiredAddr)),
1464 CGF.getContext().VoidPtrTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001465 Args.add(RValue::get(
1466 llvm::ConstantInt::get(CGF.IntTy, (int)llvm::toCABI(Success))),
Alexey Bataevb8329262015-02-27 06:33:30 +00001467 CGF.getContext().IntTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001468 Args.add(RValue::get(
1469 llvm::ConstantInt::get(CGF.IntTy, (int)llvm::toCABI(Failure))),
Alexey Bataevb8329262015-02-27 06:33:30 +00001470 CGF.getContext().IntTy);
1471 auto SuccessFailureRVal = emitAtomicLibcall(CGF, "__atomic_compare_exchange",
1472 CGF.getContext().BoolTy, Args);
Alexey Bataevb4505a72015-03-30 05:20:59 +00001473
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001474 return SuccessFailureRVal.getScalarVal();
Alexey Bataevb8329262015-02-27 06:33:30 +00001475}
1476
Alexey Bataevb4505a72015-03-30 05:20:59 +00001477std::pair<RValue, llvm::Value *> AtomicInfo::EmitAtomicCompareExchange(
Alexey Bataevb8329262015-02-27 06:33:30 +00001478 RValue Expected, RValue Desired, llvm::AtomicOrdering Success,
1479 llvm::AtomicOrdering Failure, bool IsWeak) {
JF Bastiendd11ee72016-04-06 23:37:36 +00001480 if (isStrongerThan(Failure, Success))
1481 // Don't assert on undefined behavior "failure argument shall be no stronger
1482 // than the success argument".
Alexey Bataevb8329262015-02-27 06:33:30 +00001483 Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(Success);
1484
1485 // Check whether we should use a library call.
1486 if (shouldUseLibcall()) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001487 // Produce a source address.
John McCall7f416cc2015-09-08 08:05:57 +00001488 Address ExpectedAddr = materializeRValue(Expected);
1489 Address DesiredAddr = materializeRValue(Desired);
1490 auto *Res = EmitAtomicCompareExchangeLibcall(ExpectedAddr.getPointer(),
1491 DesiredAddr.getPointer(),
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001492 Success, Failure);
1493 return std::make_pair(
John McCall7f416cc2015-09-08 08:05:57 +00001494 convertAtomicTempToRValue(ExpectedAddr, AggValueSlot::ignored(),
1495 SourceLocation(), /*AsValue=*/false),
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001496 Res);
Alexey Bataevb8329262015-02-27 06:33:30 +00001497 }
1498
1499 // If we've got a scalar value of the right size, try to avoid going
1500 // through memory.
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001501 auto *ExpectedVal = convertRValueToInt(Expected);
1502 auto *DesiredVal = convertRValueToInt(Desired);
1503 auto Res = EmitAtomicCompareExchangeOp(ExpectedVal, DesiredVal, Success,
1504 Failure, IsWeak);
1505 return std::make_pair(
1506 ConvertIntToValueOrAtomic(Res.first, AggValueSlot::ignored(),
1507 SourceLocation(), /*AsValue=*/false),
1508 Res.second);
1509}
1510
1511static void
1512EmitAtomicUpdateValue(CodeGenFunction &CGF, AtomicInfo &Atomics, RValue OldRVal,
1513 const llvm::function_ref<RValue(RValue)> &UpdateOp,
John McCall7f416cc2015-09-08 08:05:57 +00001514 Address DesiredAddr) {
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001515 RValue UpRVal;
1516 LValue AtomicLVal = Atomics.getAtomicLValue();
1517 LValue DesiredLVal;
1518 if (AtomicLVal.isSimple()) {
1519 UpRVal = OldRVal;
John McCall7f416cc2015-09-08 08:05:57 +00001520 DesiredLVal = CGF.MakeAddrLValue(DesiredAddr, AtomicLVal.getType());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001521 } else {
1522 // Build new lvalue for temp address
John McCall7f416cc2015-09-08 08:05:57 +00001523 Address Ptr = Atomics.materializeRValue(OldRVal);
1524 LValue UpdateLVal;
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001525 if (AtomicLVal.isBitField()) {
1526 UpdateLVal =
1527 LValue::MakeBitfield(Ptr, AtomicLVal.getBitFieldInfo(),
John McCall7f416cc2015-09-08 08:05:57 +00001528 AtomicLVal.getType(),
1529 AtomicLVal.getAlignmentSource());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001530 DesiredLVal =
1531 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(),
John McCall7f416cc2015-09-08 08:05:57 +00001532 AtomicLVal.getType(),
1533 AtomicLVal.getAlignmentSource());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001534 } else if (AtomicLVal.isVectorElt()) {
1535 UpdateLVal = LValue::MakeVectorElt(Ptr, AtomicLVal.getVectorIdx(),
1536 AtomicLVal.getType(),
John McCall7f416cc2015-09-08 08:05:57 +00001537 AtomicLVal.getAlignmentSource());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001538 DesiredLVal = LValue::MakeVectorElt(
1539 DesiredAddr, AtomicLVal.getVectorIdx(), AtomicLVal.getType(),
John McCall7f416cc2015-09-08 08:05:57 +00001540 AtomicLVal.getAlignmentSource());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001541 } else {
1542 assert(AtomicLVal.isExtVectorElt());
1543 UpdateLVal = LValue::MakeExtVectorElt(Ptr, AtomicLVal.getExtVectorElts(),
1544 AtomicLVal.getType(),
John McCall7f416cc2015-09-08 08:05:57 +00001545 AtomicLVal.getAlignmentSource());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001546 DesiredLVal = LValue::MakeExtVectorElt(
1547 DesiredAddr, AtomicLVal.getExtVectorElts(), AtomicLVal.getType(),
John McCall7f416cc2015-09-08 08:05:57 +00001548 AtomicLVal.getAlignmentSource());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001549 }
1550 UpdateLVal.setTBAAInfo(AtomicLVal.getTBAAInfo());
1551 DesiredLVal.setTBAAInfo(AtomicLVal.getTBAAInfo());
1552 UpRVal = CGF.EmitLoadOfLValue(UpdateLVal, SourceLocation());
1553 }
1554 // Store new value in the corresponding memory area
1555 RValue NewRVal = UpdateOp(UpRVal);
1556 if (NewRVal.isScalar()) {
1557 CGF.EmitStoreThroughLValue(NewRVal, DesiredLVal);
1558 } else {
1559 assert(NewRVal.isComplex());
1560 CGF.EmitStoreOfComplex(NewRVal.getComplexVal(), DesiredLVal,
1561 /*isInit=*/false);
1562 }
1563}
1564
1565void AtomicInfo::EmitAtomicUpdateLibcall(
1566 llvm::AtomicOrdering AO, const llvm::function_ref<RValue(RValue)> &UpdateOp,
1567 bool IsVolatile) {
1568 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1569
John McCall7f416cc2015-09-08 08:05:57 +00001570 Address ExpectedAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001571
John McCall7f416cc2015-09-08 08:05:57 +00001572 EmitAtomicLoadLibcall(ExpectedAddr.getPointer(), AO, IsVolatile);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001573 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1574 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1575 CGF.EmitBlock(ContBB);
John McCall7f416cc2015-09-08 08:05:57 +00001576 Address DesiredAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001577 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001578 requiresMemSetZero(getAtomicAddress().getElementType())) {
1579 auto *OldVal = CGF.Builder.CreateLoad(ExpectedAddr);
1580 CGF.Builder.CreateStore(OldVal, DesiredAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001581 }
John McCall7f416cc2015-09-08 08:05:57 +00001582 auto OldRVal = convertAtomicTempToRValue(ExpectedAddr,
1583 AggValueSlot::ignored(),
1584 SourceLocation(), /*AsValue=*/false);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001585 EmitAtomicUpdateValue(CGF, *this, OldRVal, UpdateOp, DesiredAddr);
1586 auto *Res =
John McCall7f416cc2015-09-08 08:05:57 +00001587 EmitAtomicCompareExchangeLibcall(ExpectedAddr.getPointer(),
1588 DesiredAddr.getPointer(),
1589 AO, Failure);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001590 CGF.Builder.CreateCondBr(Res, ExitBB, ContBB);
1591 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1592}
1593
1594void AtomicInfo::EmitAtomicUpdateOp(
1595 llvm::AtomicOrdering AO, const llvm::function_ref<RValue(RValue)> &UpdateOp,
1596 bool IsVolatile) {
1597 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1598
1599 // Do the atomic load.
1600 auto *OldVal = EmitAtomicLoadOp(AO, IsVolatile);
1601 // For non-simple lvalues perform compare-and-swap procedure.
1602 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1603 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1604 auto *CurBB = CGF.Builder.GetInsertBlock();
1605 CGF.EmitBlock(ContBB);
1606 llvm::PHINode *PHI = CGF.Builder.CreatePHI(OldVal->getType(),
1607 /*NumReservedValues=*/2);
1608 PHI->addIncoming(OldVal, CurBB);
John McCall7f416cc2015-09-08 08:05:57 +00001609 Address NewAtomicAddr = CreateTempAlloca();
1610 Address NewAtomicIntAddr = emitCastToAtomicIntPointer(NewAtomicAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001611 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001612 requiresMemSetZero(getAtomicAddress().getElementType())) {
1613 CGF.Builder.CreateStore(PHI, NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001614 }
1615 auto OldRVal = ConvertIntToValueOrAtomic(PHI, AggValueSlot::ignored(),
1616 SourceLocation(), /*AsValue=*/false);
1617 EmitAtomicUpdateValue(CGF, *this, OldRVal, UpdateOp, NewAtomicAddr);
John McCall7f416cc2015-09-08 08:05:57 +00001618 auto *DesiredVal = CGF.Builder.CreateLoad(NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001619 // Try to write new value using cmpxchg operation
1620 auto Res = EmitAtomicCompareExchangeOp(PHI, DesiredVal, AO, Failure);
1621 PHI->addIncoming(Res.first, CGF.Builder.GetInsertBlock());
1622 CGF.Builder.CreateCondBr(Res.second, ExitBB, ContBB);
1623 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1624}
1625
1626static void EmitAtomicUpdateValue(CodeGenFunction &CGF, AtomicInfo &Atomics,
John McCall7f416cc2015-09-08 08:05:57 +00001627 RValue UpdateRVal, Address DesiredAddr) {
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001628 LValue AtomicLVal = Atomics.getAtomicLValue();
1629 LValue DesiredLVal;
1630 // Build new lvalue for temp address
1631 if (AtomicLVal.isBitField()) {
1632 DesiredLVal =
1633 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(),
John McCall7f416cc2015-09-08 08:05:57 +00001634 AtomicLVal.getType(),
1635 AtomicLVal.getAlignmentSource());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001636 } else if (AtomicLVal.isVectorElt()) {
1637 DesiredLVal =
1638 LValue::MakeVectorElt(DesiredAddr, AtomicLVal.getVectorIdx(),
John McCall7f416cc2015-09-08 08:05:57 +00001639 AtomicLVal.getType(),
1640 AtomicLVal.getAlignmentSource());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001641 } else {
1642 assert(AtomicLVal.isExtVectorElt());
1643 DesiredLVal = LValue::MakeExtVectorElt(
1644 DesiredAddr, AtomicLVal.getExtVectorElts(), AtomicLVal.getType(),
John McCall7f416cc2015-09-08 08:05:57 +00001645 AtomicLVal.getAlignmentSource());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001646 }
1647 DesiredLVal.setTBAAInfo(AtomicLVal.getTBAAInfo());
1648 // Store new value in the corresponding memory area
1649 assert(UpdateRVal.isScalar());
1650 CGF.EmitStoreThroughLValue(UpdateRVal, DesiredLVal);
1651}
1652
1653void AtomicInfo::EmitAtomicUpdateLibcall(llvm::AtomicOrdering AO,
1654 RValue UpdateRVal, bool IsVolatile) {
1655 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1656
John McCall7f416cc2015-09-08 08:05:57 +00001657 Address ExpectedAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001658
John McCall7f416cc2015-09-08 08:05:57 +00001659 EmitAtomicLoadLibcall(ExpectedAddr.getPointer(), AO, IsVolatile);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001660 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1661 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1662 CGF.EmitBlock(ContBB);
John McCall7f416cc2015-09-08 08:05:57 +00001663 Address DesiredAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001664 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001665 requiresMemSetZero(getAtomicAddress().getElementType())) {
1666 auto *OldVal = CGF.Builder.CreateLoad(ExpectedAddr);
1667 CGF.Builder.CreateStore(OldVal, DesiredAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001668 }
1669 EmitAtomicUpdateValue(CGF, *this, UpdateRVal, DesiredAddr);
1670 auto *Res =
John McCall7f416cc2015-09-08 08:05:57 +00001671 EmitAtomicCompareExchangeLibcall(ExpectedAddr.getPointer(),
1672 DesiredAddr.getPointer(),
1673 AO, Failure);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001674 CGF.Builder.CreateCondBr(Res, ExitBB, ContBB);
1675 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1676}
1677
1678void AtomicInfo::EmitAtomicUpdateOp(llvm::AtomicOrdering AO, RValue UpdateRVal,
1679 bool IsVolatile) {
1680 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1681
1682 // Do the atomic load.
1683 auto *OldVal = EmitAtomicLoadOp(AO, IsVolatile);
1684 // For non-simple lvalues perform compare-and-swap procedure.
1685 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1686 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1687 auto *CurBB = CGF.Builder.GetInsertBlock();
1688 CGF.EmitBlock(ContBB);
1689 llvm::PHINode *PHI = CGF.Builder.CreatePHI(OldVal->getType(),
1690 /*NumReservedValues=*/2);
1691 PHI->addIncoming(OldVal, CurBB);
John McCall7f416cc2015-09-08 08:05:57 +00001692 Address NewAtomicAddr = CreateTempAlloca();
1693 Address NewAtomicIntAddr = emitCastToAtomicIntPointer(NewAtomicAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001694 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001695 requiresMemSetZero(getAtomicAddress().getElementType())) {
1696 CGF.Builder.CreateStore(PHI, NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001697 }
1698 EmitAtomicUpdateValue(CGF, *this, UpdateRVal, NewAtomicAddr);
John McCall7f416cc2015-09-08 08:05:57 +00001699 auto *DesiredVal = CGF.Builder.CreateLoad(NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001700 // Try to write new value using cmpxchg operation
1701 auto Res = EmitAtomicCompareExchangeOp(PHI, DesiredVal, AO, Failure);
1702 PHI->addIncoming(Res.first, CGF.Builder.GetInsertBlock());
1703 CGF.Builder.CreateCondBr(Res.second, ExitBB, ContBB);
1704 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1705}
1706
1707void AtomicInfo::EmitAtomicUpdate(
1708 llvm::AtomicOrdering AO, const llvm::function_ref<RValue(RValue)> &UpdateOp,
1709 bool IsVolatile) {
1710 if (shouldUseLibcall()) {
1711 EmitAtomicUpdateLibcall(AO, UpdateOp, IsVolatile);
1712 } else {
1713 EmitAtomicUpdateOp(AO, UpdateOp, IsVolatile);
1714 }
1715}
1716
1717void AtomicInfo::EmitAtomicUpdate(llvm::AtomicOrdering AO, RValue UpdateRVal,
1718 bool IsVolatile) {
1719 if (shouldUseLibcall()) {
1720 EmitAtomicUpdateLibcall(AO, UpdateRVal, IsVolatile);
1721 } else {
1722 EmitAtomicUpdateOp(AO, UpdateRVal, IsVolatile);
1723 }
Alexey Bataevb8329262015-02-27 06:33:30 +00001724}
1725
David Majnemera5b195a2015-02-14 01:35:12 +00001726void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue lvalue,
1727 bool isInit) {
1728 bool IsVolatile = lvalue.isVolatileQualified();
1729 llvm::AtomicOrdering AO;
1730 if (lvalue.getType()->isAtomicType()) {
JF Bastien92f4ef12016-04-06 17:26:42 +00001731 AO = llvm::AtomicOrdering::SequentiallyConsistent;
David Majnemera5b195a2015-02-14 01:35:12 +00001732 } else {
JF Bastien92f4ef12016-04-06 17:26:42 +00001733 AO = llvm::AtomicOrdering::Release;
David Majnemera5b195a2015-02-14 01:35:12 +00001734 IsVolatile = true;
1735 }
1736 return EmitAtomicStore(rvalue, lvalue, AO, IsVolatile, isInit);
1737}
1738
John McCalla8ec7eb2013-03-07 21:37:17 +00001739/// Emit a store to an l-value of atomic type.
1740///
1741/// Note that the r-value is expected to be an r-value *of the atomic
1742/// type*; this means that for aggregate r-values, it should include
1743/// storage for any padding that was necessary.
David Majnemera5b195a2015-02-14 01:35:12 +00001744void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue dest,
1745 llvm::AtomicOrdering AO, bool IsVolatile,
1746 bool isInit) {
John McCalla8ec7eb2013-03-07 21:37:17 +00001747 // If this is an aggregate r-value, it should agree in type except
1748 // maybe for address-space qualification.
1749 assert(!rvalue.isAggregate() ||
John McCall7f416cc2015-09-08 08:05:57 +00001750 rvalue.getAggregateAddress().getElementType()
1751 == dest.getAddress().getElementType());
John McCalla8ec7eb2013-03-07 21:37:17 +00001752
1753 AtomicInfo atomics(*this, dest);
Alexey Bataevb8329262015-02-27 06:33:30 +00001754 LValue LVal = atomics.getAtomicLValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001755
1756 // If this is an initialization, just put the value there normally.
Alexey Bataevb8329262015-02-27 06:33:30 +00001757 if (LVal.isSimple()) {
1758 if (isInit) {
1759 atomics.emitCopyIntoMemory(rvalue);
1760 return;
1761 }
1762
1763 // Check whether we should use a library call.
1764 if (atomics.shouldUseLibcall()) {
1765 // Produce a source address.
John McCall7f416cc2015-09-08 08:05:57 +00001766 Address srcAddr = atomics.materializeRValue(rvalue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001767
1768 // void __atomic_store(size_t size, void *mem, void *val, int order)
1769 CallArgList args;
1770 args.add(RValue::get(atomics.getAtomicSizeValue()),
1771 getContext().getSizeType());
John McCall7f416cc2015-09-08 08:05:57 +00001772 args.add(RValue::get(EmitCastToVoidPtr(atomics.getAtomicPointer())),
Alexey Bataevb8329262015-02-27 06:33:30 +00001773 getContext().VoidPtrTy);
John McCall7f416cc2015-09-08 08:05:57 +00001774 args.add(RValue::get(EmitCastToVoidPtr(srcAddr.getPointer())),
1775 getContext().VoidPtrTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001776 args.add(
1777 RValue::get(llvm::ConstantInt::get(IntTy, (int)llvm::toCABI(AO))),
1778 getContext().IntTy);
Alexey Bataevb8329262015-02-27 06:33:30 +00001779 emitAtomicLibcall(*this, "__atomic_store", getContext().VoidTy, args);
1780 return;
1781 }
1782
1783 // Okay, we're doing this natively.
1784 llvm::Value *intValue = atomics.convertRValueToInt(rvalue);
1785
1786 // Do the atomic store.
John McCall7f416cc2015-09-08 08:05:57 +00001787 Address addr =
Alexey Bataevb8329262015-02-27 06:33:30 +00001788 atomics.emitCastToAtomicIntPointer(atomics.getAtomicAddress());
1789 intValue = Builder.CreateIntCast(
John McCall7f416cc2015-09-08 08:05:57 +00001790 intValue, addr.getElementType(), /*isSigned=*/false);
Alexey Bataevb8329262015-02-27 06:33:30 +00001791 llvm::StoreInst *store = Builder.CreateStore(intValue, addr);
1792
1793 // Initializations don't need to be atomic.
1794 if (!isInit)
1795 store->setAtomic(AO);
1796
1797 // Other decoration.
Alexey Bataevb8329262015-02-27 06:33:30 +00001798 if (IsVolatile)
1799 store->setVolatile(true);
1800 if (dest.getTBAAInfo())
Piotr Padlewski4b1ac722015-09-15 21:46:55 +00001801 CGM.DecorateInstructionWithTBAA(store, dest.getTBAAInfo());
John McCalla8ec7eb2013-03-07 21:37:17 +00001802 return;
1803 }
1804
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001805 // Emit simple atomic update operation.
1806 atomics.EmitAtomicUpdate(AO, rvalue, IsVolatile);
John McCalla8ec7eb2013-03-07 21:37:17 +00001807}
1808
Alexey Bataev452d8e12014-12-15 05:25:25 +00001809/// Emit a compare-and-exchange op for atomic type.
1810///
Alexey Bataevb4505a72015-03-30 05:20:59 +00001811std::pair<RValue, llvm::Value *> CodeGenFunction::EmitAtomicCompareExchange(
Alexey Bataev452d8e12014-12-15 05:25:25 +00001812 LValue Obj, RValue Expected, RValue Desired, SourceLocation Loc,
1813 llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak,
1814 AggValueSlot Slot) {
1815 // If this is an aggregate r-value, it should agree in type except
1816 // maybe for address-space qualification.
1817 assert(!Expected.isAggregate() ||
John McCall7f416cc2015-09-08 08:05:57 +00001818 Expected.getAggregateAddress().getElementType() ==
1819 Obj.getAddress().getElementType());
Alexey Bataev452d8e12014-12-15 05:25:25 +00001820 assert(!Desired.isAggregate() ||
John McCall7f416cc2015-09-08 08:05:57 +00001821 Desired.getAggregateAddress().getElementType() ==
1822 Obj.getAddress().getElementType());
Alexey Bataev452d8e12014-12-15 05:25:25 +00001823 AtomicInfo Atomics(*this, Obj);
1824
Alexey Bataevb4505a72015-03-30 05:20:59 +00001825 return Atomics.EmitAtomicCompareExchange(Expected, Desired, Success, Failure,
1826 IsWeak);
1827}
1828
1829void CodeGenFunction::EmitAtomicUpdate(
1830 LValue LVal, llvm::AtomicOrdering AO,
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001831 const llvm::function_ref<RValue(RValue)> &UpdateOp, bool IsVolatile) {
Alexey Bataevb4505a72015-03-30 05:20:59 +00001832 AtomicInfo Atomics(*this, LVal);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001833 Atomics.EmitAtomicUpdate(AO, UpdateOp, IsVolatile);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001834}
1835
John McCalla8ec7eb2013-03-07 21:37:17 +00001836void CodeGenFunction::EmitAtomicInit(Expr *init, LValue dest) {
1837 AtomicInfo atomics(*this, dest);
1838
1839 switch (atomics.getEvaluationKind()) {
1840 case TEK_Scalar: {
1841 llvm::Value *value = EmitScalarExpr(init);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001842 atomics.emitCopyIntoMemory(RValue::get(value));
John McCalla8ec7eb2013-03-07 21:37:17 +00001843 return;
1844 }
1845
1846 case TEK_Complex: {
1847 ComplexPairTy value = EmitComplexExpr(init);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001848 atomics.emitCopyIntoMemory(RValue::getComplex(value));
John McCalla8ec7eb2013-03-07 21:37:17 +00001849 return;
1850 }
1851
1852 case TEK_Aggregate: {
Eli Friedmanbe4504d2013-07-11 01:32:21 +00001853 // Fix up the destination if the initializer isn't an expression
1854 // of atomic type.
1855 bool Zeroed = false;
John McCalla8ec7eb2013-03-07 21:37:17 +00001856 if (!init->getType()->isAtomicType()) {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001857 Zeroed = atomics.emitMemSetZeroIfNecessary();
1858 dest = atomics.projectValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001859 }
1860
1861 // Evaluate the expression directly into the destination.
1862 AggValueSlot slot = AggValueSlot::forLValue(dest,
1863 AggValueSlot::IsNotDestructed,
1864 AggValueSlot::DoesNotNeedGCBarriers,
Eli Friedmanbe4504d2013-07-11 01:32:21 +00001865 AggValueSlot::IsNotAliased,
1866 Zeroed ? AggValueSlot::IsZeroed :
1867 AggValueSlot::IsNotZeroed);
1868
John McCalla8ec7eb2013-03-07 21:37:17 +00001869 EmitAggExpr(init, slot);
1870 return;
1871 }
1872 }
1873 llvm_unreachable("bad evaluation kind");
1874}