blob: 8dee17a38ccce7379183fa20a7d61013ead7f455 [file] [log] [blame]
Charles Davis3a811f12010-05-25 19:52:27 +00001//===------- ItaniumCXXABI.cpp - Emit LLVM Code from ASTs for a Module ----===//
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//
Chris Lattnerfc8f0e12011-04-15 05:22:18 +000010// This provides C++ code generation targeting the Itanium C++ ABI. The class
Charles Davis3a811f12010-05-25 19:52:27 +000011// in this file generates structures that follow the Itanium C++ ABI, which is
12// documented at:
13// http://www.codesourcery.com/public/cxx-abi/abi.html
14// http://www.codesourcery.com/public/cxx-abi/abi-eh.html
John McCallee79a4c2010-08-21 22:46:04 +000015//
16// It also supports the closely-related ARM ABI, documented at:
17// http://infocenter.arm.com/help/topic/com.arm.doc.ihi0041c/IHI0041C_cppabi.pdf
18//
Charles Davis3a811f12010-05-25 19:52:27 +000019//===----------------------------------------------------------------------===//
20
21#include "CGCXXABI.h"
John McCall0bab0cd2010-08-23 01:21:21 +000022#include "CGRecordLayout.h"
John McCall93d557b2010-08-22 00:05:51 +000023#include "CodeGenFunction.h"
Charles Davis3a811f12010-05-25 19:52:27 +000024#include "CodeGenModule.h"
Peter Collingbourne14110472011-01-13 18:57:25 +000025#include <clang/AST/Mangle.h>
John McCall93d557b2010-08-22 00:05:51 +000026#include <clang/AST/Type.h>
John McCall0502a222011-06-17 07:33:57 +000027#include <llvm/Intrinsics.h>
John McCall0bab0cd2010-08-23 01:21:21 +000028#include <llvm/Target/TargetData.h>
John McCall93d557b2010-08-22 00:05:51 +000029#include <llvm/Value.h>
Charles Davis3a811f12010-05-25 19:52:27 +000030
31using namespace clang;
John McCall93d557b2010-08-22 00:05:51 +000032using namespace CodeGen;
Charles Davis3a811f12010-05-25 19:52:27 +000033
34namespace {
Charles Davis071cc7d2010-08-16 03:33:14 +000035class ItaniumCXXABI : public CodeGen::CGCXXABI {
John McCall0bab0cd2010-08-23 01:21:21 +000036private:
Chris Lattner9cbe4f02011-07-09 17:41:47 +000037 llvm::IntegerType *PtrDiffTy;
John McCall93d557b2010-08-22 00:05:51 +000038protected:
John McCallbabc9a92010-08-22 00:59:17 +000039 bool IsARM;
John McCall0bab0cd2010-08-23 01:21:21 +000040
41 // It's a little silly for us to cache this.
Chris Lattner9cbe4f02011-07-09 17:41:47 +000042 llvm::IntegerType *getPtrDiffTy() {
John McCall0bab0cd2010-08-23 01:21:21 +000043 if (!PtrDiffTy) {
John McCall9cb2cee2010-09-02 10:25:57 +000044 QualType T = getContext().getPointerDiffType();
Chris Lattner9cbe4f02011-07-09 17:41:47 +000045 llvm::Type *Ty = CGM.getTypes().ConvertType(T);
John McCall0bab0cd2010-08-23 01:21:21 +000046 PtrDiffTy = cast<llvm::IntegerType>(Ty);
47 }
48 return PtrDiffTy;
49 }
50
John McCall6ec278d2011-01-27 09:37:56 +000051 bool NeedsArrayCookie(const CXXNewExpr *expr);
52 bool NeedsArrayCookie(const CXXDeleteExpr *expr,
53 QualType elementType);
John McCall1e7fe752010-09-02 09:58:18 +000054
Charles Davis3a811f12010-05-25 19:52:27 +000055public:
John McCallbabc9a92010-08-22 00:59:17 +000056 ItaniumCXXABI(CodeGen::CodeGenModule &CGM, bool IsARM = false) :
Peter Collingbourne14110472011-01-13 18:57:25 +000057 CGCXXABI(CGM), PtrDiffTy(0), IsARM(IsARM) { }
John McCall93d557b2010-08-22 00:05:51 +000058
John McCallf16aa102010-08-22 21:01:12 +000059 bool isZeroInitializable(const MemberPointerType *MPT);
John McCallcf2c85e2010-08-22 04:16:24 +000060
Chris Lattner9cbe4f02011-07-09 17:41:47 +000061 llvm::Type *ConvertMemberPointerType(const MemberPointerType *MPT);
John McCall0bab0cd2010-08-23 01:21:21 +000062
John McCall93d557b2010-08-22 00:05:51 +000063 llvm::Value *EmitLoadOfMemberFunctionPointer(CodeGenFunction &CGF,
64 llvm::Value *&This,
65 llvm::Value *MemFnPtr,
66 const MemberPointerType *MPT);
John McCall3023def2010-08-22 03:04:22 +000067
John McCall6c2ab1d2010-08-31 21:07:20 +000068 llvm::Value *EmitMemberDataPointerAddress(CodeGenFunction &CGF,
69 llvm::Value *Base,
70 llvm::Value *MemPtr,
71 const MemberPointerType *MPT);
72
John McCall0bab0cd2010-08-23 01:21:21 +000073 llvm::Value *EmitMemberPointerConversion(CodeGenFunction &CGF,
74 const CastExpr *E,
75 llvm::Value *Src);
John McCallcf2c85e2010-08-22 04:16:24 +000076
John McCall0bab0cd2010-08-23 01:21:21 +000077 llvm::Constant *EmitNullMemberPointer(const MemberPointerType *MPT);
John McCallcf2c85e2010-08-22 04:16:24 +000078
John McCall755d8492011-04-12 00:42:48 +000079 llvm::Constant *EmitMemberPointer(const CXXMethodDecl *MD);
John McCall5808ce42011-02-03 08:15:49 +000080 llvm::Constant *EmitMemberDataPointer(const MemberPointerType *MPT,
81 CharUnits offset);
Richard Smith2d6a5672012-01-14 04:30:29 +000082 llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT);
83 llvm::Constant *BuildMemberPointer(const CXXMethodDecl *MD,
84 CharUnits ThisAdjustment);
John McCall875ab102010-08-22 06:43:33 +000085
John McCall0bab0cd2010-08-23 01:21:21 +000086 llvm::Value *EmitMemberPointerComparison(CodeGenFunction &CGF,
87 llvm::Value *L,
88 llvm::Value *R,
89 const MemberPointerType *MPT,
90 bool Inequality);
John McCalle9fd7eb2010-08-22 08:30:07 +000091
John McCall0bab0cd2010-08-23 01:21:21 +000092 llvm::Value *EmitMemberPointerIsNotNull(CodeGenFunction &CGF,
93 llvm::Value *Addr,
94 const MemberPointerType *MPT);
John McCall4c40d982010-08-31 07:33:07 +000095
96 void BuildConstructorSignature(const CXXConstructorDecl *Ctor,
97 CXXCtorType T,
98 CanQualType &ResTy,
Chris Lattner5f9e2722011-07-23 10:55:15 +000099 SmallVectorImpl<CanQualType> &ArgTys);
John McCall4c40d982010-08-31 07:33:07 +0000100
101 void BuildDestructorSignature(const CXXDestructorDecl *Dtor,
102 CXXDtorType T,
103 CanQualType &ResTy,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000104 SmallVectorImpl<CanQualType> &ArgTys);
John McCall4c40d982010-08-31 07:33:07 +0000105
106 void BuildInstanceFunctionParams(CodeGenFunction &CGF,
107 QualType &ResTy,
108 FunctionArgList &Params);
109
110 void EmitInstanceFunctionProlog(CodeGenFunction &CGF);
John McCall1e7fe752010-09-02 09:58:18 +0000111
John McCall6ec278d2011-01-27 09:37:56 +0000112 CharUnits GetArrayCookieSize(const CXXNewExpr *expr);
John McCall1e7fe752010-09-02 09:58:18 +0000113 llvm::Value *InitializeArrayCookie(CodeGenFunction &CGF,
114 llvm::Value *NewPtr,
115 llvm::Value *NumElements,
John McCall6ec278d2011-01-27 09:37:56 +0000116 const CXXNewExpr *expr,
John McCall1e7fe752010-09-02 09:58:18 +0000117 QualType ElementType);
118 void ReadArrayCookie(CodeGenFunction &CGF, llvm::Value *Ptr,
John McCall6ec278d2011-01-27 09:37:56 +0000119 const CXXDeleteExpr *expr,
John McCall1e7fe752010-09-02 09:58:18 +0000120 QualType ElementType, llvm::Value *&NumElements,
121 llvm::Value *&AllocPtr, CharUnits &CookieSize);
John McCall5cd91b52010-09-08 01:44:27 +0000122
John McCall3030eb82010-11-06 09:44:32 +0000123 void EmitGuardedInit(CodeGenFunction &CGF, const VarDecl &D,
Richard Smith7ca48502012-02-13 22:16:19 +0000124 llvm::GlobalVariable *DeclPtr, bool PerformInit);
Charles Davis3a811f12010-05-25 19:52:27 +0000125};
John McCallee79a4c2010-08-21 22:46:04 +0000126
127class ARMCXXABI : public ItaniumCXXABI {
128public:
John McCallbabc9a92010-08-22 00:59:17 +0000129 ARMCXXABI(CodeGen::CodeGenModule &CGM) : ItaniumCXXABI(CGM, /*ARM*/ true) {}
John McCall4c40d982010-08-31 07:33:07 +0000130
131 void BuildConstructorSignature(const CXXConstructorDecl *Ctor,
132 CXXCtorType T,
133 CanQualType &ResTy,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000134 SmallVectorImpl<CanQualType> &ArgTys);
John McCall4c40d982010-08-31 07:33:07 +0000135
136 void BuildDestructorSignature(const CXXDestructorDecl *Dtor,
137 CXXDtorType T,
138 CanQualType &ResTy,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000139 SmallVectorImpl<CanQualType> &ArgTys);
John McCall4c40d982010-08-31 07:33:07 +0000140
141 void BuildInstanceFunctionParams(CodeGenFunction &CGF,
142 QualType &ResTy,
143 FunctionArgList &Params);
144
145 void EmitInstanceFunctionProlog(CodeGenFunction &CGF);
146
147 void EmitReturnFromThunk(CodeGenFunction &CGF, RValue RV, QualType ResTy);
148
John McCall6ec278d2011-01-27 09:37:56 +0000149 CharUnits GetArrayCookieSize(const CXXNewExpr *expr);
John McCall1e7fe752010-09-02 09:58:18 +0000150 llvm::Value *InitializeArrayCookie(CodeGenFunction &CGF,
151 llvm::Value *NewPtr,
152 llvm::Value *NumElements,
John McCall6ec278d2011-01-27 09:37:56 +0000153 const CXXNewExpr *expr,
John McCall1e7fe752010-09-02 09:58:18 +0000154 QualType ElementType);
155 void ReadArrayCookie(CodeGenFunction &CGF, llvm::Value *Ptr,
John McCall6ec278d2011-01-27 09:37:56 +0000156 const CXXDeleteExpr *expr,
John McCall1e7fe752010-09-02 09:58:18 +0000157 QualType ElementType, llvm::Value *&NumElements,
158 llvm::Value *&AllocPtr, CharUnits &CookieSize);
John McCall4c40d982010-08-31 07:33:07 +0000159
160private:
161 /// \brief Returns true if the given instance method is one of the
162 /// kinds that the ARM ABI says returns 'this'.
163 static bool HasThisReturn(GlobalDecl GD) {
164 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl());
165 return ((isa<CXXDestructorDecl>(MD) && GD.getDtorType() != Dtor_Deleting) ||
166 (isa<CXXConstructorDecl>(MD)));
167 }
John McCallee79a4c2010-08-21 22:46:04 +0000168};
Charles Davis3a811f12010-05-25 19:52:27 +0000169}
170
Charles Davis071cc7d2010-08-16 03:33:14 +0000171CodeGen::CGCXXABI *CodeGen::CreateItaniumCXXABI(CodeGenModule &CGM) {
Charles Davis3a811f12010-05-25 19:52:27 +0000172 return new ItaniumCXXABI(CGM);
173}
174
John McCallee79a4c2010-08-21 22:46:04 +0000175CodeGen::CGCXXABI *CodeGen::CreateARMCXXABI(CodeGenModule &CGM) {
176 return new ARMCXXABI(CGM);
177}
178
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000179llvm::Type *
John McCall0bab0cd2010-08-23 01:21:21 +0000180ItaniumCXXABI::ConvertMemberPointerType(const MemberPointerType *MPT) {
181 if (MPT->isMemberDataPointer())
182 return getPtrDiffTy();
Chris Lattner7650d952011-06-18 22:49:11 +0000183 return llvm::StructType::get(getPtrDiffTy(), getPtrDiffTy(), NULL);
John McCall875ab102010-08-22 06:43:33 +0000184}
185
John McCallbabc9a92010-08-22 00:59:17 +0000186/// In the Itanium and ARM ABIs, method pointers have the form:
187/// struct { ptrdiff_t ptr; ptrdiff_t adj; } memptr;
188///
189/// In the Itanium ABI:
190/// - method pointers are virtual if (memptr.ptr & 1) is nonzero
191/// - the this-adjustment is (memptr.adj)
192/// - the virtual offset is (memptr.ptr - 1)
193///
194/// In the ARM ABI:
195/// - method pointers are virtual if (memptr.adj & 1) is nonzero
196/// - the this-adjustment is (memptr.adj >> 1)
197/// - the virtual offset is (memptr.ptr)
198/// ARM uses 'adj' for the virtual flag because Thumb functions
199/// may be only single-byte aligned.
200///
201/// If the member is virtual, the adjusted 'this' pointer points
202/// to a vtable pointer from which the virtual offset is applied.
203///
204/// If the member is non-virtual, memptr.ptr is the address of
205/// the function to call.
John McCall93d557b2010-08-22 00:05:51 +0000206llvm::Value *
207ItaniumCXXABI::EmitLoadOfMemberFunctionPointer(CodeGenFunction &CGF,
208 llvm::Value *&This,
209 llvm::Value *MemFnPtr,
210 const MemberPointerType *MPT) {
211 CGBuilderTy &Builder = CGF.Builder;
212
213 const FunctionProtoType *FPT =
214 MPT->getPointeeType()->getAs<FunctionProtoType>();
215 const CXXRecordDecl *RD =
216 cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl());
217
Chris Lattner2acc6e32011-07-18 04:24:23 +0000218 llvm::FunctionType *FTy =
John McCall93d557b2010-08-22 00:05:51 +0000219 CGM.getTypes().GetFunctionType(CGM.getTypes().getFunctionInfo(RD, FPT),
220 FPT->isVariadic());
221
Chris Lattner2acc6e32011-07-18 04:24:23 +0000222 llvm::IntegerType *ptrdiff = getPtrDiffTy();
John McCallbabc9a92010-08-22 00:59:17 +0000223 llvm::Constant *ptrdiff_1 = llvm::ConstantInt::get(ptrdiff, 1);
John McCall93d557b2010-08-22 00:05:51 +0000224
John McCallbabc9a92010-08-22 00:59:17 +0000225 llvm::BasicBlock *FnVirtual = CGF.createBasicBlock("memptr.virtual");
226 llvm::BasicBlock *FnNonVirtual = CGF.createBasicBlock("memptr.nonvirtual");
227 llvm::BasicBlock *FnEnd = CGF.createBasicBlock("memptr.end");
228
John McCalld608cdb2010-08-22 10:59:02 +0000229 // Extract memptr.adj, which is in the second field.
230 llvm::Value *RawAdj = Builder.CreateExtractValue(MemFnPtr, 1, "memptr.adj");
John McCallbabc9a92010-08-22 00:59:17 +0000231
232 // Compute the true adjustment.
233 llvm::Value *Adj = RawAdj;
234 if (IsARM)
235 Adj = Builder.CreateAShr(Adj, ptrdiff_1, "memptr.adj.shifted");
John McCall93d557b2010-08-22 00:05:51 +0000236
237 // Apply the adjustment and cast back to the original struct type
238 // for consistency.
John McCallbabc9a92010-08-22 00:59:17 +0000239 llvm::Value *Ptr = Builder.CreateBitCast(This, Builder.getInt8PtrTy());
240 Ptr = Builder.CreateInBoundsGEP(Ptr, Adj);
241 This = Builder.CreateBitCast(Ptr, This->getType(), "this.adjusted");
John McCall93d557b2010-08-22 00:05:51 +0000242
243 // Load the function pointer.
John McCalld608cdb2010-08-22 10:59:02 +0000244 llvm::Value *FnAsInt = Builder.CreateExtractValue(MemFnPtr, 0, "memptr.ptr");
John McCall93d557b2010-08-22 00:05:51 +0000245
246 // If the LSB in the function pointer is 1, the function pointer points to
247 // a virtual function.
John McCallbabc9a92010-08-22 00:59:17 +0000248 llvm::Value *IsVirtual;
249 if (IsARM)
250 IsVirtual = Builder.CreateAnd(RawAdj, ptrdiff_1);
251 else
252 IsVirtual = Builder.CreateAnd(FnAsInt, ptrdiff_1);
253 IsVirtual = Builder.CreateIsNotNull(IsVirtual, "memptr.isvirtual");
John McCall93d557b2010-08-22 00:05:51 +0000254 Builder.CreateCondBr(IsVirtual, FnVirtual, FnNonVirtual);
255
256 // In the virtual path, the adjustment left 'This' pointing to the
257 // vtable of the correct base subobject. The "function pointer" is an
John McCallbabc9a92010-08-22 00:59:17 +0000258 // offset within the vtable (+1 for the virtual flag on non-ARM).
John McCall93d557b2010-08-22 00:05:51 +0000259 CGF.EmitBlock(FnVirtual);
260
261 // Cast the adjusted this to a pointer to vtable pointer and load.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000262 llvm::Type *VTableTy = Builder.getInt8PtrTy();
John McCall93d557b2010-08-22 00:05:51 +0000263 llvm::Value *VTable = Builder.CreateBitCast(This, VTableTy->getPointerTo());
John McCallbabc9a92010-08-22 00:59:17 +0000264 VTable = Builder.CreateLoad(VTable, "memptr.vtable");
John McCall93d557b2010-08-22 00:05:51 +0000265
266 // Apply the offset.
John McCallbabc9a92010-08-22 00:59:17 +0000267 llvm::Value *VTableOffset = FnAsInt;
268 if (!IsARM) VTableOffset = Builder.CreateSub(VTableOffset, ptrdiff_1);
269 VTable = Builder.CreateGEP(VTable, VTableOffset);
John McCall93d557b2010-08-22 00:05:51 +0000270
271 // Load the virtual function to call.
272 VTable = Builder.CreateBitCast(VTable, FTy->getPointerTo()->getPointerTo());
John McCallbabc9a92010-08-22 00:59:17 +0000273 llvm::Value *VirtualFn = Builder.CreateLoad(VTable, "memptr.virtualfn");
John McCall93d557b2010-08-22 00:05:51 +0000274 CGF.EmitBranch(FnEnd);
275
276 // In the non-virtual path, the function pointer is actually a
277 // function pointer.
278 CGF.EmitBlock(FnNonVirtual);
279 llvm::Value *NonVirtualFn =
John McCallbabc9a92010-08-22 00:59:17 +0000280 Builder.CreateIntToPtr(FnAsInt, FTy->getPointerTo(), "memptr.nonvirtualfn");
John McCall93d557b2010-08-22 00:05:51 +0000281
282 // We're done.
283 CGF.EmitBlock(FnEnd);
Jay Foadbbf3bac2011-03-30 11:28:58 +0000284 llvm::PHINode *Callee = Builder.CreatePHI(FTy->getPointerTo(), 2);
John McCall93d557b2010-08-22 00:05:51 +0000285 Callee->addIncoming(VirtualFn, FnVirtual);
286 Callee->addIncoming(NonVirtualFn, FnNonVirtual);
287 return Callee;
288}
John McCall3023def2010-08-22 03:04:22 +0000289
John McCall6c2ab1d2010-08-31 21:07:20 +0000290/// Compute an l-value by applying the given pointer-to-member to a
291/// base object.
292llvm::Value *ItaniumCXXABI::EmitMemberDataPointerAddress(CodeGenFunction &CGF,
293 llvm::Value *Base,
294 llvm::Value *MemPtr,
295 const MemberPointerType *MPT) {
296 assert(MemPtr->getType() == getPtrDiffTy());
297
298 CGBuilderTy &Builder = CGF.Builder;
299
300 unsigned AS = cast<llvm::PointerType>(Base->getType())->getAddressSpace();
301
302 // Cast to char*.
303 Base = Builder.CreateBitCast(Base, Builder.getInt8Ty()->getPointerTo(AS));
304
305 // Apply the offset, which we assume is non-null.
306 llvm::Value *Addr = Builder.CreateInBoundsGEP(Base, MemPtr, "memptr.offset");
307
308 // Cast the address to the appropriate pointer type, adopting the
309 // address space of the base pointer.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000310 llvm::Type *PType
Douglas Gregoreede61a2010-09-02 17:38:50 +0000311 = CGF.ConvertTypeForMem(MPT->getPointeeType())->getPointerTo(AS);
John McCall6c2ab1d2010-08-31 21:07:20 +0000312 return Builder.CreateBitCast(Addr, PType);
313}
314
John McCall3023def2010-08-22 03:04:22 +0000315/// Perform a derived-to-base or base-to-derived member pointer conversion.
John McCall0bab0cd2010-08-23 01:21:21 +0000316///
317/// Obligatory offset/adjustment diagram:
318/// <-- offset --> <-- adjustment -->
319/// |--------------------------|----------------------|--------------------|
320/// ^Derived address point ^Base address point ^Member address point
321///
322/// So when converting a base member pointer to a derived member pointer,
323/// we add the offset to the adjustment because the address point has
324/// decreased; and conversely, when converting a derived MP to a base MP
325/// we subtract the offset from the adjustment because the address point
326/// has increased.
327///
328/// The standard forbids (at compile time) conversion to and from
329/// virtual bases, which is why we don't have to consider them here.
330///
331/// The standard forbids (at run time) casting a derived MP to a base
332/// MP when the derived MP does not point to a member of the base.
333/// This is why -1 is a reasonable choice for null data member
334/// pointers.
John McCalld608cdb2010-08-22 10:59:02 +0000335llvm::Value *
John McCall0bab0cd2010-08-23 01:21:21 +0000336ItaniumCXXABI::EmitMemberPointerConversion(CodeGenFunction &CGF,
337 const CastExpr *E,
338 llvm::Value *Src) {
John McCall2de56d12010-08-25 11:45:40 +0000339 assert(E->getCastKind() == CK_DerivedToBaseMemberPointer ||
340 E->getCastKind() == CK_BaseToDerivedMemberPointer);
John McCall3023def2010-08-22 03:04:22 +0000341
342 CGBuilderTy &Builder = CGF.Builder;
343
344 const MemberPointerType *SrcTy =
345 E->getSubExpr()->getType()->getAs<MemberPointerType>();
346 const MemberPointerType *DestTy = E->getType()->getAs<MemberPointerType>();
347
348 const CXXRecordDecl *SrcDecl = SrcTy->getClass()->getAsCXXRecordDecl();
349 const CXXRecordDecl *DestDecl = DestTy->getClass()->getAsCXXRecordDecl();
350
John McCall3023def2010-08-22 03:04:22 +0000351 bool DerivedToBase =
John McCall2de56d12010-08-25 11:45:40 +0000352 E->getCastKind() == CK_DerivedToBaseMemberPointer;
John McCall3023def2010-08-22 03:04:22 +0000353
Jeffrey Yasskindec09842011-01-18 02:00:16 +0000354 const CXXRecordDecl *DerivedDecl;
John McCall3023def2010-08-22 03:04:22 +0000355 if (DerivedToBase)
Jeffrey Yasskindec09842011-01-18 02:00:16 +0000356 DerivedDecl = SrcDecl;
John McCall3023def2010-08-22 03:04:22 +0000357 else
Jeffrey Yasskindec09842011-01-18 02:00:16 +0000358 DerivedDecl = DestDecl;
John McCall3023def2010-08-22 03:04:22 +0000359
John McCalld608cdb2010-08-22 10:59:02 +0000360 llvm::Constant *Adj =
361 CGF.CGM.GetNonVirtualBaseClassOffset(DerivedDecl,
362 E->path_begin(),
363 E->path_end());
364 if (!Adj) return Src;
John McCall875ab102010-08-22 06:43:33 +0000365
John McCall0bab0cd2010-08-23 01:21:21 +0000366 // For member data pointers, this is just a matter of adding the
367 // offset if the source is non-null.
368 if (SrcTy->isMemberDataPointer()) {
369 llvm::Value *Dst;
370 if (DerivedToBase)
371 Dst = Builder.CreateNSWSub(Src, Adj, "adj");
372 else
373 Dst = Builder.CreateNSWAdd(Src, Adj, "adj");
374
375 // Null check.
376 llvm::Value *Null = llvm::Constant::getAllOnesValue(Src->getType());
377 llvm::Value *IsNull = Builder.CreateICmpEQ(Src, Null, "memptr.isnull");
378 return Builder.CreateSelect(IsNull, Src, Dst);
379 }
380
John McCalld608cdb2010-08-22 10:59:02 +0000381 // The this-adjustment is left-shifted by 1 on ARM.
382 if (IsARM) {
383 uint64_t Offset = cast<llvm::ConstantInt>(Adj)->getZExtValue();
384 Offset <<= 1;
385 Adj = llvm::ConstantInt::get(Adj->getType(), Offset);
386 }
387
John McCalle14add42010-08-22 11:04:31 +0000388 llvm::Value *SrcAdj = Builder.CreateExtractValue(Src, 1, "src.adj");
John McCalld608cdb2010-08-22 10:59:02 +0000389 llvm::Value *DstAdj;
390 if (DerivedToBase)
John McCall0bab0cd2010-08-23 01:21:21 +0000391 DstAdj = Builder.CreateNSWSub(SrcAdj, Adj, "adj");
John McCalld608cdb2010-08-22 10:59:02 +0000392 else
John McCall0bab0cd2010-08-23 01:21:21 +0000393 DstAdj = Builder.CreateNSWAdd(SrcAdj, Adj, "adj");
John McCalld608cdb2010-08-22 10:59:02 +0000394
John McCalle14add42010-08-22 11:04:31 +0000395 return Builder.CreateInsertValue(Src, DstAdj, 1);
John McCall3023def2010-08-22 03:04:22 +0000396}
John McCallcf2c85e2010-08-22 04:16:24 +0000397
398llvm::Constant *
John McCall0bab0cd2010-08-23 01:21:21 +0000399ItaniumCXXABI::EmitNullMemberPointer(const MemberPointerType *MPT) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000400 llvm::Type *ptrdiff_t = getPtrDiffTy();
John McCall0bab0cd2010-08-23 01:21:21 +0000401
402 // Itanium C++ ABI 2.3:
403 // A NULL pointer is represented as -1.
404 if (MPT->isMemberDataPointer())
405 return llvm::ConstantInt::get(ptrdiff_t, -1ULL, /*isSigned=*/true);
John McCalld608cdb2010-08-22 10:59:02 +0000406
407 llvm::Constant *Zero = llvm::ConstantInt::get(ptrdiff_t, 0);
408 llvm::Constant *Values[2] = { Zero, Zero };
Chris Lattnerc5cbb902011-06-20 04:01:35 +0000409 return llvm::ConstantStruct::getAnon(Values);
John McCallcf2c85e2010-08-22 04:16:24 +0000410}
411
John McCall5808ce42011-02-03 08:15:49 +0000412llvm::Constant *
413ItaniumCXXABI::EmitMemberDataPointer(const MemberPointerType *MPT,
414 CharUnits offset) {
John McCall0bab0cd2010-08-23 01:21:21 +0000415 // Itanium C++ ABI 2.3:
416 // A pointer to data member is an offset from the base address of
417 // the class object containing it, represented as a ptrdiff_t
John McCall5808ce42011-02-03 08:15:49 +0000418 return llvm::ConstantInt::get(getPtrDiffTy(), offset.getQuantity());
John McCall0bab0cd2010-08-23 01:21:21 +0000419}
420
John McCall755d8492011-04-12 00:42:48 +0000421llvm::Constant *ItaniumCXXABI::EmitMemberPointer(const CXXMethodDecl *MD) {
Richard Smith2d6a5672012-01-14 04:30:29 +0000422 return BuildMemberPointer(MD, CharUnits::Zero());
423}
424
425llvm::Constant *ItaniumCXXABI::BuildMemberPointer(const CXXMethodDecl *MD,
426 CharUnits ThisAdjustment) {
John McCalld608cdb2010-08-22 10:59:02 +0000427 assert(MD->isInstance() && "Member function must not be static!");
428 MD = MD->getCanonicalDecl();
429
430 CodeGenTypes &Types = CGM.getTypes();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000431 llvm::Type *ptrdiff_t = getPtrDiffTy();
John McCalld608cdb2010-08-22 10:59:02 +0000432
433 // Get the function pointer (or index if this is a virtual function).
434 llvm::Constant *MemPtr[2];
435 if (MD->isVirtual()) {
Peter Collingbourne1d2b3172011-09-26 01:56:30 +0000436 uint64_t Index = CGM.getVTableContext().getMethodVTableIndex(MD);
John McCalld608cdb2010-08-22 10:59:02 +0000437
Ken Dyck1246ba62011-04-09 01:30:02 +0000438 const ASTContext &Context = getContext();
439 CharUnits PointerWidth =
Douglas Gregorbcfd1f52011-09-02 00:18:52 +0000440 Context.toCharUnitsFromBits(Context.getTargetInfo().getPointerWidth(0));
Ken Dyck1246ba62011-04-09 01:30:02 +0000441 uint64_t VTableOffset = (Index * PointerWidth.getQuantity());
John McCalld608cdb2010-08-22 10:59:02 +0000442
443 if (IsARM) {
444 // ARM C++ ABI 3.2.1:
445 // This ABI specifies that adj contains twice the this
446 // adjustment, plus 1 if the member function is virtual. The
447 // least significant bit of adj then makes exactly the same
448 // discrimination as the least significant bit of ptr does for
449 // Itanium.
450 MemPtr[0] = llvm::ConstantInt::get(ptrdiff_t, VTableOffset);
Richard Smith2d6a5672012-01-14 04:30:29 +0000451 MemPtr[1] = llvm::ConstantInt::get(ptrdiff_t,
452 2 * ThisAdjustment.getQuantity() + 1);
John McCalld608cdb2010-08-22 10:59:02 +0000453 } else {
454 // Itanium C++ ABI 2.3:
455 // For a virtual function, [the pointer field] is 1 plus the
456 // virtual table offset (in bytes) of the function,
457 // represented as a ptrdiff_t.
458 MemPtr[0] = llvm::ConstantInt::get(ptrdiff_t, VTableOffset + 1);
Richard Smith2d6a5672012-01-14 04:30:29 +0000459 MemPtr[1] = llvm::ConstantInt::get(ptrdiff_t,
460 ThisAdjustment.getQuantity());
John McCalld608cdb2010-08-22 10:59:02 +0000461 }
462 } else {
John McCall755d8492011-04-12 00:42:48 +0000463 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000464 llvm::Type *Ty;
John McCall755d8492011-04-12 00:42:48 +0000465 // Check whether the function has a computable LLVM signature.
Chris Lattnerf742eb02011-07-10 00:18:59 +0000466 if (Types.isFuncTypeConvertible(FPT)) {
John McCall755d8492011-04-12 00:42:48 +0000467 // The function has a computable LLVM signature; use the correct type.
468 Ty = Types.GetFunctionType(Types.getFunctionInfo(MD),
469 FPT->isVariadic());
John McCalld608cdb2010-08-22 10:59:02 +0000470 } else {
John McCall755d8492011-04-12 00:42:48 +0000471 // Use an arbitrary non-function type to tell GetAddrOfFunction that the
472 // function type is incomplete.
473 Ty = ptrdiff_t;
John McCalld608cdb2010-08-22 10:59:02 +0000474 }
John McCall755d8492011-04-12 00:42:48 +0000475 llvm::Constant *addr = CGM.GetAddrOfFunction(MD, Ty);
John McCalld608cdb2010-08-22 10:59:02 +0000476
John McCall379b5152011-04-11 07:02:50 +0000477 MemPtr[0] = llvm::ConstantExpr::getPtrToInt(addr, ptrdiff_t);
Richard Smith2d6a5672012-01-14 04:30:29 +0000478 MemPtr[1] = llvm::ConstantInt::get(ptrdiff_t, (IsARM ? 2 : 1) *
479 ThisAdjustment.getQuantity());
John McCalld608cdb2010-08-22 10:59:02 +0000480 }
John McCall875ab102010-08-22 06:43:33 +0000481
Chris Lattnerc5cbb902011-06-20 04:01:35 +0000482 return llvm::ConstantStruct::getAnon(MemPtr);
John McCall875ab102010-08-22 06:43:33 +0000483}
484
Richard Smith2d6a5672012-01-14 04:30:29 +0000485llvm::Constant *ItaniumCXXABI::EmitMemberPointer(const APValue &MP,
486 QualType MPType) {
487 const MemberPointerType *MPT = MPType->castAs<MemberPointerType>();
488 const ValueDecl *MPD = MP.getMemberPointerDecl();
489 if (!MPD)
490 return EmitNullMemberPointer(MPT);
491
492 // Compute the this-adjustment.
493 CharUnits ThisAdjustment = CharUnits::Zero();
494 ArrayRef<const CXXRecordDecl*> Path = MP.getMemberPointerPath();
495 bool DerivedMember = MP.isMemberPointerToDerivedMember();
496 const CXXRecordDecl *RD = cast<CXXRecordDecl>(MPD->getDeclContext());
497 for (unsigned I = 0, N = Path.size(); I != N; ++I) {
498 const CXXRecordDecl *Base = RD;
499 const CXXRecordDecl *Derived = Path[I];
500 if (DerivedMember)
501 std::swap(Base, Derived);
502 ThisAdjustment +=
503 getContext().getASTRecordLayout(Derived).getBaseClassOffset(Base);
504 RD = Path[I];
505 }
506 if (DerivedMember)
507 ThisAdjustment = -ThisAdjustment;
508
509 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MPD))
510 return BuildMemberPointer(MD, ThisAdjustment);
511
512 CharUnits FieldOffset =
513 getContext().toCharUnitsFromBits(getContext().getFieldOffset(MPD));
514 return EmitMemberDataPointer(MPT, ThisAdjustment + FieldOffset);
515}
516
John McCalle9fd7eb2010-08-22 08:30:07 +0000517/// The comparison algorithm is pretty easy: the member pointers are
518/// the same if they're either bitwise identical *or* both null.
519///
520/// ARM is different here only because null-ness is more complicated.
521llvm::Value *
John McCall0bab0cd2010-08-23 01:21:21 +0000522ItaniumCXXABI::EmitMemberPointerComparison(CodeGenFunction &CGF,
523 llvm::Value *L,
524 llvm::Value *R,
525 const MemberPointerType *MPT,
526 bool Inequality) {
John McCalle9fd7eb2010-08-22 08:30:07 +0000527 CGBuilderTy &Builder = CGF.Builder;
528
John McCalle9fd7eb2010-08-22 08:30:07 +0000529 llvm::ICmpInst::Predicate Eq;
530 llvm::Instruction::BinaryOps And, Or;
531 if (Inequality) {
532 Eq = llvm::ICmpInst::ICMP_NE;
533 And = llvm::Instruction::Or;
534 Or = llvm::Instruction::And;
535 } else {
536 Eq = llvm::ICmpInst::ICMP_EQ;
537 And = llvm::Instruction::And;
538 Or = llvm::Instruction::Or;
539 }
540
John McCall0bab0cd2010-08-23 01:21:21 +0000541 // Member data pointers are easy because there's a unique null
542 // value, so it just comes down to bitwise equality.
543 if (MPT->isMemberDataPointer())
544 return Builder.CreateICmp(Eq, L, R);
545
546 // For member function pointers, the tautologies are more complex.
547 // The Itanium tautology is:
John McCallde719f72010-08-23 06:56:36 +0000548 // (L == R) <==> (L.ptr == R.ptr && (L.ptr == 0 || L.adj == R.adj))
John McCall0bab0cd2010-08-23 01:21:21 +0000549 // The ARM tautology is:
John McCallde719f72010-08-23 06:56:36 +0000550 // (L == R) <==> (L.ptr == R.ptr &&
551 // (L.adj == R.adj ||
552 // (L.ptr == 0 && ((L.adj|R.adj) & 1) == 0)))
John McCall0bab0cd2010-08-23 01:21:21 +0000553 // The inequality tautologies have exactly the same structure, except
554 // applying De Morgan's laws.
555
556 llvm::Value *LPtr = Builder.CreateExtractValue(L, 0, "lhs.memptr.ptr");
557 llvm::Value *RPtr = Builder.CreateExtractValue(R, 0, "rhs.memptr.ptr");
558
John McCalle9fd7eb2010-08-22 08:30:07 +0000559 // This condition tests whether L.ptr == R.ptr. This must always be
560 // true for equality to hold.
561 llvm::Value *PtrEq = Builder.CreateICmp(Eq, LPtr, RPtr, "cmp.ptr");
562
563 // This condition, together with the assumption that L.ptr == R.ptr,
564 // tests whether the pointers are both null. ARM imposes an extra
565 // condition.
566 llvm::Value *Zero = llvm::Constant::getNullValue(LPtr->getType());
567 llvm::Value *EqZero = Builder.CreateICmp(Eq, LPtr, Zero, "cmp.ptr.null");
568
569 // This condition tests whether L.adj == R.adj. If this isn't
570 // true, the pointers are unequal unless they're both null.
John McCalld608cdb2010-08-22 10:59:02 +0000571 llvm::Value *LAdj = Builder.CreateExtractValue(L, 1, "lhs.memptr.adj");
572 llvm::Value *RAdj = Builder.CreateExtractValue(R, 1, "rhs.memptr.adj");
John McCalle9fd7eb2010-08-22 08:30:07 +0000573 llvm::Value *AdjEq = Builder.CreateICmp(Eq, LAdj, RAdj, "cmp.adj");
574
575 // Null member function pointers on ARM clear the low bit of Adj,
576 // so the zero condition has to check that neither low bit is set.
577 if (IsARM) {
578 llvm::Value *One = llvm::ConstantInt::get(LPtr->getType(), 1);
579
580 // Compute (l.adj | r.adj) & 1 and test it against zero.
581 llvm::Value *OrAdj = Builder.CreateOr(LAdj, RAdj, "or.adj");
582 llvm::Value *OrAdjAnd1 = Builder.CreateAnd(OrAdj, One);
583 llvm::Value *OrAdjAnd1EqZero = Builder.CreateICmp(Eq, OrAdjAnd1, Zero,
584 "cmp.or.adj");
585 EqZero = Builder.CreateBinOp(And, EqZero, OrAdjAnd1EqZero);
586 }
587
588 // Tie together all our conditions.
589 llvm::Value *Result = Builder.CreateBinOp(Or, EqZero, AdjEq);
590 Result = Builder.CreateBinOp(And, PtrEq, Result,
591 Inequality ? "memptr.ne" : "memptr.eq");
592 return Result;
593}
594
595llvm::Value *
John McCall0bab0cd2010-08-23 01:21:21 +0000596ItaniumCXXABI::EmitMemberPointerIsNotNull(CodeGenFunction &CGF,
597 llvm::Value *MemPtr,
598 const MemberPointerType *MPT) {
John McCalle9fd7eb2010-08-22 08:30:07 +0000599 CGBuilderTy &Builder = CGF.Builder;
John McCall0bab0cd2010-08-23 01:21:21 +0000600
601 /// For member data pointers, this is just a check against -1.
602 if (MPT->isMemberDataPointer()) {
603 assert(MemPtr->getType() == getPtrDiffTy());
604 llvm::Value *NegativeOne =
605 llvm::Constant::getAllOnesValue(MemPtr->getType());
606 return Builder.CreateICmpNE(MemPtr, NegativeOne, "memptr.tobool");
607 }
John McCalle9fd7eb2010-08-22 08:30:07 +0000608
Daniel Dunbardb27b5f2011-04-19 23:10:47 +0000609 // In Itanium, a member function pointer is not null if 'ptr' is not null.
John McCalld608cdb2010-08-22 10:59:02 +0000610 llvm::Value *Ptr = Builder.CreateExtractValue(MemPtr, 0, "memptr.ptr");
John McCalle9fd7eb2010-08-22 08:30:07 +0000611
612 llvm::Constant *Zero = llvm::ConstantInt::get(Ptr->getType(), 0);
613 llvm::Value *Result = Builder.CreateICmpNE(Ptr, Zero, "memptr.tobool");
614
Daniel Dunbardb27b5f2011-04-19 23:10:47 +0000615 // On ARM, a member function pointer is also non-null if the low bit of 'adj'
616 // (the virtual bit) is set.
John McCalle9fd7eb2010-08-22 08:30:07 +0000617 if (IsARM) {
618 llvm::Constant *One = llvm::ConstantInt::get(Ptr->getType(), 1);
John McCalld608cdb2010-08-22 10:59:02 +0000619 llvm::Value *Adj = Builder.CreateExtractValue(MemPtr, 1, "memptr.adj");
John McCalle9fd7eb2010-08-22 08:30:07 +0000620 llvm::Value *VirtualBit = Builder.CreateAnd(Adj, One, "memptr.virtualbit");
Daniel Dunbardb27b5f2011-04-19 23:10:47 +0000621 llvm::Value *IsVirtual = Builder.CreateICmpNE(VirtualBit, Zero,
622 "memptr.isvirtual");
623 Result = Builder.CreateOr(Result, IsVirtual);
John McCalle9fd7eb2010-08-22 08:30:07 +0000624 }
625
626 return Result;
627}
John McCall875ab102010-08-22 06:43:33 +0000628
John McCallf16aa102010-08-22 21:01:12 +0000629/// The Itanium ABI requires non-zero initialization only for data
630/// member pointers, for which '0' is a valid offset.
631bool ItaniumCXXABI::isZeroInitializable(const MemberPointerType *MPT) {
632 return MPT->getPointeeType()->isFunctionType();
John McCallcf2c85e2010-08-22 04:16:24 +0000633}
John McCall4c40d982010-08-31 07:33:07 +0000634
635/// The generic ABI passes 'this', plus a VTT if it's initializing a
636/// base subobject.
637void ItaniumCXXABI::BuildConstructorSignature(const CXXConstructorDecl *Ctor,
638 CXXCtorType Type,
639 CanQualType &ResTy,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000640 SmallVectorImpl<CanQualType> &ArgTys) {
John McCall9cb2cee2010-09-02 10:25:57 +0000641 ASTContext &Context = getContext();
John McCall4c40d982010-08-31 07:33:07 +0000642
643 // 'this' is already there.
644
645 // Check if we need to add a VTT parameter (which has type void **).
646 if (Type == Ctor_Base && Ctor->getParent()->getNumVBases() != 0)
647 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
648}
649
650/// The ARM ABI does the same as the Itanium ABI, but returns 'this'.
651void ARMCXXABI::BuildConstructorSignature(const CXXConstructorDecl *Ctor,
652 CXXCtorType Type,
653 CanQualType &ResTy,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000654 SmallVectorImpl<CanQualType> &ArgTys) {
John McCall4c40d982010-08-31 07:33:07 +0000655 ItaniumCXXABI::BuildConstructorSignature(Ctor, Type, ResTy, ArgTys);
656 ResTy = ArgTys[0];
657}
658
659/// The generic ABI passes 'this', plus a VTT if it's destroying a
660/// base subobject.
661void ItaniumCXXABI::BuildDestructorSignature(const CXXDestructorDecl *Dtor,
662 CXXDtorType Type,
663 CanQualType &ResTy,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000664 SmallVectorImpl<CanQualType> &ArgTys) {
John McCall9cb2cee2010-09-02 10:25:57 +0000665 ASTContext &Context = getContext();
John McCall4c40d982010-08-31 07:33:07 +0000666
667 // 'this' is already there.
668
669 // Check if we need to add a VTT parameter (which has type void **).
670 if (Type == Dtor_Base && Dtor->getParent()->getNumVBases() != 0)
671 ArgTys.push_back(Context.getPointerType(Context.VoidPtrTy));
672}
673
674/// The ARM ABI does the same as the Itanium ABI, but returns 'this'
675/// for non-deleting destructors.
676void ARMCXXABI::BuildDestructorSignature(const CXXDestructorDecl *Dtor,
677 CXXDtorType Type,
678 CanQualType &ResTy,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000679 SmallVectorImpl<CanQualType> &ArgTys) {
John McCall4c40d982010-08-31 07:33:07 +0000680 ItaniumCXXABI::BuildDestructorSignature(Dtor, Type, ResTy, ArgTys);
681
682 if (Type != Dtor_Deleting)
683 ResTy = ArgTys[0];
684}
685
686void ItaniumCXXABI::BuildInstanceFunctionParams(CodeGenFunction &CGF,
687 QualType &ResTy,
688 FunctionArgList &Params) {
689 /// Create the 'this' variable.
690 BuildThisParam(CGF, Params);
691
692 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CGF.CurGD.getDecl());
693 assert(MD->isInstance());
694
695 // Check if we need a VTT parameter as well.
696 if (CodeGenVTables::needsVTTParameter(CGF.CurGD)) {
John McCall9cb2cee2010-09-02 10:25:57 +0000697 ASTContext &Context = getContext();
John McCall4c40d982010-08-31 07:33:07 +0000698
699 // FIXME: avoid the fake decl
700 QualType T = Context.getPointerType(Context.VoidPtrTy);
701 ImplicitParamDecl *VTTDecl
702 = ImplicitParamDecl::Create(Context, 0, MD->getLocation(),
703 &Context.Idents.get("vtt"), T);
John McCalld26bc762011-03-09 04:27:21 +0000704 Params.push_back(VTTDecl);
John McCall4c40d982010-08-31 07:33:07 +0000705 getVTTDecl(CGF) = VTTDecl;
706 }
707}
708
709void ARMCXXABI::BuildInstanceFunctionParams(CodeGenFunction &CGF,
710 QualType &ResTy,
711 FunctionArgList &Params) {
712 ItaniumCXXABI::BuildInstanceFunctionParams(CGF, ResTy, Params);
713
714 // Return 'this' from certain constructors and destructors.
715 if (HasThisReturn(CGF.CurGD))
John McCalld26bc762011-03-09 04:27:21 +0000716 ResTy = Params[0]->getType();
John McCall4c40d982010-08-31 07:33:07 +0000717}
718
719void ItaniumCXXABI::EmitInstanceFunctionProlog(CodeGenFunction &CGF) {
720 /// Initialize the 'this' slot.
721 EmitThisParam(CGF);
722
723 /// Initialize the 'vtt' slot if needed.
724 if (getVTTDecl(CGF)) {
725 getVTTValue(CGF)
726 = CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(getVTTDecl(CGF)),
727 "vtt");
728 }
729}
730
731void ARMCXXABI::EmitInstanceFunctionProlog(CodeGenFunction &CGF) {
732 ItaniumCXXABI::EmitInstanceFunctionProlog(CGF);
733
734 /// Initialize the return slot to 'this' at the start of the
735 /// function.
736 if (HasThisReturn(CGF.CurGD))
Eli Friedmancec5ebd2012-02-11 02:57:39 +0000737 CGF.Builder.CreateStore(getThisValue(CGF), CGF.ReturnValue);
John McCall4c40d982010-08-31 07:33:07 +0000738}
739
740void ARMCXXABI::EmitReturnFromThunk(CodeGenFunction &CGF,
741 RValue RV, QualType ResultType) {
742 if (!isa<CXXDestructorDecl>(CGF.CurGD.getDecl()))
743 return ItaniumCXXABI::EmitReturnFromThunk(CGF, RV, ResultType);
744
745 // Destructor thunks in the ARM ABI have indeterminate results.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000746 llvm::Type *T =
John McCall4c40d982010-08-31 07:33:07 +0000747 cast<llvm::PointerType>(CGF.ReturnValue->getType())->getElementType();
748 RValue Undef = RValue::get(llvm::UndefValue::get(T));
749 return ItaniumCXXABI::EmitReturnFromThunk(CGF, Undef, ResultType);
750}
John McCall1e7fe752010-09-02 09:58:18 +0000751
752/************************** Array allocation cookies **************************/
753
John McCall6ec278d2011-01-27 09:37:56 +0000754bool ItaniumCXXABI::NeedsArrayCookie(const CXXNewExpr *expr) {
John McCall1e7fe752010-09-02 09:58:18 +0000755 // If the class's usual deallocation function takes two arguments,
John McCall6ec278d2011-01-27 09:37:56 +0000756 // it needs a cookie.
757 if (expr->doesUsualArrayDeleteWantSize())
758 return true;
John McCall1e7fe752010-09-02 09:58:18 +0000759
John McCallf85e1932011-06-15 23:02:42 +0000760 // Automatic Reference Counting:
761 // We need an array cookie for pointers with strong or weak lifetime.
762 QualType AllocatedType = expr->getAllocatedType();
763 if (getContext().getLangOptions().ObjCAutoRefCount &&
764 AllocatedType->isObjCLifetimeType()) {
765 switch (AllocatedType.getObjCLifetime()) {
766 case Qualifiers::OCL_None:
767 case Qualifiers::OCL_ExplicitNone:
768 case Qualifiers::OCL_Autoreleasing:
769 return false;
770
771 case Qualifiers::OCL_Strong:
772 case Qualifiers::OCL_Weak:
773 return true;
774 }
775 }
776
John McCall6ec278d2011-01-27 09:37:56 +0000777 // Otherwise, if the class has a non-trivial destructor, it always
778 // needs a cookie.
779 const CXXRecordDecl *record =
John McCallf85e1932011-06-15 23:02:42 +0000780 AllocatedType->getBaseElementTypeUnsafe()->getAsCXXRecordDecl();
John McCall6ec278d2011-01-27 09:37:56 +0000781 return (record && !record->hasTrivialDestructor());
John McCall1e7fe752010-09-02 09:58:18 +0000782}
783
John McCall6ec278d2011-01-27 09:37:56 +0000784bool ItaniumCXXABI::NeedsArrayCookie(const CXXDeleteExpr *expr,
785 QualType elementType) {
786 // If the class's usual deallocation function takes two arguments,
787 // it needs a cookie.
788 if (expr->doesUsualArrayDeleteWantSize())
789 return true;
790
Eli Friedman91873b72011-07-27 18:54:57 +0000791 return elementType.isDestructedType();
John McCall6ec278d2011-01-27 09:37:56 +0000792}
793
794CharUnits ItaniumCXXABI::GetArrayCookieSize(const CXXNewExpr *expr) {
795 if (!NeedsArrayCookie(expr))
John McCall1e7fe752010-09-02 09:58:18 +0000796 return CharUnits::Zero();
797
John McCall6ec278d2011-01-27 09:37:56 +0000798 // Padding is the maximum of sizeof(size_t) and alignof(elementType)
John McCall9cb2cee2010-09-02 10:25:57 +0000799 ASTContext &Ctx = getContext();
John McCall1e7fe752010-09-02 09:58:18 +0000800 return std::max(Ctx.getTypeSizeInChars(Ctx.getSizeType()),
John McCall6ec278d2011-01-27 09:37:56 +0000801 Ctx.getTypeAlignInChars(expr->getAllocatedType()));
John McCall1e7fe752010-09-02 09:58:18 +0000802}
803
804llvm::Value *ItaniumCXXABI::InitializeArrayCookie(CodeGenFunction &CGF,
805 llvm::Value *NewPtr,
806 llvm::Value *NumElements,
John McCall6ec278d2011-01-27 09:37:56 +0000807 const CXXNewExpr *expr,
John McCall1e7fe752010-09-02 09:58:18 +0000808 QualType ElementType) {
John McCall6ec278d2011-01-27 09:37:56 +0000809 assert(NeedsArrayCookie(expr));
John McCall1e7fe752010-09-02 09:58:18 +0000810
811 unsigned AS = cast<llvm::PointerType>(NewPtr->getType())->getAddressSpace();
812
John McCall9cb2cee2010-09-02 10:25:57 +0000813 ASTContext &Ctx = getContext();
John McCall1e7fe752010-09-02 09:58:18 +0000814 QualType SizeTy = Ctx.getSizeType();
815 CharUnits SizeSize = Ctx.getTypeSizeInChars(SizeTy);
816
817 // The size of the cookie.
818 CharUnits CookieSize =
819 std::max(SizeSize, Ctx.getTypeAlignInChars(ElementType));
820
821 // Compute an offset to the cookie.
822 llvm::Value *CookiePtr = NewPtr;
823 CharUnits CookieOffset = CookieSize - SizeSize;
824 if (!CookieOffset.isZero())
825 CookiePtr = CGF.Builder.CreateConstInBoundsGEP1_64(CookiePtr,
826 CookieOffset.getQuantity());
827
828 // Write the number of elements into the appropriate slot.
829 llvm::Value *NumElementsPtr
830 = CGF.Builder.CreateBitCast(CookiePtr,
831 CGF.ConvertType(SizeTy)->getPointerTo(AS));
832 CGF.Builder.CreateStore(NumElements, NumElementsPtr);
833
834 // Finally, compute a pointer to the actual data buffer by skipping
835 // over the cookie completely.
836 return CGF.Builder.CreateConstInBoundsGEP1_64(NewPtr,
837 CookieSize.getQuantity());
838}
839
840void ItaniumCXXABI::ReadArrayCookie(CodeGenFunction &CGF,
841 llvm::Value *Ptr,
John McCall6ec278d2011-01-27 09:37:56 +0000842 const CXXDeleteExpr *expr,
John McCall1e7fe752010-09-02 09:58:18 +0000843 QualType ElementType,
844 llvm::Value *&NumElements,
845 llvm::Value *&AllocPtr,
846 CharUnits &CookieSize) {
847 // Derive a char* in the same address space as the pointer.
848 unsigned AS = cast<llvm::PointerType>(Ptr->getType())->getAddressSpace();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000849 llvm::Type *CharPtrTy = CGF.Builder.getInt8Ty()->getPointerTo(AS);
John McCall1e7fe752010-09-02 09:58:18 +0000850
851 // If we don't need an array cookie, bail out early.
John McCall6ec278d2011-01-27 09:37:56 +0000852 if (!NeedsArrayCookie(expr, ElementType)) {
John McCall1e7fe752010-09-02 09:58:18 +0000853 AllocPtr = CGF.Builder.CreateBitCast(Ptr, CharPtrTy);
854 NumElements = 0;
855 CookieSize = CharUnits::Zero();
856 return;
857 }
858
John McCall9cb2cee2010-09-02 10:25:57 +0000859 QualType SizeTy = getContext().getSizeType();
860 CharUnits SizeSize = getContext().getTypeSizeInChars(SizeTy);
Chris Lattner2acc6e32011-07-18 04:24:23 +0000861 llvm::Type *SizeLTy = CGF.ConvertType(SizeTy);
John McCall1e7fe752010-09-02 09:58:18 +0000862
863 CookieSize
John McCall9cb2cee2010-09-02 10:25:57 +0000864 = std::max(SizeSize, getContext().getTypeAlignInChars(ElementType));
John McCall1e7fe752010-09-02 09:58:18 +0000865
866 CharUnits NumElementsOffset = CookieSize - SizeSize;
867
868 // Compute the allocated pointer.
869 AllocPtr = CGF.Builder.CreateBitCast(Ptr, CharPtrTy);
870 AllocPtr = CGF.Builder.CreateConstInBoundsGEP1_64(AllocPtr,
871 -CookieSize.getQuantity());
872
873 llvm::Value *NumElementsPtr = AllocPtr;
874 if (!NumElementsOffset.isZero())
875 NumElementsPtr =
876 CGF.Builder.CreateConstInBoundsGEP1_64(NumElementsPtr,
877 NumElementsOffset.getQuantity());
878 NumElementsPtr =
879 CGF.Builder.CreateBitCast(NumElementsPtr, SizeLTy->getPointerTo(AS));
880 NumElements = CGF.Builder.CreateLoad(NumElementsPtr);
881}
882
John McCall6ec278d2011-01-27 09:37:56 +0000883CharUnits ARMCXXABI::GetArrayCookieSize(const CXXNewExpr *expr) {
884 if (!NeedsArrayCookie(expr))
John McCall1e7fe752010-09-02 09:58:18 +0000885 return CharUnits::Zero();
886
887 // On ARM, the cookie is always:
888 // struct array_cookie {
889 // std::size_t element_size; // element_size != 0
890 // std::size_t element_count;
891 // };
892 // TODO: what should we do if the allocated type actually wants
893 // greater alignment?
894 return getContext().getTypeSizeInChars(getContext().getSizeType()) * 2;
895}
896
897llvm::Value *ARMCXXABI::InitializeArrayCookie(CodeGenFunction &CGF,
898 llvm::Value *NewPtr,
899 llvm::Value *NumElements,
John McCall6ec278d2011-01-27 09:37:56 +0000900 const CXXNewExpr *expr,
John McCall1e7fe752010-09-02 09:58:18 +0000901 QualType ElementType) {
John McCall6ec278d2011-01-27 09:37:56 +0000902 assert(NeedsArrayCookie(expr));
John McCall1e7fe752010-09-02 09:58:18 +0000903
904 // NewPtr is a char*.
905
906 unsigned AS = cast<llvm::PointerType>(NewPtr->getType())->getAddressSpace();
907
John McCall9cb2cee2010-09-02 10:25:57 +0000908 ASTContext &Ctx = getContext();
John McCall1e7fe752010-09-02 09:58:18 +0000909 CharUnits SizeSize = Ctx.getTypeSizeInChars(Ctx.getSizeType());
Chris Lattner2acc6e32011-07-18 04:24:23 +0000910 llvm::IntegerType *SizeTy =
John McCall1e7fe752010-09-02 09:58:18 +0000911 cast<llvm::IntegerType>(CGF.ConvertType(Ctx.getSizeType()));
912
913 // The cookie is always at the start of the buffer.
914 llvm::Value *CookiePtr = NewPtr;
915
916 // The first element is the element size.
917 CookiePtr = CGF.Builder.CreateBitCast(CookiePtr, SizeTy->getPointerTo(AS));
918 llvm::Value *ElementSize = llvm::ConstantInt::get(SizeTy,
919 Ctx.getTypeSizeInChars(ElementType).getQuantity());
920 CGF.Builder.CreateStore(ElementSize, CookiePtr);
921
922 // The second element is the element count.
923 CookiePtr = CGF.Builder.CreateConstInBoundsGEP1_32(CookiePtr, 1);
924 CGF.Builder.CreateStore(NumElements, CookiePtr);
925
926 // Finally, compute a pointer to the actual data buffer by skipping
927 // over the cookie completely.
928 CharUnits CookieSize = 2 * SizeSize;
929 return CGF.Builder.CreateConstInBoundsGEP1_64(NewPtr,
930 CookieSize.getQuantity());
931}
932
933void ARMCXXABI::ReadArrayCookie(CodeGenFunction &CGF,
934 llvm::Value *Ptr,
John McCall6ec278d2011-01-27 09:37:56 +0000935 const CXXDeleteExpr *expr,
John McCall1e7fe752010-09-02 09:58:18 +0000936 QualType ElementType,
937 llvm::Value *&NumElements,
938 llvm::Value *&AllocPtr,
939 CharUnits &CookieSize) {
940 // Derive a char* in the same address space as the pointer.
941 unsigned AS = cast<llvm::PointerType>(Ptr->getType())->getAddressSpace();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000942 llvm::Type *CharPtrTy = CGF.Builder.getInt8Ty()->getPointerTo(AS);
John McCall1e7fe752010-09-02 09:58:18 +0000943
944 // If we don't need an array cookie, bail out early.
John McCall6ec278d2011-01-27 09:37:56 +0000945 if (!NeedsArrayCookie(expr, ElementType)) {
John McCall1e7fe752010-09-02 09:58:18 +0000946 AllocPtr = CGF.Builder.CreateBitCast(Ptr, CharPtrTy);
947 NumElements = 0;
948 CookieSize = CharUnits::Zero();
949 return;
950 }
951
John McCall9cb2cee2010-09-02 10:25:57 +0000952 QualType SizeTy = getContext().getSizeType();
953 CharUnits SizeSize = getContext().getTypeSizeInChars(SizeTy);
Chris Lattner2acc6e32011-07-18 04:24:23 +0000954 llvm::Type *SizeLTy = CGF.ConvertType(SizeTy);
John McCall1e7fe752010-09-02 09:58:18 +0000955
956 // The cookie size is always 2 * sizeof(size_t).
957 CookieSize = 2 * SizeSize;
John McCall1e7fe752010-09-02 09:58:18 +0000958
959 // The allocated pointer is the input ptr, minus that amount.
960 AllocPtr = CGF.Builder.CreateBitCast(Ptr, CharPtrTy);
961 AllocPtr = CGF.Builder.CreateConstInBoundsGEP1_64(AllocPtr,
962 -CookieSize.getQuantity());
963
964 // The number of elements is at offset sizeof(size_t) relative to that.
965 llvm::Value *NumElementsPtr
966 = CGF.Builder.CreateConstInBoundsGEP1_64(AllocPtr,
967 SizeSize.getQuantity());
968 NumElementsPtr =
969 CGF.Builder.CreateBitCast(NumElementsPtr, SizeLTy->getPointerTo(AS));
970 NumElements = CGF.Builder.CreateLoad(NumElementsPtr);
971}
972
John McCall5cd91b52010-09-08 01:44:27 +0000973/*********************** Static local initialization **************************/
974
975static llvm::Constant *getGuardAcquireFn(CodeGenModule &CGM,
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000976 llvm::PointerType *GuardPtrTy) {
John McCall5cd91b52010-09-08 01:44:27 +0000977 // int __cxa_guard_acquire(__guard *guard_object);
Chris Lattner2acc6e32011-07-18 04:24:23 +0000978 llvm::FunctionType *FTy =
John McCall5cd91b52010-09-08 01:44:27 +0000979 llvm::FunctionType::get(CGM.getTypes().ConvertType(CGM.getContext().IntTy),
Jay Foadda549e82011-07-29 13:56:53 +0000980 GuardPtrTy, /*isVarArg=*/false);
John McCall5cd91b52010-09-08 01:44:27 +0000981
982 return CGM.CreateRuntimeFunction(FTy, "__cxa_guard_acquire");
983}
984
985static llvm::Constant *getGuardReleaseFn(CodeGenModule &CGM,
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000986 llvm::PointerType *GuardPtrTy) {
John McCall5cd91b52010-09-08 01:44:27 +0000987 // void __cxa_guard_release(__guard *guard_object);
Chris Lattner2acc6e32011-07-18 04:24:23 +0000988 llvm::FunctionType *FTy =
Chris Lattner8b418682012-02-07 00:39:47 +0000989 llvm::FunctionType::get(CGM.VoidTy, GuardPtrTy, /*isVarArg=*/false);
John McCall5cd91b52010-09-08 01:44:27 +0000990
991 return CGM.CreateRuntimeFunction(FTy, "__cxa_guard_release");
992}
993
994static llvm::Constant *getGuardAbortFn(CodeGenModule &CGM,
Chris Lattner9cbe4f02011-07-09 17:41:47 +0000995 llvm::PointerType *GuardPtrTy) {
John McCall5cd91b52010-09-08 01:44:27 +0000996 // void __cxa_guard_abort(__guard *guard_object);
Chris Lattner2acc6e32011-07-18 04:24:23 +0000997 llvm::FunctionType *FTy =
Chris Lattner8b418682012-02-07 00:39:47 +0000998 llvm::FunctionType::get(CGM.VoidTy, GuardPtrTy, /*isVarArg=*/false);
John McCall5cd91b52010-09-08 01:44:27 +0000999
1000 return CGM.CreateRuntimeFunction(FTy, "__cxa_guard_abort");
1001}
1002
1003namespace {
1004 struct CallGuardAbort : EHScopeStack::Cleanup {
1005 llvm::GlobalVariable *Guard;
1006 CallGuardAbort(llvm::GlobalVariable *Guard) : Guard(Guard) {}
1007
John McCallad346f42011-07-12 20:27:29 +00001008 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall5cd91b52010-09-08 01:44:27 +00001009 CGF.Builder.CreateCall(getGuardAbortFn(CGF.CGM, Guard->getType()), Guard)
1010 ->setDoesNotThrow();
1011 }
1012 };
1013}
1014
1015/// The ARM code here follows the Itanium code closely enough that we
1016/// just special-case it at particular places.
John McCall3030eb82010-11-06 09:44:32 +00001017void ItaniumCXXABI::EmitGuardedInit(CodeGenFunction &CGF,
1018 const VarDecl &D,
Richard Smith7ca48502012-02-13 22:16:19 +00001019 llvm::GlobalVariable *GV,
1020 bool PerformInit) {
John McCall5cd91b52010-09-08 01:44:27 +00001021 CGBuilderTy &Builder = CGF.Builder;
John McCall3030eb82010-11-06 09:44:32 +00001022
1023 // We only need to use thread-safe statics for local variables;
1024 // global initialization is always single-threaded.
John McCall0502a222011-06-17 07:33:57 +00001025 bool threadsafe =
1026 (getContext().getLangOptions().ThreadsafeStatics && D.isLocalVarDecl());
Anders Carlsson173d5122011-04-27 04:37:08 +00001027
Chris Lattner2acc6e32011-07-18 04:24:23 +00001028 llvm::IntegerType *GuardTy;
Anders Carlsson173d5122011-04-27 04:37:08 +00001029
1030 // If we have a global variable with internal linkage and thread-safe statics
1031 // are disabled, we can just let the guard variable be of type i8.
John McCall0502a222011-06-17 07:33:57 +00001032 bool useInt8GuardVariable = !threadsafe && GV->hasInternalLinkage();
1033 if (useInt8GuardVariable) {
1034 GuardTy = CGF.Int8Ty;
1035 } else {
Anders Carlsson173d5122011-04-27 04:37:08 +00001036 // Guard variables are 64 bits in the generic ABI and 32 bits on ARM.
John McCall0502a222011-06-17 07:33:57 +00001037 GuardTy = (IsARM ? CGF.Int32Ty : CGF.Int64Ty);
Anders Carlsson173d5122011-04-27 04:37:08 +00001038 }
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001039 llvm::PointerType *GuardPtrTy = GuardTy->getPointerTo();
John McCall5cd91b52010-09-08 01:44:27 +00001040
1041 // Create the guard variable.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001042 SmallString<256> GuardVName;
Rafael Espindolaf0be9792011-02-11 02:52:17 +00001043 llvm::raw_svector_ostream Out(GuardVName);
1044 getMangleContext().mangleItaniumGuardVariable(&D, Out);
1045 Out.flush();
John McCall112c9672010-11-02 21:04:24 +00001046
John McCall3030eb82010-11-06 09:44:32 +00001047 // Just absorb linkage and visibility from the variable.
John McCall5cd91b52010-09-08 01:44:27 +00001048 llvm::GlobalVariable *GuardVariable =
1049 new llvm::GlobalVariable(CGM.getModule(), GuardTy,
John McCall3030eb82010-11-06 09:44:32 +00001050 false, GV->getLinkage(),
John McCall5cd91b52010-09-08 01:44:27 +00001051 llvm::ConstantInt::get(GuardTy, 0),
1052 GuardVName.str());
John McCall112c9672010-11-02 21:04:24 +00001053 GuardVariable->setVisibility(GV->getVisibility());
John McCall5cd91b52010-09-08 01:44:27 +00001054
1055 // Test whether the variable has completed initialization.
1056 llvm::Value *IsInitialized;
1057
1058 // ARM C++ ABI 3.2.3.1:
1059 // To support the potential use of initialization guard variables
1060 // as semaphores that are the target of ARM SWP and LDREX/STREX
1061 // synchronizing instructions we define a static initialization
1062 // guard variable to be a 4-byte aligned, 4- byte word with the
1063 // following inline access protocol.
1064 // #define INITIALIZED 1
1065 // if ((obj_guard & INITIALIZED) != INITIALIZED) {
1066 // if (__cxa_guard_acquire(&obj_guard))
1067 // ...
1068 // }
John McCall0502a222011-06-17 07:33:57 +00001069 if (IsARM && !useInt8GuardVariable) {
John McCall5cd91b52010-09-08 01:44:27 +00001070 llvm::Value *V = Builder.CreateLoad(GuardVariable);
1071 V = Builder.CreateAnd(V, Builder.getInt32(1));
1072 IsInitialized = Builder.CreateIsNull(V, "guard.uninitialized");
1073
1074 // Itanium C++ ABI 3.3.2:
1075 // The following is pseudo-code showing how these functions can be used:
1076 // if (obj_guard.first_byte == 0) {
1077 // if ( __cxa_guard_acquire (&obj_guard) ) {
1078 // try {
1079 // ... initialize the object ...;
1080 // } catch (...) {
1081 // __cxa_guard_abort (&obj_guard);
1082 // throw;
1083 // }
1084 // ... queue object destructor with __cxa_atexit() ...;
1085 // __cxa_guard_release (&obj_guard);
1086 // }
1087 // }
1088 } else {
1089 // Load the first byte of the guard variable.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001090 llvm::Type *PtrTy = Builder.getInt8PtrTy();
Eli Friedmaneb43f4a2011-09-13 22:21:56 +00001091 llvm::LoadInst *LI =
Benjamin Kramer578faa82011-09-27 21:06:10 +00001092 Builder.CreateLoad(Builder.CreateBitCast(GuardVariable, PtrTy));
Eli Friedmaneb43f4a2011-09-13 22:21:56 +00001093 LI->setAlignment(1);
John McCall5cd91b52010-09-08 01:44:27 +00001094
Eli Friedmaneb43f4a2011-09-13 22:21:56 +00001095 // Itanium ABI:
1096 // An implementation supporting thread-safety on multiprocessor
1097 // systems must also guarantee that references to the initialized
1098 // object do not occur before the load of the initialization flag.
1099 //
1100 // In LLVM, we do this by marking the load Acquire.
1101 if (threadsafe)
1102 LI->setAtomic(llvm::Acquire);
1103
1104 IsInitialized = Builder.CreateIsNull(LI, "guard.uninitialized");
John McCall5cd91b52010-09-08 01:44:27 +00001105 }
1106
1107 llvm::BasicBlock *InitCheckBlock = CGF.createBasicBlock("init.check");
1108 llvm::BasicBlock *EndBlock = CGF.createBasicBlock("init.end");
1109
1110 // Check if the first byte of the guard variable is zero.
Eli Friedmaneb43f4a2011-09-13 22:21:56 +00001111 Builder.CreateCondBr(IsInitialized, InitCheckBlock, EndBlock);
John McCall5cd91b52010-09-08 01:44:27 +00001112
1113 CGF.EmitBlock(InitCheckBlock);
1114
1115 // Variables used when coping with thread-safe statics and exceptions.
John McCall0502a222011-06-17 07:33:57 +00001116 if (threadsafe) {
John McCall5cd91b52010-09-08 01:44:27 +00001117 // Call __cxa_guard_acquire.
1118 llvm::Value *V
1119 = Builder.CreateCall(getGuardAcquireFn(CGM, GuardPtrTy), GuardVariable);
1120
1121 llvm::BasicBlock *InitBlock = CGF.createBasicBlock("init");
1122
1123 Builder.CreateCondBr(Builder.CreateIsNotNull(V, "tobool"),
1124 InitBlock, EndBlock);
1125
1126 // Call __cxa_guard_abort along the exceptional edge.
1127 CGF.EHStack.pushCleanup<CallGuardAbort>(EHCleanup, GuardVariable);
1128
1129 CGF.EmitBlock(InitBlock);
1130 }
1131
1132 // Emit the initializer and add a global destructor if appropriate.
Richard Smith7ca48502012-02-13 22:16:19 +00001133 CGF.EmitCXXGlobalVarDeclInit(D, GV, PerformInit);
John McCall5cd91b52010-09-08 01:44:27 +00001134
John McCall0502a222011-06-17 07:33:57 +00001135 if (threadsafe) {
John McCall5cd91b52010-09-08 01:44:27 +00001136 // Pop the guard-abort cleanup if we pushed one.
1137 CGF.PopCleanupBlock();
1138
1139 // Call __cxa_guard_release. This cannot throw.
1140 Builder.CreateCall(getGuardReleaseFn(CGM, GuardPtrTy), GuardVariable);
1141 } else {
1142 Builder.CreateStore(llvm::ConstantInt::get(GuardTy, 1), GuardVariable);
1143 }
1144
1145 CGF.EmitBlock(EndBlock);
1146}