blob: 567444253c9af3975f4bf995184a674c6257d237 [file] [log] [blame]
Anders Carlsson5b955922009-11-24 05:51:11 +00001//===--- CGExprCXX.cpp - Emit LLVM Code for C++ expressions ---------------===//
Anders Carlsson16d81b82009-09-22 22:53:17 +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 code generation of C++ expressions
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
Peter Collingbourne6c0aa5f2011-10-06 18:29:37 +000015#include "CGCUDARuntime.h"
John McCall4c40d982010-08-31 07:33:07 +000016#include "CGCXXABI.h"
Devang Patelc69e1cf2010-09-30 19:05:55 +000017#include "CGDebugInfo.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000018#include "CGObjCRuntime.h"
19#include "clang/Frontend/CodeGenOptions.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000020#include "llvm/IR/Intrinsics.h"
Anders Carlssonad3692bb2011-04-13 02:35:36 +000021#include "llvm/Support/CallSite.h"
22
Anders Carlsson16d81b82009-09-22 22:53:17 +000023using namespace clang;
24using namespace CodeGen;
25
Anders Carlsson3b5ad222010-01-01 20:29:01 +000026RValue CodeGenFunction::EmitCXXMemberCall(const CXXMethodDecl *MD,
Richard Smith4def70d2012-10-09 19:52:38 +000027 SourceLocation CallLoc,
Anders Carlsson3b5ad222010-01-01 20:29:01 +000028 llvm::Value *Callee,
29 ReturnValueSlot ReturnValue,
30 llvm::Value *This,
Timur Iskhodzhanov59660c22013-02-13 08:37:51 +000031 llvm::Value *ImplicitParam,
32 QualType ImplicitParamTy,
Anders Carlsson3b5ad222010-01-01 20:29:01 +000033 CallExpr::const_arg_iterator ArgBeg,
34 CallExpr::const_arg_iterator ArgEnd) {
35 assert(MD->isInstance() &&
36 "Trying to emit a member call expr on a static method!");
37
Richard Smith2c9f87c2012-08-24 00:54:33 +000038 // C++11 [class.mfct.non-static]p2:
39 // If a non-static member function of a class X is called for an object that
40 // is not of type X, or of a type derived from X, the behavior is undefined.
Richard Smith8e1cee62012-10-25 02:14:12 +000041 EmitTypeCheck(isa<CXXConstructorDecl>(MD) ? TCK_ConstructorCall
42 : TCK_MemberCall,
43 CallLoc, This, getContext().getRecordType(MD->getParent()));
Richard Smith2c9f87c2012-08-24 00:54:33 +000044
Anders Carlsson3b5ad222010-01-01 20:29:01 +000045 CallArgList Args;
46
47 // Push the this ptr.
Eli Friedman04c9a492011-05-02 17:57:46 +000048 Args.add(RValue::get(This), MD->getThisType(getContext()));
Anders Carlsson3b5ad222010-01-01 20:29:01 +000049
Timur Iskhodzhanov59660c22013-02-13 08:37:51 +000050 // If there is an implicit parameter (e.g. VTT), emit it.
51 if (ImplicitParam) {
52 Args.add(RValue::get(ImplicitParam), ImplicitParamTy);
Anders Carlssonc997d422010-01-02 01:01:18 +000053 }
John McCallde5d3c72012-02-17 03:33:10 +000054
55 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
56 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size());
Anders Carlssonc997d422010-01-02 01:01:18 +000057
John McCallde5d3c72012-02-17 03:33:10 +000058 // And the rest of the call args.
Anders Carlsson3b5ad222010-01-01 20:29:01 +000059 EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
60
John McCall0f3d0972012-07-07 06:41:13 +000061 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
Rafael Espindola264ba482010-03-30 20:24:48 +000062 Callee, ReturnValue, Args, MD);
Anders Carlsson3b5ad222010-01-01 20:29:01 +000063}
64
Rafael Espindolaea01d762012-06-28 14:28:57 +000065static CXXRecordDecl *getCXXRecord(const Expr *E) {
66 QualType T = E->getType();
67 if (const PointerType *PTy = T->getAs<PointerType>())
68 T = PTy->getPointeeType();
69 const RecordType *Ty = T->castAs<RecordType>();
70 return cast<CXXRecordDecl>(Ty->getDecl());
71}
72
Francois Pichetdbee3412011-01-18 05:04:39 +000073// Note: This function also emit constructor calls to support a MSVC
74// extensions allowing explicit constructor function call.
Anders Carlsson3b5ad222010-01-01 20:29:01 +000075RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE,
76 ReturnValueSlot ReturnValue) {
John McCall379b5152011-04-11 07:02:50 +000077 const Expr *callee = CE->getCallee()->IgnoreParens();
78
79 if (isa<BinaryOperator>(callee))
Anders Carlsson3b5ad222010-01-01 20:29:01 +000080 return EmitCXXMemberPointerCallExpr(CE, ReturnValue);
John McCall379b5152011-04-11 07:02:50 +000081
82 const MemberExpr *ME = cast<MemberExpr>(callee);
Anders Carlsson3b5ad222010-01-01 20:29:01 +000083 const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl());
84
85 if (MD->isStatic()) {
86 // The method is static, emit it as we would a regular call.
87 llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
88 return EmitCall(getContext().getPointerType(MD->getType()), Callee,
Peter Collingbourneb914e872013-10-20 21:29:19 +000089 CE->getLocStart(), ReturnValue, CE->arg_begin(),
90 CE->arg_end());
Anders Carlsson3b5ad222010-01-01 20:29:01 +000091 }
Anders Carlsson3b5ad222010-01-01 20:29:01 +000092
John McCallfc400282010-09-03 01:26:39 +000093 // Compute the object pointer.
Rafael Espindola632fbaa2012-06-28 01:56:38 +000094 const Expr *Base = ME->getBase();
95 bool CanUseVirtualCall = MD->isVirtual() && !ME->hasQualifier();
Rafael Espindola632fbaa2012-06-28 01:56:38 +000096
Rafael Espindolaea01d762012-06-28 14:28:57 +000097 const CXXMethodDecl *DevirtualizedMethod = NULL;
Benjamin Kramer9581ed02013-08-25 22:46:27 +000098 if (CanUseVirtualCall && CanDevirtualizeMemberFunctionCall(Base, MD)) {
Rafael Espindolaea01d762012-06-28 14:28:57 +000099 const CXXRecordDecl *BestDynamicDecl = Base->getBestDynamicClassType();
100 DevirtualizedMethod = MD->getCorrespondingMethodInClass(BestDynamicDecl);
101 assert(DevirtualizedMethod);
102 const CXXRecordDecl *DevirtualizedClass = DevirtualizedMethod->getParent();
103 const Expr *Inner = Base->ignoreParenBaseCasts();
104 if (getCXXRecord(Inner) == DevirtualizedClass)
105 // If the class of the Inner expression is where the dynamic method
106 // is defined, build the this pointer from it.
107 Base = Inner;
108 else if (getCXXRecord(Base) != DevirtualizedClass) {
109 // If the method is defined in a class that is not the best dynamic
110 // one or the one of the full expression, we would have to build
111 // a derived-to-base cast to compute the correct this pointer, but
112 // we don't have support for that yet, so do a virtual call.
113 DevirtualizedMethod = NULL;
114 }
Rafael Espindola80bc96e2012-06-28 17:57:36 +0000115 // If the return types are not the same, this might be a case where more
116 // code needs to run to compensate for it. For example, the derived
117 // method might return a type that inherits form from the return
118 // type of MD and has a prefix.
119 // For now we just avoid devirtualizing these covariant cases.
120 if (DevirtualizedMethod &&
121 DevirtualizedMethod->getResultType().getCanonicalType() !=
122 MD->getResultType().getCanonicalType())
Rafael Espindola4a889e42012-06-28 15:11:39 +0000123 DevirtualizedMethod = NULL;
Rafael Espindolaea01d762012-06-28 14:28:57 +0000124 }
Rafael Espindola632fbaa2012-06-28 01:56:38 +0000125
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000126 llvm::Value *This;
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000127 if (ME->isArrow())
Rafael Espindolaea01d762012-06-28 14:28:57 +0000128 This = EmitScalarExpr(Base);
John McCall0e800c92010-12-04 08:14:53 +0000129 else
Rafael Espindolaea01d762012-06-28 14:28:57 +0000130 This = EmitLValue(Base).getAddress();
Rafael Espindola632fbaa2012-06-28 01:56:38 +0000131
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000132
John McCallfc400282010-09-03 01:26:39 +0000133 if (MD->isTrivial()) {
134 if (isa<CXXDestructorDecl>(MD)) return RValue::get(0);
Francois Pichetdbee3412011-01-18 05:04:39 +0000135 if (isa<CXXConstructorDecl>(MD) &&
136 cast<CXXConstructorDecl>(MD)->isDefaultConstructor())
137 return RValue::get(0);
John McCallfc400282010-09-03 01:26:39 +0000138
Sebastian Redl85ea7aa2011-08-30 19:58:05 +0000139 if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) {
140 // We don't like to generate the trivial copy/move assignment operator
141 // when it isn't necessary; just produce the proper effect here.
Francois Pichetdbee3412011-01-18 05:04:39 +0000142 llvm::Value *RHS = EmitLValue(*CE->arg_begin()).getAddress();
Benjamin Kramer6cacae82012-09-30 12:43:37 +0000143 EmitAggregateAssign(This, RHS, CE->getType());
Francois Pichetdbee3412011-01-18 05:04:39 +0000144 return RValue::get(This);
145 }
146
147 if (isa<CXXConstructorDecl>(MD) &&
Sebastian Redl85ea7aa2011-08-30 19:58:05 +0000148 cast<CXXConstructorDecl>(MD)->isCopyOrMoveConstructor()) {
149 // Trivial move and copy ctor are the same.
Francois Pichetdbee3412011-01-18 05:04:39 +0000150 llvm::Value *RHS = EmitLValue(*CE->arg_begin()).getAddress();
151 EmitSynthesizedCXXCopyCtorCall(cast<CXXConstructorDecl>(MD), This, RHS,
152 CE->arg_begin(), CE->arg_end());
153 return RValue::get(This);
154 }
155 llvm_unreachable("unknown trivial member function");
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000156 }
157
John McCallfc400282010-09-03 01:26:39 +0000158 // Compute the function type we're calling.
Eli Friedman465e89e2012-10-25 00:12:49 +0000159 const CXXMethodDecl *CalleeDecl = DevirtualizedMethod ? DevirtualizedMethod : MD;
Francois Pichetdbee3412011-01-18 05:04:39 +0000160 const CGFunctionInfo *FInfo = 0;
Eli Friedman465e89e2012-10-25 00:12:49 +0000161 if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(CalleeDecl))
162 FInfo = &CGM.getTypes().arrangeCXXDestructor(Dtor,
John McCallde5d3c72012-02-17 03:33:10 +0000163 Dtor_Complete);
Eli Friedman465e89e2012-10-25 00:12:49 +0000164 else if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(CalleeDecl))
165 FInfo = &CGM.getTypes().arrangeCXXConstructorDeclaration(Ctor,
166 Ctor_Complete);
Francois Pichetdbee3412011-01-18 05:04:39 +0000167 else
Eli Friedman465e89e2012-10-25 00:12:49 +0000168 FInfo = &CGM.getTypes().arrangeCXXMethodDeclaration(CalleeDecl);
John McCallfc400282010-09-03 01:26:39 +0000169
Reid Klecknera4130ba2013-07-22 13:51:44 +0000170 llvm::FunctionType *Ty = CGM.getTypes().GetFunctionType(*FInfo);
John McCallfc400282010-09-03 01:26:39 +0000171
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000172 // C++ [class.virtual]p12:
173 // Explicit qualification with the scope operator (5.1) suppresses the
174 // virtual call mechanism.
175 //
176 // We also don't emit a virtual call if the base expression has a record type
177 // because then we know what the type is.
Rafael Espindolaea01d762012-06-28 14:28:57 +0000178 bool UseVirtualCall = CanUseVirtualCall && !DevirtualizedMethod;
Stephen Lin3258abc2013-06-19 23:23:19 +0000179 llvm::Value *Callee;
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000180
John McCallfc400282010-09-03 01:26:39 +0000181 if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(MD)) {
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000182 assert(CE->arg_begin() == CE->arg_end() &&
183 "Destructor shouldn't have explicit parameters");
184 assert(ReturnValue.isNull() && "Destructor shouldn't have return value");
John McCallfc400282010-09-03 01:26:39 +0000185 if (UseVirtualCall) {
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000186 CGM.getCXXABI().EmitVirtualDestructorCall(*this, Dtor, Dtor_Complete,
187 CE->getExprLoc(), This);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000188 } else {
Richard Smith7edf9e32012-11-01 22:30:59 +0000189 if (getLangOpts().AppleKext &&
Fariborz Jahanianccd52592011-02-01 23:22:34 +0000190 MD->isVirtual() &&
191 ME->hasQualifier())
Fariborz Jahanian771c6782011-02-03 19:27:17 +0000192 Callee = BuildAppleKextVirtualCall(MD, ME->getQualifier(), Ty);
Rafael Espindolaea01d762012-06-28 14:28:57 +0000193 else if (!DevirtualizedMethod)
Reid Klecknera4130ba2013-07-22 13:51:44 +0000194 Callee = CGM.GetAddrOfCXXDestructor(Dtor, Dtor_Complete, FInfo, Ty);
Rafael Espindola0b4fe502012-06-26 17:45:31 +0000195 else {
Rafael Espindolaea01d762012-06-28 14:28:57 +0000196 const CXXDestructorDecl *DDtor =
197 cast<CXXDestructorDecl>(DevirtualizedMethod);
Rafael Espindola0b4fe502012-06-26 17:45:31 +0000198 Callee = CGM.GetAddrOfFunction(GlobalDecl(DDtor, Dtor_Complete), Ty);
199 }
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000200 EmitCXXMemberCall(MD, CE->getExprLoc(), Callee, ReturnValue, This,
201 /*ImplicitParam=*/0, QualType(), 0, 0);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000202 }
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000203 return RValue::get(0);
204 }
205
206 if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) {
Francois Pichetdbee3412011-01-18 05:04:39 +0000207 Callee = CGM.GetAddrOfFunction(GlobalDecl(Ctor, Ctor_Complete), Ty);
John McCallfc400282010-09-03 01:26:39 +0000208 } else if (UseVirtualCall) {
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000209 Callee = CGM.getCXXABI().getVirtualFunctionPointer(*this, MD, This, Ty);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000210 } else {
Richard Smith7edf9e32012-11-01 22:30:59 +0000211 if (getLangOpts().AppleKext &&
Fariborz Jahaniana50e33e2011-01-28 23:42:29 +0000212 MD->isVirtual() &&
Fariborz Jahanian7ac0ff22011-01-21 01:04:41 +0000213 ME->hasQualifier())
Fariborz Jahanian771c6782011-02-03 19:27:17 +0000214 Callee = BuildAppleKextVirtualCall(MD, ME->getQualifier(), Ty);
Rafael Espindolaea01d762012-06-28 14:28:57 +0000215 else if (!DevirtualizedMethod)
Rafael Espindola12582bd2012-06-26 19:18:25 +0000216 Callee = CGM.GetAddrOfFunction(MD, Ty);
Rafael Espindola0b4fe502012-06-26 17:45:31 +0000217 else {
Rafael Espindolaea01d762012-06-28 14:28:57 +0000218 Callee = CGM.GetAddrOfFunction(DevirtualizedMethod, Ty);
Rafael Espindola0b4fe502012-06-26 17:45:31 +0000219 }
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000220 }
221
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000222 if (MD->isVirtual())
223 This = CGM.getCXXABI().adjustThisArgumentForVirtualCall(*this, MD, This);
224
Richard Smith4def70d2012-10-09 19:52:38 +0000225 return EmitCXXMemberCall(MD, CE->getExprLoc(), Callee, ReturnValue, This,
Timur Iskhodzhanov59660c22013-02-13 08:37:51 +0000226 /*ImplicitParam=*/0, QualType(),
227 CE->arg_begin(), CE->arg_end());
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000228}
229
230RValue
231CodeGenFunction::EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E,
232 ReturnValueSlot ReturnValue) {
233 const BinaryOperator *BO =
234 cast<BinaryOperator>(E->getCallee()->IgnoreParens());
235 const Expr *BaseExpr = BO->getLHS();
236 const Expr *MemFnExpr = BO->getRHS();
237
238 const MemberPointerType *MPT =
John McCall864c0412011-04-26 20:42:42 +0000239 MemFnExpr->getType()->castAs<MemberPointerType>();
John McCall93d557b2010-08-22 00:05:51 +0000240
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000241 const FunctionProtoType *FPT =
John McCall864c0412011-04-26 20:42:42 +0000242 MPT->getPointeeType()->castAs<FunctionProtoType>();
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000243 const CXXRecordDecl *RD =
244 cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl());
245
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000246 // Get the member function pointer.
John McCalld608cdb2010-08-22 10:59:02 +0000247 llvm::Value *MemFnPtr = EmitScalarExpr(MemFnExpr);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000248
249 // Emit the 'this' pointer.
250 llvm::Value *This;
251
John McCall2de56d12010-08-25 11:45:40 +0000252 if (BO->getOpcode() == BO_PtrMemI)
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000253 This = EmitScalarExpr(BaseExpr);
254 else
255 This = EmitLValue(BaseExpr).getAddress();
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000256
Richard Smith4def70d2012-10-09 19:52:38 +0000257 EmitTypeCheck(TCK_MemberCall, E->getExprLoc(), This,
258 QualType(MPT->getClass(), 0));
Richard Smith2c9f87c2012-08-24 00:54:33 +0000259
John McCall93d557b2010-08-22 00:05:51 +0000260 // Ask the ABI to load the callee. Note that This is modified.
261 llvm::Value *Callee =
John McCalld16c2cf2011-02-08 08:22:06 +0000262 CGM.getCXXABI().EmitLoadOfMemberFunctionPointer(*this, This, MemFnPtr, MPT);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000263
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000264 CallArgList Args;
265
266 QualType ThisType =
267 getContext().getPointerType(getContext().getTagDeclType(RD));
268
269 // Push the this ptr.
Eli Friedman04c9a492011-05-02 17:57:46 +0000270 Args.add(RValue::get(This), ThisType);
John McCall0f3d0972012-07-07 06:41:13 +0000271
272 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, 1);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000273
274 // And the rest of the call args
275 EmitCallArgs(Args, FPT, E->arg_begin(), E->arg_end());
Nick Lewycky5d4a7552013-10-01 21:51:38 +0000276 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
277 Callee, ReturnValue, Args);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000278}
279
280RValue
281CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
282 const CXXMethodDecl *MD,
283 ReturnValueSlot ReturnValue) {
284 assert(MD->isInstance() &&
285 "Trying to emit a member call expr on a static method!");
John McCall0e800c92010-12-04 08:14:53 +0000286 LValue LV = EmitLValue(E->getArg(0));
287 llvm::Value *This = LV.getAddress();
288
Douglas Gregorb2b56582011-09-06 16:26:56 +0000289 if ((MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) &&
290 MD->isTrivial()) {
291 llvm::Value *Src = EmitLValue(E->getArg(1)).getAddress();
292 QualType Ty = E->getType();
Benjamin Kramer6cacae82012-09-30 12:43:37 +0000293 EmitAggregateAssign(This, Src, Ty);
Douglas Gregorb2b56582011-09-06 16:26:56 +0000294 return RValue::get(This);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000295 }
296
Anders Carlssona2447e02011-05-08 20:32:23 +0000297 llvm::Value *Callee = EmitCXXOperatorMemberCallee(E, MD, This);
Richard Smith4def70d2012-10-09 19:52:38 +0000298 return EmitCXXMemberCall(MD, E->getExprLoc(), Callee, ReturnValue, This,
Timur Iskhodzhanov59660c22013-02-13 08:37:51 +0000299 /*ImplicitParam=*/0, QualType(),
300 E->arg_begin() + 1, E->arg_end());
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000301}
302
Peter Collingbourne6c0aa5f2011-10-06 18:29:37 +0000303RValue CodeGenFunction::EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E,
304 ReturnValueSlot ReturnValue) {
305 return CGM.getCUDARuntime().EmitCUDAKernelCallExpr(*this, E, ReturnValue);
306}
307
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000308static void EmitNullBaseClassInitialization(CodeGenFunction &CGF,
309 llvm::Value *DestPtr,
310 const CXXRecordDecl *Base) {
311 if (Base->isEmpty())
312 return;
313
314 DestPtr = CGF.EmitCastToVoidPtr(DestPtr);
315
316 const ASTRecordLayout &Layout = CGF.getContext().getASTRecordLayout(Base);
317 CharUnits Size = Layout.getNonVirtualSize();
318 CharUnits Align = Layout.getNonVirtualAlign();
319
320 llvm::Value *SizeVal = CGF.CGM.getSize(Size);
321
322 // If the type contains a pointer to data member we can't memset it to zero.
323 // Instead, create a null constant and copy it to the destination.
324 // TODO: there are other patterns besides zero that we can usefully memset,
325 // like -1, which happens to be the pattern used by member-pointers.
326 // TODO: isZeroInitializable can be over-conservative in the case where a
327 // virtual base contains a member pointer.
328 if (!CGF.CGM.getTypes().isZeroInitializable(Base)) {
329 llvm::Constant *NullConstant = CGF.CGM.EmitNullConstantForBase(Base);
330
331 llvm::GlobalVariable *NullVariable =
332 new llvm::GlobalVariable(CGF.CGM.getModule(), NullConstant->getType(),
333 /*isConstant=*/true,
334 llvm::GlobalVariable::PrivateLinkage,
335 NullConstant, Twine());
336 NullVariable->setAlignment(Align.getQuantity());
337 llvm::Value *SrcPtr = CGF.EmitCastToVoidPtr(NullVariable);
338
339 // Get and call the appropriate llvm.memcpy overload.
340 CGF.Builder.CreateMemCpy(DestPtr, SrcPtr, SizeVal, Align.getQuantity());
341 return;
342 }
343
344 // Otherwise, just memset the whole thing to zero. This is legal
345 // because in LLVM, all default initializers (other than the ones we just
346 // handled above) are guaranteed to have a bit pattern of all zeros.
347 CGF.Builder.CreateMemSet(DestPtr, CGF.Builder.getInt8(0), SizeVal,
348 Align.getQuantity());
349}
350
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000351void
John McCall558d2ab2010-09-15 10:14:12 +0000352CodeGenFunction::EmitCXXConstructExpr(const CXXConstructExpr *E,
353 AggValueSlot Dest) {
354 assert(!Dest.isIgnored() && "Must have a destination!");
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000355 const CXXConstructorDecl *CD = E->getConstructor();
Douglas Gregor759e41b2010-08-22 16:15:35 +0000356
357 // If we require zero initialization before (or instead of) calling the
358 // constructor, as can be the case with a non-user-provided default
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +0000359 // constructor, emit the zero initialization now, unless destination is
360 // already zeroed.
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000361 if (E->requiresZeroInitialization() && !Dest.isZeroed()) {
362 switch (E->getConstructionKind()) {
363 case CXXConstructExpr::CK_Delegating:
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000364 case CXXConstructExpr::CK_Complete:
365 EmitNullInitialization(Dest.getAddr(), E->getType());
366 break;
367 case CXXConstructExpr::CK_VirtualBase:
368 case CXXConstructExpr::CK_NonVirtualBase:
369 EmitNullBaseClassInitialization(*this, Dest.getAddr(), CD->getParent());
370 break;
371 }
372 }
Douglas Gregor759e41b2010-08-22 16:15:35 +0000373
374 // If this is a call to a trivial default constructor, do nothing.
375 if (CD->isTrivial() && CD->isDefaultConstructor())
376 return;
377
John McCallfc1e6c72010-09-18 00:58:34 +0000378 // Elide the constructor if we're constructing from a temporary.
379 // The temporary check is required because Sema sets this on NRVO
380 // returns.
Richard Smith7edf9e32012-11-01 22:30:59 +0000381 if (getLangOpts().ElideConstructors && E->isElidable()) {
John McCallfc1e6c72010-09-18 00:58:34 +0000382 assert(getContext().hasSameUnqualifiedType(E->getType(),
383 E->getArg(0)->getType()));
John McCall558d2ab2010-09-15 10:14:12 +0000384 if (E->getArg(0)->isTemporaryObject(getContext(), CD->getParent())) {
385 EmitAggExpr(E->getArg(0), Dest);
Douglas Gregor3c9034c2010-05-15 00:13:29 +0000386 return;
387 }
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000388 }
Douglas Gregor759e41b2010-08-22 16:15:35 +0000389
John McCallc3c07662011-07-13 06:10:41 +0000390 if (const ConstantArrayType *arrayType
391 = getContext().getAsConstantArrayType(E->getType())) {
392 EmitCXXAggrConstructorCall(CD, arrayType, Dest.getAddr(),
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000393 E->arg_begin(), E->arg_end());
John McCallc3c07662011-07-13 06:10:41 +0000394 } else {
Cameron Esfahani6bd2f6a2011-05-06 21:28:42 +0000395 CXXCtorType Type = Ctor_Complete;
Sean Huntd49bd552011-05-03 20:19:28 +0000396 bool ForVirtualBase = false;
Douglas Gregor378e1e72013-01-31 05:50:40 +0000397 bool Delegating = false;
398
Sean Huntd49bd552011-05-03 20:19:28 +0000399 switch (E->getConstructionKind()) {
400 case CXXConstructExpr::CK_Delegating:
Sean Hunt059ce0d2011-05-01 07:04:31 +0000401 // We should be emitting a constructor; GlobalDecl will assert this
402 Type = CurGD.getCtorType();
Douglas Gregor378e1e72013-01-31 05:50:40 +0000403 Delegating = true;
Sean Huntd49bd552011-05-03 20:19:28 +0000404 break;
Sean Hunt059ce0d2011-05-01 07:04:31 +0000405
Sean Huntd49bd552011-05-03 20:19:28 +0000406 case CXXConstructExpr::CK_Complete:
407 Type = Ctor_Complete;
408 break;
409
410 case CXXConstructExpr::CK_VirtualBase:
411 ForVirtualBase = true;
412 // fall-through
413
414 case CXXConstructExpr::CK_NonVirtualBase:
415 Type = Ctor_Base;
416 }
Anders Carlsson155ed4a2010-05-02 23:20:53 +0000417
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000418 // Call the constructor.
Douglas Gregor378e1e72013-01-31 05:50:40 +0000419 EmitCXXConstructorCall(CD, Type, ForVirtualBase, Delegating, Dest.getAddr(),
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000420 E->arg_begin(), E->arg_end());
Anders Carlsson155ed4a2010-05-02 23:20:53 +0000421 }
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000422}
423
Fariborz Jahanian34999872010-11-13 21:53:34 +0000424void
425CodeGenFunction::EmitSynthesizedCXXCopyCtor(llvm::Value *Dest,
426 llvm::Value *Src,
Fariborz Jahanian830937b2010-12-02 17:02:11 +0000427 const Expr *Exp) {
John McCall4765fa02010-12-06 08:20:24 +0000428 if (const ExprWithCleanups *E = dyn_cast<ExprWithCleanups>(Exp))
Fariborz Jahanian34999872010-11-13 21:53:34 +0000429 Exp = E->getSubExpr();
430 assert(isa<CXXConstructExpr>(Exp) &&
431 "EmitSynthesizedCXXCopyCtor - unknown copy ctor expr");
432 const CXXConstructExpr* E = cast<CXXConstructExpr>(Exp);
433 const CXXConstructorDecl *CD = E->getConstructor();
434 RunCleanupsScope Scope(*this);
435
436 // If we require zero initialization before (or instead of) calling the
437 // constructor, as can be the case with a non-user-provided default
438 // constructor, emit the zero initialization now.
439 // FIXME. Do I still need this for a copy ctor synthesis?
440 if (E->requiresZeroInitialization())
441 EmitNullInitialization(Dest, E->getType());
442
Chandler Carruth858a5462010-11-15 13:54:43 +0000443 assert(!getContext().getAsConstantArrayType(E->getType())
444 && "EmitSynthesizedCXXCopyCtor - Copied-in Array");
Nick Lewycky5d4a7552013-10-01 21:51:38 +0000445 EmitSynthesizedCXXCopyCtorCall(CD, Dest, Src, E->arg_begin(), E->arg_end());
Fariborz Jahanian34999872010-11-13 21:53:34 +0000446}
447
John McCall1e7fe752010-09-02 09:58:18 +0000448static CharUnits CalculateCookiePadding(CodeGenFunction &CGF,
449 const CXXNewExpr *E) {
Anders Carlsson871d0782009-12-13 20:04:38 +0000450 if (!E->isArray())
Ken Dyckcaf647c2010-01-26 19:44:24 +0000451 return CharUnits::Zero();
Anders Carlsson871d0782009-12-13 20:04:38 +0000452
John McCallb1c98a32011-05-16 01:05:12 +0000453 // No cookie is required if the operator new[] being used is the
454 // reserved placement operator new[].
455 if (E->getOperatorNew()->isReservedGlobalPlacementOperator())
John McCall5172ed92010-08-23 01:17:59 +0000456 return CharUnits::Zero();
457
John McCall6ec278d2011-01-27 09:37:56 +0000458 return CGF.CGM.getCXXABI().GetArrayCookieSize(E);
Anders Carlssona4d4c012009-09-23 16:07:23 +0000459}
460
John McCall7d166272011-05-15 07:14:44 +0000461static llvm::Value *EmitCXXNewAllocSize(CodeGenFunction &CGF,
462 const CXXNewExpr *e,
Sebastian Redl92036472012-02-22 17:37:52 +0000463 unsigned minElements,
John McCall7d166272011-05-15 07:14:44 +0000464 llvm::Value *&numElements,
465 llvm::Value *&sizeWithoutCookie) {
466 QualType type = e->getAllocatedType();
John McCall1e7fe752010-09-02 09:58:18 +0000467
John McCall7d166272011-05-15 07:14:44 +0000468 if (!e->isArray()) {
469 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
470 sizeWithoutCookie
471 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity());
472 return sizeWithoutCookie;
Douglas Gregor59174c02010-07-21 01:10:17 +0000473 }
Anders Carlssona4d4c012009-09-23 16:07:23 +0000474
John McCall7d166272011-05-15 07:14:44 +0000475 // The width of size_t.
476 unsigned sizeWidth = CGF.SizeTy->getBitWidth();
477
John McCall1e7fe752010-09-02 09:58:18 +0000478 // Figure out the cookie size.
John McCall7d166272011-05-15 07:14:44 +0000479 llvm::APInt cookieSize(sizeWidth,
480 CalculateCookiePadding(CGF, e).getQuantity());
John McCall1e7fe752010-09-02 09:58:18 +0000481
Anders Carlssona4d4c012009-09-23 16:07:23 +0000482 // Emit the array size expression.
Argyrios Kyrtzidise7ab92e2010-08-26 15:23:38 +0000483 // We multiply the size of all dimensions for NumElements.
484 // e.g for 'int[2][3]', ElemType is 'int' and NumElements is 6.
John McCall7d166272011-05-15 07:14:44 +0000485 numElements = CGF.EmitScalarExpr(e->getArraySize());
486 assert(isa<llvm::IntegerType>(numElements->getType()));
John McCall1e7fe752010-09-02 09:58:18 +0000487
John McCall7d166272011-05-15 07:14:44 +0000488 // The number of elements can be have an arbitrary integer type;
489 // essentially, we need to multiply it by a constant factor, add a
490 // cookie size, and verify that the result is representable as a
491 // size_t. That's just a gloss, though, and it's wrong in one
492 // important way: if the count is negative, it's an error even if
493 // the cookie size would bring the total size >= 0.
Douglas Gregor575a1c92011-05-20 16:38:50 +0000494 bool isSigned
495 = e->getArraySize()->getType()->isSignedIntegerOrEnumerationType();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000496 llvm::IntegerType *numElementsType
John McCall7d166272011-05-15 07:14:44 +0000497 = cast<llvm::IntegerType>(numElements->getType());
498 unsigned numElementsWidth = numElementsType->getBitWidth();
499
500 // Compute the constant factor.
501 llvm::APInt arraySizeMultiplier(sizeWidth, 1);
Argyrios Kyrtzidise7ab92e2010-08-26 15:23:38 +0000502 while (const ConstantArrayType *CAT
John McCall7d166272011-05-15 07:14:44 +0000503 = CGF.getContext().getAsConstantArrayType(type)) {
504 type = CAT->getElementType();
505 arraySizeMultiplier *= CAT->getSize();
Argyrios Kyrtzidise7ab92e2010-08-26 15:23:38 +0000506 }
507
John McCall7d166272011-05-15 07:14:44 +0000508 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
509 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity());
510 typeSizeMultiplier *= arraySizeMultiplier;
511
512 // This will be a size_t.
513 llvm::Value *size;
Chris Lattner83252dc2010-07-20 21:07:09 +0000514
Chris Lattner806941e2010-07-20 21:55:52 +0000515 // If someone is doing 'new int[42]' there is no need to do a dynamic check.
516 // Don't bloat the -O0 code.
John McCall7d166272011-05-15 07:14:44 +0000517 if (llvm::ConstantInt *numElementsC =
518 dyn_cast<llvm::ConstantInt>(numElements)) {
519 const llvm::APInt &count = numElementsC->getValue();
John McCall1e7fe752010-09-02 09:58:18 +0000520
John McCall7d166272011-05-15 07:14:44 +0000521 bool hasAnyOverflow = false;
John McCall1e7fe752010-09-02 09:58:18 +0000522
John McCall7d166272011-05-15 07:14:44 +0000523 // If 'count' was a negative number, it's an overflow.
524 if (isSigned && count.isNegative())
525 hasAnyOverflow = true;
John McCall1e7fe752010-09-02 09:58:18 +0000526
John McCall7d166272011-05-15 07:14:44 +0000527 // We want to do all this arithmetic in size_t. If numElements is
528 // wider than that, check whether it's already too big, and if so,
529 // overflow.
530 else if (numElementsWidth > sizeWidth &&
531 numElementsWidth - sizeWidth > count.countLeadingZeros())
532 hasAnyOverflow = true;
533
534 // Okay, compute a count at the right width.
535 llvm::APInt adjustedCount = count.zextOrTrunc(sizeWidth);
536
Sebastian Redl92036472012-02-22 17:37:52 +0000537 // If there is a brace-initializer, we cannot allocate fewer elements than
538 // there are initializers. If we do, that's treated like an overflow.
539 if (adjustedCount.ult(minElements))
540 hasAnyOverflow = true;
541
John McCall7d166272011-05-15 07:14:44 +0000542 // Scale numElements by that. This might overflow, but we don't
543 // care because it only overflows if allocationSize does, too, and
544 // if that overflows then we shouldn't use this.
545 numElements = llvm::ConstantInt::get(CGF.SizeTy,
546 adjustedCount * arraySizeMultiplier);
547
548 // Compute the size before cookie, and track whether it overflowed.
549 bool overflow;
550 llvm::APInt allocationSize
551 = adjustedCount.umul_ov(typeSizeMultiplier, overflow);
552 hasAnyOverflow |= overflow;
553
554 // Add in the cookie, and check whether it's overflowed.
555 if (cookieSize != 0) {
556 // Save the current size without a cookie. This shouldn't be
557 // used if there was overflow.
558 sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
559
560 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
561 hasAnyOverflow |= overflow;
562 }
563
564 // On overflow, produce a -1 so operator new will fail.
565 if (hasAnyOverflow) {
566 size = llvm::Constant::getAllOnesValue(CGF.SizeTy);
567 } else {
568 size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
569 }
570
571 // Otherwise, we might need to use the overflow intrinsics.
572 } else {
Sebastian Redl92036472012-02-22 17:37:52 +0000573 // There are up to five conditions we need to test for:
John McCall7d166272011-05-15 07:14:44 +0000574 // 1) if isSigned, we need to check whether numElements is negative;
575 // 2) if numElementsWidth > sizeWidth, we need to check whether
576 // numElements is larger than something representable in size_t;
Sebastian Redl92036472012-02-22 17:37:52 +0000577 // 3) if minElements > 0, we need to check whether numElements is smaller
578 // than that.
579 // 4) we need to compute
John McCall7d166272011-05-15 07:14:44 +0000580 // sizeWithoutCookie := numElements * typeSizeMultiplier
581 // and check whether it overflows; and
Sebastian Redl92036472012-02-22 17:37:52 +0000582 // 5) if we need a cookie, we need to compute
John McCall7d166272011-05-15 07:14:44 +0000583 // size := sizeWithoutCookie + cookieSize
584 // and check whether it overflows.
585
586 llvm::Value *hasOverflow = 0;
587
588 // If numElementsWidth > sizeWidth, then one way or another, we're
589 // going to have to do a comparison for (2), and this happens to
590 // take care of (1), too.
591 if (numElementsWidth > sizeWidth) {
592 llvm::APInt threshold(numElementsWidth, 1);
593 threshold <<= sizeWidth;
594
595 llvm::Value *thresholdV
596 = llvm::ConstantInt::get(numElementsType, threshold);
597
598 hasOverflow = CGF.Builder.CreateICmpUGE(numElements, thresholdV);
599 numElements = CGF.Builder.CreateTrunc(numElements, CGF.SizeTy);
600
601 // Otherwise, if we're signed, we want to sext up to size_t.
602 } else if (isSigned) {
603 if (numElementsWidth < sizeWidth)
604 numElements = CGF.Builder.CreateSExt(numElements, CGF.SizeTy);
605
606 // If there's a non-1 type size multiplier, then we can do the
607 // signedness check at the same time as we do the multiply
608 // because a negative number times anything will cause an
Sebastian Redl92036472012-02-22 17:37:52 +0000609 // unsigned overflow. Otherwise, we have to do it here. But at least
610 // in this case, we can subsume the >= minElements check.
John McCall7d166272011-05-15 07:14:44 +0000611 if (typeSizeMultiplier == 1)
612 hasOverflow = CGF.Builder.CreateICmpSLT(numElements,
Sebastian Redl92036472012-02-22 17:37:52 +0000613 llvm::ConstantInt::get(CGF.SizeTy, minElements));
John McCall7d166272011-05-15 07:14:44 +0000614
615 // Otherwise, zext up to size_t if necessary.
616 } else if (numElementsWidth < sizeWidth) {
617 numElements = CGF.Builder.CreateZExt(numElements, CGF.SizeTy);
618 }
619
620 assert(numElements->getType() == CGF.SizeTy);
621
Sebastian Redl92036472012-02-22 17:37:52 +0000622 if (minElements) {
623 // Don't allow allocation of fewer elements than we have initializers.
624 if (!hasOverflow) {
625 hasOverflow = CGF.Builder.CreateICmpULT(numElements,
626 llvm::ConstantInt::get(CGF.SizeTy, minElements));
627 } else if (numElementsWidth > sizeWidth) {
628 // The other existing overflow subsumes this check.
629 // We do an unsigned comparison, since any signed value < -1 is
630 // taken care of either above or below.
631 hasOverflow = CGF.Builder.CreateOr(hasOverflow,
632 CGF.Builder.CreateICmpULT(numElements,
633 llvm::ConstantInt::get(CGF.SizeTy, minElements)));
634 }
635 }
636
John McCall7d166272011-05-15 07:14:44 +0000637 size = numElements;
638
639 // Multiply by the type size if necessary. This multiplier
640 // includes all the factors for nested arrays.
641 //
642 // This step also causes numElements to be scaled up by the
643 // nested-array factor if necessary. Overflow on this computation
644 // can be ignored because the result shouldn't be used if
645 // allocation fails.
646 if (typeSizeMultiplier != 1) {
John McCall7d166272011-05-15 07:14:44 +0000647 llvm::Value *umul_with_overflow
Benjamin Kramer8dd55a32011-07-14 17:45:50 +0000648 = CGF.CGM.getIntrinsic(llvm::Intrinsic::umul_with_overflow, CGF.SizeTy);
John McCall7d166272011-05-15 07:14:44 +0000649
650 llvm::Value *tsmV =
651 llvm::ConstantInt::get(CGF.SizeTy, typeSizeMultiplier);
652 llvm::Value *result =
653 CGF.Builder.CreateCall2(umul_with_overflow, size, tsmV);
654
655 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
656 if (hasOverflow)
657 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
658 else
659 hasOverflow = overflowed;
660
661 size = CGF.Builder.CreateExtractValue(result, 0);
662
663 // Also scale up numElements by the array size multiplier.
664 if (arraySizeMultiplier != 1) {
665 // If the base element type size is 1, then we can re-use the
666 // multiply we just did.
667 if (typeSize.isOne()) {
668 assert(arraySizeMultiplier == typeSizeMultiplier);
669 numElements = size;
670
671 // Otherwise we need a separate multiply.
672 } else {
673 llvm::Value *asmV =
674 llvm::ConstantInt::get(CGF.SizeTy, arraySizeMultiplier);
675 numElements = CGF.Builder.CreateMul(numElements, asmV);
676 }
677 }
678 } else {
679 // numElements doesn't need to be scaled.
680 assert(arraySizeMultiplier == 1);
Chris Lattner806941e2010-07-20 21:55:52 +0000681 }
682
John McCall7d166272011-05-15 07:14:44 +0000683 // Add in the cookie size if necessary.
684 if (cookieSize != 0) {
685 sizeWithoutCookie = size;
686
John McCall7d166272011-05-15 07:14:44 +0000687 llvm::Value *uadd_with_overflow
Benjamin Kramer8dd55a32011-07-14 17:45:50 +0000688 = CGF.CGM.getIntrinsic(llvm::Intrinsic::uadd_with_overflow, CGF.SizeTy);
John McCall7d166272011-05-15 07:14:44 +0000689
690 llvm::Value *cookieSizeV = llvm::ConstantInt::get(CGF.SizeTy, cookieSize);
691 llvm::Value *result =
692 CGF.Builder.CreateCall2(uadd_with_overflow, size, cookieSizeV);
693
694 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
695 if (hasOverflow)
696 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
697 else
698 hasOverflow = overflowed;
699
700 size = CGF.Builder.CreateExtractValue(result, 0);
John McCall1e7fe752010-09-02 09:58:18 +0000701 }
Anders Carlssona4d4c012009-09-23 16:07:23 +0000702
John McCall7d166272011-05-15 07:14:44 +0000703 // If we had any possibility of dynamic overflow, make a select to
704 // overwrite 'size' with an all-ones value, which should cause
705 // operator new to throw.
706 if (hasOverflow)
707 size = CGF.Builder.CreateSelect(hasOverflow,
708 llvm::Constant::getAllOnesValue(CGF.SizeTy),
709 size);
Chris Lattner806941e2010-07-20 21:55:52 +0000710 }
John McCall1e7fe752010-09-02 09:58:18 +0000711
John McCall7d166272011-05-15 07:14:44 +0000712 if (cookieSize == 0)
713 sizeWithoutCookie = size;
John McCall1e7fe752010-09-02 09:58:18 +0000714 else
John McCall7d166272011-05-15 07:14:44 +0000715 assert(sizeWithoutCookie && "didn't set sizeWithoutCookie?");
John McCall1e7fe752010-09-02 09:58:18 +0000716
John McCall7d166272011-05-15 07:14:44 +0000717 return size;
Anders Carlssona4d4c012009-09-23 16:07:23 +0000718}
719
Sebastian Redl92036472012-02-22 17:37:52 +0000720static void StoreAnyExprIntoOneUnit(CodeGenFunction &CGF, const Expr *Init,
721 QualType AllocType, llvm::Value *NewPtr) {
Daniel Dunbar91a16fa2010-08-21 02:24:36 +0000722
Eli Friedmand7722d92011-12-03 02:13:40 +0000723 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(AllocType);
John McCall9d232c82013-03-07 21:37:08 +0000724 switch (CGF.getEvaluationKind(AllocType)) {
725 case TEK_Scalar:
Eli Friedmand7722d92011-12-03 02:13:40 +0000726 CGF.EmitScalarInit(Init, 0, CGF.MakeAddrLValue(NewPtr, AllocType,
Eli Friedman6da2c712011-12-03 04:14:32 +0000727 Alignment),
John McCalla07398e2011-06-16 04:16:24 +0000728 false);
John McCall9d232c82013-03-07 21:37:08 +0000729 return;
730 case TEK_Complex:
731 CGF.EmitComplexExprIntoLValue(Init, CGF.MakeAddrLValue(NewPtr, AllocType,
732 Alignment),
733 /*isInit*/ true);
734 return;
735 case TEK_Aggregate: {
John McCall558d2ab2010-09-15 10:14:12 +0000736 AggValueSlot Slot
Eli Friedmanf3940782011-12-03 00:54:26 +0000737 = AggValueSlot::forAddr(NewPtr, Alignment, AllocType.getQualifiers(),
John McCall7c2349b2011-08-25 20:40:09 +0000738 AggValueSlot::IsDestructed,
John McCall44184392011-08-26 07:31:35 +0000739 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier649b4a12012-03-29 17:37:10 +0000740 AggValueSlot::IsNotAliased);
John McCall558d2ab2010-09-15 10:14:12 +0000741 CGF.EmitAggExpr(Init, Slot);
John McCall9d232c82013-03-07 21:37:08 +0000742 return;
John McCall558d2ab2010-09-15 10:14:12 +0000743 }
John McCall9d232c82013-03-07 21:37:08 +0000744 }
745 llvm_unreachable("bad evaluation kind");
Fariborz Jahanianef668722010-06-25 18:26:07 +0000746}
747
748void
749CodeGenFunction::EmitNewArrayInitializer(const CXXNewExpr *E,
John McCall19705672011-09-15 06:49:18 +0000750 QualType elementType,
751 llvm::Value *beginPtr,
752 llvm::Value *numElements) {
Sebastian Redl2aed8b82012-02-16 12:22:20 +0000753 if (!E->hasInitializer())
754 return; // We have a POD type.
John McCall19705672011-09-15 06:49:18 +0000755
Sebastian Redl92036472012-02-22 17:37:52 +0000756 llvm::Value *explicitPtr = beginPtr;
John McCall19705672011-09-15 06:49:18 +0000757 // Find the end of the array, hoisted out of the loop.
758 llvm::Value *endPtr =
759 Builder.CreateInBoundsGEP(beginPtr, numElements, "array.end");
760
Sebastian Redl92036472012-02-22 17:37:52 +0000761 unsigned initializerElements = 0;
762
763 const Expr *Init = E->getInitializer();
Chad Rosier577fb5b2012-02-24 00:13:55 +0000764 llvm::AllocaInst *endOfInit = 0;
765 QualType::DestructionKind dtorKind = elementType.isDestructedType();
766 EHScopeStack::stable_iterator cleanup;
767 llvm::Instruction *cleanupDominator = 0;
Sebastian Redl92036472012-02-22 17:37:52 +0000768 // If the initializer is an initializer list, first do the explicit elements.
769 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
770 initializerElements = ILE->getNumInits();
Chad Rosier577fb5b2012-02-24 00:13:55 +0000771
772 // Enter a partial-destruction cleanup if necessary.
773 if (needsEHCleanup(dtorKind)) {
774 // In principle we could tell the cleanup where we are more
775 // directly, but the control flow can get so varied here that it
776 // would actually be quite complex. Therefore we go through an
777 // alloca.
778 endOfInit = CreateTempAlloca(beginPtr->getType(), "array.endOfInit");
779 cleanupDominator = Builder.CreateStore(beginPtr, endOfInit);
780 pushIrregularPartialArrayCleanup(beginPtr, endOfInit, elementType,
781 getDestroyer(dtorKind));
782 cleanup = EHStack.stable_begin();
783 }
784
Sebastian Redl92036472012-02-22 17:37:52 +0000785 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) {
Chad Rosier577fb5b2012-02-24 00:13:55 +0000786 // Tell the cleanup that it needs to destroy up to this
787 // element. TODO: some of these stores can be trivially
788 // observed to be unnecessary.
789 if (endOfInit) Builder.CreateStore(explicitPtr, endOfInit);
Sebastian Redl92036472012-02-22 17:37:52 +0000790 StoreAnyExprIntoOneUnit(*this, ILE->getInit(i), elementType, explicitPtr);
791 explicitPtr =Builder.CreateConstGEP1_32(explicitPtr, 1, "array.exp.next");
792 }
793
794 // The remaining elements are filled with the array filler expression.
795 Init = ILE->getArrayFiller();
796 }
797
John McCall19705672011-09-15 06:49:18 +0000798 // Create the continuation block.
799 llvm::BasicBlock *contBB = createBasicBlock("new.loop.end");
800
Sebastian Redl92036472012-02-22 17:37:52 +0000801 // If the number of elements isn't constant, we have to now check if there is
802 // anything left to initialize.
803 if (llvm::ConstantInt *constNum = dyn_cast<llvm::ConstantInt>(numElements)) {
804 // If all elements have already been initialized, skip the whole loop.
Chad Rosier577fb5b2012-02-24 00:13:55 +0000805 if (constNum->getZExtValue() <= initializerElements) {
806 // If there was a cleanup, deactivate it.
807 if (cleanupDominator)
Dmitri Gribenko1ad23d62012-09-10 21:20:09 +0000808 DeactivateCleanupBlock(cleanup, cleanupDominator);
Chad Rosier577fb5b2012-02-24 00:13:55 +0000809 return;
810 }
Sebastian Redl92036472012-02-22 17:37:52 +0000811 } else {
John McCall19705672011-09-15 06:49:18 +0000812 llvm::BasicBlock *nonEmptyBB = createBasicBlock("new.loop.nonempty");
Sebastian Redl92036472012-02-22 17:37:52 +0000813 llvm::Value *isEmpty = Builder.CreateICmpEQ(explicitPtr, endPtr,
John McCall19705672011-09-15 06:49:18 +0000814 "array.isempty");
815 Builder.CreateCondBr(isEmpty, contBB, nonEmptyBB);
816 EmitBlock(nonEmptyBB);
817 }
818
819 // Enter the loop.
820 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
821 llvm::BasicBlock *loopBB = createBasicBlock("new.loop");
822
823 EmitBlock(loopBB);
824
825 // Set up the current-element phi.
826 llvm::PHINode *curPtr =
Sebastian Redl92036472012-02-22 17:37:52 +0000827 Builder.CreatePHI(explicitPtr->getType(), 2, "array.cur");
828 curPtr->addIncoming(explicitPtr, entryBB);
John McCall19705672011-09-15 06:49:18 +0000829
Chad Rosier577fb5b2012-02-24 00:13:55 +0000830 // Store the new cleanup position for irregular cleanups.
831 if (endOfInit) Builder.CreateStore(curPtr, endOfInit);
832
John McCall19705672011-09-15 06:49:18 +0000833 // Enter a partial-destruction cleanup if necessary.
Chad Rosier577fb5b2012-02-24 00:13:55 +0000834 if (!cleanupDominator && needsEHCleanup(dtorKind)) {
John McCall19705672011-09-15 06:49:18 +0000835 pushRegularPartialArrayCleanup(beginPtr, curPtr, elementType,
836 getDestroyer(dtorKind));
837 cleanup = EHStack.stable_begin();
John McCall6f103ba2011-11-10 10:43:54 +0000838 cleanupDominator = Builder.CreateUnreachable();
John McCall19705672011-09-15 06:49:18 +0000839 }
840
841 // Emit the initializer into this element.
Sebastian Redl92036472012-02-22 17:37:52 +0000842 StoreAnyExprIntoOneUnit(*this, Init, E->getAllocatedType(), curPtr);
John McCall19705672011-09-15 06:49:18 +0000843
844 // Leave the cleanup if we entered one.
Eli Friedman40563cd2011-12-09 23:05:37 +0000845 if (cleanupDominator) {
John McCall6f103ba2011-11-10 10:43:54 +0000846 DeactivateCleanupBlock(cleanup, cleanupDominator);
847 cleanupDominator->eraseFromParent();
848 }
John McCall19705672011-09-15 06:49:18 +0000849
850 // Advance to the next element.
851 llvm::Value *nextPtr = Builder.CreateConstGEP1_32(curPtr, 1, "array.next");
852
853 // Check whether we've gotten to the end of the array and, if so,
854 // exit the loop.
855 llvm::Value *isEnd = Builder.CreateICmpEQ(nextPtr, endPtr, "array.atend");
856 Builder.CreateCondBr(isEnd, contBB, loopBB);
857 curPtr->addIncoming(nextPtr, Builder.GetInsertBlock());
858
859 EmitBlock(contBB);
Fariborz Jahanianef668722010-06-25 18:26:07 +0000860}
861
Douglas Gregor59174c02010-07-21 01:10:17 +0000862static void EmitZeroMemSet(CodeGenFunction &CGF, QualType T,
863 llvm::Value *NewPtr, llvm::Value *Size) {
John McCalld16c2cf2011-02-08 08:22:06 +0000864 CGF.EmitCastToVoidPtr(NewPtr);
Ken Dyckfe710082011-01-19 01:58:38 +0000865 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(T);
Benjamin Kramer9f0c7cc2010-12-30 00:13:21 +0000866 CGF.Builder.CreateMemSet(NewPtr, CGF.Builder.getInt8(0), Size,
Ken Dyckfe710082011-01-19 01:58:38 +0000867 Alignment.getQuantity(), false);
Douglas Gregor59174c02010-07-21 01:10:17 +0000868}
869
Anders Carlssona4d4c012009-09-23 16:07:23 +0000870static void EmitNewInitializer(CodeGenFunction &CGF, const CXXNewExpr *E,
John McCall19705672011-09-15 06:49:18 +0000871 QualType ElementType,
Anders Carlssona4d4c012009-09-23 16:07:23 +0000872 llvm::Value *NewPtr,
Douglas Gregor59174c02010-07-21 01:10:17 +0000873 llvm::Value *NumElements,
874 llvm::Value *AllocSizeWithoutCookie) {
Sebastian Redl2aed8b82012-02-16 12:22:20 +0000875 const Expr *Init = E->getInitializer();
Anders Carlsson5d4d9462009-11-24 18:43:52 +0000876 if (E->isArray()) {
Sebastian Redl2aed8b82012-02-16 12:22:20 +0000877 if (const CXXConstructExpr *CCE = dyn_cast_or_null<CXXConstructExpr>(Init)){
878 CXXConstructorDecl *Ctor = CCE->getConstructor();
Douglas Gregor887ddf32012-02-23 17:07:43 +0000879 if (Ctor->isTrivial()) {
Douglas Gregor59174c02010-07-21 01:10:17 +0000880 // If new expression did not specify value-initialization, then there
881 // is no initialization.
Sebastian Redl2aed8b82012-02-16 12:22:20 +0000882 if (!CCE->requiresZeroInitialization() || Ctor->getParent()->isEmpty())
Douglas Gregor59174c02010-07-21 01:10:17 +0000883 return;
884
John McCall19705672011-09-15 06:49:18 +0000885 if (CGF.CGM.getTypes().isZeroInitializable(ElementType)) {
Douglas Gregor59174c02010-07-21 01:10:17 +0000886 // Optimization: since zero initialization will just set the memory
887 // to all zeroes, generate a single memset to do it in one shot.
John McCall19705672011-09-15 06:49:18 +0000888 EmitZeroMemSet(CGF, ElementType, NewPtr, AllocSizeWithoutCookie);
Douglas Gregor59174c02010-07-21 01:10:17 +0000889 return;
890 }
Douglas Gregor59174c02010-07-21 01:10:17 +0000891 }
John McCallc3c07662011-07-13 06:10:41 +0000892
Sebastian Redl2aed8b82012-02-16 12:22:20 +0000893 CGF.EmitCXXAggrConstructorCall(Ctor, NumElements, NewPtr,
894 CCE->arg_begin(), CCE->arg_end(),
Eli Friedmanb41ba1a2012-08-25 07:11:29 +0000895 CCE->requiresZeroInitialization());
Anders Carlssone99bdb62010-05-03 15:09:17 +0000896 return;
Sebastian Redl2aed8b82012-02-16 12:22:20 +0000897 } else if (Init && isa<ImplicitValueInitExpr>(Init) &&
Eli Friedman40563cd2011-12-09 23:05:37 +0000898 CGF.CGM.getTypes().isZeroInitializable(ElementType)) {
Douglas Gregor59174c02010-07-21 01:10:17 +0000899 // Optimization: since zero initialization will just set the memory
900 // to all zeroes, generate a single memset to do it in one shot.
John McCall19705672011-09-15 06:49:18 +0000901 EmitZeroMemSet(CGF, ElementType, NewPtr, AllocSizeWithoutCookie);
902 return;
Fariborz Jahanianef668722010-06-25 18:26:07 +0000903 }
Sebastian Redl2aed8b82012-02-16 12:22:20 +0000904 CGF.EmitNewArrayInitializer(E, ElementType, NewPtr, NumElements);
905 return;
Anders Carlssona4d4c012009-09-23 16:07:23 +0000906 }
Anders Carlsson5d4d9462009-11-24 18:43:52 +0000907
Sebastian Redl2aed8b82012-02-16 12:22:20 +0000908 if (!Init)
Fariborz Jahanian5304c952010-06-25 20:01:13 +0000909 return;
Sebastian Redl2aed8b82012-02-16 12:22:20 +0000910
Sebastian Redl92036472012-02-22 17:37:52 +0000911 StoreAnyExprIntoOneUnit(CGF, Init, E->getAllocatedType(), NewPtr);
Anders Carlssona4d4c012009-09-23 16:07:23 +0000912}
913
Richard Smithddcff1b2013-07-21 23:12:18 +0000914/// Emit a call to an operator new or operator delete function, as implicitly
915/// created by new-expressions and delete-expressions.
916static RValue EmitNewDeleteCall(CodeGenFunction &CGF,
917 const FunctionDecl *Callee,
918 const FunctionProtoType *CalleeType,
919 const CallArgList &Args) {
920 llvm::Instruction *CallOrInvoke;
Richard Smith060cb4a2013-07-29 20:14:16 +0000921 llvm::Value *CalleeAddr = CGF.CGM.GetAddrOfFunction(Callee);
Richard Smithddcff1b2013-07-21 23:12:18 +0000922 RValue RV =
923 CGF.EmitCall(CGF.CGM.getTypes().arrangeFreeFunctionCall(Args, CalleeType),
Richard Smith060cb4a2013-07-29 20:14:16 +0000924 CalleeAddr, ReturnValueSlot(), Args,
Richard Smithddcff1b2013-07-21 23:12:18 +0000925 Callee, &CallOrInvoke);
926
927 /// C++1y [expr.new]p10:
928 /// [In a new-expression,] an implementation is allowed to omit a call
929 /// to a replaceable global allocation function.
930 ///
931 /// We model such elidable calls with the 'builtin' attribute.
Rafael Espindola87017a72013-10-22 14:23:09 +0000932 llvm::Function *Fn = dyn_cast<llvm::Function>(CalleeAddr);
Richard Smith060cb4a2013-07-29 20:14:16 +0000933 if (Callee->isReplaceableGlobalAllocationFunction() &&
Rafael Espindola87017a72013-10-22 14:23:09 +0000934 Fn && Fn->hasFnAttribute(llvm::Attribute::NoBuiltin)) {
Richard Smithddcff1b2013-07-21 23:12:18 +0000935 // FIXME: Add addAttribute to CallSite.
936 if (llvm::CallInst *CI = dyn_cast<llvm::CallInst>(CallOrInvoke))
937 CI->addAttribute(llvm::AttributeSet::FunctionIndex,
938 llvm::Attribute::Builtin);
939 else if (llvm::InvokeInst *II = dyn_cast<llvm::InvokeInst>(CallOrInvoke))
940 II->addAttribute(llvm::AttributeSet::FunctionIndex,
941 llvm::Attribute::Builtin);
942 else
943 llvm_unreachable("unexpected kind of call instruction");
944 }
945
946 return RV;
947}
948
John McCall7d8647f2010-09-14 07:57:04 +0000949namespace {
950 /// A cleanup to call the given 'operator delete' function upon
951 /// abnormal exit from a new expression.
952 class CallDeleteDuringNew : public EHScopeStack::Cleanup {
953 size_t NumPlacementArgs;
954 const FunctionDecl *OperatorDelete;
955 llvm::Value *Ptr;
956 llvm::Value *AllocSize;
957
958 RValue *getPlacementArgs() { return reinterpret_cast<RValue*>(this+1); }
959
960 public:
961 static size_t getExtraSize(size_t NumPlacementArgs) {
962 return NumPlacementArgs * sizeof(RValue);
963 }
964
965 CallDeleteDuringNew(size_t NumPlacementArgs,
966 const FunctionDecl *OperatorDelete,
967 llvm::Value *Ptr,
968 llvm::Value *AllocSize)
969 : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
970 Ptr(Ptr), AllocSize(AllocSize) {}
971
972 void setPlacementArg(unsigned I, RValue Arg) {
973 assert(I < NumPlacementArgs && "index out of range");
974 getPlacementArgs()[I] = Arg;
975 }
976
John McCallad346f42011-07-12 20:27:29 +0000977 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall7d8647f2010-09-14 07:57:04 +0000978 const FunctionProtoType *FPT
979 = OperatorDelete->getType()->getAs<FunctionProtoType>();
980 assert(FPT->getNumArgs() == NumPlacementArgs + 1 ||
John McCallc3846362010-09-14 21:45:42 +0000981 (FPT->getNumArgs() == 2 && NumPlacementArgs == 0));
John McCall7d8647f2010-09-14 07:57:04 +0000982
983 CallArgList DeleteArgs;
984
985 // The first argument is always a void*.
986 FunctionProtoType::arg_type_iterator AI = FPT->arg_type_begin();
Eli Friedman04c9a492011-05-02 17:57:46 +0000987 DeleteArgs.add(RValue::get(Ptr), *AI++);
John McCall7d8647f2010-09-14 07:57:04 +0000988
989 // A member 'operator delete' can take an extra 'size_t' argument.
990 if (FPT->getNumArgs() == NumPlacementArgs + 2)
Eli Friedman04c9a492011-05-02 17:57:46 +0000991 DeleteArgs.add(RValue::get(AllocSize), *AI++);
John McCall7d8647f2010-09-14 07:57:04 +0000992
993 // Pass the rest of the arguments, which must match exactly.
994 for (unsigned I = 0; I != NumPlacementArgs; ++I)
Eli Friedman04c9a492011-05-02 17:57:46 +0000995 DeleteArgs.add(getPlacementArgs()[I], *AI++);
John McCall7d8647f2010-09-14 07:57:04 +0000996
997 // Call 'operator delete'.
Richard Smithddcff1b2013-07-21 23:12:18 +0000998 EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs);
John McCall7d8647f2010-09-14 07:57:04 +0000999 }
1000 };
John McCall3019c442010-09-17 00:50:28 +00001001
1002 /// A cleanup to call the given 'operator delete' function upon
1003 /// abnormal exit from a new expression when the new expression is
1004 /// conditional.
1005 class CallDeleteDuringConditionalNew : public EHScopeStack::Cleanup {
1006 size_t NumPlacementArgs;
1007 const FunctionDecl *OperatorDelete;
John McCall804b8072011-01-28 10:53:53 +00001008 DominatingValue<RValue>::saved_type Ptr;
1009 DominatingValue<RValue>::saved_type AllocSize;
John McCall3019c442010-09-17 00:50:28 +00001010
John McCall804b8072011-01-28 10:53:53 +00001011 DominatingValue<RValue>::saved_type *getPlacementArgs() {
1012 return reinterpret_cast<DominatingValue<RValue>::saved_type*>(this+1);
John McCall3019c442010-09-17 00:50:28 +00001013 }
1014
1015 public:
1016 static size_t getExtraSize(size_t NumPlacementArgs) {
John McCall804b8072011-01-28 10:53:53 +00001017 return NumPlacementArgs * sizeof(DominatingValue<RValue>::saved_type);
John McCall3019c442010-09-17 00:50:28 +00001018 }
1019
1020 CallDeleteDuringConditionalNew(size_t NumPlacementArgs,
1021 const FunctionDecl *OperatorDelete,
John McCall804b8072011-01-28 10:53:53 +00001022 DominatingValue<RValue>::saved_type Ptr,
1023 DominatingValue<RValue>::saved_type AllocSize)
John McCall3019c442010-09-17 00:50:28 +00001024 : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
1025 Ptr(Ptr), AllocSize(AllocSize) {}
1026
John McCall804b8072011-01-28 10:53:53 +00001027 void setPlacementArg(unsigned I, DominatingValue<RValue>::saved_type Arg) {
John McCall3019c442010-09-17 00:50:28 +00001028 assert(I < NumPlacementArgs && "index out of range");
1029 getPlacementArgs()[I] = Arg;
1030 }
1031
John McCallad346f42011-07-12 20:27:29 +00001032 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall3019c442010-09-17 00:50:28 +00001033 const FunctionProtoType *FPT
1034 = OperatorDelete->getType()->getAs<FunctionProtoType>();
1035 assert(FPT->getNumArgs() == NumPlacementArgs + 1 ||
1036 (FPT->getNumArgs() == 2 && NumPlacementArgs == 0));
1037
1038 CallArgList DeleteArgs;
1039
1040 // The first argument is always a void*.
1041 FunctionProtoType::arg_type_iterator AI = FPT->arg_type_begin();
Eli Friedman04c9a492011-05-02 17:57:46 +00001042 DeleteArgs.add(Ptr.restore(CGF), *AI++);
John McCall3019c442010-09-17 00:50:28 +00001043
1044 // A member 'operator delete' can take an extra 'size_t' argument.
1045 if (FPT->getNumArgs() == NumPlacementArgs + 2) {
John McCall804b8072011-01-28 10:53:53 +00001046 RValue RV = AllocSize.restore(CGF);
Eli Friedman04c9a492011-05-02 17:57:46 +00001047 DeleteArgs.add(RV, *AI++);
John McCall3019c442010-09-17 00:50:28 +00001048 }
1049
1050 // Pass the rest of the arguments, which must match exactly.
1051 for (unsigned I = 0; I != NumPlacementArgs; ++I) {
John McCall804b8072011-01-28 10:53:53 +00001052 RValue RV = getPlacementArgs()[I].restore(CGF);
Eli Friedman04c9a492011-05-02 17:57:46 +00001053 DeleteArgs.add(RV, *AI++);
John McCall3019c442010-09-17 00:50:28 +00001054 }
1055
1056 // Call 'operator delete'.
Richard Smithddcff1b2013-07-21 23:12:18 +00001057 EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs);
John McCall3019c442010-09-17 00:50:28 +00001058 }
1059 };
1060}
1061
1062/// Enter a cleanup to call 'operator delete' if the initializer in a
1063/// new-expression throws.
1064static void EnterNewDeleteCleanup(CodeGenFunction &CGF,
1065 const CXXNewExpr *E,
1066 llvm::Value *NewPtr,
1067 llvm::Value *AllocSize,
1068 const CallArgList &NewArgs) {
1069 // If we're not inside a conditional branch, then the cleanup will
1070 // dominate and we can do the easier (and more efficient) thing.
1071 if (!CGF.isInConditionalBranch()) {
1072 CallDeleteDuringNew *Cleanup = CGF.EHStack
1073 .pushCleanupWithExtra<CallDeleteDuringNew>(EHCleanup,
1074 E->getNumPlacementArgs(),
1075 E->getOperatorDelete(),
1076 NewPtr, AllocSize);
1077 for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
Eli Friedmanc6d07822011-05-02 18:05:27 +00001078 Cleanup->setPlacementArg(I, NewArgs[I+1].RV);
John McCall3019c442010-09-17 00:50:28 +00001079
1080 return;
1081 }
1082
1083 // Otherwise, we need to save all this stuff.
John McCall804b8072011-01-28 10:53:53 +00001084 DominatingValue<RValue>::saved_type SavedNewPtr =
1085 DominatingValue<RValue>::save(CGF, RValue::get(NewPtr));
1086 DominatingValue<RValue>::saved_type SavedAllocSize =
1087 DominatingValue<RValue>::save(CGF, RValue::get(AllocSize));
John McCall3019c442010-09-17 00:50:28 +00001088
1089 CallDeleteDuringConditionalNew *Cleanup = CGF.EHStack
John McCall6f103ba2011-11-10 10:43:54 +00001090 .pushCleanupWithExtra<CallDeleteDuringConditionalNew>(EHCleanup,
John McCall3019c442010-09-17 00:50:28 +00001091 E->getNumPlacementArgs(),
1092 E->getOperatorDelete(),
1093 SavedNewPtr,
1094 SavedAllocSize);
1095 for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
John McCall804b8072011-01-28 10:53:53 +00001096 Cleanup->setPlacementArg(I,
Eli Friedmanc6d07822011-05-02 18:05:27 +00001097 DominatingValue<RValue>::save(CGF, NewArgs[I+1].RV));
John McCall3019c442010-09-17 00:50:28 +00001098
John McCall6f103ba2011-11-10 10:43:54 +00001099 CGF.initFullExprCleanup();
John McCall7d8647f2010-09-14 07:57:04 +00001100}
1101
Anders Carlsson16d81b82009-09-22 22:53:17 +00001102llvm::Value *CodeGenFunction::EmitCXXNewExpr(const CXXNewExpr *E) {
John McCallc2f3e7f2011-03-07 03:12:35 +00001103 // The element type being allocated.
1104 QualType allocType = getContext().getBaseElementType(E->getAllocatedType());
John McCall1e7fe752010-09-02 09:58:18 +00001105
John McCallc2f3e7f2011-03-07 03:12:35 +00001106 // 1. Build a call to the allocation function.
1107 FunctionDecl *allocator = E->getOperatorNew();
1108 const FunctionProtoType *allocatorType =
1109 allocator->getType()->castAs<FunctionProtoType>();
Anders Carlsson16d81b82009-09-22 22:53:17 +00001110
John McCallc2f3e7f2011-03-07 03:12:35 +00001111 CallArgList allocatorArgs;
Anders Carlsson16d81b82009-09-22 22:53:17 +00001112
1113 // The allocation size is the first argument.
John McCallc2f3e7f2011-03-07 03:12:35 +00001114 QualType sizeType = getContext().getSizeType();
Anders Carlsson16d81b82009-09-22 22:53:17 +00001115
Sebastian Redl92036472012-02-22 17:37:52 +00001116 // If there is a brace-initializer, cannot allocate fewer elements than inits.
1117 unsigned minElements = 0;
1118 if (E->isArray() && E->hasInitializer()) {
1119 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(E->getInitializer()))
1120 minElements = ILE->getNumInits();
1121 }
1122
John McCallc2f3e7f2011-03-07 03:12:35 +00001123 llvm::Value *numElements = 0;
1124 llvm::Value *allocSizeWithoutCookie = 0;
1125 llvm::Value *allocSize =
Sebastian Redl92036472012-02-22 17:37:52 +00001126 EmitCXXNewAllocSize(*this, E, minElements, numElements,
1127 allocSizeWithoutCookie);
Anders Carlssona4d4c012009-09-23 16:07:23 +00001128
Eli Friedman04c9a492011-05-02 17:57:46 +00001129 allocatorArgs.add(RValue::get(allocSize), sizeType);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001130
1131 // Emit the rest of the arguments.
1132 // FIXME: Ideally, this should just use EmitCallArgs.
John McCallc2f3e7f2011-03-07 03:12:35 +00001133 CXXNewExpr::const_arg_iterator placementArg = E->placement_arg_begin();
Anders Carlsson16d81b82009-09-22 22:53:17 +00001134
1135 // First, use the types from the function type.
1136 // We start at 1 here because the first argument (the allocation size)
1137 // has already been emitted.
John McCallc2f3e7f2011-03-07 03:12:35 +00001138 for (unsigned i = 1, e = allocatorType->getNumArgs(); i != e;
1139 ++i, ++placementArg) {
1140 QualType argType = allocatorType->getArgType(i);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001141
John McCallc2f3e7f2011-03-07 03:12:35 +00001142 assert(getContext().hasSameUnqualifiedType(argType.getNonReferenceType(),
1143 placementArg->getType()) &&
Anders Carlsson16d81b82009-09-22 22:53:17 +00001144 "type mismatch in call argument!");
1145
John McCall413ebdb2011-03-11 20:59:21 +00001146 EmitCallArg(allocatorArgs, *placementArg, argType);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001147 }
1148
1149 // Either we've emitted all the call args, or we have a call to a
1150 // variadic function.
John McCallc2f3e7f2011-03-07 03:12:35 +00001151 assert((placementArg == E->placement_arg_end() ||
1152 allocatorType->isVariadic()) &&
1153 "Extra arguments to non-variadic function!");
Anders Carlsson16d81b82009-09-22 22:53:17 +00001154
1155 // If we still have any arguments, emit them using the type of the argument.
John McCallc2f3e7f2011-03-07 03:12:35 +00001156 for (CXXNewExpr::const_arg_iterator placementArgsEnd = E->placement_arg_end();
1157 placementArg != placementArgsEnd; ++placementArg) {
John McCall413ebdb2011-03-11 20:59:21 +00001158 EmitCallArg(allocatorArgs, *placementArg, placementArg->getType());
Anders Carlsson16d81b82009-09-22 22:53:17 +00001159 }
1160
John McCallb1c98a32011-05-16 01:05:12 +00001161 // Emit the allocation call. If the allocator is a global placement
1162 // operator, just "inline" it directly.
1163 RValue RV;
1164 if (allocator->isReservedGlobalPlacementOperator()) {
1165 assert(allocatorArgs.size() == 2);
1166 RV = allocatorArgs[1].RV;
1167 // TODO: kill any unnecessary computations done for the size
1168 // argument.
1169 } else {
Richard Smithddcff1b2013-07-21 23:12:18 +00001170 RV = EmitNewDeleteCall(*this, allocator, allocatorType, allocatorArgs);
John McCallb1c98a32011-05-16 01:05:12 +00001171 }
Anders Carlsson16d81b82009-09-22 22:53:17 +00001172
John McCallc2f3e7f2011-03-07 03:12:35 +00001173 // Emit a null check on the allocation result if the allocation
1174 // function is allowed to return null (because it has a non-throwing
1175 // exception spec; for this part, we inline
1176 // CXXNewExpr::shouldNullCheckAllocation()) and we have an
1177 // interesting initializer.
Sebastian Redl8026f6d2011-03-13 17:09:40 +00001178 bool nullCheck = allocatorType->isNothrow(getContext()) &&
Sebastian Redl2aed8b82012-02-16 12:22:20 +00001179 (!allocType.isPODType(getContext()) || E->hasInitializer());
Anders Carlsson16d81b82009-09-22 22:53:17 +00001180
John McCallc2f3e7f2011-03-07 03:12:35 +00001181 llvm::BasicBlock *nullCheckBB = 0;
1182 llvm::BasicBlock *contBB = 0;
Anders Carlsson16d81b82009-09-22 22:53:17 +00001183
John McCallc2f3e7f2011-03-07 03:12:35 +00001184 llvm::Value *allocation = RV.getScalarVal();
Micah Villmow956a5a12012-10-25 15:39:14 +00001185 unsigned AS = allocation->getType()->getPointerAddressSpace();
Anders Carlsson16d81b82009-09-22 22:53:17 +00001186
John McCalla7f633f2011-03-07 01:52:56 +00001187 // The null-check means that the initializer is conditionally
1188 // evaluated.
1189 ConditionalEvaluation conditional(*this);
1190
John McCallc2f3e7f2011-03-07 03:12:35 +00001191 if (nullCheck) {
John McCalla7f633f2011-03-07 01:52:56 +00001192 conditional.begin(*this);
John McCallc2f3e7f2011-03-07 03:12:35 +00001193
1194 nullCheckBB = Builder.GetInsertBlock();
1195 llvm::BasicBlock *notNullBB = createBasicBlock("new.notnull");
1196 contBB = createBasicBlock("new.cont");
1197
1198 llvm::Value *isNull = Builder.CreateIsNull(allocation, "new.isnull");
1199 Builder.CreateCondBr(isNull, contBB, notNullBB);
1200 EmitBlock(notNullBB);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001201 }
Anders Carlsson6ac5fc42009-09-23 18:59:48 +00001202
John McCall7d8647f2010-09-14 07:57:04 +00001203 // If there's an operator delete, enter a cleanup to call it if an
1204 // exception is thrown.
John McCallc2f3e7f2011-03-07 03:12:35 +00001205 EHScopeStack::stable_iterator operatorDeleteCleanup;
John McCall6f103ba2011-11-10 10:43:54 +00001206 llvm::Instruction *cleanupDominator = 0;
John McCallb1c98a32011-05-16 01:05:12 +00001207 if (E->getOperatorDelete() &&
1208 !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) {
John McCallc2f3e7f2011-03-07 03:12:35 +00001209 EnterNewDeleteCleanup(*this, E, allocation, allocSize, allocatorArgs);
1210 operatorDeleteCleanup = EHStack.stable_begin();
John McCall6f103ba2011-11-10 10:43:54 +00001211 cleanupDominator = Builder.CreateUnreachable();
John McCall7d8647f2010-09-14 07:57:04 +00001212 }
1213
Eli Friedman576cf172011-09-06 18:53:03 +00001214 assert((allocSize == allocSizeWithoutCookie) ==
1215 CalculateCookiePadding(*this, E).isZero());
1216 if (allocSize != allocSizeWithoutCookie) {
1217 assert(E->isArray());
1218 allocation = CGM.getCXXABI().InitializeArrayCookie(*this, allocation,
1219 numElements,
1220 E, allocType);
1221 }
1222
Chris Lattner2acc6e32011-07-18 04:24:23 +00001223 llvm::Type *elementPtrTy
John McCallc2f3e7f2011-03-07 03:12:35 +00001224 = ConvertTypeForMem(allocType)->getPointerTo(AS);
1225 llvm::Value *result = Builder.CreateBitCast(allocation, elementPtrTy);
John McCall7d8647f2010-09-14 07:57:04 +00001226
John McCall19705672011-09-15 06:49:18 +00001227 EmitNewInitializer(*this, E, allocType, result, numElements,
1228 allocSizeWithoutCookie);
John McCall1e7fe752010-09-02 09:58:18 +00001229 if (E->isArray()) {
John McCall1e7fe752010-09-02 09:58:18 +00001230 // NewPtr is a pointer to the base element type. If we're
1231 // allocating an array of arrays, we'll need to cast back to the
1232 // array pointer type.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001233 llvm::Type *resultType = ConvertTypeForMem(E->getType());
John McCallc2f3e7f2011-03-07 03:12:35 +00001234 if (result->getType() != resultType)
1235 result = Builder.CreateBitCast(result, resultType);
Fariborz Jahanianceb43b62010-03-24 16:57:01 +00001236 }
John McCall7d8647f2010-09-14 07:57:04 +00001237
1238 // Deactivate the 'operator delete' cleanup if we finished
1239 // initialization.
John McCall6f103ba2011-11-10 10:43:54 +00001240 if (operatorDeleteCleanup.isValid()) {
1241 DeactivateCleanupBlock(operatorDeleteCleanup, cleanupDominator);
1242 cleanupDominator->eraseFromParent();
1243 }
Sebastian Redl2aed8b82012-02-16 12:22:20 +00001244
John McCallc2f3e7f2011-03-07 03:12:35 +00001245 if (nullCheck) {
John McCalla7f633f2011-03-07 01:52:56 +00001246 conditional.end(*this);
1247
John McCallc2f3e7f2011-03-07 03:12:35 +00001248 llvm::BasicBlock *notNullBB = Builder.GetInsertBlock();
1249 EmitBlock(contBB);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001250
Jay Foadbbf3bac2011-03-30 11:28:58 +00001251 llvm::PHINode *PHI = Builder.CreatePHI(result->getType(), 2);
John McCallc2f3e7f2011-03-07 03:12:35 +00001252 PHI->addIncoming(result, notNullBB);
1253 PHI->addIncoming(llvm::Constant::getNullValue(result->getType()),
1254 nullCheckBB);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001255
John McCallc2f3e7f2011-03-07 03:12:35 +00001256 result = PHI;
Anders Carlsson16d81b82009-09-22 22:53:17 +00001257 }
John McCall1e7fe752010-09-02 09:58:18 +00001258
John McCallc2f3e7f2011-03-07 03:12:35 +00001259 return result;
Anders Carlsson16d81b82009-09-22 22:53:17 +00001260}
1261
Eli Friedman5fe05982009-11-18 00:50:08 +00001262void CodeGenFunction::EmitDeleteCall(const FunctionDecl *DeleteFD,
1263 llvm::Value *Ptr,
1264 QualType DeleteTy) {
John McCall1e7fe752010-09-02 09:58:18 +00001265 assert(DeleteFD->getOverloadedOperator() == OO_Delete);
1266
Eli Friedman5fe05982009-11-18 00:50:08 +00001267 const FunctionProtoType *DeleteFTy =
1268 DeleteFD->getType()->getAs<FunctionProtoType>();
1269
1270 CallArgList DeleteArgs;
1271
Anders Carlsson871d0782009-12-13 20:04:38 +00001272 // Check if we need to pass the size to the delete operator.
1273 llvm::Value *Size = 0;
1274 QualType SizeTy;
1275 if (DeleteFTy->getNumArgs() == 2) {
1276 SizeTy = DeleteFTy->getArgType(1);
Ken Dyck4f122ef2010-01-26 19:59:28 +00001277 CharUnits DeleteTypeSize = getContext().getTypeSizeInChars(DeleteTy);
1278 Size = llvm::ConstantInt::get(ConvertType(SizeTy),
1279 DeleteTypeSize.getQuantity());
Anders Carlsson871d0782009-12-13 20:04:38 +00001280 }
1281
Eli Friedman5fe05982009-11-18 00:50:08 +00001282 QualType ArgTy = DeleteFTy->getArgType(0);
1283 llvm::Value *DeletePtr = Builder.CreateBitCast(Ptr, ConvertType(ArgTy));
Eli Friedman04c9a492011-05-02 17:57:46 +00001284 DeleteArgs.add(RValue::get(DeletePtr), ArgTy);
Eli Friedman5fe05982009-11-18 00:50:08 +00001285
Anders Carlsson871d0782009-12-13 20:04:38 +00001286 if (Size)
Eli Friedman04c9a492011-05-02 17:57:46 +00001287 DeleteArgs.add(RValue::get(Size), SizeTy);
Eli Friedman5fe05982009-11-18 00:50:08 +00001288
1289 // Emit the call to delete.
Richard Smithddcff1b2013-07-21 23:12:18 +00001290 EmitNewDeleteCall(*this, DeleteFD, DeleteFTy, DeleteArgs);
Eli Friedman5fe05982009-11-18 00:50:08 +00001291}
1292
John McCall1e7fe752010-09-02 09:58:18 +00001293namespace {
1294 /// Calls the given 'operator delete' on a single object.
1295 struct CallObjectDelete : EHScopeStack::Cleanup {
1296 llvm::Value *Ptr;
1297 const FunctionDecl *OperatorDelete;
1298 QualType ElementType;
1299
1300 CallObjectDelete(llvm::Value *Ptr,
1301 const FunctionDecl *OperatorDelete,
1302 QualType ElementType)
1303 : Ptr(Ptr), OperatorDelete(OperatorDelete), ElementType(ElementType) {}
1304
John McCallad346f42011-07-12 20:27:29 +00001305 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall1e7fe752010-09-02 09:58:18 +00001306 CGF.EmitDeleteCall(OperatorDelete, Ptr, ElementType);
1307 }
1308 };
1309}
1310
1311/// Emit the code for deleting a single object.
1312static void EmitObjectDelete(CodeGenFunction &CGF,
1313 const FunctionDecl *OperatorDelete,
1314 llvm::Value *Ptr,
Douglas Gregora8b20f72011-07-13 00:54:47 +00001315 QualType ElementType,
1316 bool UseGlobalDelete) {
John McCall1e7fe752010-09-02 09:58:18 +00001317 // Find the destructor for the type, if applicable. If the
1318 // destructor is virtual, we'll just emit the vcall and return.
1319 const CXXDestructorDecl *Dtor = 0;
1320 if (const RecordType *RT = ElementType->getAs<RecordType>()) {
1321 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Eli Friedmanaebab722011-08-02 18:05:30 +00001322 if (RD->hasDefinition() && !RD->hasTrivialDestructor()) {
John McCall1e7fe752010-09-02 09:58:18 +00001323 Dtor = RD->getDestructor();
1324
1325 if (Dtor->isVirtual()) {
Douglas Gregora8b20f72011-07-13 00:54:47 +00001326 if (UseGlobalDelete) {
1327 // If we're supposed to call the global delete, make sure we do so
1328 // even if the destructor throws.
John McCallecd03b42012-09-25 10:10:39 +00001329
1330 // Derive the complete-object pointer, which is what we need
1331 // to pass to the deallocation function.
1332 llvm::Value *completePtr =
1333 CGF.CGM.getCXXABI().adjustToCompleteObject(CGF, Ptr, ElementType);
1334
Douglas Gregora8b20f72011-07-13 00:54:47 +00001335 CGF.EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup,
John McCallecd03b42012-09-25 10:10:39 +00001336 completePtr, OperatorDelete,
Douglas Gregora8b20f72011-07-13 00:54:47 +00001337 ElementType);
1338 }
Timur Iskhodzhanov0f9827f2013-02-15 14:45:22 +00001339
Richard Smith4def70d2012-10-09 19:52:38 +00001340 // FIXME: Provide a source location here.
Timur Iskhodzhanov0f9827f2013-02-15 14:45:22 +00001341 CXXDtorType DtorType = UseGlobalDelete ? Dtor_Complete : Dtor_Deleting;
1342 CGF.CGM.getCXXABI().EmitVirtualDestructorCall(CGF, Dtor, DtorType,
Stephen Lin3b50e8d2013-06-30 20:40:16 +00001343 SourceLocation(), Ptr);
John McCall1e7fe752010-09-02 09:58:18 +00001344
Douglas Gregora8b20f72011-07-13 00:54:47 +00001345 if (UseGlobalDelete) {
1346 CGF.PopCleanupBlock();
1347 }
1348
John McCall1e7fe752010-09-02 09:58:18 +00001349 return;
1350 }
1351 }
1352 }
1353
1354 // Make sure that we call delete even if the dtor throws.
John McCall3ad32c82011-01-28 08:37:24 +00001355 // This doesn't have to a conditional cleanup because we're going
1356 // to pop it off in a second.
John McCall1e7fe752010-09-02 09:58:18 +00001357 CGF.EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup,
1358 Ptr, OperatorDelete, ElementType);
1359
1360 if (Dtor)
1361 CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete,
Douglas Gregor378e1e72013-01-31 05:50:40 +00001362 /*ForVirtualBase=*/false,
1363 /*Delegating=*/false,
1364 Ptr);
David Blaikie4e4d0842012-03-11 07:00:24 +00001365 else if (CGF.getLangOpts().ObjCAutoRefCount &&
John McCallf85e1932011-06-15 23:02:42 +00001366 ElementType->isObjCLifetimeType()) {
1367 switch (ElementType.getObjCLifetime()) {
1368 case Qualifiers::OCL_None:
1369 case Qualifiers::OCL_ExplicitNone:
1370 case Qualifiers::OCL_Autoreleasing:
1371 break;
John McCall1e7fe752010-09-02 09:58:18 +00001372
John McCallf85e1932011-06-15 23:02:42 +00001373 case Qualifiers::OCL_Strong: {
1374 // Load the pointer value.
1375 llvm::Value *PtrValue = CGF.Builder.CreateLoad(Ptr,
1376 ElementType.isVolatileQualified());
1377
John McCall5b07e802013-03-13 03:10:54 +00001378 CGF.EmitARCRelease(PtrValue, ARCPreciseLifetime);
John McCallf85e1932011-06-15 23:02:42 +00001379 break;
1380 }
1381
1382 case Qualifiers::OCL_Weak:
1383 CGF.EmitARCDestroyWeak(Ptr);
1384 break;
1385 }
1386 }
1387
John McCall1e7fe752010-09-02 09:58:18 +00001388 CGF.PopCleanupBlock();
1389}
1390
1391namespace {
1392 /// Calls the given 'operator delete' on an array of objects.
1393 struct CallArrayDelete : EHScopeStack::Cleanup {
1394 llvm::Value *Ptr;
1395 const FunctionDecl *OperatorDelete;
1396 llvm::Value *NumElements;
1397 QualType ElementType;
1398 CharUnits CookieSize;
1399
1400 CallArrayDelete(llvm::Value *Ptr,
1401 const FunctionDecl *OperatorDelete,
1402 llvm::Value *NumElements,
1403 QualType ElementType,
1404 CharUnits CookieSize)
1405 : Ptr(Ptr), OperatorDelete(OperatorDelete), NumElements(NumElements),
1406 ElementType(ElementType), CookieSize(CookieSize) {}
1407
John McCallad346f42011-07-12 20:27:29 +00001408 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall1e7fe752010-09-02 09:58:18 +00001409 const FunctionProtoType *DeleteFTy =
1410 OperatorDelete->getType()->getAs<FunctionProtoType>();
1411 assert(DeleteFTy->getNumArgs() == 1 || DeleteFTy->getNumArgs() == 2);
1412
1413 CallArgList Args;
1414
1415 // Pass the pointer as the first argument.
1416 QualType VoidPtrTy = DeleteFTy->getArgType(0);
1417 llvm::Value *DeletePtr
1418 = CGF.Builder.CreateBitCast(Ptr, CGF.ConvertType(VoidPtrTy));
Eli Friedman04c9a492011-05-02 17:57:46 +00001419 Args.add(RValue::get(DeletePtr), VoidPtrTy);
John McCall1e7fe752010-09-02 09:58:18 +00001420
1421 // Pass the original requested size as the second argument.
1422 if (DeleteFTy->getNumArgs() == 2) {
1423 QualType size_t = DeleteFTy->getArgType(1);
Chris Lattner2acc6e32011-07-18 04:24:23 +00001424 llvm::IntegerType *SizeTy
John McCall1e7fe752010-09-02 09:58:18 +00001425 = cast<llvm::IntegerType>(CGF.ConvertType(size_t));
1426
1427 CharUnits ElementTypeSize =
1428 CGF.CGM.getContext().getTypeSizeInChars(ElementType);
1429
1430 // The size of an element, multiplied by the number of elements.
1431 llvm::Value *Size
1432 = llvm::ConstantInt::get(SizeTy, ElementTypeSize.getQuantity());
1433 Size = CGF.Builder.CreateMul(Size, NumElements);
1434
1435 // Plus the size of the cookie if applicable.
1436 if (!CookieSize.isZero()) {
1437 llvm::Value *CookieSizeV
1438 = llvm::ConstantInt::get(SizeTy, CookieSize.getQuantity());
1439 Size = CGF.Builder.CreateAdd(Size, CookieSizeV);
1440 }
1441
Eli Friedman04c9a492011-05-02 17:57:46 +00001442 Args.add(RValue::get(Size), size_t);
John McCall1e7fe752010-09-02 09:58:18 +00001443 }
1444
1445 // Emit the call to delete.
Richard Smithddcff1b2013-07-21 23:12:18 +00001446 EmitNewDeleteCall(CGF, OperatorDelete, DeleteFTy, Args);
John McCall1e7fe752010-09-02 09:58:18 +00001447 }
1448 };
1449}
1450
1451/// Emit the code for deleting an array of objects.
1452static void EmitArrayDelete(CodeGenFunction &CGF,
John McCall6ec278d2011-01-27 09:37:56 +00001453 const CXXDeleteExpr *E,
John McCall7cfd76c2011-07-13 01:41:37 +00001454 llvm::Value *deletedPtr,
1455 QualType elementType) {
1456 llvm::Value *numElements = 0;
1457 llvm::Value *allocatedPtr = 0;
1458 CharUnits cookieSize;
1459 CGF.CGM.getCXXABI().ReadArrayCookie(CGF, deletedPtr, E, elementType,
1460 numElements, allocatedPtr, cookieSize);
John McCall1e7fe752010-09-02 09:58:18 +00001461
John McCall7cfd76c2011-07-13 01:41:37 +00001462 assert(allocatedPtr && "ReadArrayCookie didn't set allocated pointer");
John McCall1e7fe752010-09-02 09:58:18 +00001463
1464 // Make sure that we call delete even if one of the dtors throws.
John McCall7cfd76c2011-07-13 01:41:37 +00001465 const FunctionDecl *operatorDelete = E->getOperatorDelete();
John McCall1e7fe752010-09-02 09:58:18 +00001466 CGF.EHStack.pushCleanup<CallArrayDelete>(NormalAndEHCleanup,
John McCall7cfd76c2011-07-13 01:41:37 +00001467 allocatedPtr, operatorDelete,
1468 numElements, elementType,
1469 cookieSize);
John McCall1e7fe752010-09-02 09:58:18 +00001470
John McCall7cfd76c2011-07-13 01:41:37 +00001471 // Destroy the elements.
1472 if (QualType::DestructionKind dtorKind = elementType.isDestructedType()) {
1473 assert(numElements && "no element count for a type with a destructor!");
1474
John McCall7cfd76c2011-07-13 01:41:37 +00001475 llvm::Value *arrayEnd =
1476 CGF.Builder.CreateInBoundsGEP(deletedPtr, numElements, "delete.end");
John McCallfbf780a2011-07-13 08:09:46 +00001477
1478 // Note that it is legal to allocate a zero-length array, and we
1479 // can never fold the check away because the length should always
1480 // come from a cookie.
John McCall7cfd76c2011-07-13 01:41:37 +00001481 CGF.emitArrayDestroy(deletedPtr, arrayEnd, elementType,
1482 CGF.getDestroyer(dtorKind),
John McCallfbf780a2011-07-13 08:09:46 +00001483 /*checkZeroLength*/ true,
John McCall7cfd76c2011-07-13 01:41:37 +00001484 CGF.needsEHCleanup(dtorKind));
John McCall1e7fe752010-09-02 09:58:18 +00001485 }
1486
John McCall7cfd76c2011-07-13 01:41:37 +00001487 // Pop the cleanup block.
John McCall1e7fe752010-09-02 09:58:18 +00001488 CGF.PopCleanupBlock();
1489}
1490
Anders Carlsson16d81b82009-09-22 22:53:17 +00001491void CodeGenFunction::EmitCXXDeleteExpr(const CXXDeleteExpr *E) {
Douglas Gregor90916562009-09-29 18:16:17 +00001492 const Expr *Arg = E->getArgument();
Douglas Gregor90916562009-09-29 18:16:17 +00001493 llvm::Value *Ptr = EmitScalarExpr(Arg);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001494
1495 // Null check the pointer.
1496 llvm::BasicBlock *DeleteNotNull = createBasicBlock("delete.notnull");
1497 llvm::BasicBlock *DeleteEnd = createBasicBlock("delete.end");
1498
Anders Carlssonb9241242011-04-11 00:30:07 +00001499 llvm::Value *IsNull = Builder.CreateIsNull(Ptr, "isnull");
Anders Carlsson16d81b82009-09-22 22:53:17 +00001500
1501 Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull);
1502 EmitBlock(DeleteNotNull);
Anders Carlsson566abee2009-11-13 04:45:41 +00001503
John McCall1e7fe752010-09-02 09:58:18 +00001504 // We might be deleting a pointer to array. If so, GEP down to the
1505 // first non-array element.
1506 // (this assumes that A(*)[3][7] is converted to [3 x [7 x %A]]*)
1507 QualType DeleteTy = Arg->getType()->getAs<PointerType>()->getPointeeType();
1508 if (DeleteTy->isConstantArrayType()) {
1509 llvm::Value *Zero = Builder.getInt32(0);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001510 SmallVector<llvm::Value*,8> GEP;
John McCall1e7fe752010-09-02 09:58:18 +00001511
1512 GEP.push_back(Zero); // point at the outermost array
1513
1514 // For each layer of array type we're pointing at:
1515 while (const ConstantArrayType *Arr
1516 = getContext().getAsConstantArrayType(DeleteTy)) {
1517 // 1. Unpeel the array type.
1518 DeleteTy = Arr->getElementType();
1519
1520 // 2. GEP to the first element of the array.
1521 GEP.push_back(Zero);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001522 }
John McCall1e7fe752010-09-02 09:58:18 +00001523
Jay Foad0f6ac7c2011-07-22 08:16:57 +00001524 Ptr = Builder.CreateInBoundsGEP(Ptr, GEP, "del.first");
Anders Carlsson16d81b82009-09-22 22:53:17 +00001525 }
1526
Douglas Gregoreede61a2010-09-02 17:38:50 +00001527 assert(ConvertTypeForMem(DeleteTy) ==
1528 cast<llvm::PointerType>(Ptr->getType())->getElementType());
John McCall1e7fe752010-09-02 09:58:18 +00001529
1530 if (E->isArrayForm()) {
John McCall6ec278d2011-01-27 09:37:56 +00001531 EmitArrayDelete(*this, E, Ptr, DeleteTy);
John McCall1e7fe752010-09-02 09:58:18 +00001532 } else {
Douglas Gregora8b20f72011-07-13 00:54:47 +00001533 EmitObjectDelete(*this, E->getOperatorDelete(), Ptr, DeleteTy,
1534 E->isGlobalDelete());
John McCall1e7fe752010-09-02 09:58:18 +00001535 }
Anders Carlsson16d81b82009-09-22 22:53:17 +00001536
Anders Carlsson16d81b82009-09-22 22:53:17 +00001537 EmitBlock(DeleteEnd);
1538}
Mike Stumpc2e84ae2009-11-15 08:09:41 +00001539
Anders Carlsson4bdbc0c2011-04-11 14:13:40 +00001540static llvm::Constant *getBadTypeidFn(CodeGenFunction &CGF) {
1541 // void __cxa_bad_typeid();
Chris Lattner8b418682012-02-07 00:39:47 +00001542 llvm::FunctionType *FTy = llvm::FunctionType::get(CGF.VoidTy, false);
Anders Carlsson4bdbc0c2011-04-11 14:13:40 +00001543
1544 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_bad_typeid");
1545}
1546
1547static void EmitBadTypeidCall(CodeGenFunction &CGF) {
Anders Carlssonad3692bb2011-04-13 02:35:36 +00001548 llvm::Value *Fn = getBadTypeidFn(CGF);
John McCallbd7370a2013-02-28 19:01:20 +00001549 CGF.EmitRuntimeCallOrInvoke(Fn).setDoesNotReturn();
Anders Carlsson4bdbc0c2011-04-11 14:13:40 +00001550 CGF.Builder.CreateUnreachable();
1551}
1552
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001553static llvm::Value *EmitTypeidFromVTable(CodeGenFunction &CGF,
1554 const Expr *E,
Chris Lattner2acc6e32011-07-18 04:24:23 +00001555 llvm::Type *StdTypeInfoPtrTy) {
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001556 // Get the vtable pointer.
1557 llvm::Value *ThisPtr = CGF.EmitLValue(E).getAddress();
1558
1559 // C++ [expr.typeid]p2:
1560 // If the glvalue expression is obtained by applying the unary * operator to
1561 // a pointer and the pointer is a null pointer value, the typeid expression
1562 // throws the std::bad_typeid exception.
1563 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParens())) {
1564 if (UO->getOpcode() == UO_Deref) {
1565 llvm::BasicBlock *BadTypeidBlock =
1566 CGF.createBasicBlock("typeid.bad_typeid");
1567 llvm::BasicBlock *EndBlock =
1568 CGF.createBasicBlock("typeid.end");
1569
1570 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ThisPtr);
1571 CGF.Builder.CreateCondBr(IsNull, BadTypeidBlock, EndBlock);
1572
1573 CGF.EmitBlock(BadTypeidBlock);
1574 EmitBadTypeidCall(CGF);
1575 CGF.EmitBlock(EndBlock);
1576 }
1577 }
1578
1579 llvm::Value *Value = CGF.GetVTablePtr(ThisPtr,
1580 StdTypeInfoPtrTy->getPointerTo());
1581
1582 // Load the type info.
1583 Value = CGF.Builder.CreateConstInBoundsGEP1_64(Value, -1ULL);
1584 return CGF.Builder.CreateLoad(Value);
1585}
1586
John McCall3ad32c82011-01-28 08:37:24 +00001587llvm::Value *CodeGenFunction::EmitCXXTypeidExpr(const CXXTypeidExpr *E) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001588 llvm::Type *StdTypeInfoPtrTy =
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001589 ConvertType(E->getType())->getPointerTo();
Anders Carlsson31b7f522009-12-11 02:46:30 +00001590
Anders Carlsson1d7088d2009-12-17 07:09:17 +00001591 if (E->isTypeOperand()) {
David Majnemerfe16aa32013-09-27 07:04:31 +00001592 llvm::Constant *TypeInfo =
1593 CGM.GetAddrOfRTTIDescriptor(E->getTypeOperand(getContext()));
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001594 return Builder.CreateBitCast(TypeInfo, StdTypeInfoPtrTy);
Anders Carlsson1d7088d2009-12-17 07:09:17 +00001595 }
Anders Carlsson4bdbc0c2011-04-11 14:13:40 +00001596
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001597 // C++ [expr.typeid]p2:
1598 // When typeid is applied to a glvalue expression whose type is a
1599 // polymorphic class type, the result refers to a std::type_info object
1600 // representing the type of the most derived object (that is, the dynamic
1601 // type) to which the glvalue refers.
Richard Smith0d729102012-08-13 20:08:14 +00001602 if (E->isPotentiallyEvaluated())
1603 return EmitTypeidFromVTable(*this, E->getExprOperand(),
1604 StdTypeInfoPtrTy);
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001605
1606 QualType OperandTy = E->getExprOperand()->getType();
1607 return Builder.CreateBitCast(CGM.GetAddrOfRTTIDescriptor(OperandTy),
1608 StdTypeInfoPtrTy);
Mike Stumpc2e84ae2009-11-15 08:09:41 +00001609}
Mike Stumpc849c052009-11-16 06:50:58 +00001610
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001611static llvm::Constant *getDynamicCastFn(CodeGenFunction &CGF) {
1612 // void *__dynamic_cast(const void *sub,
1613 // const abi::__class_type_info *src,
1614 // const abi::__class_type_info *dst,
1615 // std::ptrdiff_t src2dst_offset);
1616
Chris Lattner8b418682012-02-07 00:39:47 +00001617 llvm::Type *Int8PtrTy = CGF.Int8PtrTy;
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001618 llvm::Type *PtrDiffTy =
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001619 CGF.ConvertType(CGF.getContext().getPointerDiffType());
1620
Chris Lattner9cbe4f02011-07-09 17:41:47 +00001621 llvm::Type *Args[4] = { Int8PtrTy, Int8PtrTy, Int8PtrTy, PtrDiffTy };
Benjamin Kramer21f6b392013-02-03 17:44:25 +00001622
1623 llvm::FunctionType *FTy = llvm::FunctionType::get(Int8PtrTy, Args, false);
1624
1625 // Mark the function as nounwind readonly.
1626 llvm::Attribute::AttrKind FuncAttrs[] = { llvm::Attribute::NoUnwind,
1627 llvm::Attribute::ReadOnly };
1628 llvm::AttributeSet Attrs = llvm::AttributeSet::get(
1629 CGF.getLLVMContext(), llvm::AttributeSet::FunctionIndex, FuncAttrs);
1630
1631 return CGF.CGM.CreateRuntimeFunction(FTy, "__dynamic_cast", Attrs);
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001632}
1633
1634static llvm::Constant *getBadCastFn(CodeGenFunction &CGF) {
1635 // void __cxa_bad_cast();
Chris Lattner8b418682012-02-07 00:39:47 +00001636 llvm::FunctionType *FTy = llvm::FunctionType::get(CGF.VoidTy, false);
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001637 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_bad_cast");
1638}
1639
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001640static void EmitBadCastCall(CodeGenFunction &CGF) {
Anders Carlssonad3692bb2011-04-13 02:35:36 +00001641 llvm::Value *Fn = getBadCastFn(CGF);
John McCallbd7370a2013-02-28 19:01:20 +00001642 CGF.EmitRuntimeCallOrInvoke(Fn).setDoesNotReturn();
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001643 CGF.Builder.CreateUnreachable();
1644}
1645
Benjamin Kramerae3f7602013-02-03 19:59:25 +00001646/// \brief Compute the src2dst_offset hint as described in the
1647/// Itanium C++ ABI [2.9.7]
1648static CharUnits computeOffsetHint(ASTContext &Context,
1649 const CXXRecordDecl *Src,
1650 const CXXRecordDecl *Dst) {
1651 CXXBasePaths Paths(/*FindAmbiguities=*/true, /*RecordPaths=*/true,
1652 /*DetectVirtual=*/false);
1653
1654 // If Dst is not derived from Src we can skip the whole computation below and
1655 // return that Src is not a public base of Dst. Record all inheritance paths.
1656 if (!Dst->isDerivedFrom(Src, Paths))
1657 return CharUnits::fromQuantity(-2ULL);
1658
1659 unsigned NumPublicPaths = 0;
1660 CharUnits Offset;
1661
1662 // Now walk all possible inheritance paths.
1663 for (CXXBasePaths::paths_iterator I = Paths.begin(), E = Paths.end();
1664 I != E; ++I) {
1665 if (I->Access != AS_public) // Ignore non-public inheritance.
1666 continue;
1667
1668 ++NumPublicPaths;
1669
1670 for (CXXBasePath::iterator J = I->begin(), JE = I->end(); J != JE; ++J) {
1671 // If the path contains a virtual base class we can't give any hint.
1672 // -1: no hint.
1673 if (J->Base->isVirtual())
1674 return CharUnits::fromQuantity(-1ULL);
1675
1676 if (NumPublicPaths > 1) // Won't use offsets, skip computation.
1677 continue;
1678
1679 // Accumulate the base class offsets.
1680 const ASTRecordLayout &L = Context.getASTRecordLayout(J->Class);
1681 Offset += L.getBaseClassOffset(J->Base->getType()->getAsCXXRecordDecl());
1682 }
1683 }
1684
1685 // -2: Src is not a public base of Dst.
1686 if (NumPublicPaths == 0)
1687 return CharUnits::fromQuantity(-2ULL);
1688
1689 // -3: Src is a multiple public base type but never a virtual base type.
1690 if (NumPublicPaths > 1)
1691 return CharUnits::fromQuantity(-3ULL);
1692
1693 // Otherwise, the Src type is a unique public nonvirtual base type of Dst.
1694 // Return the offset of Src from the origin of Dst.
1695 return Offset;
1696}
1697
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001698static llvm::Value *
1699EmitDynamicCastCall(CodeGenFunction &CGF, llvm::Value *Value,
1700 QualType SrcTy, QualType DestTy,
1701 llvm::BasicBlock *CastEnd) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001702 llvm::Type *PtrDiffLTy =
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001703 CGF.ConvertType(CGF.getContext().getPointerDiffType());
Chris Lattner2acc6e32011-07-18 04:24:23 +00001704 llvm::Type *DestLTy = CGF.ConvertType(DestTy);
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001705
1706 if (const PointerType *PTy = DestTy->getAs<PointerType>()) {
1707 if (PTy->getPointeeType()->isVoidType()) {
1708 // C++ [expr.dynamic.cast]p7:
1709 // If T is "pointer to cv void," then the result is a pointer to the
1710 // most derived object pointed to by v.
1711
1712 // Get the vtable pointer.
1713 llvm::Value *VTable = CGF.GetVTablePtr(Value, PtrDiffLTy->getPointerTo());
1714
1715 // Get the offset-to-top from the vtable.
1716 llvm::Value *OffsetToTop =
1717 CGF.Builder.CreateConstInBoundsGEP1_64(VTable, -2ULL);
1718 OffsetToTop = CGF.Builder.CreateLoad(OffsetToTop, "offset.to.top");
1719
1720 // Finally, add the offset to the pointer.
1721 Value = CGF.EmitCastToVoidPtr(Value);
1722 Value = CGF.Builder.CreateInBoundsGEP(Value, OffsetToTop);
1723
1724 return CGF.Builder.CreateBitCast(Value, DestLTy);
1725 }
1726 }
1727
1728 QualType SrcRecordTy;
1729 QualType DestRecordTy;
1730
1731 if (const PointerType *DestPTy = DestTy->getAs<PointerType>()) {
1732 SrcRecordTy = SrcTy->castAs<PointerType>()->getPointeeType();
1733 DestRecordTy = DestPTy->getPointeeType();
1734 } else {
1735 SrcRecordTy = SrcTy;
1736 DestRecordTy = DestTy->castAs<ReferenceType>()->getPointeeType();
1737 }
1738
1739 assert(SrcRecordTy->isRecordType() && "source type must be a record type!");
1740 assert(DestRecordTy->isRecordType() && "dest type must be a record type!");
1741
1742 llvm::Value *SrcRTTI =
1743 CGF.CGM.GetAddrOfRTTIDescriptor(SrcRecordTy.getUnqualifiedType());
1744 llvm::Value *DestRTTI =
1745 CGF.CGM.GetAddrOfRTTIDescriptor(DestRecordTy.getUnqualifiedType());
1746
Benjamin Kramerae3f7602013-02-03 19:59:25 +00001747 // Compute the offset hint.
1748 const CXXRecordDecl *SrcDecl = SrcRecordTy->getAsCXXRecordDecl();
1749 const CXXRecordDecl *DestDecl = DestRecordTy->getAsCXXRecordDecl();
1750 llvm::Value *OffsetHint =
1751 llvm::ConstantInt::get(PtrDiffLTy,
1752 computeOffsetHint(CGF.getContext(), SrcDecl,
1753 DestDecl).getQuantity());
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001754
1755 // Emit the call to __dynamic_cast.
1756 Value = CGF.EmitCastToVoidPtr(Value);
John McCallbd7370a2013-02-28 19:01:20 +00001757
1758 llvm::Value *args[] = { Value, SrcRTTI, DestRTTI, OffsetHint };
1759 Value = CGF.EmitNounwindRuntimeCall(getDynamicCastFn(CGF), args);
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001760 Value = CGF.Builder.CreateBitCast(Value, DestLTy);
1761
1762 /// C++ [expr.dynamic.cast]p9:
1763 /// A failed cast to reference type throws std::bad_cast
1764 if (DestTy->isReferenceType()) {
1765 llvm::BasicBlock *BadCastBlock =
1766 CGF.createBasicBlock("dynamic_cast.bad_cast");
1767
1768 llvm::Value *IsNull = CGF.Builder.CreateIsNull(Value);
1769 CGF.Builder.CreateCondBr(IsNull, BadCastBlock, CastEnd);
1770
1771 CGF.EmitBlock(BadCastBlock);
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001772 EmitBadCastCall(CGF);
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001773 }
1774
1775 return Value;
1776}
1777
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001778static llvm::Value *EmitDynamicCastToNull(CodeGenFunction &CGF,
1779 QualType DestTy) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001780 llvm::Type *DestLTy = CGF.ConvertType(DestTy);
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001781 if (DestTy->isPointerType())
1782 return llvm::Constant::getNullValue(DestLTy);
1783
1784 /// C++ [expr.dynamic.cast]p9:
1785 /// A failed cast to reference type throws std::bad_cast
1786 EmitBadCastCall(CGF);
1787
1788 CGF.EmitBlock(CGF.createBasicBlock("dynamic_cast.end"));
1789 return llvm::UndefValue::get(DestLTy);
1790}
1791
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001792llvm::Value *CodeGenFunction::EmitDynamicCast(llvm::Value *Value,
Mike Stumpc849c052009-11-16 06:50:58 +00001793 const CXXDynamicCastExpr *DCE) {
Anders Carlsson1d7088d2009-12-17 07:09:17 +00001794 QualType DestTy = DCE->getTypeAsWritten();
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001795
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001796 if (DCE->isAlwaysNull())
1797 return EmitDynamicCastToNull(*this, DestTy);
1798
1799 QualType SrcTy = DCE->getSubExpr()->getType();
1800
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001801 // C++ [expr.dynamic.cast]p4:
1802 // If the value of v is a null pointer value in the pointer case, the result
1803 // is the null pointer value of type T.
1804 bool ShouldNullCheckSrcValue = SrcTy->isPointerType();
Anders Carlsson1d7088d2009-12-17 07:09:17 +00001805
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001806 llvm::BasicBlock *CastNull = 0;
1807 llvm::BasicBlock *CastNotNull = 0;
1808 llvm::BasicBlock *CastEnd = createBasicBlock("dynamic_cast.end");
Mike Stumpc849c052009-11-16 06:50:58 +00001809
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001810 if (ShouldNullCheckSrcValue) {
1811 CastNull = createBasicBlock("dynamic_cast.null");
1812 CastNotNull = createBasicBlock("dynamic_cast.notnull");
1813
1814 llvm::Value *IsNull = Builder.CreateIsNull(Value);
1815 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
1816 EmitBlock(CastNotNull);
Mike Stumpc849c052009-11-16 06:50:58 +00001817 }
1818
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001819 Value = EmitDynamicCastCall(*this, Value, SrcTy, DestTy, CastEnd);
1820
1821 if (ShouldNullCheckSrcValue) {
1822 EmitBranch(CastEnd);
1823
1824 EmitBlock(CastNull);
1825 EmitBranch(CastEnd);
1826 }
1827
1828 EmitBlock(CastEnd);
1829
1830 if (ShouldNullCheckSrcValue) {
1831 llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
1832 PHI->addIncoming(Value, CastNotNull);
1833 PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), CastNull);
1834
1835 Value = PHI;
1836 }
1837
1838 return Value;
Mike Stumpc849c052009-11-16 06:50:58 +00001839}
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001840
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001841void CodeGenFunction::EmitLambdaExpr(const LambdaExpr *E, AggValueSlot Slot) {
Eli Friedmanf8823e72012-02-09 03:47:20 +00001842 RunCleanupsScope Scope(*this);
Eli Friedman377ecc72012-04-16 03:54:45 +00001843 LValue SlotLV = MakeAddrLValue(Slot.getAddr(), E->getType(),
1844 Slot.getAlignment());
Eli Friedmanf8823e72012-02-09 03:47:20 +00001845
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001846 CXXRecordDecl::field_iterator CurField = E->getLambdaClass()->field_begin();
1847 for (LambdaExpr::capture_init_iterator i = E->capture_init_begin(),
1848 e = E->capture_init_end();
Eric Christopherc07b18e2012-02-29 03:25:18 +00001849 i != e; ++i, ++CurField) {
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001850 // Emit initialization
Eli Friedman377ecc72012-04-16 03:54:45 +00001851
David Blaikie581deb32012-06-06 20:45:41 +00001852 LValue LV = EmitLValueForFieldInitialization(SlotLV, *CurField);
Eli Friedmanb74ed082012-02-14 02:31:03 +00001853 ArrayRef<VarDecl *> ArrayIndexes;
1854 if (CurField->getType()->isArrayType())
1855 ArrayIndexes = E->getCaptureInitIndexVars(i);
David Blaikie581deb32012-06-06 20:45:41 +00001856 EmitInitializerForField(*CurField, LV, *i, ArrayIndexes);
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001857 }
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001858}