blob: b34bcdc1fc38dc3b52d1d41b6f2239fc4b7d320d [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"
Tim Northover9dc1d0c2018-04-23 08:16:24 +000021#include "clang/Sema/SemaDiagnostic.h"
Yaxun Liu30d652a2017-08-15 16:02:49 +000022#include "llvm/ADT/DenseMap.h"
John McCallfc207f22013-03-07 21:37:12 +000023#include "llvm/IR/DataLayout.h"
24#include "llvm/IR/Intrinsics.h"
John McCalla8ec7eb2013-03-07 21:37:17 +000025#include "llvm/IR/Operator.h"
John McCallfc207f22013-03-07 21:37:12 +000026
27using namespace clang;
28using namespace CodeGen;
29
John McCalla8ec7eb2013-03-07 21:37:17 +000030namespace {
31 class AtomicInfo {
32 CodeGenFunction &CGF;
33 QualType AtomicTy;
34 QualType ValueTy;
35 uint64_t AtomicSizeInBits;
36 uint64_t ValueSizeInBits;
37 CharUnits AtomicAlign;
38 CharUnits ValueAlign;
39 CharUnits LValueAlign;
40 TypeEvaluationKind EvaluationKind;
41 bool UseLibcall;
Alexey Bataevb57056f2015-01-22 06:17:56 +000042 LValue LVal;
43 CGBitFieldInfo BFI;
John McCalla8ec7eb2013-03-07 21:37:17 +000044 public:
Alexey Bataevb57056f2015-01-22 06:17:56 +000045 AtomicInfo(CodeGenFunction &CGF, LValue &lvalue)
46 : CGF(CGF), AtomicSizeInBits(0), ValueSizeInBits(0),
47 EvaluationKind(TEK_Scalar), UseLibcall(true) {
48 assert(!lvalue.isGlobalReg());
John McCalla8ec7eb2013-03-07 21:37:17 +000049 ASTContext &C = CGF.getContext();
Alexey Bataevb57056f2015-01-22 06:17:56 +000050 if (lvalue.isSimple()) {
51 AtomicTy = lvalue.getType();
52 if (auto *ATy = AtomicTy->getAs<AtomicType>())
53 ValueTy = ATy->getValueType();
54 else
55 ValueTy = AtomicTy;
56 EvaluationKind = CGF.getEvaluationKind(ValueTy);
John McCalla8ec7eb2013-03-07 21:37:17 +000057
Alexey Bataevb57056f2015-01-22 06:17:56 +000058 uint64_t ValueAlignInBits;
59 uint64_t AtomicAlignInBits;
60 TypeInfo ValueTI = C.getTypeInfo(ValueTy);
61 ValueSizeInBits = ValueTI.Width;
62 ValueAlignInBits = ValueTI.Align;
John McCalla8ec7eb2013-03-07 21:37:17 +000063
Alexey Bataevb57056f2015-01-22 06:17:56 +000064 TypeInfo AtomicTI = C.getTypeInfo(AtomicTy);
65 AtomicSizeInBits = AtomicTI.Width;
66 AtomicAlignInBits = AtomicTI.Align;
John McCalla8ec7eb2013-03-07 21:37:17 +000067
Alexey Bataevb57056f2015-01-22 06:17:56 +000068 assert(ValueSizeInBits <= AtomicSizeInBits);
69 assert(ValueAlignInBits <= AtomicAlignInBits);
John McCalla8ec7eb2013-03-07 21:37:17 +000070
Alexey Bataevb57056f2015-01-22 06:17:56 +000071 AtomicAlign = C.toCharUnitsFromBits(AtomicAlignInBits);
72 ValueAlign = C.toCharUnitsFromBits(ValueAlignInBits);
73 if (lvalue.getAlignment().isZero())
74 lvalue.setAlignment(AtomicAlign);
John McCalla8ec7eb2013-03-07 21:37:17 +000075
Alexey Bataevb57056f2015-01-22 06:17:56 +000076 LVal = lvalue;
77 } else if (lvalue.isBitField()) {
Alexey Bataevb8329262015-02-27 06:33:30 +000078 ValueTy = lvalue.getType();
79 ValueSizeInBits = C.getTypeSize(ValueTy);
Alexey Bataevb57056f2015-01-22 06:17:56 +000080 auto &OrigBFI = lvalue.getBitFieldInfo();
81 auto Offset = OrigBFI.Offset % C.toBits(lvalue.getAlignment());
82 AtomicSizeInBits = C.toBits(
83 C.toCharUnitsFromBits(Offset + OrigBFI.Size + C.getCharWidth() - 1)
Rui Ueyama83aa9792016-01-14 21:00:27 +000084 .alignTo(lvalue.getAlignment()));
John McCall7f416cc2015-09-08 08:05:57 +000085 auto VoidPtrAddr = CGF.EmitCastToVoidPtr(lvalue.getBitFieldPointer());
Alexey Bataevb57056f2015-01-22 06:17:56 +000086 auto OffsetInChars =
87 (C.toCharUnitsFromBits(OrigBFI.Offset) / lvalue.getAlignment()) *
88 lvalue.getAlignment();
89 VoidPtrAddr = CGF.Builder.CreateConstGEP1_64(
90 VoidPtrAddr, OffsetInChars.getQuantity());
91 auto Addr = CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
92 VoidPtrAddr,
93 CGF.Builder.getIntNTy(AtomicSizeInBits)->getPointerTo(),
94 "atomic_bitfield_base");
95 BFI = OrigBFI;
96 BFI.Offset = Offset;
97 BFI.StorageSize = AtomicSizeInBits;
Ulrich Weigand03ce2a12015-07-10 17:30:00 +000098 BFI.StorageOffset += OffsetInChars;
John McCall7f416cc2015-09-08 08:05:57 +000099 LVal = LValue::MakeBitfield(Address(Addr, lvalue.getAlignment()),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +0000100 BFI, lvalue.getType(), lvalue.getBaseInfo(),
101 lvalue.getTBAAInfo());
Alexey Bataevb8329262015-02-27 06:33:30 +0000102 AtomicTy = C.getIntTypeForBitwidth(AtomicSizeInBits, OrigBFI.IsSigned);
103 if (AtomicTy.isNull()) {
104 llvm::APInt Size(
105 /*numBits=*/32,
106 C.toCharUnitsFromBits(AtomicSizeInBits).getQuantity());
107 AtomicTy = C.getConstantArrayType(C.CharTy, Size, ArrayType::Normal,
108 /*IndexTypeQuals=*/0);
109 }
110 AtomicAlign = ValueAlign = lvalue.getAlignment();
Alexey Bataevb57056f2015-01-22 06:17:56 +0000111 } else if (lvalue.isVectorElt()) {
Alexey Bataevb8329262015-02-27 06:33:30 +0000112 ValueTy = lvalue.getType()->getAs<VectorType>()->getElementType();
113 ValueSizeInBits = C.getTypeSize(ValueTy);
114 AtomicTy = lvalue.getType();
115 AtomicSizeInBits = C.getTypeSize(AtomicTy);
116 AtomicAlign = ValueAlign = lvalue.getAlignment();
Alexey Bataevb57056f2015-01-22 06:17:56 +0000117 LVal = lvalue;
118 } else {
119 assert(lvalue.isExtVectorElt());
Alexey Bataevb8329262015-02-27 06:33:30 +0000120 ValueTy = lvalue.getType();
121 ValueSizeInBits = C.getTypeSize(ValueTy);
122 AtomicTy = ValueTy = CGF.getContext().getExtVectorType(
John McCall7f416cc2015-09-08 08:05:57 +0000123 lvalue.getType(), lvalue.getExtVectorAddress()
124 .getElementType()->getVectorNumElements());
Alexey Bataevb8329262015-02-27 06:33:30 +0000125 AtomicSizeInBits = C.getTypeSize(AtomicTy);
126 AtomicAlign = ValueAlign = lvalue.getAlignment();
Alexey Bataevb57056f2015-01-22 06:17:56 +0000127 LVal = lvalue;
128 }
Alexey Bataev452d8e12014-12-15 05:25:25 +0000129 UseLibcall = !C.getTargetInfo().hasBuiltinAtomic(
130 AtomicSizeInBits, C.toBits(lvalue.getAlignment()));
John McCalla8ec7eb2013-03-07 21:37:17 +0000131 }
132
133 QualType getAtomicType() const { return AtomicTy; }
134 QualType getValueType() const { return ValueTy; }
135 CharUnits getAtomicAlignment() const { return AtomicAlign; }
136 CharUnits getValueAlignment() const { return ValueAlign; }
137 uint64_t getAtomicSizeInBits() const { return AtomicSizeInBits; }
Alexey Bataev452d8e12014-12-15 05:25:25 +0000138 uint64_t getValueSizeInBits() const { return ValueSizeInBits; }
John McCalla8ec7eb2013-03-07 21:37:17 +0000139 TypeEvaluationKind getEvaluationKind() const { return EvaluationKind; }
140 bool shouldUseLibcall() const { return UseLibcall; }
Alexey Bataevb57056f2015-01-22 06:17:56 +0000141 const LValue &getAtomicLValue() const { return LVal; }
John McCall7f416cc2015-09-08 08:05:57 +0000142 llvm::Value *getAtomicPointer() const {
Alexey Bataevb8329262015-02-27 06:33:30 +0000143 if (LVal.isSimple())
John McCall7f416cc2015-09-08 08:05:57 +0000144 return LVal.getPointer();
Alexey Bataevb8329262015-02-27 06:33:30 +0000145 else if (LVal.isBitField())
John McCall7f416cc2015-09-08 08:05:57 +0000146 return LVal.getBitFieldPointer();
Alexey Bataevb8329262015-02-27 06:33:30 +0000147 else if (LVal.isVectorElt())
John McCall7f416cc2015-09-08 08:05:57 +0000148 return LVal.getVectorPointer();
Alexey Bataevb8329262015-02-27 06:33:30 +0000149 assert(LVal.isExtVectorElt());
John McCall7f416cc2015-09-08 08:05:57 +0000150 return LVal.getExtVectorPointer();
151 }
152 Address getAtomicAddress() const {
153 return Address(getAtomicPointer(), getAtomicAlignment());
154 }
155
156 Address getAtomicAddressAsAtomicIntPointer() const {
157 return emitCastToAtomicIntPointer(getAtomicAddress());
Alexey Bataevb8329262015-02-27 06:33:30 +0000158 }
John McCalla8ec7eb2013-03-07 21:37:17 +0000159
160 /// Is the atomic size larger than the underlying value type?
161 ///
162 /// Note that the absence of padding does not mean that atomic
163 /// objects are completely interchangeable with non-atomic
164 /// objects: we might have promoted the alignment of a type
165 /// without making it bigger.
166 bool hasPadding() const {
167 return (ValueSizeInBits != AtomicSizeInBits);
168 }
169
Alexey Bataevb57056f2015-01-22 06:17:56 +0000170 bool emitMemSetZeroIfNecessary() const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000171
172 llvm::Value *getAtomicSizeValue() const {
173 CharUnits size = CGF.getContext().toCharUnitsFromBits(AtomicSizeInBits);
174 return CGF.CGM.getSize(size);
175 }
176
Tim Northovercc2a6e02015-11-09 19:56:35 +0000177 /// Cast the given pointer to an integer pointer suitable for atomic
178 /// operations if the source.
179 Address emitCastToAtomicIntPointer(Address Addr) const;
180
181 /// If Addr is compatible with the iN that will be used for an atomic
182 /// operation, bitcast it. Otherwise, create a temporary that is suitable
183 /// and copy the value across.
184 Address convertToAtomicIntPointer(Address Addr) const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000185
186 /// Turn an atomic-layout object into an r-value.
John McCall7f416cc2015-09-08 08:05:57 +0000187 RValue convertAtomicTempToRValue(Address addr, AggValueSlot resultSlot,
188 SourceLocation loc, bool AsValue) const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000189
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000190 /// Converts a rvalue to integer value.
Alexey Bataev452d8e12014-12-15 05:25:25 +0000191 llvm::Value *convertRValueToInt(RValue RVal) const;
192
Alexey Bataevb8329262015-02-27 06:33:30 +0000193 RValue ConvertIntToValueOrAtomic(llvm::Value *IntVal,
194 AggValueSlot ResultSlot,
195 SourceLocation Loc, bool AsValue) const;
Alexey Bataev452d8e12014-12-15 05:25:25 +0000196
John McCalla8ec7eb2013-03-07 21:37:17 +0000197 /// Copy an atomic r-value into atomic-layout memory.
Alexey Bataevb57056f2015-01-22 06:17:56 +0000198 void emitCopyIntoMemory(RValue rvalue) const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000199
200 /// Project an l-value down to the value field.
Alexey Bataevb57056f2015-01-22 06:17:56 +0000201 LValue projectValue() const {
202 assert(LVal.isSimple());
John McCall7f416cc2015-09-08 08:05:57 +0000203 Address addr = getAtomicAddress();
John McCalla8ec7eb2013-03-07 21:37:17 +0000204 if (hasPadding())
John McCall7f416cc2015-09-08 08:05:57 +0000205 addr = CGF.Builder.CreateStructGEP(addr, 0, CharUnits());
John McCalla8ec7eb2013-03-07 21:37:17 +0000206
John McCall7f416cc2015-09-08 08:05:57 +0000207 return LValue::MakeAddr(addr, getValueType(), CGF.getContext(),
Ivan A. Kosarev383890b2017-10-06 08:17:48 +0000208 LVal.getBaseInfo(), LVal.getTBAAInfo());
John McCalla8ec7eb2013-03-07 21:37:17 +0000209 }
210
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000211 /// Emits atomic load.
Alexey Bataevb8329262015-02-27 06:33:30 +0000212 /// \returns Loaded value.
213 RValue EmitAtomicLoad(AggValueSlot ResultSlot, SourceLocation Loc,
214 bool AsValue, llvm::AtomicOrdering AO,
215 bool IsVolatile);
216
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000217 /// Emits atomic compare-and-exchange sequence.
Alexey Bataevb8329262015-02-27 06:33:30 +0000218 /// \param Expected Expected value.
219 /// \param Desired Desired value.
220 /// \param Success Atomic ordering for success operation.
221 /// \param Failure Atomic ordering for failed operation.
222 /// \param IsWeak true if atomic operation is weak, false otherwise.
223 /// \returns Pair of values: previous value from storage (value type) and
224 /// boolean flag (i1 type) with true if success and false otherwise.
JF Bastien92f4ef12016-04-06 17:26:42 +0000225 std::pair<RValue, llvm::Value *>
226 EmitAtomicCompareExchange(RValue Expected, RValue Desired,
227 llvm::AtomicOrdering Success =
228 llvm::AtomicOrdering::SequentiallyConsistent,
229 llvm::AtomicOrdering Failure =
230 llvm::AtomicOrdering::SequentiallyConsistent,
231 bool IsWeak = false);
Alexey Bataevb8329262015-02-27 06:33:30 +0000232
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000233 /// Emits atomic update.
NAKAMURA Takumid16af5d2015-05-15 13:47:52 +0000234 /// \param AO Atomic ordering.
235 /// \param UpdateOp Update operation for the current lvalue.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000236 void EmitAtomicUpdate(llvm::AtomicOrdering AO,
237 const llvm::function_ref<RValue(RValue)> &UpdateOp,
238 bool IsVolatile);
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000239 /// Emits atomic update.
NAKAMURA Takumid16af5d2015-05-15 13:47:52 +0000240 /// \param AO Atomic ordering.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000241 void EmitAtomicUpdate(llvm::AtomicOrdering AO, RValue UpdateRVal,
242 bool IsVolatile);
243
John McCalla8ec7eb2013-03-07 21:37:17 +0000244 /// Materialize an atomic r-value in atomic-layout memory.
John McCall7f416cc2015-09-08 08:05:57 +0000245 Address materializeRValue(RValue rvalue) const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000246
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000247 /// Creates temp alloca for intermediate operations on atomic value.
Tim Northovercc2a6e02015-11-09 19:56:35 +0000248 Address CreateTempAlloca() const;
John McCalla8ec7eb2013-03-07 21:37:17 +0000249 private:
250 bool requiresMemSetZero(llvm::Type *type) const;
Alexey Bataevb8329262015-02-27 06:33:30 +0000251
Alexey Bataevb8329262015-02-27 06:33:30 +0000252
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000253 /// Emits atomic load as a libcall.
Alexey Bataevb8329262015-02-27 06:33:30 +0000254 void EmitAtomicLoadLibcall(llvm::Value *AddForLoaded,
255 llvm::AtomicOrdering AO, bool IsVolatile);
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000256 /// Emits atomic load as LLVM instruction.
Alexey Bataevb8329262015-02-27 06:33:30 +0000257 llvm::Value *EmitAtomicLoadOp(llvm::AtomicOrdering AO, bool IsVolatile);
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000258 /// Emits atomic compare-and-exchange op as a libcall.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000259 llvm::Value *EmitAtomicCompareExchangeLibcall(
260 llvm::Value *ExpectedAddr, llvm::Value *DesiredAddr,
JF Bastien92f4ef12016-04-06 17:26:42 +0000261 llvm::AtomicOrdering Success =
262 llvm::AtomicOrdering::SequentiallyConsistent,
263 llvm::AtomicOrdering Failure =
264 llvm::AtomicOrdering::SequentiallyConsistent);
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000265 /// Emits atomic compare-and-exchange op as LLVM instruction.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000266 std::pair<llvm::Value *, llvm::Value *> EmitAtomicCompareExchangeOp(
267 llvm::Value *ExpectedVal, llvm::Value *DesiredVal,
JF Bastien92f4ef12016-04-06 17:26:42 +0000268 llvm::AtomicOrdering Success =
269 llvm::AtomicOrdering::SequentiallyConsistent,
270 llvm::AtomicOrdering Failure =
271 llvm::AtomicOrdering::SequentiallyConsistent,
Alexey Bataevb8329262015-02-27 06:33:30 +0000272 bool IsWeak = false);
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000273 /// Emit atomic update as libcalls.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000274 void
275 EmitAtomicUpdateLibcall(llvm::AtomicOrdering AO,
276 const llvm::function_ref<RValue(RValue)> &UpdateOp,
277 bool IsVolatile);
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000278 /// Emit atomic update as LLVM instructions.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000279 void EmitAtomicUpdateOp(llvm::AtomicOrdering AO,
280 const llvm::function_ref<RValue(RValue)> &UpdateOp,
281 bool IsVolatile);
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000282 /// Emit atomic update as libcalls.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000283 void EmitAtomicUpdateLibcall(llvm::AtomicOrdering AO, RValue UpdateRVal,
284 bool IsVolatile);
Adrian Prantl9fc8faf2018-05-09 01:00:01 +0000285 /// Emit atomic update as LLVM instructions.
Alexey Bataevf0ab5532015-05-15 08:36:34 +0000286 void EmitAtomicUpdateOp(llvm::AtomicOrdering AO, RValue UpdateRal,
287 bool IsVolatile);
John McCalla8ec7eb2013-03-07 21:37:17 +0000288 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +0000289}
John McCalla8ec7eb2013-03-07 21:37:17 +0000290
John McCall7f416cc2015-09-08 08:05:57 +0000291Address AtomicInfo::CreateTempAlloca() const {
292 Address TempAlloca = CGF.CreateMemTemp(
Alexey Bataevb8329262015-02-27 06:33:30 +0000293 (LVal.isBitField() && ValueSizeInBits > AtomicSizeInBits) ? ValueTy
294 : AtomicTy,
John McCall7f416cc2015-09-08 08:05:57 +0000295 getAtomicAlignment(),
Alexey Bataevb8329262015-02-27 06:33:30 +0000296 "atomic-temp");
Alexey Bataevb8329262015-02-27 06:33:30 +0000297 // Cast to pointer to value type for bitfields.
298 if (LVal.isBitField())
299 return CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(
John McCall7f416cc2015-09-08 08:05:57 +0000300 TempAlloca, getAtomicAddress().getType());
Alexey Bataevb8329262015-02-27 06:33:30 +0000301 return TempAlloca;
302}
303
John McCalla8ec7eb2013-03-07 21:37:17 +0000304static RValue emitAtomicLibcall(CodeGenFunction &CGF,
305 StringRef fnName,
306 QualType resultType,
307 CallArgList &args) {
308 const CGFunctionInfo &fnInfo =
John McCallc56a8b32016-03-11 04:30:31 +0000309 CGF.CGM.getTypes().arrangeBuiltinFunctionCall(resultType, args);
John McCalla8ec7eb2013-03-07 21:37:17 +0000310 llvm::FunctionType *fnTy = CGF.CGM.getTypes().GetFunctionType(fnInfo);
311 llvm::Constant *fn = CGF.CGM.CreateRuntimeFunction(fnTy, fnName);
John McCallb92ab1a2016-10-26 23:46:34 +0000312 auto callee = CGCallee::forDirect(fn);
313 return CGF.EmitCall(fnInfo, callee, ReturnValueSlot(), args);
John McCalla8ec7eb2013-03-07 21:37:17 +0000314}
315
316/// Does a store of the given IR type modify the full expected width?
317static bool isFullSizeType(CodeGenModule &CGM, llvm::Type *type,
318 uint64_t expectedSize) {
319 return (CGM.getDataLayout().getTypeStoreSize(type) * 8 == expectedSize);
320}
321
322/// Does the atomic type require memsetting to zero before initialization?
323///
324/// The IR type is provided as a way of making certain queries faster.
325bool AtomicInfo::requiresMemSetZero(llvm::Type *type) const {
326 // If the atomic type has size padding, we definitely need a memset.
327 if (hasPadding()) return true;
328
329 // Otherwise, do some simple heuristics to try to avoid it:
330 switch (getEvaluationKind()) {
331 // For scalars and complexes, check whether the store size of the
332 // type uses the full size.
333 case TEK_Scalar:
334 return !isFullSizeType(CGF.CGM, type, AtomicSizeInBits);
335 case TEK_Complex:
336 return !isFullSizeType(CGF.CGM, type->getStructElementType(0),
337 AtomicSizeInBits / 2);
338
Eli Friedmanbe4504d2013-07-11 01:32:21 +0000339 // Padding in structs has an undefined bit pattern. User beware.
John McCalla8ec7eb2013-03-07 21:37:17 +0000340 case TEK_Aggregate:
Eli Friedmanbe4504d2013-07-11 01:32:21 +0000341 return false;
John McCalla8ec7eb2013-03-07 21:37:17 +0000342 }
343 llvm_unreachable("bad evaluation kind");
344}
345
Alexey Bataevb57056f2015-01-22 06:17:56 +0000346bool AtomicInfo::emitMemSetZeroIfNecessary() const {
347 assert(LVal.isSimple());
John McCall7f416cc2015-09-08 08:05:57 +0000348 llvm::Value *addr = LVal.getPointer();
John McCalla8ec7eb2013-03-07 21:37:17 +0000349 if (!requiresMemSetZero(addr->getType()->getPointerElementType()))
Eli Friedmanbe4504d2013-07-11 01:32:21 +0000350 return false;
John McCalla8ec7eb2013-03-07 21:37:17 +0000351
Alexey Bataevb8329262015-02-27 06:33:30 +0000352 CGF.Builder.CreateMemSet(
353 addr, llvm::ConstantInt::get(CGF.Int8Ty, 0),
354 CGF.getContext().toCharUnitsFromBits(AtomicSizeInBits).getQuantity(),
355 LVal.getAlignment().getQuantity());
Eli Friedmanbe4504d2013-07-11 01:32:21 +0000356 return true;
John McCalla8ec7eb2013-03-07 21:37:17 +0000357}
358
Tim Northovercadbbe12014-06-13 19:43:04 +0000359static void emitAtomicCmpXchg(CodeGenFunction &CGF, AtomicExpr *E, bool IsWeak,
John McCall7f416cc2015-09-08 08:05:57 +0000360 Address Dest, Address Ptr,
361 Address Val1, Address Val2,
362 uint64_t Size,
Tim Northover9c177222014-03-13 19:25:48 +0000363 llvm::AtomicOrdering SuccessOrder,
Yaxun Liu39195062017-08-04 18:16:31 +0000364 llvm::AtomicOrdering FailureOrder,
365 llvm::SyncScope::ID Scope) {
Tim Northover9c177222014-03-13 19:25:48 +0000366 // Note that cmpxchg doesn't support weak cmpxchg, at least at the moment.
John McCall7f416cc2015-09-08 08:05:57 +0000367 llvm::Value *Expected = CGF.Builder.CreateLoad(Val1);
368 llvm::Value *Desired = CGF.Builder.CreateLoad(Val2);
Tim Northover9c177222014-03-13 19:25:48 +0000369
Tim Northoverb49b04b2014-06-13 14:24:59 +0000370 llvm::AtomicCmpXchgInst *Pair = CGF.Builder.CreateAtomicCmpXchg(
Yaxun Liu39195062017-08-04 18:16:31 +0000371 Ptr.getPointer(), Expected, Desired, SuccessOrder, FailureOrder,
372 Scope);
Tim Northoverb49b04b2014-06-13 14:24:59 +0000373 Pair->setVolatile(E->isVolatile());
Tim Northovercadbbe12014-06-13 19:43:04 +0000374 Pair->setWeak(IsWeak);
Tim Northover9c177222014-03-13 19:25:48 +0000375
376 // Cmp holds the result of the compare-exchange operation: true on success,
377 // false on failure.
Tim Northoverb49b04b2014-06-13 14:24:59 +0000378 llvm::Value *Old = CGF.Builder.CreateExtractValue(Pair, 0);
379 llvm::Value *Cmp = CGF.Builder.CreateExtractValue(Pair, 1);
Tim Northover9c177222014-03-13 19:25:48 +0000380
381 // This basic block is used to hold the store instruction if the operation
382 // failed.
383 llvm::BasicBlock *StoreExpectedBB =
384 CGF.createBasicBlock("cmpxchg.store_expected", CGF.CurFn);
385
386 // This basic block is the exit point of the operation, we should end up
387 // here regardless of whether or not the operation succeeded.
388 llvm::BasicBlock *ContinueBB =
389 CGF.createBasicBlock("cmpxchg.continue", CGF.CurFn);
390
391 // Update Expected if Expected isn't equal to Old, otherwise branch to the
392 // exit point.
393 CGF.Builder.CreateCondBr(Cmp, ContinueBB, StoreExpectedBB);
394
395 CGF.Builder.SetInsertPoint(StoreExpectedBB);
396 // Update the memory at Expected with Old's value.
John McCall7f416cc2015-09-08 08:05:57 +0000397 CGF.Builder.CreateStore(Old, Val1);
Tim Northover9c177222014-03-13 19:25:48 +0000398 // Finally, branch to the exit point.
399 CGF.Builder.CreateBr(ContinueBB);
400
401 CGF.Builder.SetInsertPoint(ContinueBB);
402 // Update the memory at Dest with Cmp's value.
403 CGF.EmitStoreOfScalar(Cmp, CGF.MakeAddrLValue(Dest, E->getType()));
Tim Northover9c177222014-03-13 19:25:48 +0000404}
405
406/// Given an ordering required on success, emit all possible cmpxchg
407/// instructions to cope with the provided (but possibly only dynamically known)
408/// FailureOrder.
409static void emitAtomicCmpXchgFailureSet(CodeGenFunction &CGF, AtomicExpr *E,
JF Bastiendda2cb12016-04-18 18:01:49 +0000410 bool IsWeak, Address Dest, Address Ptr,
411 Address Val1, Address Val2,
Tim Northover9c177222014-03-13 19:25:48 +0000412 llvm::Value *FailureOrderVal,
John McCall7f416cc2015-09-08 08:05:57 +0000413 uint64_t Size,
Yaxun Liu39195062017-08-04 18:16:31 +0000414 llvm::AtomicOrdering SuccessOrder,
415 llvm::SyncScope::ID Scope) {
Tim Northover9c177222014-03-13 19:25:48 +0000416 llvm::AtomicOrdering FailureOrder;
417 if (llvm::ConstantInt *FO = dyn_cast<llvm::ConstantInt>(FailureOrderVal)) {
JF Bastiendda2cb12016-04-18 18:01:49 +0000418 auto FOS = FO->getSExtValue();
419 if (!llvm::isValidAtomicOrderingCABI(FOS))
JF Bastien92f4ef12016-04-06 17:26:42 +0000420 FailureOrder = llvm::AtomicOrdering::Monotonic;
JF Bastiendda2cb12016-04-18 18:01:49 +0000421 else
422 switch ((llvm::AtomicOrderingCABI)FOS) {
423 case llvm::AtomicOrderingCABI::relaxed:
424 case llvm::AtomicOrderingCABI::release:
425 case llvm::AtomicOrderingCABI::acq_rel:
426 FailureOrder = llvm::AtomicOrdering::Monotonic;
427 break;
428 case llvm::AtomicOrderingCABI::consume:
429 case llvm::AtomicOrderingCABI::acquire:
430 FailureOrder = llvm::AtomicOrdering::Acquire;
431 break;
432 case llvm::AtomicOrderingCABI::seq_cst:
433 FailureOrder = llvm::AtomicOrdering::SequentiallyConsistent;
434 break;
435 }
JF Bastiendd11ee72016-04-06 23:37:36 +0000436 if (isStrongerThan(FailureOrder, SuccessOrder)) {
437 // Don't assert on undefined behavior "failure argument shall be no
438 // stronger than the success argument".
Tim Northover9c177222014-03-13 19:25:48 +0000439 FailureOrder =
JF Bastiendda2cb12016-04-18 18:01:49 +0000440 llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(SuccessOrder);
Tim Northover9c177222014-03-13 19:25:48 +0000441 }
JF Bastiendda2cb12016-04-18 18:01:49 +0000442 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, SuccessOrder,
Yaxun Liu39195062017-08-04 18:16:31 +0000443 FailureOrder, Scope);
Tim Northover9c177222014-03-13 19:25:48 +0000444 return;
445 }
446
447 // Create all the relevant BB's
Craig Topper8a13c412014-05-21 05:09:00 +0000448 llvm::BasicBlock *MonotonicBB = nullptr, *AcquireBB = nullptr,
449 *SeqCstBB = nullptr;
Tim Northover9c177222014-03-13 19:25:48 +0000450 MonotonicBB = CGF.createBasicBlock("monotonic_fail", CGF.CurFn);
JF Bastien92f4ef12016-04-06 17:26:42 +0000451 if (SuccessOrder != llvm::AtomicOrdering::Monotonic &&
452 SuccessOrder != llvm::AtomicOrdering::Release)
Tim Northover9c177222014-03-13 19:25:48 +0000453 AcquireBB = CGF.createBasicBlock("acquire_fail", CGF.CurFn);
JF Bastien92f4ef12016-04-06 17:26:42 +0000454 if (SuccessOrder == llvm::AtomicOrdering::SequentiallyConsistent)
Tim Northover9c177222014-03-13 19:25:48 +0000455 SeqCstBB = CGF.createBasicBlock("seqcst_fail", CGF.CurFn);
456
457 llvm::BasicBlock *ContBB = CGF.createBasicBlock("atomic.continue", CGF.CurFn);
458
459 llvm::SwitchInst *SI = CGF.Builder.CreateSwitch(FailureOrderVal, MonotonicBB);
460
461 // Emit all the different atomics
462
463 // MonotonicBB is arbitrarily chosen as the default case; in practice, this
464 // doesn't matter unless someone is crazy enough to use something that
465 // doesn't fold to a constant for the ordering.
466 CGF.Builder.SetInsertPoint(MonotonicBB);
Tim Northovercadbbe12014-06-13 19:43:04 +0000467 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2,
Yaxun Liu39195062017-08-04 18:16:31 +0000468 Size, SuccessOrder, llvm::AtomicOrdering::Monotonic, Scope);
Tim Northover9c177222014-03-13 19:25:48 +0000469 CGF.Builder.CreateBr(ContBB);
470
471 if (AcquireBB) {
472 CGF.Builder.SetInsertPoint(AcquireBB);
Tim Northovercadbbe12014-06-13 19:43:04 +0000473 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2,
Yaxun Liu39195062017-08-04 18:16:31 +0000474 Size, SuccessOrder, llvm::AtomicOrdering::Acquire, Scope);
Tim Northover9c177222014-03-13 19:25:48 +0000475 CGF.Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +0000476 SI->addCase(CGF.Builder.getInt32((int)llvm::AtomicOrderingCABI::consume),
Tim Northover9c177222014-03-13 19:25:48 +0000477 AcquireBB);
JF Bastiendda2cb12016-04-18 18:01:49 +0000478 SI->addCase(CGF.Builder.getInt32((int)llvm::AtomicOrderingCABI::acquire),
Tim Northover9c177222014-03-13 19:25:48 +0000479 AcquireBB);
480 }
481 if (SeqCstBB) {
482 CGF.Builder.SetInsertPoint(SeqCstBB);
JF Bastien92f4ef12016-04-06 17:26:42 +0000483 emitAtomicCmpXchg(CGF, E, IsWeak, Dest, Ptr, Val1, Val2, Size, SuccessOrder,
Yaxun Liu39195062017-08-04 18:16:31 +0000484 llvm::AtomicOrdering::SequentiallyConsistent, Scope);
Tim Northover9c177222014-03-13 19:25:48 +0000485 CGF.Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +0000486 SI->addCase(CGF.Builder.getInt32((int)llvm::AtomicOrderingCABI::seq_cst),
Tim Northover9c177222014-03-13 19:25:48 +0000487 SeqCstBB);
488 }
489
490 CGF.Builder.SetInsertPoint(ContBB);
491}
492
John McCall7f416cc2015-09-08 08:05:57 +0000493static void EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *E, Address Dest,
494 Address Ptr, Address Val1, Address Val2,
Tim Northovercadbbe12014-06-13 19:43:04 +0000495 llvm::Value *IsWeak, llvm::Value *FailureOrder,
Yaxun Liu39195062017-08-04 18:16:31 +0000496 uint64_t Size, llvm::AtomicOrdering Order,
497 llvm::SyncScope::ID Scope) {
John McCallfc207f22013-03-07 21:37:12 +0000498 llvm::AtomicRMWInst::BinOp Op = llvm::AtomicRMWInst::Add;
499 llvm::Instruction::BinaryOps PostOp = (llvm::Instruction::BinaryOps)0;
500
501 switch (E->getOp()) {
502 case AtomicExpr::AO__c11_atomic_init:
Yaxun Liu39195062017-08-04 18:16:31 +0000503 case AtomicExpr::AO__opencl_atomic_init:
John McCallfc207f22013-03-07 21:37:12 +0000504 llvm_unreachable("Already handled!");
505
506 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
Yaxun Liu39195062017-08-04 18:16:31 +0000507 case AtomicExpr::AO__opencl_atomic_compare_exchange_strong:
Tim Northovercadbbe12014-06-13 19:43:04 +0000508 emitAtomicCmpXchgFailureSet(CGF, E, false, Dest, Ptr, Val1, Val2,
Yaxun Liu39195062017-08-04 18:16:31 +0000509 FailureOrder, Size, Order, Scope);
John McCallfc207f22013-03-07 21:37:12 +0000510 return;
Tim Northovercadbbe12014-06-13 19:43:04 +0000511 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
Yaxun Liu39195062017-08-04 18:16:31 +0000512 case AtomicExpr::AO__opencl_atomic_compare_exchange_weak:
Tim Northovercadbbe12014-06-13 19:43:04 +0000513 emitAtomicCmpXchgFailureSet(CGF, E, true, Dest, Ptr, Val1, Val2,
Yaxun Liu39195062017-08-04 18:16:31 +0000514 FailureOrder, Size, Order, Scope);
Tim Northovercadbbe12014-06-13 19:43:04 +0000515 return;
516 case AtomicExpr::AO__atomic_compare_exchange:
517 case AtomicExpr::AO__atomic_compare_exchange_n: {
518 if (llvm::ConstantInt *IsWeakC = dyn_cast<llvm::ConstantInt>(IsWeak)) {
519 emitAtomicCmpXchgFailureSet(CGF, E, IsWeakC->getZExtValue(), Dest, Ptr,
Yaxun Liu39195062017-08-04 18:16:31 +0000520 Val1, Val2, FailureOrder, Size, Order, Scope);
Tim Northovercadbbe12014-06-13 19:43:04 +0000521 } else {
522 // Create all the relevant BB's
523 llvm::BasicBlock *StrongBB =
524 CGF.createBasicBlock("cmpxchg.strong", CGF.CurFn);
525 llvm::BasicBlock *WeakBB = CGF.createBasicBlock("cmxchg.weak", CGF.CurFn);
526 llvm::BasicBlock *ContBB =
527 CGF.createBasicBlock("cmpxchg.continue", CGF.CurFn);
528
529 llvm::SwitchInst *SI = CGF.Builder.CreateSwitch(IsWeak, WeakBB);
530 SI->addCase(CGF.Builder.getInt1(false), StrongBB);
531
532 CGF.Builder.SetInsertPoint(StrongBB);
533 emitAtomicCmpXchgFailureSet(CGF, E, false, Dest, Ptr, Val1, Val2,
Yaxun Liu39195062017-08-04 18:16:31 +0000534 FailureOrder, Size, Order, Scope);
Tim Northovercadbbe12014-06-13 19:43:04 +0000535 CGF.Builder.CreateBr(ContBB);
536
537 CGF.Builder.SetInsertPoint(WeakBB);
538 emitAtomicCmpXchgFailureSet(CGF, E, true, Dest, Ptr, Val1, Val2,
Yaxun Liu39195062017-08-04 18:16:31 +0000539 FailureOrder, Size, Order, Scope);
Tim Northovercadbbe12014-06-13 19:43:04 +0000540 CGF.Builder.CreateBr(ContBB);
541
542 CGF.Builder.SetInsertPoint(ContBB);
543 }
544 return;
545 }
John McCallfc207f22013-03-07 21:37:12 +0000546 case AtomicExpr::AO__c11_atomic_load:
Yaxun Liu39195062017-08-04 18:16:31 +0000547 case AtomicExpr::AO__opencl_atomic_load:
John McCallfc207f22013-03-07 21:37:12 +0000548 case AtomicExpr::AO__atomic_load_n:
549 case AtomicExpr::AO__atomic_load: {
550 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Ptr);
Yaxun Liu39195062017-08-04 18:16:31 +0000551 Load->setAtomic(Order, Scope);
John McCallfc207f22013-03-07 21:37:12 +0000552 Load->setVolatile(E->isVolatile());
John McCall7f416cc2015-09-08 08:05:57 +0000553 CGF.Builder.CreateStore(Load, Dest);
John McCallfc207f22013-03-07 21:37:12 +0000554 return;
555 }
556
557 case AtomicExpr::AO__c11_atomic_store:
Yaxun Liu39195062017-08-04 18:16:31 +0000558 case AtomicExpr::AO__opencl_atomic_store:
John McCallfc207f22013-03-07 21:37:12 +0000559 case AtomicExpr::AO__atomic_store:
560 case AtomicExpr::AO__atomic_store_n: {
John McCall7f416cc2015-09-08 08:05:57 +0000561 llvm::Value *LoadVal1 = CGF.Builder.CreateLoad(Val1);
John McCallfc207f22013-03-07 21:37:12 +0000562 llvm::StoreInst *Store = CGF.Builder.CreateStore(LoadVal1, Ptr);
Yaxun Liu39195062017-08-04 18:16:31 +0000563 Store->setAtomic(Order, Scope);
John McCallfc207f22013-03-07 21:37:12 +0000564 Store->setVolatile(E->isVolatile());
565 return;
566 }
567
568 case AtomicExpr::AO__c11_atomic_exchange:
Yaxun Liu39195062017-08-04 18:16:31 +0000569 case AtomicExpr::AO__opencl_atomic_exchange:
John McCallfc207f22013-03-07 21:37:12 +0000570 case AtomicExpr::AO__atomic_exchange_n:
571 case AtomicExpr::AO__atomic_exchange:
572 Op = llvm::AtomicRMWInst::Xchg;
573 break;
574
575 case AtomicExpr::AO__atomic_add_fetch:
576 PostOp = llvm::Instruction::Add;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +0000577 LLVM_FALLTHROUGH;
John McCallfc207f22013-03-07 21:37:12 +0000578 case AtomicExpr::AO__c11_atomic_fetch_add:
Yaxun Liu39195062017-08-04 18:16:31 +0000579 case AtomicExpr::AO__opencl_atomic_fetch_add:
John McCallfc207f22013-03-07 21:37:12 +0000580 case AtomicExpr::AO__atomic_fetch_add:
581 Op = llvm::AtomicRMWInst::Add;
582 break;
583
584 case AtomicExpr::AO__atomic_sub_fetch:
585 PostOp = llvm::Instruction::Sub;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +0000586 LLVM_FALLTHROUGH;
John McCallfc207f22013-03-07 21:37:12 +0000587 case AtomicExpr::AO__c11_atomic_fetch_sub:
Yaxun Liu39195062017-08-04 18:16:31 +0000588 case AtomicExpr::AO__opencl_atomic_fetch_sub:
John McCallfc207f22013-03-07 21:37:12 +0000589 case AtomicExpr::AO__atomic_fetch_sub:
590 Op = llvm::AtomicRMWInst::Sub;
591 break;
592
Yaxun Liu39195062017-08-04 18:16:31 +0000593 case AtomicExpr::AO__opencl_atomic_fetch_min:
Elena Demikhovskyd31327d2018-05-13 07:45:58 +0000594 case AtomicExpr::AO__atomic_fetch_min:
Yaxun Liu39195062017-08-04 18:16:31 +0000595 Op = E->getValueType()->isSignedIntegerType() ? llvm::AtomicRMWInst::Min
596 : llvm::AtomicRMWInst::UMin;
597 break;
598
599 case AtomicExpr::AO__opencl_atomic_fetch_max:
Elena Demikhovskyd31327d2018-05-13 07:45:58 +0000600 case AtomicExpr::AO__atomic_fetch_max:
Yaxun Liu39195062017-08-04 18:16:31 +0000601 Op = E->getValueType()->isSignedIntegerType() ? llvm::AtomicRMWInst::Max
602 : llvm::AtomicRMWInst::UMax;
603 break;
604
John McCallfc207f22013-03-07 21:37:12 +0000605 case AtomicExpr::AO__atomic_and_fetch:
606 PostOp = llvm::Instruction::And;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +0000607 LLVM_FALLTHROUGH;
John McCallfc207f22013-03-07 21:37:12 +0000608 case AtomicExpr::AO__c11_atomic_fetch_and:
Yaxun Liu39195062017-08-04 18:16:31 +0000609 case AtomicExpr::AO__opencl_atomic_fetch_and:
John McCallfc207f22013-03-07 21:37:12 +0000610 case AtomicExpr::AO__atomic_fetch_and:
611 Op = llvm::AtomicRMWInst::And;
612 break;
613
614 case AtomicExpr::AO__atomic_or_fetch:
615 PostOp = llvm::Instruction::Or;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +0000616 LLVM_FALLTHROUGH;
John McCallfc207f22013-03-07 21:37:12 +0000617 case AtomicExpr::AO__c11_atomic_fetch_or:
Yaxun Liu39195062017-08-04 18:16:31 +0000618 case AtomicExpr::AO__opencl_atomic_fetch_or:
John McCallfc207f22013-03-07 21:37:12 +0000619 case AtomicExpr::AO__atomic_fetch_or:
620 Op = llvm::AtomicRMWInst::Or;
621 break;
622
623 case AtomicExpr::AO__atomic_xor_fetch:
624 PostOp = llvm::Instruction::Xor;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +0000625 LLVM_FALLTHROUGH;
John McCallfc207f22013-03-07 21:37:12 +0000626 case AtomicExpr::AO__c11_atomic_fetch_xor:
Yaxun Liu39195062017-08-04 18:16:31 +0000627 case AtomicExpr::AO__opencl_atomic_fetch_xor:
John McCallfc207f22013-03-07 21:37:12 +0000628 case AtomicExpr::AO__atomic_fetch_xor:
629 Op = llvm::AtomicRMWInst::Xor;
630 break;
631
632 case AtomicExpr::AO__atomic_nand_fetch:
James Y Knight7aefb5b2015-11-12 18:37:29 +0000633 PostOp = llvm::Instruction::And; // the NOT is special cased below
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +0000634 LLVM_FALLTHROUGH;
John McCallfc207f22013-03-07 21:37:12 +0000635 case AtomicExpr::AO__atomic_fetch_nand:
636 Op = llvm::AtomicRMWInst::Nand;
637 break;
638 }
639
John McCall7f416cc2015-09-08 08:05:57 +0000640 llvm::Value *LoadVal1 = CGF.Builder.CreateLoad(Val1);
John McCallfc207f22013-03-07 21:37:12 +0000641 llvm::AtomicRMWInst *RMWI =
Yaxun Liu39195062017-08-04 18:16:31 +0000642 CGF.Builder.CreateAtomicRMW(Op, Ptr.getPointer(), LoadVal1, Order, Scope);
John McCallfc207f22013-03-07 21:37:12 +0000643 RMWI->setVolatile(E->isVolatile());
644
645 // For __atomic_*_fetch operations, perform the operation again to
646 // determine the value which was written.
647 llvm::Value *Result = RMWI;
648 if (PostOp)
649 Result = CGF.Builder.CreateBinOp(PostOp, RMWI, LoadVal1);
650 if (E->getOp() == AtomicExpr::AO__atomic_nand_fetch)
651 Result = CGF.Builder.CreateNot(Result);
John McCall7f416cc2015-09-08 08:05:57 +0000652 CGF.Builder.CreateStore(Result, Dest);
John McCallfc207f22013-03-07 21:37:12 +0000653}
654
655// This function emits any expression (scalar, complex, or aggregate)
656// into a temporary alloca.
John McCall7f416cc2015-09-08 08:05:57 +0000657static Address
John McCallfc207f22013-03-07 21:37:12 +0000658EmitValToTemp(CodeGenFunction &CGF, Expr *E) {
John McCall7f416cc2015-09-08 08:05:57 +0000659 Address DeclPtr = CGF.CreateMemTemp(E->getType(), ".atomictmp");
John McCallfc207f22013-03-07 21:37:12 +0000660 CGF.EmitAnyExprToMem(E, DeclPtr, E->getType().getQualifiers(),
661 /*Init*/ true);
662 return DeclPtr;
663}
664
Yaxun Liu30d652a2017-08-15 16:02:49 +0000665static void EmitAtomicOp(CodeGenFunction &CGF, AtomicExpr *Expr, Address Dest,
666 Address Ptr, Address Val1, Address Val2,
667 llvm::Value *IsWeak, llvm::Value *FailureOrder,
668 uint64_t Size, llvm::AtomicOrdering Order,
669 llvm::Value *Scope) {
670 auto ScopeModel = Expr->getScopeModel();
671
672 // LLVM atomic instructions always have synch scope. If clang atomic
673 // expression has no scope operand, use default LLVM synch scope.
674 if (!ScopeModel) {
675 EmitAtomicOp(CGF, Expr, Dest, Ptr, Val1, Val2, IsWeak, FailureOrder, Size,
676 Order, CGF.CGM.getLLVMContext().getOrInsertSyncScopeID(""));
677 return;
678 }
679
680 // Handle constant scope.
681 if (auto SC = dyn_cast<llvm::ConstantInt>(Scope)) {
682 auto SCID = CGF.getTargetHooks().getLLVMSyncScopeID(
683 ScopeModel->map(SC->getZExtValue()), CGF.CGM.getLLVMContext());
684 EmitAtomicOp(CGF, Expr, Dest, Ptr, Val1, Val2, IsWeak, FailureOrder, Size,
685 Order, SCID);
686 return;
687 }
688
689 // Handle non-constant scope.
690 auto &Builder = CGF.Builder;
691 auto Scopes = ScopeModel->getRuntimeValues();
692 llvm::DenseMap<unsigned, llvm::BasicBlock *> BB;
693 for (auto S : Scopes)
694 BB[S] = CGF.createBasicBlock(getAsString(ScopeModel->map(S)), CGF.CurFn);
695
696 llvm::BasicBlock *ContBB =
697 CGF.createBasicBlock("atomic.scope.continue", CGF.CurFn);
698
699 auto *SC = Builder.CreateIntCast(Scope, Builder.getInt32Ty(), false);
700 // If unsupported synch scope is encountered at run time, assume a fallback
701 // synch scope value.
702 auto FallBack = ScopeModel->getFallBackValue();
703 llvm::SwitchInst *SI = Builder.CreateSwitch(SC, BB[FallBack]);
704 for (auto S : Scopes) {
705 auto *B = BB[S];
706 if (S != FallBack)
707 SI->addCase(Builder.getInt32(S), B);
708
709 Builder.SetInsertPoint(B);
710 EmitAtomicOp(CGF, Expr, Dest, Ptr, Val1, Val2, IsWeak, FailureOrder, Size,
711 Order,
712 CGF.getTargetHooks().getLLVMSyncScopeID(ScopeModel->map(S),
713 CGF.getLLVMContext()));
714 Builder.CreateBr(ContBB);
715 }
716
717 Builder.SetInsertPoint(ContBB);
718}
719
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000720static void
721AddDirectArgument(CodeGenFunction &CGF, CallArgList &Args,
Nick Lewycky2d84e842013-10-02 02:29:49 +0000722 bool UseOptimizedLibcall, llvm::Value *Val, QualType ValTy,
David Majnemer0392cf82014-08-29 07:27:49 +0000723 SourceLocation Loc, CharUnits SizeInChars) {
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000724 if (UseOptimizedLibcall) {
725 // Load value and pass it to the function directly.
John McCall7f416cc2015-09-08 08:05:57 +0000726 CharUnits Align = CGF.getContext().getTypeAlignInChars(ValTy);
David Majnemer0392cf82014-08-29 07:27:49 +0000727 int64_t SizeInBits = CGF.getContext().toBits(SizeInChars);
728 ValTy =
729 CGF.getContext().getIntTypeForBitwidth(SizeInBits, /*Signed=*/false);
730 llvm::Type *IPtrTy = llvm::IntegerType::get(CGF.getLLVMContext(),
731 SizeInBits)->getPointerTo();
John McCall7f416cc2015-09-08 08:05:57 +0000732 Address Ptr = Address(CGF.Builder.CreateBitCast(Val, IPtrTy), Align);
733 Val = CGF.EmitLoadOfScalar(Ptr, false,
734 CGF.getContext().getPointerType(ValTy),
David Majnemer0392cf82014-08-29 07:27:49 +0000735 Loc);
736 // Coerce the value into an appropriately sized integer type.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000737 Args.add(RValue::get(Val), ValTy);
738 } else {
739 // Non-optimized functions always take a reference.
740 Args.add(RValue::get(CGF.EmitCastToVoidPtr(Val)),
741 CGF.getContext().VoidPtrTy);
742 }
743}
744
Tim Northovercc2a6e02015-11-09 19:56:35 +0000745RValue CodeGenFunction::EmitAtomicExpr(AtomicExpr *E) {
John McCallfc207f22013-03-07 21:37:12 +0000746 QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
747 QualType MemTy = AtomicTy;
748 if (const AtomicType *AT = AtomicTy->getAs<AtomicType>())
749 MemTy = AT->getValueType();
John McCall7f416cc2015-09-08 08:05:57 +0000750 llvm::Value *IsWeak = nullptr, *OrderFail = nullptr;
751
752 Address Val1 = Address::invalid();
753 Address Val2 = Address::invalid();
Tim Northovercc2a6e02015-11-09 19:56:35 +0000754 Address Dest = Address::invalid();
Wei Mi01414bd2017-09-25 19:57:59 +0000755 Address Ptr = EmitPointerWithAlignment(E->getPtr());
756
Tim Northover9dc1d0c2018-04-23 08:16:24 +0000757 if (E->getOp() == AtomicExpr::AO__c11_atomic_init ||
758 E->getOp() == AtomicExpr::AO__opencl_atomic_init) {
759 LValue lvalue = MakeAddrLValue(Ptr, AtomicTy);
760 EmitAtomicInit(E->getVal1(), lvalue);
761 return RValue::get(nullptr);
762 }
763
Wei Mi01414bd2017-09-25 19:57:59 +0000764 CharUnits sizeChars, alignChars;
765 std::tie(sizeChars, alignChars) = getContext().getTypeInfoInChars(AtomicTy);
766 uint64_t Size = sizeChars.getQuantity();
767 unsigned MaxInlineWidthInBits = getTarget().getMaxAtomicInlineWidth();
768 bool UseLibcall = ((Ptr.getAlignment() % sizeChars) != 0 ||
769 getContext().toBits(sizeChars) > MaxInlineWidthInBits);
John McCallfc207f22013-03-07 21:37:12 +0000770
Tim Northover9dc1d0c2018-04-23 08:16:24 +0000771 if (UseLibcall)
772 CGM.getDiags().Report(E->getLocStart(), diag::warn_atomic_op_misaligned);
John McCallfc207f22013-03-07 21:37:12 +0000773
Craig Topper8a13c412014-05-21 05:09:00 +0000774 llvm::Value *Order = EmitScalarExpr(E->getOrder());
Yaxun Liu30d652a2017-08-15 16:02:49 +0000775 llvm::Value *Scope =
776 E->getScopeModel() ? EmitScalarExpr(E->getScope()) : nullptr;
John McCallfc207f22013-03-07 21:37:12 +0000777
778 switch (E->getOp()) {
779 case AtomicExpr::AO__c11_atomic_init:
Yaxun Liu39195062017-08-04 18:16:31 +0000780 case AtomicExpr::AO__opencl_atomic_init:
James Y Knight81167fb2015-08-05 16:57:36 +0000781 llvm_unreachable("Already handled above with EmitAtomicInit!");
John McCallfc207f22013-03-07 21:37:12 +0000782
783 case AtomicExpr::AO__c11_atomic_load:
Yaxun Liu39195062017-08-04 18:16:31 +0000784 case AtomicExpr::AO__opencl_atomic_load:
John McCallfc207f22013-03-07 21:37:12 +0000785 case AtomicExpr::AO__atomic_load_n:
786 break;
787
788 case AtomicExpr::AO__atomic_load:
John McCall7f416cc2015-09-08 08:05:57 +0000789 Dest = EmitPointerWithAlignment(E->getVal1());
John McCallfc207f22013-03-07 21:37:12 +0000790 break;
791
792 case AtomicExpr::AO__atomic_store:
John McCall7f416cc2015-09-08 08:05:57 +0000793 Val1 = EmitPointerWithAlignment(E->getVal1());
John McCallfc207f22013-03-07 21:37:12 +0000794 break;
795
796 case AtomicExpr::AO__atomic_exchange:
John McCall7f416cc2015-09-08 08:05:57 +0000797 Val1 = EmitPointerWithAlignment(E->getVal1());
798 Dest = EmitPointerWithAlignment(E->getVal2());
John McCallfc207f22013-03-07 21:37:12 +0000799 break;
800
801 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
802 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
Yaxun Liu39195062017-08-04 18:16:31 +0000803 case AtomicExpr::AO__opencl_atomic_compare_exchange_strong:
804 case AtomicExpr::AO__opencl_atomic_compare_exchange_weak:
John McCallfc207f22013-03-07 21:37:12 +0000805 case AtomicExpr::AO__atomic_compare_exchange_n:
806 case AtomicExpr::AO__atomic_compare_exchange:
John McCall7f416cc2015-09-08 08:05:57 +0000807 Val1 = EmitPointerWithAlignment(E->getVal1());
John McCallfc207f22013-03-07 21:37:12 +0000808 if (E->getOp() == AtomicExpr::AO__atomic_compare_exchange)
John McCall7f416cc2015-09-08 08:05:57 +0000809 Val2 = EmitPointerWithAlignment(E->getVal2());
John McCallfc207f22013-03-07 21:37:12 +0000810 else
811 Val2 = EmitValToTemp(*this, E->getVal2());
812 OrderFail = EmitScalarExpr(E->getOrderFail());
Yaxun Liu39195062017-08-04 18:16:31 +0000813 if (E->getOp() == AtomicExpr::AO__atomic_compare_exchange_n ||
814 E->getOp() == AtomicExpr::AO__atomic_compare_exchange)
Tim Northovercadbbe12014-06-13 19:43:04 +0000815 IsWeak = EmitScalarExpr(E->getWeak());
John McCallfc207f22013-03-07 21:37:12 +0000816 break;
817
818 case AtomicExpr::AO__c11_atomic_fetch_add:
819 case AtomicExpr::AO__c11_atomic_fetch_sub:
Yaxun Liu39195062017-08-04 18:16:31 +0000820 case AtomicExpr::AO__opencl_atomic_fetch_add:
821 case AtomicExpr::AO__opencl_atomic_fetch_sub:
John McCallfc207f22013-03-07 21:37:12 +0000822 if (MemTy->isPointerType()) {
823 // For pointer arithmetic, we're required to do a bit of math:
824 // adding 1 to an int* is not the same as adding 1 to a uintptr_t.
825 // ... but only for the C11 builtins. The GNU builtins expect the
826 // user to multiply by sizeof(T).
827 QualType Val1Ty = E->getVal1()->getType();
828 llvm::Value *Val1Scalar = EmitScalarExpr(E->getVal1());
829 CharUnits PointeeIncAmt =
830 getContext().getTypeSizeInChars(MemTy->getPointeeType());
831 Val1Scalar = Builder.CreateMul(Val1Scalar, CGM.getSize(PointeeIncAmt));
John McCall7f416cc2015-09-08 08:05:57 +0000832 auto Temp = CreateMemTemp(Val1Ty, ".atomictmp");
833 Val1 = Temp;
834 EmitStoreOfScalar(Val1Scalar, MakeAddrLValue(Temp, Val1Ty));
John McCallfc207f22013-03-07 21:37:12 +0000835 break;
836 }
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +0000837 LLVM_FALLTHROUGH;
John McCallfc207f22013-03-07 21:37:12 +0000838 case AtomicExpr::AO__atomic_fetch_add:
839 case AtomicExpr::AO__atomic_fetch_sub:
840 case AtomicExpr::AO__atomic_add_fetch:
841 case AtomicExpr::AO__atomic_sub_fetch:
842 case AtomicExpr::AO__c11_atomic_store:
843 case AtomicExpr::AO__c11_atomic_exchange:
Yaxun Liu39195062017-08-04 18:16:31 +0000844 case AtomicExpr::AO__opencl_atomic_store:
845 case AtomicExpr::AO__opencl_atomic_exchange:
John McCallfc207f22013-03-07 21:37:12 +0000846 case AtomicExpr::AO__atomic_store_n:
847 case AtomicExpr::AO__atomic_exchange_n:
848 case AtomicExpr::AO__c11_atomic_fetch_and:
849 case AtomicExpr::AO__c11_atomic_fetch_or:
850 case AtomicExpr::AO__c11_atomic_fetch_xor:
Yaxun Liu39195062017-08-04 18:16:31 +0000851 case AtomicExpr::AO__opencl_atomic_fetch_and:
852 case AtomicExpr::AO__opencl_atomic_fetch_or:
853 case AtomicExpr::AO__opencl_atomic_fetch_xor:
854 case AtomicExpr::AO__opencl_atomic_fetch_min:
855 case AtomicExpr::AO__opencl_atomic_fetch_max:
John McCallfc207f22013-03-07 21:37:12 +0000856 case AtomicExpr::AO__atomic_fetch_and:
857 case AtomicExpr::AO__atomic_fetch_or:
858 case AtomicExpr::AO__atomic_fetch_xor:
859 case AtomicExpr::AO__atomic_fetch_nand:
860 case AtomicExpr::AO__atomic_and_fetch:
861 case AtomicExpr::AO__atomic_or_fetch:
862 case AtomicExpr::AO__atomic_xor_fetch:
863 case AtomicExpr::AO__atomic_nand_fetch:
Elena Demikhovskyd31327d2018-05-13 07:45:58 +0000864 case AtomicExpr::AO__atomic_fetch_min:
865 case AtomicExpr::AO__atomic_fetch_max:
John McCallfc207f22013-03-07 21:37:12 +0000866 Val1 = EmitValToTemp(*this, E->getVal1());
867 break;
868 }
869
David Majnemeree8d04d2014-12-12 08:16:09 +0000870 QualType RValTy = E->getType().getUnqualifiedType();
871
Tim Northovercc2a6e02015-11-09 19:56:35 +0000872 // The inlined atomics only function on iN types, where N is a power of 2. We
873 // need to make sure (via temporaries if necessary) that all incoming values
874 // are compatible.
875 LValue AtomicVal = MakeAddrLValue(Ptr, AtomicTy);
876 AtomicInfo Atomics(*this, AtomicVal);
877
878 Ptr = Atomics.emitCastToAtomicIntPointer(Ptr);
879 if (Val1.isValid()) Val1 = Atomics.convertToAtomicIntPointer(Val1);
880 if (Val2.isValid()) Val2 = Atomics.convertToAtomicIntPointer(Val2);
881 if (Dest.isValid())
882 Dest = Atomics.emitCastToAtomicIntPointer(Dest);
883 else if (E->isCmpXChg())
884 Dest = CreateMemTemp(RValTy, "cmpxchg.bool");
885 else if (!RValTy->isVoidType())
886 Dest = Atomics.emitCastToAtomicIntPointer(Atomics.CreateTempAlloca());
John McCallfc207f22013-03-07 21:37:12 +0000887
888 // Use a library call. See: http://gcc.gnu.org/wiki/Atomic/GCCMM/LIbrary .
889 if (UseLibcall) {
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000890 bool UseOptimizedLibcall = false;
891 switch (E->getOp()) {
James Y Knight81167fb2015-08-05 16:57:36 +0000892 case AtomicExpr::AO__c11_atomic_init:
Yaxun Liu39195062017-08-04 18:16:31 +0000893 case AtomicExpr::AO__opencl_atomic_init:
James Y Knight81167fb2015-08-05 16:57:36 +0000894 llvm_unreachable("Already handled above with EmitAtomicInit!");
895
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000896 case AtomicExpr::AO__c11_atomic_fetch_add:
Yaxun Liu39195062017-08-04 18:16:31 +0000897 case AtomicExpr::AO__opencl_atomic_fetch_add:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000898 case AtomicExpr::AO__atomic_fetch_add:
899 case AtomicExpr::AO__c11_atomic_fetch_and:
Yaxun Liu39195062017-08-04 18:16:31 +0000900 case AtomicExpr::AO__opencl_atomic_fetch_and:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000901 case AtomicExpr::AO__atomic_fetch_and:
902 case AtomicExpr::AO__c11_atomic_fetch_or:
Yaxun Liu39195062017-08-04 18:16:31 +0000903 case AtomicExpr::AO__opencl_atomic_fetch_or:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000904 case AtomicExpr::AO__atomic_fetch_or:
James Y Knight81167fb2015-08-05 16:57:36 +0000905 case AtomicExpr::AO__atomic_fetch_nand:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000906 case AtomicExpr::AO__c11_atomic_fetch_sub:
Yaxun Liu39195062017-08-04 18:16:31 +0000907 case AtomicExpr::AO__opencl_atomic_fetch_sub:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000908 case AtomicExpr::AO__atomic_fetch_sub:
909 case AtomicExpr::AO__c11_atomic_fetch_xor:
Yaxun Liu39195062017-08-04 18:16:31 +0000910 case AtomicExpr::AO__opencl_atomic_fetch_xor:
911 case AtomicExpr::AO__opencl_atomic_fetch_min:
912 case AtomicExpr::AO__opencl_atomic_fetch_max:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000913 case AtomicExpr::AO__atomic_fetch_xor:
James Y Knight81167fb2015-08-05 16:57:36 +0000914 case AtomicExpr::AO__atomic_add_fetch:
915 case AtomicExpr::AO__atomic_and_fetch:
916 case AtomicExpr::AO__atomic_nand_fetch:
917 case AtomicExpr::AO__atomic_or_fetch:
918 case AtomicExpr::AO__atomic_sub_fetch:
919 case AtomicExpr::AO__atomic_xor_fetch:
Elena Demikhovskyd31327d2018-05-13 07:45:58 +0000920 case AtomicExpr::AO__atomic_fetch_min:
921 case AtomicExpr::AO__atomic_fetch_max:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000922 // For these, only library calls for certain sizes exist.
923 UseOptimizedLibcall = true;
924 break;
James Y Knight81167fb2015-08-05 16:57:36 +0000925
926 case AtomicExpr::AO__c11_atomic_load:
927 case AtomicExpr::AO__c11_atomic_store:
928 case AtomicExpr::AO__c11_atomic_exchange:
929 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
930 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
Yaxun Liu39195062017-08-04 18:16:31 +0000931 case AtomicExpr::AO__opencl_atomic_load:
932 case AtomicExpr::AO__opencl_atomic_store:
933 case AtomicExpr::AO__opencl_atomic_exchange:
934 case AtomicExpr::AO__opencl_atomic_compare_exchange_weak:
935 case AtomicExpr::AO__opencl_atomic_compare_exchange_strong:
James Y Knight81167fb2015-08-05 16:57:36 +0000936 case AtomicExpr::AO__atomic_load_n:
937 case AtomicExpr::AO__atomic_load:
938 case AtomicExpr::AO__atomic_store_n:
939 case AtomicExpr::AO__atomic_store:
940 case AtomicExpr::AO__atomic_exchange_n:
941 case AtomicExpr::AO__atomic_exchange:
942 case AtomicExpr::AO__atomic_compare_exchange_n:
943 case AtomicExpr::AO__atomic_compare_exchange:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000944 // Only use optimized library calls for sizes for which they exist.
945 if (Size == 1 || Size == 2 || Size == 4 || Size == 8)
946 UseOptimizedLibcall = true;
947 break;
948 }
John McCallfc207f22013-03-07 21:37:12 +0000949
John McCallfc207f22013-03-07 21:37:12 +0000950 CallArgList Args;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000951 if (!UseOptimizedLibcall) {
952 // For non-optimized library calls, the size is the first parameter
953 Args.add(RValue::get(llvm::ConstantInt::get(SizeTy, Size)),
954 getContext().getSizeType());
955 }
956 // Atomic address is the first or second parameter
Yaxun Liu39195062017-08-04 18:16:31 +0000957 // The OpenCL atomic library functions only accept pointer arguments to
958 // generic address space.
959 auto CastToGenericAddrSpace = [&](llvm::Value *V, QualType PT) {
960 if (!E->isOpenCL())
961 return V;
962 auto AS = PT->getAs<PointerType>()->getPointeeType().getAddressSpace();
963 if (AS == LangAS::opencl_generic)
964 return V;
965 auto DestAS = getContext().getTargetAddressSpace(LangAS::opencl_generic);
966 auto T = V->getType();
967 auto *DestType = T->getPointerElementType()->getPointerTo(DestAS);
968
969 return getTargetHooks().performAddrSpaceCast(
970 *this, V, AS, LangAS::opencl_generic, DestType, false);
971 };
972
973 Args.add(RValue::get(CastToGenericAddrSpace(
974 EmitCastToVoidPtr(Ptr.getPointer()), E->getPtr()->getType())),
John McCall7f416cc2015-09-08 08:05:57 +0000975 getContext().VoidPtrTy);
John McCallfc207f22013-03-07 21:37:12 +0000976
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000977 std::string LibCallName;
Logan Chien74798a32014-03-26 17:35:01 +0000978 QualType LoweredMemTy =
979 MemTy->isPointerType() ? getContext().getIntPtrType() : MemTy;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000980 QualType RetTy;
981 bool HaveRetTy = false;
James Y Knight7aefb5b2015-11-12 18:37:29 +0000982 llvm::Instruction::BinaryOps PostOp = (llvm::Instruction::BinaryOps)0;
John McCallfc207f22013-03-07 21:37:12 +0000983 switch (E->getOp()) {
James Y Knight81167fb2015-08-05 16:57:36 +0000984 case AtomicExpr::AO__c11_atomic_init:
Yaxun Liu39195062017-08-04 18:16:31 +0000985 case AtomicExpr::AO__opencl_atomic_init:
James Y Knight81167fb2015-08-05 16:57:36 +0000986 llvm_unreachable("Already handled!");
987
John McCallfc207f22013-03-07 21:37:12 +0000988 // There is only one libcall for compare an exchange, because there is no
989 // optimisation benefit possible from a libcall version of a weak compare
990 // and exchange.
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000991 // bool __atomic_compare_exchange(size_t size, void *mem, void *expected,
John McCallfc207f22013-03-07 21:37:12 +0000992 // void *desired, int success, int failure)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +0000993 // bool __atomic_compare_exchange_N(T *mem, T *expected, T desired,
994 // int success, int failure)
John McCallfc207f22013-03-07 21:37:12 +0000995 case AtomicExpr::AO__c11_atomic_compare_exchange_weak:
996 case AtomicExpr::AO__c11_atomic_compare_exchange_strong:
Yaxun Liu39195062017-08-04 18:16:31 +0000997 case AtomicExpr::AO__opencl_atomic_compare_exchange_weak:
998 case AtomicExpr::AO__opencl_atomic_compare_exchange_strong:
John McCallfc207f22013-03-07 21:37:12 +0000999 case AtomicExpr::AO__atomic_compare_exchange:
1000 case AtomicExpr::AO__atomic_compare_exchange_n:
1001 LibCallName = "__atomic_compare_exchange";
1002 RetTy = getContext().BoolTy;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001003 HaveRetTy = true;
Yaxun Liu39195062017-08-04 18:16:31 +00001004 Args.add(
1005 RValue::get(CastToGenericAddrSpace(
1006 EmitCastToVoidPtr(Val1.getPointer()), E->getVal1()->getType())),
1007 getContext().VoidPtrTy);
John McCall7f416cc2015-09-08 08:05:57 +00001008 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val2.getPointer(),
1009 MemTy, E->getExprLoc(), sizeChars);
Nick Lewycky5fa40c32013-10-01 21:51:38 +00001010 Args.add(RValue::get(Order), getContext().IntTy);
John McCallfc207f22013-03-07 21:37:12 +00001011 Order = OrderFail;
1012 break;
1013 // void __atomic_exchange(size_t size, void *mem, void *val, void *return,
1014 // int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001015 // T __atomic_exchange_N(T *mem, T val, int order)
John McCallfc207f22013-03-07 21:37:12 +00001016 case AtomicExpr::AO__c11_atomic_exchange:
Yaxun Liu39195062017-08-04 18:16:31 +00001017 case AtomicExpr::AO__opencl_atomic_exchange:
John McCallfc207f22013-03-07 21:37:12 +00001018 case AtomicExpr::AO__atomic_exchange_n:
1019 case AtomicExpr::AO__atomic_exchange:
1020 LibCallName = "__atomic_exchange";
John McCall7f416cc2015-09-08 08:05:57 +00001021 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1022 MemTy, E->getExprLoc(), sizeChars);
John McCallfc207f22013-03-07 21:37:12 +00001023 break;
1024 // void __atomic_store(size_t size, void *mem, void *val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001025 // void __atomic_store_N(T *mem, T val, int order)
John McCallfc207f22013-03-07 21:37:12 +00001026 case AtomicExpr::AO__c11_atomic_store:
Yaxun Liu39195062017-08-04 18:16:31 +00001027 case AtomicExpr::AO__opencl_atomic_store:
John McCallfc207f22013-03-07 21:37:12 +00001028 case AtomicExpr::AO__atomic_store:
1029 case AtomicExpr::AO__atomic_store_n:
1030 LibCallName = "__atomic_store";
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001031 RetTy = getContext().VoidTy;
1032 HaveRetTy = true;
John McCall7f416cc2015-09-08 08:05:57 +00001033 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1034 MemTy, E->getExprLoc(), sizeChars);
John McCallfc207f22013-03-07 21:37:12 +00001035 break;
1036 // void __atomic_load(size_t size, void *mem, void *return, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001037 // T __atomic_load_N(T *mem, int order)
John McCallfc207f22013-03-07 21:37:12 +00001038 case AtomicExpr::AO__c11_atomic_load:
Yaxun Liu39195062017-08-04 18:16:31 +00001039 case AtomicExpr::AO__opencl_atomic_load:
John McCallfc207f22013-03-07 21:37:12 +00001040 case AtomicExpr::AO__atomic_load:
1041 case AtomicExpr::AO__atomic_load_n:
1042 LibCallName = "__atomic_load";
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001043 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +00001044 // T __atomic_add_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001045 // T __atomic_fetch_add_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +00001046 case AtomicExpr::AO__atomic_add_fetch:
1047 PostOp = llvm::Instruction::Add;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00001048 LLVM_FALLTHROUGH;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001049 case AtomicExpr::AO__c11_atomic_fetch_add:
Yaxun Liu39195062017-08-04 18:16:31 +00001050 case AtomicExpr::AO__opencl_atomic_fetch_add:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001051 case AtomicExpr::AO__atomic_fetch_add:
1052 LibCallName = "__atomic_fetch_add";
John McCall7f416cc2015-09-08 08:05:57 +00001053 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1054 LoweredMemTy, E->getExprLoc(), sizeChars);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001055 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +00001056 // T __atomic_and_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001057 // T __atomic_fetch_and_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +00001058 case AtomicExpr::AO__atomic_and_fetch:
1059 PostOp = llvm::Instruction::And;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00001060 LLVM_FALLTHROUGH;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001061 case AtomicExpr::AO__c11_atomic_fetch_and:
Yaxun Liu39195062017-08-04 18:16:31 +00001062 case AtomicExpr::AO__opencl_atomic_fetch_and:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001063 case AtomicExpr::AO__atomic_fetch_and:
1064 LibCallName = "__atomic_fetch_and";
John McCall7f416cc2015-09-08 08:05:57 +00001065 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1066 MemTy, E->getExprLoc(), sizeChars);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001067 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +00001068 // T __atomic_or_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001069 // T __atomic_fetch_or_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +00001070 case AtomicExpr::AO__atomic_or_fetch:
1071 PostOp = llvm::Instruction::Or;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00001072 LLVM_FALLTHROUGH;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001073 case AtomicExpr::AO__c11_atomic_fetch_or:
Yaxun Liu39195062017-08-04 18:16:31 +00001074 case AtomicExpr::AO__opencl_atomic_fetch_or:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001075 case AtomicExpr::AO__atomic_fetch_or:
1076 LibCallName = "__atomic_fetch_or";
John McCall7f416cc2015-09-08 08:05:57 +00001077 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1078 MemTy, E->getExprLoc(), sizeChars);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001079 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +00001080 // T __atomic_sub_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001081 // T __atomic_fetch_sub_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +00001082 case AtomicExpr::AO__atomic_sub_fetch:
1083 PostOp = llvm::Instruction::Sub;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00001084 LLVM_FALLTHROUGH;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001085 case AtomicExpr::AO__c11_atomic_fetch_sub:
Yaxun Liu39195062017-08-04 18:16:31 +00001086 case AtomicExpr::AO__opencl_atomic_fetch_sub:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001087 case AtomicExpr::AO__atomic_fetch_sub:
1088 LibCallName = "__atomic_fetch_sub";
John McCall7f416cc2015-09-08 08:05:57 +00001089 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1090 LoweredMemTy, E->getExprLoc(), sizeChars);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001091 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +00001092 // T __atomic_xor_fetch_N(T *mem, T val, int order)
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001093 // T __atomic_fetch_xor_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +00001094 case AtomicExpr::AO__atomic_xor_fetch:
1095 PostOp = llvm::Instruction::Xor;
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00001096 LLVM_FALLTHROUGH;
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001097 case AtomicExpr::AO__c11_atomic_fetch_xor:
Yaxun Liu39195062017-08-04 18:16:31 +00001098 case AtomicExpr::AO__opencl_atomic_fetch_xor:
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001099 case AtomicExpr::AO__atomic_fetch_xor:
1100 LibCallName = "__atomic_fetch_xor";
John McCall7f416cc2015-09-08 08:05:57 +00001101 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1102 MemTy, E->getExprLoc(), sizeChars);
John McCallfc207f22013-03-07 21:37:12 +00001103 break;
Elena Demikhovskyd31327d2018-05-13 07:45:58 +00001104 case AtomicExpr::AO__atomic_fetch_min:
Yaxun Liu39195062017-08-04 18:16:31 +00001105 case AtomicExpr::AO__opencl_atomic_fetch_min:
1106 LibCallName = E->getValueType()->isSignedIntegerType()
1107 ? "__atomic_fetch_min"
1108 : "__atomic_fetch_umin";
1109 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1110 LoweredMemTy, E->getExprLoc(), sizeChars);
1111 break;
Elena Demikhovskyd31327d2018-05-13 07:45:58 +00001112 case AtomicExpr::AO__atomic_fetch_max:
Yaxun Liu39195062017-08-04 18:16:31 +00001113 case AtomicExpr::AO__opencl_atomic_fetch_max:
1114 LibCallName = E->getValueType()->isSignedIntegerType()
1115 ? "__atomic_fetch_max"
1116 : "__atomic_fetch_umax";
1117 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1118 LoweredMemTy, E->getExprLoc(), sizeChars);
1119 break;
James Y Knight7aefb5b2015-11-12 18:37:29 +00001120 // T __atomic_nand_fetch_N(T *mem, T val, int order)
James Y Knight81167fb2015-08-05 16:57:36 +00001121 // T __atomic_fetch_nand_N(T *mem, T val, int order)
James Y Knight7aefb5b2015-11-12 18:37:29 +00001122 case AtomicExpr::AO__atomic_nand_fetch:
1123 PostOp = llvm::Instruction::And; // the NOT is special cased below
Adrian Prantlf3b3ccd2017-12-19 22:06:11 +00001124 LLVM_FALLTHROUGH;
James Y Knight81167fb2015-08-05 16:57:36 +00001125 case AtomicExpr::AO__atomic_fetch_nand:
1126 LibCallName = "__atomic_fetch_nand";
John McCall7f416cc2015-09-08 08:05:57 +00001127 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val1.getPointer(),
1128 MemTy, E->getExprLoc(), sizeChars);
James Y Knight81167fb2015-08-05 16:57:36 +00001129 break;
John McCallfc207f22013-03-07 21:37:12 +00001130 }
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001131
Yaxun Liu39195062017-08-04 18:16:31 +00001132 if (E->isOpenCL()) {
1133 LibCallName = std::string("__opencl") +
1134 StringRef(LibCallName).drop_front(1).str();
1135
1136 }
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001137 // Optimized functions have the size in their name.
1138 if (UseOptimizedLibcall)
1139 LibCallName += "_" + llvm::utostr(Size);
1140 // By default, assume we return a value of the atomic type.
1141 if (!HaveRetTy) {
1142 if (UseOptimizedLibcall) {
1143 // Value is returned directly.
David Majnemer0392cf82014-08-29 07:27:49 +00001144 // The function returns an appropriately sized integer type.
1145 RetTy = getContext().getIntTypeForBitwidth(
1146 getContext().toBits(sizeChars), /*Signed=*/false);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001147 } else {
1148 // Value is returned through parameter before the order.
1149 RetTy = getContext().VoidTy;
John McCall7f416cc2015-09-08 08:05:57 +00001150 Args.add(RValue::get(EmitCastToVoidPtr(Dest.getPointer())),
1151 getContext().VoidPtrTy);
Ed Schoutenc7e82bd2013-05-31 19:27:59 +00001152 }
1153 }
John McCallfc207f22013-03-07 21:37:12 +00001154 // order is always the last parameter
1155 Args.add(RValue::get(Order),
1156 getContext().IntTy);
Yaxun Liu39195062017-08-04 18:16:31 +00001157 if (E->isOpenCL())
1158 Args.add(RValue::get(Scope), getContext().IntTy);
John McCallfc207f22013-03-07 21:37:12 +00001159
James Y Knight7aefb5b2015-11-12 18:37:29 +00001160 // PostOp is only needed for the atomic_*_fetch operations, and
1161 // thus is only needed for and implemented in the
1162 // UseOptimizedLibcall codepath.
1163 assert(UseOptimizedLibcall || !PostOp);
1164
David Majnemer659be552014-11-25 23:44:32 +00001165 RValue Res = emitAtomicLibcall(*this, LibCallName, RetTy, Args);
1166 // The value is returned directly from the libcall.
Tim Northovercc2a6e02015-11-09 19:56:35 +00001167 if (E->isCmpXChg())
David Majnemer659be552014-11-25 23:44:32 +00001168 return Res;
Tim Northovercc2a6e02015-11-09 19:56:35 +00001169
1170 // The value is returned directly for optimized libcalls but the expr
1171 // provided an out-param.
1172 if (UseOptimizedLibcall && Res.getScalarVal()) {
David Majnemer659be552014-11-25 23:44:32 +00001173 llvm::Value *ResVal = Res.getScalarVal();
James Y Knight7aefb5b2015-11-12 18:37:29 +00001174 if (PostOp) {
Yaxun Liu5b330e82018-03-15 15:25:19 +00001175 llvm::Value *LoadVal1 = Args[1].getRValue(*this).getScalarVal();
James Y Knight7aefb5b2015-11-12 18:37:29 +00001176 ResVal = Builder.CreateBinOp(PostOp, ResVal, LoadVal1);
1177 }
1178 if (E->getOp() == AtomicExpr::AO__atomic_nand_fetch)
1179 ResVal = Builder.CreateNot(ResVal);
1180
Tim Northovercc2a6e02015-11-09 19:56:35 +00001181 Builder.CreateStore(
1182 ResVal,
1183 Builder.CreateBitCast(Dest, ResVal->getType()->getPointerTo()));
David Majnemer659be552014-11-25 23:44:32 +00001184 }
Tim Northovercc2a6e02015-11-09 19:56:35 +00001185
1186 if (RValTy->isVoidType())
1187 return RValue::get(nullptr);
1188
1189 return convertTempToRValue(
1190 Builder.CreateBitCast(Dest, ConvertTypeForMem(RValTy)->getPointerTo()),
1191 RValTy, E->getExprLoc());
John McCallfc207f22013-03-07 21:37:12 +00001192 }
1193
1194 bool IsStore = E->getOp() == AtomicExpr::AO__c11_atomic_store ||
Yaxun Liu39195062017-08-04 18:16:31 +00001195 E->getOp() == AtomicExpr::AO__opencl_atomic_store ||
John McCallfc207f22013-03-07 21:37:12 +00001196 E->getOp() == AtomicExpr::AO__atomic_store ||
1197 E->getOp() == AtomicExpr::AO__atomic_store_n;
1198 bool IsLoad = E->getOp() == AtomicExpr::AO__c11_atomic_load ||
Yaxun Liu39195062017-08-04 18:16:31 +00001199 E->getOp() == AtomicExpr::AO__opencl_atomic_load ||
John McCallfc207f22013-03-07 21:37:12 +00001200 E->getOp() == AtomicExpr::AO__atomic_load ||
1201 E->getOp() == AtomicExpr::AO__atomic_load_n;
1202
John McCallfc207f22013-03-07 21:37:12 +00001203 if (isa<llvm::ConstantInt>(Order)) {
JF Bastiendda2cb12016-04-18 18:01:49 +00001204 auto ord = cast<llvm::ConstantInt>(Order)->getZExtValue();
1205 // We should not ever get to a case where the ordering isn't a valid C ABI
1206 // value, but it's hard to enforce that in general.
1207 if (llvm::isValidAtomicOrderingCABI(ord))
1208 switch ((llvm::AtomicOrderingCABI)ord) {
1209 case llvm::AtomicOrderingCABI::relaxed:
1210 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001211 llvm::AtomicOrdering::Monotonic, Scope);
JF Bastiendda2cb12016-04-18 18:01:49 +00001212 break;
1213 case llvm::AtomicOrderingCABI::consume:
1214 case llvm::AtomicOrderingCABI::acquire:
1215 if (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::Acquire, Scope);
JF Bastiendda2cb12016-04-18 18:01:49 +00001219 break;
1220 case llvm::AtomicOrderingCABI::release:
1221 if (IsLoad)
1222 break; // Avoid crashing on code with undefined behavior
1223 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001224 llvm::AtomicOrdering::Release, Scope);
JF Bastiendda2cb12016-04-18 18:01:49 +00001225 break;
1226 case llvm::AtomicOrderingCABI::acq_rel:
1227 if (IsLoad || IsStore)
1228 break; // Avoid crashing on code with undefined behavior
1229 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001230 llvm::AtomicOrdering::AcquireRelease, Scope);
JF Bastiendda2cb12016-04-18 18:01:49 +00001231 break;
1232 case llvm::AtomicOrderingCABI::seq_cst:
1233 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001234 llvm::AtomicOrdering::SequentiallyConsistent, Scope);
JF Bastiendda2cb12016-04-18 18:01:49 +00001235 break;
1236 }
David Majnemeree8d04d2014-12-12 08:16:09 +00001237 if (RValTy->isVoidType())
Craig Topper8a13c412014-05-21 05:09:00 +00001238 return RValue::get(nullptr);
Tim Northovercc2a6e02015-11-09 19:56:35 +00001239
1240 return convertTempToRValue(
Yaxun Liu8ab5ab02017-10-17 14:19:29 +00001241 Builder.CreateBitCast(Dest, ConvertTypeForMem(RValTy)->getPointerTo(
1242 Dest.getAddressSpace())),
Tim Northovercc2a6e02015-11-09 19:56:35 +00001243 RValTy, E->getExprLoc());
John McCallfc207f22013-03-07 21:37:12 +00001244 }
1245
1246 // Long case, when Order isn't obviously constant.
1247
1248 // Create all the relevant BB's
Craig Topper8a13c412014-05-21 05:09:00 +00001249 llvm::BasicBlock *MonotonicBB = nullptr, *AcquireBB = nullptr,
1250 *ReleaseBB = nullptr, *AcqRelBB = nullptr,
1251 *SeqCstBB = nullptr;
John McCallfc207f22013-03-07 21:37:12 +00001252 MonotonicBB = createBasicBlock("monotonic", CurFn);
1253 if (!IsStore)
1254 AcquireBB = createBasicBlock("acquire", CurFn);
1255 if (!IsLoad)
1256 ReleaseBB = createBasicBlock("release", CurFn);
1257 if (!IsLoad && !IsStore)
1258 AcqRelBB = createBasicBlock("acqrel", CurFn);
1259 SeqCstBB = createBasicBlock("seqcst", CurFn);
1260 llvm::BasicBlock *ContBB = createBasicBlock("atomic.continue", CurFn);
1261
1262 // Create the switch for the split
1263 // MonotonicBB is arbitrarily chosen as the default case; in practice, this
1264 // doesn't matter unless someone is crazy enough to use something that
1265 // doesn't fold to a constant for the ordering.
1266 Order = Builder.CreateIntCast(Order, Builder.getInt32Ty(), false);
1267 llvm::SwitchInst *SI = Builder.CreateSwitch(Order, MonotonicBB);
1268
1269 // Emit all the different atomics
1270 Builder.SetInsertPoint(MonotonicBB);
Yaxun Liu39195062017-08-04 18:16:31 +00001271 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001272 llvm::AtomicOrdering::Monotonic, Scope);
John McCallfc207f22013-03-07 21:37:12 +00001273 Builder.CreateBr(ContBB);
1274 if (!IsStore) {
1275 Builder.SetInsertPoint(AcquireBB);
Yaxun Liu39195062017-08-04 18:16:31 +00001276 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001277 llvm::AtomicOrdering::Acquire, Scope);
John McCallfc207f22013-03-07 21:37:12 +00001278 Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001279 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::consume),
Tim Northover514fc612014-03-13 19:25:52 +00001280 AcquireBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001281 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::acquire),
Tim Northover514fc612014-03-13 19:25:52 +00001282 AcquireBB);
John McCallfc207f22013-03-07 21:37:12 +00001283 }
1284 if (!IsLoad) {
1285 Builder.SetInsertPoint(ReleaseBB);
Yaxun Liu39195062017-08-04 18:16:31 +00001286 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001287 llvm::AtomicOrdering::Release, Scope);
John McCallfc207f22013-03-07 21:37:12 +00001288 Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001289 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::release),
Tim Northover514fc612014-03-13 19:25:52 +00001290 ReleaseBB);
John McCallfc207f22013-03-07 21:37:12 +00001291 }
1292 if (!IsLoad && !IsStore) {
1293 Builder.SetInsertPoint(AcqRelBB);
Yaxun Liu39195062017-08-04 18:16:31 +00001294 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001295 llvm::AtomicOrdering::AcquireRelease, Scope);
John McCallfc207f22013-03-07 21:37:12 +00001296 Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001297 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::acq_rel),
Tim Northover514fc612014-03-13 19:25:52 +00001298 AcqRelBB);
John McCallfc207f22013-03-07 21:37:12 +00001299 }
1300 Builder.SetInsertPoint(SeqCstBB);
Yaxun Liu39195062017-08-04 18:16:31 +00001301 EmitAtomicOp(*this, E, Dest, Ptr, Val1, Val2, IsWeak, OrderFail, Size,
Yaxun Liu30d652a2017-08-15 16:02:49 +00001302 llvm::AtomicOrdering::SequentiallyConsistent, Scope);
John McCallfc207f22013-03-07 21:37:12 +00001303 Builder.CreateBr(ContBB);
JF Bastiendda2cb12016-04-18 18:01:49 +00001304 SI->addCase(Builder.getInt32((int)llvm::AtomicOrderingCABI::seq_cst),
Tim Northover514fc612014-03-13 19:25:52 +00001305 SeqCstBB);
John McCallfc207f22013-03-07 21:37:12 +00001306
1307 // Cleanup and return
1308 Builder.SetInsertPoint(ContBB);
David Majnemeree8d04d2014-12-12 08:16:09 +00001309 if (RValTy->isVoidType())
Craig Topper8a13c412014-05-21 05:09:00 +00001310 return RValue::get(nullptr);
Tim Northovercc2a6e02015-11-09 19:56:35 +00001311
1312 assert(Atomics.getValueSizeInBits() <= Atomics.getAtomicSizeInBits());
1313 return convertTempToRValue(
Yaxun Liu8ab5ab02017-10-17 14:19:29 +00001314 Builder.CreateBitCast(Dest, ConvertTypeForMem(RValTy)->getPointerTo(
1315 Dest.getAddressSpace())),
Tim Northovercc2a6e02015-11-09 19:56:35 +00001316 RValTy, E->getExprLoc());
John McCallfc207f22013-03-07 21:37:12 +00001317}
John McCalla8ec7eb2013-03-07 21:37:17 +00001318
John McCall7f416cc2015-09-08 08:05:57 +00001319Address AtomicInfo::emitCastToAtomicIntPointer(Address addr) const {
John McCalla8ec7eb2013-03-07 21:37:17 +00001320 unsigned addrspace =
John McCall7f416cc2015-09-08 08:05:57 +00001321 cast<llvm::PointerType>(addr.getPointer()->getType())->getAddressSpace();
John McCalla8ec7eb2013-03-07 21:37:17 +00001322 llvm::IntegerType *ty =
1323 llvm::IntegerType::get(CGF.getLLVMContext(), AtomicSizeInBits);
1324 return CGF.Builder.CreateBitCast(addr, ty->getPointerTo(addrspace));
1325}
1326
Tim Northovercc2a6e02015-11-09 19:56:35 +00001327Address AtomicInfo::convertToAtomicIntPointer(Address Addr) const {
1328 llvm::Type *Ty = Addr.getElementType();
1329 uint64_t SourceSizeInBits = CGF.CGM.getDataLayout().getTypeSizeInBits(Ty);
1330 if (SourceSizeInBits != AtomicSizeInBits) {
1331 Address Tmp = CreateTempAlloca();
1332 CGF.Builder.CreateMemCpy(Tmp, Addr,
1333 std::min(AtomicSizeInBits, SourceSizeInBits) / 8);
1334 Addr = Tmp;
1335 }
1336
1337 return emitCastToAtomicIntPointer(Addr);
1338}
1339
John McCall7f416cc2015-09-08 08:05:57 +00001340RValue AtomicInfo::convertAtomicTempToRValue(Address addr,
1341 AggValueSlot resultSlot,
1342 SourceLocation loc,
1343 bool asValue) const {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001344 if (LVal.isSimple()) {
1345 if (EvaluationKind == TEK_Aggregate)
1346 return resultSlot.asRValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001347
Alexey Bataevb57056f2015-01-22 06:17:56 +00001348 // Drill into the padding structure if we have one.
1349 if (hasPadding())
John McCall7f416cc2015-09-08 08:05:57 +00001350 addr = CGF.Builder.CreateStructGEP(addr, 0, CharUnits());
John McCalla8ec7eb2013-03-07 21:37:17 +00001351
Alexey Bataevb57056f2015-01-22 06:17:56 +00001352 // Otherwise, just convert the temporary to an r-value using the
1353 // normal conversion routine.
1354 return CGF.convertTempToRValue(addr, getValueType(), loc);
David Blaikie1ed728c2015-04-05 22:45:47 +00001355 }
John McCall7f416cc2015-09-08 08:05:57 +00001356 if (!asValue)
Alexey Bataevb8329262015-02-27 06:33:30 +00001357 // Get RValue from temp memory as atomic for non-simple lvalues
John McCall7f416cc2015-09-08 08:05:57 +00001358 return RValue::get(CGF.Builder.CreateLoad(addr));
David Blaikie1ed728c2015-04-05 22:45:47 +00001359 if (LVal.isBitField())
John McCall7f416cc2015-09-08 08:05:57 +00001360 return CGF.EmitLoadOfBitfieldLValue(
1361 LValue::MakeBitfield(addr, LVal.getBitFieldInfo(), LVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001362 LVal.getBaseInfo(), TBAAAccessInfo()), loc);
David Blaikie1ed728c2015-04-05 22:45:47 +00001363 if (LVal.isVectorElt())
John McCall7f416cc2015-09-08 08:05:57 +00001364 return CGF.EmitLoadOfLValue(
1365 LValue::MakeVectorElt(addr, LVal.getVectorIdx(), LVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001366 LVal.getBaseInfo(), TBAAAccessInfo()), loc);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001367 assert(LVal.isExtVectorElt());
1368 return CGF.EmitLoadOfExtVectorElementLValue(LValue::MakeExtVectorElt(
John McCall7f416cc2015-09-08 08:05:57 +00001369 addr, LVal.getExtVectorElts(), LVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001370 LVal.getBaseInfo(), TBAAAccessInfo()));
John McCalla8ec7eb2013-03-07 21:37:17 +00001371}
1372
Alexey Bataevb8329262015-02-27 06:33:30 +00001373RValue AtomicInfo::ConvertIntToValueOrAtomic(llvm::Value *IntVal,
1374 AggValueSlot ResultSlot,
1375 SourceLocation Loc,
1376 bool AsValue) const {
Alexey Bataev452d8e12014-12-15 05:25:25 +00001377 // Try not to in some easy cases.
1378 assert(IntVal->getType()->isIntegerTy() && "Expected integer value");
Alexey Bataevb8329262015-02-27 06:33:30 +00001379 if (getEvaluationKind() == TEK_Scalar &&
1380 (((!LVal.isBitField() ||
1381 LVal.getBitFieldInfo().Size == ValueSizeInBits) &&
1382 !hasPadding()) ||
1383 !AsValue)) {
1384 auto *ValTy = AsValue
1385 ? CGF.ConvertTypeForMem(ValueTy)
John McCall7f416cc2015-09-08 08:05:57 +00001386 : getAtomicAddress().getType()->getPointerElementType();
Alexey Bataev452d8e12014-12-15 05:25:25 +00001387 if (ValTy->isIntegerTy()) {
1388 assert(IntVal->getType() == ValTy && "Different integer types.");
David Majnemereeaec262015-02-14 02:18:14 +00001389 return RValue::get(CGF.EmitFromMemory(IntVal, ValueTy));
Alexey Bataev452d8e12014-12-15 05:25:25 +00001390 } else if (ValTy->isPointerTy())
1391 return RValue::get(CGF.Builder.CreateIntToPtr(IntVal, ValTy));
1392 else if (llvm::CastInst::isBitCastable(IntVal->getType(), ValTy))
1393 return RValue::get(CGF.Builder.CreateBitCast(IntVal, ValTy));
1394 }
1395
1396 // Create a temporary. This needs to be big enough to hold the
1397 // atomic integer.
John McCall7f416cc2015-09-08 08:05:57 +00001398 Address Temp = Address::invalid();
Alexey Bataev452d8e12014-12-15 05:25:25 +00001399 bool TempIsVolatile = false;
Alexey Bataevb8329262015-02-27 06:33:30 +00001400 if (AsValue && getEvaluationKind() == TEK_Aggregate) {
Alexey Bataev452d8e12014-12-15 05:25:25 +00001401 assert(!ResultSlot.isIgnored());
John McCall7f416cc2015-09-08 08:05:57 +00001402 Temp = ResultSlot.getAddress();
Alexey Bataev452d8e12014-12-15 05:25:25 +00001403 TempIsVolatile = ResultSlot.isVolatile();
1404 } else {
Alexey Bataevb8329262015-02-27 06:33:30 +00001405 Temp = CreateTempAlloca();
Alexey Bataev452d8e12014-12-15 05:25:25 +00001406 }
1407
1408 // Slam the integer into the temporary.
John McCall7f416cc2015-09-08 08:05:57 +00001409 Address CastTemp = emitCastToAtomicIntPointer(Temp);
1410 CGF.Builder.CreateStore(IntVal, CastTemp)
Alexey Bataev452d8e12014-12-15 05:25:25 +00001411 ->setVolatile(TempIsVolatile);
1412
John McCall7f416cc2015-09-08 08:05:57 +00001413 return convertAtomicTempToRValue(Temp, ResultSlot, Loc, AsValue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001414}
1415
1416void AtomicInfo::EmitAtomicLoadLibcall(llvm::Value *AddForLoaded,
1417 llvm::AtomicOrdering AO, bool) {
1418 // void __atomic_load(size_t size, void *mem, void *return, int order);
1419 CallArgList Args;
1420 Args.add(RValue::get(getAtomicSizeValue()), CGF.getContext().getSizeType());
John McCall7f416cc2015-09-08 08:05:57 +00001421 Args.add(RValue::get(CGF.EmitCastToVoidPtr(getAtomicPointer())),
Alexey Bataevb8329262015-02-27 06:33:30 +00001422 CGF.getContext().VoidPtrTy);
1423 Args.add(RValue::get(CGF.EmitCastToVoidPtr(AddForLoaded)),
1424 CGF.getContext().VoidPtrTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001425 Args.add(
1426 RValue::get(llvm::ConstantInt::get(CGF.IntTy, (int)llvm::toCABI(AO))),
1427 CGF.getContext().IntTy);
Alexey Bataevb8329262015-02-27 06:33:30 +00001428 emitAtomicLibcall(CGF, "__atomic_load", CGF.getContext().VoidTy, Args);
1429}
1430
1431llvm::Value *AtomicInfo::EmitAtomicLoadOp(llvm::AtomicOrdering AO,
1432 bool IsVolatile) {
1433 // Okay, we're doing this natively.
John McCall7f416cc2015-09-08 08:05:57 +00001434 Address Addr = getAtomicAddressAsAtomicIntPointer();
Alexey Bataevb8329262015-02-27 06:33:30 +00001435 llvm::LoadInst *Load = CGF.Builder.CreateLoad(Addr, "atomic-load");
1436 Load->setAtomic(AO);
1437
1438 // Other decoration.
Alexey Bataevb8329262015-02-27 06:33:30 +00001439 if (IsVolatile)
1440 Load->setVolatile(true);
Ivan A. Kosarev383890b2017-10-06 08:17:48 +00001441 CGF.CGM.DecorateInstructionWithTBAA(Load, LVal.getTBAAInfo());
Alexey Bataevb8329262015-02-27 06:33:30 +00001442 return Load;
Alexey Bataev452d8e12014-12-15 05:25:25 +00001443}
1444
David Majnemera5b195a2015-02-14 01:35:12 +00001445/// An LValue is a candidate for having its loads and stores be made atomic if
1446/// we are operating under /volatile:ms *and* the LValue itself is volatile and
1447/// performing such an operation can be performed without a libcall.
1448bool CodeGenFunction::LValueIsSuitableForInlineAtomic(LValue LV) {
John McCall7f416cc2015-09-08 08:05:57 +00001449 if (!CGM.getCodeGenOpts().MSVolatile) return false;
David Majnemera5b195a2015-02-14 01:35:12 +00001450 AtomicInfo AI(*this, LV);
1451 bool IsVolatile = LV.isVolatile() || hasVolatileMember(LV.getType());
1452 // An atomic is inline if we don't need to use a libcall.
1453 bool AtomicIsInline = !AI.shouldUseLibcall();
David Majnemerfc80b6e2016-01-22 16:36:44 +00001454 // MSVC doesn't seem to do this for types wider than a pointer.
David Majnemera38c9f12016-05-24 16:09:25 +00001455 if (getContext().getTypeSize(LV.getType()) >
David Majnemerfc80b6e2016-01-22 16:36:44 +00001456 getContext().getTypeSize(getContext().getIntPtrType()))
1457 return false;
David Majnemera38c9f12016-05-24 16:09:25 +00001458 return IsVolatile && AtomicIsInline;
David Majnemera5b195a2015-02-14 01:35:12 +00001459}
1460
1461RValue CodeGenFunction::EmitAtomicLoad(LValue LV, SourceLocation SL,
1462 AggValueSlot Slot) {
1463 llvm::AtomicOrdering AO;
1464 bool IsVolatile = LV.isVolatileQualified();
1465 if (LV.getType()->isAtomicType()) {
JF Bastien92f4ef12016-04-06 17:26:42 +00001466 AO = llvm::AtomicOrdering::SequentiallyConsistent;
David Majnemera5b195a2015-02-14 01:35:12 +00001467 } else {
JF Bastien92f4ef12016-04-06 17:26:42 +00001468 AO = llvm::AtomicOrdering::Acquire;
David Majnemera5b195a2015-02-14 01:35:12 +00001469 IsVolatile = true;
1470 }
1471 return EmitAtomicLoad(LV, SL, AO, IsVolatile, Slot);
1472}
1473
Alexey Bataevb8329262015-02-27 06:33:30 +00001474RValue AtomicInfo::EmitAtomicLoad(AggValueSlot ResultSlot, SourceLocation Loc,
1475 bool AsValue, llvm::AtomicOrdering AO,
1476 bool IsVolatile) {
1477 // Check whether we should use a library call.
1478 if (shouldUseLibcall()) {
John McCall7f416cc2015-09-08 08:05:57 +00001479 Address TempAddr = Address::invalid();
Alexey Bataevb8329262015-02-27 06:33:30 +00001480 if (LVal.isSimple() && !ResultSlot.isIgnored()) {
1481 assert(getEvaluationKind() == TEK_Aggregate);
John McCall7f416cc2015-09-08 08:05:57 +00001482 TempAddr = ResultSlot.getAddress();
Alexey Bataevb8329262015-02-27 06:33:30 +00001483 } else
1484 TempAddr = CreateTempAlloca();
1485
John McCall7f416cc2015-09-08 08:05:57 +00001486 EmitAtomicLoadLibcall(TempAddr.getPointer(), AO, IsVolatile);
Alexey Bataevb8329262015-02-27 06:33:30 +00001487
1488 // Okay, turn that back into the original value or whole atomic (for
1489 // non-simple lvalues) type.
John McCall7f416cc2015-09-08 08:05:57 +00001490 return convertAtomicTempToRValue(TempAddr, ResultSlot, Loc, AsValue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001491 }
1492
1493 // Okay, we're doing this natively.
1494 auto *Load = EmitAtomicLoadOp(AO, IsVolatile);
1495
1496 // If we're ignoring an aggregate return, don't do anything.
1497 if (getEvaluationKind() == TEK_Aggregate && ResultSlot.isIgnored())
John McCall7f416cc2015-09-08 08:05:57 +00001498 return RValue::getAggregate(Address::invalid(), false);
Alexey Bataevb8329262015-02-27 06:33:30 +00001499
1500 // Okay, turn that back into the original value or atomic (for non-simple
1501 // lvalues) type.
1502 return ConvertIntToValueOrAtomic(Load, ResultSlot, Loc, AsValue);
1503}
1504
John McCalla8ec7eb2013-03-07 21:37:17 +00001505/// Emit a load from an l-value of atomic type. Note that the r-value
1506/// we produce is an r-value of the atomic *value* type.
Nick Lewycky2d84e842013-10-02 02:29:49 +00001507RValue CodeGenFunction::EmitAtomicLoad(LValue src, SourceLocation loc,
David Majnemera5b195a2015-02-14 01:35:12 +00001508 llvm::AtomicOrdering AO, bool IsVolatile,
Nick Lewycky2d84e842013-10-02 02:29:49 +00001509 AggValueSlot resultSlot) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001510 AtomicInfo Atomics(*this, src);
1511 return Atomics.EmitAtomicLoad(resultSlot, loc, /*AsValue=*/true, AO,
1512 IsVolatile);
John McCalla8ec7eb2013-03-07 21:37:17 +00001513}
1514
John McCalla8ec7eb2013-03-07 21:37:17 +00001515/// Copy an r-value into memory as part of storing to an atomic type.
1516/// This needs to create a bit-pattern suitable for atomic operations.
Alexey Bataevb57056f2015-01-22 06:17:56 +00001517void AtomicInfo::emitCopyIntoMemory(RValue rvalue) const {
1518 assert(LVal.isSimple());
John McCalla8ec7eb2013-03-07 21:37:17 +00001519 // If we have an r-value, the rvalue should be of the atomic type,
1520 // which means that the caller is responsible for having zeroed
1521 // any padding. Just do an aggregate copy of that type.
1522 if (rvalue.isAggregate()) {
Ivan A. Kosarev1860b522018-01-25 14:21:55 +00001523 LValue Dest = CGF.MakeAddrLValue(getAtomicAddress(), getAtomicType());
1524 LValue Src = CGF.MakeAddrLValue(rvalue.getAggregateAddress(),
1525 getAtomicType());
1526 bool IsVolatile = rvalue.isVolatileQualified() ||
1527 LVal.isVolatileQualified();
Richard Smithe78fac52018-04-05 20:52:58 +00001528 CGF.EmitAggregateCopy(Dest, Src, getAtomicType(),
1529 AggValueSlot::DoesNotOverlap, IsVolatile);
John McCalla8ec7eb2013-03-07 21:37:17 +00001530 return;
1531 }
1532
1533 // Okay, otherwise we're copying stuff.
1534
1535 // Zero out the buffer if necessary.
Alexey Bataevb57056f2015-01-22 06:17:56 +00001536 emitMemSetZeroIfNecessary();
John McCalla8ec7eb2013-03-07 21:37:17 +00001537
1538 // Drill past the padding if present.
Alexey Bataevb57056f2015-01-22 06:17:56 +00001539 LValue TempLVal = projectValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001540
1541 // Okay, store the rvalue in.
1542 if (rvalue.isScalar()) {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001543 CGF.EmitStoreOfScalar(rvalue.getScalarVal(), TempLVal, /*init*/ true);
John McCalla8ec7eb2013-03-07 21:37:17 +00001544 } else {
Alexey Bataevb57056f2015-01-22 06:17:56 +00001545 CGF.EmitStoreOfComplex(rvalue.getComplexVal(), TempLVal, /*init*/ true);
John McCalla8ec7eb2013-03-07 21:37:17 +00001546 }
1547}
1548
1549
1550/// Materialize an r-value into memory for the purposes of storing it
1551/// to an atomic type.
John McCall7f416cc2015-09-08 08:05:57 +00001552Address AtomicInfo::materializeRValue(RValue rvalue) const {
John McCalla8ec7eb2013-03-07 21:37:17 +00001553 // Aggregate r-values are already in memory, and EmitAtomicStore
1554 // requires them to be values of the atomic type.
1555 if (rvalue.isAggregate())
John McCall7f416cc2015-09-08 08:05:57 +00001556 return rvalue.getAggregateAddress();
John McCalla8ec7eb2013-03-07 21:37:17 +00001557
1558 // Otherwise, make a temporary and materialize into it.
John McCall7f416cc2015-09-08 08:05:57 +00001559 LValue TempLV = CGF.MakeAddrLValue(CreateTempAlloca(), getAtomicType());
Alexey Bataevb8329262015-02-27 06:33:30 +00001560 AtomicInfo Atomics(CGF, TempLV);
Alexey Bataevb57056f2015-01-22 06:17:56 +00001561 Atomics.emitCopyIntoMemory(rvalue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001562 return TempLV.getAddress();
John McCalla8ec7eb2013-03-07 21:37:17 +00001563}
1564
Alexey Bataev452d8e12014-12-15 05:25:25 +00001565llvm::Value *AtomicInfo::convertRValueToInt(RValue RVal) const {
1566 // If we've got a scalar value of the right size, try to avoid going
1567 // through memory.
Alexey Bataevb8329262015-02-27 06:33:30 +00001568 if (RVal.isScalar() && (!hasPadding() || !LVal.isSimple())) {
Alexey Bataev452d8e12014-12-15 05:25:25 +00001569 llvm::Value *Value = RVal.getScalarVal();
1570 if (isa<llvm::IntegerType>(Value->getType()))
Alexey Bataevb4505a72015-03-30 05:20:59 +00001571 return CGF.EmitToMemory(Value, ValueTy);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001572 else {
Alexey Bataevb8329262015-02-27 06:33:30 +00001573 llvm::IntegerType *InputIntTy = llvm::IntegerType::get(
1574 CGF.getLLVMContext(),
1575 LVal.isSimple() ? getValueSizeInBits() : getAtomicSizeInBits());
Alexey Bataev452d8e12014-12-15 05:25:25 +00001576 if (isa<llvm::PointerType>(Value->getType()))
1577 return CGF.Builder.CreatePtrToInt(Value, InputIntTy);
1578 else if (llvm::BitCastInst::isBitCastable(Value->getType(), InputIntTy))
1579 return CGF.Builder.CreateBitCast(Value, InputIntTy);
1580 }
1581 }
1582 // Otherwise, we need to go through memory.
1583 // Put the r-value in memory.
John McCall7f416cc2015-09-08 08:05:57 +00001584 Address Addr = materializeRValue(RVal);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001585
1586 // Cast the temporary to the atomic int type and pull a value out.
1587 Addr = emitCastToAtomicIntPointer(Addr);
John McCall7f416cc2015-09-08 08:05:57 +00001588 return CGF.Builder.CreateLoad(Addr);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001589}
1590
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001591std::pair<llvm::Value *, llvm::Value *> AtomicInfo::EmitAtomicCompareExchangeOp(
1592 llvm::Value *ExpectedVal, llvm::Value *DesiredVal,
1593 llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001594 // Do the atomic store.
John McCall7f416cc2015-09-08 08:05:57 +00001595 Address Addr = getAtomicAddressAsAtomicIntPointer();
1596 auto *Inst = CGF.Builder.CreateAtomicCmpXchg(Addr.getPointer(),
1597 ExpectedVal, DesiredVal,
Alexey Bataevb4505a72015-03-30 05:20:59 +00001598 Success, Failure);
Alexey Bataevb8329262015-02-27 06:33:30 +00001599 // Other decoration.
1600 Inst->setVolatile(LVal.isVolatileQualified());
1601 Inst->setWeak(IsWeak);
1602
1603 // Okay, turn that back into the original value type.
1604 auto *PreviousVal = CGF.Builder.CreateExtractValue(Inst, /*Idxs=*/0);
1605 auto *SuccessFailureVal = CGF.Builder.CreateExtractValue(Inst, /*Idxs=*/1);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001606 return std::make_pair(PreviousVal, SuccessFailureVal);
Alexey Bataevb8329262015-02-27 06:33:30 +00001607}
1608
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001609llvm::Value *
1610AtomicInfo::EmitAtomicCompareExchangeLibcall(llvm::Value *ExpectedAddr,
1611 llvm::Value *DesiredAddr,
Alexey Bataevb8329262015-02-27 06:33:30 +00001612 llvm::AtomicOrdering Success,
1613 llvm::AtomicOrdering Failure) {
1614 // bool __atomic_compare_exchange(size_t size, void *obj, void *expected,
1615 // void *desired, int success, int failure);
1616 CallArgList Args;
1617 Args.add(RValue::get(getAtomicSizeValue()), CGF.getContext().getSizeType());
John McCall7f416cc2015-09-08 08:05:57 +00001618 Args.add(RValue::get(CGF.EmitCastToVoidPtr(getAtomicPointer())),
Alexey Bataevb8329262015-02-27 06:33:30 +00001619 CGF.getContext().VoidPtrTy);
1620 Args.add(RValue::get(CGF.EmitCastToVoidPtr(ExpectedAddr)),
1621 CGF.getContext().VoidPtrTy);
1622 Args.add(RValue::get(CGF.EmitCastToVoidPtr(DesiredAddr)),
1623 CGF.getContext().VoidPtrTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001624 Args.add(RValue::get(
1625 llvm::ConstantInt::get(CGF.IntTy, (int)llvm::toCABI(Success))),
Alexey Bataevb8329262015-02-27 06:33:30 +00001626 CGF.getContext().IntTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001627 Args.add(RValue::get(
1628 llvm::ConstantInt::get(CGF.IntTy, (int)llvm::toCABI(Failure))),
Alexey Bataevb8329262015-02-27 06:33:30 +00001629 CGF.getContext().IntTy);
1630 auto SuccessFailureRVal = emitAtomicLibcall(CGF, "__atomic_compare_exchange",
1631 CGF.getContext().BoolTy, Args);
Alexey Bataevb4505a72015-03-30 05:20:59 +00001632
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001633 return SuccessFailureRVal.getScalarVal();
Alexey Bataevb8329262015-02-27 06:33:30 +00001634}
1635
Alexey Bataevb4505a72015-03-30 05:20:59 +00001636std::pair<RValue, llvm::Value *> AtomicInfo::EmitAtomicCompareExchange(
Alexey Bataevb8329262015-02-27 06:33:30 +00001637 RValue Expected, RValue Desired, llvm::AtomicOrdering Success,
1638 llvm::AtomicOrdering Failure, bool IsWeak) {
JF Bastiendd11ee72016-04-06 23:37:36 +00001639 if (isStrongerThan(Failure, Success))
1640 // Don't assert on undefined behavior "failure argument shall be no stronger
1641 // than the success argument".
Alexey Bataevb8329262015-02-27 06:33:30 +00001642 Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(Success);
1643
1644 // Check whether we should use a library call.
1645 if (shouldUseLibcall()) {
Alexey Bataevb8329262015-02-27 06:33:30 +00001646 // Produce a source address.
John McCall7f416cc2015-09-08 08:05:57 +00001647 Address ExpectedAddr = materializeRValue(Expected);
1648 Address DesiredAddr = materializeRValue(Desired);
1649 auto *Res = EmitAtomicCompareExchangeLibcall(ExpectedAddr.getPointer(),
1650 DesiredAddr.getPointer(),
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001651 Success, Failure);
1652 return std::make_pair(
John McCall7f416cc2015-09-08 08:05:57 +00001653 convertAtomicTempToRValue(ExpectedAddr, AggValueSlot::ignored(),
1654 SourceLocation(), /*AsValue=*/false),
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001655 Res);
Alexey Bataevb8329262015-02-27 06:33:30 +00001656 }
1657
1658 // If we've got a scalar value of the right size, try to avoid going
1659 // through memory.
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001660 auto *ExpectedVal = convertRValueToInt(Expected);
1661 auto *DesiredVal = convertRValueToInt(Desired);
1662 auto Res = EmitAtomicCompareExchangeOp(ExpectedVal, DesiredVal, Success,
1663 Failure, IsWeak);
1664 return std::make_pair(
1665 ConvertIntToValueOrAtomic(Res.first, AggValueSlot::ignored(),
1666 SourceLocation(), /*AsValue=*/false),
1667 Res.second);
1668}
1669
1670static void
1671EmitAtomicUpdateValue(CodeGenFunction &CGF, AtomicInfo &Atomics, RValue OldRVal,
1672 const llvm::function_ref<RValue(RValue)> &UpdateOp,
John McCall7f416cc2015-09-08 08:05:57 +00001673 Address DesiredAddr) {
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001674 RValue UpRVal;
1675 LValue AtomicLVal = Atomics.getAtomicLValue();
1676 LValue DesiredLVal;
1677 if (AtomicLVal.isSimple()) {
1678 UpRVal = OldRVal;
John McCall7f416cc2015-09-08 08:05:57 +00001679 DesiredLVal = CGF.MakeAddrLValue(DesiredAddr, AtomicLVal.getType());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001680 } else {
1681 // Build new lvalue for temp address
John McCall7f416cc2015-09-08 08:05:57 +00001682 Address Ptr = Atomics.materializeRValue(OldRVal);
1683 LValue UpdateLVal;
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001684 if (AtomicLVal.isBitField()) {
1685 UpdateLVal =
1686 LValue::MakeBitfield(Ptr, AtomicLVal.getBitFieldInfo(),
John McCall7f416cc2015-09-08 08:05:57 +00001687 AtomicLVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001688 AtomicLVal.getBaseInfo(),
1689 AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001690 DesiredLVal =
1691 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001692 AtomicLVal.getType(), AtomicLVal.getBaseInfo(),
1693 AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001694 } else if (AtomicLVal.isVectorElt()) {
1695 UpdateLVal = LValue::MakeVectorElt(Ptr, AtomicLVal.getVectorIdx(),
1696 AtomicLVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001697 AtomicLVal.getBaseInfo(),
1698 AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001699 DesiredLVal = LValue::MakeVectorElt(
1700 DesiredAddr, AtomicLVal.getVectorIdx(), AtomicLVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001701 AtomicLVal.getBaseInfo(), AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001702 } else {
1703 assert(AtomicLVal.isExtVectorElt());
1704 UpdateLVal = LValue::MakeExtVectorElt(Ptr, AtomicLVal.getExtVectorElts(),
1705 AtomicLVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001706 AtomicLVal.getBaseInfo(),
1707 AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001708 DesiredLVal = LValue::MakeExtVectorElt(
1709 DesiredAddr, AtomicLVal.getExtVectorElts(), AtomicLVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001710 AtomicLVal.getBaseInfo(), AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001711 }
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001712 UpRVal = CGF.EmitLoadOfLValue(UpdateLVal, SourceLocation());
1713 }
1714 // Store new value in the corresponding memory area
1715 RValue NewRVal = UpdateOp(UpRVal);
1716 if (NewRVal.isScalar()) {
1717 CGF.EmitStoreThroughLValue(NewRVal, DesiredLVal);
1718 } else {
1719 assert(NewRVal.isComplex());
1720 CGF.EmitStoreOfComplex(NewRVal.getComplexVal(), DesiredLVal,
1721 /*isInit=*/false);
1722 }
1723}
1724
1725void AtomicInfo::EmitAtomicUpdateLibcall(
1726 llvm::AtomicOrdering AO, const llvm::function_ref<RValue(RValue)> &UpdateOp,
1727 bool IsVolatile) {
1728 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1729
John McCall7f416cc2015-09-08 08:05:57 +00001730 Address ExpectedAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001731
John McCall7f416cc2015-09-08 08:05:57 +00001732 EmitAtomicLoadLibcall(ExpectedAddr.getPointer(), AO, IsVolatile);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001733 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1734 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1735 CGF.EmitBlock(ContBB);
John McCall7f416cc2015-09-08 08:05:57 +00001736 Address DesiredAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001737 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001738 requiresMemSetZero(getAtomicAddress().getElementType())) {
1739 auto *OldVal = CGF.Builder.CreateLoad(ExpectedAddr);
1740 CGF.Builder.CreateStore(OldVal, DesiredAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001741 }
John McCall7f416cc2015-09-08 08:05:57 +00001742 auto OldRVal = convertAtomicTempToRValue(ExpectedAddr,
1743 AggValueSlot::ignored(),
1744 SourceLocation(), /*AsValue=*/false);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001745 EmitAtomicUpdateValue(CGF, *this, OldRVal, UpdateOp, DesiredAddr);
1746 auto *Res =
John McCall7f416cc2015-09-08 08:05:57 +00001747 EmitAtomicCompareExchangeLibcall(ExpectedAddr.getPointer(),
1748 DesiredAddr.getPointer(),
1749 AO, Failure);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001750 CGF.Builder.CreateCondBr(Res, ExitBB, ContBB);
1751 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1752}
1753
1754void AtomicInfo::EmitAtomicUpdateOp(
1755 llvm::AtomicOrdering AO, const llvm::function_ref<RValue(RValue)> &UpdateOp,
1756 bool IsVolatile) {
1757 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1758
1759 // Do the atomic load.
1760 auto *OldVal = EmitAtomicLoadOp(AO, IsVolatile);
1761 // For non-simple lvalues perform compare-and-swap procedure.
1762 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1763 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1764 auto *CurBB = CGF.Builder.GetInsertBlock();
1765 CGF.EmitBlock(ContBB);
1766 llvm::PHINode *PHI = CGF.Builder.CreatePHI(OldVal->getType(),
1767 /*NumReservedValues=*/2);
1768 PHI->addIncoming(OldVal, CurBB);
John McCall7f416cc2015-09-08 08:05:57 +00001769 Address NewAtomicAddr = CreateTempAlloca();
1770 Address NewAtomicIntAddr = emitCastToAtomicIntPointer(NewAtomicAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001771 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001772 requiresMemSetZero(getAtomicAddress().getElementType())) {
1773 CGF.Builder.CreateStore(PHI, NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001774 }
1775 auto OldRVal = ConvertIntToValueOrAtomic(PHI, AggValueSlot::ignored(),
1776 SourceLocation(), /*AsValue=*/false);
1777 EmitAtomicUpdateValue(CGF, *this, OldRVal, UpdateOp, NewAtomicAddr);
John McCall7f416cc2015-09-08 08:05:57 +00001778 auto *DesiredVal = CGF.Builder.CreateLoad(NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001779 // Try to write new value using cmpxchg operation
1780 auto Res = EmitAtomicCompareExchangeOp(PHI, DesiredVal, AO, Failure);
1781 PHI->addIncoming(Res.first, CGF.Builder.GetInsertBlock());
1782 CGF.Builder.CreateCondBr(Res.second, ExitBB, ContBB);
1783 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1784}
1785
1786static void EmitAtomicUpdateValue(CodeGenFunction &CGF, AtomicInfo &Atomics,
John McCall7f416cc2015-09-08 08:05:57 +00001787 RValue UpdateRVal, Address DesiredAddr) {
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001788 LValue AtomicLVal = Atomics.getAtomicLValue();
1789 LValue DesiredLVal;
1790 // Build new lvalue for temp address
1791 if (AtomicLVal.isBitField()) {
1792 DesiredLVal =
1793 LValue::MakeBitfield(DesiredAddr, AtomicLVal.getBitFieldInfo(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001794 AtomicLVal.getType(), AtomicLVal.getBaseInfo(),
1795 AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001796 } else if (AtomicLVal.isVectorElt()) {
1797 DesiredLVal =
1798 LValue::MakeVectorElt(DesiredAddr, AtomicLVal.getVectorIdx(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001799 AtomicLVal.getType(), AtomicLVal.getBaseInfo(),
1800 AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001801 } else {
1802 assert(AtomicLVal.isExtVectorElt());
1803 DesiredLVal = LValue::MakeExtVectorElt(
1804 DesiredAddr, AtomicLVal.getExtVectorElts(), AtomicLVal.getType(),
Ivan A. Kosarevd17f12a2017-10-17 10:17:43 +00001805 AtomicLVal.getBaseInfo(), AtomicLVal.getTBAAInfo());
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001806 }
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001807 // Store new value in the corresponding memory area
1808 assert(UpdateRVal.isScalar());
1809 CGF.EmitStoreThroughLValue(UpdateRVal, DesiredLVal);
1810}
1811
1812void AtomicInfo::EmitAtomicUpdateLibcall(llvm::AtomicOrdering AO,
1813 RValue UpdateRVal, bool IsVolatile) {
1814 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1815
John McCall7f416cc2015-09-08 08:05:57 +00001816 Address ExpectedAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001817
John McCall7f416cc2015-09-08 08:05:57 +00001818 EmitAtomicLoadLibcall(ExpectedAddr.getPointer(), AO, IsVolatile);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001819 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1820 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1821 CGF.EmitBlock(ContBB);
John McCall7f416cc2015-09-08 08:05:57 +00001822 Address DesiredAddr = CreateTempAlloca();
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001823 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001824 requiresMemSetZero(getAtomicAddress().getElementType())) {
1825 auto *OldVal = CGF.Builder.CreateLoad(ExpectedAddr);
1826 CGF.Builder.CreateStore(OldVal, DesiredAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001827 }
1828 EmitAtomicUpdateValue(CGF, *this, UpdateRVal, DesiredAddr);
1829 auto *Res =
John McCall7f416cc2015-09-08 08:05:57 +00001830 EmitAtomicCompareExchangeLibcall(ExpectedAddr.getPointer(),
1831 DesiredAddr.getPointer(),
1832 AO, Failure);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001833 CGF.Builder.CreateCondBr(Res, ExitBB, ContBB);
1834 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1835}
1836
1837void AtomicInfo::EmitAtomicUpdateOp(llvm::AtomicOrdering AO, RValue UpdateRVal,
1838 bool IsVolatile) {
1839 auto Failure = llvm::AtomicCmpXchgInst::getStrongestFailureOrdering(AO);
1840
1841 // Do the atomic load.
1842 auto *OldVal = EmitAtomicLoadOp(AO, IsVolatile);
1843 // For non-simple lvalues perform compare-and-swap procedure.
1844 auto *ContBB = CGF.createBasicBlock("atomic_cont");
1845 auto *ExitBB = CGF.createBasicBlock("atomic_exit");
1846 auto *CurBB = CGF.Builder.GetInsertBlock();
1847 CGF.EmitBlock(ContBB);
1848 llvm::PHINode *PHI = CGF.Builder.CreatePHI(OldVal->getType(),
1849 /*NumReservedValues=*/2);
1850 PHI->addIncoming(OldVal, CurBB);
John McCall7f416cc2015-09-08 08:05:57 +00001851 Address NewAtomicAddr = CreateTempAlloca();
1852 Address NewAtomicIntAddr = emitCastToAtomicIntPointer(NewAtomicAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001853 if ((LVal.isBitField() && BFI.Size != ValueSizeInBits) ||
John McCall7f416cc2015-09-08 08:05:57 +00001854 requiresMemSetZero(getAtomicAddress().getElementType())) {
1855 CGF.Builder.CreateStore(PHI, NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001856 }
1857 EmitAtomicUpdateValue(CGF, *this, UpdateRVal, NewAtomicAddr);
John McCall7f416cc2015-09-08 08:05:57 +00001858 auto *DesiredVal = CGF.Builder.CreateLoad(NewAtomicIntAddr);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001859 // Try to write new value using cmpxchg operation
1860 auto Res = EmitAtomicCompareExchangeOp(PHI, DesiredVal, AO, Failure);
1861 PHI->addIncoming(Res.first, CGF.Builder.GetInsertBlock());
1862 CGF.Builder.CreateCondBr(Res.second, ExitBB, ContBB);
1863 CGF.EmitBlock(ExitBB, /*IsFinished=*/true);
1864}
1865
1866void AtomicInfo::EmitAtomicUpdate(
1867 llvm::AtomicOrdering AO, const llvm::function_ref<RValue(RValue)> &UpdateOp,
1868 bool IsVolatile) {
1869 if (shouldUseLibcall()) {
1870 EmitAtomicUpdateLibcall(AO, UpdateOp, IsVolatile);
1871 } else {
1872 EmitAtomicUpdateOp(AO, UpdateOp, IsVolatile);
1873 }
1874}
1875
1876void AtomicInfo::EmitAtomicUpdate(llvm::AtomicOrdering AO, RValue UpdateRVal,
1877 bool IsVolatile) {
1878 if (shouldUseLibcall()) {
1879 EmitAtomicUpdateLibcall(AO, UpdateRVal, IsVolatile);
1880 } else {
1881 EmitAtomicUpdateOp(AO, UpdateRVal, IsVolatile);
1882 }
Alexey Bataevb8329262015-02-27 06:33:30 +00001883}
1884
David Majnemera5b195a2015-02-14 01:35:12 +00001885void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue lvalue,
1886 bool isInit) {
1887 bool IsVolatile = lvalue.isVolatileQualified();
1888 llvm::AtomicOrdering AO;
1889 if (lvalue.getType()->isAtomicType()) {
JF Bastien92f4ef12016-04-06 17:26:42 +00001890 AO = llvm::AtomicOrdering::SequentiallyConsistent;
David Majnemera5b195a2015-02-14 01:35:12 +00001891 } else {
JF Bastien92f4ef12016-04-06 17:26:42 +00001892 AO = llvm::AtomicOrdering::Release;
David Majnemera5b195a2015-02-14 01:35:12 +00001893 IsVolatile = true;
1894 }
1895 return EmitAtomicStore(rvalue, lvalue, AO, IsVolatile, isInit);
1896}
1897
John McCalla8ec7eb2013-03-07 21:37:17 +00001898/// Emit a store to an l-value of atomic type.
1899///
1900/// Note that the r-value is expected to be an r-value *of the atomic
1901/// type*; this means that for aggregate r-values, it should include
1902/// storage for any padding that was necessary.
David Majnemera5b195a2015-02-14 01:35:12 +00001903void CodeGenFunction::EmitAtomicStore(RValue rvalue, LValue dest,
1904 llvm::AtomicOrdering AO, bool IsVolatile,
1905 bool isInit) {
John McCalla8ec7eb2013-03-07 21:37:17 +00001906 // If this is an aggregate r-value, it should agree in type except
1907 // maybe for address-space qualification.
1908 assert(!rvalue.isAggregate() ||
John McCall7f416cc2015-09-08 08:05:57 +00001909 rvalue.getAggregateAddress().getElementType()
1910 == dest.getAddress().getElementType());
John McCalla8ec7eb2013-03-07 21:37:17 +00001911
1912 AtomicInfo atomics(*this, dest);
Alexey Bataevb8329262015-02-27 06:33:30 +00001913 LValue LVal = atomics.getAtomicLValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00001914
1915 // If this is an initialization, just put the value there normally.
Alexey Bataevb8329262015-02-27 06:33:30 +00001916 if (LVal.isSimple()) {
1917 if (isInit) {
1918 atomics.emitCopyIntoMemory(rvalue);
1919 return;
1920 }
1921
1922 // Check whether we should use a library call.
1923 if (atomics.shouldUseLibcall()) {
1924 // Produce a source address.
John McCall7f416cc2015-09-08 08:05:57 +00001925 Address srcAddr = atomics.materializeRValue(rvalue);
Alexey Bataevb8329262015-02-27 06:33:30 +00001926
1927 // void __atomic_store(size_t size, void *mem, void *val, int order)
1928 CallArgList args;
1929 args.add(RValue::get(atomics.getAtomicSizeValue()),
1930 getContext().getSizeType());
John McCall7f416cc2015-09-08 08:05:57 +00001931 args.add(RValue::get(EmitCastToVoidPtr(atomics.getAtomicPointer())),
Alexey Bataevb8329262015-02-27 06:33:30 +00001932 getContext().VoidPtrTy);
John McCall7f416cc2015-09-08 08:05:57 +00001933 args.add(RValue::get(EmitCastToVoidPtr(srcAddr.getPointer())),
1934 getContext().VoidPtrTy);
JF Bastiendda2cb12016-04-18 18:01:49 +00001935 args.add(
1936 RValue::get(llvm::ConstantInt::get(IntTy, (int)llvm::toCABI(AO))),
1937 getContext().IntTy);
Alexey Bataevb8329262015-02-27 06:33:30 +00001938 emitAtomicLibcall(*this, "__atomic_store", getContext().VoidTy, args);
1939 return;
1940 }
1941
1942 // Okay, we're doing this natively.
1943 llvm::Value *intValue = atomics.convertRValueToInt(rvalue);
1944
1945 // Do the atomic store.
John McCall7f416cc2015-09-08 08:05:57 +00001946 Address addr =
Alexey Bataevb8329262015-02-27 06:33:30 +00001947 atomics.emitCastToAtomicIntPointer(atomics.getAtomicAddress());
1948 intValue = Builder.CreateIntCast(
John McCall7f416cc2015-09-08 08:05:57 +00001949 intValue, addr.getElementType(), /*isSigned=*/false);
Alexey Bataevb8329262015-02-27 06:33:30 +00001950 llvm::StoreInst *store = Builder.CreateStore(intValue, addr);
1951
1952 // Initializations don't need to be atomic.
1953 if (!isInit)
1954 store->setAtomic(AO);
1955
1956 // Other decoration.
Alexey Bataevb8329262015-02-27 06:33:30 +00001957 if (IsVolatile)
1958 store->setVolatile(true);
Ivan A. Kosarev383890b2017-10-06 08:17:48 +00001959 CGM.DecorateInstructionWithTBAA(store, dest.getTBAAInfo());
John McCalla8ec7eb2013-03-07 21:37:17 +00001960 return;
1961 }
1962
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001963 // Emit simple atomic update operation.
1964 atomics.EmitAtomicUpdate(AO, rvalue, IsVolatile);
John McCalla8ec7eb2013-03-07 21:37:17 +00001965}
1966
Alexey Bataev452d8e12014-12-15 05:25:25 +00001967/// Emit a compare-and-exchange op for atomic type.
1968///
Alexey Bataevb4505a72015-03-30 05:20:59 +00001969std::pair<RValue, llvm::Value *> CodeGenFunction::EmitAtomicCompareExchange(
Alexey Bataev452d8e12014-12-15 05:25:25 +00001970 LValue Obj, RValue Expected, RValue Desired, SourceLocation Loc,
1971 llvm::AtomicOrdering Success, llvm::AtomicOrdering Failure, bool IsWeak,
1972 AggValueSlot Slot) {
1973 // If this is an aggregate r-value, it should agree in type except
1974 // maybe for address-space qualification.
1975 assert(!Expected.isAggregate() ||
John McCall7f416cc2015-09-08 08:05:57 +00001976 Expected.getAggregateAddress().getElementType() ==
1977 Obj.getAddress().getElementType());
Alexey Bataev452d8e12014-12-15 05:25:25 +00001978 assert(!Desired.isAggregate() ||
John McCall7f416cc2015-09-08 08:05:57 +00001979 Desired.getAggregateAddress().getElementType() ==
1980 Obj.getAddress().getElementType());
Alexey Bataev452d8e12014-12-15 05:25:25 +00001981 AtomicInfo Atomics(*this, Obj);
1982
Alexey Bataevb4505a72015-03-30 05:20:59 +00001983 return Atomics.EmitAtomicCompareExchange(Expected, Desired, Success, Failure,
1984 IsWeak);
1985}
1986
1987void CodeGenFunction::EmitAtomicUpdate(
1988 LValue LVal, llvm::AtomicOrdering AO,
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001989 const llvm::function_ref<RValue(RValue)> &UpdateOp, bool IsVolatile) {
Alexey Bataevb4505a72015-03-30 05:20:59 +00001990 AtomicInfo Atomics(*this, LVal);
Alexey Bataevf0ab5532015-05-15 08:36:34 +00001991 Atomics.EmitAtomicUpdate(AO, UpdateOp, IsVolatile);
Alexey Bataev452d8e12014-12-15 05:25:25 +00001992}
1993
John McCalla8ec7eb2013-03-07 21:37:17 +00001994void CodeGenFunction::EmitAtomicInit(Expr *init, LValue dest) {
1995 AtomicInfo atomics(*this, dest);
1996
1997 switch (atomics.getEvaluationKind()) {
1998 case TEK_Scalar: {
1999 llvm::Value *value = EmitScalarExpr(init);
Alexey Bataevb57056f2015-01-22 06:17:56 +00002000 atomics.emitCopyIntoMemory(RValue::get(value));
John McCalla8ec7eb2013-03-07 21:37:17 +00002001 return;
2002 }
2003
2004 case TEK_Complex: {
2005 ComplexPairTy value = EmitComplexExpr(init);
Alexey Bataevb57056f2015-01-22 06:17:56 +00002006 atomics.emitCopyIntoMemory(RValue::getComplex(value));
John McCalla8ec7eb2013-03-07 21:37:17 +00002007 return;
2008 }
2009
2010 case TEK_Aggregate: {
Eli Friedmanbe4504d2013-07-11 01:32:21 +00002011 // Fix up the destination if the initializer isn't an expression
2012 // of atomic type.
2013 bool Zeroed = false;
John McCalla8ec7eb2013-03-07 21:37:17 +00002014 if (!init->getType()->isAtomicType()) {
Alexey Bataevb57056f2015-01-22 06:17:56 +00002015 Zeroed = atomics.emitMemSetZeroIfNecessary();
2016 dest = atomics.projectValue();
John McCalla8ec7eb2013-03-07 21:37:17 +00002017 }
2018
2019 // Evaluate the expression directly into the destination.
2020 AggValueSlot slot = AggValueSlot::forLValue(dest,
2021 AggValueSlot::IsNotDestructed,
2022 AggValueSlot::DoesNotNeedGCBarriers,
Eli Friedmanbe4504d2013-07-11 01:32:21 +00002023 AggValueSlot::IsNotAliased,
Richard Smithe78fac52018-04-05 20:52:58 +00002024 AggValueSlot::DoesNotOverlap,
Eli Friedmanbe4504d2013-07-11 01:32:21 +00002025 Zeroed ? AggValueSlot::IsZeroed :
2026 AggValueSlot::IsNotZeroed);
2027
John McCalla8ec7eb2013-03-07 21:37:17 +00002028 EmitAggExpr(init, slot);
2029 return;
2030 }
2031 }
2032 llvm_unreachable("bad evaluation kind");
2033}