blob: d90c3a53a635de480d87c6aee028b64e80cb375f [file] [log] [blame]
John McCallfc207f22013-03-07 21:37:12 +00001//===--- CGAtomic.cpp - Emit LLVM IR for atomic operations ----------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the code for emitting atomic operations.
11//
12//===----------------------------------------------------------------------===//
13
John McCallfc207f22013-03-07 21:37:12 +000014#include "CGCall.h"
Alexey Bataevb57056f2015-01-22 06:17:56 +000015#include "CGRecordLayout.h"
Mehdi Amini9670f842016-07-18 19:02:11 +000016#include "CodeGenFunction.h"
John McCallfc207f22013-03-07 21:37:12 +000017#include "CodeGenModule.h"
Yaxun Liu39195062017-08-04 18:16:31 +000018#include "TargetInfo.h"
John McCallfc207f22013-03-07 21:37:12 +000019#include "clang/AST/ASTContext.h"
Mark Laceya8e7df32013-10-30 21:53:58 +000020#include "clang/CodeGen/CGFunctionInfo.h"
Yaxun Liu30d652a2017-08-15 16:02:49 +000021#include "llvm/ADT/DenseMap.h"
John McCallfc207f22013-03-07 21:37:12 +000022#include "llvm/IR/DataLayout.h"
23#include "llvm/IR/Intrinsics.h"
John McCalla8ec7eb2013-03-07 21:37:17 +000024#include "llvm/IR/Operator.h"
John McCallfc207f22013-03-07 21:37:12 +000025
26using namespace clang;
27using namespace CodeGen;
28
John McCalla8ec7eb2013-03-07 21:37:17 +000029namespace {
30 class AtomicInfo {
31 CodeGenFunction &CGF;
32 QualType AtomicTy;
33 QualType ValueTy;
34 uint64_t AtomicSizeInBits;
35 uint64_t ValueSizeInBits;
36 CharUnits AtomicAlign;
37 CharUnits ValueAlign;
38 CharUnits LValueAlign;
39 TypeEvaluationKind EvaluationKind;
40 bool UseLibcall;
Alexey Bataevb57056f2015-01-22 06:17:56 +000041 LValue LVal;
42 CGBitFieldInfo BFI;
John McCalla8ec7eb2013-03-07 21:37:17 +000043 public:
Alexey Bataevb57056f2015-01-22 06:17:56 +000044 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue)
45 : CGF(CGF), AtomicSizeInBits(0), ValueSizeInBits(0),
46 EvaluationKind(TEK_Scalar), UseLibcall(true) {
47 assert(!lvalue.isGlobalReg());
John McCalla8ec7eb2013-03-07 21:37:17 +000048 ASTContext &C = CGF.getContext();
Alexey Bataevb57056f2015-01-22 06:17:56 +000049 if (lvalue.isSimple()) {
50 AtomicTy = lvalue.getType();
51 if (auto *ATy = AtomicTy->getAs<AtomicType>())
52 ValueTy = ATy->getValueType();
53 else
54 ValueTy = AtomicTy;
55 EvaluationKind = CGF.getEvaluationKind(ValueTy);
John McCalla8ec7eb2013-03-07 21:37:17 +000056
Alexey Bataevb57056f2015-01-22 06:17:56 +000057 uint64_t ValueAlignInBits;
58 uint64_t AtomicAlignInBits;
59 TypeInfo ValueTI = C.getTypeInfo(ValueTy);
60 ValueSizeInBits = ValueTI.Width;
61 ValueAlignInBits = ValueTI.Align;
John McCalla8ec7eb2013-03-07 21:37:17 +000062
Alexey Bataevb57056f2015-01-22 06:17:56 +000063 TypeInfo AtomicTI = C.getTypeInfo(AtomicTy);
64 AtomicSizeInBits = AtomicTI.Width;
65 AtomicAlignInBits = AtomicTI.Align;
John McCalla8ec7eb2013-03-07 21:37:17 +000066
Alexey Bataevb57056f2015-01-22 06:17:56 +000067 assert(ValueSizeInBits <= AtomicSizeInBits);
68 assert(ValueAlignInBits <= AtomicAlignInBits);
John McCalla8ec7eb2013-03-07 21:37:17 +000069
Alexey Bataevb57056f2015-01-22 06:17:56 +000070 AtomicAlign = C.toCharUnitsFromBits(AtomicAlignInBits);
71 ValueAlign = C.toCharUnitsFromBits(ValueAlignInBits);
72 if (lvalue.getAlignment().isZero())
73 lvalue.setAlignment(AtomicAlign);
John McCalla8ec7eb2013-03-07 21:37:17 +000074
Alexey Bataevb57056f2015-01-22 06:17:56 +000075 LVal = lvalue;
76 } else if (lvalue.isBitField()) {
Alexey Bataevb8329262015-02-27 06:33:30 +000077 ValueTy = lvalue.getType();
78 ValueSizeInBits = C.getTypeSize(ValueTy);
Alexey Bataevb57056f2015-01-22 06:17:56 +000079 auto &OrigBFI = lvalue.getBitFieldInfo();
80 auto Offset = OrigBFI.Offset % C.toBits(lvalue.getAlignment());
81 AtomicSizeInBits = C.toBits(
82 C.toCharUnitsFromBits(Offset + OrigBFI.Size + C.getCharWidth() - 1)
Rui Ueyama83aa9792016-01-14 21:00:27 +000083 .alignTo(lvalue.getAlignment()));
John McCall7f416cc2015-09-08 08:05:57 +000084 auto VoidPtrAddr = CGF.EmitCastToVoidPtr(lvalue.getBitFieldPointer());
Alexey Bataevb57056f2015-01-22 06:17:56 +000085 auto OffsetInChars =
86 (C.toCharUnitsFromBits(OrigBFI.Offset) / lvalue.getAlignment()) *
87 lvalue.getAlignment();
88 VoidPtrAddr = CGF.Builder.CreateConstGEP1_64(
89 VoidPtrAddr, OffsetInChars.getQuantity());
90 auto Addr = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
91 VoidPtrAddr,
92 CGF.Builder.getIntNTy(AtomicSizeInBits)->getPointerTo(),
93 "atomic_bitfield_base");
94 BFI = OrigBFI;
95 BFI.Offset = Offset;
96 BFI.StorageSize = AtomicSizeInBits;
Ulrich Weigand03ce2a12015-07-10 17:30:00 +000097 BFI.StorageOffset += OffsetInChars;
John McCall7f416cc2015-09-08 08:05:57 +000098 LVal = LValue::MakeBitfield(Address(Addr, lvalue.getAlignment()),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +000099 BFI, lvalue.getType(), lvalue.getBaseInfo(),
100 lvalue.getTBAAInfo());
Alexey Bataevb8329262015-02-27 06:33:30 +0000101 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(),
Ivan A. Kosarev383890b2017-10-06 08:17:48 +0000207 LVal.getBaseInfo(), 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);
John McCallb92ab1a2016-10-26 23:46:34 +0000311 auto callee = CGCallee::forDirect(fn);
312 return CGF.EmitCall(fnInfo, callee, ReturnValueSlot(), args);
John McCalla8ec7eb2013-03-07 21:37:17 +0000313}
314
315/// Does a store of the given IR type modify the full expected width?
316static bool isFullSizeType(CodeGenModule &CGM, llvm::Type *type,
317 uint64_t expectedSize) {
318 return (CGM.getDataLayout().getTypeStoreSize(type) * 8 == expectedSize);
319}
320
321/// Does the atomic type require memsetting to zero before initialization?
322///
323/// The IR type is provided as a way of making certain queries faster.
324bool AtomicInfo::requiresMemSetZero(llvm::Type *type) const {
325 // If the atomic type has size padding, we definitely need a memset.
326 if (hasPadding()) return true;
327
328 // Otherwise, do some simple heuristics to try to avoid it:
329 switch (getEvaluationKind()) {
330 // For scalars and complexes, check whether the store size of the
331 // type uses the full size.
332 case TEK_Scalar:
333 return !isFullSizeType(CGF.CGM, type, AtomicSizeInBits);
334 case TEK_Complex:
335 return !isFullSizeType(CGF.CGM, type->getStructElementType(0),
336 AtomicSizeInBits / 2);
337
Eli Friedmanbe4504d2013-07-11 01:32:21 +0000338 // Padding in structs has an undefined bit pattern. User beware.
John McCalla8ec7eb2013-03-07 21:37:17 +0000339 case TEK_Aggregate:
Eli Friedmanbe4504d2013-07-11 01:32:21 +0000340 return false;
John McCalla8ec7eb2013-03-07 21:37:17 +0000341 }
342 llvm_unreachable("bad evaluation kind");
343}
344
Alexey Bataevb57056f2015-01-22 06:17:56 +0000345bool AtomicInfo::emitMemSetZeroIfNecessary() const {
346 assert(LVal.isSimple());
John McCall7f416cc2015-09-08 08:05:57 +0000347 llvm::Value *addr = LVal.getPointer();
John McCalla8ec7eb2013-03-07 21:37:17 +0000348 if (!requiresMemSetZero(addr->getType()->getPointerElementType()))
Eli Friedmanbe4504d2013-07-11 01:32:21 +0000349 return false;
John McCalla8ec7eb2013-03-07 21:37:17 +0000350
Alexey Bataevb8329262015-02-27 06:33:30 +0000351 CGF.Builder.CreateMemSet(
352 addr, llvm::ConstantInt::get(CGF.Int8Ty, 0),
353 CGF.getContext().toCharUnitsFromBits(AtomicSizeInBits).getQuantity(),
354 LVal.getAlignment().getQuantity());
Eli Friedmanbe4504d2013-07-11 01:32:21 +0000355 return true;
John McCalla8ec7eb2013-03-07 21:37:17 +0000356}
357
Tim Northovercadbbe12014-06-13 19:43:04 +0000358static void emitAtomicCmpXchg(CodeGenFunction &CGF, AtomicExpr *E, bool IsWeak,
John McCall7f416cc2015-09-08 08:05:57 +0000359 Address Dest, Address Ptr,
360 Address Val1, Address Val2,
361 uint64_t Size,
Tim Northover9c177222014-03-13 19:25:48 +0000362 llvm::AtomicOrdering SuccessOrder,
Yaxun Liu39195062017-08-04 18:16:31 +0000363 llvm::AtomicOrdering FailureOrder,
364 llvm::SyncScope::ID Scope) {
Tim Northover9c177222014-03-13 19:25:48 +0000365 // Note that cmpxchg doesn't support weak cmpxchg, at least at the moment.
John McCall7f416cc2015-09-08 08:05:57 +0000366 llvm::Value *Expected = CGF.Builder.CreateLoad(Val1);
367 llvm::Value *Desired = CGF.Builder.CreateLoad(Val2);
Tim Northover9c177222014-03-13 19:25:48 +0000368
Tim Northoverb49b04b2014-06-13 14:24:59 +0000369 llvm::AtomicCmpXchgInst *Pair = CGF.Builder.CreateAtomicCmpXchg(
Yaxun Liu39195062017-08-04 18:16:31 +0000370 Ptr.getPointer(), Expected, Desired, SuccessOrder, FailureOrder,
371 Scope);
Tim Northoverb49b04b2014-06-13 14:24:59 +0000372 Pair->setVolatile(E->isVolatile());
Tim Northovercadbbe12014-06-13 19:43:04 +0000373 Pair->setWeak(IsWeak);
Tim Northover9c177222014-03-13 19:25:48 +0000374
375 // Cmp holds the result of the compare-exchange operation: true on success,
376 // false on failure.
Tim Northoverb49b04b2014-06-13 14:24:59 +0000377 llvm::Value *Old = CGF.Builder.CreateExtractValue(Pair, 0);
378 llvm::Value *Cmp = CGF.Builder.CreateExtractValue(Pair, 1);
Tim Northover9c177222014-03-13 19:25:48 +0000379
380 // This basic block is used to hold the store instruction if the operation
381 // failed.
382 llvm::BasicBlock *StoreExpectedBB =
383 CGF.createBasicBlock("cmpxchg.store_expected", CGF.CurFn);
384
385 // This basic block is the exit point of the operation, we should end up
386 // here regardless of whether or not the operation succeeded.
387 llvm::BasicBlock *ContinueBB =
388 CGF.createBasicBlock("cmpxchg.continue", CGF.CurFn);
389
390 // Update Expected if Expected isn't equal to Old, otherwise branch to the
391 // exit point.
392 CGF.Builder.CreateCondBr(Cmp, ContinueBB, StoreExpectedBB);
393
394 CGF.Builder.SetInsertPoint(StoreExpectedBB);
395 // Update the memory at Expected with Old's value.
John McCall7f416cc2015-09-08 08:05:57 +0000396 CGF.Builder.CreateStore(Old, Val1);
Tim Northover9c177222014-03-13 19:25:48 +0000397 // Finally, branch to the exit point.
398 CGF.Builder.CreateBr(ContinueBB);
399
400 CGF.Builder.SetInsertPoint(ContinueBB);
401 // Update the memory at Dest with Cmp's value.
402 CGF.EmitStoreOfScalar(Cmp, CGF.MakeAddrLValue(Dest, E->getType()));
Tim Northover9c177222014-03-13 19:25:48 +0000403}
404
405/// Given an ordering required on success, emit all possible cmpxchg
406/// instructions to cope with the provided (but possibly only dynamically known)
407/// FailureOrder.
408static void emitAtomicCmpXchgFailureSet(CodeGenFunction &CGF, AtomicExpr *E,
JF Bastiendda2cb12016-04-18 18:01:49 +0000409 bool IsWeak, Address Dest, Address Ptr,
410 Address Val1, Address Val2,
Tim Northover9c177222014-03-13 19:25:48 +0000411 llvm::Value *FailureOrderVal,
John McCall7f416cc2015-09-08 08:05:57 +0000412 uint64_t Size,
Yaxun Liu39195062017-08-04 18:16:31 +0000413 llvm::AtomicOrdering SuccessOrder,
414 llvm::SyncScope::ID Scope) {
Tim Northover9c177222014-03-13 19:25:48 +0000415 llvm::AtomicOrdering FailureOrder;
416 if (llvm::ConstantInt *FO = dyn_cast<llvm::ConstantInt>(FailureOrderVal)) {
JF Bastiendda2cb12016-04-18 18:01:49 +0000417 auto FOS = FO->getSExtValue();
418 if (!llvm::isValidAtomicOrderingCABI(FOS))
JF Bastien92f4ef12016-04-06 17:26:42 +0000419 FailureOrder = llvm::AtomicOrdering::Monotonic;
JF Bastiendda2cb12016-04-18 18:01:49 +0000420 else
421 switch ((llvm::AtomicOrderingCABI)FOS) {
422 case llvm::AtomicOrderingCABI::relaxed:
423 case llvm::AtomicOrderingCABI::release:
424 case llvm::AtomicOrderingCABI::acq_rel:
425 FailureOrder = llvm::AtomicOrdering::Monotonic;
426 break;
427 case llvm::AtomicOrderingCABI::consume:
428 case llvm::AtomicOrderingCABI::acquire:
429 FailureOrder = llvm::AtomicOrdering::Acquire;
430 break;
431 case llvm::AtomicOrderingCABI::seq_cst:
432 FailureOrder = llvm::AtomicOrdering::SequentiallyConsistent;
433 break;
434 }
JF Bastiendd11ee72016-04-06 23:37:36 +0000435 if (isStrongerThan(FailureOrder, SuccessOrder)) {
436 // Don't assert on undefined behavior "failure argument shall be no
437 // stronger than the success argument".
Tim Northover9c177222014-03-13 19:25:48 +0000438 FailureOrder =
JF Bastiendda2cb12016-04-18 18:01:49 +0000439 llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(SuccessOrder);
Tim Northover9c177222014-03-13 19:25:48 +0000440 }
JF Bastiendda2cb12016-04-18 18:01:49 +0000441 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, SuccessOrder,
Yaxun Liu39195062017-08-04 18:16:31 +0000442 FailureOrder, Scope);
Tim Northover9c177222014-03-13 19:25:48 +0000443 return;
444 }
445
446 // Create all the relevant BB's
Craig Topper8a13c412014-05-21 05:09:00 +0000447 llvm::BasicBlock *MonotonicBB = nullptr, *AcquireBB = nullptr,
448 *SeqCstBB = nullptr;
Tim Northover9c177222014-03-13 19:25:48 +0000449 MonotonicBB = CGF.createBasicBlock("monotonic_fail", CGF.CurFn);
JF Bastien92f4ef12016-04-06 17:26:42 +0000450 if (SuccessOrder != llvm::AtomicOrdering::Monotonic &&
451 SuccessOrder != llvm::AtomicOrdering::Release)
Tim Northover9c177222014-03-13 19:25:48 +0000452 AcquireBB = CGF.createBasicBlock("acquire_fail", CGF.CurFn);
JF Bastien92f4ef12016-04-06 17:26:42 +0000453 if (SuccessOrder == llvm::AtomicOrdering::SequentiallyConsistent)
Tim Northover9c177222014-03-13 19:25:48 +0000454 SeqCstBB = CGF.createBasicBlock("seqcst_fail", CGF.CurFn);
455
456 llvm::BasicBlock *ContBB = CGF.createBasicBlock("atomic.continue", CGF.CurFn);
457
458 llvm::SwitchInst *SI = CGF.Builder.CreateSwitch(FailureOrderVal, MonotonicBB);
459
460 // Emit all the different atomics
461
462 // MonotonicBB is arbitrarily chosen as the default case; in practice, this
463 // doesn't matter unless someone is crazy enough to use something that
464 // doesn't fold to a constant for the ordering.
465 CGF.Builder.SetInsertPoint(MonotonicBB);
Tim Northovercadbbe12014-06-13 19:43:04 +0000466 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2,
Yaxun Liu39195062017-08-04 18:16:31 +0000467 Size, SuccessOrder, llvm::AtomicOrdering::Monotonic, Scope);
Tim Northover9c177222014-03-13 19:25:48 +0000468 CGF.Builder.CreateBr(ContBB);
469
470 if (AcquireBB) {
471 CGF.Builder.SetInsertPoint(AcquireBB);
Tim Northovercadbbe12014-06-13 19:43:04 +0000472 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2,
Yaxun Liu39195062017-08-04 18:16:31 +0000473 Size, SuccessOrder, llvm::AtomicOrdering::Acquire, Scope);
Tim Northover9c177222014-03-13 19:25:48 +0000474 CGF.Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +0000475 SI->addCase(CGF.Builder.getInt32((int)llvm::AtomicOrderingCABI::consume),
Tim Northover9c177222014-03-13 19:25:48 +0000476 AcquireBB);
JF Bastiendda2cb12016-04-18 18:01:49 +0000477 SI->addCase(CGF.Builder.getInt32((int)llvm::AtomicOrderingCABI::acquire),
Tim Northover9c177222014-03-13 19:25:48 +0000478 AcquireBB);
479 }
480 if (SeqCstBB) {
481 CGF.Builder.SetInsertPoint(SeqCstBB);
JF Bastien92f4ef12016-04-06 17:26:42 +0000482 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, SuccessOrder,
Yaxun Liu39195062017-08-04 18:16:31 +0000483 llvm::AtomicOrdering::SequentiallyConsistent, Scope);
Tim Northover9c177222014-03-13 19:25:48 +0000484 CGF.Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +0000485 SI->addCase(CGF.Builder.getInt32((int)llvm::AtomicOrderingCABI::seq_cst),
Tim Northover9c177222014-03-13 19:25:48 +0000486 SeqCstBB);
487 }
488
489 CGF.Builder.SetInsertPoint(ContBB);
490}
491
John McCall7f416cc2015-09-08 08:05:57 +0000492static void EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *E, Address Dest,
493 Address Ptr, Address Val1, Address Val2,
Tim Northovercadbbe12014-06-13 19:43:04 +0000494 llvm::Value *IsWeak, llvm::Value *FailureOrder,
Yaxun Liu39195062017-08-04 18:16:31 +0000495 uint64_t Size, llvm::AtomicOrdering Order,
496 llvm::SyncScope::ID Scope) {
John McCallfc207f22013-03-07 21:37:12 +0000497 llvm::AtomicRMWInst::BinOp Op = llvm::AtomicRMWInst::Add;
498 llvm::Instruction::BinaryOps PostOp = (llvm::Instruction::BinaryOps)0;
499
500 switch (E->getOp()) {
501 case AtomicExpr::AO__c11_atomic_init:
Yaxun Liu39195062017-08-04 18:16:31 +0000502 case AtomicExpr::AO__opencl_atomic_init:
John McCallfc207f22013-03-07 21:37:12 +0000503 llvm_unreachable("Already handled!");
504
505 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
Yaxun Liu39195062017-08-04 18:16:31 +0000506 case AtomicExpr::AO__opencl_atomic_compare_exchange_strong:
Tim Northovercadbbe12014-06-13 19:43:04 +0000507 emitAtomicCmpXchgFailureSet(CGF, E, false, Dest, Ptr, Val1, Val2,
Yaxun Liu39195062017-08-04 18:16:31 +0000508 FailureOrder, Size, Order, Scope);
John McCallfc207f22013-03-07 21:37:12 +0000509 return;
Tim Northovercadbbe12014-06-13 19:43:04 +0000510 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
Yaxun Liu39195062017-08-04 18:16:31 +0000511 case AtomicExpr::AO__opencl_atomic_compare_exchange_weak:
Tim Northovercadbbe12014-06-13 19:43:04 +0000512 emitAtomicCmpXchgFailureSet(CGF, E, true, Dest, Ptr, Val1, Val2,
Yaxun Liu39195062017-08-04 18:16:31 +0000513 FailureOrder, Size, Order, Scope);
Tim Northovercadbbe12014-06-13 19:43:04 +0000514 return;
515 case AtomicExpr::AO__atomic_compare_exchange:
516 case AtomicExpr::AO__atomic_compare_exchange_n: {
517 if (llvm::ConstantInt *IsWeakC = dyn_cast<llvm::ConstantInt>(IsWeak)) {
518 emitAtomicCmpXchgFailureSet(CGF, E, IsWeakC->getZExtValue(), Dest, Ptr,
Yaxun Liu39195062017-08-04 18:16:31 +0000519 Val1, Val2, FailureOrder, Size, Order, Scope);
Tim Northovercadbbe12014-06-13 19:43:04 +0000520 } else {
521 // Create all the relevant BB's
522 llvm::BasicBlock *StrongBB =
523 CGF.createBasicBlock("cmpxchg.strong", CGF.CurFn);
524 llvm::BasicBlock *WeakBB = CGF.createBasicBlock("cmxchg.weak", CGF.CurFn);
525 llvm::BasicBlock *ContBB =
526 CGF.createBasicBlock("cmpxchg.continue", CGF.CurFn);
527
528 llvm::SwitchInst *SI = CGF.Builder.CreateSwitch(IsWeak, WeakBB);
529 SI->addCase(CGF.Builder.getInt1(false), StrongBB);
530
531 CGF.Builder.SetInsertPoint(StrongBB);
532 emitAtomicCmpXchgFailureSet(CGF, E, false, Dest, Ptr, Val1, Val2,
Yaxun Liu39195062017-08-04 18:16:31 +0000533 FailureOrder, Size, Order, Scope);
Tim Northovercadbbe12014-06-13 19:43:04 +0000534 CGF.Builder.CreateBr(ContBB);
535
536 CGF.Builder.SetInsertPoint(WeakBB);
537 emitAtomicCmpXchgFailureSet(CGF, E, true, Dest, Ptr, Val1, Val2,
Yaxun Liu39195062017-08-04 18:16:31 +0000538 FailureOrder, Size, Order, Scope);
Tim Northovercadbbe12014-06-13 19:43:04 +0000539 CGF.Builder.CreateBr(ContBB);
540
541 CGF.Builder.SetInsertPoint(ContBB);
542 }
543 return;
544 }
John McCallfc207f22013-03-07 21:37:12 +0000545 case AtomicExpr::AO__c11_atomic_load:
Yaxun Liu39195062017-08-04 18:16:31 +0000546 case AtomicExpr::AO__opencl_atomic_load:
John McCallfc207f22013-03-07 21:37:12 +0000547 case AtomicExpr::AO__atomic_load_n:
548 case AtomicExpr::AO__atomic_load: {
549 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Ptr);
Yaxun Liu39195062017-08-04 18:16:31 +0000550 Load->setAtomic(Order, Scope);
John McCallfc207f22013-03-07 21:37:12 +0000551 Load->setVolatile(E->isVolatile());
John McCall7f416cc2015-09-08 08:05:57 +0000552 CGF.Builder.CreateStore(Load, Dest);
John McCallfc207f22013-03-07 21:37:12 +0000553 return;
554 }
555
556 case AtomicExpr::AO__c11_atomic_store:
Yaxun Liu39195062017-08-04 18:16:31 +0000557 case AtomicExpr::AO__opencl_atomic_store:
John McCallfc207f22013-03-07 21:37:12 +0000558 case AtomicExpr::AO__atomic_store:
559 case AtomicExpr::AO__atomic_store_n: {
John McCall7f416cc2015-09-08 08:05:57 +0000560 llvm::Value *LoadVal1 = CGF.Builder.CreateLoad(Val1);
John McCallfc207f22013-03-07 21:37:12 +0000561 llvm::StoreInst *Store = CGF.Builder.CreateStore(LoadVal1, Ptr);
Yaxun Liu39195062017-08-04 18:16:31 +0000562 Store->setAtomic(Order, Scope);
John McCallfc207f22013-03-07 21:37:12 +0000563 Store->setVolatile(E->isVolatile());
564 return;
565 }
566
567 case AtomicExpr::AO__c11_atomic_exchange:
Yaxun Liu39195062017-08-04 18:16:31 +0000568 case AtomicExpr::AO__opencl_atomic_exchange:
John McCallfc207f22013-03-07 21:37:12 +0000569 case AtomicExpr::AO__atomic_exchange_n:
570 case AtomicExpr::AO__atomic_exchange:
571 Op = llvm::AtomicRMWInst::Xchg;
572 break;
573
574 case AtomicExpr::AO__atomic_add_fetch:
575 PostOp = llvm::Instruction::Add;
576 // Fall through.
577 case AtomicExpr::AO__c11_atomic_fetch_add:
Yaxun Liu39195062017-08-04 18:16:31 +0000578 case AtomicExpr::AO__opencl_atomic_fetch_add:
John McCallfc207f22013-03-07 21:37:12 +0000579 case AtomicExpr::AO__atomic_fetch_add:
580 Op = llvm::AtomicRMWInst::Add;
581 break;
582
583 case AtomicExpr::AO__atomic_sub_fetch:
584 PostOp = llvm::Instruction::Sub;
585 // Fall through.
586 case AtomicExpr::AO__c11_atomic_fetch_sub:
Yaxun Liu39195062017-08-04 18:16:31 +0000587 case AtomicExpr::AO__opencl_atomic_fetch_sub:
John McCallfc207f22013-03-07 21:37:12 +0000588 case AtomicExpr::AO__atomic_fetch_sub:
589 Op = llvm::AtomicRMWInst::Sub;
590 break;
591
Yaxun Liu39195062017-08-04 18:16:31 +0000592 case AtomicExpr::AO__opencl_atomic_fetch_min:
593 Op = E->getValueType()->isSignedIntegerType() ? llvm::AtomicRMWInst::Min
594 : llvm::AtomicRMWInst::UMin;
595 break;
596
597 case AtomicExpr::AO__opencl_atomic_fetch_max:
598 Op = E->getValueType()->isSignedIntegerType() ? llvm::AtomicRMWInst::Max
599 : llvm::AtomicRMWInst::UMax;
600 break;
601
John McCallfc207f22013-03-07 21:37:12 +0000602 case AtomicExpr::AO__atomic_and_fetch:
603 PostOp = llvm::Instruction::And;
604 // Fall through.
605 case AtomicExpr::AO__c11_atomic_fetch_and:
Yaxun Liu39195062017-08-04 18:16:31 +0000606 case AtomicExpr::AO__opencl_atomic_fetch_and:
John McCallfc207f22013-03-07 21:37:12 +0000607 case AtomicExpr::AO__atomic_fetch_and:
608 Op = llvm::AtomicRMWInst::And;
609 break;
610
611 case AtomicExpr::AO__atomic_or_fetch:
612 PostOp = llvm::Instruction::Or;
613 // Fall through.
614 case AtomicExpr::AO__c11_atomic_fetch_or:
Yaxun Liu39195062017-08-04 18:16:31 +0000615 case AtomicExpr::AO__opencl_atomic_fetch_or:
John McCallfc207f22013-03-07 21:37:12 +0000616 case AtomicExpr::AO__atomic_fetch_or:
617 Op = llvm::AtomicRMWInst::Or;
618 break;
619
620 case AtomicExpr::AO__atomic_xor_fetch:
621 PostOp = llvm::Instruction::Xor;
622 // Fall through.
623 case AtomicExpr::AO__c11_atomic_fetch_xor:
Yaxun Liu39195062017-08-04 18:16:31 +0000624 case AtomicExpr::AO__opencl_atomic_fetch_xor:
John McCallfc207f22013-03-07 21:37:12 +0000625 case AtomicExpr::AO__atomic_fetch_xor:
626 Op = llvm::AtomicRMWInst::Xor;
627 break;
628
629 case AtomicExpr::AO__atomic_nand_fetch:
James Y Knight7aefb5b2015-11-12 18:37:29 +0000630 PostOp = llvm::Instruction::And; // the NOT is special cased below
631 // Fall through.
John McCallfc207f22013-03-07 21:37:12 +0000632 case AtomicExpr::AO__atomic_fetch_nand:
633 Op = llvm::AtomicRMWInst::Nand;
634 break;
635 }
636
John McCall7f416cc2015-09-08 08:05:57 +0000637 llvm::Value *LoadVal1 = CGF.Builder.CreateLoad(Val1);
John McCallfc207f22013-03-07 21:37:12 +0000638 llvm::AtomicRMWInst *RMWI =
Yaxun Liu39195062017-08-04 18:16:31 +0000639 CGF.Builder.CreateAtomicRMW(Op, Ptr.getPointer(), LoadVal1, Order, Scope);
John McCallfc207f22013-03-07 21:37:12 +0000640 RMWI->setVolatile(E->isVolatile());
641
642 // For __atomic_*_fetch operations, perform the operation again to
643 // determine the value which was written.
644 llvm::Value *Result = RMWI;
645 if (PostOp)
646 Result = CGF.Builder.CreateBinOp(PostOp, RMWI, LoadVal1);
647 if (E->getOp() == AtomicExpr::AO__atomic_nand_fetch)
648 Result = CGF.Builder.CreateNot(Result);
John McCall7f416cc2015-09-08 08:05:57 +0000649 CGF.Builder.CreateStore(Result, Dest);
John McCallfc207f22013-03-07 21:37:12 +0000650}
651
652// This function emits any expression (scalar, complex, or aggregate)
653// into a temporary alloca.
John McCall7f416cc2015-09-08 08:05:57 +0000654static Address
John McCallfc207f22013-03-07 21:37:12 +0000655EmitValToTemp(CodeGenFunction &CGF, Expr *E) {
John McCall7f416cc2015-09-08 08:05:57 +0000656 Address DeclPtr = CGF.CreateMemTemp(E->getType(), ".atomictmp");
John McCallfc207f22013-03-07 21:37:12 +0000657 CGF.EmitAnyExprToMem(E, DeclPtr, E->getType().getQualifiers(),
658 /*Init*/ true);
659 return DeclPtr;
660}
661
Yaxun Liu30d652a2017-08-15 16:02:49 +0000662static void EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *Expr, Address Dest,
663 Address Ptr, Address Val1, Address Val2,
664 llvm::Value *IsWeak, llvm::Value *FailureOrder,
665 uint64_t Size, llvm::AtomicOrdering Order,
666 llvm::Value *Scope) {
667 auto ScopeModel = Expr->getScopeModel();
668
669 // LLVM atomic instructions always have synch scope. If clang atomic
670 // expression has no scope operand, use default LLVM synch scope.
671 if (!ScopeModel) {
672 EmitAtomicOp(CGF, Expr, Dest, Ptr, Val1, Val2, IsWeak, FailureOrder, Size,
673 Order, CGF.CGM.getLLVMContext().getOrInsertSyncScopeID(""));
674 return;
675 }
676
677 // Handle constant scope.
678 if (auto SC = dyn_cast<llvm::ConstantInt>(Scope)) {
679 auto SCID = CGF.getTargetHooks().getLLVMSyncScopeID(
680 ScopeModel->map(SC->getZExtValue()), CGF.CGM.getLLVMContext());
681 EmitAtomicOp(CGF, Expr, Dest, Ptr, Val1, Val2, IsWeak, FailureOrder, Size,
682 Order, SCID);
683 return;
684 }
685
686 // Handle non-constant scope.
687 auto &Builder = CGF.Builder;
688 auto Scopes = ScopeModel->getRuntimeValues();
689 llvm::DenseMap<unsigned, llvm::BasicBlock *> BB;
690 for (auto S : Scopes)
691 BB[S] = CGF.createBasicBlock(getAsString(ScopeModel->map(S)), CGF.CurFn);
692
693 llvm::BasicBlock *ContBB =
694 CGF.createBasicBlock("atomic.scope.continue", CGF.CurFn);
695
696 auto *SC = Builder.CreateIntCast(Scope, Builder.getInt32Ty(), false);
697 // If unsupported synch scope is encountered at run time, assume a fallback
698 // synch scope value.
699 auto FallBack = ScopeModel->getFallBackValue();
700 llvm::SwitchInst *SI = Builder.CreateSwitch(SC, BB[FallBack]);
701 for (auto S : Scopes) {
702 auto *B = BB[S];
703 if (S != FallBack)
704 SI->addCase(Builder.getInt32(S), B);
705
706 Builder.SetInsertPoint(B);
707 EmitAtomicOp(CGF, Expr, Dest, Ptr, Val1, Val2, IsWeak, FailureOrder, Size,
708 Order,
709 CGF.getTargetHooks().getLLVMSyncScopeID(ScopeModel->map(S),
710 CGF.getLLVMContext()));
711 Builder.CreateBr(ContBB);
712 }
713
714 Builder.SetInsertPoint(ContBB);
715}
716
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000717static void
718AddDirectArgument(CodeGenFunction &CGF, CallArgList &Args,
Nick Lewycky2d84e842013-10-02 02:29:49 +0000719 bool UseOptimizedLibcall, llvm::Value *Val, QualType ValTy,
David Majnemer0392cf82014-08-29 07:27:49 +0000720 SourceLocation Loc, CharUnits SizeInChars) {
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000721 if (UseOptimizedLibcall) {
722 // Load value and pass it to the function directly.
John McCall7f416cc2015-09-08 08:05:57 +0000723 CharUnits Align = CGF.getContext().getTypeAlignInChars(ValTy);
David Majnemer0392cf82014-08-29 07:27:49 +0000724 int64_t SizeInBits = CGF.getContext().toBits(SizeInChars);
725 ValTy =
726 CGF.getContext().getIntTypeForBitwidth(SizeInBits, /*Signed=*/false);
727 llvm::Type *IPtrTy = llvm::IntegerType::get(CGF.getLLVMContext(),
728 SizeInBits)->getPointerTo();
John McCall7f416cc2015-09-08 08:05:57 +0000729 Address Ptr = Address(CGF.Builder.CreateBitCast(Val, IPtrTy), Align);
730 Val = CGF.EmitLoadOfScalar(Ptr, false,
731 CGF.getContext().getPointerType(ValTy),
David Majnemer0392cf82014-08-29 07:27:49 +0000732 Loc);
733 // Coerce the value into an appropriately sized integer type.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000734 Args.add(RValue::get(Val), ValTy);
735 } else {
736 // Non-optimized functions always take a reference.
737 Args.add(RValue::get(CGF.EmitCastToVoidPtr(Val)),
738 CGF.getContext().VoidPtrTy);
739 }
740}
741
Tim Northovercc2a6e02015-11-09 19:56:35 +0000742RValue CodeGenFunction::EmitAtomicExpr(AtomicExpr *E) {
John McCallfc207f22013-03-07 21:37:12 +0000743 QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
744 QualType MemTy = AtomicTy;
745 if (const AtomicType *AT = AtomicTy->getAs<AtomicType>())
746 MemTy = AT->getValueType();
John McCall7f416cc2015-09-08 08:05:57 +0000747 llvm::Value *IsWeak = nullptr, *OrderFail = nullptr;
748
749 Address Val1 = Address::invalid();
750 Address Val2 = Address::invalid();
Tim Northovercc2a6e02015-11-09 19:56:35 +0000751 Address Dest = Address::invalid();
Wei Mi01414bd2017-09-25 19:57:59 +0000752 Address Ptr = EmitPointerWithAlignment(E->getPtr());
753
754 CharUnits sizeChars, alignChars;
755 std::tie(sizeChars, alignChars) = getContext().getTypeInfoInChars(AtomicTy);
756 uint64_t Size = sizeChars.getQuantity();
757 unsigned MaxInlineWidthInBits = getTarget().getMaxAtomicInlineWidth();
758 bool UseLibcall = ((Ptr.getAlignment() % sizeChars) != 0 ||
759 getContext().toBits(sizeChars) > MaxInlineWidthInBits);
John McCallfc207f22013-03-07 21:37:12 +0000760
Yaxun Liu39195062017-08-04 18:16:31 +0000761 if (E->getOp() == AtomicExpr::AO__c11_atomic_init ||
762 E->getOp() == AtomicExpr::AO__opencl_atomic_init) {
John McCall7f416cc2015-09-08 08:05:57 +0000763 LValue lvalue = MakeAddrLValue(Ptr, AtomicTy);
John McCalla8ec7eb2013-03-07 21:37:17 +0000764 EmitAtomicInit(E->getVal1(), lvalue);
Craig Topper8a13c412014-05-21 05:09:00 +0000765 return RValue::get(nullptr);
John McCallfc207f22013-03-07 21:37:12 +0000766 }
767
Craig Topper8a13c412014-05-21 05:09:00 +0000768 llvm::Value *Order = EmitScalarExpr(E->getOrder());
Yaxun Liu30d652a2017-08-15 16:02:49 +0000769 llvm::Value *Scope =
770 E->getScopeModel() ? EmitScalarExpr(E->getScope()) : nullptr;
John McCallfc207f22013-03-07 21:37:12 +0000771
772 switch (E->getOp()) {
773 case AtomicExpr::AO__c11_atomic_init:
Yaxun Liu39195062017-08-04 18:16:31 +0000774 case AtomicExpr::AO__opencl_atomic_init:
James Y Knight81167fb2015-08-05 16:57:36 +0000775 llvm_unreachable("Already handled above with EmitAtomicInit!");
John McCallfc207f22013-03-07 21:37:12 +0000776
777 case AtomicExpr::AO__c11_atomic_load:
Yaxun Liu39195062017-08-04 18:16:31 +0000778 case AtomicExpr::AO__opencl_atomic_load:
John McCallfc207f22013-03-07 21:37:12 +0000779 case AtomicExpr::AO__atomic_load_n:
780 break;
781
782 case AtomicExpr::AO__atomic_load:
John McCall7f416cc2015-09-08 08:05:57 +0000783 Dest = EmitPointerWithAlignment(E->getVal1());
John McCallfc207f22013-03-07 21:37:12 +0000784 break;
785
786 case AtomicExpr::AO__atomic_store:
John McCall7f416cc2015-09-08 08:05:57 +0000787 Val1 = EmitPointerWithAlignment(E->getVal1());
John McCallfc207f22013-03-07 21:37:12 +0000788 break;
789
790 case AtomicExpr::AO__atomic_exchange:
John McCall7f416cc2015-09-08 08:05:57 +0000791 Val1 = EmitPointerWithAlignment(E->getVal1());
792 Dest = EmitPointerWithAlignment(E->getVal2());
John McCallfc207f22013-03-07 21:37:12 +0000793 break;
794
795 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
796 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
Yaxun Liu39195062017-08-04 18:16:31 +0000797 case AtomicExpr::AO__opencl_atomic_compare_exchange_strong:
798 case AtomicExpr::AO__opencl_atomic_compare_exchange_weak:
John McCallfc207f22013-03-07 21:37:12 +0000799 case AtomicExpr::AO__atomic_compare_exchange_n:
800 case AtomicExpr::AO__atomic_compare_exchange:
John McCall7f416cc2015-09-08 08:05:57 +0000801 Val1 = EmitPointerWithAlignment(E->getVal1());
John McCallfc207f22013-03-07 21:37:12 +0000802 if (E->getOp() == AtomicExpr::AO__atomic_compare_exchange)
John McCall7f416cc2015-09-08 08:05:57 +0000803 Val2 = EmitPointerWithAlignment(E->getVal2());
John McCallfc207f22013-03-07 21:37:12 +0000804 else
805 Val2 = EmitValToTemp(*this, E->getVal2());
806 OrderFail = EmitScalarExpr(E->getOrderFail());
Yaxun Liu39195062017-08-04 18:16:31 +0000807 if (E->getOp() == AtomicExpr::AO__atomic_compare_exchange_n ||
808 E->getOp() == AtomicExpr::AO__atomic_compare_exchange)
Tim Northovercadbbe12014-06-13 19:43:04 +0000809 IsWeak = EmitScalarExpr(E->getWeak());
John McCallfc207f22013-03-07 21:37:12 +0000810 break;
811
812 case AtomicExpr::AO__c11_atomic_fetch_add:
813 case AtomicExpr::AO__c11_atomic_fetch_sub:
Yaxun Liu39195062017-08-04 18:16:31 +0000814 case AtomicExpr::AO__opencl_atomic_fetch_add:
815 case AtomicExpr::AO__opencl_atomic_fetch_sub:
John McCallfc207f22013-03-07 21:37:12 +0000816 if (MemTy->isPointerType()) {
817 // For pointer arithmetic, we're required to do a bit of math:
818 // adding 1 to an int* is not the same as adding 1 to a uintptr_t.
819 // ... but only for the C11 builtins. The GNU builtins expect the
820 // user to multiply by sizeof(T).
821 QualType Val1Ty = E->getVal1()->getType();
822 llvm::Value *Val1Scalar = EmitScalarExpr(E->getVal1());
823 CharUnits PointeeIncAmt =
824 getContext().getTypeSizeInChars(MemTy->getPointeeType());
825 Val1Scalar = Builder.CreateMul(Val1Scalar, CGM.getSize(PointeeIncAmt));
John McCall7f416cc2015-09-08 08:05:57 +0000826 auto Temp = CreateMemTemp(Val1Ty, ".atomictmp");
827 Val1 = Temp;
828 EmitStoreOfScalar(Val1Scalar, MakeAddrLValue(Temp, Val1Ty));
John McCallfc207f22013-03-07 21:37:12 +0000829 break;
830 }
831 // Fall through.
832 case AtomicExpr::AO__atomic_fetch_add:
833 case AtomicExpr::AO__atomic_fetch_sub:
834 case AtomicExpr::AO__atomic_add_fetch:
835 case AtomicExpr::AO__atomic_sub_fetch:
836 case AtomicExpr::AO__c11_atomic_store:
837 case AtomicExpr::AO__c11_atomic_exchange:
Yaxun Liu39195062017-08-04 18:16:31 +0000838 case AtomicExpr::AO__opencl_atomic_store:
839 case AtomicExpr::AO__opencl_atomic_exchange:
John McCallfc207f22013-03-07 21:37:12 +0000840 case AtomicExpr::AO__atomic_store_n:
841 case AtomicExpr::AO__atomic_exchange_n:
842 case AtomicExpr::AO__c11_atomic_fetch_and:
843 case AtomicExpr::AO__c11_atomic_fetch_or:
844 case AtomicExpr::AO__c11_atomic_fetch_xor:
Yaxun Liu39195062017-08-04 18:16:31 +0000845 case AtomicExpr::AO__opencl_atomic_fetch_and:
846 case AtomicExpr::AO__opencl_atomic_fetch_or:
847 case AtomicExpr::AO__opencl_atomic_fetch_xor:
848 case AtomicExpr::AO__opencl_atomic_fetch_min:
849 case AtomicExpr::AO__opencl_atomic_fetch_max:
John McCallfc207f22013-03-07 21:37:12 +0000850 case AtomicExpr::AO__atomic_fetch_and:
851 case AtomicExpr::AO__atomic_fetch_or:
852 case AtomicExpr::AO__atomic_fetch_xor:
853 case AtomicExpr::AO__atomic_fetch_nand:
854 case AtomicExpr::AO__atomic_and_fetch:
855 case AtomicExpr::AO__atomic_or_fetch:
856 case AtomicExpr::AO__atomic_xor_fetch:
857 case AtomicExpr::AO__atomic_nand_fetch:
858 Val1 = EmitValToTemp(*this, E->getVal1());
859 break;
860 }
861
David Majnemeree8d04d2014-12-12 08:16:09 +0000862 QualType RValTy = E->getType().getUnqualifiedType();
863
Tim Northovercc2a6e02015-11-09 19:56:35 +0000864 // The inlined atomics only function on iN types, where N is a power of 2. We
865 // need to make sure (via temporaries if necessary) that all incoming values
866 // are compatible.
867 LValue AtomicVal = MakeAddrLValue(Ptr, AtomicTy);
868 AtomicInfo Atomics(*this, AtomicVal);
869
870 Ptr = Atomics.emitCastToAtomicIntPointer(Ptr);
871 if (Val1.isValid()) Val1 = Atomics.convertToAtomicIntPointer(Val1);
872 if (Val2.isValid()) Val2 = Atomics.convertToAtomicIntPointer(Val2);
873 if (Dest.isValid())
874 Dest = Atomics.emitCastToAtomicIntPointer(Dest);
875 else if (E->isCmpXChg())
876 Dest = CreateMemTemp(RValTy, "cmpxchg.bool");
877 else if (!RValTy->isVoidType())
878 Dest = Atomics.emitCastToAtomicIntPointer(Atomics.CreateTempAlloca());
John McCallfc207f22013-03-07 21:37:12 +0000879
880 // Use a library call. See: http://gcc.gnu.org/wiki/Atomic/GCCMM/LIbrary .
881 if (UseLibcall) {
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000882 bool UseOptimizedLibcall = false;
883 switch (E->getOp()) {
James Y Knight81167fb2015-08-05 16:57:36 +0000884 case AtomicExpr::AO__c11_atomic_init:
Yaxun Liu39195062017-08-04 18:16:31 +0000885 case AtomicExpr::AO__opencl_atomic_init:
James Y Knight81167fb2015-08-05 16:57:36 +0000886 llvm_unreachable("Already handled above with EmitAtomicInit!");
887
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000888 case AtomicExpr::AO__c11_atomic_fetch_add:
Yaxun Liu39195062017-08-04 18:16:31 +0000889 case AtomicExpr::AO__opencl_atomic_fetch_add:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000890 case AtomicExpr::AO__atomic_fetch_add:
891 case AtomicExpr::AO__c11_atomic_fetch_and:
Yaxun Liu39195062017-08-04 18:16:31 +0000892 case AtomicExpr::AO__opencl_atomic_fetch_and:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000893 case AtomicExpr::AO__atomic_fetch_and:
894 case AtomicExpr::AO__c11_atomic_fetch_or:
Yaxun Liu39195062017-08-04 18:16:31 +0000895 case AtomicExpr::AO__opencl_atomic_fetch_or:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000896 case AtomicExpr::AO__atomic_fetch_or:
James Y Knight81167fb2015-08-05 16:57:36 +0000897 case AtomicExpr::AO__atomic_fetch_nand:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000898 case AtomicExpr::AO__c11_atomic_fetch_sub:
Yaxun Liu39195062017-08-04 18:16:31 +0000899 case AtomicExpr::AO__opencl_atomic_fetch_sub:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000900 case AtomicExpr::AO__atomic_fetch_sub:
901 case AtomicExpr::AO__c11_atomic_fetch_xor:
Yaxun Liu39195062017-08-04 18:16:31 +0000902 case AtomicExpr::AO__opencl_atomic_fetch_xor:
903 case AtomicExpr::AO__opencl_atomic_fetch_min:
904 case AtomicExpr::AO__opencl_atomic_fetch_max:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000905 case AtomicExpr::AO__atomic_fetch_xor:
James Y Knight81167fb2015-08-05 16:57:36 +0000906 case AtomicExpr::AO__atomic_add_fetch:
907 case AtomicExpr::AO__atomic_and_fetch:
908 case AtomicExpr::AO__atomic_nand_fetch:
909 case AtomicExpr::AO__atomic_or_fetch:
910 case AtomicExpr::AO__atomic_sub_fetch:
911 case AtomicExpr::AO__atomic_xor_fetch:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000912 // For these, only library calls for certain sizes exist.
913 UseOptimizedLibcall = true;
914 break;
James Y Knight81167fb2015-08-05 16:57:36 +0000915
916 case AtomicExpr::AO__c11_atomic_load:
917 case AtomicExpr::AO__c11_atomic_store:
918 case AtomicExpr::AO__c11_atomic_exchange:
919 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
920 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
Yaxun Liu39195062017-08-04 18:16:31 +0000921 case AtomicExpr::AO__opencl_atomic_load:
922 case AtomicExpr::AO__opencl_atomic_store:
923 case AtomicExpr::AO__opencl_atomic_exchange:
924 case AtomicExpr::AO__opencl_atomic_compare_exchange_weak:
925 case AtomicExpr::AO__opencl_atomic_compare_exchange_strong:
James Y Knight81167fb2015-08-05 16:57:36 +0000926 case AtomicExpr::AO__atomic_load_n:
927 case AtomicExpr::AO__atomic_load:
928 case AtomicExpr::AO__atomic_store_n:
929 case AtomicExpr::AO__atomic_store:
930 case AtomicExpr::AO__atomic_exchange_n:
931 case AtomicExpr::AO__atomic_exchange:
932 case AtomicExpr::AO__atomic_compare_exchange_n:
933 case AtomicExpr::AO__atomic_compare_exchange:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000934 // Only use optimized library calls for sizes for which they exist.
935 if (Size == 1 || Size == 2 || Size == 4 || Size == 8)
936 UseOptimizedLibcall = true;
937 break;
938 }
John McCallfc207f22013-03-07 21:37:12 +0000939
John McCallfc207f22013-03-07 21:37:12 +0000940 CallArgList Args;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000941 if (!UseOptimizedLibcall) {
942 // For non-optimized library calls, the size is the first parameter
943 Args.add(RValue::get(llvm::ConstantInt::get(SizeTy, Size)),
944 getContext().getSizeType());
945 }
946 // Atomic address is the first or second parameter
Yaxun Liu39195062017-08-04 18:16:31 +0000947 // The OpenCL atomic library functions only accept pointer arguments to
948 // generic address space.
949 auto CastToGenericAddrSpace = [&](llvm::Value *V, QualType PT) {
950 if (!E->isOpenCL())
951 return V;
952 auto AS = PT->getAs<PointerType>()->getPointeeType().getAddressSpace();
953 if (AS == LangAS::opencl_generic)
954 return V;
955 auto DestAS = getContext().getTargetAddressSpace(LangAS::opencl_generic);
956 auto T = V->getType();
957 auto *DestType = T->getPointerElementType()->getPointerTo(DestAS);
958
959 return getTargetHooks().performAddrSpaceCast(
960 *this, V, AS, LangAS::opencl_generic, DestType, false);
961 };
962
963 Args.add(RValue::get(CastToGenericAddrSpace(
964 EmitCastToVoidPtr(Ptr.getPointer()), E->getPtr()->getType())),
John McCall7f416cc2015-09-08 08:05:57 +0000965 getContext().VoidPtrTy);
John McCallfc207f22013-03-07 21:37:12 +0000966
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000967 std::string LibCallName;
Logan Chien74798a32014-03-26 17:35:01 +0000968 QualType LoweredMemTy =
969 MemTy->isPointerType() ? getContext().getIntPtrType() : MemTy;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000970 QualType RetTy;
971 bool HaveRetTy = false;
James Y Knight7aefb5b2015-11-12 18:37:29 +0000972 llvm::Instruction::BinaryOps PostOp = (llvm::Instruction::BinaryOps)0;
John McCallfc207f22013-03-07 21:37:12 +0000973 switch (E->getOp()) {
James Y Knight81167fb2015-08-05 16:57:36 +0000974 case AtomicExpr::AO__c11_atomic_init:
Yaxun Liu39195062017-08-04 18:16:31 +0000975 case AtomicExpr::AO__opencl_atomic_init:
James Y Knight81167fb2015-08-05 16:57:36 +0000976 llvm_unreachable("Already handled!");
977
John McCallfc207f22013-03-07 21:37:12 +0000978 // There is only one libcall for compare an exchange, because there is no
979 // optimisation benefit possible from a libcall version of a weak compare
980 // and exchange.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000981 // bool __atomic_compare_exchange(size_t size, void *mem, void *expected,
John McCallfc207f22013-03-07 21:37:12 +0000982 // void *desired, int success, int failure)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000983 // bool __atomic_compare_exchange_N(T *mem, T *expected, T desired,
984 // int success, int failure)
John McCallfc207f22013-03-07 21:37:12 +0000985 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
986 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
Yaxun Liu39195062017-08-04 18:16:31 +0000987 case AtomicExpr::AO__opencl_atomic_compare_exchange_weak:
988 case AtomicExpr::AO__opencl_atomic_compare_exchange_strong:
John McCallfc207f22013-03-07 21:37:12 +0000989 case AtomicExpr::AO__atomic_compare_exchange:
990 case AtomicExpr::AO__atomic_compare_exchange_n:
991 LibCallName = "__atomic_compare_exchange";
992 RetTy = getContext().BoolTy;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000993 HaveRetTy = true;
Yaxun Liu39195062017-08-04 18:16:31 +0000994 Args.add(
995 RValue::get(CastToGenericAddrSpace(
996 EmitCastToVoidPtr(Val1.getPointer()), E->getVal1()->getType())),
997 getContext().VoidPtrTy);
John McCall7f416cc2015-09-08 08:05:57 +0000998 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val2.getPointer(),
999 MemTy, E->getExprLoc(), sizeChars);
Nick Lewycky5fa40c32013-10-01 21:51:38 +00001000 Args.add(RValue::get(Order), getContext().IntTy);
John McCallfc207f22013-03-07 21:37:12 +00001001 Order = OrderFail;
1002 break;
1003 // void __atomic_exchange(size_t size, void *mem, void *val, void *return,
1004 // int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001005 // T __atomic_exchange_N(T *mem, T val, int order)
John McCallfc207f22013-03-07 21:37:12 +00001006 case AtomicExpr::AO__c11_atomic_exchange:
Yaxun Liu39195062017-08-04 18:16:31 +00001007 case AtomicExpr::AO__opencl_atomic_exchange:
John McCallfc207f22013-03-07 21:37:12 +00001008 case AtomicExpr::AO__atomic_exchange_n:
1009 case AtomicExpr::AO__atomic_exchange:
1010 LibCallName = "__atomic_exchange";
John McCall7f416cc2015-09-08 08:05:57 +00001011 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1012 MemTy, E->getExprLoc(), sizeChars);
John McCallfc207f22013-03-07 21:37:12 +00001013 break;
1014 // void __atomic_store(size_t size, void *mem, void *val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001015 // void __atomic_store_N(T *mem, T val, int order)
John McCallfc207f22013-03-07 21:37:12 +00001016 case AtomicExpr::AO__c11_atomic_store:
Yaxun Liu39195062017-08-04 18:16:31 +00001017 case AtomicExpr::AO__opencl_atomic_store:
John McCallfc207f22013-03-07 21:37:12 +00001018 case AtomicExpr::AO__atomic_store:
1019 case AtomicExpr::AO__atomic_store_n:
1020 LibCallName = "__atomic_store";
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001021 RetTy = getContext().VoidTy;
1022 HaveRetTy = true;
John McCall7f416cc2015-09-08 08:05:57 +00001023 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1024 MemTy, E->getExprLoc(), sizeChars);
John McCallfc207f22013-03-07 21:37:12 +00001025 break;
1026 // void __atomic_load(size_t size, void *mem, void *return, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001027 // T __atomic_load_N(T *mem, int order)
John McCallfc207f22013-03-07 21:37:12 +00001028 case AtomicExpr::AO__c11_atomic_load:
Yaxun Liu39195062017-08-04 18:16:31 +00001029 case AtomicExpr::AO__opencl_atomic_load:
John McCallfc207f22013-03-07 21:37:12 +00001030 case AtomicExpr::AO__atomic_load:
1031 case AtomicExpr::AO__atomic_load_n:
1032 LibCallName = "__atomic_load";
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001033 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +00001034 // T __atomic_add_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001035 // T __atomic_fetch_add_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +00001036 case AtomicExpr::AO__atomic_add_fetch:
1037 PostOp = llvm::Instruction::Add;
1038 // Fall through.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001039 case AtomicExpr::AO__c11_atomic_fetch_add:
Yaxun Liu39195062017-08-04 18:16:31 +00001040 case AtomicExpr::AO__opencl_atomic_fetch_add:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001041 case AtomicExpr::AO__atomic_fetch_add:
1042 LibCallName = "__atomic_fetch_add";
John McCall7f416cc2015-09-08 08:05:57 +00001043 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1044 LoweredMemTy, E->getExprLoc(), sizeChars);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001045 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +00001046 // T __atomic_and_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001047 // T __atomic_fetch_and_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +00001048 case AtomicExpr::AO__atomic_and_fetch:
1049 PostOp = llvm::Instruction::And;
1050 // Fall through.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001051 case AtomicExpr::AO__c11_atomic_fetch_and:
Yaxun Liu39195062017-08-04 18:16:31 +00001052 case AtomicExpr::AO__opencl_atomic_fetch_and:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001053 case AtomicExpr::AO__atomic_fetch_and:
1054 LibCallName = "__atomic_fetch_and";
John McCall7f416cc2015-09-08 08:05:57 +00001055 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1056 MemTy, E->getExprLoc(), sizeChars);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001057 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +00001058 // T __atomic_or_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001059 // T __atomic_fetch_or_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +00001060 case AtomicExpr::AO__atomic_or_fetch:
1061 PostOp = llvm::Instruction::Or;
1062 // Fall through.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001063 case AtomicExpr::AO__c11_atomic_fetch_or:
Yaxun Liu39195062017-08-04 18:16:31 +00001064 case AtomicExpr::AO__opencl_atomic_fetch_or:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001065 case AtomicExpr::AO__atomic_fetch_or:
1066 LibCallName = "__atomic_fetch_or";
John McCall7f416cc2015-09-08 08:05:57 +00001067 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1068 MemTy, E->getExprLoc(), sizeChars);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001069 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +00001070 // T __atomic_sub_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001071 // T __atomic_fetch_sub_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +00001072 case AtomicExpr::AO__atomic_sub_fetch:
1073 PostOp = llvm::Instruction::Sub;
1074 // Fall through.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001075 case AtomicExpr::AO__c11_atomic_fetch_sub:
Yaxun Liu39195062017-08-04 18:16:31 +00001076 case AtomicExpr::AO__opencl_atomic_fetch_sub:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001077 case AtomicExpr::AO__atomic_fetch_sub:
1078 LibCallName = "__atomic_fetch_sub";
John McCall7f416cc2015-09-08 08:05:57 +00001079 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1080 LoweredMemTy, E->getExprLoc(), sizeChars);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001081 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +00001082 // T __atomic_xor_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001083 // T __atomic_fetch_xor_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +00001084 case AtomicExpr::AO__atomic_xor_fetch:
1085 PostOp = llvm::Instruction::Xor;
1086 // Fall through.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001087 case AtomicExpr::AO__c11_atomic_fetch_xor:
Yaxun Liu39195062017-08-04 18:16:31 +00001088 case AtomicExpr::AO__opencl_atomic_fetch_xor:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001089 case AtomicExpr::AO__atomic_fetch_xor:
1090 LibCallName = "__atomic_fetch_xor";
John McCall7f416cc2015-09-08 08:05:57 +00001091 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1092 MemTy, E->getExprLoc(), sizeChars);
John McCallfc207f22013-03-07 21:37:12 +00001093 break;
Yaxun Liu39195062017-08-04 18:16:31 +00001094 case AtomicExpr::AO__opencl_atomic_fetch_min:
1095 LibCallName = E->getValueType()->isSignedIntegerType()
1096 ? "__atomic_fetch_min"
1097 : "__atomic_fetch_umin";
1098 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1099 LoweredMemTy, E->getExprLoc(), sizeChars);
1100 break;
1101 case AtomicExpr::AO__opencl_atomic_fetch_max:
1102 LibCallName = E->getValueType()->isSignedIntegerType()
1103 ? "__atomic_fetch_max"
1104 : "__atomic_fetch_umax";
1105 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1106 LoweredMemTy, E->getExprLoc(), sizeChars);
1107 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +00001108 // T __atomic_nand_fetch_N(T *mem, T val, int order)
James Y Knight81167fb2015-08-05 16:57:36 +00001109 // T __atomic_fetch_nand_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +00001110 case AtomicExpr::AO__atomic_nand_fetch:
1111 PostOp = llvm::Instruction::And; // the NOT is special cased below
1112 // Fall through.
James Y Knight81167fb2015-08-05 16:57:36 +00001113 case AtomicExpr::AO__atomic_fetch_nand:
1114 LibCallName = "__atomic_fetch_nand";
John McCall7f416cc2015-09-08 08:05:57 +00001115 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1116 MemTy, E->getExprLoc(), sizeChars);
James Y Knight81167fb2015-08-05 16:57:36 +00001117 break;
John McCallfc207f22013-03-07 21:37:12 +00001118 }
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001119
Yaxun Liu39195062017-08-04 18:16:31 +00001120 if (E->isOpenCL()) {
1121 LibCallName = std::string("__opencl") +
1122 StringRef(LibCallName).drop_front(1).str();
1123
1124 }
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001125 // Optimized functions have the size in their name.
1126 if (UseOptimizedLibcall)
1127 LibCallName += "_" + llvm::utostr(Size);
1128 // By default, assume we return a value of the atomic type.
1129 if (!HaveRetTy) {
1130 if (UseOptimizedLibcall) {
1131 // Value is returned directly.
David Majnemer0392cf82014-08-29 07:27:49 +00001132 // The function returns an appropriately sized integer type.
1133 RetTy = getContext().getIntTypeForBitwidth(
1134 getContext().toBits(sizeChars), /*Signed=*/false);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001135 } else {
1136 // Value is returned through parameter before the order.
1137 RetTy = getContext().VoidTy;
John McCall7f416cc2015-09-08 08:05:57 +00001138 Args.add(RValue::get(EmitCastToVoidPtr(Dest.getPointer())),
1139 getContext().VoidPtrTy);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001140 }
1141 }
John McCallfc207f22013-03-07 21:37:12 +00001142 // order is always the last parameter
1143 Args.add(RValue::get(Order),
1144 getContext().IntTy);
Yaxun Liu39195062017-08-04 18:16:31 +00001145 if (E->isOpenCL())
1146 Args.add(RValue::get(Scope), getContext().IntTy);
John McCallfc207f22013-03-07 21:37:12 +00001147
James Y Knight7aefb5b2015-11-12 18:37:29 +00001148 // PostOp is only needed for the atomic_*_fetch operations, and
1149 // thus is only needed for and implemented in the
1150 // UseOptimizedLibcall codepath.
1151 assert(UseOptimizedLibcall || !PostOp);
1152
David Majnemer659be552014-11-25 23:44:32 +00001153 RValue Res = emitAtomicLibcall(*this, LibCallName, RetTy, Args);
1154 // The value is returned directly from the libcall.
Tim Northovercc2a6e02015-11-09 19:56:35 +00001155 if (E->isCmpXChg())
David Majnemer659be552014-11-25 23:44:32 +00001156 return Res;
Tim Northovercc2a6e02015-11-09 19:56:35 +00001157
1158 // The value is returned directly for optimized libcalls but the expr
1159 // provided an out-param.
1160 if (UseOptimizedLibcall && Res.getScalarVal()) {
David Majnemer659be552014-11-25 23:44:32 +00001161 llvm::Value *ResVal = Res.getScalarVal();
James Y Knight7aefb5b2015-11-12 18:37:29 +00001162 if (PostOp) {
1163 llvm::Value *LoadVal1 = Args[1].RV.getScalarVal();
1164 ResVal = Builder.CreateBinOp(PostOp, ResVal, LoadVal1);
1165 }
1166 if (E->getOp() == AtomicExpr::AO__atomic_nand_fetch)
1167 ResVal = Builder.CreateNot(ResVal);
1168
Tim Northovercc2a6e02015-11-09 19:56:35 +00001169 Builder.CreateStore(
1170 ResVal,
1171 Builder.CreateBitCast(Dest, ResVal->getType()->getPointerTo()));
David Majnemer659be552014-11-25 23:44:32 +00001172 }
Tim Northovercc2a6e02015-11-09 19:56:35 +00001173
1174 if (RValTy->isVoidType())
1175 return RValue::get(nullptr);
1176
1177 return convertTempToRValue(
1178 Builder.CreateBitCast(Dest, ConvertTypeForMem(RValTy)->getPointerTo()),
1179 RValTy, E->getExprLoc());
John McCallfc207f22013-03-07 21:37:12 +00001180 }
1181
1182 bool IsStore = E->getOp() == AtomicExpr::AO__c11_atomic_store ||
Yaxun Liu39195062017-08-04 18:16:31 +00001183 E->getOp() == AtomicExpr::AO__opencl_atomic_store ||
John McCallfc207f22013-03-07 21:37:12 +00001184 E->getOp() == AtomicExpr::AO__atomic_store ||
1185 E->getOp() == AtomicExpr::AO__atomic_store_n;
1186 bool IsLoad = E->getOp() == AtomicExpr::AO__c11_atomic_load ||
Yaxun Liu39195062017-08-04 18:16:31 +00001187 E->getOp() == AtomicExpr::AO__opencl_atomic_load ||
John McCallfc207f22013-03-07 21:37:12 +00001188 E->getOp() == AtomicExpr::AO__atomic_load ||
1189 E->getOp() == AtomicExpr::AO__atomic_load_n;
1190
John McCallfc207f22013-03-07 21:37:12 +00001191 if (isa<llvm::ConstantInt>(Order)) {
JF Bastiendda2cb12016-04-18 18:01:49 +00001192 auto ord = cast<llvm::ConstantInt>(Order)->getZExtValue();
1193 // We should not ever get to a case where the ordering isn't a valid C ABI
1194 // value, but it's hard to enforce that in general.
1195 if (llvm::isValidAtomicOrderingCABI(ord))
1196 switch ((llvm::AtomicOrderingCABI)ord) {
1197 case llvm::AtomicOrderingCABI::relaxed:
1198 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001199 llvm::AtomicOrdering::Monotonic, Scope);
JF Bastiendda2cb12016-04-18 18:01:49 +00001200 break;
1201 case llvm::AtomicOrderingCABI::consume:
1202 case llvm::AtomicOrderingCABI::acquire:
1203 if (IsStore)
1204 break; // Avoid crashing on code with undefined behavior
1205 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001206 llvm::AtomicOrdering::Acquire, Scope);
JF Bastiendda2cb12016-04-18 18:01:49 +00001207 break;
1208 case llvm::AtomicOrderingCABI::release:
1209 if (IsLoad)
1210 break; // Avoid crashing on code with undefined behavior
1211 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001212 llvm::AtomicOrdering::Release, Scope);
JF Bastiendda2cb12016-04-18 18:01:49 +00001213 break;
1214 case llvm::AtomicOrderingCABI::acq_rel:
1215 if (IsLoad || IsStore)
1216 break; // Avoid crashing on code with undefined behavior
1217 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001218 llvm::AtomicOrdering::AcquireRelease, Scope);
JF Bastiendda2cb12016-04-18 18:01:49 +00001219 break;
1220 case llvm::AtomicOrderingCABI::seq_cst:
1221 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001222 llvm::AtomicOrdering::SequentiallyConsistent, Scope);
JF Bastiendda2cb12016-04-18 18:01:49 +00001223 break;
1224 }
David Majnemeree8d04d2014-12-12 08:16:09 +00001225 if (RValTy->isVoidType())
Craig Topper8a13c412014-05-21 05:09:00 +00001226 return RValue::get(nullptr);
Tim Northovercc2a6e02015-11-09 19:56:35 +00001227
1228 return convertTempToRValue(
Yaxun Liu8ab5ab02017-10-17 14:19:29 +00001229 Builder.CreateBitCast(Dest, ConvertTypeForMem(RValTy)->getPointerTo(
1230 Dest.getAddressSpace())),
Tim Northovercc2a6e02015-11-09 19:56:35 +00001231 RValTy, E->getExprLoc());
John McCallfc207f22013-03-07 21:37:12 +00001232 }
1233
1234 // Long case, when Order isn't obviously constant.
1235
1236 // Create all the relevant BB's
Craig Topper8a13c412014-05-21 05:09:00 +00001237 llvm::BasicBlock *MonotonicBB = nullptr, *AcquireBB = nullptr,
1238 *ReleaseBB = nullptr, *AcqRelBB = nullptr,
1239 *SeqCstBB = nullptr;
John McCallfc207f22013-03-07 21:37:12 +00001240 MonotonicBB = createBasicBlock("monotonic", CurFn);
1241 if (!IsStore)
1242 AcquireBB = createBasicBlock("acquire", CurFn);
1243 if (!IsLoad)
1244 ReleaseBB = createBasicBlock("release", CurFn);
1245 if (!IsLoad && !IsStore)
1246 AcqRelBB = createBasicBlock("acqrel", CurFn);
1247 SeqCstBB = createBasicBlock("seqcst", CurFn);
1248 llvm::BasicBlock *ContBB = createBasicBlock("atomic.continue", CurFn);
1249
1250 // Create the switch for the split
1251 // MonotonicBB is arbitrarily chosen as the default case; in practice, this
1252 // doesn't matter unless someone is crazy enough to use something that
1253 // doesn't fold to a constant for the ordering.
1254 Order = Builder.CreateIntCast(Order, Builder.getInt32Ty(), false);
1255 llvm::SwitchInst *SI = Builder.CreateSwitch(Order, MonotonicBB);
1256
1257 // Emit all the different atomics
1258 Builder.SetInsertPoint(MonotonicBB);
Yaxun Liu39195062017-08-04 18:16:31 +00001259 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001260 llvm::AtomicOrdering::Monotonic, Scope);
John McCallfc207f22013-03-07 21:37:12 +00001261 Builder.CreateBr(ContBB);
1262 if (!IsStore) {
1263 Builder.SetInsertPoint(AcquireBB);
Yaxun Liu39195062017-08-04 18:16:31 +00001264 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001265 llvm::AtomicOrdering::Acquire, Scope);
John McCallfc207f22013-03-07 21:37:12 +00001266 Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001267 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::consume),
Tim Northover514fc612014-03-13 19:25:52 +00001268 AcquireBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001269 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::acquire),
Tim Northover514fc612014-03-13 19:25:52 +00001270 AcquireBB);
John McCallfc207f22013-03-07 21:37:12 +00001271 }
1272 if (!IsLoad) {
1273 Builder.SetInsertPoint(ReleaseBB);
Yaxun Liu39195062017-08-04 18:16:31 +00001274 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001275 llvm::AtomicOrdering::Release, Scope);
John McCallfc207f22013-03-07 21:37:12 +00001276 Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001277 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::release),
Tim Northover514fc612014-03-13 19:25:52 +00001278 ReleaseBB);
John McCallfc207f22013-03-07 21:37:12 +00001279 }
1280 if (!IsLoad && !IsStore) {
1281 Builder.SetInsertPoint(AcqRelBB);
Yaxun Liu39195062017-08-04 18:16:31 +00001282 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001283 llvm::AtomicOrdering::AcquireRelease, Scope);
John McCallfc207f22013-03-07 21:37:12 +00001284 Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001285 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::acq_rel),
Tim Northover514fc612014-03-13 19:25:52 +00001286 AcqRelBB);
John McCallfc207f22013-03-07 21:37:12 +00001287 }
1288 Builder.SetInsertPoint(SeqCstBB);
Yaxun Liu39195062017-08-04 18:16:31 +00001289 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001290 llvm::AtomicOrdering::SequentiallyConsistent, Scope);
John McCallfc207f22013-03-07 21:37:12 +00001291 Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001292 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::seq_cst),
Tim Northover514fc612014-03-13 19:25:52 +00001293 SeqCstBB);
John McCallfc207f22013-03-07 21:37:12 +00001294
1295 // Cleanup and return
1296 Builder.SetInsertPoint(ContBB);
David Majnemeree8d04d2014-12-12 08:16:09 +00001297 if (RValTy->isVoidType())
Craig Topper8a13c412014-05-21 05:09:00 +00001298 return RValue::get(nullptr);
Tim Northovercc2a6e02015-11-09 19:56:35 +00001299
1300 assert(Atomics.getValueSizeInBits() <= Atomics.getAtomicSizeInBits());
1301 return convertTempToRValue(
Yaxun Liu8ab5ab02017-10-17 14:19:29 +00001302 Builder.CreateBitCast(Dest, ConvertTypeForMem(RValTy)->getPointerTo(
1303 Dest.getAddressSpace())),
Tim Northovercc2a6e02015-11-09 19:56:35 +00001304 RValTy, E->getExprLoc());
John McCallfc207f22013-03-07 21:37:12 +00001305}
John McCalla8ec7eb2013-03-07 21:37:17 +00001306
John McCall7f416cc2015-09-08 08:05:57 +00001307Address AtomicInfo::emitCastToAtomicIntPointer(Address addr) const {
John McCalla8ec7eb2013-03-07 21:37:17 +00001308 unsigned addrspace =
John McCall7f416cc2015-09-08 08:05:57 +00001309 cast<llvm::PointerType>(addr.getPointer()->getType())->getAddressSpace();
John McCalla8ec7eb2013-03-07 21:37:17 +00001310 llvm::IntegerType *ty =
1311 llvm::IntegerType::get(CGF.getLLVMContext(), AtomicSizeInBits);
1312 return CGF.Builder.CreateBitCast(addr, ty->getPointerTo(addrspace));
1313}
1314
Tim Northovercc2a6e02015-11-09 19:56:35 +00001315Address AtomicInfo::convertToAtomicIntPointer(Address Addr) const {
1316 llvm::Type *Ty = Addr.getElementType();
1317 uint64_t SourceSizeInBits = CGF.CGM.getDataLayout().getTypeSizeInBits(Ty);
1318 if (SourceSizeInBits != AtomicSizeInBits) {
1319 Address Tmp = CreateTempAlloca();
1320 CGF.Builder.CreateMemCpy(Tmp, Addr,
1321 std::min(AtomicSizeInBits, SourceSizeInBits) / 8);
1322 Addr = Tmp;
1323 }
1324
1325 return emitCastToAtomicIntPointer(Addr);
1326}
1327
John McCall7f416cc2015-09-08 08:05:57 +00001328RValue AtomicInfo::convertAtomicTempToRValue(Address addr,
1329 AggValueSlot resultSlot,
1330 SourceLocation loc,
1331 bool asValue) const {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001332 if (LVal.isSimple()) {
1333 if (EvaluationKind == TEK_Aggregate)
1334 return resultSlot.asRValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001335
Alexey Bataevb57056f2015-01-22 06:17:56 +00001336 // Drill into the padding structure if we have one.
1337 if (hasPadding())
John McCall7f416cc2015-09-08 08:05:57 +00001338 addr = CGF.Builder.CreateStructGEP(addr, 0, CharUnits());
John McCalla8ec7eb2013-03-07 21:37:17 +00001339
Alexey Bataevb57056f2015-01-22 06:17:56 +00001340 // Otherwise, just convert the temporary to an r-value using the
1341 // normal conversion routine.
1342 return CGF.convertTempToRValue(addr, getValueType(), loc);
David Blaikie1ed728c2015-04-05 22:45:47 +00001343 }
John McCall7f416cc2015-09-08 08:05:57 +00001344 if (!asValue)
Alexey Bataevb8329262015-02-27 06:33:30 +00001345 // Get RValue from temp memory as atomic for non-simple lvalues
John McCall7f416cc2015-09-08 08:05:57 +00001346 return RValue::get(CGF.Builder.CreateLoad(addr));
David Blaikie1ed728c2015-04-05 22:45:47 +00001347 if (LVal.isBitField())
John McCall7f416cc2015-09-08 08:05:57 +00001348 return CGF.EmitLoadOfBitfieldLValue(
1349 LValue::MakeBitfield(addr, LVal.getBitFieldInfo(), LVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001350 LVal.getBaseInfo(), TBAAAccessInfo()), loc);
David Blaikie1ed728c2015-04-05 22:45:47 +00001351 if (LVal.isVectorElt())
John McCall7f416cc2015-09-08 08:05:57 +00001352 return CGF.EmitLoadOfLValue(
1353 LValue::MakeVectorElt(addr, LVal.getVectorIdx(), LVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001354 LVal.getBaseInfo(), TBAAAccessInfo()), loc);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001355 assert(LVal.isExtVectorElt());
1356 return CGF.EmitLoadOfExtVectorElementLValue(LValue::MakeExtVectorElt(
John McCall7f416cc2015-09-08 08:05:57 +00001357 addr, LVal.getExtVectorElts(), LVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001358 LVal.getBaseInfo(), TBAAAccessInfo()));
John McCalla8ec7eb2013-03-07 21:37:17 +00001359}
1360
Alexey Bataevb8329262015-02-27 06:33:30 +00001361RValue AtomicInfo::ConvertIntToValueOrAtomic(llvm::Value *IntVal,
1362 AggValueSlot ResultSlot,
1363 SourceLocation Loc,
1364 bool AsValue) const {
Alexey Bataev452d8e12014-12-15 05:25:25 +00001365 // Try not to in some easy cases.
1366 assert(IntVal->getType()->isIntegerTy() && "Expected integer value");
Alexey Bataevb8329262015-02-27 06:33:30 +00001367 if (getEvaluationKind() == TEK_Scalar &&
1368 (((!LVal.isBitField() ||
1369 LVal.getBitFieldInfo().Size == ValueSizeInBits) &&
1370 !hasPadding()) ||
1371 !AsValue)) {
1372 auto *ValTy = AsValue
1373 ? CGF.ConvertTypeForMem(ValueTy)
John McCall7f416cc2015-09-08 08:05:57 +00001374 : getAtomicAddress().getType()->getPointerElementType();
Alexey Bataev452d8e12014-12-15 05:25:25 +00001375 if (ValTy->isIntegerTy()) {
1376 assert(IntVal->getType() == ValTy && "Different integer types.");
David Majnemereeaec262015-02-14 02:18:14 +00001377 return RValue::get(CGF.EmitFromMemory(IntVal, ValueTy));
Alexey Bataev452d8e12014-12-15 05:25:25 +00001378 } else if (ValTy->isPointerTy())
1379 return RValue::get(CGF.Builder.CreateIntToPtr(IntVal, ValTy));
1380 else if (llvm::CastInst::isBitCastable(IntVal->getType(), ValTy))
1381 return RValue::get(CGF.Builder.CreateBitCast(IntVal, ValTy));
1382 }
1383
1384 // Create a temporary. This needs to be big enough to hold the
1385 // atomic integer.
John McCall7f416cc2015-09-08 08:05:57 +00001386 Address Temp = Address::invalid();
Alexey Bataev452d8e12014-12-15 05:25:25 +00001387 bool TempIsVolatile = false;
Alexey Bataevb8329262015-02-27 06:33:30 +00001388 if (AsValue && getEvaluationKind() == TEK_Aggregate) {
Alexey Bataev452d8e12014-12-15 05:25:25 +00001389 assert(!ResultSlot.isIgnored());
John McCall7f416cc2015-09-08 08:05:57 +00001390 Temp = ResultSlot.getAddress();
Alexey Bataev452d8e12014-12-15 05:25:25 +00001391 TempIsVolatile = ResultSlot.isVolatile();
1392 } else {
Alexey Bataevb8329262015-02-27 06:33:30 +00001393 Temp = CreateTempAlloca();
Alexey Bataev452d8e12014-12-15 05:25:25 +00001394 }
1395
1396 // Slam the integer into the temporary.
John McCall7f416cc2015-09-08 08:05:57 +00001397 Address CastTemp = emitCastToAtomicIntPointer(Temp);
1398 CGF.Builder.CreateStore(IntVal, CastTemp)
Alexey Bataev452d8e12014-12-15 05:25:25 +00001399 ->setVolatile(TempIsVolatile);
1400
John McCall7f416cc2015-09-08 08:05:57 +00001401 return convertAtomicTempToRValue(Temp, ResultSlot, Loc, AsValue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001402}
1403
1404void AtomicInfo::EmitAtomicLoadLibcall(llvm::Value *AddForLoaded,
1405 llvm::AtomicOrdering AO, bool) {
1406 // void __atomic_load(size_t size, void *mem, void *return, int order);
1407 CallArgList Args;
1408 Args.add(RValue::get(getAtomicSizeValue()), CGF.getContext().getSizeType());
John McCall7f416cc2015-09-08 08:05:57 +00001409 Args.add(RValue::get(CGF.EmitCastToVoidPtr(getAtomicPointer())),
Alexey Bataevb8329262015-02-27 06:33:30 +00001410 CGF.getContext().VoidPtrTy);
1411 Args.add(RValue::get(CGF.EmitCastToVoidPtr(AddForLoaded)),
1412 CGF.getContext().VoidPtrTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001413 Args.add(
1414 RValue::get(llvm::ConstantInt::get(CGF.IntTy, (int)llvm::toCABI(AO))),
1415 CGF.getContext().IntTy);
Alexey Bataevb8329262015-02-27 06:33:30 +00001416 emitAtomicLibcall(CGF, "__atomic_load", CGF.getContext().VoidTy, Args);
1417}
1418
1419llvm::Value *AtomicInfo::EmitAtomicLoadOp(llvm::AtomicOrdering AO,
1420 bool IsVolatile) {
1421 // Okay, we're doing this natively.
John McCall7f416cc2015-09-08 08:05:57 +00001422 Address Addr = getAtomicAddressAsAtomicIntPointer();
Alexey Bataevb8329262015-02-27 06:33:30 +00001423 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Addr, "atomic-load");
1424 Load->setAtomic(AO);
1425
1426 // Other decoration.
Alexey Bataevb8329262015-02-27 06:33:30 +00001427 if (IsVolatile)
1428 Load->setVolatile(true);
Ivan A. Kosarev383890b2017-10-06 08:17:48 +00001429 CGF.CGM.DecorateInstructionWithTBAA(Load, LVal.getTBAAInfo());
Alexey Bataevb8329262015-02-27 06:33:30 +00001430 return Load;
Alexey Bataev452d8e12014-12-15 05:25:25 +00001431}
1432
David Majnemera5b195a2015-02-14 01:35:12 +00001433/// An LValue is a candidate for having its loads and stores be made atomic if
1434/// we are operating under /volatile:ms *and* the LValue itself is volatile and
1435/// performing such an operation can be performed without a libcall.
1436bool CodeGenFunction::LValueIsSuitableForInlineAtomic(LValue LV) {
John McCall7f416cc2015-09-08 08:05:57 +00001437 if (!CGM.getCodeGenOpts().MSVolatile) return false;
David Majnemera5b195a2015-02-14 01:35:12 +00001438 AtomicInfo AI(*this, LV);
1439 bool IsVolatile = LV.isVolatile() || hasVolatileMember(LV.getType());
1440 // An atomic is inline if we don't need to use a libcall.
1441 bool AtomicIsInline = !AI.shouldUseLibcall();
David Majnemerfc80b6e2016-01-22 16:36:44 +00001442 // MSVC doesn't seem to do this for types wider than a pointer.
David Majnemera38c9f12016-05-24 16:09:25 +00001443 if (getContext().getTypeSize(LV.getType()) >
David Majnemerfc80b6e2016-01-22 16:36:44 +00001444 getContext().getTypeSize(getContext().getIntPtrType()))
1445 return false;
David Majnemera38c9f12016-05-24 16:09:25 +00001446 return IsVolatile && AtomicIsInline;
David Majnemera5b195a2015-02-14 01:35:12 +00001447}
1448
1449RValue CodeGenFunction::EmitAtomicLoad(LValue LV, SourceLocation SL,
1450 AggValueSlot Slot) {
1451 llvm::AtomicOrdering AO;
1452 bool IsVolatile = LV.isVolatileQualified();
1453 if (LV.getType()->isAtomicType()) {
JF Bastien92f4ef12016-04-06 17:26:42 +00001454 AO = llvm::AtomicOrdering::SequentiallyConsistent;
David Majnemera5b195a2015-02-14 01:35:12 +00001455 } else {
JF Bastien92f4ef12016-04-06 17:26:42 +00001456 AO = llvm::AtomicOrdering::Acquire;
David Majnemera5b195a2015-02-14 01:35:12 +00001457 IsVolatile = true;
1458 }
1459 return EmitAtomicLoad(LV, SL, AO, IsVolatile, Slot);
1460}
1461
Alexey Bataevb8329262015-02-27 06:33:30 +00001462RValue AtomicInfo::EmitAtomicLoad(AggValueSlot ResultSlot, SourceLocation Loc,
1463 bool AsValue, llvm::AtomicOrdering AO,
1464 bool IsVolatile) {
1465 // Check whether we should use a library call.
1466 if (shouldUseLibcall()) {
John McCall7f416cc2015-09-08 08:05:57 +00001467 Address TempAddr = Address::invalid();
Alexey Bataevb8329262015-02-27 06:33:30 +00001468 if (LVal.isSimple() && !ResultSlot.isIgnored()) {
1469 assert(getEvaluationKind() == TEK_Aggregate);
John McCall7f416cc2015-09-08 08:05:57 +00001470 TempAddr = ResultSlot.getAddress();
Alexey Bataevb8329262015-02-27 06:33:30 +00001471 } else
1472 TempAddr = CreateTempAlloca();
1473
John McCall7f416cc2015-09-08 08:05:57 +00001474 EmitAtomicLoadLibcall(TempAddr.getPointer(), AO, IsVolatile);
Alexey Bataevb8329262015-02-27 06:33:30 +00001475
1476 // Okay, turn that back into the original value or whole atomic (for
1477 // non-simple lvalues) type.
John McCall7f416cc2015-09-08 08:05:57 +00001478 return convertAtomicTempToRValue(TempAddr, ResultSlot, Loc, AsValue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001479 }
1480
1481 // Okay, we're doing this natively.
1482 auto *Load = EmitAtomicLoadOp(AO, IsVolatile);
1483
1484 // If we're ignoring an aggregate return, don't do anything.
1485 if (getEvaluationKind() == TEK_Aggregate && ResultSlot.isIgnored())
John McCall7f416cc2015-09-08 08:05:57 +00001486 return RValue::getAggregate(Address::invalid(), false);
Alexey Bataevb8329262015-02-27 06:33:30 +00001487
1488 // Okay, turn that back into the original value or atomic (for non-simple
1489 // lvalues) type.
1490 return ConvertIntToValueOrAtomic(Load, ResultSlot, Loc, AsValue);
1491}
1492
John McCalla8ec7eb2013-03-07 21:37:17 +00001493/// Emit a load from an l-value of atomic type. Note that the r-value
1494/// we produce is an r-value of the atomic *value* type.
Nick Lewycky2d84e842013-10-02 02:29:49 +00001495RValue CodeGenFunction::EmitAtomicLoad(LValue src, SourceLocation loc,
David Majnemera5b195a2015-02-14 01:35:12 +00001496 llvm::AtomicOrdering AO, bool IsVolatile,
Nick Lewycky2d84e842013-10-02 02:29:49 +00001497 AggValueSlot resultSlot) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001498 AtomicInfo Atomics(*this, src);
1499 return Atomics.EmitAtomicLoad(resultSlot, loc, /*AsValue=*/true, AO,
1500 IsVolatile);
John McCalla8ec7eb2013-03-07 21:37:17 +00001501}
1502
John McCalla8ec7eb2013-03-07 21:37:17 +00001503/// Copy an r-value into memory as part of storing to an atomic type.
1504/// This needs to create a bit-pattern suitable for atomic operations.
Alexey Bataevb57056f2015-01-22 06:17:56 +00001505void AtomicInfo::emitCopyIntoMemory(RValue rvalue) const {
1506 assert(LVal.isSimple());
John McCalla8ec7eb2013-03-07 21:37:17 +00001507 // If we have an r-value, the rvalue should be of the atomic type,
1508 // which means that the caller is responsible for having zeroed
1509 // any padding. Just do an aggregate copy of that type.
1510 if (rvalue.isAggregate()) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001511 CGF.EmitAggregateCopy(getAtomicAddress(),
John McCall7f416cc2015-09-08 08:05:57 +00001512 rvalue.getAggregateAddress(),
John McCalla8ec7eb2013-03-07 21:37:17 +00001513 getAtomicType(),
1514 (rvalue.isVolatileQualified()
John McCall7f416cc2015-09-08 08:05:57 +00001515 || LVal.isVolatileQualified()));
John McCalla8ec7eb2013-03-07 21:37:17 +00001516 return;
1517 }
1518
1519 // Okay, otherwise we're copying stuff.
1520
1521 // Zero out the buffer if necessary.
Alexey Bataevb57056f2015-01-22 06:17:56 +00001522 emitMemSetZeroIfNecessary();
John McCalla8ec7eb2013-03-07 21:37:17 +00001523
1524 // Drill past the padding if present.
Alexey Bataevb57056f2015-01-22 06:17:56 +00001525 LValue TempLVal = projectValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001526
1527 // Okay, store the rvalue in.
1528 if (rvalue.isScalar()) {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001529 CGF.EmitStoreOfScalar(rvalue.getScalarVal(), TempLVal, /*init*/ true);
John McCalla8ec7eb2013-03-07 21:37:17 +00001530 } else {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001531 CGF.EmitStoreOfComplex(rvalue.getComplexVal(), TempLVal, /*init*/ true);
John McCalla8ec7eb2013-03-07 21:37:17 +00001532 }
1533}
1534
1535
1536/// Materialize an r-value into memory for the purposes of storing it
1537/// to an atomic type.
John McCall7f416cc2015-09-08 08:05:57 +00001538Address AtomicInfo::materializeRValue(RValue rvalue) const {
John McCalla8ec7eb2013-03-07 21:37:17 +00001539 // Aggregate r-values are already in memory, and EmitAtomicStore
1540 // requires them to be values of the atomic type.
1541 if (rvalue.isAggregate())
John McCall7f416cc2015-09-08 08:05:57 +00001542 return rvalue.getAggregateAddress();
John McCalla8ec7eb2013-03-07 21:37:17 +00001543
1544 // Otherwise, make a temporary and materialize into it.
John McCall7f416cc2015-09-08 08:05:57 +00001545 LValue TempLV = CGF.MakeAddrLValue(CreateTempAlloca(), getAtomicType());
Alexey Bataevb8329262015-02-27 06:33:30 +00001546 AtomicInfo Atomics(CGF, TempLV);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001547 Atomics.emitCopyIntoMemory(rvalue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001548 return TempLV.getAddress();
John McCalla8ec7eb2013-03-07 21:37:17 +00001549}
1550
Alexey Bataev452d8e12014-12-15 05:25:25 +00001551llvm::Value *AtomicInfo::convertRValueToInt(RValue RVal) const {
1552 // If we've got a scalar value of the right size, try to avoid going
1553 // through memory.
Alexey Bataevb8329262015-02-27 06:33:30 +00001554 if (RVal.isScalar() && (!hasPadding() || !LVal.isSimple())) {
Alexey Bataev452d8e12014-12-15 05:25:25 +00001555 llvm::Value *Value = RVal.getScalarVal();
1556 if (isa<llvm::IntegerType>(Value->getType()))
Alexey Bataevb4505a72015-03-30 05:20:59 +00001557 return CGF.EmitToMemory(Value, ValueTy);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001558 else {
Alexey Bataevb8329262015-02-27 06:33:30 +00001559 llvm::IntegerType *InputIntTy = llvm::IntegerType::get(
1560 CGF.getLLVMContext(),
1561 LVal.isSimple() ? getValueSizeInBits() : getAtomicSizeInBits());
Alexey Bataev452d8e12014-12-15 05:25:25 +00001562 if (isa<llvm::PointerType>(Value->getType()))
1563 return CGF.Builder.CreatePtrToInt(Value, InputIntTy);
1564 else if (llvm::BitCastInst::isBitCastable(Value->getType(), InputIntTy))
1565 return CGF.Builder.CreateBitCast(Value, InputIntTy);
1566 }
1567 }
1568 // Otherwise, we need to go through memory.
1569 // Put the r-value in memory.
John McCall7f416cc2015-09-08 08:05:57 +00001570 Address Addr = materializeRValue(RVal);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001571
1572 // Cast the temporary to the atomic int type and pull a value out.
1573 Addr = emitCastToAtomicIntPointer(Addr);
John McCall7f416cc2015-09-08 08:05:57 +00001574 return CGF.Builder.CreateLoad(Addr);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001575}
1576
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001577std::pair<llvm::Value *, llvm::Value *> AtomicInfo::EmitAtomicCompareExchangeOp(
1578 llvm::Value *ExpectedVal, llvm::Value *DesiredVal,
1579 llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001580 // Do the atomic store.
John McCall7f416cc2015-09-08 08:05:57 +00001581 Address Addr = getAtomicAddressAsAtomicIntPointer();
1582 auto *Inst = CGF.Builder.CreateAtomicCmpXchg(Addr.getPointer(),
1583 ExpectedVal, DesiredVal,
Alexey Bataevb4505a72015-03-30 05:20:59 +00001584 Success, Failure);
Alexey Bataevb8329262015-02-27 06:33:30 +00001585 // Other decoration.
1586 Inst->setVolatile(LVal.isVolatileQualified());
1587 Inst->setWeak(IsWeak);
1588
1589 // Okay, turn that back into the original value type.
1590 auto *PreviousVal = CGF.Builder.CreateExtractValue(Inst, /*Idxs=*/0);
1591 auto *SuccessFailureVal = CGF.Builder.CreateExtractValue(Inst, /*Idxs=*/1);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001592 return std::make_pair(PreviousVal, SuccessFailureVal);
Alexey Bataevb8329262015-02-27 06:33:30 +00001593}
1594
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001595llvm::Value *
1596AtomicInfo::EmitAtomicCompareExchangeLibcall(llvm::Value *ExpectedAddr,
1597 llvm::Value *DesiredAddr,
Alexey Bataevb8329262015-02-27 06:33:30 +00001598 llvm::AtomicOrdering Success,
1599 llvm::AtomicOrdering Failure) {
1600 // bool __atomic_compare_exchange(size_t size, void *obj, void *expected,
1601 // void *desired, int success, int failure);
1602 CallArgList Args;
1603 Args.add(RValue::get(getAtomicSizeValue()), CGF.getContext().getSizeType());
John McCall7f416cc2015-09-08 08:05:57 +00001604 Args.add(RValue::get(CGF.EmitCastToVoidPtr(getAtomicPointer())),
Alexey Bataevb8329262015-02-27 06:33:30 +00001605 CGF.getContext().VoidPtrTy);
1606 Args.add(RValue::get(CGF.EmitCastToVoidPtr(ExpectedAddr)),
1607 CGF.getContext().VoidPtrTy);
1608 Args.add(RValue::get(CGF.EmitCastToVoidPtr(DesiredAddr)),
1609 CGF.getContext().VoidPtrTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001610 Args.add(RValue::get(
1611 llvm::ConstantInt::get(CGF.IntTy, (int)llvm::toCABI(Success))),
Alexey Bataevb8329262015-02-27 06:33:30 +00001612 CGF.getContext().IntTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001613 Args.add(RValue::get(
1614 llvm::ConstantInt::get(CGF.IntTy, (int)llvm::toCABI(Failure))),
Alexey Bataevb8329262015-02-27 06:33:30 +00001615 CGF.getContext().IntTy);
1616 auto SuccessFailureRVal = emitAtomicLibcall(CGF, "__atomic_compare_exchange",
1617 CGF.getContext().BoolTy, Args);
Alexey Bataevb4505a72015-03-30 05:20:59 +00001618
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001619 return SuccessFailureRVal.getScalarVal();
Alexey Bataevb8329262015-02-27 06:33:30 +00001620}
1621
Alexey Bataevb4505a72015-03-30 05:20:59 +00001622std::pair<RValue, llvm::Value *> AtomicInfo::EmitAtomicCompareExchange(
Alexey Bataevb8329262015-02-27 06:33:30 +00001623 RValue Expected, RValue Desired, llvm::AtomicOrdering Success,
1624 llvm::AtomicOrdering Failure, bool IsWeak) {
JF Bastiendd11ee72016-04-06 23:37:36 +00001625 if (isStrongerThan(Failure, Success))
1626 // Don't assert on undefined behavior "failure argument shall be no stronger
1627 // than the success argument".
Alexey Bataevb8329262015-02-27 06:33:30 +00001628 Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(Success);
1629
1630 // Check whether we should use a library call.
1631 if (shouldUseLibcall()) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001632 // Produce a source address.
John McCall7f416cc2015-09-08 08:05:57 +00001633 Address ExpectedAddr = materializeRValue(Expected);
1634 Address DesiredAddr = materializeRValue(Desired);
1635 auto *Res = EmitAtomicCompareExchangeLibcall(ExpectedAddr.getPointer(),
1636 DesiredAddr.getPointer(),
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001637 Success, Failure);
1638 return std::make_pair(
John McCall7f416cc2015-09-08 08:05:57 +00001639 convertAtomicTempToRValue(ExpectedAddr, AggValueSlot::ignored(),
1640 SourceLocation(), /*AsValue=*/false),
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001641 Res);
Alexey Bataevb8329262015-02-27 06:33:30 +00001642 }
1643
1644 // If we've got a scalar value of the right size, try to avoid going
1645 // through memory.
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001646 auto *ExpectedVal = convertRValueToInt(Expected);
1647 auto *DesiredVal = convertRValueToInt(Desired);
1648 auto Res = EmitAtomicCompareExchangeOp(ExpectedVal, DesiredVal, Success,
1649 Failure, IsWeak);
1650 return std::make_pair(
1651 ConvertIntToValueOrAtomic(Res.first, AggValueSlot::ignored(),
1652 SourceLocation(), /*AsValue=*/false),
1653 Res.second);
1654}
1655
1656static void
1657EmitAtomicUpdateValue(CodeGenFunction &CGF, AtomicInfo &Atomics, RValue OldRVal,
1658 const llvm::function_ref<RValue(RValue)> &UpdateOp,
John McCall7f416cc2015-09-08 08:05:57 +00001659 Address DesiredAddr) {
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001660 RValue UpRVal;
1661 LValue AtomicLVal = Atomics.getAtomicLValue();
1662 LValue DesiredLVal;
1663 if (AtomicLVal.isSimple()) {
1664 UpRVal = OldRVal;
John McCall7f416cc2015-09-08 08:05:57 +00001665 DesiredLVal = CGF.MakeAddrLValue(DesiredAddr, AtomicLVal.getType());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001666 } else {
1667 // Build new lvalue for temp address
John McCall7f416cc2015-09-08 08:05:57 +00001668 Address Ptr = Atomics.materializeRValue(OldRVal);
1669 LValue UpdateLVal;
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001670 if (AtomicLVal.isBitField()) {
1671 UpdateLVal =
1672 LValue::MakeBitfield(Ptr, AtomicLVal.getBitFieldInfo(),
John McCall7f416cc2015-09-08 08:05:57 +00001673 AtomicLVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001674 AtomicLVal.getBaseInfo(),
1675 AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001676 DesiredLVal =
1677 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001678 AtomicLVal.getType(), AtomicLVal.getBaseInfo(),
1679 AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001680 } else if (AtomicLVal.isVectorElt()) {
1681 UpdateLVal = LValue::MakeVectorElt(Ptr, AtomicLVal.getVectorIdx(),
1682 AtomicLVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001683 AtomicLVal.getBaseInfo(),
1684 AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001685 DesiredLVal = LValue::MakeVectorElt(
1686 DesiredAddr, AtomicLVal.getVectorIdx(), AtomicLVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001687 AtomicLVal.getBaseInfo(), AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001688 } else {
1689 assert(AtomicLVal.isExtVectorElt());
1690 UpdateLVal = LValue::MakeExtVectorElt(Ptr, AtomicLVal.getExtVectorElts(),
1691 AtomicLVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001692 AtomicLVal.getBaseInfo(),
1693 AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001694 DesiredLVal = LValue::MakeExtVectorElt(
1695 DesiredAddr, AtomicLVal.getExtVectorElts(), AtomicLVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001696 AtomicLVal.getBaseInfo(), AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001697 }
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001698 UpRVal = CGF.EmitLoadOfLValue(UpdateLVal, SourceLocation());
1699 }
1700 // Store new value in the corresponding memory area
1701 RValue NewRVal = UpdateOp(UpRVal);
1702 if (NewRVal.isScalar()) {
1703 CGF.EmitStoreThroughLValue(NewRVal, DesiredLVal);
1704 } else {
1705 assert(NewRVal.isComplex());
1706 CGF.EmitStoreOfComplex(NewRVal.getComplexVal(), DesiredLVal,
1707 /*isInit=*/false);
1708 }
1709}
1710
1711void AtomicInfo::EmitAtomicUpdateLibcall(
1712 llvm::AtomicOrdering AO, const llvm::function_ref<RValue(RValue)> &UpdateOp,
1713 bool IsVolatile) {
1714 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1715
John McCall7f416cc2015-09-08 08:05:57 +00001716 Address ExpectedAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001717
John McCall7f416cc2015-09-08 08:05:57 +00001718 EmitAtomicLoadLibcall(ExpectedAddr.getPointer(), AO, IsVolatile);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001719 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1720 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1721 CGF.EmitBlock(ContBB);
John McCall7f416cc2015-09-08 08:05:57 +00001722 Address DesiredAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001723 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001724 requiresMemSetZero(getAtomicAddress().getElementType())) {
1725 auto *OldVal = CGF.Builder.CreateLoad(ExpectedAddr);
1726 CGF.Builder.CreateStore(OldVal, DesiredAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001727 }
John McCall7f416cc2015-09-08 08:05:57 +00001728 auto OldRVal = convertAtomicTempToRValue(ExpectedAddr,
1729 AggValueSlot::ignored(),
1730 SourceLocation(), /*AsValue=*/false);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001731 EmitAtomicUpdateValue(CGF, *this, OldRVal, UpdateOp, DesiredAddr);
1732 auto *Res =
John McCall7f416cc2015-09-08 08:05:57 +00001733 EmitAtomicCompareExchangeLibcall(ExpectedAddr.getPointer(),
1734 DesiredAddr.getPointer(),
1735 AO, Failure);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001736 CGF.Builder.CreateCondBr(Res, ExitBB, ContBB);
1737 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1738}
1739
1740void AtomicInfo::EmitAtomicUpdateOp(
1741 llvm::AtomicOrdering AO, const llvm::function_ref<RValue(RValue)> &UpdateOp,
1742 bool IsVolatile) {
1743 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1744
1745 // Do the atomic load.
1746 auto *OldVal = EmitAtomicLoadOp(AO, IsVolatile);
1747 // For non-simple lvalues perform compare-and-swap procedure.
1748 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1749 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1750 auto *CurBB = CGF.Builder.GetInsertBlock();
1751 CGF.EmitBlock(ContBB);
1752 llvm::PHINode *PHI = CGF.Builder.CreatePHI(OldVal->getType(),
1753 /*NumReservedValues=*/2);
1754 PHI->addIncoming(OldVal, CurBB);
John McCall7f416cc2015-09-08 08:05:57 +00001755 Address NewAtomicAddr = CreateTempAlloca();
1756 Address NewAtomicIntAddr = emitCastToAtomicIntPointer(NewAtomicAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001757 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001758 requiresMemSetZero(getAtomicAddress().getElementType())) {
1759 CGF.Builder.CreateStore(PHI, NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001760 }
1761 auto OldRVal = ConvertIntToValueOrAtomic(PHI, AggValueSlot::ignored(),
1762 SourceLocation(), /*AsValue=*/false);
1763 EmitAtomicUpdateValue(CGF, *this, OldRVal, UpdateOp, NewAtomicAddr);
John McCall7f416cc2015-09-08 08:05:57 +00001764 auto *DesiredVal = CGF.Builder.CreateLoad(NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001765 // Try to write new value using cmpxchg operation
1766 auto Res = EmitAtomicCompareExchangeOp(PHI, DesiredVal, AO, Failure);
1767 PHI->addIncoming(Res.first, CGF.Builder.GetInsertBlock());
1768 CGF.Builder.CreateCondBr(Res.second, ExitBB, ContBB);
1769 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1770}
1771
1772static void EmitAtomicUpdateValue(CodeGenFunction &CGF, AtomicInfo &Atomics,
John McCall7f416cc2015-09-08 08:05:57 +00001773 RValue UpdateRVal, Address DesiredAddr) {
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001774 LValue AtomicLVal = Atomics.getAtomicLValue();
1775 LValue DesiredLVal;
1776 // Build new lvalue for temp address
1777 if (AtomicLVal.isBitField()) {
1778 DesiredLVal =
1779 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001780 AtomicLVal.getType(), AtomicLVal.getBaseInfo(),
1781 AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001782 } else if (AtomicLVal.isVectorElt()) {
1783 DesiredLVal =
1784 LValue::MakeVectorElt(DesiredAddr, AtomicLVal.getVectorIdx(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001785 AtomicLVal.getType(), AtomicLVal.getBaseInfo(),
1786 AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001787 } else {
1788 assert(AtomicLVal.isExtVectorElt());
1789 DesiredLVal = LValue::MakeExtVectorElt(
1790 DesiredAddr, AtomicLVal.getExtVectorElts(), AtomicLVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001791 AtomicLVal.getBaseInfo(), AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001792 }
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001793 // Store new value in the corresponding memory area
1794 assert(UpdateRVal.isScalar());
1795 CGF.EmitStoreThroughLValue(UpdateRVal, DesiredLVal);
1796}
1797
1798void AtomicInfo::EmitAtomicUpdateLibcall(llvm::AtomicOrdering AO,
1799 RValue UpdateRVal, bool IsVolatile) {
1800 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1801
John McCall7f416cc2015-09-08 08:05:57 +00001802 Address ExpectedAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001803
John McCall7f416cc2015-09-08 08:05:57 +00001804 EmitAtomicLoadLibcall(ExpectedAddr.getPointer(), AO, IsVolatile);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001805 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1806 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1807 CGF.EmitBlock(ContBB);
John McCall7f416cc2015-09-08 08:05:57 +00001808 Address DesiredAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001809 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001810 requiresMemSetZero(getAtomicAddress().getElementType())) {
1811 auto *OldVal = CGF.Builder.CreateLoad(ExpectedAddr);
1812 CGF.Builder.CreateStore(OldVal, DesiredAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001813 }
1814 EmitAtomicUpdateValue(CGF, *this, UpdateRVal, DesiredAddr);
1815 auto *Res =
John McCall7f416cc2015-09-08 08:05:57 +00001816 EmitAtomicCompareExchangeLibcall(ExpectedAddr.getPointer(),
1817 DesiredAddr.getPointer(),
1818 AO, Failure);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001819 CGF.Builder.CreateCondBr(Res, ExitBB, ContBB);
1820 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1821}
1822
1823void AtomicInfo::EmitAtomicUpdateOp(llvm::AtomicOrdering AO, RValue UpdateRVal,
1824 bool IsVolatile) {
1825 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1826
1827 // Do the atomic load.
1828 auto *OldVal = EmitAtomicLoadOp(AO, IsVolatile);
1829 // For non-simple lvalues perform compare-and-swap procedure.
1830 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1831 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1832 auto *CurBB = CGF.Builder.GetInsertBlock();
1833 CGF.EmitBlock(ContBB);
1834 llvm::PHINode *PHI = CGF.Builder.CreatePHI(OldVal->getType(),
1835 /*NumReservedValues=*/2);
1836 PHI->addIncoming(OldVal, CurBB);
John McCall7f416cc2015-09-08 08:05:57 +00001837 Address NewAtomicAddr = CreateTempAlloca();
1838 Address NewAtomicIntAddr = emitCastToAtomicIntPointer(NewAtomicAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001839 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001840 requiresMemSetZero(getAtomicAddress().getElementType())) {
1841 CGF.Builder.CreateStore(PHI, NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001842 }
1843 EmitAtomicUpdateValue(CGF, *this, UpdateRVal, NewAtomicAddr);
John McCall7f416cc2015-09-08 08:05:57 +00001844 auto *DesiredVal = CGF.Builder.CreateLoad(NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001845 // Try to write new value using cmpxchg operation
1846 auto Res = EmitAtomicCompareExchangeOp(PHI, DesiredVal, AO, Failure);
1847 PHI->addIncoming(Res.first, CGF.Builder.GetInsertBlock());
1848 CGF.Builder.CreateCondBr(Res.second, ExitBB, ContBB);
1849 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1850}
1851
1852void AtomicInfo::EmitAtomicUpdate(
1853 llvm::AtomicOrdering AO, const llvm::function_ref<RValue(RValue)> &UpdateOp,
1854 bool IsVolatile) {
1855 if (shouldUseLibcall()) {
1856 EmitAtomicUpdateLibcall(AO, UpdateOp, IsVolatile);
1857 } else {
1858 EmitAtomicUpdateOp(AO, UpdateOp, IsVolatile);
1859 }
1860}
1861
1862void AtomicInfo::EmitAtomicUpdate(llvm::AtomicOrdering AO, RValue UpdateRVal,
1863 bool IsVolatile) {
1864 if (shouldUseLibcall()) {
1865 EmitAtomicUpdateLibcall(AO, UpdateRVal, IsVolatile);
1866 } else {
1867 EmitAtomicUpdateOp(AO, UpdateRVal, IsVolatile);
1868 }
Alexey Bataevb8329262015-02-27 06:33:30 +00001869}
1870
David Majnemera5b195a2015-02-14 01:35:12 +00001871void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue lvalue,
1872 bool isInit) {
1873 bool IsVolatile = lvalue.isVolatileQualified();
1874 llvm::AtomicOrdering AO;
1875 if (lvalue.getType()->isAtomicType()) {
JF Bastien92f4ef12016-04-06 17:26:42 +00001876 AO = llvm::AtomicOrdering::SequentiallyConsistent;
David Majnemera5b195a2015-02-14 01:35:12 +00001877 } else {
JF Bastien92f4ef12016-04-06 17:26:42 +00001878 AO = llvm::AtomicOrdering::Release;
David Majnemera5b195a2015-02-14 01:35:12 +00001879 IsVolatile = true;
1880 }
1881 return EmitAtomicStore(rvalue, lvalue, AO, IsVolatile, isInit);
1882}
1883
John McCalla8ec7eb2013-03-07 21:37:17 +00001884/// Emit a store to an l-value of atomic type.
1885///
1886/// Note that the r-value is expected to be an r-value *of the atomic
1887/// type*; this means that for aggregate r-values, it should include
1888/// storage for any padding that was necessary.
David Majnemera5b195a2015-02-14 01:35:12 +00001889void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue dest,
1890 llvm::AtomicOrdering AO, bool IsVolatile,
1891 bool isInit) {
John McCalla8ec7eb2013-03-07 21:37:17 +00001892 // If this is an aggregate r-value, it should agree in type except
1893 // maybe for address-space qualification.
1894 assert(!rvalue.isAggregate() ||
John McCall7f416cc2015-09-08 08:05:57 +00001895 rvalue.getAggregateAddress().getElementType()
1896 == dest.getAddress().getElementType());
John McCalla8ec7eb2013-03-07 21:37:17 +00001897
1898 AtomicInfo atomics(*this, dest);
Alexey Bataevb8329262015-02-27 06:33:30 +00001899 LValue LVal = atomics.getAtomicLValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001900
1901 // If this is an initialization, just put the value there normally.
Alexey Bataevb8329262015-02-27 06:33:30 +00001902 if (LVal.isSimple()) {
1903 if (isInit) {
1904 atomics.emitCopyIntoMemory(rvalue);
1905 return;
1906 }
1907
1908 // Check whether we should use a library call.
1909 if (atomics.shouldUseLibcall()) {
1910 // Produce a source address.
John McCall7f416cc2015-09-08 08:05:57 +00001911 Address srcAddr = atomics.materializeRValue(rvalue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001912
1913 // void __atomic_store(size_t size, void *mem, void *val, int order)
1914 CallArgList args;
1915 args.add(RValue::get(atomics.getAtomicSizeValue()),
1916 getContext().getSizeType());
John McCall7f416cc2015-09-08 08:05:57 +00001917 args.add(RValue::get(EmitCastToVoidPtr(atomics.getAtomicPointer())),
Alexey Bataevb8329262015-02-27 06:33:30 +00001918 getContext().VoidPtrTy);
John McCall7f416cc2015-09-08 08:05:57 +00001919 args.add(RValue::get(EmitCastToVoidPtr(srcAddr.getPointer())),
1920 getContext().VoidPtrTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001921 args.add(
1922 RValue::get(llvm::ConstantInt::get(IntTy, (int)llvm::toCABI(AO))),
1923 getContext().IntTy);
Alexey Bataevb8329262015-02-27 06:33:30 +00001924 emitAtomicLibcall(*this, "__atomic_store", getContext().VoidTy, args);
1925 return;
1926 }
1927
1928 // Okay, we're doing this natively.
1929 llvm::Value *intValue = atomics.convertRValueToInt(rvalue);
1930
1931 // Do the atomic store.
John McCall7f416cc2015-09-08 08:05:57 +00001932 Address addr =
Alexey Bataevb8329262015-02-27 06:33:30 +00001933 atomics.emitCastToAtomicIntPointer(atomics.getAtomicAddress());
1934 intValue = Builder.CreateIntCast(
John McCall7f416cc2015-09-08 08:05:57 +00001935 intValue, addr.getElementType(), /*isSigned=*/false);
Alexey Bataevb8329262015-02-27 06:33:30 +00001936 llvm::StoreInst *store = Builder.CreateStore(intValue, addr);
1937
1938 // Initializations don't need to be atomic.
1939 if (!isInit)
1940 store->setAtomic(AO);
1941
1942 // Other decoration.
Alexey Bataevb8329262015-02-27 06:33:30 +00001943 if (IsVolatile)
1944 store->setVolatile(true);
Ivan A. Kosarev383890b2017-10-06 08:17:48 +00001945 CGM.DecorateInstructionWithTBAA(store, dest.getTBAAInfo());
John McCalla8ec7eb2013-03-07 21:37:17 +00001946 return;
1947 }
1948
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001949 // Emit simple atomic update operation.
1950 atomics.EmitAtomicUpdate(AO, rvalue, IsVolatile);
John McCalla8ec7eb2013-03-07 21:37:17 +00001951}
1952
Alexey Bataev452d8e12014-12-15 05:25:25 +00001953/// Emit a compare-and-exchange op for atomic type.
1954///
Alexey Bataevb4505a72015-03-30 05:20:59 +00001955std::pair<RValue, llvm::Value *> CodeGenFunction::EmitAtomicCompareExchange(
Alexey Bataev452d8e12014-12-15 05:25:25 +00001956 LValue Obj, RValue Expected, RValue Desired, SourceLocation Loc,
1957 llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak,
1958 AggValueSlot Slot) {
1959 // If this is an aggregate r-value, it should agree in type except
1960 // maybe for address-space qualification.
1961 assert(!Expected.isAggregate() ||
John McCall7f416cc2015-09-08 08:05:57 +00001962 Expected.getAggregateAddress().getElementType() ==
1963 Obj.getAddress().getElementType());
Alexey Bataev452d8e12014-12-15 05:25:25 +00001964 assert(!Desired.isAggregate() ||
John McCall7f416cc2015-09-08 08:05:57 +00001965 Desired.getAggregateAddress().getElementType() ==
1966 Obj.getAddress().getElementType());
Alexey Bataev452d8e12014-12-15 05:25:25 +00001967 AtomicInfo Atomics(*this, Obj);
1968
Alexey Bataevb4505a72015-03-30 05:20:59 +00001969 return Atomics.EmitAtomicCompareExchange(Expected, Desired, Success, Failure,
1970 IsWeak);
1971}
1972
1973void CodeGenFunction::EmitAtomicUpdate(
1974 LValue LVal, llvm::AtomicOrdering AO,
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001975 const llvm::function_ref<RValue(RValue)> &UpdateOp, bool IsVolatile) {
Alexey Bataevb4505a72015-03-30 05:20:59 +00001976 AtomicInfo Atomics(*this, LVal);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001977 Atomics.EmitAtomicUpdate(AO, UpdateOp, IsVolatile);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001978}
1979
John McCalla8ec7eb2013-03-07 21:37:17 +00001980void CodeGenFunction::EmitAtomicInit(Expr *init, LValue dest) {
1981 AtomicInfo atomics(*this, dest);
1982
1983 switch (atomics.getEvaluationKind()) {
1984 case TEK_Scalar: {
1985 llvm::Value *value = EmitScalarExpr(init);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001986 atomics.emitCopyIntoMemory(RValue::get(value));
John McCalla8ec7eb2013-03-07 21:37:17 +00001987 return;
1988 }
1989
1990 case TEK_Complex: {
1991 ComplexPairTy value = EmitComplexExpr(init);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001992 atomics.emitCopyIntoMemory(RValue::getComplex(value));
John McCalla8ec7eb2013-03-07 21:37:17 +00001993 return;
1994 }
1995
1996 case TEK_Aggregate: {
Eli Friedmanbe4504d2013-07-11 01:32:21 +00001997 // Fix up the destination if the initializer isn't an expression
1998 // of atomic type.
1999 bool Zeroed = false;
John McCalla8ec7eb2013-03-07 21:37:17 +00002000 if (!init->getType()->isAtomicType()) {
Alexey Bataevb57056f2015-01-22 06:17:56 +00002001 Zeroed = atomics.emitMemSetZeroIfNecessary();
2002 dest = atomics.projectValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00002003 }
2004
2005 // Evaluate the expression directly into the destination.
2006 AggValueSlot slot = AggValueSlot::forLValue(dest,
2007 AggValueSlot::IsNotDestructed,
2008 AggValueSlot::DoesNotNeedGCBarriers,
Eli Friedmanbe4504d2013-07-11 01:32:21 +00002009 AggValueSlot::IsNotAliased,
2010 Zeroed ? AggValueSlot::IsZeroed :
2011 AggValueSlot::IsNotZeroed);
2012
John McCalla8ec7eb2013-03-07 21:37:17 +00002013 EmitAggExpr(init, slot);
2014 return;
2015 }
2016 }
2017 llvm_unreachable("bad evaluation kind");
2018}