blob: e05199165c17bf2713b9d22c295b248d81ecedf1 [file] [log] [blame]
Anders Carlsson59486a22009-11-24 05:51:11 +00001//===--- CGExprCXX.cpp - Emit LLVM Code for C++ expressions ---------------===//
Anders Carlssoncc52f652009-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
Devang Patel91bbb552010-09-30 19:05:55 +000014#include "clang/Frontend/CodeGenOptions.h"
Anders Carlssoncc52f652009-09-22 22:53:17 +000015#include "CodeGenFunction.h"
Peter Collingbournefe883422011-10-06 18:29:37 +000016#include "CGCUDARuntime.h"
John McCall5d865c322010-08-31 07:33:07 +000017#include "CGCXXABI.h"
Fariborz Jahanian60d215b2010-05-20 21:38:57 +000018#include "CGObjCRuntime.h"
Devang Patel91bbb552010-09-30 19:05:55 +000019#include "CGDebugInfo.h"
Chris Lattner26008e02010-07-20 20:19:24 +000020#include "llvm/Intrinsics.h"
Anders Carlssonbbe277c2011-04-13 02:35:36 +000021#include "llvm/Support/CallSite.h"
22
Anders Carlssoncc52f652009-09-22 22:53:17 +000023using namespace clang;
24using namespace CodeGen;
25
Anders Carlsson27da15b2010-01-01 20:29:01 +000026RValue CodeGenFunction::EmitCXXMemberCall(const CXXMethodDecl *MD,
Richard Smithe30752c2012-10-09 19:52:38 +000027 SourceLocation CallLoc,
Anders Carlsson27da15b2010-01-01 20:29:01 +000028 llvm::Value *Callee,
29 ReturnValueSlot ReturnValue,
30 llvm::Value *This,
Anders Carlssone36a6b32010-01-02 01:01:18 +000031 llvm::Value *VTT,
Anders Carlsson27da15b2010-01-01 20:29:01 +000032 CallExpr::const_arg_iterator ArgBeg,
33 CallExpr::const_arg_iterator ArgEnd) {
34 assert(MD->isInstance() &&
35 "Trying to emit a member call expr on a static method!");
36
Richard Smith69d0d262012-08-24 00:54:33 +000037 // C++11 [class.mfct.non-static]p2:
38 // If a non-static member function of a class X is called for an object that
39 // is not of type X, or of a type derived from X, the behavior is undefined.
Richard Smithe30752c2012-10-09 19:52:38 +000040 EmitTypeCheck(TCK_MemberCall, CallLoc, This,
Richard Smith4d1458e2012-09-08 02:08:36 +000041 getContext().getRecordType(MD->getParent()));
Richard Smith69d0d262012-08-24 00:54:33 +000042
Anders Carlsson27da15b2010-01-01 20:29:01 +000043 CallArgList Args;
44
45 // Push the this ptr.
Eli Friedman43dca6a2011-05-02 17:57:46 +000046 Args.add(RValue::get(This), MD->getThisType(getContext()));
Anders Carlsson27da15b2010-01-01 20:29:01 +000047
Anders Carlssone36a6b32010-01-02 01:01:18 +000048 // If there is a VTT parameter, emit it.
49 if (VTT) {
50 QualType T = getContext().getPointerType(getContext().VoidPtrTy);
Eli Friedman43dca6a2011-05-02 17:57:46 +000051 Args.add(RValue::get(VTT), T);
Anders Carlssone36a6b32010-01-02 01:01:18 +000052 }
John McCalla729c622012-02-17 03:33:10 +000053
54 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
55 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size());
Anders Carlssone36a6b32010-01-02 01:01:18 +000056
John McCalla729c622012-02-17 03:33:10 +000057 // And the rest of the call args.
Anders Carlsson27da15b2010-01-01 20:29:01 +000058 EmitCallArgs(Args, FPT, ArgBeg, ArgEnd);
59
John McCall8dda7b22012-07-07 06:41:13 +000060 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
Rafael Espindolac50c27c2010-03-30 20:24:48 +000061 Callee, ReturnValue, Args, MD);
Anders Carlsson27da15b2010-01-01 20:29:01 +000062}
63
Anders Carlssonc53d9e82011-04-10 18:20:53 +000064// FIXME: Ideally Expr::IgnoreParenNoopCasts should do this, but it doesn't do
65// quite what we want.
66static const Expr *skipNoOpCastsAndParens(const Expr *E) {
67 while (true) {
68 if (const ParenExpr *PE = dyn_cast<ParenExpr>(E)) {
69 E = PE->getSubExpr();
70 continue;
71 }
72
73 if (const CastExpr *CE = dyn_cast<CastExpr>(E)) {
74 if (CE->getCastKind() == CK_NoOp) {
75 E = CE->getSubExpr();
76 continue;
77 }
78 }
79 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E)) {
80 if (UO->getOpcode() == UO_Extension) {
81 E = UO->getSubExpr();
82 continue;
83 }
84 }
85 return E;
86 }
87}
88
Anders Carlsson27da15b2010-01-01 20:29:01 +000089/// canDevirtualizeMemberFunctionCalls - Checks whether virtual calls on given
90/// expr can be devirtualized.
Fariborz Jahanian252a47f2011-01-21 01:04:41 +000091static bool canDevirtualizeMemberFunctionCalls(ASTContext &Context,
92 const Expr *Base,
Anders Carlssona7911fa2010-10-27 13:28:46 +000093 const CXXMethodDecl *MD) {
94
Anders Carlsson1ae64c52011-01-29 03:52:01 +000095 // When building with -fapple-kext, all calls must go through the vtable since
96 // the kernel linker can do runtime patching of vtables.
David Blaikiebbafb8a2012-03-11 07:00:24 +000097 if (Context.getLangOpts().AppleKext)
Fariborz Jahanian252a47f2011-01-21 01:04:41 +000098 return false;
99
Anders Carlsson1ae64c52011-01-29 03:52:01 +0000100 // If the most derived class is marked final, we know that no subclass can
101 // override this member function and so we can devirtualize it. For example:
102 //
103 // struct A { virtual void f(); }
104 // struct B final : A { };
105 //
106 // void f(B *b) {
107 // b->f();
108 // }
109 //
Rafael Espindolab7f5a9c2012-06-27 18:18:05 +0000110 const CXXRecordDecl *MostDerivedClassDecl = Base->getBestDynamicClassType();
Anders Carlsson1ae64c52011-01-29 03:52:01 +0000111 if (MostDerivedClassDecl->hasAttr<FinalAttr>())
112 return true;
113
Anders Carlsson19588aa2011-01-23 21:07:30 +0000114 // If the member function is marked 'final', we know that it can't be
Anders Carlssonb00c2142010-10-27 13:34:43 +0000115 // overridden and can therefore devirtualize it.
Anders Carlsson1eb95962011-01-24 16:26:15 +0000116 if (MD->hasAttr<FinalAttr>())
Anders Carlssona7911fa2010-10-27 13:28:46 +0000117 return true;
Anders Carlssonb00c2142010-10-27 13:34:43 +0000118
Anders Carlsson19588aa2011-01-23 21:07:30 +0000119 // Similarly, if the class itself is marked 'final' it can't be overridden
120 // and we can therefore devirtualize the member function call.
Anders Carlsson1eb95962011-01-24 16:26:15 +0000121 if (MD->getParent()->hasAttr<FinalAttr>())
Anders Carlssonb00c2142010-10-27 13:34:43 +0000122 return true;
123
Anders Carlssonc53d9e82011-04-10 18:20:53 +0000124 Base = skipNoOpCastsAndParens(Base);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000125 if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(Base)) {
126 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl())) {
127 // This is a record decl. We know the type and can devirtualize it.
128 return VD->getType()->isRecordType();
129 }
130
131 return false;
132 }
Richard Smith48c15312012-08-15 22:59:28 +0000133
134 // We can devirtualize calls on an object accessed by a class member access
135 // expression, since by C++11 [basic.life]p6 we know that it can't refer to
136 // a derived class object constructed in the same location.
137 if (const MemberExpr *ME = dyn_cast<MemberExpr>(Base))
138 if (const ValueDecl *VD = dyn_cast<ValueDecl>(ME->getMemberDecl()))
139 return VD->getType()->isRecordType();
140
Anders Carlsson27da15b2010-01-01 20:29:01 +0000141 // We can always devirtualize calls on temporary object expressions.
Eli Friedmana6824272010-01-31 20:58:15 +0000142 if (isa<CXXConstructExpr>(Base))
Anders Carlsson27da15b2010-01-01 20:29:01 +0000143 return true;
144
145 // And calls on bound temporaries.
146 if (isa<CXXBindTemporaryExpr>(Base))
147 return true;
148
149 // Check if this is a call expr that returns a record type.
150 if (const CallExpr *CE = dyn_cast<CallExpr>(Base))
151 return CE->getCallReturnType()->isRecordType();
Anders Carlssona7911fa2010-10-27 13:28:46 +0000152
Anders Carlsson27da15b2010-01-01 20:29:01 +0000153 // We can't devirtualize the call.
154 return false;
155}
156
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000157static CXXRecordDecl *getCXXRecord(const Expr *E) {
158 QualType T = E->getType();
159 if (const PointerType *PTy = T->getAs<PointerType>())
160 T = PTy->getPointeeType();
161 const RecordType *Ty = T->castAs<RecordType>();
162 return cast<CXXRecordDecl>(Ty->getDecl());
163}
164
Francois Pichet64225792011-01-18 05:04:39 +0000165// Note: This function also emit constructor calls to support a MSVC
166// extensions allowing explicit constructor function call.
Anders Carlsson27da15b2010-01-01 20:29:01 +0000167RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE,
168 ReturnValueSlot ReturnValue) {
John McCall2d2e8702011-04-11 07:02:50 +0000169 const Expr *callee = CE->getCallee()->IgnoreParens();
170
171 if (isa<BinaryOperator>(callee))
Anders Carlsson27da15b2010-01-01 20:29:01 +0000172 return EmitCXXMemberPointerCallExpr(CE, ReturnValue);
John McCall2d2e8702011-04-11 07:02:50 +0000173
174 const MemberExpr *ME = cast<MemberExpr>(callee);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000175 const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl());
176
Devang Patel91bbb552010-09-30 19:05:55 +0000177 CGDebugInfo *DI = getDebugInfo();
Douglas Gregorb0eea8b2012-10-23 20:05:01 +0000178 if (DI &&
179 CGM.getCodeGenOpts().getDebugInfo() == CodeGenOptions::LimitedDebugInfo &&
180 !isa<CallExpr>(ME->getBase())) {
Devang Patel91bbb552010-09-30 19:05:55 +0000181 QualType PQTy = ME->getBase()->IgnoreParenImpCasts()->getType();
182 if (const PointerType * PTy = dyn_cast<PointerType>(PQTy)) {
183 DI->getOrCreateRecordType(PTy->getPointeeType(),
184 MD->getParent()->getLocation());
185 }
186 }
187
Anders Carlsson27da15b2010-01-01 20:29:01 +0000188 if (MD->isStatic()) {
189 // The method is static, emit it as we would a regular call.
190 llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
191 return EmitCall(getContext().getPointerType(MD->getType()), Callee,
192 ReturnValue, CE->arg_begin(), CE->arg_end());
193 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000194
John McCall0d635f52010-09-03 01:26:39 +0000195 // Compute the object pointer.
Rafael Espindolaecbe2e92012-06-28 01:56:38 +0000196 const Expr *Base = ME->getBase();
197 bool CanUseVirtualCall = MD->isVirtual() && !ME->hasQualifier();
Rafael Espindolaecbe2e92012-06-28 01:56:38 +0000198
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000199 const CXXMethodDecl *DevirtualizedMethod = NULL;
200 if (CanUseVirtualCall &&
201 canDevirtualizeMemberFunctionCalls(getContext(), Base, MD)) {
202 const CXXRecordDecl *BestDynamicDecl = Base->getBestDynamicClassType();
203 DevirtualizedMethod = MD->getCorrespondingMethodInClass(BestDynamicDecl);
204 assert(DevirtualizedMethod);
205 const CXXRecordDecl *DevirtualizedClass = DevirtualizedMethod->getParent();
206 const Expr *Inner = Base->ignoreParenBaseCasts();
207 if (getCXXRecord(Inner) == DevirtualizedClass)
208 // If the class of the Inner expression is where the dynamic method
209 // is defined, build the this pointer from it.
210 Base = Inner;
211 else if (getCXXRecord(Base) != DevirtualizedClass) {
212 // If the method is defined in a class that is not the best dynamic
213 // one or the one of the full expression, we would have to build
214 // a derived-to-base cast to compute the correct this pointer, but
215 // we don't have support for that yet, so do a virtual call.
216 DevirtualizedMethod = NULL;
217 }
Rafael Espindolab27564a2012-06-28 17:57:36 +0000218 // If the return types are not the same, this might be a case where more
219 // code needs to run to compensate for it. For example, the derived
220 // method might return a type that inherits form from the return
221 // type of MD and has a prefix.
222 // For now we just avoid devirtualizing these covariant cases.
223 if (DevirtualizedMethod &&
224 DevirtualizedMethod->getResultType().getCanonicalType() !=
225 MD->getResultType().getCanonicalType())
Rafael Espindoladebc71c2012-06-28 15:11:39 +0000226 DevirtualizedMethod = NULL;
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000227 }
Rafael Espindolaecbe2e92012-06-28 01:56:38 +0000228
Anders Carlsson27da15b2010-01-01 20:29:01 +0000229 llvm::Value *This;
Anders Carlsson27da15b2010-01-01 20:29:01 +0000230 if (ME->isArrow())
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000231 This = EmitScalarExpr(Base);
John McCalle26a8722010-12-04 08:14:53 +0000232 else
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000233 This = EmitLValue(Base).getAddress();
Rafael Espindolaecbe2e92012-06-28 01:56:38 +0000234
Anders Carlsson27da15b2010-01-01 20:29:01 +0000235
John McCall0d635f52010-09-03 01:26:39 +0000236 if (MD->isTrivial()) {
237 if (isa<CXXDestructorDecl>(MD)) return RValue::get(0);
Francois Pichet64225792011-01-18 05:04:39 +0000238 if (isa<CXXConstructorDecl>(MD) &&
239 cast<CXXConstructorDecl>(MD)->isDefaultConstructor())
240 return RValue::get(0);
John McCall0d635f52010-09-03 01:26:39 +0000241
Sebastian Redl22653ba2011-08-30 19:58:05 +0000242 if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) {
243 // We don't like to generate the trivial copy/move assignment operator
244 // when it isn't necessary; just produce the proper effect here.
Francois Pichet64225792011-01-18 05:04:39 +0000245 llvm::Value *RHS = EmitLValue(*CE->arg_begin()).getAddress();
Benjamin Kramer1ca66912012-09-30 12:43:37 +0000246 EmitAggregateAssign(This, RHS, CE->getType());
Francois Pichet64225792011-01-18 05:04:39 +0000247 return RValue::get(This);
248 }
249
250 if (isa<CXXConstructorDecl>(MD) &&
Sebastian Redl22653ba2011-08-30 19:58:05 +0000251 cast<CXXConstructorDecl>(MD)->isCopyOrMoveConstructor()) {
252 // Trivial move and copy ctor are the same.
Francois Pichet64225792011-01-18 05:04:39 +0000253 llvm::Value *RHS = EmitLValue(*CE->arg_begin()).getAddress();
254 EmitSynthesizedCXXCopyCtorCall(cast<CXXConstructorDecl>(MD), This, RHS,
255 CE->arg_begin(), CE->arg_end());
256 return RValue::get(This);
257 }
258 llvm_unreachable("unknown trivial member function");
Anders Carlsson27da15b2010-01-01 20:29:01 +0000259 }
260
John McCall0d635f52010-09-03 01:26:39 +0000261 // Compute the function type we're calling.
Eli Friedmanade60972012-10-25 00:12:49 +0000262 const CXXMethodDecl *CalleeDecl = DevirtualizedMethod ? DevirtualizedMethod : MD;
Francois Pichet64225792011-01-18 05:04:39 +0000263 const CGFunctionInfo *FInfo = 0;
Eli Friedmanade60972012-10-25 00:12:49 +0000264 if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(CalleeDecl))
265 FInfo = &CGM.getTypes().arrangeCXXDestructor(Dtor,
John McCalla729c622012-02-17 03:33:10 +0000266 Dtor_Complete);
Eli Friedmanade60972012-10-25 00:12:49 +0000267 else if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(CalleeDecl))
268 FInfo = &CGM.getTypes().arrangeCXXConstructorDeclaration(Ctor,
269 Ctor_Complete);
Francois Pichet64225792011-01-18 05:04:39 +0000270 else
Eli Friedmanade60972012-10-25 00:12:49 +0000271 FInfo = &CGM.getTypes().arrangeCXXMethodDeclaration(CalleeDecl);
John McCall0d635f52010-09-03 01:26:39 +0000272
John McCalla729c622012-02-17 03:33:10 +0000273 llvm::Type *Ty = CGM.getTypes().GetFunctionType(*FInfo);
John McCall0d635f52010-09-03 01:26:39 +0000274
Anders Carlsson27da15b2010-01-01 20:29:01 +0000275 // C++ [class.virtual]p12:
276 // Explicit qualification with the scope operator (5.1) suppresses the
277 // virtual call mechanism.
278 //
279 // We also don't emit a virtual call if the base expression has a record type
280 // because then we know what the type is.
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000281 bool UseVirtualCall = CanUseVirtualCall && !DevirtualizedMethod;
Rafael Espindola49e860b2012-06-26 17:45:31 +0000282
Anders Carlsson27da15b2010-01-01 20:29:01 +0000283 llvm::Value *Callee;
John McCall0d635f52010-09-03 01:26:39 +0000284 if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(MD)) {
285 if (UseVirtualCall) {
286 Callee = BuildVirtualCall(Dtor, Dtor_Complete, This, Ty);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000287 } else {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000288 if (getContext().getLangOpts().AppleKext &&
Fariborz Jahanian265c3252011-02-01 23:22:34 +0000289 MD->isVirtual() &&
290 ME->hasQualifier())
Fariborz Jahanian7f6f81b2011-02-03 19:27:17 +0000291 Callee = BuildAppleKextVirtualCall(MD, ME->getQualifier(), Ty);
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000292 else if (!DevirtualizedMethod)
Rafael Espindola727a7712012-06-26 19:18:25 +0000293 Callee = CGM.GetAddrOfFunction(GlobalDecl(Dtor, Dtor_Complete), Ty);
Rafael Espindola49e860b2012-06-26 17:45:31 +0000294 else {
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000295 const CXXDestructorDecl *DDtor =
296 cast<CXXDestructorDecl>(DevirtualizedMethod);
Rafael Espindola49e860b2012-06-26 17:45:31 +0000297 Callee = CGM.GetAddrOfFunction(GlobalDecl(DDtor, Dtor_Complete), Ty);
298 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000299 }
Francois Pichet64225792011-01-18 05:04:39 +0000300 } else if (const CXXConstructorDecl *Ctor =
301 dyn_cast<CXXConstructorDecl>(MD)) {
302 Callee = CGM.GetAddrOfFunction(GlobalDecl(Ctor, Ctor_Complete), Ty);
John McCall0d635f52010-09-03 01:26:39 +0000303 } else if (UseVirtualCall) {
Fariborz Jahanian47609b02011-01-20 17:19:02 +0000304 Callee = BuildVirtualCall(MD, This, Ty);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000305 } else {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000306 if (getContext().getLangOpts().AppleKext &&
Fariborz Jahanian9f9438b2011-01-28 23:42:29 +0000307 MD->isVirtual() &&
Fariborz Jahanian252a47f2011-01-21 01:04:41 +0000308 ME->hasQualifier())
Fariborz Jahanian7f6f81b2011-02-03 19:27:17 +0000309 Callee = BuildAppleKextVirtualCall(MD, ME->getQualifier(), Ty);
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000310 else if (!DevirtualizedMethod)
Rafael Espindola727a7712012-06-26 19:18:25 +0000311 Callee = CGM.GetAddrOfFunction(MD, Ty);
Rafael Espindola49e860b2012-06-26 17:45:31 +0000312 else {
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000313 Callee = CGM.GetAddrOfFunction(DevirtualizedMethod, Ty);
Rafael Espindola49e860b2012-06-26 17:45:31 +0000314 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000315 }
316
Richard Smithe30752c2012-10-09 19:52:38 +0000317 return EmitCXXMemberCall(MD, CE->getExprLoc(), Callee, ReturnValue, This,
318 /*VTT=*/0, CE->arg_begin(), CE->arg_end());
Anders Carlsson27da15b2010-01-01 20:29:01 +0000319}
320
321RValue
322CodeGenFunction::EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E,
323 ReturnValueSlot ReturnValue) {
324 const BinaryOperator *BO =
325 cast<BinaryOperator>(E->getCallee()->IgnoreParens());
326 const Expr *BaseExpr = BO->getLHS();
327 const Expr *MemFnExpr = BO->getRHS();
328
329 const MemberPointerType *MPT =
John McCall0009fcc2011-04-26 20:42:42 +0000330 MemFnExpr->getType()->castAs<MemberPointerType>();
John McCall475999d2010-08-22 00:05:51 +0000331
Anders Carlsson27da15b2010-01-01 20:29:01 +0000332 const FunctionProtoType *FPT =
John McCall0009fcc2011-04-26 20:42:42 +0000333 MPT->getPointeeType()->castAs<FunctionProtoType>();
Anders Carlsson27da15b2010-01-01 20:29:01 +0000334 const CXXRecordDecl *RD =
335 cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl());
336
Anders Carlsson27da15b2010-01-01 20:29:01 +0000337 // Get the member function pointer.
John McCalla1dee5302010-08-22 10:59:02 +0000338 llvm::Value *MemFnPtr = EmitScalarExpr(MemFnExpr);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000339
340 // Emit the 'this' pointer.
341 llvm::Value *This;
342
John McCalle3027922010-08-25 11:45:40 +0000343 if (BO->getOpcode() == BO_PtrMemI)
Anders Carlsson27da15b2010-01-01 20:29:01 +0000344 This = EmitScalarExpr(BaseExpr);
345 else
346 This = EmitLValue(BaseExpr).getAddress();
Anders Carlsson27da15b2010-01-01 20:29:01 +0000347
Richard Smithe30752c2012-10-09 19:52:38 +0000348 EmitTypeCheck(TCK_MemberCall, E->getExprLoc(), This,
349 QualType(MPT->getClass(), 0));
Richard Smith69d0d262012-08-24 00:54:33 +0000350
John McCall475999d2010-08-22 00:05:51 +0000351 // Ask the ABI to load the callee. Note that This is modified.
352 llvm::Value *Callee =
John McCallad7c5c12011-02-08 08:22:06 +0000353 CGM.getCXXABI().EmitLoadOfMemberFunctionPointer(*this, This, MemFnPtr, MPT);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000354
Anders Carlsson27da15b2010-01-01 20:29:01 +0000355 CallArgList Args;
356
357 QualType ThisType =
358 getContext().getPointerType(getContext().getTagDeclType(RD));
359
360 // Push the this ptr.
Eli Friedman43dca6a2011-05-02 17:57:46 +0000361 Args.add(RValue::get(This), ThisType);
John McCall8dda7b22012-07-07 06:41:13 +0000362
363 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, 1);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000364
365 // And the rest of the call args
366 EmitCallArgs(Args, FPT, E->arg_begin(), E->arg_end());
John McCall8dda7b22012-07-07 06:41:13 +0000367 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required), Callee,
Tilmann Scheller99cc30c2011-03-02 21:36:49 +0000368 ReturnValue, Args);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000369}
370
371RValue
372CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
373 const CXXMethodDecl *MD,
374 ReturnValueSlot ReturnValue) {
375 assert(MD->isInstance() &&
376 "Trying to emit a member call expr on a static method!");
John McCalle26a8722010-12-04 08:14:53 +0000377 LValue LV = EmitLValue(E->getArg(0));
378 llvm::Value *This = LV.getAddress();
379
Douglas Gregor146b8e92011-09-06 16:26:56 +0000380 if ((MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) &&
381 MD->isTrivial()) {
382 llvm::Value *Src = EmitLValue(E->getArg(1)).getAddress();
383 QualType Ty = E->getType();
Benjamin Kramer1ca66912012-09-30 12:43:37 +0000384 EmitAggregateAssign(This, Src, Ty);
Douglas Gregor146b8e92011-09-06 16:26:56 +0000385 return RValue::get(This);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000386 }
387
Anders Carlssonc36783e2011-05-08 20:32:23 +0000388 llvm::Value *Callee = EmitCXXOperatorMemberCallee(E, MD, This);
Richard Smithe30752c2012-10-09 19:52:38 +0000389 return EmitCXXMemberCall(MD, E->getExprLoc(), Callee, ReturnValue, This,
390 /*VTT=*/0, E->arg_begin() + 1, E->arg_end());
Anders Carlsson27da15b2010-01-01 20:29:01 +0000391}
392
Peter Collingbournefe883422011-10-06 18:29:37 +0000393RValue CodeGenFunction::EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E,
394 ReturnValueSlot ReturnValue) {
395 return CGM.getCUDARuntime().EmitCUDAKernelCallExpr(*this, E, ReturnValue);
396}
397
Eli Friedmanfde961d2011-10-14 02:27:24 +0000398static void EmitNullBaseClassInitialization(CodeGenFunction &CGF,
399 llvm::Value *DestPtr,
400 const CXXRecordDecl *Base) {
401 if (Base->isEmpty())
402 return;
403
404 DestPtr = CGF.EmitCastToVoidPtr(DestPtr);
405
406 const ASTRecordLayout &Layout = CGF.getContext().getASTRecordLayout(Base);
407 CharUnits Size = Layout.getNonVirtualSize();
408 CharUnits Align = Layout.getNonVirtualAlign();
409
410 llvm::Value *SizeVal = CGF.CGM.getSize(Size);
411
412 // If the type contains a pointer to data member we can't memset it to zero.
413 // Instead, create a null constant and copy it to the destination.
414 // TODO: there are other patterns besides zero that we can usefully memset,
415 // like -1, which happens to be the pattern used by member-pointers.
416 // TODO: isZeroInitializable can be over-conservative in the case where a
417 // virtual base contains a member pointer.
418 if (!CGF.CGM.getTypes().isZeroInitializable(Base)) {
419 llvm::Constant *NullConstant = CGF.CGM.EmitNullConstantForBase(Base);
420
421 llvm::GlobalVariable *NullVariable =
422 new llvm::GlobalVariable(CGF.CGM.getModule(), NullConstant->getType(),
423 /*isConstant=*/true,
424 llvm::GlobalVariable::PrivateLinkage,
425 NullConstant, Twine());
426 NullVariable->setAlignment(Align.getQuantity());
427 llvm::Value *SrcPtr = CGF.EmitCastToVoidPtr(NullVariable);
428
429 // Get and call the appropriate llvm.memcpy overload.
430 CGF.Builder.CreateMemCpy(DestPtr, SrcPtr, SizeVal, Align.getQuantity());
431 return;
432 }
433
434 // Otherwise, just memset the whole thing to zero. This is legal
435 // because in LLVM, all default initializers (other than the ones we just
436 // handled above) are guaranteed to have a bit pattern of all zeros.
437 CGF.Builder.CreateMemSet(DestPtr, CGF.Builder.getInt8(0), SizeVal,
438 Align.getQuantity());
439}
440
Anders Carlsson27da15b2010-01-01 20:29:01 +0000441void
John McCall7a626f62010-09-15 10:14:12 +0000442CodeGenFunction::EmitCXXConstructExpr(const CXXConstructExpr *E,
443 AggValueSlot Dest) {
444 assert(!Dest.isIgnored() && "Must have a destination!");
Anders Carlsson27da15b2010-01-01 20:29:01 +0000445 const CXXConstructorDecl *CD = E->getConstructor();
Douglas Gregor630c76e2010-08-22 16:15:35 +0000446
447 // If we require zero initialization before (or instead of) calling the
448 // constructor, as can be the case with a non-user-provided default
Argyrios Kyrtzidis03535262011-04-28 22:57:55 +0000449 // constructor, emit the zero initialization now, unless destination is
450 // already zeroed.
Eli Friedmanfde961d2011-10-14 02:27:24 +0000451 if (E->requiresZeroInitialization() && !Dest.isZeroed()) {
452 switch (E->getConstructionKind()) {
453 case CXXConstructExpr::CK_Delegating:
Eli Friedmanfde961d2011-10-14 02:27:24 +0000454 case CXXConstructExpr::CK_Complete:
455 EmitNullInitialization(Dest.getAddr(), E->getType());
456 break;
457 case CXXConstructExpr::CK_VirtualBase:
458 case CXXConstructExpr::CK_NonVirtualBase:
459 EmitNullBaseClassInitialization(*this, Dest.getAddr(), CD->getParent());
460 break;
461 }
462 }
Douglas Gregor630c76e2010-08-22 16:15:35 +0000463
464 // If this is a call to a trivial default constructor, do nothing.
465 if (CD->isTrivial() && CD->isDefaultConstructor())
466 return;
467
John McCall8ea46b62010-09-18 00:58:34 +0000468 // Elide the constructor if we're constructing from a temporary.
469 // The temporary check is required because Sema sets this on NRVO
470 // returns.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000471 if (getContext().getLangOpts().ElideConstructors && E->isElidable()) {
John McCall8ea46b62010-09-18 00:58:34 +0000472 assert(getContext().hasSameUnqualifiedType(E->getType(),
473 E->getArg(0)->getType()));
John McCall7a626f62010-09-15 10:14:12 +0000474 if (E->getArg(0)->isTemporaryObject(getContext(), CD->getParent())) {
475 EmitAggExpr(E->getArg(0), Dest);
Douglas Gregor222cf0e2010-05-15 00:13:29 +0000476 return;
477 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000478 }
Douglas Gregor630c76e2010-08-22 16:15:35 +0000479
John McCallf677a8e2011-07-13 06:10:41 +0000480 if (const ConstantArrayType *arrayType
481 = getContext().getAsConstantArrayType(E->getType())) {
482 EmitCXXAggrConstructorCall(CD, arrayType, Dest.getAddr(),
Anders Carlsson27da15b2010-01-01 20:29:01 +0000483 E->arg_begin(), E->arg_end());
John McCallf677a8e2011-07-13 06:10:41 +0000484 } else {
Cameron Esfahanibceca202011-05-06 21:28:42 +0000485 CXXCtorType Type = Ctor_Complete;
Alexis Hunt271c3682011-05-03 20:19:28 +0000486 bool ForVirtualBase = false;
487
488 switch (E->getConstructionKind()) {
489 case CXXConstructExpr::CK_Delegating:
Alexis Hunt61bc1732011-05-01 07:04:31 +0000490 // We should be emitting a constructor; GlobalDecl will assert this
491 Type = CurGD.getCtorType();
Alexis Hunt271c3682011-05-03 20:19:28 +0000492 break;
Alexis Hunt61bc1732011-05-01 07:04:31 +0000493
Alexis Hunt271c3682011-05-03 20:19:28 +0000494 case CXXConstructExpr::CK_Complete:
495 Type = Ctor_Complete;
496 break;
497
498 case CXXConstructExpr::CK_VirtualBase:
499 ForVirtualBase = true;
500 // fall-through
501
502 case CXXConstructExpr::CK_NonVirtualBase:
503 Type = Ctor_Base;
504 }
Anders Carlssone11f9ce2010-05-02 23:20:53 +0000505
Anders Carlsson27da15b2010-01-01 20:29:01 +0000506 // Call the constructor.
John McCall7a626f62010-09-15 10:14:12 +0000507 EmitCXXConstructorCall(CD, Type, ForVirtualBase, Dest.getAddr(),
Anders Carlsson27da15b2010-01-01 20:29:01 +0000508 E->arg_begin(), E->arg_end());
Anders Carlssone11f9ce2010-05-02 23:20:53 +0000509 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000510}
511
Fariborz Jahaniane988bda2010-11-13 21:53:34 +0000512void
513CodeGenFunction::EmitSynthesizedCXXCopyCtor(llvm::Value *Dest,
514 llvm::Value *Src,
Fariborz Jahanian50198092010-12-02 17:02:11 +0000515 const Expr *Exp) {
John McCall5d413782010-12-06 08:20:24 +0000516 if (const ExprWithCleanups *E = dyn_cast<ExprWithCleanups>(Exp))
Fariborz Jahaniane988bda2010-11-13 21:53:34 +0000517 Exp = E->getSubExpr();
518 assert(isa<CXXConstructExpr>(Exp) &&
519 "EmitSynthesizedCXXCopyCtor - unknown copy ctor expr");
520 const CXXConstructExpr* E = cast<CXXConstructExpr>(Exp);
521 const CXXConstructorDecl *CD = E->getConstructor();
522 RunCleanupsScope Scope(*this);
523
524 // If we require zero initialization before (or instead of) calling the
525 // constructor, as can be the case with a non-user-provided default
526 // constructor, emit the zero initialization now.
527 // FIXME. Do I still need this for a copy ctor synthesis?
528 if (E->requiresZeroInitialization())
529 EmitNullInitialization(Dest, E->getType());
530
Chandler Carruth99da11c2010-11-15 13:54:43 +0000531 assert(!getContext().getAsConstantArrayType(E->getType())
532 && "EmitSynthesizedCXXCopyCtor - Copied-in Array");
Fariborz Jahaniane988bda2010-11-13 21:53:34 +0000533 EmitSynthesizedCXXCopyCtorCall(CD, Dest, Src,
534 E->arg_begin(), E->arg_end());
535}
536
John McCall8ed55a52010-09-02 09:58:18 +0000537static CharUnits CalculateCookiePadding(CodeGenFunction &CGF,
538 const CXXNewExpr *E) {
Anders Carlsson21122cf2009-12-13 20:04:38 +0000539 if (!E->isArray())
Ken Dyck3eb55cf2010-01-26 19:44:24 +0000540 return CharUnits::Zero();
Anders Carlsson21122cf2009-12-13 20:04:38 +0000541
John McCall7ec4b432011-05-16 01:05:12 +0000542 // No cookie is required if the operator new[] being used is the
543 // reserved placement operator new[].
544 if (E->getOperatorNew()->isReservedGlobalPlacementOperator())
John McCallaa4149a2010-08-23 01:17:59 +0000545 return CharUnits::Zero();
546
John McCall284c48f2011-01-27 09:37:56 +0000547 return CGF.CGM.getCXXABI().GetArrayCookieSize(E);
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000548}
549
John McCall036f2f62011-05-15 07:14:44 +0000550static llvm::Value *EmitCXXNewAllocSize(CodeGenFunction &CGF,
551 const CXXNewExpr *e,
Sebastian Redlf862eb62012-02-22 17:37:52 +0000552 unsigned minElements,
John McCall036f2f62011-05-15 07:14:44 +0000553 llvm::Value *&numElements,
554 llvm::Value *&sizeWithoutCookie) {
555 QualType type = e->getAllocatedType();
John McCall8ed55a52010-09-02 09:58:18 +0000556
John McCall036f2f62011-05-15 07:14:44 +0000557 if (!e->isArray()) {
558 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
559 sizeWithoutCookie
560 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity());
561 return sizeWithoutCookie;
Douglas Gregor05fc5be2010-07-21 01:10:17 +0000562 }
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000563
John McCall036f2f62011-05-15 07:14:44 +0000564 // The width of size_t.
565 unsigned sizeWidth = CGF.SizeTy->getBitWidth();
566
John McCall8ed55a52010-09-02 09:58:18 +0000567 // Figure out the cookie size.
John McCall036f2f62011-05-15 07:14:44 +0000568 llvm::APInt cookieSize(sizeWidth,
569 CalculateCookiePadding(CGF, e).getQuantity());
John McCall8ed55a52010-09-02 09:58:18 +0000570
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000571 // Emit the array size expression.
Argyrios Kyrtzidis7648fb42010-08-26 15:23:38 +0000572 // We multiply the size of all dimensions for NumElements.
573 // e.g for 'int[2][3]', ElemType is 'int' and NumElements is 6.
John McCall036f2f62011-05-15 07:14:44 +0000574 numElements = CGF.EmitScalarExpr(e->getArraySize());
575 assert(isa<llvm::IntegerType>(numElements->getType()));
John McCall8ed55a52010-09-02 09:58:18 +0000576
John McCall036f2f62011-05-15 07:14:44 +0000577 // The number of elements can be have an arbitrary integer type;
578 // essentially, we need to multiply it by a constant factor, add a
579 // cookie size, and verify that the result is representable as a
580 // size_t. That's just a gloss, though, and it's wrong in one
581 // important way: if the count is negative, it's an error even if
582 // the cookie size would bring the total size >= 0.
Douglas Gregor6ab2fa82011-05-20 16:38:50 +0000583 bool isSigned
584 = e->getArraySize()->getType()->isSignedIntegerOrEnumerationType();
Chris Lattner2192fe52011-07-18 04:24:23 +0000585 llvm::IntegerType *numElementsType
John McCall036f2f62011-05-15 07:14:44 +0000586 = cast<llvm::IntegerType>(numElements->getType());
587 unsigned numElementsWidth = numElementsType->getBitWidth();
588
589 // Compute the constant factor.
590 llvm::APInt arraySizeMultiplier(sizeWidth, 1);
Argyrios Kyrtzidis7648fb42010-08-26 15:23:38 +0000591 while (const ConstantArrayType *CAT
John McCall036f2f62011-05-15 07:14:44 +0000592 = CGF.getContext().getAsConstantArrayType(type)) {
593 type = CAT->getElementType();
594 arraySizeMultiplier *= CAT->getSize();
Argyrios Kyrtzidis7648fb42010-08-26 15:23:38 +0000595 }
596
John McCall036f2f62011-05-15 07:14:44 +0000597 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
598 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity());
599 typeSizeMultiplier *= arraySizeMultiplier;
600
601 // This will be a size_t.
602 llvm::Value *size;
Chris Lattnerf2f38702010-07-20 21:07:09 +0000603
Chris Lattner32ac5832010-07-20 21:55:52 +0000604 // If someone is doing 'new int[42]' there is no need to do a dynamic check.
605 // Don't bloat the -O0 code.
John McCall036f2f62011-05-15 07:14:44 +0000606 if (llvm::ConstantInt *numElementsC =
607 dyn_cast<llvm::ConstantInt>(numElements)) {
608 const llvm::APInt &count = numElementsC->getValue();
John McCall8ed55a52010-09-02 09:58:18 +0000609
John McCall036f2f62011-05-15 07:14:44 +0000610 bool hasAnyOverflow = false;
John McCall8ed55a52010-09-02 09:58:18 +0000611
John McCall036f2f62011-05-15 07:14:44 +0000612 // If 'count' was a negative number, it's an overflow.
613 if (isSigned && count.isNegative())
614 hasAnyOverflow = true;
John McCall8ed55a52010-09-02 09:58:18 +0000615
John McCall036f2f62011-05-15 07:14:44 +0000616 // We want to do all this arithmetic in size_t. If numElements is
617 // wider than that, check whether it's already too big, and if so,
618 // overflow.
619 else if (numElementsWidth > sizeWidth &&
620 numElementsWidth - sizeWidth > count.countLeadingZeros())
621 hasAnyOverflow = true;
622
623 // Okay, compute a count at the right width.
624 llvm::APInt adjustedCount = count.zextOrTrunc(sizeWidth);
625
Sebastian Redlf862eb62012-02-22 17:37:52 +0000626 // If there is a brace-initializer, we cannot allocate fewer elements than
627 // there are initializers. If we do, that's treated like an overflow.
628 if (adjustedCount.ult(minElements))
629 hasAnyOverflow = true;
630
John McCall036f2f62011-05-15 07:14:44 +0000631 // Scale numElements by that. This might overflow, but we don't
632 // care because it only overflows if allocationSize does, too, and
633 // if that overflows then we shouldn't use this.
634 numElements = llvm::ConstantInt::get(CGF.SizeTy,
635 adjustedCount * arraySizeMultiplier);
636
637 // Compute the size before cookie, and track whether it overflowed.
638 bool overflow;
639 llvm::APInt allocationSize
640 = adjustedCount.umul_ov(typeSizeMultiplier, overflow);
641 hasAnyOverflow |= overflow;
642
643 // Add in the cookie, and check whether it's overflowed.
644 if (cookieSize != 0) {
645 // Save the current size without a cookie. This shouldn't be
646 // used if there was overflow.
647 sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
648
649 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
650 hasAnyOverflow |= overflow;
651 }
652
653 // On overflow, produce a -1 so operator new will fail.
654 if (hasAnyOverflow) {
655 size = llvm::Constant::getAllOnesValue(CGF.SizeTy);
656 } else {
657 size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
658 }
659
660 // Otherwise, we might need to use the overflow intrinsics.
661 } else {
Sebastian Redlf862eb62012-02-22 17:37:52 +0000662 // There are up to five conditions we need to test for:
John McCall036f2f62011-05-15 07:14:44 +0000663 // 1) if isSigned, we need to check whether numElements is negative;
664 // 2) if numElementsWidth > sizeWidth, we need to check whether
665 // numElements is larger than something representable in size_t;
Sebastian Redlf862eb62012-02-22 17:37:52 +0000666 // 3) if minElements > 0, we need to check whether numElements is smaller
667 // than that.
668 // 4) we need to compute
John McCall036f2f62011-05-15 07:14:44 +0000669 // sizeWithoutCookie := numElements * typeSizeMultiplier
670 // and check whether it overflows; and
Sebastian Redlf862eb62012-02-22 17:37:52 +0000671 // 5) if we need a cookie, we need to compute
John McCall036f2f62011-05-15 07:14:44 +0000672 // size := sizeWithoutCookie + cookieSize
673 // and check whether it overflows.
674
675 llvm::Value *hasOverflow = 0;
676
677 // If numElementsWidth > sizeWidth, then one way or another, we're
678 // going to have to do a comparison for (2), and this happens to
679 // take care of (1), too.
680 if (numElementsWidth > sizeWidth) {
681 llvm::APInt threshold(numElementsWidth, 1);
682 threshold <<= sizeWidth;
683
684 llvm::Value *thresholdV
685 = llvm::ConstantInt::get(numElementsType, threshold);
686
687 hasOverflow = CGF.Builder.CreateICmpUGE(numElements, thresholdV);
688 numElements = CGF.Builder.CreateTrunc(numElements, CGF.SizeTy);
689
690 // Otherwise, if we're signed, we want to sext up to size_t.
691 } else if (isSigned) {
692 if (numElementsWidth < sizeWidth)
693 numElements = CGF.Builder.CreateSExt(numElements, CGF.SizeTy);
694
695 // If there's a non-1 type size multiplier, then we can do the
696 // signedness check at the same time as we do the multiply
697 // because a negative number times anything will cause an
Sebastian Redlf862eb62012-02-22 17:37:52 +0000698 // unsigned overflow. Otherwise, we have to do it here. But at least
699 // in this case, we can subsume the >= minElements check.
John McCall036f2f62011-05-15 07:14:44 +0000700 if (typeSizeMultiplier == 1)
701 hasOverflow = CGF.Builder.CreateICmpSLT(numElements,
Sebastian Redlf862eb62012-02-22 17:37:52 +0000702 llvm::ConstantInt::get(CGF.SizeTy, minElements));
John McCall036f2f62011-05-15 07:14:44 +0000703
704 // Otherwise, zext up to size_t if necessary.
705 } else if (numElementsWidth < sizeWidth) {
706 numElements = CGF.Builder.CreateZExt(numElements, CGF.SizeTy);
707 }
708
709 assert(numElements->getType() == CGF.SizeTy);
710
Sebastian Redlf862eb62012-02-22 17:37:52 +0000711 if (minElements) {
712 // Don't allow allocation of fewer elements than we have initializers.
713 if (!hasOverflow) {
714 hasOverflow = CGF.Builder.CreateICmpULT(numElements,
715 llvm::ConstantInt::get(CGF.SizeTy, minElements));
716 } else if (numElementsWidth > sizeWidth) {
717 // The other existing overflow subsumes this check.
718 // We do an unsigned comparison, since any signed value < -1 is
719 // taken care of either above or below.
720 hasOverflow = CGF.Builder.CreateOr(hasOverflow,
721 CGF.Builder.CreateICmpULT(numElements,
722 llvm::ConstantInt::get(CGF.SizeTy, minElements)));
723 }
724 }
725
John McCall036f2f62011-05-15 07:14:44 +0000726 size = numElements;
727
728 // Multiply by the type size if necessary. This multiplier
729 // includes all the factors for nested arrays.
730 //
731 // This step also causes numElements to be scaled up by the
732 // nested-array factor if necessary. Overflow on this computation
733 // can be ignored because the result shouldn't be used if
734 // allocation fails.
735 if (typeSizeMultiplier != 1) {
John McCall036f2f62011-05-15 07:14:44 +0000736 llvm::Value *umul_with_overflow
Benjamin Kramer8d375ce2011-07-14 17:45:50 +0000737 = CGF.CGM.getIntrinsic(llvm::Intrinsic::umul_with_overflow, CGF.SizeTy);
John McCall036f2f62011-05-15 07:14:44 +0000738
739 llvm::Value *tsmV =
740 llvm::ConstantInt::get(CGF.SizeTy, typeSizeMultiplier);
741 llvm::Value *result =
742 CGF.Builder.CreateCall2(umul_with_overflow, size, tsmV);
743
744 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
745 if (hasOverflow)
746 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
747 else
748 hasOverflow = overflowed;
749
750 size = CGF.Builder.CreateExtractValue(result, 0);
751
752 // Also scale up numElements by the array size multiplier.
753 if (arraySizeMultiplier != 1) {
754 // If the base element type size is 1, then we can re-use the
755 // multiply we just did.
756 if (typeSize.isOne()) {
757 assert(arraySizeMultiplier == typeSizeMultiplier);
758 numElements = size;
759
760 // Otherwise we need a separate multiply.
761 } else {
762 llvm::Value *asmV =
763 llvm::ConstantInt::get(CGF.SizeTy, arraySizeMultiplier);
764 numElements = CGF.Builder.CreateMul(numElements, asmV);
765 }
766 }
767 } else {
768 // numElements doesn't need to be scaled.
769 assert(arraySizeMultiplier == 1);
Chris Lattner32ac5832010-07-20 21:55:52 +0000770 }
771
John McCall036f2f62011-05-15 07:14:44 +0000772 // Add in the cookie size if necessary.
773 if (cookieSize != 0) {
774 sizeWithoutCookie = size;
775
John McCall036f2f62011-05-15 07:14:44 +0000776 llvm::Value *uadd_with_overflow
Benjamin Kramer8d375ce2011-07-14 17:45:50 +0000777 = CGF.CGM.getIntrinsic(llvm::Intrinsic::uadd_with_overflow, CGF.SizeTy);
John McCall036f2f62011-05-15 07:14:44 +0000778
779 llvm::Value *cookieSizeV = llvm::ConstantInt::get(CGF.SizeTy, cookieSize);
780 llvm::Value *result =
781 CGF.Builder.CreateCall2(uadd_with_overflow, size, cookieSizeV);
782
783 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
784 if (hasOverflow)
785 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
786 else
787 hasOverflow = overflowed;
788
789 size = CGF.Builder.CreateExtractValue(result, 0);
John McCall8ed55a52010-09-02 09:58:18 +0000790 }
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000791
John McCall036f2f62011-05-15 07:14:44 +0000792 // If we had any possibility of dynamic overflow, make a select to
793 // overwrite 'size' with an all-ones value, which should cause
794 // operator new to throw.
795 if (hasOverflow)
796 size = CGF.Builder.CreateSelect(hasOverflow,
797 llvm::Constant::getAllOnesValue(CGF.SizeTy),
798 size);
Chris Lattner32ac5832010-07-20 21:55:52 +0000799 }
John McCall8ed55a52010-09-02 09:58:18 +0000800
John McCall036f2f62011-05-15 07:14:44 +0000801 if (cookieSize == 0)
802 sizeWithoutCookie = size;
John McCall8ed55a52010-09-02 09:58:18 +0000803 else
John McCall036f2f62011-05-15 07:14:44 +0000804 assert(sizeWithoutCookie && "didn't set sizeWithoutCookie?");
John McCall8ed55a52010-09-02 09:58:18 +0000805
John McCall036f2f62011-05-15 07:14:44 +0000806 return size;
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000807}
808
Sebastian Redlf862eb62012-02-22 17:37:52 +0000809static void StoreAnyExprIntoOneUnit(CodeGenFunction &CGF, const Expr *Init,
810 QualType AllocType, llvm::Value *NewPtr) {
Daniel Dunbar03816342010-08-21 02:24:36 +0000811
Eli Friedman38cd36d2011-12-03 02:13:40 +0000812 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(AllocType);
John McCall1553b192011-06-16 04:16:24 +0000813 if (!CGF.hasAggregateLLVMType(AllocType))
Eli Friedman38cd36d2011-12-03 02:13:40 +0000814 CGF.EmitScalarInit(Init, 0, CGF.MakeAddrLValue(NewPtr, AllocType,
Eli Friedmana0544d62011-12-03 04:14:32 +0000815 Alignment),
John McCall1553b192011-06-16 04:16:24 +0000816 false);
Fariborz Jahaniand5202e02010-06-25 18:26:07 +0000817 else if (AllocType->isAnyComplexType())
818 CGF.EmitComplexExprIntoAddr(Init, NewPtr,
819 AllocType.isVolatileQualified());
John McCall7a626f62010-09-15 10:14:12 +0000820 else {
821 AggValueSlot Slot
Eli Friedmanc1d85b92011-12-03 00:54:26 +0000822 = AggValueSlot::forAddr(NewPtr, Alignment, AllocType.getQualifiers(),
John McCall8d6fc952011-08-25 20:40:09 +0000823 AggValueSlot::IsDestructed,
John McCall46759f42011-08-26 07:31:35 +0000824 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier615ed1a2012-03-29 17:37:10 +0000825 AggValueSlot::IsNotAliased);
John McCall7a626f62010-09-15 10:14:12 +0000826 CGF.EmitAggExpr(Init, Slot);
Sebastian Redld026dc42012-02-19 16:03:09 +0000827
828 CGF.MaybeEmitStdInitializerListCleanup(NewPtr, Init);
John McCall7a626f62010-09-15 10:14:12 +0000829 }
Fariborz Jahaniand5202e02010-06-25 18:26:07 +0000830}
831
832void
833CodeGenFunction::EmitNewArrayInitializer(const CXXNewExpr *E,
John McCall99210dc2011-09-15 06:49:18 +0000834 QualType elementType,
835 llvm::Value *beginPtr,
836 llvm::Value *numElements) {
Sebastian Redl6047f072012-02-16 12:22:20 +0000837 if (!E->hasInitializer())
838 return; // We have a POD type.
John McCall99210dc2011-09-15 06:49:18 +0000839
Sebastian Redlf862eb62012-02-22 17:37:52 +0000840 llvm::Value *explicitPtr = beginPtr;
John McCall99210dc2011-09-15 06:49:18 +0000841 // Find the end of the array, hoisted out of the loop.
842 llvm::Value *endPtr =
843 Builder.CreateInBoundsGEP(beginPtr, numElements, "array.end");
844
Sebastian Redlf862eb62012-02-22 17:37:52 +0000845 unsigned initializerElements = 0;
846
847 const Expr *Init = E->getInitializer();
Chad Rosierf62290a2012-02-24 00:13:55 +0000848 llvm::AllocaInst *endOfInit = 0;
849 QualType::DestructionKind dtorKind = elementType.isDestructedType();
850 EHScopeStack::stable_iterator cleanup;
851 llvm::Instruction *cleanupDominator = 0;
Sebastian Redlf862eb62012-02-22 17:37:52 +0000852 // If the initializer is an initializer list, first do the explicit elements.
853 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
854 initializerElements = ILE->getNumInits();
Chad Rosierf62290a2012-02-24 00:13:55 +0000855
856 // Enter a partial-destruction cleanup if necessary.
857 if (needsEHCleanup(dtorKind)) {
858 // In principle we could tell the cleanup where we are more
859 // directly, but the control flow can get so varied here that it
860 // would actually be quite complex. Therefore we go through an
861 // alloca.
862 endOfInit = CreateTempAlloca(beginPtr->getType(), "array.endOfInit");
863 cleanupDominator = Builder.CreateStore(beginPtr, endOfInit);
864 pushIrregularPartialArrayCleanup(beginPtr, endOfInit, elementType,
865 getDestroyer(dtorKind));
866 cleanup = EHStack.stable_begin();
867 }
868
Sebastian Redlf862eb62012-02-22 17:37:52 +0000869 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) {
Chad Rosierf62290a2012-02-24 00:13:55 +0000870 // Tell the cleanup that it needs to destroy up to this
871 // element. TODO: some of these stores can be trivially
872 // observed to be unnecessary.
873 if (endOfInit) Builder.CreateStore(explicitPtr, endOfInit);
Sebastian Redlf862eb62012-02-22 17:37:52 +0000874 StoreAnyExprIntoOneUnit(*this, ILE->getInit(i), elementType, explicitPtr);
875 explicitPtr =Builder.CreateConstGEP1_32(explicitPtr, 1, "array.exp.next");
876 }
877
878 // The remaining elements are filled with the array filler expression.
879 Init = ILE->getArrayFiller();
880 }
881
John McCall99210dc2011-09-15 06:49:18 +0000882 // Create the continuation block.
883 llvm::BasicBlock *contBB = createBasicBlock("new.loop.end");
884
Sebastian Redlf862eb62012-02-22 17:37:52 +0000885 // If the number of elements isn't constant, we have to now check if there is
886 // anything left to initialize.
887 if (llvm::ConstantInt *constNum = dyn_cast<llvm::ConstantInt>(numElements)) {
888 // If all elements have already been initialized, skip the whole loop.
Chad Rosierf62290a2012-02-24 00:13:55 +0000889 if (constNum->getZExtValue() <= initializerElements) {
890 // If there was a cleanup, deactivate it.
891 if (cleanupDominator)
Dmitri Gribenko76bb5cabfa2012-09-10 21:20:09 +0000892 DeactivateCleanupBlock(cleanup, cleanupDominator);
Chad Rosierf62290a2012-02-24 00:13:55 +0000893 return;
894 }
Sebastian Redlf862eb62012-02-22 17:37:52 +0000895 } else {
John McCall99210dc2011-09-15 06:49:18 +0000896 llvm::BasicBlock *nonEmptyBB = createBasicBlock("new.loop.nonempty");
Sebastian Redlf862eb62012-02-22 17:37:52 +0000897 llvm::Value *isEmpty = Builder.CreateICmpEQ(explicitPtr, endPtr,
John McCall99210dc2011-09-15 06:49:18 +0000898 "array.isempty");
899 Builder.CreateCondBr(isEmpty, contBB, nonEmptyBB);
900 EmitBlock(nonEmptyBB);
901 }
902
903 // Enter the loop.
904 llvm::BasicBlock *entryBB = Builder.GetInsertBlock();
905 llvm::BasicBlock *loopBB = createBasicBlock("new.loop");
906
907 EmitBlock(loopBB);
908
909 // Set up the current-element phi.
910 llvm::PHINode *curPtr =
Sebastian Redlf862eb62012-02-22 17:37:52 +0000911 Builder.CreatePHI(explicitPtr->getType(), 2, "array.cur");
912 curPtr->addIncoming(explicitPtr, entryBB);
John McCall99210dc2011-09-15 06:49:18 +0000913
Chad Rosierf62290a2012-02-24 00:13:55 +0000914 // Store the new cleanup position for irregular cleanups.
915 if (endOfInit) Builder.CreateStore(curPtr, endOfInit);
916
John McCall99210dc2011-09-15 06:49:18 +0000917 // Enter a partial-destruction cleanup if necessary.
Chad Rosierf62290a2012-02-24 00:13:55 +0000918 if (!cleanupDominator && needsEHCleanup(dtorKind)) {
John McCall99210dc2011-09-15 06:49:18 +0000919 pushRegularPartialArrayCleanup(beginPtr, curPtr, elementType,
920 getDestroyer(dtorKind));
921 cleanup = EHStack.stable_begin();
John McCallf4beacd2011-11-10 10:43:54 +0000922 cleanupDominator = Builder.CreateUnreachable();
John McCall99210dc2011-09-15 06:49:18 +0000923 }
924
925 // Emit the initializer into this element.
Sebastian Redlf862eb62012-02-22 17:37:52 +0000926 StoreAnyExprIntoOneUnit(*this, Init, E->getAllocatedType(), curPtr);
John McCall99210dc2011-09-15 06:49:18 +0000927
928 // Leave the cleanup if we entered one.
Eli Friedmande6a86b2011-12-09 23:05:37 +0000929 if (cleanupDominator) {
John McCallf4beacd2011-11-10 10:43:54 +0000930 DeactivateCleanupBlock(cleanup, cleanupDominator);
931 cleanupDominator->eraseFromParent();
932 }
John McCall99210dc2011-09-15 06:49:18 +0000933
934 // Advance to the next element.
935 llvm::Value *nextPtr = Builder.CreateConstGEP1_32(curPtr, 1, "array.next");
936
937 // Check whether we've gotten to the end of the array and, if so,
938 // exit the loop.
939 llvm::Value *isEnd = Builder.CreateICmpEQ(nextPtr, endPtr, "array.atend");
940 Builder.CreateCondBr(isEnd, contBB, loopBB);
941 curPtr->addIncoming(nextPtr, Builder.GetInsertBlock());
942
943 EmitBlock(contBB);
Fariborz Jahaniand5202e02010-06-25 18:26:07 +0000944}
945
Douglas Gregor05fc5be2010-07-21 01:10:17 +0000946static void EmitZeroMemSet(CodeGenFunction &CGF, QualType T,
947 llvm::Value *NewPtr, llvm::Value *Size) {
John McCallad7c5c12011-02-08 08:22:06 +0000948 CGF.EmitCastToVoidPtr(NewPtr);
Ken Dyck705ba072011-01-19 01:58:38 +0000949 CharUnits Alignment = CGF.getContext().getTypeAlignInChars(T);
Benjamin Krameracc6b4e2010-12-30 00:13:21 +0000950 CGF.Builder.CreateMemSet(NewPtr, CGF.Builder.getInt8(0), Size,
Ken Dyck705ba072011-01-19 01:58:38 +0000951 Alignment.getQuantity(), false);
Douglas Gregor05fc5be2010-07-21 01:10:17 +0000952}
953
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000954static void EmitNewInitializer(CodeGenFunction &CGF, const CXXNewExpr *E,
John McCall99210dc2011-09-15 06:49:18 +0000955 QualType ElementType,
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000956 llvm::Value *NewPtr,
Douglas Gregor05fc5be2010-07-21 01:10:17 +0000957 llvm::Value *NumElements,
958 llvm::Value *AllocSizeWithoutCookie) {
Sebastian Redl6047f072012-02-16 12:22:20 +0000959 const Expr *Init = E->getInitializer();
Anders Carlsson3a202f62009-11-24 18:43:52 +0000960 if (E->isArray()) {
Sebastian Redl6047f072012-02-16 12:22:20 +0000961 if (const CXXConstructExpr *CCE = dyn_cast_or_null<CXXConstructExpr>(Init)){
962 CXXConstructorDecl *Ctor = CCE->getConstructor();
Douglas Gregord1531032012-02-23 17:07:43 +0000963 if (Ctor->isTrivial()) {
Douglas Gregor05fc5be2010-07-21 01:10:17 +0000964 // If new expression did not specify value-initialization, then there
965 // is no initialization.
Sebastian Redl6047f072012-02-16 12:22:20 +0000966 if (!CCE->requiresZeroInitialization() || Ctor->getParent()->isEmpty())
Douglas Gregor05fc5be2010-07-21 01:10:17 +0000967 return;
968
John McCall99210dc2011-09-15 06:49:18 +0000969 if (CGF.CGM.getTypes().isZeroInitializable(ElementType)) {
Douglas Gregor05fc5be2010-07-21 01:10:17 +0000970 // Optimization: since zero initialization will just set the memory
971 // to all zeroes, generate a single memset to do it in one shot.
John McCall99210dc2011-09-15 06:49:18 +0000972 EmitZeroMemSet(CGF, ElementType, NewPtr, AllocSizeWithoutCookie);
Douglas Gregor05fc5be2010-07-21 01:10:17 +0000973 return;
974 }
Douglas Gregor05fc5be2010-07-21 01:10:17 +0000975 }
John McCallf677a8e2011-07-13 06:10:41 +0000976
Sebastian Redl6047f072012-02-16 12:22:20 +0000977 CGF.EmitCXXAggrConstructorCall(Ctor, NumElements, NewPtr,
978 CCE->arg_begin(), CCE->arg_end(),
Eli Friedman48ddcf22012-08-25 07:11:29 +0000979 CCE->requiresZeroInitialization());
Anders Carlssond040e6b2010-05-03 15:09:17 +0000980 return;
Sebastian Redl6047f072012-02-16 12:22:20 +0000981 } else if (Init && isa<ImplicitValueInitExpr>(Init) &&
Eli Friedmande6a86b2011-12-09 23:05:37 +0000982 CGF.CGM.getTypes().isZeroInitializable(ElementType)) {
Douglas Gregor05fc5be2010-07-21 01:10:17 +0000983 // Optimization: since zero initialization will just set the memory
984 // to all zeroes, generate a single memset to do it in one shot.
John McCall99210dc2011-09-15 06:49:18 +0000985 EmitZeroMemSet(CGF, ElementType, NewPtr, AllocSizeWithoutCookie);
986 return;
Fariborz Jahaniand5202e02010-06-25 18:26:07 +0000987 }
Sebastian Redl6047f072012-02-16 12:22:20 +0000988 CGF.EmitNewArrayInitializer(E, ElementType, NewPtr, NumElements);
989 return;
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000990 }
Anders Carlsson3a202f62009-11-24 18:43:52 +0000991
Sebastian Redl6047f072012-02-16 12:22:20 +0000992 if (!Init)
Fariborz Jahanianb66b08e2010-06-25 20:01:13 +0000993 return;
Sebastian Redl6047f072012-02-16 12:22:20 +0000994
Sebastian Redlf862eb62012-02-22 17:37:52 +0000995 StoreAnyExprIntoOneUnit(CGF, Init, E->getAllocatedType(), NewPtr);
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000996}
997
John McCall824c2f52010-09-14 07:57:04 +0000998namespace {
999 /// A cleanup to call the given 'operator delete' function upon
1000 /// abnormal exit from a new expression.
1001 class CallDeleteDuringNew : public EHScopeStack::Cleanup {
1002 size_t NumPlacementArgs;
1003 const FunctionDecl *OperatorDelete;
1004 llvm::Value *Ptr;
1005 llvm::Value *AllocSize;
1006
1007 RValue *getPlacementArgs() { return reinterpret_cast<RValue*>(this+1); }
1008
1009 public:
1010 static size_t getExtraSize(size_t NumPlacementArgs) {
1011 return NumPlacementArgs * sizeof(RValue);
1012 }
1013
1014 CallDeleteDuringNew(size_t NumPlacementArgs,
1015 const FunctionDecl *OperatorDelete,
1016 llvm::Value *Ptr,
1017 llvm::Value *AllocSize)
1018 : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
1019 Ptr(Ptr), AllocSize(AllocSize) {}
1020
1021 void setPlacementArg(unsigned I, RValue Arg) {
1022 assert(I < NumPlacementArgs && "index out of range");
1023 getPlacementArgs()[I] = Arg;
1024 }
1025
John McCall30317fd2011-07-12 20:27:29 +00001026 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall824c2f52010-09-14 07:57:04 +00001027 const FunctionProtoType *FPT
1028 = OperatorDelete->getType()->getAs<FunctionProtoType>();
1029 assert(FPT->getNumArgs() == NumPlacementArgs + 1 ||
John McCalld441b1e2010-09-14 21:45:42 +00001030 (FPT->getNumArgs() == 2 && NumPlacementArgs == 0));
John McCall824c2f52010-09-14 07:57:04 +00001031
1032 CallArgList DeleteArgs;
1033
1034 // The first argument is always a void*.
1035 FunctionProtoType::arg_type_iterator AI = FPT->arg_type_begin();
Eli Friedman43dca6a2011-05-02 17:57:46 +00001036 DeleteArgs.add(RValue::get(Ptr), *AI++);
John McCall824c2f52010-09-14 07:57:04 +00001037
1038 // A member 'operator delete' can take an extra 'size_t' argument.
1039 if (FPT->getNumArgs() == NumPlacementArgs + 2)
Eli Friedman43dca6a2011-05-02 17:57:46 +00001040 DeleteArgs.add(RValue::get(AllocSize), *AI++);
John McCall824c2f52010-09-14 07:57:04 +00001041
1042 // Pass the rest of the arguments, which must match exactly.
1043 for (unsigned I = 0; I != NumPlacementArgs; ++I)
Eli Friedman43dca6a2011-05-02 17:57:46 +00001044 DeleteArgs.add(getPlacementArgs()[I], *AI++);
John McCall824c2f52010-09-14 07:57:04 +00001045
1046 // Call 'operator delete'.
John McCall8dda7b22012-07-07 06:41:13 +00001047 CGF.EmitCall(CGF.CGM.getTypes().arrangeFreeFunctionCall(DeleteArgs, FPT),
John McCall824c2f52010-09-14 07:57:04 +00001048 CGF.CGM.GetAddrOfFunction(OperatorDelete),
1049 ReturnValueSlot(), DeleteArgs, OperatorDelete);
1050 }
1051 };
John McCall7f9c92a2010-09-17 00:50:28 +00001052
1053 /// A cleanup to call the given 'operator delete' function upon
1054 /// abnormal exit from a new expression when the new expression is
1055 /// conditional.
1056 class CallDeleteDuringConditionalNew : public EHScopeStack::Cleanup {
1057 size_t NumPlacementArgs;
1058 const FunctionDecl *OperatorDelete;
John McCallcb5f77f2011-01-28 10:53:53 +00001059 DominatingValue<RValue>::saved_type Ptr;
1060 DominatingValue<RValue>::saved_type AllocSize;
John McCall7f9c92a2010-09-17 00:50:28 +00001061
John McCallcb5f77f2011-01-28 10:53:53 +00001062 DominatingValue<RValue>::saved_type *getPlacementArgs() {
1063 return reinterpret_cast<DominatingValue<RValue>::saved_type*>(this+1);
John McCall7f9c92a2010-09-17 00:50:28 +00001064 }
1065
1066 public:
1067 static size_t getExtraSize(size_t NumPlacementArgs) {
John McCallcb5f77f2011-01-28 10:53:53 +00001068 return NumPlacementArgs * sizeof(DominatingValue<RValue>::saved_type);
John McCall7f9c92a2010-09-17 00:50:28 +00001069 }
1070
1071 CallDeleteDuringConditionalNew(size_t NumPlacementArgs,
1072 const FunctionDecl *OperatorDelete,
John McCallcb5f77f2011-01-28 10:53:53 +00001073 DominatingValue<RValue>::saved_type Ptr,
1074 DominatingValue<RValue>::saved_type AllocSize)
John McCall7f9c92a2010-09-17 00:50:28 +00001075 : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
1076 Ptr(Ptr), AllocSize(AllocSize) {}
1077
John McCallcb5f77f2011-01-28 10:53:53 +00001078 void setPlacementArg(unsigned I, DominatingValue<RValue>::saved_type Arg) {
John McCall7f9c92a2010-09-17 00:50:28 +00001079 assert(I < NumPlacementArgs && "index out of range");
1080 getPlacementArgs()[I] = Arg;
1081 }
1082
John McCall30317fd2011-07-12 20:27:29 +00001083 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall7f9c92a2010-09-17 00:50:28 +00001084 const FunctionProtoType *FPT
1085 = OperatorDelete->getType()->getAs<FunctionProtoType>();
1086 assert(FPT->getNumArgs() == NumPlacementArgs + 1 ||
1087 (FPT->getNumArgs() == 2 && NumPlacementArgs == 0));
1088
1089 CallArgList DeleteArgs;
1090
1091 // The first argument is always a void*.
1092 FunctionProtoType::arg_type_iterator AI = FPT->arg_type_begin();
Eli Friedman43dca6a2011-05-02 17:57:46 +00001093 DeleteArgs.add(Ptr.restore(CGF), *AI++);
John McCall7f9c92a2010-09-17 00:50:28 +00001094
1095 // A member 'operator delete' can take an extra 'size_t' argument.
1096 if (FPT->getNumArgs() == NumPlacementArgs + 2) {
John McCallcb5f77f2011-01-28 10:53:53 +00001097 RValue RV = AllocSize.restore(CGF);
Eli Friedman43dca6a2011-05-02 17:57:46 +00001098 DeleteArgs.add(RV, *AI++);
John McCall7f9c92a2010-09-17 00:50:28 +00001099 }
1100
1101 // Pass the rest of the arguments, which must match exactly.
1102 for (unsigned I = 0; I != NumPlacementArgs; ++I) {
John McCallcb5f77f2011-01-28 10:53:53 +00001103 RValue RV = getPlacementArgs()[I].restore(CGF);
Eli Friedman43dca6a2011-05-02 17:57:46 +00001104 DeleteArgs.add(RV, *AI++);
John McCall7f9c92a2010-09-17 00:50:28 +00001105 }
1106
1107 // Call 'operator delete'.
John McCall8dda7b22012-07-07 06:41:13 +00001108 CGF.EmitCall(CGF.CGM.getTypes().arrangeFreeFunctionCall(DeleteArgs, FPT),
John McCall7f9c92a2010-09-17 00:50:28 +00001109 CGF.CGM.GetAddrOfFunction(OperatorDelete),
1110 ReturnValueSlot(), DeleteArgs, OperatorDelete);
1111 }
1112 };
1113}
1114
1115/// Enter a cleanup to call 'operator delete' if the initializer in a
1116/// new-expression throws.
1117static void EnterNewDeleteCleanup(CodeGenFunction &CGF,
1118 const CXXNewExpr *E,
1119 llvm::Value *NewPtr,
1120 llvm::Value *AllocSize,
1121 const CallArgList &NewArgs) {
1122 // If we're not inside a conditional branch, then the cleanup will
1123 // dominate and we can do the easier (and more efficient) thing.
1124 if (!CGF.isInConditionalBranch()) {
1125 CallDeleteDuringNew *Cleanup = CGF.EHStack
1126 .pushCleanupWithExtra<CallDeleteDuringNew>(EHCleanup,
1127 E->getNumPlacementArgs(),
1128 E->getOperatorDelete(),
1129 NewPtr, AllocSize);
1130 for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
Eli Friedmanf4258eb2011-05-02 18:05:27 +00001131 Cleanup->setPlacementArg(I, NewArgs[I+1].RV);
John McCall7f9c92a2010-09-17 00:50:28 +00001132
1133 return;
1134 }
1135
1136 // Otherwise, we need to save all this stuff.
John McCallcb5f77f2011-01-28 10:53:53 +00001137 DominatingValue<RValue>::saved_type SavedNewPtr =
1138 DominatingValue<RValue>::save(CGF, RValue::get(NewPtr));
1139 DominatingValue<RValue>::saved_type SavedAllocSize =
1140 DominatingValue<RValue>::save(CGF, RValue::get(AllocSize));
John McCall7f9c92a2010-09-17 00:50:28 +00001141
1142 CallDeleteDuringConditionalNew *Cleanup = CGF.EHStack
John McCallf4beacd2011-11-10 10:43:54 +00001143 .pushCleanupWithExtra<CallDeleteDuringConditionalNew>(EHCleanup,
John McCall7f9c92a2010-09-17 00:50:28 +00001144 E->getNumPlacementArgs(),
1145 E->getOperatorDelete(),
1146 SavedNewPtr,
1147 SavedAllocSize);
1148 for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
John McCallcb5f77f2011-01-28 10:53:53 +00001149 Cleanup->setPlacementArg(I,
Eli Friedmanf4258eb2011-05-02 18:05:27 +00001150 DominatingValue<RValue>::save(CGF, NewArgs[I+1].RV));
John McCall7f9c92a2010-09-17 00:50:28 +00001151
John McCallf4beacd2011-11-10 10:43:54 +00001152 CGF.initFullExprCleanup();
John McCall824c2f52010-09-14 07:57:04 +00001153}
1154
Anders Carlssoncc52f652009-09-22 22:53:17 +00001155llvm::Value *CodeGenFunction::EmitCXXNewExpr(const CXXNewExpr *E) {
John McCall75f94982011-03-07 03:12:35 +00001156 // The element type being allocated.
1157 QualType allocType = getContext().getBaseElementType(E->getAllocatedType());
John McCall8ed55a52010-09-02 09:58:18 +00001158
John McCall75f94982011-03-07 03:12:35 +00001159 // 1. Build a call to the allocation function.
1160 FunctionDecl *allocator = E->getOperatorNew();
1161 const FunctionProtoType *allocatorType =
1162 allocator->getType()->castAs<FunctionProtoType>();
Anders Carlssoncc52f652009-09-22 22:53:17 +00001163
John McCall75f94982011-03-07 03:12:35 +00001164 CallArgList allocatorArgs;
Anders Carlssoncc52f652009-09-22 22:53:17 +00001165
1166 // The allocation size is the first argument.
John McCall75f94982011-03-07 03:12:35 +00001167 QualType sizeType = getContext().getSizeType();
Anders Carlssoncc52f652009-09-22 22:53:17 +00001168
Sebastian Redlf862eb62012-02-22 17:37:52 +00001169 // If there is a brace-initializer, cannot allocate fewer elements than inits.
1170 unsigned minElements = 0;
1171 if (E->isArray() && E->hasInitializer()) {
1172 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(E->getInitializer()))
1173 minElements = ILE->getNumInits();
1174 }
1175
John McCall75f94982011-03-07 03:12:35 +00001176 llvm::Value *numElements = 0;
1177 llvm::Value *allocSizeWithoutCookie = 0;
1178 llvm::Value *allocSize =
Sebastian Redlf862eb62012-02-22 17:37:52 +00001179 EmitCXXNewAllocSize(*this, E, minElements, numElements,
1180 allocSizeWithoutCookie);
Anders Carlssonb4bd0662009-09-23 16:07:23 +00001181
Eli Friedman43dca6a2011-05-02 17:57:46 +00001182 allocatorArgs.add(RValue::get(allocSize), sizeType);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001183
1184 // Emit the rest of the arguments.
1185 // FIXME: Ideally, this should just use EmitCallArgs.
John McCall75f94982011-03-07 03:12:35 +00001186 CXXNewExpr::const_arg_iterator placementArg = E->placement_arg_begin();
Anders Carlssoncc52f652009-09-22 22:53:17 +00001187
1188 // First, use the types from the function type.
1189 // We start at 1 here because the first argument (the allocation size)
1190 // has already been emitted.
John McCall75f94982011-03-07 03:12:35 +00001191 for (unsigned i = 1, e = allocatorType->getNumArgs(); i != e;
1192 ++i, ++placementArg) {
1193 QualType argType = allocatorType->getArgType(i);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001194
John McCall75f94982011-03-07 03:12:35 +00001195 assert(getContext().hasSameUnqualifiedType(argType.getNonReferenceType(),
1196 placementArg->getType()) &&
Anders Carlssoncc52f652009-09-22 22:53:17 +00001197 "type mismatch in call argument!");
1198
John McCall32ea9692011-03-11 20:59:21 +00001199 EmitCallArg(allocatorArgs, *placementArg, argType);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001200 }
1201
1202 // Either we've emitted all the call args, or we have a call to a
1203 // variadic function.
John McCall75f94982011-03-07 03:12:35 +00001204 assert((placementArg == E->placement_arg_end() ||
1205 allocatorType->isVariadic()) &&
1206 "Extra arguments to non-variadic function!");
Anders Carlssoncc52f652009-09-22 22:53:17 +00001207
1208 // If we still have any arguments, emit them using the type of the argument.
John McCall75f94982011-03-07 03:12:35 +00001209 for (CXXNewExpr::const_arg_iterator placementArgsEnd = E->placement_arg_end();
1210 placementArg != placementArgsEnd; ++placementArg) {
John McCall32ea9692011-03-11 20:59:21 +00001211 EmitCallArg(allocatorArgs, *placementArg, placementArg->getType());
Anders Carlssoncc52f652009-09-22 22:53:17 +00001212 }
1213
John McCall7ec4b432011-05-16 01:05:12 +00001214 // Emit the allocation call. If the allocator is a global placement
1215 // operator, just "inline" it directly.
1216 RValue RV;
1217 if (allocator->isReservedGlobalPlacementOperator()) {
1218 assert(allocatorArgs.size() == 2);
1219 RV = allocatorArgs[1].RV;
1220 // TODO: kill any unnecessary computations done for the size
1221 // argument.
1222 } else {
John McCall8dda7b22012-07-07 06:41:13 +00001223 RV = EmitCall(CGM.getTypes().arrangeFreeFunctionCall(allocatorArgs,
1224 allocatorType),
John McCall7ec4b432011-05-16 01:05:12 +00001225 CGM.GetAddrOfFunction(allocator), ReturnValueSlot(),
1226 allocatorArgs, allocator);
1227 }
Anders Carlssoncc52f652009-09-22 22:53:17 +00001228
John McCall75f94982011-03-07 03:12:35 +00001229 // Emit a null check on the allocation result if the allocation
1230 // function is allowed to return null (because it has a non-throwing
1231 // exception spec; for this part, we inline
1232 // CXXNewExpr::shouldNullCheckAllocation()) and we have an
1233 // interesting initializer.
Sebastian Redl31ad7542011-03-13 17:09:40 +00001234 bool nullCheck = allocatorType->isNothrow(getContext()) &&
Sebastian Redl6047f072012-02-16 12:22:20 +00001235 (!allocType.isPODType(getContext()) || E->hasInitializer());
Anders Carlssoncc52f652009-09-22 22:53:17 +00001236
John McCall75f94982011-03-07 03:12:35 +00001237 llvm::BasicBlock *nullCheckBB = 0;
1238 llvm::BasicBlock *contBB = 0;
Anders Carlssoncc52f652009-09-22 22:53:17 +00001239
John McCall75f94982011-03-07 03:12:35 +00001240 llvm::Value *allocation = RV.getScalarVal();
1241 unsigned AS =
1242 cast<llvm::PointerType>(allocation->getType())->getAddressSpace();
Anders Carlssoncc52f652009-09-22 22:53:17 +00001243
John McCallf7dcf322011-03-07 01:52:56 +00001244 // The null-check means that the initializer is conditionally
1245 // evaluated.
1246 ConditionalEvaluation conditional(*this);
1247
John McCall75f94982011-03-07 03:12:35 +00001248 if (nullCheck) {
John McCallf7dcf322011-03-07 01:52:56 +00001249 conditional.begin(*this);
John McCall75f94982011-03-07 03:12:35 +00001250
1251 nullCheckBB = Builder.GetInsertBlock();
1252 llvm::BasicBlock *notNullBB = createBasicBlock("new.notnull");
1253 contBB = createBasicBlock("new.cont");
1254
1255 llvm::Value *isNull = Builder.CreateIsNull(allocation, "new.isnull");
1256 Builder.CreateCondBr(isNull, contBB, notNullBB);
1257 EmitBlock(notNullBB);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001258 }
Anders Carlssonf7716812009-09-23 18:59:48 +00001259
John McCall824c2f52010-09-14 07:57:04 +00001260 // If there's an operator delete, enter a cleanup to call it if an
1261 // exception is thrown.
John McCall75f94982011-03-07 03:12:35 +00001262 EHScopeStack::stable_iterator operatorDeleteCleanup;
John McCallf4beacd2011-11-10 10:43:54 +00001263 llvm::Instruction *cleanupDominator = 0;
John McCall7ec4b432011-05-16 01:05:12 +00001264 if (E->getOperatorDelete() &&
1265 !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) {
John McCall75f94982011-03-07 03:12:35 +00001266 EnterNewDeleteCleanup(*this, E, allocation, allocSize, allocatorArgs);
1267 operatorDeleteCleanup = EHStack.stable_begin();
John McCallf4beacd2011-11-10 10:43:54 +00001268 cleanupDominator = Builder.CreateUnreachable();
John McCall824c2f52010-09-14 07:57:04 +00001269 }
1270
Eli Friedmancf9b1f62011-09-06 18:53:03 +00001271 assert((allocSize == allocSizeWithoutCookie) ==
1272 CalculateCookiePadding(*this, E).isZero());
1273 if (allocSize != allocSizeWithoutCookie) {
1274 assert(E->isArray());
1275 allocation = CGM.getCXXABI().InitializeArrayCookie(*this, allocation,
1276 numElements,
1277 E, allocType);
1278 }
1279
Chris Lattner2192fe52011-07-18 04:24:23 +00001280 llvm::Type *elementPtrTy
John McCall75f94982011-03-07 03:12:35 +00001281 = ConvertTypeForMem(allocType)->getPointerTo(AS);
1282 llvm::Value *result = Builder.CreateBitCast(allocation, elementPtrTy);
John McCall824c2f52010-09-14 07:57:04 +00001283
John McCall99210dc2011-09-15 06:49:18 +00001284 EmitNewInitializer(*this, E, allocType, result, numElements,
1285 allocSizeWithoutCookie);
John McCall8ed55a52010-09-02 09:58:18 +00001286 if (E->isArray()) {
John McCall8ed55a52010-09-02 09:58:18 +00001287 // NewPtr is a pointer to the base element type. If we're
1288 // allocating an array of arrays, we'll need to cast back to the
1289 // array pointer type.
Chris Lattner2192fe52011-07-18 04:24:23 +00001290 llvm::Type *resultType = ConvertTypeForMem(E->getType());
John McCall75f94982011-03-07 03:12:35 +00001291 if (result->getType() != resultType)
1292 result = Builder.CreateBitCast(result, resultType);
Fariborz Jahanian47b46292010-03-24 16:57:01 +00001293 }
John McCall824c2f52010-09-14 07:57:04 +00001294
1295 // Deactivate the 'operator delete' cleanup if we finished
1296 // initialization.
John McCallf4beacd2011-11-10 10:43:54 +00001297 if (operatorDeleteCleanup.isValid()) {
1298 DeactivateCleanupBlock(operatorDeleteCleanup, cleanupDominator);
1299 cleanupDominator->eraseFromParent();
1300 }
Sebastian Redl6047f072012-02-16 12:22:20 +00001301
John McCall75f94982011-03-07 03:12:35 +00001302 if (nullCheck) {
John McCallf7dcf322011-03-07 01:52:56 +00001303 conditional.end(*this);
1304
John McCall75f94982011-03-07 03:12:35 +00001305 llvm::BasicBlock *notNullBB = Builder.GetInsertBlock();
1306 EmitBlock(contBB);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001307
Jay Foad20c0f022011-03-30 11:28:58 +00001308 llvm::PHINode *PHI = Builder.CreatePHI(result->getType(), 2);
John McCall75f94982011-03-07 03:12:35 +00001309 PHI->addIncoming(result, notNullBB);
1310 PHI->addIncoming(llvm::Constant::getNullValue(result->getType()),
1311 nullCheckBB);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001312
John McCall75f94982011-03-07 03:12:35 +00001313 result = PHI;
Anders Carlssoncc52f652009-09-22 22:53:17 +00001314 }
John McCall8ed55a52010-09-02 09:58:18 +00001315
John McCall75f94982011-03-07 03:12:35 +00001316 return result;
Anders Carlssoncc52f652009-09-22 22:53:17 +00001317}
1318
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001319void CodeGenFunction::EmitDeleteCall(const FunctionDecl *DeleteFD,
1320 llvm::Value *Ptr,
1321 QualType DeleteTy) {
John McCall8ed55a52010-09-02 09:58:18 +00001322 assert(DeleteFD->getOverloadedOperator() == OO_Delete);
1323
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001324 const FunctionProtoType *DeleteFTy =
1325 DeleteFD->getType()->getAs<FunctionProtoType>();
1326
1327 CallArgList DeleteArgs;
1328
Anders Carlsson21122cf2009-12-13 20:04:38 +00001329 // Check if we need to pass the size to the delete operator.
1330 llvm::Value *Size = 0;
1331 QualType SizeTy;
1332 if (DeleteFTy->getNumArgs() == 2) {
1333 SizeTy = DeleteFTy->getArgType(1);
Ken Dyck7df3cbe2010-01-26 19:59:28 +00001334 CharUnits DeleteTypeSize = getContext().getTypeSizeInChars(DeleteTy);
1335 Size = llvm::ConstantInt::get(ConvertType(SizeTy),
1336 DeleteTypeSize.getQuantity());
Anders Carlsson21122cf2009-12-13 20:04:38 +00001337 }
1338
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001339 QualType ArgTy = DeleteFTy->getArgType(0);
1340 llvm::Value *DeletePtr = Builder.CreateBitCast(Ptr, ConvertType(ArgTy));
Eli Friedman43dca6a2011-05-02 17:57:46 +00001341 DeleteArgs.add(RValue::get(DeletePtr), ArgTy);
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001342
Anders Carlsson21122cf2009-12-13 20:04:38 +00001343 if (Size)
Eli Friedman43dca6a2011-05-02 17:57:46 +00001344 DeleteArgs.add(RValue::get(Size), SizeTy);
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001345
1346 // Emit the call to delete.
John McCall8dda7b22012-07-07 06:41:13 +00001347 EmitCall(CGM.getTypes().arrangeFreeFunctionCall(DeleteArgs, DeleteFTy),
Anders Carlsson61a401c2009-12-24 19:25:24 +00001348 CGM.GetAddrOfFunction(DeleteFD), ReturnValueSlot(),
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001349 DeleteArgs, DeleteFD);
1350}
1351
John McCall8ed55a52010-09-02 09:58:18 +00001352namespace {
1353 /// Calls the given 'operator delete' on a single object.
1354 struct CallObjectDelete : EHScopeStack::Cleanup {
1355 llvm::Value *Ptr;
1356 const FunctionDecl *OperatorDelete;
1357 QualType ElementType;
1358
1359 CallObjectDelete(llvm::Value *Ptr,
1360 const FunctionDecl *OperatorDelete,
1361 QualType ElementType)
1362 : Ptr(Ptr), OperatorDelete(OperatorDelete), ElementType(ElementType) {}
1363
John McCall30317fd2011-07-12 20:27:29 +00001364 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall8ed55a52010-09-02 09:58:18 +00001365 CGF.EmitDeleteCall(OperatorDelete, Ptr, ElementType);
1366 }
1367 };
1368}
1369
1370/// Emit the code for deleting a single object.
1371static void EmitObjectDelete(CodeGenFunction &CGF,
1372 const FunctionDecl *OperatorDelete,
1373 llvm::Value *Ptr,
Douglas Gregor1c2e20d2011-07-13 00:54:47 +00001374 QualType ElementType,
1375 bool UseGlobalDelete) {
John McCall8ed55a52010-09-02 09:58:18 +00001376 // Find the destructor for the type, if applicable. If the
1377 // destructor is virtual, we'll just emit the vcall and return.
1378 const CXXDestructorDecl *Dtor = 0;
1379 if (const RecordType *RT = ElementType->getAs<RecordType>()) {
1380 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Eli Friedmanb23533d2011-08-02 18:05:30 +00001381 if (RD->hasDefinition() && !RD->hasTrivialDestructor()) {
John McCall8ed55a52010-09-02 09:58:18 +00001382 Dtor = RD->getDestructor();
1383
1384 if (Dtor->isVirtual()) {
Douglas Gregor1c2e20d2011-07-13 00:54:47 +00001385 if (UseGlobalDelete) {
1386 // If we're supposed to call the global delete, make sure we do so
1387 // even if the destructor throws.
John McCall82fb8922012-09-25 10:10:39 +00001388
1389 // Derive the complete-object pointer, which is what we need
1390 // to pass to the deallocation function.
1391 llvm::Value *completePtr =
1392 CGF.CGM.getCXXABI().adjustToCompleteObject(CGF, Ptr, ElementType);
1393
Douglas Gregor1c2e20d2011-07-13 00:54:47 +00001394 CGF.EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup,
John McCall82fb8922012-09-25 10:10:39 +00001395 completePtr, OperatorDelete,
Douglas Gregor1c2e20d2011-07-13 00:54:47 +00001396 ElementType);
1397 }
1398
Chris Lattner2192fe52011-07-18 04:24:23 +00001399 llvm::Type *Ty =
John McCalla729c622012-02-17 03:33:10 +00001400 CGF.getTypes().GetFunctionType(
1401 CGF.getTypes().arrangeCXXDestructor(Dtor, Dtor_Complete));
John McCall8ed55a52010-09-02 09:58:18 +00001402
1403 llvm::Value *Callee
Douglas Gregor1c2e20d2011-07-13 00:54:47 +00001404 = CGF.BuildVirtualCall(Dtor,
1405 UseGlobalDelete? Dtor_Complete : Dtor_Deleting,
1406 Ptr, Ty);
Richard Smithe30752c2012-10-09 19:52:38 +00001407 // FIXME: Provide a source location here.
1408 CGF.EmitCXXMemberCall(Dtor, SourceLocation(), Callee, ReturnValueSlot(),
1409 Ptr, /*VTT=*/0, 0, 0);
John McCall8ed55a52010-09-02 09:58:18 +00001410
Douglas Gregor1c2e20d2011-07-13 00:54:47 +00001411 if (UseGlobalDelete) {
1412 CGF.PopCleanupBlock();
1413 }
1414
John McCall8ed55a52010-09-02 09:58:18 +00001415 return;
1416 }
1417 }
1418 }
1419
1420 // Make sure that we call delete even if the dtor throws.
John McCalle4df6c82011-01-28 08:37:24 +00001421 // This doesn't have to a conditional cleanup because we're going
1422 // to pop it off in a second.
John McCall8ed55a52010-09-02 09:58:18 +00001423 CGF.EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup,
1424 Ptr, OperatorDelete, ElementType);
1425
1426 if (Dtor)
1427 CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete,
1428 /*ForVirtualBase=*/false, Ptr);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001429 else if (CGF.getLangOpts().ObjCAutoRefCount &&
John McCall31168b02011-06-15 23:02:42 +00001430 ElementType->isObjCLifetimeType()) {
1431 switch (ElementType.getObjCLifetime()) {
1432 case Qualifiers::OCL_None:
1433 case Qualifiers::OCL_ExplicitNone:
1434 case Qualifiers::OCL_Autoreleasing:
1435 break;
John McCall8ed55a52010-09-02 09:58:18 +00001436
John McCall31168b02011-06-15 23:02:42 +00001437 case Qualifiers::OCL_Strong: {
1438 // Load the pointer value.
1439 llvm::Value *PtrValue = CGF.Builder.CreateLoad(Ptr,
1440 ElementType.isVolatileQualified());
1441
1442 CGF.EmitARCRelease(PtrValue, /*precise*/ true);
1443 break;
1444 }
1445
1446 case Qualifiers::OCL_Weak:
1447 CGF.EmitARCDestroyWeak(Ptr);
1448 break;
1449 }
1450 }
1451
John McCall8ed55a52010-09-02 09:58:18 +00001452 CGF.PopCleanupBlock();
1453}
1454
1455namespace {
1456 /// Calls the given 'operator delete' on an array of objects.
1457 struct CallArrayDelete : EHScopeStack::Cleanup {
1458 llvm::Value *Ptr;
1459 const FunctionDecl *OperatorDelete;
1460 llvm::Value *NumElements;
1461 QualType ElementType;
1462 CharUnits CookieSize;
1463
1464 CallArrayDelete(llvm::Value *Ptr,
1465 const FunctionDecl *OperatorDelete,
1466 llvm::Value *NumElements,
1467 QualType ElementType,
1468 CharUnits CookieSize)
1469 : Ptr(Ptr), OperatorDelete(OperatorDelete), NumElements(NumElements),
1470 ElementType(ElementType), CookieSize(CookieSize) {}
1471
John McCall30317fd2011-07-12 20:27:29 +00001472 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall8ed55a52010-09-02 09:58:18 +00001473 const FunctionProtoType *DeleteFTy =
1474 OperatorDelete->getType()->getAs<FunctionProtoType>();
1475 assert(DeleteFTy->getNumArgs() == 1 || DeleteFTy->getNumArgs() == 2);
1476
1477 CallArgList Args;
1478
1479 // Pass the pointer as the first argument.
1480 QualType VoidPtrTy = DeleteFTy->getArgType(0);
1481 llvm::Value *DeletePtr
1482 = CGF.Builder.CreateBitCast(Ptr, CGF.ConvertType(VoidPtrTy));
Eli Friedman43dca6a2011-05-02 17:57:46 +00001483 Args.add(RValue::get(DeletePtr), VoidPtrTy);
John McCall8ed55a52010-09-02 09:58:18 +00001484
1485 // Pass the original requested size as the second argument.
1486 if (DeleteFTy->getNumArgs() == 2) {
1487 QualType size_t = DeleteFTy->getArgType(1);
Chris Lattner2192fe52011-07-18 04:24:23 +00001488 llvm::IntegerType *SizeTy
John McCall8ed55a52010-09-02 09:58:18 +00001489 = cast<llvm::IntegerType>(CGF.ConvertType(size_t));
1490
1491 CharUnits ElementTypeSize =
1492 CGF.CGM.getContext().getTypeSizeInChars(ElementType);
1493
1494 // The size of an element, multiplied by the number of elements.
1495 llvm::Value *Size
1496 = llvm::ConstantInt::get(SizeTy, ElementTypeSize.getQuantity());
1497 Size = CGF.Builder.CreateMul(Size, NumElements);
1498
1499 // Plus the size of the cookie if applicable.
1500 if (!CookieSize.isZero()) {
1501 llvm::Value *CookieSizeV
1502 = llvm::ConstantInt::get(SizeTy, CookieSize.getQuantity());
1503 Size = CGF.Builder.CreateAdd(Size, CookieSizeV);
1504 }
1505
Eli Friedman43dca6a2011-05-02 17:57:46 +00001506 Args.add(RValue::get(Size), size_t);
John McCall8ed55a52010-09-02 09:58:18 +00001507 }
1508
1509 // Emit the call to delete.
John McCall8dda7b22012-07-07 06:41:13 +00001510 CGF.EmitCall(CGF.getTypes().arrangeFreeFunctionCall(Args, DeleteFTy),
John McCall8ed55a52010-09-02 09:58:18 +00001511 CGF.CGM.GetAddrOfFunction(OperatorDelete),
1512 ReturnValueSlot(), Args, OperatorDelete);
1513 }
1514 };
1515}
1516
1517/// Emit the code for deleting an array of objects.
1518static void EmitArrayDelete(CodeGenFunction &CGF,
John McCall284c48f2011-01-27 09:37:56 +00001519 const CXXDeleteExpr *E,
John McCallca2c56f2011-07-13 01:41:37 +00001520 llvm::Value *deletedPtr,
1521 QualType elementType) {
1522 llvm::Value *numElements = 0;
1523 llvm::Value *allocatedPtr = 0;
1524 CharUnits cookieSize;
1525 CGF.CGM.getCXXABI().ReadArrayCookie(CGF, deletedPtr, E, elementType,
1526 numElements, allocatedPtr, cookieSize);
John McCall8ed55a52010-09-02 09:58:18 +00001527
John McCallca2c56f2011-07-13 01:41:37 +00001528 assert(allocatedPtr && "ReadArrayCookie didn't set allocated pointer");
John McCall8ed55a52010-09-02 09:58:18 +00001529
1530 // Make sure that we call delete even if one of the dtors throws.
John McCallca2c56f2011-07-13 01:41:37 +00001531 const FunctionDecl *operatorDelete = E->getOperatorDelete();
John McCall8ed55a52010-09-02 09:58:18 +00001532 CGF.EHStack.pushCleanup<CallArrayDelete>(NormalAndEHCleanup,
John McCallca2c56f2011-07-13 01:41:37 +00001533 allocatedPtr, operatorDelete,
1534 numElements, elementType,
1535 cookieSize);
John McCall8ed55a52010-09-02 09:58:18 +00001536
John McCallca2c56f2011-07-13 01:41:37 +00001537 // Destroy the elements.
1538 if (QualType::DestructionKind dtorKind = elementType.isDestructedType()) {
1539 assert(numElements && "no element count for a type with a destructor!");
1540
John McCallca2c56f2011-07-13 01:41:37 +00001541 llvm::Value *arrayEnd =
1542 CGF.Builder.CreateInBoundsGEP(deletedPtr, numElements, "delete.end");
John McCall97eab0a2011-07-13 08:09:46 +00001543
1544 // Note that it is legal to allocate a zero-length array, and we
1545 // can never fold the check away because the length should always
1546 // come from a cookie.
John McCallca2c56f2011-07-13 01:41:37 +00001547 CGF.emitArrayDestroy(deletedPtr, arrayEnd, elementType,
1548 CGF.getDestroyer(dtorKind),
John McCall97eab0a2011-07-13 08:09:46 +00001549 /*checkZeroLength*/ true,
John McCallca2c56f2011-07-13 01:41:37 +00001550 CGF.needsEHCleanup(dtorKind));
John McCall8ed55a52010-09-02 09:58:18 +00001551 }
1552
John McCallca2c56f2011-07-13 01:41:37 +00001553 // Pop the cleanup block.
John McCall8ed55a52010-09-02 09:58:18 +00001554 CGF.PopCleanupBlock();
1555}
1556
Anders Carlssoncc52f652009-09-22 22:53:17 +00001557void CodeGenFunction::EmitCXXDeleteExpr(const CXXDeleteExpr *E) {
Douglas Gregorbb3e12f2009-09-29 18:16:17 +00001558 const Expr *Arg = E->getArgument();
Douglas Gregorbb3e12f2009-09-29 18:16:17 +00001559 llvm::Value *Ptr = EmitScalarExpr(Arg);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001560
1561 // Null check the pointer.
1562 llvm::BasicBlock *DeleteNotNull = createBasicBlock("delete.notnull");
1563 llvm::BasicBlock *DeleteEnd = createBasicBlock("delete.end");
1564
Anders Carlsson98981b12011-04-11 00:30:07 +00001565 llvm::Value *IsNull = Builder.CreateIsNull(Ptr, "isnull");
Anders Carlssoncc52f652009-09-22 22:53:17 +00001566
1567 Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull);
1568 EmitBlock(DeleteNotNull);
Anders Carlssone828c362009-11-13 04:45:41 +00001569
John McCall8ed55a52010-09-02 09:58:18 +00001570 // We might be deleting a pointer to array. If so, GEP down to the
1571 // first non-array element.
1572 // (this assumes that A(*)[3][7] is converted to [3 x [7 x %A]]*)
1573 QualType DeleteTy = Arg->getType()->getAs<PointerType>()->getPointeeType();
1574 if (DeleteTy->isConstantArrayType()) {
1575 llvm::Value *Zero = Builder.getInt32(0);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001576 SmallVector<llvm::Value*,8> GEP;
John McCall8ed55a52010-09-02 09:58:18 +00001577
1578 GEP.push_back(Zero); // point at the outermost array
1579
1580 // For each layer of array type we're pointing at:
1581 while (const ConstantArrayType *Arr
1582 = getContext().getAsConstantArrayType(DeleteTy)) {
1583 // 1. Unpeel the array type.
1584 DeleteTy = Arr->getElementType();
1585
1586 // 2. GEP to the first element of the array.
1587 GEP.push_back(Zero);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001588 }
John McCall8ed55a52010-09-02 09:58:18 +00001589
Jay Foad040dd822011-07-22 08:16:57 +00001590 Ptr = Builder.CreateInBoundsGEP(Ptr, GEP, "del.first");
Anders Carlssoncc52f652009-09-22 22:53:17 +00001591 }
1592
Douglas Gregor04f36212010-09-02 17:38:50 +00001593 assert(ConvertTypeForMem(DeleteTy) ==
1594 cast<llvm::PointerType>(Ptr->getType())->getElementType());
John McCall8ed55a52010-09-02 09:58:18 +00001595
1596 if (E->isArrayForm()) {
John McCall284c48f2011-01-27 09:37:56 +00001597 EmitArrayDelete(*this, E, Ptr, DeleteTy);
John McCall8ed55a52010-09-02 09:58:18 +00001598 } else {
Douglas Gregor1c2e20d2011-07-13 00:54:47 +00001599 EmitObjectDelete(*this, E->getOperatorDelete(), Ptr, DeleteTy,
1600 E->isGlobalDelete());
John McCall8ed55a52010-09-02 09:58:18 +00001601 }
Anders Carlssoncc52f652009-09-22 22:53:17 +00001602
Anders Carlssoncc52f652009-09-22 22:53:17 +00001603 EmitBlock(DeleteEnd);
1604}
Mike Stumpc9b231c2009-11-15 08:09:41 +00001605
Anders Carlsson0c633502011-04-11 14:13:40 +00001606static llvm::Constant *getBadTypeidFn(CodeGenFunction &CGF) {
1607 // void __cxa_bad_typeid();
Chris Lattnerece04092012-02-07 00:39:47 +00001608 llvm::FunctionType *FTy = llvm::FunctionType::get(CGF.VoidTy, false);
Anders Carlsson0c633502011-04-11 14:13:40 +00001609
1610 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_bad_typeid");
1611}
1612
1613static void EmitBadTypeidCall(CodeGenFunction &CGF) {
Anders Carlssonbbe277c2011-04-13 02:35:36 +00001614 llvm::Value *Fn = getBadTypeidFn(CGF);
Jay Foad5bd375a2011-07-15 08:37:34 +00001615 CGF.EmitCallOrInvoke(Fn).setDoesNotReturn();
Anders Carlsson0c633502011-04-11 14:13:40 +00001616 CGF.Builder.CreateUnreachable();
1617}
1618
Anders Carlsson940f02d2011-04-18 00:57:03 +00001619static llvm::Value *EmitTypeidFromVTable(CodeGenFunction &CGF,
1620 const Expr *E,
Chris Lattner2192fe52011-07-18 04:24:23 +00001621 llvm::Type *StdTypeInfoPtrTy) {
Anders Carlsson940f02d2011-04-18 00:57:03 +00001622 // Get the vtable pointer.
1623 llvm::Value *ThisPtr = CGF.EmitLValue(E).getAddress();
1624
1625 // C++ [expr.typeid]p2:
1626 // If the glvalue expression is obtained by applying the unary * operator to
1627 // a pointer and the pointer is a null pointer value, the typeid expression
1628 // throws the std::bad_typeid exception.
1629 if (const UnaryOperator *UO = dyn_cast<UnaryOperator>(E->IgnoreParens())) {
1630 if (UO->getOpcode() == UO_Deref) {
1631 llvm::BasicBlock *BadTypeidBlock =
1632 CGF.createBasicBlock("typeid.bad_typeid");
1633 llvm::BasicBlock *EndBlock =
1634 CGF.createBasicBlock("typeid.end");
1635
1636 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ThisPtr);
1637 CGF.Builder.CreateCondBr(IsNull, BadTypeidBlock, EndBlock);
1638
1639 CGF.EmitBlock(BadTypeidBlock);
1640 EmitBadTypeidCall(CGF);
1641 CGF.EmitBlock(EndBlock);
1642 }
1643 }
1644
1645 llvm::Value *Value = CGF.GetVTablePtr(ThisPtr,
1646 StdTypeInfoPtrTy->getPointerTo());
1647
1648 // Load the type info.
1649 Value = CGF.Builder.CreateConstInBoundsGEP1_64(Value, -1ULL);
1650 return CGF.Builder.CreateLoad(Value);
1651}
1652
John McCalle4df6c82011-01-28 08:37:24 +00001653llvm::Value *CodeGenFunction::EmitCXXTypeidExpr(const CXXTypeidExpr *E) {
Chris Lattner2192fe52011-07-18 04:24:23 +00001654 llvm::Type *StdTypeInfoPtrTy =
Anders Carlsson940f02d2011-04-18 00:57:03 +00001655 ConvertType(E->getType())->getPointerTo();
Anders Carlssonfd7dfeb2009-12-11 02:46:30 +00001656
Anders Carlsson3f4336c2009-12-17 07:09:17 +00001657 if (E->isTypeOperand()) {
1658 llvm::Constant *TypeInfo =
1659 CGM.GetAddrOfRTTIDescriptor(E->getTypeOperand());
Anders Carlsson940f02d2011-04-18 00:57:03 +00001660 return Builder.CreateBitCast(TypeInfo, StdTypeInfoPtrTy);
Anders Carlsson3f4336c2009-12-17 07:09:17 +00001661 }
Anders Carlsson0c633502011-04-11 14:13:40 +00001662
Anders Carlsson940f02d2011-04-18 00:57:03 +00001663 // C++ [expr.typeid]p2:
1664 // When typeid is applied to a glvalue expression whose type is a
1665 // polymorphic class type, the result refers to a std::type_info object
1666 // representing the type of the most derived object (that is, the dynamic
1667 // type) to which the glvalue refers.
Richard Smithef8bf432012-08-13 20:08:14 +00001668 if (E->isPotentiallyEvaluated())
1669 return EmitTypeidFromVTable(*this, E->getExprOperand(),
1670 StdTypeInfoPtrTy);
Anders Carlsson940f02d2011-04-18 00:57:03 +00001671
1672 QualType OperandTy = E->getExprOperand()->getType();
1673 return Builder.CreateBitCast(CGM.GetAddrOfRTTIDescriptor(OperandTy),
1674 StdTypeInfoPtrTy);
Mike Stumpc9b231c2009-11-15 08:09:41 +00001675}
Mike Stump65511702009-11-16 06:50:58 +00001676
Anders Carlsson882d7902011-04-11 00:46:40 +00001677static llvm::Constant *getDynamicCastFn(CodeGenFunction &CGF) {
1678 // void *__dynamic_cast(const void *sub,
1679 // const abi::__class_type_info *src,
1680 // const abi::__class_type_info *dst,
1681 // std::ptrdiff_t src2dst_offset);
1682
Chris Lattnerece04092012-02-07 00:39:47 +00001683 llvm::Type *Int8PtrTy = CGF.Int8PtrTy;
Chris Lattnera5f58b02011-07-09 17:41:47 +00001684 llvm::Type *PtrDiffTy =
Anders Carlsson882d7902011-04-11 00:46:40 +00001685 CGF.ConvertType(CGF.getContext().getPointerDiffType());
1686
Chris Lattnera5f58b02011-07-09 17:41:47 +00001687 llvm::Type *Args[4] = { Int8PtrTy, Int8PtrTy, Int8PtrTy, PtrDiffTy };
Anders Carlsson882d7902011-04-11 00:46:40 +00001688
Chris Lattner2192fe52011-07-18 04:24:23 +00001689 llvm::FunctionType *FTy =
Anders Carlsson882d7902011-04-11 00:46:40 +00001690 llvm::FunctionType::get(Int8PtrTy, Args, false);
1691
1692 return CGF.CGM.CreateRuntimeFunction(FTy, "__dynamic_cast");
1693}
1694
1695static llvm::Constant *getBadCastFn(CodeGenFunction &CGF) {
1696 // void __cxa_bad_cast();
Chris Lattnerece04092012-02-07 00:39:47 +00001697 llvm::FunctionType *FTy = llvm::FunctionType::get(CGF.VoidTy, false);
Anders Carlsson882d7902011-04-11 00:46:40 +00001698 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_bad_cast");
1699}
1700
Anders Carlssonc1c99712011-04-11 01:45:29 +00001701static void EmitBadCastCall(CodeGenFunction &CGF) {
Anders Carlssonbbe277c2011-04-13 02:35:36 +00001702 llvm::Value *Fn = getBadCastFn(CGF);
Jay Foad5bd375a2011-07-15 08:37:34 +00001703 CGF.EmitCallOrInvoke(Fn).setDoesNotReturn();
Anders Carlssonc1c99712011-04-11 01:45:29 +00001704 CGF.Builder.CreateUnreachable();
1705}
1706
Anders Carlsson882d7902011-04-11 00:46:40 +00001707static llvm::Value *
1708EmitDynamicCastCall(CodeGenFunction &CGF, llvm::Value *Value,
1709 QualType SrcTy, QualType DestTy,
1710 llvm::BasicBlock *CastEnd) {
Chris Lattner2192fe52011-07-18 04:24:23 +00001711 llvm::Type *PtrDiffLTy =
Anders Carlsson882d7902011-04-11 00:46:40 +00001712 CGF.ConvertType(CGF.getContext().getPointerDiffType());
Chris Lattner2192fe52011-07-18 04:24:23 +00001713 llvm::Type *DestLTy = CGF.ConvertType(DestTy);
Anders Carlsson882d7902011-04-11 00:46:40 +00001714
1715 if (const PointerType *PTy = DestTy->getAs<PointerType>()) {
1716 if (PTy->getPointeeType()->isVoidType()) {
1717 // C++ [expr.dynamic.cast]p7:
1718 // If T is "pointer to cv void," then the result is a pointer to the
1719 // most derived object pointed to by v.
1720
1721 // Get the vtable pointer.
1722 llvm::Value *VTable = CGF.GetVTablePtr(Value, PtrDiffLTy->getPointerTo());
1723
1724 // Get the offset-to-top from the vtable.
1725 llvm::Value *OffsetToTop =
1726 CGF.Builder.CreateConstInBoundsGEP1_64(VTable, -2ULL);
1727 OffsetToTop = CGF.Builder.CreateLoad(OffsetToTop, "offset.to.top");
1728
1729 // Finally, add the offset to the pointer.
1730 Value = CGF.EmitCastToVoidPtr(Value);
1731 Value = CGF.Builder.CreateInBoundsGEP(Value, OffsetToTop);
1732
1733 return CGF.Builder.CreateBitCast(Value, DestLTy);
1734 }
1735 }
1736
1737 QualType SrcRecordTy;
1738 QualType DestRecordTy;
1739
1740 if (const PointerType *DestPTy = DestTy->getAs<PointerType>()) {
1741 SrcRecordTy = SrcTy->castAs<PointerType>()->getPointeeType();
1742 DestRecordTy = DestPTy->getPointeeType();
1743 } else {
1744 SrcRecordTy = SrcTy;
1745 DestRecordTy = DestTy->castAs<ReferenceType>()->getPointeeType();
1746 }
1747
1748 assert(SrcRecordTy->isRecordType() && "source type must be a record type!");
1749 assert(DestRecordTy->isRecordType() && "dest type must be a record type!");
1750
1751 llvm::Value *SrcRTTI =
1752 CGF.CGM.GetAddrOfRTTIDescriptor(SrcRecordTy.getUnqualifiedType());
1753 llvm::Value *DestRTTI =
1754 CGF.CGM.GetAddrOfRTTIDescriptor(DestRecordTy.getUnqualifiedType());
1755
1756 // FIXME: Actually compute a hint here.
1757 llvm::Value *OffsetHint = llvm::ConstantInt::get(PtrDiffLTy, -1ULL);
1758
1759 // Emit the call to __dynamic_cast.
1760 Value = CGF.EmitCastToVoidPtr(Value);
1761 Value = CGF.Builder.CreateCall4(getDynamicCastFn(CGF), Value,
1762 SrcRTTI, DestRTTI, OffsetHint);
1763 Value = CGF.Builder.CreateBitCast(Value, DestLTy);
1764
1765 /// C++ [expr.dynamic.cast]p9:
1766 /// A failed cast to reference type throws std::bad_cast
1767 if (DestTy->isReferenceType()) {
1768 llvm::BasicBlock *BadCastBlock =
1769 CGF.createBasicBlock("dynamic_cast.bad_cast");
1770
1771 llvm::Value *IsNull = CGF.Builder.CreateIsNull(Value);
1772 CGF.Builder.CreateCondBr(IsNull, BadCastBlock, CastEnd);
1773
1774 CGF.EmitBlock(BadCastBlock);
Anders Carlssonc1c99712011-04-11 01:45:29 +00001775 EmitBadCastCall(CGF);
Anders Carlsson882d7902011-04-11 00:46:40 +00001776 }
1777
1778 return Value;
1779}
1780
Anders Carlssonc1c99712011-04-11 01:45:29 +00001781static llvm::Value *EmitDynamicCastToNull(CodeGenFunction &CGF,
1782 QualType DestTy) {
Chris Lattner2192fe52011-07-18 04:24:23 +00001783 llvm::Type *DestLTy = CGF.ConvertType(DestTy);
Anders Carlssonc1c99712011-04-11 01:45:29 +00001784 if (DestTy->isPointerType())
1785 return llvm::Constant::getNullValue(DestLTy);
1786
1787 /// C++ [expr.dynamic.cast]p9:
1788 /// A failed cast to reference type throws std::bad_cast
1789 EmitBadCastCall(CGF);
1790
1791 CGF.EmitBlock(CGF.createBasicBlock("dynamic_cast.end"));
1792 return llvm::UndefValue::get(DestLTy);
1793}
1794
Anders Carlsson882d7902011-04-11 00:46:40 +00001795llvm::Value *CodeGenFunction::EmitDynamicCast(llvm::Value *Value,
Mike Stump65511702009-11-16 06:50:58 +00001796 const CXXDynamicCastExpr *DCE) {
Anders Carlsson3f4336c2009-12-17 07:09:17 +00001797 QualType DestTy = DCE->getTypeAsWritten();
Anders Carlsson882d7902011-04-11 00:46:40 +00001798
Anders Carlssonc1c99712011-04-11 01:45:29 +00001799 if (DCE->isAlwaysNull())
1800 return EmitDynamicCastToNull(*this, DestTy);
1801
1802 QualType SrcTy = DCE->getSubExpr()->getType();
1803
Anders Carlsson882d7902011-04-11 00:46:40 +00001804 // C++ [expr.dynamic.cast]p4:
1805 // If the value of v is a null pointer value in the pointer case, the result
1806 // is the null pointer value of type T.
1807 bool ShouldNullCheckSrcValue = SrcTy->isPointerType();
Anders Carlsson3f4336c2009-12-17 07:09:17 +00001808
Anders Carlsson882d7902011-04-11 00:46:40 +00001809 llvm::BasicBlock *CastNull = 0;
1810 llvm::BasicBlock *CastNotNull = 0;
1811 llvm::BasicBlock *CastEnd = createBasicBlock("dynamic_cast.end");
Mike Stump65511702009-11-16 06:50:58 +00001812
Anders Carlsson882d7902011-04-11 00:46:40 +00001813 if (ShouldNullCheckSrcValue) {
1814 CastNull = createBasicBlock("dynamic_cast.null");
1815 CastNotNull = createBasicBlock("dynamic_cast.notnull");
1816
1817 llvm::Value *IsNull = Builder.CreateIsNull(Value);
1818 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
1819 EmitBlock(CastNotNull);
Mike Stump65511702009-11-16 06:50:58 +00001820 }
1821
Anders Carlsson882d7902011-04-11 00:46:40 +00001822 Value = EmitDynamicCastCall(*this, Value, SrcTy, DestTy, CastEnd);
1823
1824 if (ShouldNullCheckSrcValue) {
1825 EmitBranch(CastEnd);
1826
1827 EmitBlock(CastNull);
1828 EmitBranch(CastEnd);
1829 }
1830
1831 EmitBlock(CastEnd);
1832
1833 if (ShouldNullCheckSrcValue) {
1834 llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
1835 PHI->addIncoming(Value, CastNotNull);
1836 PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), CastNull);
1837
1838 Value = PHI;
1839 }
1840
1841 return Value;
Mike Stump65511702009-11-16 06:50:58 +00001842}
Eli Friedmanc370a7e2012-02-09 03:32:31 +00001843
Eli Friedmanc370a7e2012-02-09 03:32:31 +00001844void CodeGenFunction::EmitLambdaExpr(const LambdaExpr *E, AggValueSlot Slot) {
Eli Friedman8631f3e82012-02-09 03:47:20 +00001845 RunCleanupsScope Scope(*this);
Eli Friedman7f1ff602012-04-16 03:54:45 +00001846 LValue SlotLV = MakeAddrLValue(Slot.getAddr(), E->getType(),
1847 Slot.getAlignment());
Eli Friedman8631f3e82012-02-09 03:47:20 +00001848
Eli Friedmanc370a7e2012-02-09 03:32:31 +00001849 CXXRecordDecl::field_iterator CurField = E->getLambdaClass()->field_begin();
1850 for (LambdaExpr::capture_init_iterator i = E->capture_init_begin(),
1851 e = E->capture_init_end();
Eric Christopherd47e0862012-02-29 03:25:18 +00001852 i != e; ++i, ++CurField) {
Eli Friedmanc370a7e2012-02-09 03:32:31 +00001853 // Emit initialization
Eli Friedman7f1ff602012-04-16 03:54:45 +00001854
David Blaikie40ed2972012-06-06 20:45:41 +00001855 LValue LV = EmitLValueForFieldInitialization(SlotLV, *CurField);
Eli Friedman5f1a04f2012-02-14 02:31:03 +00001856 ArrayRef<VarDecl *> ArrayIndexes;
1857 if (CurField->getType()->isArrayType())
1858 ArrayIndexes = E->getCaptureInitIndexVars(i);
David Blaikie40ed2972012-06-06 20:45:41 +00001859 EmitInitializerForField(*CurField, LV, *i, ArrayIndexes);
Eli Friedmanc370a7e2012-02-09 03:32:31 +00001860 }
Eli Friedmanc370a7e2012-02-09 03:32:31 +00001861}