blob: 83c1ece12f5a47526f62e50d58b04dee5600aa4b [file] [log] [blame]
Anders Carlsson59486a22009-11-24 05:51:11 +00001//===--- CGClass.cpp - Emit LLVM Code for C++ classes ---------------------===//
Anders Carlsson9a57c5a2009-09-12 04:27:24 +00002//
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 contains code dealing with C++ code generation of classes
11//
12//===----------------------------------------------------------------------===//
13
Eli Friedman2495ab02012-02-25 02:48:22 +000014#include "CGBlocks.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000015#include "CGCXXABI.h"
Devang Pateld76c1db2010-08-11 21:04:37 +000016#include "CGDebugInfo.h"
Lang Hamesbf122742013-02-17 07:22:09 +000017#include "CGRecordLayout.h"
Anders Carlsson9a57c5a2009-09-12 04:27:24 +000018#include "CodeGenFunction.h"
Anders Carlssonc6d171e2009-10-06 22:43:30 +000019#include "clang/AST/CXXInheritance.h"
Faisal Vali571df122013-09-29 08:45:24 +000020#include "clang/AST/DeclTemplate.h"
John McCall769250e2010-09-17 02:31:44 +000021#include "clang/AST/EvaluatedExprVisitor.h"
Anders Carlsson9a57c5a2009-09-12 04:27:24 +000022#include "clang/AST/RecordLayout.h"
John McCallb81884d2010-02-19 09:25:03 +000023#include "clang/AST/StmtCXX.h"
Lang Hamesbf122742013-02-17 07:22:09 +000024#include "clang/Basic/TargetBuiltins.h"
Mark Laceya8e7df32013-10-30 21:53:58 +000025#include "clang/CodeGen/CGFunctionInfo.h"
Devang Patelb6ed3692011-02-22 20:55:26 +000026#include "clang/Frontend/CodeGenOptions.h"
Anders Carlssonc6d171e2009-10-06 22:43:30 +000027
Anders Carlsson9a57c5a2009-09-12 04:27:24 +000028using namespace clang;
29using namespace CodeGen;
30
Ken Dycka1a4ae32011-03-22 00:53:26 +000031static CharUnits
Anders Carlssond829a022010-04-24 21:06:20 +000032ComputeNonVirtualBaseClassOffset(ASTContext &Context,
33 const CXXRecordDecl *DerivedClass,
John McCallcf142162010-08-07 06:22:56 +000034 CastExpr::path_const_iterator Start,
35 CastExpr::path_const_iterator End) {
Ken Dycka1a4ae32011-03-22 00:53:26 +000036 CharUnits Offset = CharUnits::Zero();
Anders Carlssond829a022010-04-24 21:06:20 +000037
38 const CXXRecordDecl *RD = DerivedClass;
39
John McCallcf142162010-08-07 06:22:56 +000040 for (CastExpr::path_const_iterator I = Start; I != End; ++I) {
Anders Carlssond829a022010-04-24 21:06:20 +000041 const CXXBaseSpecifier *Base = *I;
42 assert(!Base->isVirtual() && "Should not see virtual bases here!");
43
44 // Get the layout.
45 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
46
47 const CXXRecordDecl *BaseDecl =
48 cast<CXXRecordDecl>(Base->getType()->getAs<RecordType>()->getDecl());
49
50 // Add the offset.
Ken Dycka1a4ae32011-03-22 00:53:26 +000051 Offset += Layout.getBaseClassOffset(BaseDecl);
Anders Carlssond829a022010-04-24 21:06:20 +000052
53 RD = BaseDecl;
54 }
55
Ken Dycka1a4ae32011-03-22 00:53:26 +000056 return Offset;
Anders Carlssond829a022010-04-24 21:06:20 +000057}
Anders Carlsson9a57c5a2009-09-12 04:27:24 +000058
Anders Carlsson9150a2a2009-09-29 03:13:20 +000059llvm::Constant *
Anders Carlsson8a64c1c2010-04-24 21:23:59 +000060CodeGenModule::GetNonVirtualBaseClassOffset(const CXXRecordDecl *ClassDecl,
John McCallcf142162010-08-07 06:22:56 +000061 CastExpr::path_const_iterator PathBegin,
62 CastExpr::path_const_iterator PathEnd) {
63 assert(PathBegin != PathEnd && "Base path should not be empty!");
Anders Carlsson8a64c1c2010-04-24 21:23:59 +000064
Ken Dycka1a4ae32011-03-22 00:53:26 +000065 CharUnits Offset =
John McCallcf142162010-08-07 06:22:56 +000066 ComputeNonVirtualBaseClassOffset(getContext(), ClassDecl,
67 PathBegin, PathEnd);
Ken Dycka1a4ae32011-03-22 00:53:26 +000068 if (Offset.isZero())
Anders Carlsson8a64c1c2010-04-24 21:23:59 +000069 return 0;
70
Chris Lattner2192fe52011-07-18 04:24:23 +000071 llvm::Type *PtrDiffTy =
Anders Carlsson8a64c1c2010-04-24 21:23:59 +000072 Types.ConvertType(getContext().getPointerDiffType());
73
Ken Dycka1a4ae32011-03-22 00:53:26 +000074 return llvm::ConstantInt::get(PtrDiffTy, Offset.getQuantity());
Anders Carlsson9150a2a2009-09-29 03:13:20 +000075}
76
Anders Carlssonc4ba0cd2010-04-24 23:01:49 +000077/// Gets the address of a direct base class within a complete object.
John McCall6ce74722010-02-16 04:15:37 +000078/// This should only be used for (1) non-virtual bases or (2) virtual bases
79/// when the type is known to be complete (e.g. in complete destructors).
80///
81/// The object pointed to by 'This' is assumed to be non-null.
82llvm::Value *
Anders Carlssonc4ba0cd2010-04-24 23:01:49 +000083CodeGenFunction::GetAddressOfDirectBaseInCompleteClass(llvm::Value *This,
84 const CXXRecordDecl *Derived,
85 const CXXRecordDecl *Base,
86 bool BaseIsVirtual) {
John McCall6ce74722010-02-16 04:15:37 +000087 // 'this' must be a pointer (in some address space) to Derived.
88 assert(This->getType()->isPointerTy() &&
89 cast<llvm::PointerType>(This->getType())->getElementType()
90 == ConvertType(Derived));
91
92 // Compute the offset of the virtual base.
Ken Dyck6aa767c2011-03-22 01:21:15 +000093 CharUnits Offset;
John McCall6ce74722010-02-16 04:15:37 +000094 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(Derived);
Anders Carlssonc4ba0cd2010-04-24 23:01:49 +000095 if (BaseIsVirtual)
Ken Dyck6aa767c2011-03-22 01:21:15 +000096 Offset = Layout.getVBaseClassOffset(Base);
John McCall6ce74722010-02-16 04:15:37 +000097 else
Ken Dyck6aa767c2011-03-22 01:21:15 +000098 Offset = Layout.getBaseClassOffset(Base);
John McCall6ce74722010-02-16 04:15:37 +000099
100 // Shift and cast down to the base type.
101 // TODO: for complete types, this should be possible with a GEP.
102 llvm::Value *V = This;
Ken Dyck6aa767c2011-03-22 01:21:15 +0000103 if (Offset.isPositive()) {
John McCall6ce74722010-02-16 04:15:37 +0000104 V = Builder.CreateBitCast(V, Int8PtrTy);
Ken Dyck6aa767c2011-03-22 01:21:15 +0000105 V = Builder.CreateConstInBoundsGEP1_64(V, Offset.getQuantity());
John McCall6ce74722010-02-16 04:15:37 +0000106 }
107 V = Builder.CreateBitCast(V, ConvertType(Base)->getPointerTo());
108
109 return V;
Anders Carlssone87fae92010-03-28 19:40:00 +0000110}
John McCall6ce74722010-02-16 04:15:37 +0000111
Anders Carlsson53cebd12010-04-20 16:03:35 +0000112static llvm::Value *
John McCall13a39c62012-08-01 05:04:58 +0000113ApplyNonVirtualAndVirtualOffset(CodeGenFunction &CGF, llvm::Value *ptr,
114 CharUnits nonVirtualOffset,
115 llvm::Value *virtualOffset) {
116 // Assert that we have something to do.
117 assert(!nonVirtualOffset.isZero() || virtualOffset != 0);
118
119 // Compute the offset from the static and dynamic components.
120 llvm::Value *baseOffset;
121 if (!nonVirtualOffset.isZero()) {
122 baseOffset = llvm::ConstantInt::get(CGF.PtrDiffTy,
123 nonVirtualOffset.getQuantity());
124 if (virtualOffset) {
125 baseOffset = CGF.Builder.CreateAdd(virtualOffset, baseOffset);
126 }
127 } else {
128 baseOffset = virtualOffset;
129 }
Anders Carlsson53cebd12010-04-20 16:03:35 +0000130
131 // Apply the base offset.
John McCall13a39c62012-08-01 05:04:58 +0000132 ptr = CGF.Builder.CreateBitCast(ptr, CGF.Int8PtrTy);
133 ptr = CGF.Builder.CreateInBoundsGEP(ptr, baseOffset, "add.ptr");
134 return ptr;
Anders Carlsson53cebd12010-04-20 16:03:35 +0000135}
136
Anders Carlsson9a57c5a2009-09-12 04:27:24 +0000137llvm::Value *
Anders Carlssond829a022010-04-24 21:06:20 +0000138CodeGenFunction::GetAddressOfBaseClass(llvm::Value *Value,
Anders Carlssonc4ba0cd2010-04-24 23:01:49 +0000139 const CXXRecordDecl *Derived,
John McCallcf142162010-08-07 06:22:56 +0000140 CastExpr::path_const_iterator PathBegin,
141 CastExpr::path_const_iterator PathEnd,
Anders Carlssond829a022010-04-24 21:06:20 +0000142 bool NullCheckValue) {
John McCallcf142162010-08-07 06:22:56 +0000143 assert(PathBegin != PathEnd && "Base path should not be empty!");
Anders Carlssond829a022010-04-24 21:06:20 +0000144
John McCallcf142162010-08-07 06:22:56 +0000145 CastExpr::path_const_iterator Start = PathBegin;
Anders Carlssond829a022010-04-24 21:06:20 +0000146 const CXXRecordDecl *VBase = 0;
147
John McCall13a39c62012-08-01 05:04:58 +0000148 // Sema has done some convenient canonicalization here: if the
149 // access path involved any virtual steps, the conversion path will
150 // *start* with a step down to the correct virtual base subobject,
151 // and hence will not require any further steps.
Anders Carlssond829a022010-04-24 21:06:20 +0000152 if ((*Start)->isVirtual()) {
153 VBase =
154 cast<CXXRecordDecl>((*Start)->getType()->getAs<RecordType>()->getDecl());
155 ++Start;
156 }
John McCall13a39c62012-08-01 05:04:58 +0000157
158 // Compute the static offset of the ultimate destination within its
159 // allocating subobject (the virtual base, if there is one, or else
160 // the "complete" object that we see).
Ken Dycka1a4ae32011-03-22 00:53:26 +0000161 CharUnits NonVirtualOffset =
Anders Carlssonc4ba0cd2010-04-24 23:01:49 +0000162 ComputeNonVirtualBaseClassOffset(getContext(), VBase ? VBase : Derived,
John McCallcf142162010-08-07 06:22:56 +0000163 Start, PathEnd);
Anders Carlssond829a022010-04-24 21:06:20 +0000164
John McCall13a39c62012-08-01 05:04:58 +0000165 // If there's a virtual step, we can sometimes "devirtualize" it.
166 // For now, that's limited to when the derived type is final.
167 // TODO: "devirtualize" this for accesses to known-complete objects.
168 if (VBase && Derived->hasAttr<FinalAttr>()) {
169 const ASTRecordLayout &layout = getContext().getASTRecordLayout(Derived);
170 CharUnits vBaseOffset = layout.getVBaseClassOffset(VBase);
171 NonVirtualOffset += vBaseOffset;
172 VBase = 0; // we no longer have a virtual step
173 }
174
Anders Carlssond829a022010-04-24 21:06:20 +0000175 // Get the base pointer type.
Chris Lattner2192fe52011-07-18 04:24:23 +0000176 llvm::Type *BasePtrTy =
John McCallcf142162010-08-07 06:22:56 +0000177 ConvertType((PathEnd[-1])->getType())->getPointerTo();
John McCall13a39c62012-08-01 05:04:58 +0000178
179 // If the static offset is zero and we don't have a virtual step,
180 // just do a bitcast; null checks are unnecessary.
Ken Dycka1a4ae32011-03-22 00:53:26 +0000181 if (NonVirtualOffset.isZero() && !VBase) {
Anders Carlssond829a022010-04-24 21:06:20 +0000182 return Builder.CreateBitCast(Value, BasePtrTy);
183 }
John McCall13a39c62012-08-01 05:04:58 +0000184
185 llvm::BasicBlock *origBB = 0;
186 llvm::BasicBlock *endBB = 0;
Anders Carlssond829a022010-04-24 21:06:20 +0000187
John McCall13a39c62012-08-01 05:04:58 +0000188 // Skip over the offset (and the vtable load) if we're supposed to
189 // null-check the pointer.
Anders Carlssond829a022010-04-24 21:06:20 +0000190 if (NullCheckValue) {
John McCall13a39c62012-08-01 05:04:58 +0000191 origBB = Builder.GetInsertBlock();
192 llvm::BasicBlock *notNullBB = createBasicBlock("cast.notnull");
193 endBB = createBasicBlock("cast.end");
Anders Carlssond829a022010-04-24 21:06:20 +0000194
John McCall13a39c62012-08-01 05:04:58 +0000195 llvm::Value *isNull = Builder.CreateIsNull(Value);
196 Builder.CreateCondBr(isNull, endBB, notNullBB);
197 EmitBlock(notNullBB);
Anders Carlssond829a022010-04-24 21:06:20 +0000198 }
199
John McCall13a39c62012-08-01 05:04:58 +0000200 // Compute the virtual offset.
Anders Carlssond829a022010-04-24 21:06:20 +0000201 llvm::Value *VirtualOffset = 0;
Anders Carlssona376b532011-01-29 03:18:56 +0000202 if (VBase) {
Reid Klecknerd8cbeec2013-05-29 18:02:47 +0000203 VirtualOffset =
204 CGM.getCXXABI().GetVirtualBaseClassOffset(*this, Value, Derived, VBase);
Anders Carlssona376b532011-01-29 03:18:56 +0000205 }
Anders Carlssond829a022010-04-24 21:06:20 +0000206
John McCall13a39c62012-08-01 05:04:58 +0000207 // Apply both offsets.
Ken Dycka1a4ae32011-03-22 00:53:26 +0000208 Value = ApplyNonVirtualAndVirtualOffset(*this, Value,
Ken Dyckcfc332c2011-03-23 00:45:26 +0000209 NonVirtualOffset,
Anders Carlssond829a022010-04-24 21:06:20 +0000210 VirtualOffset);
211
John McCall13a39c62012-08-01 05:04:58 +0000212 // Cast to the destination type.
Anders Carlssond829a022010-04-24 21:06:20 +0000213 Value = Builder.CreateBitCast(Value, BasePtrTy);
John McCall13a39c62012-08-01 05:04:58 +0000214
215 // Build a phi if we needed a null check.
Anders Carlssond829a022010-04-24 21:06:20 +0000216 if (NullCheckValue) {
John McCall13a39c62012-08-01 05:04:58 +0000217 llvm::BasicBlock *notNullBB = Builder.GetInsertBlock();
218 Builder.CreateBr(endBB);
219 EmitBlock(endBB);
Anders Carlssond829a022010-04-24 21:06:20 +0000220
John McCall13a39c62012-08-01 05:04:58 +0000221 llvm::PHINode *PHI = Builder.CreatePHI(BasePtrTy, 2, "cast.result");
222 PHI->addIncoming(Value, notNullBB);
223 PHI->addIncoming(llvm::Constant::getNullValue(BasePtrTy), origBB);
Anders Carlssond829a022010-04-24 21:06:20 +0000224 Value = PHI;
225 }
226
227 return Value;
228}
229
230llvm::Value *
Anders Carlsson8c793172009-11-23 17:57:54 +0000231CodeGenFunction::GetAddressOfDerivedClass(llvm::Value *Value,
Anders Carlssonc4ba0cd2010-04-24 23:01:49 +0000232 const CXXRecordDecl *Derived,
John McCallcf142162010-08-07 06:22:56 +0000233 CastExpr::path_const_iterator PathBegin,
234 CastExpr::path_const_iterator PathEnd,
Anders Carlsson8c793172009-11-23 17:57:54 +0000235 bool NullCheckValue) {
John McCallcf142162010-08-07 06:22:56 +0000236 assert(PathBegin != PathEnd && "Base path should not be empty!");
Anders Carlsson8a64c1c2010-04-24 21:23:59 +0000237
Anders Carlsson8c793172009-11-23 17:57:54 +0000238 QualType DerivedTy =
Anders Carlssonc4ba0cd2010-04-24 23:01:49 +0000239 getContext().getCanonicalType(getContext().getTagDeclType(Derived));
Chris Lattner2192fe52011-07-18 04:24:23 +0000240 llvm::Type *DerivedPtrTy = ConvertType(DerivedTy)->getPointerTo();
Richard Smith2c5868c2013-02-13 21:18:23 +0000241
Anders Carlsson600f7372010-01-31 01:43:37 +0000242 llvm::Value *NonVirtualOffset =
John McCallcf142162010-08-07 06:22:56 +0000243 CGM.GetNonVirtualBaseClassOffset(Derived, PathBegin, PathEnd);
Anders Carlsson600f7372010-01-31 01:43:37 +0000244
245 if (!NonVirtualOffset) {
246 // No offset, we can just cast back.
247 return Builder.CreateBitCast(Value, DerivedPtrTy);
248 }
249
Anders Carlsson8c793172009-11-23 17:57:54 +0000250 llvm::BasicBlock *CastNull = 0;
251 llvm::BasicBlock *CastNotNull = 0;
252 llvm::BasicBlock *CastEnd = 0;
253
254 if (NullCheckValue) {
255 CastNull = createBasicBlock("cast.null");
256 CastNotNull = createBasicBlock("cast.notnull");
257 CastEnd = createBasicBlock("cast.end");
258
Anders Carlsson98981b12011-04-11 00:30:07 +0000259 llvm::Value *IsNull = Builder.CreateIsNull(Value);
Anders Carlsson8c793172009-11-23 17:57:54 +0000260 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
261 EmitBlock(CastNotNull);
262 }
263
Anders Carlsson600f7372010-01-31 01:43:37 +0000264 // Apply the offset.
Eli Friedman87549262012-02-28 22:07:56 +0000265 Value = Builder.CreateBitCast(Value, Int8PtrTy);
266 Value = Builder.CreateGEP(Value, Builder.CreateNeg(NonVirtualOffset),
267 "sub.ptr");
Anders Carlsson600f7372010-01-31 01:43:37 +0000268
269 // Just cast.
270 Value = Builder.CreateBitCast(Value, DerivedPtrTy);
Anders Carlsson8c793172009-11-23 17:57:54 +0000271
272 if (NullCheckValue) {
273 Builder.CreateBr(CastEnd);
274 EmitBlock(CastNull);
275 Builder.CreateBr(CastEnd);
276 EmitBlock(CastEnd);
277
Jay Foad20c0f022011-03-30 11:28:58 +0000278 llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
Anders Carlsson8c793172009-11-23 17:57:54 +0000279 PHI->addIncoming(Value, CastNotNull);
280 PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()),
281 CastNull);
282 Value = PHI;
283 }
284
285 return Value;
Anders Carlsson9a57c5a2009-09-12 04:27:24 +0000286}
Timur Iskhodzhanov57cbe5c2013-02-27 13:46:31 +0000287
288llvm::Value *CodeGenFunction::GetVTTParameter(GlobalDecl GD,
289 bool ForVirtualBase,
290 bool Delegating) {
Peter Collingbourne66f82e62013-06-28 20:45:28 +0000291 if (!CGM.getCXXABI().NeedsVTTParameter(GD)) {
Anders Carlssone36a6b32010-01-02 01:01:18 +0000292 // This constructor/destructor does not need a VTT parameter.
293 return 0;
294 }
295
John McCalldec348f72013-05-03 07:33:41 +0000296 const CXXRecordDecl *RD = cast<CXXMethodDecl>(CurCodeDecl)->getParent();
Anders Carlssone36a6b32010-01-02 01:01:18 +0000297 const CXXRecordDecl *Base = cast<CXXMethodDecl>(GD.getDecl())->getParent();
John McCall5c60a6f2010-02-18 19:59:28 +0000298
Anders Carlssone36a6b32010-01-02 01:01:18 +0000299 llvm::Value *VTT;
300
John McCall5c60a6f2010-02-18 19:59:28 +0000301 uint64_t SubVTTIndex;
302
Douglas Gregor61535002013-01-31 05:50:40 +0000303 if (Delegating) {
304 // If this is a delegating constructor call, just load the VTT.
Timur Iskhodzhanov57cbe5c2013-02-27 13:46:31 +0000305 return LoadCXXVTT();
Douglas Gregor61535002013-01-31 05:50:40 +0000306 } else if (RD == Base) {
307 // If the record matches the base, this is the complete ctor/dtor
308 // variant calling the base variant in a class with virtual bases.
Peter Collingbourne66f82e62013-06-28 20:45:28 +0000309 assert(!CGM.getCXXABI().NeedsVTTParameter(CurGD) &&
John McCall5c60a6f2010-02-18 19:59:28 +0000310 "doing no-op VTT offset in base dtor/ctor?");
Anders Carlsson4d205ba2010-05-02 23:33:10 +0000311 assert(!ForVirtualBase && "Can't have same class as virtual base!");
John McCall5c60a6f2010-02-18 19:59:28 +0000312 SubVTTIndex = 0;
313 } else {
Timur Iskhodzhanov57cbe5c2013-02-27 13:46:31 +0000314 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD);
Ken Dyck16ffcac2011-03-24 01:21:01 +0000315 CharUnits BaseOffset = ForVirtualBase ?
316 Layout.getVBaseClassOffset(Base) :
317 Layout.getBaseClassOffset(Base);
Anders Carlsson859b3062010-05-02 23:53:25 +0000318
319 SubVTTIndex =
Timur Iskhodzhanov57cbe5c2013-02-27 13:46:31 +0000320 CGM.getVTables().getSubVTTIndex(RD, BaseSubobject(Base, BaseOffset));
John McCall5c60a6f2010-02-18 19:59:28 +0000321 assert(SubVTTIndex != 0 && "Sub-VTT index must be greater than zero!");
322 }
Anders Carlssone36a6b32010-01-02 01:01:18 +0000323
Peter Collingbourne66f82e62013-06-28 20:45:28 +0000324 if (CGM.getCXXABI().NeedsVTTParameter(CurGD)) {
Anders Carlssone36a6b32010-01-02 01:01:18 +0000325 // A VTT parameter was passed to the constructor, use it.
Timur Iskhodzhanov57cbe5c2013-02-27 13:46:31 +0000326 VTT = LoadCXXVTT();
327 VTT = Builder.CreateConstInBoundsGEP1_64(VTT, SubVTTIndex);
Anders Carlssone36a6b32010-01-02 01:01:18 +0000328 } else {
329 // We're the complete constructor, so get the VTT by name.
Timur Iskhodzhanov57cbe5c2013-02-27 13:46:31 +0000330 VTT = CGM.getVTables().GetAddrOfVTT(RD);
331 VTT = Builder.CreateConstInBoundsGEP2_64(VTT, 0, SubVTTIndex);
Anders Carlssone36a6b32010-01-02 01:01:18 +0000332 }
333
334 return VTT;
335}
336
John McCall1d987562010-07-21 01:23:41 +0000337namespace {
John McCallf99a6312010-07-21 05:30:47 +0000338 /// Call the destructor for a direct base class.
John McCallcda666c2010-07-21 07:22:38 +0000339 struct CallBaseDtor : EHScopeStack::Cleanup {
John McCallf99a6312010-07-21 05:30:47 +0000340 const CXXRecordDecl *BaseClass;
341 bool BaseIsVirtual;
342 CallBaseDtor(const CXXRecordDecl *Base, bool BaseIsVirtual)
343 : BaseClass(Base), BaseIsVirtual(BaseIsVirtual) {}
John McCall1d987562010-07-21 01:23:41 +0000344
John McCall30317fd2011-07-12 20:27:29 +0000345 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCallf99a6312010-07-21 05:30:47 +0000346 const CXXRecordDecl *DerivedClass =
347 cast<CXXMethodDecl>(CGF.CurCodeDecl)->getParent();
348
349 const CXXDestructorDecl *D = BaseClass->getDestructor();
350 llvm::Value *Addr =
351 CGF.GetAddressOfDirectBaseInCompleteClass(CGF.LoadCXXThis(),
352 DerivedClass, BaseClass,
353 BaseIsVirtual);
Douglas Gregor61535002013-01-31 05:50:40 +0000354 CGF.EmitCXXDestructorCall(D, Dtor_Base, BaseIsVirtual,
355 /*Delegating=*/false, Addr);
John McCall1d987562010-07-21 01:23:41 +0000356 }
357 };
John McCall769250e2010-09-17 02:31:44 +0000358
359 /// A visitor which checks whether an initializer uses 'this' in a
360 /// way which requires the vtable to be properly set.
361 struct DynamicThisUseChecker : EvaluatedExprVisitor<DynamicThisUseChecker> {
362 typedef EvaluatedExprVisitor<DynamicThisUseChecker> super;
363
364 bool UsesThis;
365
366 DynamicThisUseChecker(ASTContext &C) : super(C), UsesThis(false) {}
367
368 // Black-list all explicit and implicit references to 'this'.
369 //
370 // Do we need to worry about external references to 'this' derived
371 // from arbitrary code? If so, then anything which runs arbitrary
372 // external code might potentially access the vtable.
373 void VisitCXXThisExpr(CXXThisExpr *E) { UsesThis = true; }
374 };
375}
376
377static bool BaseInitializerUsesThis(ASTContext &C, const Expr *Init) {
378 DynamicThisUseChecker Checker(C);
379 Checker.Visit(const_cast<Expr*>(Init));
380 return Checker.UsesThis;
John McCall1d987562010-07-21 01:23:41 +0000381}
382
Anders Carlssonfb404882009-12-24 22:46:43 +0000383static void EmitBaseInitializer(CodeGenFunction &CGF,
384 const CXXRecordDecl *ClassDecl,
Alexis Hunt1d792652011-01-08 20:30:50 +0000385 CXXCtorInitializer *BaseInit,
Anders Carlssonfb404882009-12-24 22:46:43 +0000386 CXXCtorType CtorType) {
387 assert(BaseInit->isBaseInitializer() &&
388 "Must have base initializer!");
389
390 llvm::Value *ThisPtr = CGF.LoadCXXThis();
391
392 const Type *BaseType = BaseInit->getBaseClass();
393 CXXRecordDecl *BaseClassDecl =
394 cast<CXXRecordDecl>(BaseType->getAs<RecordType>()->getDecl());
395
Anders Carlsson1c0f8bb2010-04-12 00:51:03 +0000396 bool isBaseVirtual = BaseInit->isBaseVirtual();
Anders Carlssonfb404882009-12-24 22:46:43 +0000397
398 // The base constructor doesn't construct virtual bases.
399 if (CtorType == Ctor_Base && isBaseVirtual)
400 return;
401
John McCall769250e2010-09-17 02:31:44 +0000402 // If the initializer for the base (other than the constructor
403 // itself) accesses 'this' in any way, we need to initialize the
404 // vtables.
405 if (BaseInitializerUsesThis(CGF.getContext(), BaseInit->getInit()))
406 CGF.InitializeVTablePointers(ClassDecl);
407
John McCall6ce74722010-02-16 04:15:37 +0000408 // We can pretend to be a complete class because it only matters for
409 // virtual bases, and we only do virtual bases for complete ctors.
Anders Carlssonc4ba0cd2010-04-24 23:01:49 +0000410 llvm::Value *V =
411 CGF.GetAddressOfDirectBaseInCompleteClass(ThisPtr, ClassDecl,
John McCallf99a6312010-07-21 05:30:47 +0000412 BaseClassDecl,
413 isBaseVirtual);
Eli Friedman38cd36d2011-12-03 02:13:40 +0000414 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(BaseType);
John McCall8d6fc952011-08-25 20:40:09 +0000415 AggValueSlot AggSlot =
Eli Friedmanc1d85b92011-12-03 00:54:26 +0000416 AggValueSlot::forAddr(V, Alignment, Qualifiers(),
John McCall8d6fc952011-08-25 20:40:09 +0000417 AggValueSlot::IsDestructed,
John McCalla5efa732011-08-25 23:04:34 +0000418 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier615ed1a2012-03-29 17:37:10 +0000419 AggValueSlot::IsNotAliased);
John McCall7a626f62010-09-15 10:14:12 +0000420
421 CGF.EmitAggExpr(BaseInit->getInit(), AggSlot);
Anders Carlsson5ade5d32010-02-06 20:00:21 +0000422
David Blaikiebbafb8a2012-03-11 07:00:24 +0000423 if (CGF.CGM.getLangOpts().Exceptions &&
Anders Carlsson08ce5ed2011-02-20 00:20:27 +0000424 !BaseClassDecl->hasTrivialDestructor())
John McCallcda666c2010-07-21 07:22:38 +0000425 CGF.EHStack.pushCleanup<CallBaseDtor>(EHCleanup, BaseClassDecl,
426 isBaseVirtual);
Anders Carlssonfb404882009-12-24 22:46:43 +0000427}
428
Douglas Gregor94f9a482010-05-05 05:51:00 +0000429static void EmitAggMemberInitializer(CodeGenFunction &CGF,
430 LValue LHS,
Eli Friedman6ae63022012-02-14 02:15:49 +0000431 Expr *Init,
Douglas Gregor94f9a482010-05-05 05:51:00 +0000432 llvm::Value *ArrayIndexVar,
Douglas Gregor94f9a482010-05-05 05:51:00 +0000433 QualType T,
Eli Friedman6ae63022012-02-14 02:15:49 +0000434 ArrayRef<VarDecl *> ArrayIndexes,
Douglas Gregor94f9a482010-05-05 05:51:00 +0000435 unsigned Index) {
Eli Friedman6ae63022012-02-14 02:15:49 +0000436 if (Index == ArrayIndexes.size()) {
Eli Friedmanc1d85b92011-12-03 00:54:26 +0000437 LValue LV = LHS;
Eli Friedmanc1d85b92011-12-03 00:54:26 +0000438
Richard Smithcc1b96d2013-06-12 22:31:48 +0000439 if (ArrayIndexVar) {
440 // If we have an array index variable, load it and use it as an offset.
441 // Then, increment the value.
442 llvm::Value *Dest = LHS.getAddress();
443 llvm::Value *ArrayIndex = CGF.Builder.CreateLoad(ArrayIndexVar);
444 Dest = CGF.Builder.CreateInBoundsGEP(Dest, ArrayIndex, "destaddress");
445 llvm::Value *Next = llvm::ConstantInt::get(ArrayIndex->getType(), 1);
446 Next = CGF.Builder.CreateAdd(ArrayIndex, Next, "inc");
447 CGF.Builder.CreateStore(Next, ArrayIndexVar);
Sebastian Redl4e04dd12012-02-19 15:41:54 +0000448
Richard Smithcc1b96d2013-06-12 22:31:48 +0000449 // Update the LValue.
450 LV.setAddress(Dest);
451 CharUnits Align = CGF.getContext().getTypeAlignInChars(T);
452 LV.setAlignment(std::min(Align, LV.getAlignment()));
Douglas Gregor94f9a482010-05-05 05:51:00 +0000453 }
John McCall7a626f62010-09-15 10:14:12 +0000454
Richard Smithcc1b96d2013-06-12 22:31:48 +0000455 switch (CGF.getEvaluationKind(T)) {
456 case TEK_Scalar:
457 CGF.EmitScalarInit(Init, /*decl*/ 0, LV, false);
458 break;
459 case TEK_Complex:
460 CGF.EmitComplexExprIntoLValue(Init, LV, /*isInit*/ true);
461 break;
462 case TEK_Aggregate: {
463 AggValueSlot Slot =
464 AggValueSlot::forLValue(LV,
465 AggValueSlot::IsDestructed,
466 AggValueSlot::DoesNotNeedGCBarriers,
467 AggValueSlot::IsNotAliased);
468
469 CGF.EmitAggExpr(Init, Slot);
470 break;
471 }
472 }
Sebastian Redl4e04dd12012-02-19 15:41:54 +0000473
Douglas Gregor94f9a482010-05-05 05:51:00 +0000474 return;
475 }
Richard Smithcc1b96d2013-06-12 22:31:48 +0000476
Douglas Gregor94f9a482010-05-05 05:51:00 +0000477 const ConstantArrayType *Array = CGF.getContext().getAsConstantArrayType(T);
478 assert(Array && "Array initialization without the array type?");
479 llvm::Value *IndexVar
Eli Friedman6ae63022012-02-14 02:15:49 +0000480 = CGF.GetAddrOfLocalVar(ArrayIndexes[Index]);
Douglas Gregor94f9a482010-05-05 05:51:00 +0000481 assert(IndexVar && "Array index variable not loaded");
482
483 // Initialize this index variable to zero.
484 llvm::Value* Zero
485 = llvm::Constant::getNullValue(
486 CGF.ConvertType(CGF.getContext().getSizeType()));
487 CGF.Builder.CreateStore(Zero, IndexVar);
488
489 // Start the loop with a block that tests the condition.
490 llvm::BasicBlock *CondBlock = CGF.createBasicBlock("for.cond");
491 llvm::BasicBlock *AfterFor = CGF.createBasicBlock("for.end");
492
493 CGF.EmitBlock(CondBlock);
494
495 llvm::BasicBlock *ForBody = CGF.createBasicBlock("for.body");
496 // Generate: if (loop-index < number-of-elements) fall to the loop body,
497 // otherwise, go to the block after the for-loop.
498 uint64_t NumElements = Array->getSize().getZExtValue();
Douglas Gregor94f9a482010-05-05 05:51:00 +0000499 llvm::Value *Counter = CGF.Builder.CreateLoad(IndexVar);
Chris Lattner44456d22010-05-06 06:35:23 +0000500 llvm::Value *NumElementsPtr =
501 llvm::ConstantInt::get(Counter->getType(), NumElements);
Douglas Gregor94f9a482010-05-05 05:51:00 +0000502 llvm::Value *IsLess = CGF.Builder.CreateICmpULT(Counter, NumElementsPtr,
503 "isless");
504
505 // If the condition is true, execute the body.
506 CGF.Builder.CreateCondBr(IsLess, ForBody, AfterFor);
507
508 CGF.EmitBlock(ForBody);
509 llvm::BasicBlock *ContinueBlock = CGF.createBasicBlock("for.inc");
Richard Smithcc1b96d2013-06-12 22:31:48 +0000510
511 // Inside the loop body recurse to emit the inner loop or, eventually, the
512 // constructor call.
513 EmitAggMemberInitializer(CGF, LHS, Init, ArrayIndexVar,
514 Array->getElementType(), ArrayIndexes, Index + 1);
515
Douglas Gregor94f9a482010-05-05 05:51:00 +0000516 CGF.EmitBlock(ContinueBlock);
517
518 // Emit the increment of the loop counter.
519 llvm::Value *NextVal = llvm::ConstantInt::get(Counter->getType(), 1);
520 Counter = CGF.Builder.CreateLoad(IndexVar);
521 NextVal = CGF.Builder.CreateAdd(Counter, NextVal, "inc");
522 CGF.Builder.CreateStore(NextVal, IndexVar);
523
524 // Finally, branch back up to the condition for the next iteration.
525 CGF.EmitBranch(CondBlock);
526
527 // Emit the fall-through block.
528 CGF.EmitBlock(AfterFor, true);
529}
John McCall1d987562010-07-21 01:23:41 +0000530
Anders Carlssonfb404882009-12-24 22:46:43 +0000531static void EmitMemberInitializer(CodeGenFunction &CGF,
532 const CXXRecordDecl *ClassDecl,
Alexis Hunt1d792652011-01-08 20:30:50 +0000533 CXXCtorInitializer *MemberInit,
Douglas Gregor94f9a482010-05-05 05:51:00 +0000534 const CXXConstructorDecl *Constructor,
535 FunctionArgList &Args) {
Francois Pichetd583da02010-12-04 09:14:42 +0000536 assert(MemberInit->isAnyMemberInitializer() &&
Anders Carlssonfb404882009-12-24 22:46:43 +0000537 "Must have member initializer!");
Richard Smith938f40b2011-06-11 17:19:42 +0000538 assert(MemberInit->getInit() && "Must have initializer!");
Anders Carlssonfb404882009-12-24 22:46:43 +0000539
540 // non-static data member initializers.
Francois Pichetd583da02010-12-04 09:14:42 +0000541 FieldDecl *Field = MemberInit->getAnyMember();
Eli Friedman6ae63022012-02-14 02:15:49 +0000542 QualType FieldType = Field->getType();
Anders Carlssonfb404882009-12-24 22:46:43 +0000543
544 llvm::Value *ThisPtr = CGF.LoadCXXThis();
Eli Friedman7f1ff602012-04-16 03:54:45 +0000545 QualType RecordTy = CGF.getContext().getTypeDeclType(ClassDecl);
Eli Friedmanf6d21842012-08-08 03:51:37 +0000546 LValue LHS = CGF.MakeNaturalAlignAddrLValue(ThisPtr, RecordTy);
Eli Friedman7f1ff602012-04-16 03:54:45 +0000547
Francois Pichetd583da02010-12-04 09:14:42 +0000548 if (MemberInit->isIndirectMemberInitializer()) {
Eli Friedmanf6d21842012-08-08 03:51:37 +0000549 // If we are initializing an anonymous union field, drill down to
550 // the field.
551 IndirectFieldDecl *IndirectField = MemberInit->getIndirectMember();
Aaron Ballman13916082014-03-07 18:11:58 +0000552 for (const auto *I : IndirectField->chains())
553 LHS = CGF.EmitLValueForFieldInitialization(LHS, cast<FieldDecl>(I));
Francois Pichetd583da02010-12-04 09:14:42 +0000554 FieldType = MemberInit->getIndirectMember()->getAnonField()->getType();
John McCallc4094932010-05-21 01:18:57 +0000555 } else {
Eli Friedmanf6d21842012-08-08 03:51:37 +0000556 LHS = CGF.EmitLValueForFieldInitialization(LHS, Field);
Anders Carlssonfb404882009-12-24 22:46:43 +0000557 }
558
Eli Friedman6ae63022012-02-14 02:15:49 +0000559 // Special case: if we are in a copy or move constructor, and we are copying
560 // an array of PODs or classes with trivial copy constructors, ignore the
561 // AST and perform the copy we know is equivalent.
562 // FIXME: This is hacky at best... if we had a bit more explicit information
563 // in the AST, we could generalize it more easily.
564 const ConstantArrayType *Array
565 = CGF.getContext().getAsConstantArrayType(FieldType);
Jordan Rose54533f72013-08-07 16:16:48 +0000566 if (Array && Constructor->isDefaulted() &&
Eli Friedman6ae63022012-02-14 02:15:49 +0000567 Constructor->isCopyOrMoveConstructor()) {
568 QualType BaseElementTy = CGF.getContext().getBaseElementType(Array);
Richard Smith993f25a2012-11-07 23:56:21 +0000569 CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(MemberInit->getInit());
Eli Friedman6ae63022012-02-14 02:15:49 +0000570 if (BaseElementTy.isPODType(CGF.getContext()) ||
Richard Smith993f25a2012-11-07 23:56:21 +0000571 (CE && CE->getConstructor()->isTrivial())) {
572 // Find the source pointer. We know it's the last argument because
573 // we know we're in an implicit copy constructor.
Eli Friedman6ae63022012-02-14 02:15:49 +0000574 unsigned SrcArgIndex = Args.size() - 1;
575 llvm::Value *SrcPtr
576 = CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(Args[SrcArgIndex]));
Eli Friedman7f1ff602012-04-16 03:54:45 +0000577 LValue ThisRHSLV = CGF.MakeNaturalAlignAddrLValue(SrcPtr, RecordTy);
578 LValue Src = CGF.EmitLValueForFieldInitialization(ThisRHSLV, Field);
Eli Friedman6ae63022012-02-14 02:15:49 +0000579
580 // Copy the aggregate.
581 CGF.EmitAggregateCopy(LHS.getAddress(), Src.getAddress(), FieldType,
Chad Rosier615ed1a2012-03-29 17:37:10 +0000582 LHS.isVolatileQualified());
Eli Friedman6ae63022012-02-14 02:15:49 +0000583 return;
584 }
585 }
586
587 ArrayRef<VarDecl *> ArrayIndexes;
588 if (MemberInit->getNumArrayIndices())
589 ArrayIndexes = MemberInit->getArrayIndexes();
Eli Friedman5f1a04f2012-02-14 02:31:03 +0000590 CGF.EmitInitializerForField(Field, LHS, MemberInit->getInit(), ArrayIndexes);
Eli Friedman6ae63022012-02-14 02:15:49 +0000591}
592
Eli Friedman5f1a04f2012-02-14 02:31:03 +0000593void CodeGenFunction::EmitInitializerForField(FieldDecl *Field,
594 LValue LHS, Expr *Init,
595 ArrayRef<VarDecl *> ArrayIndexes) {
Eli Friedman6ae63022012-02-14 02:15:49 +0000596 QualType FieldType = Field->getType();
John McCall47fb9502013-03-07 21:37:08 +0000597 switch (getEvaluationKind(FieldType)) {
598 case TEK_Scalar:
John McCall31168b02011-06-15 23:02:42 +0000599 if (LHS.isSimple()) {
Eli Friedman5f1a04f2012-02-14 02:31:03 +0000600 EmitExprAsInit(Init, Field, LHS, false);
John McCall31168b02011-06-15 23:02:42 +0000601 } else {
Eli Friedman5f1a04f2012-02-14 02:31:03 +0000602 RValue RHS = RValue::get(EmitScalarExpr(Init));
603 EmitStoreThroughLValue(RHS, LHS);
John McCall31168b02011-06-15 23:02:42 +0000604 }
John McCall47fb9502013-03-07 21:37:08 +0000605 break;
606 case TEK_Complex:
607 EmitComplexExprIntoLValue(Init, LHS, /*isInit*/ true);
608 break;
609 case TEK_Aggregate: {
Douglas Gregor94f9a482010-05-05 05:51:00 +0000610 llvm::Value *ArrayIndexVar = 0;
Eli Friedman6ae63022012-02-14 02:15:49 +0000611 if (ArrayIndexes.size()) {
Eli Friedman5f1a04f2012-02-14 02:31:03 +0000612 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
Douglas Gregor94f9a482010-05-05 05:51:00 +0000613
614 // The LHS is a pointer to the first object we'll be constructing, as
615 // a flat array.
Eli Friedman5f1a04f2012-02-14 02:31:03 +0000616 QualType BaseElementTy = getContext().getBaseElementType(FieldType);
617 llvm::Type *BasePtr = ConvertType(BaseElementTy);
Douglas Gregor94f9a482010-05-05 05:51:00 +0000618 BasePtr = llvm::PointerType::getUnqual(BasePtr);
Eli Friedman5f1a04f2012-02-14 02:31:03 +0000619 llvm::Value *BaseAddrPtr = Builder.CreateBitCast(LHS.getAddress(),
620 BasePtr);
621 LHS = MakeAddrLValue(BaseAddrPtr, BaseElementTy);
Douglas Gregor94f9a482010-05-05 05:51:00 +0000622
623 // Create an array index that will be used to walk over all of the
624 // objects we're constructing.
Eli Friedman5f1a04f2012-02-14 02:31:03 +0000625 ArrayIndexVar = CreateTempAlloca(SizeTy, "object.index");
Douglas Gregor94f9a482010-05-05 05:51:00 +0000626 llvm::Value *Zero = llvm::Constant::getNullValue(SizeTy);
Eli Friedman5f1a04f2012-02-14 02:31:03 +0000627 Builder.CreateStore(Zero, ArrayIndexVar);
Douglas Gregor94f9a482010-05-05 05:51:00 +0000628
Douglas Gregor94f9a482010-05-05 05:51:00 +0000629
630 // Emit the block variables for the array indices, if any.
Eli Friedman6ae63022012-02-14 02:15:49 +0000631 for (unsigned I = 0, N = ArrayIndexes.size(); I != N; ++I)
Eli Friedman5f1a04f2012-02-14 02:31:03 +0000632 EmitAutoVarDecl(*ArrayIndexes[I]);
Douglas Gregor94f9a482010-05-05 05:51:00 +0000633 }
634
Eli Friedman5f1a04f2012-02-14 02:31:03 +0000635 EmitAggMemberInitializer(*this, LHS, Init, ArrayIndexVar, FieldType,
Eli Friedman6ae63022012-02-14 02:15:49 +0000636 ArrayIndexes, 0);
Anders Carlssonfb404882009-12-24 22:46:43 +0000637 }
John McCall47fb9502013-03-07 21:37:08 +0000638 }
John McCall12cc42a2013-02-01 05:11:40 +0000639
640 // Ensure that we destroy this object if an exception is thrown
641 // later in the constructor.
642 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
643 if (needsEHCleanup(dtorKind))
644 pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
Anders Carlssonfb404882009-12-24 22:46:43 +0000645}
646
John McCallf8ff7b92010-02-23 00:48:20 +0000647/// Checks whether the given constructor is a valid subject for the
648/// complete-to-base constructor delegation optimization, i.e.
649/// emitting the complete constructor as a simple call to the base
650/// constructor.
651static bool IsConstructorDelegationValid(const CXXConstructorDecl *Ctor) {
652
653 // Currently we disable the optimization for classes with virtual
654 // bases because (1) the addresses of parameter variables need to be
655 // consistent across all initializers but (2) the delegate function
656 // call necessarily creates a second copy of the parameter variable.
657 //
658 // The limiting example (purely theoretical AFAIK):
659 // struct A { A(int &c) { c++; } };
660 // struct B : virtual A {
661 // B(int count) : A(count) { printf("%d\n", count); }
662 // };
663 // ...although even this example could in principle be emitted as a
664 // delegation since the address of the parameter doesn't escape.
665 if (Ctor->getParent()->getNumVBases()) {
666 // TODO: white-list trivial vbase initializers. This case wouldn't
667 // be subject to the restrictions below.
668
669 // TODO: white-list cases where:
670 // - there are no non-reference parameters to the constructor
671 // - the initializers don't access any non-reference parameters
672 // - the initializers don't take the address of non-reference
673 // parameters
674 // - etc.
675 // If we ever add any of the above cases, remember that:
676 // - function-try-blocks will always blacklist this optimization
677 // - we need to perform the constructor prologue and cleanup in
678 // EmitConstructorBody.
679
680 return false;
681 }
682
683 // We also disable the optimization for variadic functions because
684 // it's impossible to "re-pass" varargs.
685 if (Ctor->getType()->getAs<FunctionProtoType>()->isVariadic())
686 return false;
687
Alexis Hunt61bc1732011-05-01 07:04:31 +0000688 // FIXME: Decide if we can do a delegation of a delegating constructor.
689 if (Ctor->isDelegatingConstructor())
690 return false;
691
John McCallf8ff7b92010-02-23 00:48:20 +0000692 return true;
693}
694
John McCallb81884d2010-02-19 09:25:03 +0000695/// EmitConstructorBody - Emits the body of the current constructor.
696void CodeGenFunction::EmitConstructorBody(FunctionArgList &Args) {
697 const CXXConstructorDecl *Ctor = cast<CXXConstructorDecl>(CurGD.getDecl());
698 CXXCtorType CtorType = CurGD.getCtorType();
699
Reid Kleckner340ad862014-01-13 22:57:31 +0000700 assert((CGM.getTarget().getCXXABI().hasConstructorVariants() ||
701 CtorType == Ctor_Complete) &&
702 "can only generate complete ctor for this ABI");
703
John McCallf8ff7b92010-02-23 00:48:20 +0000704 // Before we go any further, try the complete->base constructor
705 // delegation optimization.
Timur Iskhodzhanovf32a3772012-04-20 08:05:00 +0000706 if (CtorType == Ctor_Complete && IsConstructorDelegationValid(Ctor) &&
John McCallc8e01702013-04-16 22:48:15 +0000707 CGM.getTarget().getCXXABI().hasConstructorVariants()) {
Devang Pateld76c1db2010-08-11 21:04:37 +0000708 if (CGDebugInfo *DI = getDebugInfo())
Eric Christopher7cdf9482011-10-13 21:45:18 +0000709 DI->EmitLocation(Builder, Ctor->getLocEnd());
Nick Lewycky2d84e842013-10-02 02:29:49 +0000710 EmitDelegateCXXConstructorCall(Ctor, Ctor_Base, Args, Ctor->getLocEnd());
John McCallf8ff7b92010-02-23 00:48:20 +0000711 return;
712 }
713
John McCallb81884d2010-02-19 09:25:03 +0000714 Stmt *Body = Ctor->getBody();
715
John McCallf8ff7b92010-02-23 00:48:20 +0000716 // Enter the function-try-block before the constructor prologue if
717 // applicable.
John McCallf8ff7b92010-02-23 00:48:20 +0000718 bool IsTryBody = (Body && isa<CXXTryStmt>(Body));
John McCallf8ff7b92010-02-23 00:48:20 +0000719 if (IsTryBody)
John McCallb609d3f2010-07-07 06:56:46 +0000720 EnterCXXTryStmt(*cast<CXXTryStmt>(Body), true);
John McCallb81884d2010-02-19 09:25:03 +0000721
Justin Bogner81c22c22014-01-23 02:54:27 +0000722 RegionCounter Cnt = getPGORegionCounter(Body);
723 Cnt.beginRegion(Builder);
724
Richard Smithcc1b96d2013-06-12 22:31:48 +0000725 RunCleanupsScope RunCleanups(*this);
John McCallb81884d2010-02-19 09:25:03 +0000726
John McCall88313032012-03-30 04:25:03 +0000727 // TODO: in restricted cases, we can emit the vbase initializers of
728 // a complete ctor and then delegate to the base ctor.
729
John McCallf8ff7b92010-02-23 00:48:20 +0000730 // Emit the constructor prologue, i.e. the base and member
731 // initializers.
Douglas Gregor94f9a482010-05-05 05:51:00 +0000732 EmitCtorPrologue(Ctor, CtorType, Args);
John McCallb81884d2010-02-19 09:25:03 +0000733
734 // Emit the body of the statement.
John McCallf8ff7b92010-02-23 00:48:20 +0000735 if (IsTryBody)
John McCallb81884d2010-02-19 09:25:03 +0000736 EmitStmt(cast<CXXTryStmt>(Body)->getTryBlock());
737 else if (Body)
738 EmitStmt(Body);
John McCallb81884d2010-02-19 09:25:03 +0000739
740 // Emit any cleanup blocks associated with the member or base
741 // initializers, which includes (along the exceptional path) the
742 // destructors for those members and bases that were fully
743 // constructed.
Richard Smithcc1b96d2013-06-12 22:31:48 +0000744 RunCleanups.ForceCleanup();
John McCallb81884d2010-02-19 09:25:03 +0000745
John McCallf8ff7b92010-02-23 00:48:20 +0000746 if (IsTryBody)
John McCallb609d3f2010-07-07 06:56:46 +0000747 ExitCXXTryStmt(*cast<CXXTryStmt>(Body), true);
John McCallb81884d2010-02-19 09:25:03 +0000748}
749
Lang Hamesbf122742013-02-17 07:22:09 +0000750namespace {
Nick Lewycky8b4e3792013-09-11 02:03:20 +0000751 /// RAII object to indicate that codegen is copying the value representation
752 /// instead of the object representation. Useful when copying a struct or
753 /// class which has uninitialized members and we're only performing
754 /// lvalue-to-rvalue conversion on the object but not its members.
755 class CopyingValueRepresentation {
756 public:
757 explicit CopyingValueRepresentation(CodeGenFunction &CGF)
758 : CGF(CGF), SO(*CGF.SanOpts), OldSanOpts(CGF.SanOpts) {
759 SO.Bool = false;
760 SO.Enum = false;
761 CGF.SanOpts = &SO;
762 }
763 ~CopyingValueRepresentation() {
764 CGF.SanOpts = OldSanOpts;
765 }
766 private:
767 CodeGenFunction &CGF;
768 SanitizerOptions SO;
769 const SanitizerOptions *OldSanOpts;
770 };
771}
772
773namespace {
Lang Hamesbf122742013-02-17 07:22:09 +0000774 class FieldMemcpyizer {
775 public:
776 FieldMemcpyizer(CodeGenFunction &CGF, const CXXRecordDecl *ClassDecl,
777 const VarDecl *SrcRec)
778 : CGF(CGF), ClassDecl(ClassDecl), SrcRec(SrcRec),
779 RecLayout(CGF.getContext().getASTRecordLayout(ClassDecl)),
780 FirstField(0), LastField(0), FirstFieldOffset(0), LastFieldOffset(0),
781 LastAddedFieldIndex(0) { }
782
783 static bool isMemcpyableField(FieldDecl *F) {
784 Qualifiers Qual = F->getType().getQualifiers();
785 if (Qual.hasVolatile() || Qual.hasObjCLifetime())
786 return false;
787 return true;
788 }
789
790 void addMemcpyableField(FieldDecl *F) {
791 if (FirstField == 0)
792 addInitialField(F);
793 else
794 addNextField(F);
795 }
796
797 CharUnits getMemcpySize() const {
798 unsigned LastFieldSize =
799 LastField->isBitField() ?
800 LastField->getBitWidthValue(CGF.getContext()) :
801 CGF.getContext().getTypeSize(LastField->getType());
802 uint64_t MemcpySizeBits =
803 LastFieldOffset + LastFieldSize - FirstFieldOffset +
804 CGF.getContext().getCharWidth() - 1;
805 CharUnits MemcpySize =
806 CGF.getContext().toCharUnitsFromBits(MemcpySizeBits);
807 return MemcpySize;
808 }
809
810 void emitMemcpy() {
811 // Give the subclass a chance to bail out if it feels the memcpy isn't
812 // worth it (e.g. Hasn't aggregated enough data).
813 if (FirstField == 0) {
814 return;
815 }
816
Lang Hames1694e0d2013-02-27 04:14:49 +0000817 CharUnits Alignment;
Lang Hamesbf122742013-02-17 07:22:09 +0000818
819 if (FirstField->isBitField()) {
820 const CGRecordLayout &RL =
821 CGF.getTypes().getCGRecordLayout(FirstField->getParent());
822 const CGBitFieldInfo &BFInfo = RL.getBitFieldInfo(FirstField);
Lang Hames1694e0d2013-02-27 04:14:49 +0000823 Alignment = CharUnits::fromQuantity(BFInfo.StorageAlignment);
824 } else {
Lang Hames224ae882013-03-05 20:27:24 +0000825 Alignment = CGF.getContext().getDeclAlign(FirstField);
Lang Hames1694e0d2013-02-27 04:14:49 +0000826 }
Lang Hamesbf122742013-02-17 07:22:09 +0000827
Lang Hames1694e0d2013-02-27 04:14:49 +0000828 assert((CGF.getContext().toCharUnitsFromBits(FirstFieldOffset) %
829 Alignment) == 0 && "Bad field alignment.");
830
Lang Hamesbf122742013-02-17 07:22:09 +0000831 CharUnits MemcpySize = getMemcpySize();
832 QualType RecordTy = CGF.getContext().getTypeDeclType(ClassDecl);
833 llvm::Value *ThisPtr = CGF.LoadCXXThis();
834 LValue DestLV = CGF.MakeNaturalAlignAddrLValue(ThisPtr, RecordTy);
835 LValue Dest = CGF.EmitLValueForFieldInitialization(DestLV, FirstField);
836 llvm::Value *SrcPtr = CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(SrcRec));
837 LValue SrcLV = CGF.MakeNaturalAlignAddrLValue(SrcPtr, RecordTy);
838 LValue Src = CGF.EmitLValueForFieldInitialization(SrcLV, FirstField);
839
840 emitMemcpyIR(Dest.isBitField() ? Dest.getBitFieldAddr() : Dest.getAddress(),
841 Src.isBitField() ? Src.getBitFieldAddr() : Src.getAddress(),
842 MemcpySize, Alignment);
843 reset();
844 }
845
846 void reset() {
847 FirstField = 0;
848 }
849
850 protected:
851 CodeGenFunction &CGF;
852 const CXXRecordDecl *ClassDecl;
853
854 private:
855
856 void emitMemcpyIR(llvm::Value *DestPtr, llvm::Value *SrcPtr,
857 CharUnits Size, CharUnits Alignment) {
858 llvm::PointerType *DPT = cast<llvm::PointerType>(DestPtr->getType());
859 llvm::Type *DBP =
860 llvm::Type::getInt8PtrTy(CGF.getLLVMContext(), DPT->getAddressSpace());
861 DestPtr = CGF.Builder.CreateBitCast(DestPtr, DBP);
862
863 llvm::PointerType *SPT = cast<llvm::PointerType>(SrcPtr->getType());
864 llvm::Type *SBP =
865 llvm::Type::getInt8PtrTy(CGF.getLLVMContext(), SPT->getAddressSpace());
866 SrcPtr = CGF.Builder.CreateBitCast(SrcPtr, SBP);
867
868 CGF.Builder.CreateMemCpy(DestPtr, SrcPtr, Size.getQuantity(),
869 Alignment.getQuantity());
870 }
871
872 void addInitialField(FieldDecl *F) {
873 FirstField = F;
874 LastField = F;
875 FirstFieldOffset = RecLayout.getFieldOffset(F->getFieldIndex());
876 LastFieldOffset = FirstFieldOffset;
877 LastAddedFieldIndex = F->getFieldIndex();
878 return;
879 }
880
881 void addNextField(FieldDecl *F) {
John McCall6054d5a2013-05-07 05:20:46 +0000882 // For the most part, the following invariant will hold:
883 // F->getFieldIndex() == LastAddedFieldIndex + 1
884 // The one exception is that Sema won't add a copy-initializer for an
885 // unnamed bitfield, which will show up here as a gap in the sequence.
886 assert(F->getFieldIndex() >= LastAddedFieldIndex + 1 &&
887 "Cannot aggregate fields out of order.");
Lang Hamesbf122742013-02-17 07:22:09 +0000888 LastAddedFieldIndex = F->getFieldIndex();
889
890 // The 'first' and 'last' fields are chosen by offset, rather than field
891 // index. This allows the code to support bitfields, as well as regular
892 // fields.
893 uint64_t FOffset = RecLayout.getFieldOffset(F->getFieldIndex());
894 if (FOffset < FirstFieldOffset) {
895 FirstField = F;
896 FirstFieldOffset = FOffset;
897 } else if (FOffset > LastFieldOffset) {
898 LastField = F;
899 LastFieldOffset = FOffset;
900 }
901 }
902
903 const VarDecl *SrcRec;
904 const ASTRecordLayout &RecLayout;
905 FieldDecl *FirstField;
906 FieldDecl *LastField;
907 uint64_t FirstFieldOffset, LastFieldOffset;
908 unsigned LastAddedFieldIndex;
909 };
910
911 class ConstructorMemcpyizer : public FieldMemcpyizer {
912 private:
913
914 /// Get source argument for copy constructor. Returns null if not a copy
915 /// constructor.
916 static const VarDecl* getTrivialCopySource(const CXXConstructorDecl *CD,
917 FunctionArgList &Args) {
Jordan Rose54533f72013-08-07 16:16:48 +0000918 if (CD->isCopyOrMoveConstructor() && CD->isDefaulted())
Lang Hamesbf122742013-02-17 07:22:09 +0000919 return Args[Args.size() - 1];
920 return 0;
921 }
922
923 // Returns true if a CXXCtorInitializer represents a member initialization
924 // that can be rolled into a memcpy.
925 bool isMemberInitMemcpyable(CXXCtorInitializer *MemberInit) const {
926 if (!MemcpyableCtor)
927 return false;
928 FieldDecl *Field = MemberInit->getMember();
929 assert(Field != 0 && "No field for member init.");
930 QualType FieldType = Field->getType();
931 CXXConstructExpr *CE = dyn_cast<CXXConstructExpr>(MemberInit->getInit());
932
933 // Bail out on non-POD, not-trivially-constructable members.
934 if (!(CE && CE->getConstructor()->isTrivial()) &&
935 !(FieldType.isTriviallyCopyableType(CGF.getContext()) ||
936 FieldType->isReferenceType()))
937 return false;
938
939 // Bail out on volatile fields.
940 if (!isMemcpyableField(Field))
941 return false;
942
943 // Otherwise we're good.
944 return true;
945 }
946
947 public:
948 ConstructorMemcpyizer(CodeGenFunction &CGF, const CXXConstructorDecl *CD,
949 FunctionArgList &Args)
950 : FieldMemcpyizer(CGF, CD->getParent(), getTrivialCopySource(CD, Args)),
951 ConstructorDecl(CD),
Jordan Rose54533f72013-08-07 16:16:48 +0000952 MemcpyableCtor(CD->isDefaulted() &&
Lang Hamesbf122742013-02-17 07:22:09 +0000953 CD->isCopyOrMoveConstructor() &&
954 CGF.getLangOpts().getGC() == LangOptions::NonGC),
955 Args(Args) { }
956
957 void addMemberInitializer(CXXCtorInitializer *MemberInit) {
958 if (isMemberInitMemcpyable(MemberInit)) {
959 AggregatedInits.push_back(MemberInit);
960 addMemcpyableField(MemberInit->getMember());
961 } else {
962 emitAggregatedInits();
963 EmitMemberInitializer(CGF, ConstructorDecl->getParent(), MemberInit,
964 ConstructorDecl, Args);
965 }
966 }
967
968 void emitAggregatedInits() {
969 if (AggregatedInits.size() <= 1) {
970 // This memcpy is too small to be worthwhile. Fall back on default
971 // codegen.
Nick Lewycky8b4e3792013-09-11 02:03:20 +0000972 if (!AggregatedInits.empty()) {
973 CopyingValueRepresentation CVR(CGF);
Lang Hamesbf122742013-02-17 07:22:09 +0000974 EmitMemberInitializer(CGF, ConstructorDecl->getParent(),
Nick Lewycky8b4e3792013-09-11 02:03:20 +0000975 AggregatedInits[0], ConstructorDecl, Args);
Lang Hamesbf122742013-02-17 07:22:09 +0000976 }
977 reset();
978 return;
979 }
980
981 pushEHDestructors();
982 emitMemcpy();
983 AggregatedInits.clear();
984 }
985
986 void pushEHDestructors() {
987 llvm::Value *ThisPtr = CGF.LoadCXXThis();
988 QualType RecordTy = CGF.getContext().getTypeDeclType(ClassDecl);
989 LValue LHS = CGF.MakeNaturalAlignAddrLValue(ThisPtr, RecordTy);
990
991 for (unsigned i = 0; i < AggregatedInits.size(); ++i) {
992 QualType FieldType = AggregatedInits[i]->getMember()->getType();
993 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
994 if (CGF.needsEHCleanup(dtorKind))
995 CGF.pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
996 }
997 }
998
999 void finish() {
1000 emitAggregatedInits();
1001 }
1002
1003 private:
1004 const CXXConstructorDecl *ConstructorDecl;
1005 bool MemcpyableCtor;
1006 FunctionArgList &Args;
1007 SmallVector<CXXCtorInitializer*, 16> AggregatedInits;
1008 };
1009
1010 class AssignmentMemcpyizer : public FieldMemcpyizer {
1011 private:
1012
1013 // Returns the memcpyable field copied by the given statement, if one
Nick Lewycky8b4e3792013-09-11 02:03:20 +00001014 // exists. Otherwise returns null.
1015 FieldDecl *getMemcpyableField(Stmt *S) {
Lang Hamesbf122742013-02-17 07:22:09 +00001016 if (!AssignmentsMemcpyable)
1017 return 0;
1018 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(S)) {
1019 // Recognise trivial assignments.
1020 if (BO->getOpcode() != BO_Assign)
1021 return 0;
1022 MemberExpr *ME = dyn_cast<MemberExpr>(BO->getLHS());
1023 if (!ME)
1024 return 0;
1025 FieldDecl *Field = dyn_cast<FieldDecl>(ME->getMemberDecl());
1026 if (!Field || !isMemcpyableField(Field))
1027 return 0;
1028 Stmt *RHS = BO->getRHS();
1029 if (ImplicitCastExpr *EC = dyn_cast<ImplicitCastExpr>(RHS))
1030 RHS = EC->getSubExpr();
1031 if (!RHS)
1032 return 0;
1033 MemberExpr *ME2 = dyn_cast<MemberExpr>(RHS);
1034 if (dyn_cast<FieldDecl>(ME2->getMemberDecl()) != Field)
1035 return 0;
1036 return Field;
1037 } else if (CXXMemberCallExpr *MCE = dyn_cast<CXXMemberCallExpr>(S)) {
1038 CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MCE->getCalleeDecl());
1039 if (!(MD && (MD->isCopyAssignmentOperator() ||
1040 MD->isMoveAssignmentOperator()) &&
1041 MD->isTrivial()))
1042 return 0;
1043 MemberExpr *IOA = dyn_cast<MemberExpr>(MCE->getImplicitObjectArgument());
1044 if (!IOA)
1045 return 0;
1046 FieldDecl *Field = dyn_cast<FieldDecl>(IOA->getMemberDecl());
1047 if (!Field || !isMemcpyableField(Field))
1048 return 0;
1049 MemberExpr *Arg0 = dyn_cast<MemberExpr>(MCE->getArg(0));
1050 if (!Arg0 || Field != dyn_cast<FieldDecl>(Arg0->getMemberDecl()))
1051 return 0;
1052 return Field;
1053 } else if (CallExpr *CE = dyn_cast<CallExpr>(S)) {
1054 FunctionDecl *FD = dyn_cast<FunctionDecl>(CE->getCalleeDecl());
1055 if (!FD || FD->getBuiltinID() != Builtin::BI__builtin_memcpy)
1056 return 0;
1057 Expr *DstPtr = CE->getArg(0);
1058 if (ImplicitCastExpr *DC = dyn_cast<ImplicitCastExpr>(DstPtr))
1059 DstPtr = DC->getSubExpr();
1060 UnaryOperator *DUO = dyn_cast<UnaryOperator>(DstPtr);
1061 if (!DUO || DUO->getOpcode() != UO_AddrOf)
1062 return 0;
1063 MemberExpr *ME = dyn_cast<MemberExpr>(DUO->getSubExpr());
1064 if (!ME)
1065 return 0;
1066 FieldDecl *Field = dyn_cast<FieldDecl>(ME->getMemberDecl());
1067 if (!Field || !isMemcpyableField(Field))
1068 return 0;
1069 Expr *SrcPtr = CE->getArg(1);
1070 if (ImplicitCastExpr *SC = dyn_cast<ImplicitCastExpr>(SrcPtr))
1071 SrcPtr = SC->getSubExpr();
1072 UnaryOperator *SUO = dyn_cast<UnaryOperator>(SrcPtr);
1073 if (!SUO || SUO->getOpcode() != UO_AddrOf)
1074 return 0;
1075 MemberExpr *ME2 = dyn_cast<MemberExpr>(SUO->getSubExpr());
1076 if (!ME2 || Field != dyn_cast<FieldDecl>(ME2->getMemberDecl()))
1077 return 0;
1078 return Field;
1079 }
1080
1081 return 0;
1082 }
1083
1084 bool AssignmentsMemcpyable;
1085 SmallVector<Stmt*, 16> AggregatedStmts;
1086
1087 public:
1088
1089 AssignmentMemcpyizer(CodeGenFunction &CGF, const CXXMethodDecl *AD,
1090 FunctionArgList &Args)
1091 : FieldMemcpyizer(CGF, AD->getParent(), Args[Args.size() - 1]),
1092 AssignmentsMemcpyable(CGF.getLangOpts().getGC() == LangOptions::NonGC) {
1093 assert(Args.size() == 2);
1094 }
1095
1096 void emitAssignment(Stmt *S) {
1097 FieldDecl *F = getMemcpyableField(S);
1098 if (F) {
1099 addMemcpyableField(F);
1100 AggregatedStmts.push_back(S);
1101 } else {
1102 emitAggregatedStmts();
1103 CGF.EmitStmt(S);
1104 }
1105 }
1106
1107 void emitAggregatedStmts() {
1108 if (AggregatedStmts.size() <= 1) {
Nick Lewycky8b4e3792013-09-11 02:03:20 +00001109 if (!AggregatedStmts.empty()) {
1110 CopyingValueRepresentation CVR(CGF);
1111 CGF.EmitStmt(AggregatedStmts[0]);
1112 }
Lang Hamesbf122742013-02-17 07:22:09 +00001113 reset();
1114 }
1115
1116 emitMemcpy();
1117 AggregatedStmts.clear();
1118 }
1119
1120 void finish() {
1121 emitAggregatedStmts();
1122 }
1123 };
1124
1125}
1126
Anders Carlssonfb404882009-12-24 22:46:43 +00001127/// EmitCtorPrologue - This routine generates necessary code to initialize
1128/// base classes and non-static data members belonging to this constructor.
Anders Carlssonfb404882009-12-24 22:46:43 +00001129void CodeGenFunction::EmitCtorPrologue(const CXXConstructorDecl *CD,
Douglas Gregor94f9a482010-05-05 05:51:00 +00001130 CXXCtorType CtorType,
1131 FunctionArgList &Args) {
Alexis Hunt61bc1732011-05-01 07:04:31 +00001132 if (CD->isDelegatingConstructor())
1133 return EmitDelegatingCXXConstructorCall(CD, Args);
1134
Anders Carlssonfb404882009-12-24 22:46:43 +00001135 const CXXRecordDecl *ClassDecl = CD->getParent();
Anders Carlsson5dc86332010-02-02 19:58:43 +00001136
Timur Iskhodzhanov57cbe5c2013-02-27 13:46:31 +00001137 CXXConstructorDecl::init_const_iterator B = CD->init_begin(),
1138 E = CD->init_end();
1139
1140 llvm::BasicBlock *BaseCtorContinueBB = 0;
1141 if (ClassDecl->getNumVBases() &&
1142 !CGM.getTarget().getCXXABI().hasConstructorVariants()) {
1143 // The ABIs that don't have constructor variants need to put a branch
1144 // before the virtual base initialization code.
Reid Kleckner7810af02013-06-19 15:20:38 +00001145 BaseCtorContinueBB =
1146 CGM.getCXXABI().EmitCtorCompleteObjectHandler(*this, ClassDecl);
Timur Iskhodzhanov57cbe5c2013-02-27 13:46:31 +00001147 assert(BaseCtorContinueBB);
1148 }
1149
1150 // Virtual base initializers first.
1151 for (; B != E && (*B)->isBaseInitializer() && (*B)->isBaseVirtual(); B++) {
1152 EmitBaseInitializer(*this, ClassDecl, *B, CtorType);
1153 }
1154
1155 if (BaseCtorContinueBB) {
1156 // Complete object handler should continue to the remaining initializers.
1157 Builder.CreateBr(BaseCtorContinueBB);
1158 EmitBlock(BaseCtorContinueBB);
1159 }
1160
1161 // Then, non-virtual base initializers.
1162 for (; B != E && (*B)->isBaseInitializer(); B++) {
1163 assert(!(*B)->isBaseVirtual());
1164 EmitBaseInitializer(*this, ClassDecl, *B, CtorType);
Anders Carlssonfb404882009-12-24 22:46:43 +00001165 }
1166
Anders Carlssond5895932010-03-28 21:07:49 +00001167 InitializeVTablePointers(ClassDecl);
Anders Carlsson5dc86332010-02-02 19:58:43 +00001168
Timur Iskhodzhanov57cbe5c2013-02-27 13:46:31 +00001169 // And finally, initialize class members.
Richard Smith852c9db2013-04-20 22:23:05 +00001170 FieldConstructionScope FCS(*this, CXXThisValue);
Lang Hamesbf122742013-02-17 07:22:09 +00001171 ConstructorMemcpyizer CM(*this, CD, Args);
Timur Iskhodzhanov57cbe5c2013-02-27 13:46:31 +00001172 for (; B != E; B++) {
1173 CXXCtorInitializer *Member = (*B);
1174 assert(!Member->isBaseInitializer());
1175 assert(Member->isAnyMemberInitializer() &&
1176 "Delegating initializer on non-delegating constructor");
1177 CM.addMemberInitializer(Member);
1178 }
Lang Hamesbf122742013-02-17 07:22:09 +00001179 CM.finish();
Anders Carlssonfb404882009-12-24 22:46:43 +00001180}
1181
Anders Carlsson49c0bd22011-05-15 17:36:21 +00001182static bool
1183FieldHasTrivialDestructorBody(ASTContext &Context, const FieldDecl *Field);
1184
1185static bool
1186HasTrivialDestructorBody(ASTContext &Context,
1187 const CXXRecordDecl *BaseClassDecl,
1188 const CXXRecordDecl *MostDerivedClassDecl)
1189{
1190 // If the destructor is trivial we don't have to check anything else.
1191 if (BaseClassDecl->hasTrivialDestructor())
1192 return true;
1193
1194 if (!BaseClassDecl->getDestructor()->hasTrivialBody())
1195 return false;
1196
1197 // Check fields.
1198 for (CXXRecordDecl::field_iterator I = BaseClassDecl->field_begin(),
1199 E = BaseClassDecl->field_end(); I != E; ++I) {
David Blaikie40ed2972012-06-06 20:45:41 +00001200 const FieldDecl *Field = *I;
Anders Carlsson49c0bd22011-05-15 17:36:21 +00001201
1202 if (!FieldHasTrivialDestructorBody(Context, Field))
1203 return false;
1204 }
1205
1206 // Check non-virtual bases.
1207 for (CXXRecordDecl::base_class_const_iterator I =
1208 BaseClassDecl->bases_begin(), E = BaseClassDecl->bases_end();
1209 I != E; ++I) {
1210 if (I->isVirtual())
1211 continue;
1212
1213 const CXXRecordDecl *NonVirtualBase =
1214 cast<CXXRecordDecl>(I->getType()->castAs<RecordType>()->getDecl());
1215 if (!HasTrivialDestructorBody(Context, NonVirtualBase,
1216 MostDerivedClassDecl))
1217 return false;
1218 }
1219
1220 if (BaseClassDecl == MostDerivedClassDecl) {
1221 // Check virtual bases.
1222 for (CXXRecordDecl::base_class_const_iterator I =
1223 BaseClassDecl->vbases_begin(), E = BaseClassDecl->vbases_end();
1224 I != E; ++I) {
1225 const CXXRecordDecl *VirtualBase =
1226 cast<CXXRecordDecl>(I->getType()->castAs<RecordType>()->getDecl());
1227 if (!HasTrivialDestructorBody(Context, VirtualBase,
1228 MostDerivedClassDecl))
1229 return false;
1230 }
1231 }
1232
1233 return true;
1234}
1235
1236static bool
1237FieldHasTrivialDestructorBody(ASTContext &Context,
1238 const FieldDecl *Field)
1239{
1240 QualType FieldBaseElementType = Context.getBaseElementType(Field->getType());
1241
1242 const RecordType *RT = FieldBaseElementType->getAs<RecordType>();
1243 if (!RT)
1244 return true;
1245
1246 CXXRecordDecl *FieldClassDecl = cast<CXXRecordDecl>(RT->getDecl());
1247 return HasTrivialDestructorBody(Context, FieldClassDecl, FieldClassDecl);
1248}
1249
Anders Carlsson9bd7d162011-05-14 23:26:09 +00001250/// CanSkipVTablePointerInitialization - Check whether we need to initialize
1251/// any vtable pointers before calling this destructor.
1252static bool CanSkipVTablePointerInitialization(ASTContext &Context,
Anders Carlssond6f15182011-05-16 04:08:36 +00001253 const CXXDestructorDecl *Dtor) {
Anders Carlsson9bd7d162011-05-14 23:26:09 +00001254 if (!Dtor->hasTrivialBody())
1255 return false;
1256
1257 // Check the fields.
1258 const CXXRecordDecl *ClassDecl = Dtor->getParent();
1259 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
1260 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie40ed2972012-06-06 20:45:41 +00001261 const FieldDecl *Field = *I;
Anders Carlsson9bd7d162011-05-14 23:26:09 +00001262
Anders Carlsson49c0bd22011-05-15 17:36:21 +00001263 if (!FieldHasTrivialDestructorBody(Context, Field))
1264 return false;
Anders Carlsson9bd7d162011-05-14 23:26:09 +00001265 }
1266
1267 return true;
1268}
1269
John McCallb81884d2010-02-19 09:25:03 +00001270/// EmitDestructorBody - Emits the body of the current destructor.
1271void CodeGenFunction::EmitDestructorBody(FunctionArgList &Args) {
1272 const CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(CurGD.getDecl());
1273 CXXDtorType DtorType = CurGD.getDtorType();
1274
John McCallf99a6312010-07-21 05:30:47 +00001275 // The call to operator delete in a deleting destructor happens
1276 // outside of the function-try-block, which means it's always
1277 // possible to delegate the destructor body to the complete
1278 // destructor. Do so.
1279 if (DtorType == Dtor_Deleting) {
1280 EnterDtorCleanups(Dtor, Dtor_Deleting);
1281 EmitCXXDestructorCall(Dtor, Dtor_Complete, /*ForVirtualBase=*/false,
Douglas Gregor61535002013-01-31 05:50:40 +00001282 /*Delegating=*/false, LoadCXXThis());
John McCallf99a6312010-07-21 05:30:47 +00001283 PopCleanupBlock();
1284 return;
1285 }
1286
John McCallb81884d2010-02-19 09:25:03 +00001287 Stmt *Body = Dtor->getBody();
1288
1289 // If the body is a function-try-block, enter the try before
John McCallf99a6312010-07-21 05:30:47 +00001290 // anything else.
1291 bool isTryBody = (Body && isa<CXXTryStmt>(Body));
John McCallb81884d2010-02-19 09:25:03 +00001292 if (isTryBody)
John McCallb609d3f2010-07-07 06:56:46 +00001293 EnterCXXTryStmt(*cast<CXXTryStmt>(Body), true);
John McCallb81884d2010-02-19 09:25:03 +00001294
John McCallf99a6312010-07-21 05:30:47 +00001295 // Enter the epilogue cleanups.
1296 RunCleanupsScope DtorEpilogue(*this);
1297
John McCallb81884d2010-02-19 09:25:03 +00001298 // If this is the complete variant, just invoke the base variant;
1299 // the epilogue will destruct the virtual bases. But we can't do
1300 // this optimization if the body is a function-try-block, because
Reid Klecknere7de47e2013-07-22 13:51:44 +00001301 // we'd introduce *two* handler blocks. In the Microsoft ABI, we
1302 // always delegate because we might not have a definition in this TU.
John McCallf99a6312010-07-21 05:30:47 +00001303 switch (DtorType) {
1304 case Dtor_Deleting: llvm_unreachable("already handled deleting case");
1305
1306 case Dtor_Complete:
Reid Klecknere7de47e2013-07-22 13:51:44 +00001307 assert((Body || getTarget().getCXXABI().isMicrosoft()) &&
1308 "can't emit a dtor without a body for non-Microsoft ABIs");
1309
John McCallf99a6312010-07-21 05:30:47 +00001310 // Enter the cleanup scopes for virtual bases.
1311 EnterDtorCleanups(Dtor, Dtor_Complete);
1312
Reid Klecknere7de47e2013-07-22 13:51:44 +00001313 if (!isTryBody) {
John McCallf99a6312010-07-21 05:30:47 +00001314 EmitCXXDestructorCall(Dtor, Dtor_Base, /*ForVirtualBase=*/false,
Douglas Gregor61535002013-01-31 05:50:40 +00001315 /*Delegating=*/false, LoadCXXThis());
John McCallf99a6312010-07-21 05:30:47 +00001316 break;
1317 }
1318 // Fallthrough: act like we're in the base variant.
John McCallb81884d2010-02-19 09:25:03 +00001319
John McCallf99a6312010-07-21 05:30:47 +00001320 case Dtor_Base:
Reid Klecknere7de47e2013-07-22 13:51:44 +00001321 assert(Body);
1322
Justin Bogner81c22c22014-01-23 02:54:27 +00001323 RegionCounter Cnt = getPGORegionCounter(Body);
1324 Cnt.beginRegion(Builder);
1325
John McCallf99a6312010-07-21 05:30:47 +00001326 // Enter the cleanup scopes for fields and non-virtual bases.
1327 EnterDtorCleanups(Dtor, Dtor_Base);
1328
1329 // Initialize the vtable pointers before entering the body.
Anders Carlsson9bd7d162011-05-14 23:26:09 +00001330 if (!CanSkipVTablePointerInitialization(getContext(), Dtor))
1331 InitializeVTablePointers(Dtor->getParent());
John McCallf99a6312010-07-21 05:30:47 +00001332
1333 if (isTryBody)
1334 EmitStmt(cast<CXXTryStmt>(Body)->getTryBlock());
1335 else if (Body)
1336 EmitStmt(Body);
1337 else {
1338 assert(Dtor->isImplicit() && "bodyless dtor not implicit");
1339 // nothing to do besides what's in the epilogue
1340 }
Fariborz Jahanian0c12ed12011-02-02 23:12:46 +00001341 // -fapple-kext must inline any call to this dtor into
1342 // the caller's body.
Richard Smith9c6890a2012-11-01 22:30:59 +00001343 if (getLangOpts().AppleKext)
Bill Wendling207f0532012-12-20 19:27:06 +00001344 CurFn->addFnAttr(llvm::Attribute::AlwaysInline);
John McCallf99a6312010-07-21 05:30:47 +00001345 break;
John McCallb81884d2010-02-19 09:25:03 +00001346 }
1347
John McCallf99a6312010-07-21 05:30:47 +00001348 // Jump out through the epilogue cleanups.
1349 DtorEpilogue.ForceCleanup();
John McCallb81884d2010-02-19 09:25:03 +00001350
1351 // Exit the try if applicable.
1352 if (isTryBody)
John McCallb609d3f2010-07-07 06:56:46 +00001353 ExitCXXTryStmt(*cast<CXXTryStmt>(Body), true);
John McCallb81884d2010-02-19 09:25:03 +00001354}
1355
Lang Hamesbf122742013-02-17 07:22:09 +00001356void CodeGenFunction::emitImplicitAssignmentOperatorBody(FunctionArgList &Args) {
1357 const CXXMethodDecl *AssignOp = cast<CXXMethodDecl>(CurGD.getDecl());
1358 const Stmt *RootS = AssignOp->getBody();
1359 assert(isa<CompoundStmt>(RootS) &&
1360 "Body of an implicit assignment operator should be compound stmt.");
1361 const CompoundStmt *RootCS = cast<CompoundStmt>(RootS);
1362
1363 LexicalScope Scope(*this, RootCS->getSourceRange());
1364
1365 AssignmentMemcpyizer AM(*this, AssignOp, Args);
1366 for (CompoundStmt::const_body_iterator I = RootCS->body_begin(),
1367 E = RootCS->body_end();
1368 I != E; ++I) {
1369 AM.emitAssignment(*I);
1370 }
1371 AM.finish();
1372}
1373
John McCallf99a6312010-07-21 05:30:47 +00001374namespace {
1375 /// Call the operator delete associated with the current destructor.
John McCallcda666c2010-07-21 07:22:38 +00001376 struct CallDtorDelete : EHScopeStack::Cleanup {
John McCallf99a6312010-07-21 05:30:47 +00001377 CallDtorDelete() {}
1378
John McCall30317fd2011-07-12 20:27:29 +00001379 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCallf99a6312010-07-21 05:30:47 +00001380 const CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(CGF.CurCodeDecl);
1381 const CXXRecordDecl *ClassDecl = Dtor->getParent();
1382 CGF.EmitDeleteCall(Dtor->getOperatorDelete(), CGF.LoadCXXThis(),
1383 CGF.getContext().getTagDeclType(ClassDecl));
1384 }
1385 };
1386
Timur Iskhodzhanovee6bc532013-02-13 08:37:51 +00001387 struct CallDtorDeleteConditional : EHScopeStack::Cleanup {
1388 llvm::Value *ShouldDeleteCondition;
1389 public:
1390 CallDtorDeleteConditional(llvm::Value *ShouldDeleteCondition)
1391 : ShouldDeleteCondition(ShouldDeleteCondition) {
1392 assert(ShouldDeleteCondition != NULL);
1393 }
1394
1395 void Emit(CodeGenFunction &CGF, Flags flags) {
1396 llvm::BasicBlock *callDeleteBB = CGF.createBasicBlock("dtor.call_delete");
1397 llvm::BasicBlock *continueBB = CGF.createBasicBlock("dtor.continue");
1398 llvm::Value *ShouldCallDelete
1399 = CGF.Builder.CreateIsNull(ShouldDeleteCondition);
1400 CGF.Builder.CreateCondBr(ShouldCallDelete, continueBB, callDeleteBB);
1401
1402 CGF.EmitBlock(callDeleteBB);
1403 const CXXDestructorDecl *Dtor = cast<CXXDestructorDecl>(CGF.CurCodeDecl);
1404 const CXXRecordDecl *ClassDecl = Dtor->getParent();
1405 CGF.EmitDeleteCall(Dtor->getOperatorDelete(), CGF.LoadCXXThis(),
1406 CGF.getContext().getTagDeclType(ClassDecl));
1407 CGF.Builder.CreateBr(continueBB);
1408
1409 CGF.EmitBlock(continueBB);
1410 }
1411 };
1412
John McCall4bd0fb12011-07-12 16:41:08 +00001413 class DestroyField : public EHScopeStack::Cleanup {
1414 const FieldDecl *field;
Peter Collingbourne1425b452012-01-26 03:33:36 +00001415 CodeGenFunction::Destroyer *destroyer;
John McCall4bd0fb12011-07-12 16:41:08 +00001416 bool useEHCleanupForArray;
John McCallf99a6312010-07-21 05:30:47 +00001417
John McCall4bd0fb12011-07-12 16:41:08 +00001418 public:
1419 DestroyField(const FieldDecl *field, CodeGenFunction::Destroyer *destroyer,
1420 bool useEHCleanupForArray)
Peter Collingbourne1425b452012-01-26 03:33:36 +00001421 : field(field), destroyer(destroyer),
John McCall4bd0fb12011-07-12 16:41:08 +00001422 useEHCleanupForArray(useEHCleanupForArray) {}
John McCallf99a6312010-07-21 05:30:47 +00001423
John McCall30317fd2011-07-12 20:27:29 +00001424 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall4bd0fb12011-07-12 16:41:08 +00001425 // Find the address of the field.
1426 llvm::Value *thisValue = CGF.LoadCXXThis();
Eli Friedman7f1ff602012-04-16 03:54:45 +00001427 QualType RecordTy = CGF.getContext().getTagDeclType(field->getParent());
1428 LValue ThisLV = CGF.MakeAddrLValue(thisValue, RecordTy);
1429 LValue LV = CGF.EmitLValueForField(ThisLV, field);
John McCall4bd0fb12011-07-12 16:41:08 +00001430 assert(LV.isSimple());
1431
1432 CGF.emitDestroy(LV.getAddress(), field->getType(), destroyer,
John McCall30317fd2011-07-12 20:27:29 +00001433 flags.isForNormalCleanup() && useEHCleanupForArray);
John McCallf99a6312010-07-21 05:30:47 +00001434 }
1435 };
1436}
1437
Hans Wennborgdeff7032013-12-18 01:39:59 +00001438/// \brief Emit all code that comes at the end of class's
Anders Carlssonfb404882009-12-24 22:46:43 +00001439/// destructor. This is to call destructors on members and base classes
1440/// in reverse order of their construction.
John McCallf99a6312010-07-21 05:30:47 +00001441void CodeGenFunction::EnterDtorCleanups(const CXXDestructorDecl *DD,
1442 CXXDtorType DtorType) {
Anders Carlssonfb404882009-12-24 22:46:43 +00001443 assert(!DD->isTrivial() &&
1444 "Should not emit dtor epilogue for trivial dtor!");
1445
John McCallf99a6312010-07-21 05:30:47 +00001446 // The deleting-destructor phase just needs to call the appropriate
1447 // operator delete that Sema picked up.
John McCall5c60a6f2010-02-18 19:59:28 +00001448 if (DtorType == Dtor_Deleting) {
1449 assert(DD->getOperatorDelete() &&
Hans Wennborgdeff7032013-12-18 01:39:59 +00001450 "operator delete missing - EnterDtorCleanups");
Timur Iskhodzhanovee6bc532013-02-13 08:37:51 +00001451 if (CXXStructorImplicitParamValue) {
1452 // If there is an implicit param to the deleting dtor, it's a boolean
1453 // telling whether we should call delete at the end of the dtor.
1454 EHStack.pushCleanup<CallDtorDeleteConditional>(
1455 NormalAndEHCleanup, CXXStructorImplicitParamValue);
1456 } else {
1457 EHStack.pushCleanup<CallDtorDelete>(NormalAndEHCleanup);
1458 }
John McCall5c60a6f2010-02-18 19:59:28 +00001459 return;
1460 }
1461
John McCallf99a6312010-07-21 05:30:47 +00001462 const CXXRecordDecl *ClassDecl = DD->getParent();
1463
Richard Smith20104042011-09-18 12:11:43 +00001464 // Unions have no bases and do not call field destructors.
1465 if (ClassDecl->isUnion())
1466 return;
1467
John McCallf99a6312010-07-21 05:30:47 +00001468 // The complete-destructor phase just destructs all the virtual bases.
John McCall5c60a6f2010-02-18 19:59:28 +00001469 if (DtorType == Dtor_Complete) {
John McCallf99a6312010-07-21 05:30:47 +00001470
1471 // We push them in the forward order so that they'll be popped in
1472 // the reverse order.
1473 for (CXXRecordDecl::base_class_const_iterator I =
1474 ClassDecl->vbases_begin(), E = ClassDecl->vbases_end();
John McCall5c60a6f2010-02-18 19:59:28 +00001475 I != E; ++I) {
1476 const CXXBaseSpecifier &Base = *I;
1477 CXXRecordDecl *BaseClassDecl
1478 = cast<CXXRecordDecl>(Base.getType()->getAs<RecordType>()->getDecl());
1479
1480 // Ignore trivial destructors.
1481 if (BaseClassDecl->hasTrivialDestructor())
1482 continue;
John McCallf99a6312010-07-21 05:30:47 +00001483
John McCallcda666c2010-07-21 07:22:38 +00001484 EHStack.pushCleanup<CallBaseDtor>(NormalAndEHCleanup,
1485 BaseClassDecl,
1486 /*BaseIsVirtual*/ true);
John McCall5c60a6f2010-02-18 19:59:28 +00001487 }
John McCallf99a6312010-07-21 05:30:47 +00001488
John McCall5c60a6f2010-02-18 19:59:28 +00001489 return;
1490 }
1491
1492 assert(DtorType == Dtor_Base);
John McCallf99a6312010-07-21 05:30:47 +00001493
1494 // Destroy non-virtual bases.
1495 for (CXXRecordDecl::base_class_const_iterator I =
1496 ClassDecl->bases_begin(), E = ClassDecl->bases_end(); I != E; ++I) {
1497 const CXXBaseSpecifier &Base = *I;
1498
1499 // Ignore virtual bases.
1500 if (Base.isVirtual())
1501 continue;
1502
1503 CXXRecordDecl *BaseClassDecl = Base.getType()->getAsCXXRecordDecl();
1504
1505 // Ignore trivial destructors.
1506 if (BaseClassDecl->hasTrivialDestructor())
1507 continue;
John McCall5c60a6f2010-02-18 19:59:28 +00001508
John McCallcda666c2010-07-21 07:22:38 +00001509 EHStack.pushCleanup<CallBaseDtor>(NormalAndEHCleanup,
1510 BaseClassDecl,
1511 /*BaseIsVirtual*/ false);
John McCallf99a6312010-07-21 05:30:47 +00001512 }
1513
1514 // Destroy direct fields.
Anders Carlssonfb404882009-12-24 22:46:43 +00001515 for (CXXRecordDecl::field_iterator I = ClassDecl->field_begin(),
1516 E = ClassDecl->field_end(); I != E; ++I) {
David Blaikie40ed2972012-06-06 20:45:41 +00001517 const FieldDecl *field = *I;
John McCall4bd0fb12011-07-12 16:41:08 +00001518 QualType type = field->getType();
1519 QualType::DestructionKind dtorKind = type.isDestructedType();
1520 if (!dtorKind) continue;
John McCallf99a6312010-07-21 05:30:47 +00001521
Richard Smith921bd202012-02-26 09:11:52 +00001522 // Anonymous union members do not have their destructors called.
1523 const RecordType *RT = type->getAsUnionType();
1524 if (RT && RT->getDecl()->isAnonymousStructOrUnion()) continue;
1525
John McCall4bd0fb12011-07-12 16:41:08 +00001526 CleanupKind cleanupKind = getCleanupKind(dtorKind);
1527 EHStack.pushCleanup<DestroyField>(cleanupKind, field,
1528 getDestroyer(dtorKind),
1529 cleanupKind & EHCleanup);
Anders Carlssonfb404882009-12-24 22:46:43 +00001530 }
Anders Carlssonfb404882009-12-24 22:46:43 +00001531}
1532
John McCallf677a8e2011-07-13 06:10:41 +00001533/// EmitCXXAggrConstructorCall - Emit a loop to call a particular
1534/// constructor for each of several members of an array.
Douglas Gregor05fc5be2010-07-21 01:10:17 +00001535///
John McCallf677a8e2011-07-13 06:10:41 +00001536/// \param ctor the constructor to call for each element
John McCallf677a8e2011-07-13 06:10:41 +00001537/// \param arrayType the type of the array to initialize
1538/// \param arrayBegin an arrayType*
1539/// \param zeroInitialize true if each element should be
1540/// zero-initialized before it is constructed
Anders Carlsson27da15b2010-01-01 20:29:01 +00001541void
John McCallf677a8e2011-07-13 06:10:41 +00001542CodeGenFunction::EmitCXXAggrConstructorCall(const CXXConstructorDecl *ctor,
1543 const ConstantArrayType *arrayType,
1544 llvm::Value *arrayBegin,
1545 CallExpr::const_arg_iterator argBegin,
1546 CallExpr::const_arg_iterator argEnd,
1547 bool zeroInitialize) {
1548 QualType elementType;
1549 llvm::Value *numElements =
1550 emitArrayLength(arrayType, elementType, arrayBegin);
Anders Carlsson27da15b2010-01-01 20:29:01 +00001551
John McCallf677a8e2011-07-13 06:10:41 +00001552 EmitCXXAggrConstructorCall(ctor, numElements, arrayBegin,
1553 argBegin, argEnd, zeroInitialize);
Anders Carlsson27da15b2010-01-01 20:29:01 +00001554}
1555
John McCallf677a8e2011-07-13 06:10:41 +00001556/// EmitCXXAggrConstructorCall - Emit a loop to call a particular
1557/// constructor for each of several members of an array.
1558///
1559/// \param ctor the constructor to call for each element
1560/// \param numElements the number of elements in the array;
John McCall6549b312011-07-13 07:37:11 +00001561/// may be zero
John McCallf677a8e2011-07-13 06:10:41 +00001562/// \param arrayBegin a T*, where T is the type constructed by ctor
1563/// \param zeroInitialize true if each element should be
1564/// zero-initialized before it is constructed
Anders Carlsson27da15b2010-01-01 20:29:01 +00001565void
John McCallf677a8e2011-07-13 06:10:41 +00001566CodeGenFunction::EmitCXXAggrConstructorCall(const CXXConstructorDecl *ctor,
1567 llvm::Value *numElements,
1568 llvm::Value *arrayBegin,
1569 CallExpr::const_arg_iterator argBegin,
1570 CallExpr::const_arg_iterator argEnd,
1571 bool zeroInitialize) {
John McCall6549b312011-07-13 07:37:11 +00001572
1573 // It's legal for numElements to be zero. This can happen both
1574 // dynamically, because x can be zero in 'new A[x]', and statically,
1575 // because of GCC extensions that permit zero-length arrays. There
1576 // are probably legitimate places where we could assume that this
1577 // doesn't happen, but it's not clear that it's worth it.
1578 llvm::BranchInst *zeroCheckBranch = 0;
1579
1580 // Optimize for a constant count.
1581 llvm::ConstantInt *constantCount
1582 = dyn_cast<llvm::ConstantInt>(numElements);
1583 if (constantCount) {
1584 // Just skip out if the constant count is zero.
1585 if (constantCount->isZero()) return;
1586
1587 // Otherwise, emit the check.
1588 } else {
1589 llvm::BasicBlock *loopBB = createBasicBlock("new.ctorloop");
1590 llvm::Value *iszero = Builder.CreateIsNull(numElements, "isempty");
1591 zeroCheckBranch = Builder.CreateCondBr(iszero, loopBB, loopBB);
1592 EmitBlock(loopBB);
1593 }
1594
John McCallf677a8e2011-07-13 06:10:41 +00001595 // Find the end of the array.
1596 llvm::Value *arrayEnd = Builder.CreateInBoundsGEP(arrayBegin, numElements,
1597 "arrayctor.end");
Anders Carlsson27da15b2010-01-01 20:29:01 +00001598
John McCallf677a8e2011-07-13 06:10:41 +00001599 // Enter the loop, setting up a phi for the current location to initialize.
1600 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
1601 llvm::BasicBlock *loopBB = createBasicBlock("arrayctor.loop");
1602 EmitBlock(loopBB);
1603 llvm::PHINode *cur = Builder.CreatePHI(arrayBegin->getType(), 2,
1604 "arrayctor.cur");
1605 cur->addIncoming(arrayBegin, entryBB);
Anders Carlsson27da15b2010-01-01 20:29:01 +00001606
Anders Carlsson27da15b2010-01-01 20:29:01 +00001607 // Inside the loop body, emit the constructor call on the array element.
John McCallf677a8e2011-07-13 06:10:41 +00001608
1609 QualType type = getContext().getTypeDeclType(ctor->getParent());
Anders Carlsson27da15b2010-01-01 20:29:01 +00001610
Douglas Gregor05fc5be2010-07-21 01:10:17 +00001611 // Zero initialize the storage, if requested.
John McCallf677a8e2011-07-13 06:10:41 +00001612 if (zeroInitialize)
1613 EmitNullInitialization(cur, type);
Douglas Gregor05fc5be2010-07-21 01:10:17 +00001614
Anders Carlsson27da15b2010-01-01 20:29:01 +00001615 // C++ [class.temporary]p4:
1616 // There are two contexts in which temporaries are destroyed at a different
1617 // point than the end of the full-expression. The first context is when a
1618 // default constructor is called to initialize an element of an array.
1619 // If the constructor has one or more default arguments, the destruction of
1620 // every temporary created in a default argument expression is sequenced
1621 // before the construction of the next array element, if any.
1622
Anders Carlssonb9fd57f2010-03-30 03:14:41 +00001623 {
John McCallbd309292010-07-06 01:34:17 +00001624 RunCleanupsScope Scope(*this);
Anders Carlsson27da15b2010-01-01 20:29:01 +00001625
John McCallf677a8e2011-07-13 06:10:41 +00001626 // Evaluate the constructor and its arguments in a regular
1627 // partial-destroy cleanup.
David Blaikiebbafb8a2012-03-11 07:00:24 +00001628 if (getLangOpts().Exceptions &&
John McCallf677a8e2011-07-13 06:10:41 +00001629 !ctor->getParent()->hasTrivialDestructor()) {
1630 Destroyer *destroyer = destroyCXXObject;
1631 pushRegularPartialArrayCleanup(arrayBegin, cur, type, *destroyer);
1632 }
1633
1634 EmitCXXConstructorCall(ctor, Ctor_Complete, /*ForVirtualBase=*/ false,
Douglas Gregor61535002013-01-31 05:50:40 +00001635 /*Delegating=*/false, cur, argBegin, argEnd);
Anders Carlssonb9fd57f2010-03-30 03:14:41 +00001636 }
Anders Carlsson27da15b2010-01-01 20:29:01 +00001637
John McCallf677a8e2011-07-13 06:10:41 +00001638 // Go to the next element.
1639 llvm::Value *next =
1640 Builder.CreateInBoundsGEP(cur, llvm::ConstantInt::get(SizeTy, 1),
1641 "arrayctor.next");
1642 cur->addIncoming(next, Builder.GetInsertBlock());
Anders Carlsson27da15b2010-01-01 20:29:01 +00001643
John McCallf677a8e2011-07-13 06:10:41 +00001644 // Check whether that's the end of the loop.
1645 llvm::Value *done = Builder.CreateICmpEQ(next, arrayEnd, "arrayctor.done");
1646 llvm::BasicBlock *contBB = createBasicBlock("arrayctor.cont");
1647 Builder.CreateCondBr(done, contBB, loopBB);
Anders Carlsson27da15b2010-01-01 20:29:01 +00001648
John McCall6549b312011-07-13 07:37:11 +00001649 // Patch the earlier check to skip over the loop.
1650 if (zeroCheckBranch) zeroCheckBranch->setSuccessor(0, contBB);
1651
John McCallf677a8e2011-07-13 06:10:41 +00001652 EmitBlock(contBB);
Anders Carlsson27da15b2010-01-01 20:29:01 +00001653}
1654
John McCall82fe67b2011-07-09 01:37:26 +00001655void CodeGenFunction::destroyCXXObject(CodeGenFunction &CGF,
1656 llvm::Value *addr,
1657 QualType type) {
1658 const RecordType *rtype = type->castAs<RecordType>();
1659 const CXXRecordDecl *record = cast<CXXRecordDecl>(rtype->getDecl());
1660 const CXXDestructorDecl *dtor = record->getDestructor();
1661 assert(!dtor->isTrivial());
1662 CGF.EmitCXXDestructorCall(dtor, Dtor_Complete, /*for vbase*/ false,
Douglas Gregor61535002013-01-31 05:50:40 +00001663 /*Delegating=*/false, addr);
John McCall82fe67b2011-07-09 01:37:26 +00001664}
1665
Anders Carlsson27da15b2010-01-01 20:29:01 +00001666void
1667CodeGenFunction::EmitCXXConstructorCall(const CXXConstructorDecl *D,
Anders Carlssone11f9ce2010-05-02 23:20:53 +00001668 CXXCtorType Type, bool ForVirtualBase,
Douglas Gregor61535002013-01-31 05:50:40 +00001669 bool Delegating,
Anders Carlsson27da15b2010-01-01 20:29:01 +00001670 llvm::Value *This,
1671 CallExpr::const_arg_iterator ArgBeg,
1672 CallExpr::const_arg_iterator ArgEnd) {
Timur Iskhodzhanov57cbe5c2013-02-27 13:46:31 +00001673 // If this is a trivial constructor, just emit what's needed.
John McCallca972cd2010-02-06 00:25:16 +00001674 if (D->isTrivial()) {
1675 if (ArgBeg == ArgEnd) {
1676 // Trivial default constructor, no codegen required.
1677 assert(D->isDefaultConstructor() &&
1678 "trivial 0-arg ctor not a default ctor");
Anders Carlsson27da15b2010-01-01 20:29:01 +00001679 return;
1680 }
John McCallca972cd2010-02-06 00:25:16 +00001681
1682 assert(ArgBeg + 1 == ArgEnd && "unexpected argcount for trivial ctor");
Sebastian Redl22653ba2011-08-30 19:58:05 +00001683 assert(D->isCopyOrMoveConstructor() &&
1684 "trivial 1-arg ctor not a copy/move ctor");
John McCallca972cd2010-02-06 00:25:16 +00001685
John McCallca972cd2010-02-06 00:25:16 +00001686 const Expr *E = (*ArgBeg);
1687 QualType Ty = E->getType();
1688 llvm::Value *Src = EmitLValue(E).getAddress();
1689 EmitAggregateCopy(This, Src, Ty);
Anders Carlsson27da15b2010-01-01 20:29:01 +00001690 return;
1691 }
1692
Reid Kleckner89077a12013-12-17 19:46:40 +00001693 // C++11 [class.mfct.non-static]p2:
1694 // If a non-static member function of a class X is called for an object that
1695 // is not of type X, or of a type derived from X, the behavior is undefined.
1696 // FIXME: Provide a source location here.
1697 EmitTypeCheck(CodeGenFunction::TCK_ConstructorCall, SourceLocation(), This,
1698 getContext().getRecordType(D->getParent()));
1699
1700 CallArgList Args;
1701
1702 // Push the this ptr.
1703 Args.add(RValue::get(This), D->getThisType(getContext()));
1704
1705 // Add the rest of the user-supplied arguments.
1706 const FunctionProtoType *FPT = D->getType()->castAs<FunctionProtoType>();
1707 EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
1708
1709 // Insert any ABI-specific implicit constructor arguments.
1710 unsigned ExtraArgs = CGM.getCXXABI().addImplicitConstructorArgs(
1711 *this, D, Type, ForVirtualBase, Delegating, Args);
1712
1713 // Emit the call.
1714 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(D, Type);
Reid Kleckner89077a12013-12-17 19:46:40 +00001715 const CGFunctionInfo &Info =
Reid Kleckner314ef7b2014-02-01 00:04:45 +00001716 CGM.getTypes().arrangeCXXConstructorCall(Args, D, Type, ExtraArgs);
Reid Kleckner89077a12013-12-17 19:46:40 +00001717 EmitCall(Info, Callee, ReturnValueSlot(), Args, D);
Anders Carlsson27da15b2010-01-01 20:29:01 +00001718}
1719
John McCallf8ff7b92010-02-23 00:48:20 +00001720void
Fariborz Jahaniane988bda2010-11-13 21:53:34 +00001721CodeGenFunction::EmitSynthesizedCXXCopyCtorCall(const CXXConstructorDecl *D,
1722 llvm::Value *This, llvm::Value *Src,
1723 CallExpr::const_arg_iterator ArgBeg,
1724 CallExpr::const_arg_iterator ArgEnd) {
1725 if (D->isTrivial()) {
1726 assert(ArgBeg + 1 == ArgEnd && "unexpected argcount for trivial ctor");
Sebastian Redl22653ba2011-08-30 19:58:05 +00001727 assert(D->isCopyOrMoveConstructor() &&
1728 "trivial 1-arg ctor not a copy/move ctor");
Fariborz Jahaniane988bda2010-11-13 21:53:34 +00001729 EmitAggregateCopy(This, Src, (*ArgBeg)->getType());
1730 return;
1731 }
Nick Lewycky8b4e3792013-09-11 02:03:20 +00001732 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(D, clang::Ctor_Complete);
Fariborz Jahaniane988bda2010-11-13 21:53:34 +00001733 assert(D->isInstance() &&
1734 "Trying to emit a member call expr on a static method!");
1735
Reid Kleckner739756c2013-12-04 19:23:12 +00001736 const FunctionProtoType *FPT = D->getType()->castAs<FunctionProtoType>();
Fariborz Jahaniane988bda2010-11-13 21:53:34 +00001737
1738 CallArgList Args;
1739
1740 // Push the this ptr.
Eli Friedman43dca6a2011-05-02 17:57:46 +00001741 Args.add(RValue::get(This), D->getThisType(getContext()));
Fariborz Jahaniane988bda2010-11-13 21:53:34 +00001742
Fariborz Jahaniane988bda2010-11-13 21:53:34 +00001743 // Push the src ptr.
Alp Toker9cacbab2014-01-20 20:26:09 +00001744 QualType QT = *(FPT->param_type_begin());
Chris Lattner2192fe52011-07-18 04:24:23 +00001745 llvm::Type *t = CGM.getTypes().ConvertType(QT);
Fariborz Jahaniane988bda2010-11-13 21:53:34 +00001746 Src = Builder.CreateBitCast(Src, t);
Eli Friedman43dca6a2011-05-02 17:57:46 +00001747 Args.add(RValue::get(Src), QT);
Reid Kleckner739756c2013-12-04 19:23:12 +00001748
Fariborz Jahaniane988bda2010-11-13 21:53:34 +00001749 // Skip over first argument (Src).
Alp Toker9cacbab2014-01-20 20:26:09 +00001750 EmitCallArgs(Args, FPT->isVariadic(), FPT->param_type_begin() + 1,
1751 FPT->param_type_end(), ArgBeg + 1, ArgEnd);
Reid Kleckner739756c2013-12-04 19:23:12 +00001752
John McCall8dda7b22012-07-07 06:41:13 +00001753 EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, RequiredArgs::All),
1754 Callee, ReturnValueSlot(), Args, D);
Fariborz Jahaniane988bda2010-11-13 21:53:34 +00001755}
1756
1757void
John McCallf8ff7b92010-02-23 00:48:20 +00001758CodeGenFunction::EmitDelegateCXXConstructorCall(const CXXConstructorDecl *Ctor,
1759 CXXCtorType CtorType,
Nick Lewycky2d84e842013-10-02 02:29:49 +00001760 const FunctionArgList &Args,
1761 SourceLocation Loc) {
John McCallf8ff7b92010-02-23 00:48:20 +00001762 CallArgList DelegateArgs;
1763
1764 FunctionArgList::const_iterator I = Args.begin(), E = Args.end();
1765 assert(I != E && "no parameters to constructor");
1766
1767 // this
Eli Friedman43dca6a2011-05-02 17:57:46 +00001768 DelegateArgs.add(RValue::get(LoadCXXThis()), (*I)->getType());
John McCallf8ff7b92010-02-23 00:48:20 +00001769 ++I;
1770
1771 // vtt
Timur Iskhodzhanov57cbe5c2013-02-27 13:46:31 +00001772 if (llvm::Value *VTT = GetVTTParameter(GlobalDecl(Ctor, CtorType),
Douglas Gregor61535002013-01-31 05:50:40 +00001773 /*ForVirtualBase=*/false,
1774 /*Delegating=*/true)) {
John McCallf8ff7b92010-02-23 00:48:20 +00001775 QualType VoidPP = getContext().getPointerType(getContext().VoidPtrTy);
Eli Friedman43dca6a2011-05-02 17:57:46 +00001776 DelegateArgs.add(RValue::get(VTT), VoidPP);
John McCallf8ff7b92010-02-23 00:48:20 +00001777
Peter Collingbourne66f82e62013-06-28 20:45:28 +00001778 if (CGM.getCXXABI().NeedsVTTParameter(CurGD)) {
John McCallf8ff7b92010-02-23 00:48:20 +00001779 assert(I != E && "cannot skip vtt parameter, already done with args");
John McCalla738c252011-03-09 04:27:21 +00001780 assert((*I)->getType() == VoidPP && "skipping parameter not of vtt type");
John McCallf8ff7b92010-02-23 00:48:20 +00001781 ++I;
1782 }
1783 }
1784
1785 // Explicit arguments.
1786 for (; I != E; ++I) {
John McCall32ea9692011-03-11 20:59:21 +00001787 const VarDecl *param = *I;
Nick Lewycky2d84e842013-10-02 02:29:49 +00001788 // FIXME: per-argument source location
1789 EmitDelegateCallArg(DelegateArgs, param, Loc);
John McCallf8ff7b92010-02-23 00:48:20 +00001790 }
1791
Manman Ren01754612013-03-20 16:59:38 +00001792 llvm::Value *Callee = CGM.GetAddrOfCXXConstructor(Ctor, CtorType);
John McCalla729c622012-02-17 03:33:10 +00001793 EmitCall(CGM.getTypes().arrangeCXXConstructorDeclaration(Ctor, CtorType),
Manman Ren01754612013-03-20 16:59:38 +00001794 Callee, ReturnValueSlot(), DelegateArgs, Ctor);
John McCallf8ff7b92010-02-23 00:48:20 +00001795}
1796
Alexis Hunt9d47faf2011-05-03 23:05:34 +00001797namespace {
1798 struct CallDelegatingCtorDtor : EHScopeStack::Cleanup {
1799 const CXXDestructorDecl *Dtor;
1800 llvm::Value *Addr;
1801 CXXDtorType Type;
1802
1803 CallDelegatingCtorDtor(const CXXDestructorDecl *D, llvm::Value *Addr,
1804 CXXDtorType Type)
1805 : Dtor(D), Addr(Addr), Type(Type) {}
1806
John McCall30317fd2011-07-12 20:27:29 +00001807 void Emit(CodeGenFunction &CGF, Flags flags) {
Alexis Hunt9d47faf2011-05-03 23:05:34 +00001808 CGF.EmitCXXDestructorCall(Dtor, Type, /*ForVirtualBase=*/false,
Douglas Gregor61535002013-01-31 05:50:40 +00001809 /*Delegating=*/true, Addr);
Alexis Hunt9d47faf2011-05-03 23:05:34 +00001810 }
1811 };
1812}
1813
Alexis Hunt61bc1732011-05-01 07:04:31 +00001814void
1815CodeGenFunction::EmitDelegatingCXXConstructorCall(const CXXConstructorDecl *Ctor,
1816 const FunctionArgList &Args) {
1817 assert(Ctor->isDelegatingConstructor());
1818
1819 llvm::Value *ThisPtr = LoadCXXThis();
1820
Eli Friedmanc1d85b92011-12-03 00:54:26 +00001821 QualType Ty = getContext().getTagDeclType(Ctor->getParent());
Eli Friedman38cd36d2011-12-03 02:13:40 +00001822 CharUnits Alignment = getContext().getTypeAlignInChars(Ty);
John McCall31168b02011-06-15 23:02:42 +00001823 AggValueSlot AggSlot =
Eli Friedmanc1d85b92011-12-03 00:54:26 +00001824 AggValueSlot::forAddr(ThisPtr, Alignment, Qualifiers(),
John McCall8d6fc952011-08-25 20:40:09 +00001825 AggValueSlot::IsDestructed,
John McCalla5efa732011-08-25 23:04:34 +00001826 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier615ed1a2012-03-29 17:37:10 +00001827 AggValueSlot::IsNotAliased);
Alexis Hunt61bc1732011-05-01 07:04:31 +00001828
1829 EmitAggExpr(Ctor->init_begin()[0]->getInit(), AggSlot);
Alexis Hunt61bc1732011-05-01 07:04:31 +00001830
Alexis Hunt9d47faf2011-05-03 23:05:34 +00001831 const CXXRecordDecl *ClassDecl = Ctor->getParent();
David Blaikiebbafb8a2012-03-11 07:00:24 +00001832 if (CGM.getLangOpts().Exceptions && !ClassDecl->hasTrivialDestructor()) {
Alexis Hunt9d47faf2011-05-03 23:05:34 +00001833 CXXDtorType Type =
1834 CurGD.getCtorType() == Ctor_Complete ? Dtor_Complete : Dtor_Base;
1835
1836 EHStack.pushCleanup<CallDelegatingCtorDtor>(EHCleanup,
1837 ClassDecl->getDestructor(),
1838 ThisPtr, Type);
1839 }
1840}
Alexis Hunt61bc1732011-05-01 07:04:31 +00001841
Anders Carlsson27da15b2010-01-01 20:29:01 +00001842void CodeGenFunction::EmitCXXDestructorCall(const CXXDestructorDecl *DD,
1843 CXXDtorType Type,
Anders Carlssonf8a71f02010-05-02 23:29:11 +00001844 bool ForVirtualBase,
Douglas Gregor61535002013-01-31 05:50:40 +00001845 bool Delegating,
Anders Carlsson27da15b2010-01-01 20:29:01 +00001846 llvm::Value *This) {
Reid Kleckner6fe771a2013-12-13 00:53:54 +00001847 CGM.getCXXABI().EmitDestructorCall(*this, DD, Type, ForVirtualBase,
1848 Delegating, This);
Anders Carlsson27da15b2010-01-01 20:29:01 +00001849}
1850
John McCall53cad2e2010-07-21 01:41:18 +00001851namespace {
John McCallcda666c2010-07-21 07:22:38 +00001852 struct CallLocalDtor : EHScopeStack::Cleanup {
John McCall53cad2e2010-07-21 01:41:18 +00001853 const CXXDestructorDecl *Dtor;
1854 llvm::Value *Addr;
1855
1856 CallLocalDtor(const CXXDestructorDecl *D, llvm::Value *Addr)
1857 : Dtor(D), Addr(Addr) {}
1858
John McCall30317fd2011-07-12 20:27:29 +00001859 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall53cad2e2010-07-21 01:41:18 +00001860 CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete,
Douglas Gregor61535002013-01-31 05:50:40 +00001861 /*ForVirtualBase=*/false,
1862 /*Delegating=*/false, Addr);
John McCall53cad2e2010-07-21 01:41:18 +00001863 }
1864 };
1865}
1866
John McCall8680f872010-07-21 06:29:51 +00001867void CodeGenFunction::PushDestructorCleanup(const CXXDestructorDecl *D,
1868 llvm::Value *Addr) {
John McCallcda666c2010-07-21 07:22:38 +00001869 EHStack.pushCleanup<CallLocalDtor>(NormalAndEHCleanup, D, Addr);
John McCall8680f872010-07-21 06:29:51 +00001870}
1871
John McCallbd309292010-07-06 01:34:17 +00001872void CodeGenFunction::PushDestructorCleanup(QualType T, llvm::Value *Addr) {
1873 CXXRecordDecl *ClassDecl = T->getAsCXXRecordDecl();
1874 if (!ClassDecl) return;
1875 if (ClassDecl->hasTrivialDestructor()) return;
1876
1877 const CXXDestructorDecl *D = ClassDecl->getDestructor();
John McCalla85af562011-04-28 02:15:35 +00001878 assert(D && D->isUsed() && "destructor not marked as used!");
John McCall8680f872010-07-21 06:29:51 +00001879 PushDestructorCleanup(D, Addr);
John McCallbd309292010-07-06 01:34:17 +00001880}
1881
Anders Carlssone87fae92010-03-28 19:40:00 +00001882void
1883CodeGenFunction::InitializeVTablePointer(BaseSubobject Base,
Anders Carlsson652758c2010-04-20 05:22:15 +00001884 const CXXRecordDecl *NearestVBase,
Ken Dyck3fb4c892011-03-23 01:04:18 +00001885 CharUnits OffsetFromNearestVBase,
Anders Carlssone87fae92010-03-28 19:40:00 +00001886 const CXXRecordDecl *VTableClass) {
Anders Carlssone87fae92010-03-28 19:40:00 +00001887 // Compute the address point.
Timur Iskhodzhanov8b5987e2013-09-27 14:48:01 +00001888 bool NeedsVirtualOffset;
1889 llvm::Value *VTableAddressPoint =
1890 CGM.getCXXABI().getVTableAddressPointInStructor(
1891 *this, VTableClass, Base, NearestVBase, NeedsVirtualOffset);
1892 if (!VTableAddressPoint)
1893 return;
Anders Carlssone87fae92010-03-28 19:40:00 +00001894
Anders Carlsson6a0227d2010-04-20 16:22:16 +00001895 // Compute where to store the address point.
Anders Carlssonc58fb552010-05-03 00:29:58 +00001896 llvm::Value *VirtualOffset = 0;
Ken Dyckcfc332c2011-03-23 00:45:26 +00001897 CharUnits NonVirtualOffset = CharUnits::Zero();
Anders Carlsson91baecf2010-04-20 18:05:10 +00001898
Timur Iskhodzhanov8b5987e2013-09-27 14:48:01 +00001899 if (NeedsVirtualOffset) {
Anders Carlsson91baecf2010-04-20 18:05:10 +00001900 // We need to use the virtual base offset offset because the virtual base
1901 // might have a different offset in the most derived class.
Reid Klecknerd8cbeec2013-05-29 18:02:47 +00001902 VirtualOffset = CGM.getCXXABI().GetVirtualBaseClassOffset(*this,
1903 LoadCXXThis(),
1904 VTableClass,
1905 NearestVBase);
Ken Dyck3fb4c892011-03-23 01:04:18 +00001906 NonVirtualOffset = OffsetFromNearestVBase;
Anders Carlsson91baecf2010-04-20 18:05:10 +00001907 } else {
Anders Carlssonc58fb552010-05-03 00:29:58 +00001908 // We can just use the base offset in the complete class.
Ken Dyck16ffcac2011-03-24 01:21:01 +00001909 NonVirtualOffset = Base.getBaseOffset();
Anders Carlsson91baecf2010-04-20 18:05:10 +00001910 }
Anders Carlssonc58fb552010-05-03 00:29:58 +00001911
1912 // Apply the offsets.
1913 llvm::Value *VTableField = LoadCXXThis();
1914
Ken Dyckcfc332c2011-03-23 00:45:26 +00001915 if (!NonVirtualOffset.isZero() || VirtualOffset)
Anders Carlssonc58fb552010-05-03 00:29:58 +00001916 VTableField = ApplyNonVirtualAndVirtualOffset(*this, VTableField,
1917 NonVirtualOffset,
1918 VirtualOffset);
Anders Carlsson6a0227d2010-04-20 16:22:16 +00001919
Anders Carlssone87fae92010-03-28 19:40:00 +00001920 // Finally, store the address point.
Chris Lattner2192fe52011-07-18 04:24:23 +00001921 llvm::Type *AddressPointPtrTy =
Anders Carlssone87fae92010-03-28 19:40:00 +00001922 VTableAddressPoint->getType()->getPointerTo();
1923 VTableField = Builder.CreateBitCast(VTableField, AddressPointPtrTy);
Kostya Serebryany141e46f2012-03-26 17:03:51 +00001924 llvm::StoreInst *Store = Builder.CreateStore(VTableAddressPoint, VTableField);
1925 CGM.DecorateInstruction(Store, CGM.getTBAAInfoForVTablePtr());
Anders Carlssone87fae92010-03-28 19:40:00 +00001926}
1927
Anders Carlssond5895932010-03-28 21:07:49 +00001928void
1929CodeGenFunction::InitializeVTablePointers(BaseSubobject Base,
Anders Carlsson652758c2010-04-20 05:22:15 +00001930 const CXXRecordDecl *NearestVBase,
Ken Dyck3fb4c892011-03-23 01:04:18 +00001931 CharUnits OffsetFromNearestVBase,
Anders Carlssond5895932010-03-28 21:07:49 +00001932 bool BaseIsNonVirtualPrimaryBase,
Anders Carlssond5895932010-03-28 21:07:49 +00001933 const CXXRecordDecl *VTableClass,
1934 VisitedVirtualBasesSetTy& VBases) {
1935 // If this base is a non-virtual primary base the address point has already
1936 // been set.
1937 if (!BaseIsNonVirtualPrimaryBase) {
1938 // Initialize the vtable pointer for this base.
Anders Carlssonc4d0d0f2010-05-03 00:07:07 +00001939 InitializeVTablePointer(Base, NearestVBase, OffsetFromNearestVBase,
Timur Iskhodzhanovd8fa10d2013-08-21 17:33:16 +00001940 VTableClass);
Anders Carlssond5895932010-03-28 21:07:49 +00001941 }
1942
1943 const CXXRecordDecl *RD = Base.getBase();
1944
1945 // Traverse bases.
1946 for (CXXRecordDecl::base_class_const_iterator I = RD->bases_begin(),
1947 E = RD->bases_end(); I != E; ++I) {
1948 CXXRecordDecl *BaseDecl
1949 = cast<CXXRecordDecl>(I->getType()->getAs<RecordType>()->getDecl());
1950
1951 // Ignore classes without a vtable.
1952 if (!BaseDecl->isDynamicClass())
1953 continue;
1954
Ken Dyck3fb4c892011-03-23 01:04:18 +00001955 CharUnits BaseOffset;
1956 CharUnits BaseOffsetFromNearestVBase;
Anders Carlsson948d3f42010-03-29 01:16:41 +00001957 bool BaseDeclIsNonVirtualPrimaryBase;
Anders Carlssond5895932010-03-28 21:07:49 +00001958
1959 if (I->isVirtual()) {
1960 // Check if we've visited this virtual base before.
1961 if (!VBases.insert(BaseDecl))
1962 continue;
1963
1964 const ASTRecordLayout &Layout =
1965 getContext().getASTRecordLayout(VTableClass);
1966
Ken Dyck3fb4c892011-03-23 01:04:18 +00001967 BaseOffset = Layout.getVBaseClassOffset(BaseDecl);
1968 BaseOffsetFromNearestVBase = CharUnits::Zero();
Anders Carlsson948d3f42010-03-29 01:16:41 +00001969 BaseDeclIsNonVirtualPrimaryBase = false;
Anders Carlssond5895932010-03-28 21:07:49 +00001970 } else {
1971 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD);
1972
Ken Dyck16ffcac2011-03-24 01:21:01 +00001973 BaseOffset = Base.getBaseOffset() + Layout.getBaseClassOffset(BaseDecl);
Anders Carlssonc4d0d0f2010-05-03 00:07:07 +00001974 BaseOffsetFromNearestVBase =
Ken Dyck3fb4c892011-03-23 01:04:18 +00001975 OffsetFromNearestVBase + Layout.getBaseClassOffset(BaseDecl);
Anders Carlsson948d3f42010-03-29 01:16:41 +00001976 BaseDeclIsNonVirtualPrimaryBase = Layout.getPrimaryBase() == BaseDecl;
Anders Carlssond5895932010-03-28 21:07:49 +00001977 }
1978
Ken Dyck16ffcac2011-03-24 01:21:01 +00001979 InitializeVTablePointers(BaseSubobject(BaseDecl, BaseOffset),
Anders Carlsson652758c2010-04-20 05:22:15 +00001980 I->isVirtual() ? BaseDecl : NearestVBase,
Anders Carlssonc4d0d0f2010-05-03 00:07:07 +00001981 BaseOffsetFromNearestVBase,
Anders Carlsson948d3f42010-03-29 01:16:41 +00001982 BaseDeclIsNonVirtualPrimaryBase,
Timur Iskhodzhanovd8fa10d2013-08-21 17:33:16 +00001983 VTableClass, VBases);
Anders Carlssond5895932010-03-28 21:07:49 +00001984 }
1985}
1986
1987void CodeGenFunction::InitializeVTablePointers(const CXXRecordDecl *RD) {
1988 // Ignore classes without a vtable.
Anders Carlsson1f9348c2010-03-26 04:39:42 +00001989 if (!RD->isDynamicClass())
Anders Carlsson27da15b2010-01-01 20:29:01 +00001990 return;
1991
Anders Carlssond5895932010-03-28 21:07:49 +00001992 // Initialize the vtable pointers for this class and all of its bases.
1993 VisitedVirtualBasesSetTy VBases;
Ken Dyck16ffcac2011-03-24 01:21:01 +00001994 InitializeVTablePointers(BaseSubobject(RD, CharUnits::Zero()),
1995 /*NearestVBase=*/0,
Ken Dyck3fb4c892011-03-23 01:04:18 +00001996 /*OffsetFromNearestVBase=*/CharUnits::Zero(),
Timur Iskhodzhanovd8fa10d2013-08-21 17:33:16 +00001997 /*BaseIsNonVirtualPrimaryBase=*/false, RD, VBases);
Timur Iskhodzhanovb6487322013-10-09 18:16:58 +00001998
1999 if (RD->getNumVBases())
2000 CGM.getCXXABI().initializeHiddenVirtualInheritanceMembers(*this, RD);
Anders Carlsson27da15b2010-01-01 20:29:01 +00002001}
Dan Gohman8fc50c22010-10-26 18:44:08 +00002002
2003llvm::Value *CodeGenFunction::GetVTablePtr(llvm::Value *This,
Chris Lattner2192fe52011-07-18 04:24:23 +00002004 llvm::Type *Ty) {
Dan Gohman8fc50c22010-10-26 18:44:08 +00002005 llvm::Value *VTablePtrSrc = Builder.CreateBitCast(This, Ty->getPointerTo());
Kostya Serebryany141e46f2012-03-26 17:03:51 +00002006 llvm::Instruction *VTable = Builder.CreateLoad(VTablePtrSrc, "vtable");
2007 CGM.DecorateInstruction(VTable, CGM.getTBAAInfoForVTablePtr());
2008 return VTable;
Dan Gohman8fc50c22010-10-26 18:44:08 +00002009}
Anders Carlssonc36783e2011-05-08 20:32:23 +00002010
Anders Carlssonc36783e2011-05-08 20:32:23 +00002011
2012// FIXME: Ideally Expr::IgnoreParenNoopCasts should do this, but it doesn't do
2013// quite what we want.
2014static const Expr *skipNoOpCastsAndParens(const Expr *E) {
2015 while (true) {
2016 if (const ParenExpr *PE = dyn_cast<ParenExpr>(E)) {
2017 E = PE->getSubExpr();
2018 continue;
2019 }
2020
2021 if (const CastExpr *CE = dyn_cast<CastExpr>(E)) {
2022 if (CE->getCastKind() == CK_NoOp) {
2023 E = CE->getSubExpr();
2024 continue;
2025 }
2026 }
2027 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
2028 if (UO->getOpcode() == UO_Extension) {
2029 E = UO->getSubExpr();
2030 continue;
2031 }
2032 }
2033 return E;
2034 }
2035}
2036
Benjamin Kramer7463ed72013-08-25 22:46:27 +00002037bool
2038CodeGenFunction::CanDevirtualizeMemberFunctionCall(const Expr *Base,
2039 const CXXMethodDecl *MD) {
2040 // When building with -fapple-kext, all calls must go through the vtable since
2041 // the kernel linker can do runtime patching of vtables.
2042 if (getLangOpts().AppleKext)
2043 return false;
2044
Anders Carlssonc36783e2011-05-08 20:32:23 +00002045 // If the most derived class is marked final, we know that no subclass can
2046 // override this member function and so we can devirtualize it. For example:
2047 //
2048 // struct A { virtual void f(); }
2049 // struct B final : A { };
2050 //
2051 // void f(B *b) {
2052 // b->f();
2053 // }
2054 //
Benjamin Kramer7463ed72013-08-25 22:46:27 +00002055 const CXXRecordDecl *MostDerivedClassDecl = Base->getBestDynamicClassType();
Anders Carlssonc36783e2011-05-08 20:32:23 +00002056 if (MostDerivedClassDecl->hasAttr<FinalAttr>())
2057 return true;
2058
2059 // If the member function is marked 'final', we know that it can't be
2060 // overridden and can therefore devirtualize it.
2061 if (MD->hasAttr<FinalAttr>())
2062 return true;
2063
2064 // Similarly, if the class itself is marked 'final' it can't be overridden
2065 // and we can therefore devirtualize the member function call.
2066 if (MD->getParent()->hasAttr<FinalAttr>())
2067 return true;
2068
2069 Base = skipNoOpCastsAndParens(Base);
2070 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) {
2071 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
2072 // This is a record decl. We know the type and can devirtualize it.
2073 return VD->getType()->isRecordType();
2074 }
2075
2076 return false;
2077 }
Benjamin Kramer7463ed72013-08-25 22:46:27 +00002078
2079 // We can devirtualize calls on an object accessed by a class member access
2080 // expression, since by C++11 [basic.life]p6 we know that it can't refer to
2081 // a derived class object constructed in the same location.
2082 if (const MemberExpr *ME = dyn_cast<MemberExpr>(Base))
2083 if (const ValueDecl *VD = dyn_cast<ValueDecl>(ME->getMemberDecl()))
2084 return VD->getType()->isRecordType();
2085
Anders Carlssonc36783e2011-05-08 20:32:23 +00002086 // We can always devirtualize calls on temporary object expressions.
2087 if (isa<CXXConstructExpr>(Base))
2088 return true;
2089
2090 // And calls on bound temporaries.
2091 if (isa<CXXBindTemporaryExpr>(Base))
2092 return true;
2093
2094 // Check if this is a call expr that returns a record type.
2095 if (const CallExpr *CE = dyn_cast<CallExpr>(Base))
2096 return CE->getCallReturnType()->isRecordType();
2097
2098 // We can't devirtualize the call.
2099 return false;
2100}
2101
Anders Carlssonc36783e2011-05-08 20:32:23 +00002102llvm::Value *
2103CodeGenFunction::EmitCXXOperatorMemberCallee(const CXXOperatorCallExpr *E,
2104 const CXXMethodDecl *MD,
2105 llvm::Value *This) {
John McCalla729c622012-02-17 03:33:10 +00002106 llvm::FunctionType *fnType =
2107 CGM.getTypes().GetFunctionType(
2108 CGM.getTypes().arrangeCXXMethodDeclaration(MD));
Anders Carlssonc36783e2011-05-08 20:32:23 +00002109
Benjamin Kramer7463ed72013-08-25 22:46:27 +00002110 if (MD->isVirtual() && !CanDevirtualizeMemberFunctionCall(E->getArg(0), MD))
Timur Iskhodzhanov88fd4392013-08-21 06:25:03 +00002111 return CGM.getCXXABI().getVirtualFunctionPointer(*this, MD, This, fnType);
Anders Carlssonc36783e2011-05-08 20:32:23 +00002112
John McCalla729c622012-02-17 03:33:10 +00002113 return CGM.GetAddrOfFunction(MD, fnType);
Anders Carlssonc36783e2011-05-08 20:32:23 +00002114}
Eli Friedman5a6d5072012-02-16 01:37:33 +00002115
Faisal Vali571df122013-09-29 08:45:24 +00002116void CodeGenFunction::EmitForwardingCallToLambda(
2117 const CXXMethodDecl *callOperator,
2118 CallArgList &callArgs) {
Eli Friedman5b446882012-02-16 03:47:28 +00002119 // Get the address of the call operator.
John McCall8dda7b22012-07-07 06:41:13 +00002120 const CGFunctionInfo &calleeFnInfo =
2121 CGM.getTypes().arrangeCXXMethodDeclaration(callOperator);
2122 llvm::Value *callee =
2123 CGM.GetAddrOfFunction(GlobalDecl(callOperator),
2124 CGM.getTypes().GetFunctionType(calleeFnInfo));
Eli Friedman5b446882012-02-16 03:47:28 +00002125
John McCall8dda7b22012-07-07 06:41:13 +00002126 // Prepare the return slot.
2127 const FunctionProtoType *FPT =
2128 callOperator->getType()->castAs<FunctionProtoType>();
Alp Toker314cc812014-01-25 16:55:45 +00002129 QualType resultType = FPT->getReturnType();
John McCall8dda7b22012-07-07 06:41:13 +00002130 ReturnValueSlot returnSlot;
2131 if (!resultType->isVoidType() &&
2132 calleeFnInfo.getReturnInfo().getKind() == ABIArgInfo::Indirect &&
John McCall47fb9502013-03-07 21:37:08 +00002133 !hasScalarEvaluationKind(calleeFnInfo.getReturnType()))
John McCall8dda7b22012-07-07 06:41:13 +00002134 returnSlot = ReturnValueSlot(ReturnValue, resultType.isVolatileQualified());
2135
2136 // We don't need to separately arrange the call arguments because
2137 // the call can't be variadic anyway --- it's impossible to forward
2138 // variadic arguments.
Eli Friedman5b446882012-02-16 03:47:28 +00002139
2140 // Now emit our call.
John McCall8dda7b22012-07-07 06:41:13 +00002141 RValue RV = EmitCall(calleeFnInfo, callee, returnSlot,
2142 callArgs, callOperator);
Eli Friedman5b446882012-02-16 03:47:28 +00002143
John McCall8dda7b22012-07-07 06:41:13 +00002144 // If necessary, copy the returned value into the slot.
2145 if (!resultType->isVoidType() && returnSlot.isNull())
2146 EmitReturnOfRValue(RV, resultType);
Eli Friedmanf5f4d2f2012-12-13 23:37:17 +00002147 else
2148 EmitBranchThroughCleanup(ReturnBlock);
Eli Friedman5b446882012-02-16 03:47:28 +00002149}
2150
Eli Friedman2495ab02012-02-25 02:48:22 +00002151void CodeGenFunction::EmitLambdaBlockInvokeBody() {
2152 const BlockDecl *BD = BlockInfo->getBlockDecl();
2153 const VarDecl *variable = BD->capture_begin()->getVariable();
2154 const CXXRecordDecl *Lambda = variable->getType()->getAsCXXRecordDecl();
2155
2156 // Start building arguments for forwarding call
2157 CallArgList CallArgs;
2158
2159 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda));
2160 llvm::Value *ThisPtr = GetAddrOfBlockDecl(variable, false);
2161 CallArgs.add(RValue::get(ThisPtr), ThisType);
2162
2163 // Add the rest of the parameters.
Aaron Ballmanb2b8b1d2014-03-07 16:09:59 +00002164 for (auto param : BD->params())
Nick Lewycky2d84e842013-10-02 02:29:49 +00002165 EmitDelegateCallArg(CallArgs, param, param->getLocStart());
Aaron Ballmanb2b8b1d2014-03-07 16:09:59 +00002166
Faisal Vali571df122013-09-29 08:45:24 +00002167 assert(!Lambda->isGenericLambda() &&
2168 "generic lambda interconversion to block not implemented");
2169 EmitForwardingCallToLambda(Lambda->getLambdaCallOperator(), CallArgs);
Eli Friedman2495ab02012-02-25 02:48:22 +00002170}
2171
2172void CodeGenFunction::EmitLambdaToBlockPointerBody(FunctionArgList &Args) {
John McCalldec348f72013-05-03 07:33:41 +00002173 if (cast<CXXMethodDecl>(CurCodeDecl)->isVariadic()) {
Eli Friedman2495ab02012-02-25 02:48:22 +00002174 // FIXME: Making this work correctly is nasty because it requires either
2175 // cloning the body of the call operator or making the call operator forward.
John McCalldec348f72013-05-03 07:33:41 +00002176 CGM.ErrorUnsupported(CurCodeDecl, "lambda conversion to variadic function");
Eli Friedman2495ab02012-02-25 02:48:22 +00002177 return;
2178 }
2179
Richard Smithb47c36f2013-11-05 09:12:18 +00002180 EmitFunctionBody(Args, cast<FunctionDecl>(CurGD.getDecl())->getBody());
Eli Friedman2495ab02012-02-25 02:48:22 +00002181}
2182
2183void CodeGenFunction::EmitLambdaDelegatingInvokeBody(const CXXMethodDecl *MD) {
2184 const CXXRecordDecl *Lambda = MD->getParent();
2185
2186 // Start building arguments for forwarding call
2187 CallArgList CallArgs;
2188
2189 QualType ThisType = getContext().getPointerType(getContext().getRecordType(Lambda));
2190 llvm::Value *ThisPtr = llvm::UndefValue::get(getTypes().ConvertType(ThisType));
2191 CallArgs.add(RValue::get(ThisPtr), ThisType);
2192
2193 // Add the rest of the parameters.
Aaron Ballmanf6bf62e2014-03-07 15:12:56 +00002194 for (auto Param : MD->params())
2195 EmitDelegateCallArg(CallArgs, Param, Param->getLocStart());
2196
Faisal Vali571df122013-09-29 08:45:24 +00002197 const CXXMethodDecl *CallOp = Lambda->getLambdaCallOperator();
2198 // For a generic lambda, find the corresponding call operator specialization
2199 // to which the call to the static-invoker shall be forwarded.
2200 if (Lambda->isGenericLambda()) {
2201 assert(MD->isFunctionTemplateSpecialization());
2202 const TemplateArgumentList *TAL = MD->getTemplateSpecializationArgs();
2203 FunctionTemplateDecl *CallOpTemplate = CallOp->getDescribedFunctionTemplate();
2204 void *InsertPos = 0;
2205 FunctionDecl *CorrespondingCallOpSpecialization =
2206 CallOpTemplate->findSpecialization(TAL->data(), TAL->size(), InsertPos);
2207 assert(CorrespondingCallOpSpecialization);
2208 CallOp = cast<CXXMethodDecl>(CorrespondingCallOpSpecialization);
2209 }
2210 EmitForwardingCallToLambda(CallOp, CallArgs);
Eli Friedman2495ab02012-02-25 02:48:22 +00002211}
2212
Douglas Gregor355efbb2012-02-17 03:02:34 +00002213void CodeGenFunction::EmitLambdaStaticInvokeFunction(const CXXMethodDecl *MD) {
2214 if (MD->isVariadic()) {
Eli Friedman5b446882012-02-16 03:47:28 +00002215 // FIXME: Making this work correctly is nasty because it requires either
2216 // cloning the body of the call operator or making the call operator forward.
2217 CGM.ErrorUnsupported(MD, "lambda conversion to variadic function");
Eli Friedman2495ab02012-02-25 02:48:22 +00002218 return;
Eli Friedman5b446882012-02-16 03:47:28 +00002219 }
2220
Douglas Gregor355efbb2012-02-17 03:02:34 +00002221 EmitLambdaDelegatingInvokeBody(MD);
Eli Friedman5a6d5072012-02-16 01:37:33 +00002222}