blob: e022663788a07db7280ee8f9921575a3045c67d4 [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
14#include "CodeGenFunction.h"
Peter Collingbournefe883422011-10-06 18:29:37 +000015#include "CGCUDARuntime.h"
John McCall5d865c322010-08-31 07:33:07 +000016#include "CGCXXABI.h"
Devang Patel91bbb552010-09-30 19:05:55 +000017#include "CGDebugInfo.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000018#include "CGObjCRuntime.h"
Mark Laceya8e7df32013-10-30 21:53:58 +000019#include "clang/CodeGen/CGFunctionInfo.h"
Saleem Abdulrasool10a49722016-04-08 16:52:00 +000020#include "clang/Frontend/CodeGenOptions.h"
Chandler Carruthc80ceea2014-03-04 11:02:08 +000021#include "llvm/IR/CallSite.h"
Chandler Carruthffd55512013-01-02 11:45:17 +000022#include "llvm/IR/Intrinsics.h"
Anders Carlssonbbe277c2011-04-13 02:35:36 +000023
Anders Carlssoncc52f652009-09-22 22:53:17 +000024using namespace clang;
25using namespace CodeGen;
26
Alexey Samsonovefa956c2016-03-10 00:20:33 +000027static RequiredArgs
28commonEmitCXXMemberOrOperatorCall(CodeGenFunction &CGF, const CXXMethodDecl *MD,
29 llvm::Value *This, llvm::Value *ImplicitParam,
30 QualType ImplicitParamTy, const CallExpr *CE,
Richard Smith762672a2016-09-28 19:09:10 +000031 CallArgList &Args, CallArgList *RtlArgs) {
Alexey Samsonova5bf76b2014-08-25 20:17:35 +000032 assert(CE == nullptr || isa<CXXMemberCallExpr>(CE) ||
33 isa<CXXOperatorCallExpr>(CE));
Anders Carlsson27da15b2010-01-01 20:29:01 +000034 assert(MD->isInstance() &&
Alexey Samsonova5bf76b2014-08-25 20:17:35 +000035 "Trying to emit a member or operator call expr on a static method!");
Reid Kleckner034e7272016-09-07 15:15:51 +000036 ASTContext &C = CGF.getContext();
Anders Carlsson27da15b2010-01-01 20:29:01 +000037
Richard Smith69d0d262012-08-24 00:54:33 +000038 // C++11 [class.mfct.non-static]p2:
39 // If a non-static member function of a class X is called for an object that
40 // is not of type X, or of a type derived from X, the behavior is undefined.
Alexey Samsonova5bf76b2014-08-25 20:17:35 +000041 SourceLocation CallLoc;
42 if (CE)
43 CallLoc = CE->getExprLoc();
Reid Kleckner034e7272016-09-07 15:15:51 +000044 CGF.EmitTypeCheck(isa<CXXConstructorDecl>(MD)
45 ? CodeGenFunction::TCK_ConstructorCall
46 : CodeGenFunction::TCK_MemberCall,
47 CallLoc, This, C.getRecordType(MD->getParent()));
Anders Carlsson27da15b2010-01-01 20:29:01 +000048
49 // Push the this ptr.
Reid Kleckner034e7272016-09-07 15:15:51 +000050 const CXXRecordDecl *RD =
51 CGF.CGM.getCXXABI().getThisArgumentTypeForMethod(MD);
52 Args.add(RValue::get(This),
53 RD ? C.getPointerType(C.getTypeDeclType(RD)) : C.VoidPtrTy);
Anders Carlsson27da15b2010-01-01 20:29:01 +000054
Timur Iskhodzhanovee6bc532013-02-13 08:37:51 +000055 // If there is an implicit parameter (e.g. VTT), emit it.
56 if (ImplicitParam) {
57 Args.add(RValue::get(ImplicitParam), ImplicitParamTy);
Anders Carlssone36a6b32010-01-02 01:01:18 +000058 }
John McCalla729c622012-02-17 03:33:10 +000059
60 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
George Burgess IV419996c2016-06-16 23:06:04 +000061 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size(), MD);
Alexey Samsonov8e1162c2014-09-08 17:22:45 +000062
John McCalla729c622012-02-17 03:33:10 +000063 // And the rest of the call args.
Richard Smith762672a2016-09-28 19:09:10 +000064 if (RtlArgs) {
65 // Special case: if the caller emitted the arguments right-to-left already
66 // (prior to emitting the *this argument), we're done. This happens for
67 // assignment operators.
68 Args.addFrom(*RtlArgs);
69 } else if (CE) {
Alexey Samsonova5bf76b2014-08-25 20:17:35 +000070 // Special case: skip first argument of CXXOperatorCall (it is "this").
Alexey Samsonov8e1162c2014-09-08 17:22:45 +000071 unsigned ArgsToSkip = isa<CXXOperatorCallExpr>(CE) ? 1 : 0;
David Blaikief05779e2015-07-21 18:37:18 +000072 CGF.EmitCallArgs(Args, FPT, drop_begin(CE->arguments(), ArgsToSkip),
David Majnemer0c0b6d92014-10-31 20:09:12 +000073 CE->getDirectCallee());
Alexey Samsonova5bf76b2014-08-25 20:17:35 +000074 } else {
Alexey Samsonov8e1162c2014-09-08 17:22:45 +000075 assert(
76 FPT->getNumParams() == 0 &&
77 "No CallExpr specified for function with non-zero number of arguments");
Alexey Samsonova5bf76b2014-08-25 20:17:35 +000078 }
David Majnemer0c0b6d92014-10-31 20:09:12 +000079 return required;
80}
Anders Carlsson27da15b2010-01-01 20:29:01 +000081
David Majnemer0c0b6d92014-10-31 20:09:12 +000082RValue CodeGenFunction::EmitCXXMemberOrOperatorCall(
83 const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue,
84 llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy,
Richard Smith762672a2016-09-28 19:09:10 +000085 const CallExpr *CE, CallArgList *RtlArgs) {
David Majnemer0c0b6d92014-10-31 20:09:12 +000086 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
87 CallArgList Args;
88 RequiredArgs required = commonEmitCXXMemberOrOperatorCall(
Richard Smith762672a2016-09-28 19:09:10 +000089 *this, MD, This, ImplicitParam, ImplicitParamTy, CE, Args, RtlArgs);
John McCall8dda7b22012-07-07 06:41:13 +000090 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
Rafael Espindolac50c27c2010-03-30 20:24:48 +000091 Callee, ReturnValue, Args, MD);
Anders Carlsson27da15b2010-01-01 20:29:01 +000092}
93
Alexey Samsonovae81bbb2016-03-10 00:20:37 +000094RValue CodeGenFunction::EmitCXXDestructorCall(
95 const CXXDestructorDecl *DD, llvm::Value *Callee, llvm::Value *This,
96 llvm::Value *ImplicitParam, QualType ImplicitParamTy, const CallExpr *CE,
97 StructorType Type) {
David Majnemer0c0b6d92014-10-31 20:09:12 +000098 CallArgList Args;
Alexey Samsonovae81bbb2016-03-10 00:20:37 +000099 commonEmitCXXMemberOrOperatorCall(*this, DD, This, ImplicitParam,
Richard Smith762672a2016-09-28 19:09:10 +0000100 ImplicitParamTy, CE, Args, nullptr);
Alexey Samsonovae81bbb2016-03-10 00:20:37 +0000101 return EmitCall(CGM.getTypes().arrangeCXXStructorDeclaration(DD, Type),
102 Callee, ReturnValueSlot(), Args, DD);
David Majnemer0c0b6d92014-10-31 20:09:12 +0000103}
104
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000105static CXXRecordDecl *getCXXRecord(const Expr *E) {
106 QualType T = E->getType();
107 if (const PointerType *PTy = T->getAs<PointerType>())
108 T = PTy->getPointeeType();
109 const RecordType *Ty = T->castAs<RecordType>();
110 return cast<CXXRecordDecl>(Ty->getDecl());
111}
112
Francois Pichet64225792011-01-18 05:04:39 +0000113// Note: This function also emit constructor calls to support a MSVC
114// extensions allowing explicit constructor function call.
Anders Carlsson27da15b2010-01-01 20:29:01 +0000115RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE,
116 ReturnValueSlot ReturnValue) {
John McCall2d2e8702011-04-11 07:02:50 +0000117 const Expr *callee = CE->getCallee()->IgnoreParens();
118
119 if (isa<BinaryOperator>(callee))
Anders Carlsson27da15b2010-01-01 20:29:01 +0000120 return EmitCXXMemberPointerCallExpr(CE, ReturnValue);
John McCall2d2e8702011-04-11 07:02:50 +0000121
122 const MemberExpr *ME = cast<MemberExpr>(callee);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000123 const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl());
124
125 if (MD->isStatic()) {
126 // The method is static, emit it as we would a regular call.
127 llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
Alexey Samsonov70b9c012014-08-21 20:26:47 +0000128 return EmitCall(getContext().getPointerType(MD->getType()), Callee, CE,
129 ReturnValue);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000130 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000131
Nico Weberaad4af62014-12-03 01:21:41 +0000132 bool HasQualifier = ME->hasQualifier();
133 NestedNameSpecifier *Qualifier = HasQualifier ? ME->getQualifier() : nullptr;
134 bool IsArrow = ME->isArrow();
Rafael Espindolaecbe2e92012-06-28 01:56:38 +0000135 const Expr *Base = ME->getBase();
Nico Weberaad4af62014-12-03 01:21:41 +0000136
137 return EmitCXXMemberOrOperatorMemberCallExpr(
138 CE, MD, ReturnValue, HasQualifier, Qualifier, IsArrow, Base);
139}
140
141RValue CodeGenFunction::EmitCXXMemberOrOperatorMemberCallExpr(
142 const CallExpr *CE, const CXXMethodDecl *MD, ReturnValueSlot ReturnValue,
143 bool HasQualifier, NestedNameSpecifier *Qualifier, bool IsArrow,
144 const Expr *Base) {
145 assert(isa<CXXMemberCallExpr>(CE) || isa<CXXOperatorCallExpr>(CE));
146
147 // Compute the object pointer.
148 bool CanUseVirtualCall = MD->isVirtual() && !HasQualifier;
Rafael Espindolaecbe2e92012-06-28 01:56:38 +0000149
Craig Topper8a13c412014-05-21 05:09:00 +0000150 const CXXMethodDecl *DevirtualizedMethod = nullptr;
Benjamin Kramer7463ed72013-08-25 22:46:27 +0000151 if (CanUseVirtualCall && CanDevirtualizeMemberFunctionCall(Base, MD)) {
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000152 const CXXRecordDecl *BestDynamicDecl = Base->getBestDynamicClassType();
153 DevirtualizedMethod = MD->getCorrespondingMethodInClass(BestDynamicDecl);
154 assert(DevirtualizedMethod);
155 const CXXRecordDecl *DevirtualizedClass = DevirtualizedMethod->getParent();
156 const Expr *Inner = Base->ignoreParenBaseCasts();
Alexey Bataev5bd68792014-09-29 10:32:21 +0000157 if (DevirtualizedMethod->getReturnType().getCanonicalType() !=
158 MD->getReturnType().getCanonicalType())
159 // If the return types are not the same, this might be a case where more
160 // code needs to run to compensate for it. For example, the derived
161 // method might return a type that inherits form from the return
162 // type of MD and has a prefix.
163 // For now we just avoid devirtualizing these covariant cases.
164 DevirtualizedMethod = nullptr;
165 else if (getCXXRecord(Inner) == DevirtualizedClass)
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000166 // If the class of the Inner expression is where the dynamic method
167 // is defined, build the this pointer from it.
168 Base = Inner;
169 else if (getCXXRecord(Base) != DevirtualizedClass) {
170 // If the method is defined in a class that is not the best dynamic
171 // one or the one of the full expression, we would have to build
172 // a derived-to-base cast to compute the correct this pointer, but
173 // we don't have support for that yet, so do a virtual call.
Craig Topper8a13c412014-05-21 05:09:00 +0000174 DevirtualizedMethod = nullptr;
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000175 }
176 }
Rafael Espindolaecbe2e92012-06-28 01:56:38 +0000177
Richard Smith762672a2016-09-28 19:09:10 +0000178 // C++17 demands that we evaluate the RHS of a (possibly-compound) assignment
179 // operator before the LHS.
180 CallArgList RtlArgStorage;
181 CallArgList *RtlArgs = nullptr;
182 if (auto *OCE = dyn_cast<CXXOperatorCallExpr>(CE)) {
183 if (OCE->isAssignmentOp()) {
184 RtlArgs = &RtlArgStorage;
185 EmitCallArgs(*RtlArgs, MD->getType()->castAs<FunctionProtoType>(),
186 drop_begin(CE->arguments(), 1), CE->getDirectCallee(),
Richard Smitha560ccf2016-09-29 21:30:12 +0000187 /*ParamsToSkip*/0, EvaluationOrder::ForceRightToLeft);
Richard Smith762672a2016-09-28 19:09:10 +0000188 }
189 }
190
John McCall7f416cc2015-09-08 08:05:57 +0000191 Address This = Address::invalid();
Nico Weberaad4af62014-12-03 01:21:41 +0000192 if (IsArrow)
John McCall7f416cc2015-09-08 08:05:57 +0000193 This = EmitPointerWithAlignment(Base);
John McCalle26a8722010-12-04 08:14:53 +0000194 else
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000195 This = EmitLValue(Base).getAddress();
Rafael Espindolaecbe2e92012-06-28 01:56:38 +0000196
Anders Carlsson27da15b2010-01-01 20:29:01 +0000197
Richard Smith419bd092015-04-29 19:26:57 +0000198 if (MD->isTrivial() || (MD->isDefaulted() && MD->getParent()->isUnion())) {
Craig Topper8a13c412014-05-21 05:09:00 +0000199 if (isa<CXXDestructorDecl>(MD)) return RValue::get(nullptr);
Francois Pichet64225792011-01-18 05:04:39 +0000200 if (isa<CXXConstructorDecl>(MD) &&
201 cast<CXXConstructorDecl>(MD)->isDefaultConstructor())
Craig Topper8a13c412014-05-21 05:09:00 +0000202 return RValue::get(nullptr);
John McCall0d635f52010-09-03 01:26:39 +0000203
Nico Weberaad4af62014-12-03 01:21:41 +0000204 if (!MD->getParent()->mayInsertExtraPadding()) {
205 if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) {
206 // We don't like to generate the trivial copy/move assignment operator
207 // when it isn't necessary; just produce the proper effect here.
Richard Smith762672a2016-09-28 19:09:10 +0000208 LValue RHS = isa<CXXOperatorCallExpr>(CE)
209 ? MakeNaturalAlignAddrLValue(
210 (*RtlArgs)[0].RV.getScalarVal(),
211 (*(CE->arg_begin() + 1))->getType())
212 : EmitLValue(*CE->arg_begin());
213 EmitAggregateAssign(This, RHS.getAddress(), CE->getType());
John McCall7f416cc2015-09-08 08:05:57 +0000214 return RValue::get(This.getPointer());
Nico Weberaad4af62014-12-03 01:21:41 +0000215 }
Alexey Samsonov525bf652014-08-25 21:58:56 +0000216
Nico Weberaad4af62014-12-03 01:21:41 +0000217 if (isa<CXXConstructorDecl>(MD) &&
218 cast<CXXConstructorDecl>(MD)->isCopyOrMoveConstructor()) {
219 // Trivial move and copy ctor are the same.
220 assert(CE->getNumArgs() == 1 && "unexpected argcount for trivial ctor");
John McCall7f416cc2015-09-08 08:05:57 +0000221 Address RHS = EmitLValue(*CE->arg_begin()).getAddress();
Benjamin Kramerf48ee442015-07-18 14:35:53 +0000222 EmitAggregateCopy(This, RHS, (*CE->arg_begin())->getType());
John McCall7f416cc2015-09-08 08:05:57 +0000223 return RValue::get(This.getPointer());
Nico Weberaad4af62014-12-03 01:21:41 +0000224 }
225 llvm_unreachable("unknown trivial member function");
Francois Pichet64225792011-01-18 05:04:39 +0000226 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000227 }
228
John McCall0d635f52010-09-03 01:26:39 +0000229 // Compute the function type we're calling.
Nico Weber3abfe952014-12-02 20:41:18 +0000230 const CXXMethodDecl *CalleeDecl =
231 DevirtualizedMethod ? DevirtualizedMethod : MD;
Craig Topper8a13c412014-05-21 05:09:00 +0000232 const CGFunctionInfo *FInfo = nullptr;
Nico Weber3abfe952014-12-02 20:41:18 +0000233 if (const auto *Dtor = dyn_cast<CXXDestructorDecl>(CalleeDecl))
Rafael Espindola8d2a19b2014-09-08 16:01:27 +0000234 FInfo = &CGM.getTypes().arrangeCXXStructorDeclaration(
235 Dtor, StructorType::Complete);
Nico Weber3abfe952014-12-02 20:41:18 +0000236 else if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(CalleeDecl))
Rafael Espindola8d2a19b2014-09-08 16:01:27 +0000237 FInfo = &CGM.getTypes().arrangeCXXStructorDeclaration(
238 Ctor, StructorType::Complete);
Francois Pichet64225792011-01-18 05:04:39 +0000239 else
Eli Friedmanade60972012-10-25 00:12:49 +0000240 FInfo = &CGM.getTypes().arrangeCXXMethodDeclaration(CalleeDecl);
John McCall0d635f52010-09-03 01:26:39 +0000241
Reid Klecknere7de47e2013-07-22 13:51:44 +0000242 llvm::FunctionType *Ty = CGM.getTypes().GetFunctionType(*FInfo);
John McCall0d635f52010-09-03 01:26:39 +0000243
Anders Carlsson27da15b2010-01-01 20:29:01 +0000244 // C++ [class.virtual]p12:
245 // Explicit qualification with the scope operator (5.1) suppresses the
246 // virtual call mechanism.
247 //
248 // We also don't emit a virtual call if the base expression has a record type
249 // because then we know what the type is.
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000250 bool UseVirtualCall = CanUseVirtualCall && !DevirtualizedMethod;
Stephen Lin19cee182013-06-19 23:23:19 +0000251 llvm::Value *Callee;
Stephen Lin9dc6eef2013-06-30 20:40:16 +0000252
John McCall0d635f52010-09-03 01:26:39 +0000253 if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(MD)) {
Stephen Lin9dc6eef2013-06-30 20:40:16 +0000254 assert(CE->arg_begin() == CE->arg_end() &&
255 "Destructor shouldn't have explicit parameters");
256 assert(ReturnValue.isNull() && "Destructor shouldn't have return value");
John McCall0d635f52010-09-03 01:26:39 +0000257 if (UseVirtualCall) {
Nico Weberaad4af62014-12-03 01:21:41 +0000258 CGM.getCXXABI().EmitVirtualDestructorCall(
259 *this, Dtor, Dtor_Complete, This, cast<CXXMemberCallExpr>(CE));
Anders Carlsson27da15b2010-01-01 20:29:01 +0000260 } else {
Nico Weberaad4af62014-12-03 01:21:41 +0000261 if (getLangOpts().AppleKext && MD->isVirtual() && HasQualifier)
262 Callee = BuildAppleKextVirtualCall(MD, Qualifier, Ty);
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000263 else if (!DevirtualizedMethod)
Rafael Espindola1ac0ec82014-09-11 15:42:06 +0000264 Callee =
265 CGM.getAddrOfCXXStructor(Dtor, StructorType::Complete, FInfo, Ty);
Rafael Espindola49e860b2012-06-26 17:45:31 +0000266 else {
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000267 const CXXDestructorDecl *DDtor =
268 cast<CXXDestructorDecl>(DevirtualizedMethod);
Rafael Espindola49e860b2012-06-26 17:45:31 +0000269 Callee = CGM.GetAddrOfFunction(GlobalDecl(DDtor, Dtor_Complete), Ty);
270 }
John McCall7f416cc2015-09-08 08:05:57 +0000271 EmitCXXMemberOrOperatorCall(MD, Callee, ReturnValue, This.getPointer(),
Richard Smith762672a2016-09-28 19:09:10 +0000272 /*ImplicitParam=*/nullptr, QualType(), CE,
273 nullptr);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000274 }
Craig Topper8a13c412014-05-21 05:09:00 +0000275 return RValue::get(nullptr);
Stephen Lin9dc6eef2013-06-30 20:40:16 +0000276 }
277
278 if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) {
Francois Pichet64225792011-01-18 05:04:39 +0000279 Callee = CGM.GetAddrOfFunction(GlobalDecl(Ctor, Ctor_Complete), Ty);
John McCall0d635f52010-09-03 01:26:39 +0000280 } else if (UseVirtualCall) {
Peter Collingbourne6708c4a2015-06-19 01:51:54 +0000281 Callee = CGM.getCXXABI().getVirtualFunctionPointer(*this, MD, This, Ty,
282 CE->getLocStart());
Anders Carlsson27da15b2010-01-01 20:29:01 +0000283 } else {
Peter Collingbourne1a7488a2015-04-02 00:23:30 +0000284 if (SanOpts.has(SanitizerKind::CFINVCall) &&
285 MD->getParent()->isDynamicClass()) {
Piotr Padlewski4b1ac722015-09-15 21:46:55 +0000286 llvm::Value *VTable = GetVTablePtr(This, Int8PtrTy, MD->getParent());
Peter Collingbournefb532b92016-02-24 20:46:36 +0000287 EmitVTablePtrCheckForCall(MD->getParent(), VTable, CFITCK_NVCall,
288 CE->getLocStart());
Peter Collingbourne1a7488a2015-04-02 00:23:30 +0000289 }
290
Nico Weberaad4af62014-12-03 01:21:41 +0000291 if (getLangOpts().AppleKext && MD->isVirtual() && HasQualifier)
292 Callee = BuildAppleKextVirtualCall(MD, Qualifier, Ty);
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000293 else if (!DevirtualizedMethod)
Rafael Espindola727a7712012-06-26 19:18:25 +0000294 Callee = CGM.GetAddrOfFunction(MD, Ty);
Rafael Espindola49e860b2012-06-26 17:45:31 +0000295 else {
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000296 Callee = CGM.GetAddrOfFunction(DevirtualizedMethod, Ty);
Rafael Espindola49e860b2012-06-26 17:45:31 +0000297 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000298 }
299
Timur Iskhodzhanovf1749422014-03-14 17:43:37 +0000300 if (MD->isVirtual()) {
301 This = CGM.getCXXABI().adjustThisArgumentForVirtualFunctionCall(
Reid Kleckner4b60f302016-05-03 18:44:29 +0000302 *this, CalleeDecl, This, UseVirtualCall);
Timur Iskhodzhanovf1749422014-03-14 17:43:37 +0000303 }
Timur Iskhodzhanov88fd4392013-08-21 06:25:03 +0000304
John McCall7f416cc2015-09-08 08:05:57 +0000305 return EmitCXXMemberOrOperatorCall(MD, Callee, ReturnValue, This.getPointer(),
Richard Smith762672a2016-09-28 19:09:10 +0000306 /*ImplicitParam=*/nullptr, QualType(), CE,
307 RtlArgs);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000308}
309
310RValue
311CodeGenFunction::EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E,
312 ReturnValueSlot ReturnValue) {
313 const BinaryOperator *BO =
314 cast<BinaryOperator>(E->getCallee()->IgnoreParens());
315 const Expr *BaseExpr = BO->getLHS();
316 const Expr *MemFnExpr = BO->getRHS();
317
318 const MemberPointerType *MPT =
John McCall0009fcc2011-04-26 20:42:42 +0000319 MemFnExpr->getType()->castAs<MemberPointerType>();
John McCall475999d2010-08-22 00:05:51 +0000320
Anders Carlsson27da15b2010-01-01 20:29:01 +0000321 const FunctionProtoType *FPT =
John McCall0009fcc2011-04-26 20:42:42 +0000322 MPT->getPointeeType()->castAs<FunctionProtoType>();
Anders Carlsson27da15b2010-01-01 20:29:01 +0000323 const CXXRecordDecl *RD =
324 cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl());
325
Anders Carlsson27da15b2010-01-01 20:29:01 +0000326 // Emit the 'this' pointer.
John McCall7f416cc2015-09-08 08:05:57 +0000327 Address This = Address::invalid();
John McCalle3027922010-08-25 11:45:40 +0000328 if (BO->getOpcode() == BO_PtrMemI)
John McCall7f416cc2015-09-08 08:05:57 +0000329 This = EmitPointerWithAlignment(BaseExpr);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000330 else
331 This = EmitLValue(BaseExpr).getAddress();
Anders Carlsson27da15b2010-01-01 20:29:01 +0000332
John McCall7f416cc2015-09-08 08:05:57 +0000333 EmitTypeCheck(TCK_MemberCall, E->getExprLoc(), This.getPointer(),
Richard Smithe30752c2012-10-09 19:52:38 +0000334 QualType(MPT->getClass(), 0));
Richard Smith69d0d262012-08-24 00:54:33 +0000335
Richard Smithbde62d72016-09-26 23:56:57 +0000336 // Get the member function pointer.
337 llvm::Value *MemFnPtr = EmitScalarExpr(MemFnExpr);
338
John McCall475999d2010-08-22 00:05:51 +0000339 // Ask the ABI to load the callee. Note that This is modified.
John McCall7f416cc2015-09-08 08:05:57 +0000340 llvm::Value *ThisPtrForCall = nullptr;
John McCall475999d2010-08-22 00:05:51 +0000341 llvm::Value *Callee =
John McCall7f416cc2015-09-08 08:05:57 +0000342 CGM.getCXXABI().EmitLoadOfMemberFunctionPointer(*this, BO, This,
343 ThisPtrForCall, MemFnPtr, MPT);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000344
Anders Carlsson27da15b2010-01-01 20:29:01 +0000345 CallArgList Args;
346
347 QualType ThisType =
348 getContext().getPointerType(getContext().getTagDeclType(RD));
349
350 // Push the this ptr.
John McCall7f416cc2015-09-08 08:05:57 +0000351 Args.add(RValue::get(ThisPtrForCall), ThisType);
John McCall8dda7b22012-07-07 06:41:13 +0000352
George Burgess IV419996c2016-06-16 23:06:04 +0000353 RequiredArgs required =
354 RequiredArgs::forPrototypePlus(FPT, 1, /*FD=*/nullptr);
355
Anders Carlsson27da15b2010-01-01 20:29:01 +0000356 // And the rest of the call args
George Burgess IV419996c2016-06-16 23:06:04 +0000357 EmitCallArgs(Args, FPT, E->arguments());
Nick Lewycky5fa40c32013-10-01 21:51:38 +0000358 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
359 Callee, ReturnValue, Args);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000360}
361
362RValue
363CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
364 const CXXMethodDecl *MD,
365 ReturnValueSlot ReturnValue) {
366 assert(MD->isInstance() &&
367 "Trying to emit a member call expr on a static method!");
Nico Weberaad4af62014-12-03 01:21:41 +0000368 return EmitCXXMemberOrOperatorMemberCallExpr(
369 E, MD, ReturnValue, /*HasQualifier=*/false, /*Qualifier=*/nullptr,
370 /*IsArrow=*/false, E->getArg(0));
Anders Carlsson27da15b2010-01-01 20:29:01 +0000371}
372
Peter Collingbournefe883422011-10-06 18:29:37 +0000373RValue CodeGenFunction::EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E,
374 ReturnValueSlot ReturnValue) {
375 return CGM.getCUDARuntime().EmitCUDAKernelCallExpr(*this, E, ReturnValue);
376}
377
Eli Friedmanfde961d2011-10-14 02:27:24 +0000378static void EmitNullBaseClassInitialization(CodeGenFunction &CGF,
John McCall7f416cc2015-09-08 08:05:57 +0000379 Address DestPtr,
Eli Friedmanfde961d2011-10-14 02:27:24 +0000380 const CXXRecordDecl *Base) {
381 if (Base->isEmpty())
382 return;
383
John McCall7f416cc2015-09-08 08:05:57 +0000384 DestPtr = CGF.Builder.CreateElementBitCast(DestPtr, CGF.Int8Ty);
Eli Friedmanfde961d2011-10-14 02:27:24 +0000385
386 const ASTRecordLayout &Layout = CGF.getContext().getASTRecordLayout(Base);
David Majnemer8671c6e2015-11-02 09:01:44 +0000387 CharUnits NVSize = Layout.getNonVirtualSize();
388
389 // We cannot simply zero-initialize the entire base sub-object if vbptrs are
390 // present, they are initialized by the most derived class before calling the
391 // constructor.
392 SmallVector<std::pair<CharUnits, CharUnits>, 1> Stores;
393 Stores.emplace_back(CharUnits::Zero(), NVSize);
394
395 // Each store is split by the existence of a vbptr.
396 CharUnits VBPtrWidth = CGF.getPointerSize();
397 std::vector<CharUnits> VBPtrOffsets =
398 CGF.CGM.getCXXABI().getVBPtrOffsets(Base);
399 for (CharUnits VBPtrOffset : VBPtrOffsets) {
David Majnemer7f980d82016-05-12 03:51:52 +0000400 // Stop before we hit any virtual base pointers located in virtual bases.
401 if (VBPtrOffset >= NVSize)
402 break;
David Majnemer8671c6e2015-11-02 09:01:44 +0000403 std::pair<CharUnits, CharUnits> LastStore = Stores.pop_back_val();
404 CharUnits LastStoreOffset = LastStore.first;
405 CharUnits LastStoreSize = LastStore.second;
406
407 CharUnits SplitBeforeOffset = LastStoreOffset;
408 CharUnits SplitBeforeSize = VBPtrOffset - SplitBeforeOffset;
409 assert(!SplitBeforeSize.isNegative() && "negative store size!");
410 if (!SplitBeforeSize.isZero())
411 Stores.emplace_back(SplitBeforeOffset, SplitBeforeSize);
412
413 CharUnits SplitAfterOffset = VBPtrOffset + VBPtrWidth;
414 CharUnits SplitAfterSize = LastStoreSize - SplitAfterOffset;
415 assert(!SplitAfterSize.isNegative() && "negative store size!");
416 if (!SplitAfterSize.isZero())
417 Stores.emplace_back(SplitAfterOffset, SplitAfterSize);
418 }
Eli Friedmanfde961d2011-10-14 02:27:24 +0000419
420 // If the type contains a pointer to data member we can't memset it to zero.
421 // Instead, create a null constant and copy it to the destination.
422 // TODO: there are other patterns besides zero that we can usefully memset,
423 // like -1, which happens to be the pattern used by member-pointers.
424 // TODO: isZeroInitializable can be over-conservative in the case where a
425 // virtual base contains a member pointer.
David Majnemer8671c6e2015-11-02 09:01:44 +0000426 llvm::Constant *NullConstantForBase = CGF.CGM.EmitNullConstantForBase(Base);
427 if (!NullConstantForBase->isNullValue()) {
428 llvm::GlobalVariable *NullVariable = new llvm::GlobalVariable(
429 CGF.CGM.getModule(), NullConstantForBase->getType(),
430 /*isConstant=*/true, llvm::GlobalVariable::PrivateLinkage,
431 NullConstantForBase, Twine());
John McCall7f416cc2015-09-08 08:05:57 +0000432
433 CharUnits Align = std::max(Layout.getNonVirtualAlignment(),
434 DestPtr.getAlignment());
Eli Friedmanfde961d2011-10-14 02:27:24 +0000435 NullVariable->setAlignment(Align.getQuantity());
John McCall7f416cc2015-09-08 08:05:57 +0000436
437 Address SrcPtr = Address(CGF.EmitCastToVoidPtr(NullVariable), Align);
Eli Friedmanfde961d2011-10-14 02:27:24 +0000438
439 // Get and call the appropriate llvm.memcpy overload.
David Majnemer8671c6e2015-11-02 09:01:44 +0000440 for (std::pair<CharUnits, CharUnits> Store : Stores) {
441 CharUnits StoreOffset = Store.first;
442 CharUnits StoreSize = Store.second;
443 llvm::Value *StoreSizeVal = CGF.CGM.getSize(StoreSize);
444 CGF.Builder.CreateMemCpy(
445 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset),
446 CGF.Builder.CreateConstInBoundsByteGEP(SrcPtr, StoreOffset),
447 StoreSizeVal);
448 }
449
Eli Friedmanfde961d2011-10-14 02:27:24 +0000450 // Otherwise, just memset the whole thing to zero. This is legal
451 // because in LLVM, all default initializers (other than the ones we just
452 // handled above) are guaranteed to have a bit pattern of all zeros.
David Majnemer8671c6e2015-11-02 09:01:44 +0000453 } else {
454 for (std::pair<CharUnits, CharUnits> Store : Stores) {
455 CharUnits StoreOffset = Store.first;
456 CharUnits StoreSize = Store.second;
457 llvm::Value *StoreSizeVal = CGF.CGM.getSize(StoreSize);
458 CGF.Builder.CreateMemSet(
459 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset),
460 CGF.Builder.getInt8(0), StoreSizeVal);
461 }
462 }
Eli Friedmanfde961d2011-10-14 02:27:24 +0000463}
464
Anders Carlsson27da15b2010-01-01 20:29:01 +0000465void
John McCall7a626f62010-09-15 10:14:12 +0000466CodeGenFunction::EmitCXXConstructExpr(const CXXConstructExpr *E,
467 AggValueSlot Dest) {
468 assert(!Dest.isIgnored() && "Must have a destination!");
Anders Carlsson27da15b2010-01-01 20:29:01 +0000469 const CXXConstructorDecl *CD = E->getConstructor();
Douglas Gregor630c76e2010-08-22 16:15:35 +0000470
471 // If we require zero initialization before (or instead of) calling the
472 // constructor, as can be the case with a non-user-provided default
Argyrios Kyrtzidis03535262011-04-28 22:57:55 +0000473 // constructor, emit the zero initialization now, unless destination is
474 // already zeroed.
Eli Friedmanfde961d2011-10-14 02:27:24 +0000475 if (E->requiresZeroInitialization() && !Dest.isZeroed()) {
476 switch (E->getConstructionKind()) {
477 case CXXConstructExpr::CK_Delegating:
Eli Friedmanfde961d2011-10-14 02:27:24 +0000478 case CXXConstructExpr::CK_Complete:
John McCall7f416cc2015-09-08 08:05:57 +0000479 EmitNullInitialization(Dest.getAddress(), E->getType());
Eli Friedmanfde961d2011-10-14 02:27:24 +0000480 break;
481 case CXXConstructExpr::CK_VirtualBase:
482 case CXXConstructExpr::CK_NonVirtualBase:
John McCall7f416cc2015-09-08 08:05:57 +0000483 EmitNullBaseClassInitialization(*this, Dest.getAddress(),
484 CD->getParent());
Eli Friedmanfde961d2011-10-14 02:27:24 +0000485 break;
486 }
487 }
Douglas Gregor630c76e2010-08-22 16:15:35 +0000488
489 // If this is a call to a trivial default constructor, do nothing.
490 if (CD->isTrivial() && CD->isDefaultConstructor())
491 return;
492
John McCall8ea46b62010-09-18 00:58:34 +0000493 // Elide the constructor if we're constructing from a temporary.
494 // The temporary check is required because Sema sets this on NRVO
495 // returns.
Richard Smith9c6890a2012-11-01 22:30:59 +0000496 if (getLangOpts().ElideConstructors && E->isElidable()) {
John McCall8ea46b62010-09-18 00:58:34 +0000497 assert(getContext().hasSameUnqualifiedType(E->getType(),
498 E->getArg(0)->getType()));
John McCall7a626f62010-09-15 10:14:12 +0000499 if (E->getArg(0)->isTemporaryObject(getContext(), CD->getParent())) {
500 EmitAggExpr(E->getArg(0), Dest);
Douglas Gregor222cf0e2010-05-15 00:13:29 +0000501 return;
502 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000503 }
Douglas Gregor630c76e2010-08-22 16:15:35 +0000504
Alexey Bataeve7545b32016-04-29 09:39:50 +0000505 if (const ArrayType *arrayType
506 = getContext().getAsArrayType(E->getType())) {
John McCall7f416cc2015-09-08 08:05:57 +0000507 EmitCXXAggrConstructorCall(CD, arrayType, Dest.getAddress(), E);
John McCallf677a8e2011-07-13 06:10:41 +0000508 } else {
Cameron Esfahanibceca202011-05-06 21:28:42 +0000509 CXXCtorType Type = Ctor_Complete;
Alexis Hunt271c3682011-05-03 20:19:28 +0000510 bool ForVirtualBase = false;
Douglas Gregor61535002013-01-31 05:50:40 +0000511 bool Delegating = false;
512
Alexis Hunt271c3682011-05-03 20:19:28 +0000513 switch (E->getConstructionKind()) {
514 case CXXConstructExpr::CK_Delegating:
Alexis Hunt61bc1732011-05-01 07:04:31 +0000515 // We should be emitting a constructor; GlobalDecl will assert this
516 Type = CurGD.getCtorType();
Douglas Gregor61535002013-01-31 05:50:40 +0000517 Delegating = true;
Alexis Hunt271c3682011-05-03 20:19:28 +0000518 break;
Alexis Hunt61bc1732011-05-01 07:04:31 +0000519
Alexis Hunt271c3682011-05-03 20:19:28 +0000520 case CXXConstructExpr::CK_Complete:
521 Type = Ctor_Complete;
522 break;
523
524 case CXXConstructExpr::CK_VirtualBase:
525 ForVirtualBase = true;
526 // fall-through
527
528 case CXXConstructExpr::CK_NonVirtualBase:
529 Type = Ctor_Base;
530 }
Anders Carlssone11f9ce2010-05-02 23:20:53 +0000531
Anders Carlsson27da15b2010-01-01 20:29:01 +0000532 // Call the constructor.
John McCall7f416cc2015-09-08 08:05:57 +0000533 EmitCXXConstructorCall(CD, Type, ForVirtualBase, Delegating,
534 Dest.getAddress(), E);
Anders Carlssone11f9ce2010-05-02 23:20:53 +0000535 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000536}
537
John McCall7f416cc2015-09-08 08:05:57 +0000538void CodeGenFunction::EmitSynthesizedCXXCopyCtor(Address Dest, Address Src,
539 const Expr *Exp) {
John McCall5d413782010-12-06 08:20:24 +0000540 if (const ExprWithCleanups *E = dyn_cast<ExprWithCleanups>(Exp))
Fariborz Jahaniane988bda2010-11-13 21:53:34 +0000541 Exp = E->getSubExpr();
542 assert(isa<CXXConstructExpr>(Exp) &&
543 "EmitSynthesizedCXXCopyCtor - unknown copy ctor expr");
544 const CXXConstructExpr* E = cast<CXXConstructExpr>(Exp);
545 const CXXConstructorDecl *CD = E->getConstructor();
546 RunCleanupsScope Scope(*this);
547
548 // If we require zero initialization before (or instead of) calling the
549 // constructor, as can be the case with a non-user-provided default
550 // constructor, emit the zero initialization now.
551 // FIXME. Do I still need this for a copy ctor synthesis?
552 if (E->requiresZeroInitialization())
553 EmitNullInitialization(Dest, E->getType());
554
Chandler Carruth99da11c2010-11-15 13:54:43 +0000555 assert(!getContext().getAsConstantArrayType(E->getType())
556 && "EmitSynthesizedCXXCopyCtor - Copied-in Array");
Alexey Samsonov525bf652014-08-25 21:58:56 +0000557 EmitSynthesizedCXXCopyCtorCall(CD, Dest, Src, E);
Fariborz Jahaniane988bda2010-11-13 21:53:34 +0000558}
559
John McCall8ed55a52010-09-02 09:58:18 +0000560static CharUnits CalculateCookiePadding(CodeGenFunction &CGF,
561 const CXXNewExpr *E) {
Anders Carlsson21122cf2009-12-13 20:04:38 +0000562 if (!E->isArray())
Ken Dyck3eb55cf2010-01-26 19:44:24 +0000563 return CharUnits::Zero();
Anders Carlsson21122cf2009-12-13 20:04:38 +0000564
John McCall7ec4b432011-05-16 01:05:12 +0000565 // No cookie is required if the operator new[] being used is the
566 // reserved placement operator new[].
567 if (E->getOperatorNew()->isReservedGlobalPlacementOperator())
John McCallaa4149a2010-08-23 01:17:59 +0000568 return CharUnits::Zero();
569
John McCall284c48f2011-01-27 09:37:56 +0000570 return CGF.CGM.getCXXABI().GetArrayCookieSize(E);
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000571}
572
John McCall036f2f62011-05-15 07:14:44 +0000573static llvm::Value *EmitCXXNewAllocSize(CodeGenFunction &CGF,
574 const CXXNewExpr *e,
Sebastian Redlf862eb62012-02-22 17:37:52 +0000575 unsigned minElements,
John McCall036f2f62011-05-15 07:14:44 +0000576 llvm::Value *&numElements,
577 llvm::Value *&sizeWithoutCookie) {
578 QualType type = e->getAllocatedType();
John McCall8ed55a52010-09-02 09:58:18 +0000579
John McCall036f2f62011-05-15 07:14:44 +0000580 if (!e->isArray()) {
581 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
582 sizeWithoutCookie
583 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity());
584 return sizeWithoutCookie;
Douglas Gregor05fc5be2010-07-21 01:10:17 +0000585 }
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000586
John McCall036f2f62011-05-15 07:14:44 +0000587 // The width of size_t.
588 unsigned sizeWidth = CGF.SizeTy->getBitWidth();
589
John McCall8ed55a52010-09-02 09:58:18 +0000590 // Figure out the cookie size.
John McCall036f2f62011-05-15 07:14:44 +0000591 llvm::APInt cookieSize(sizeWidth,
592 CalculateCookiePadding(CGF, e).getQuantity());
John McCall8ed55a52010-09-02 09:58:18 +0000593
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000594 // Emit the array size expression.
Argyrios Kyrtzidis7648fb42010-08-26 15:23:38 +0000595 // We multiply the size of all dimensions for NumElements.
596 // e.g for 'int[2][3]', ElemType is 'int' and NumElements is 6.
John McCall036f2f62011-05-15 07:14:44 +0000597 numElements = CGF.EmitScalarExpr(e->getArraySize());
598 assert(isa<llvm::IntegerType>(numElements->getType()));
John McCall8ed55a52010-09-02 09:58:18 +0000599
John McCall036f2f62011-05-15 07:14:44 +0000600 // The number of elements can be have an arbitrary integer type;
601 // essentially, we need to multiply it by a constant factor, add a
602 // cookie size, and verify that the result is representable as a
603 // size_t. That's just a gloss, though, and it's wrong in one
604 // important way: if the count is negative, it's an error even if
605 // the cookie size would bring the total size >= 0.
Douglas Gregor6ab2fa82011-05-20 16:38:50 +0000606 bool isSigned
607 = e->getArraySize()->getType()->isSignedIntegerOrEnumerationType();
Chris Lattner2192fe52011-07-18 04:24:23 +0000608 llvm::IntegerType *numElementsType
John McCall036f2f62011-05-15 07:14:44 +0000609 = cast<llvm::IntegerType>(numElements->getType());
610 unsigned numElementsWidth = numElementsType->getBitWidth();
611
612 // Compute the constant factor.
613 llvm::APInt arraySizeMultiplier(sizeWidth, 1);
Argyrios Kyrtzidis7648fb42010-08-26 15:23:38 +0000614 while (const ConstantArrayType *CAT
John McCall036f2f62011-05-15 07:14:44 +0000615 = CGF.getContext().getAsConstantArrayType(type)) {
616 type = CAT->getElementType();
617 arraySizeMultiplier *= CAT->getSize();
Argyrios Kyrtzidis7648fb42010-08-26 15:23:38 +0000618 }
619
John McCall036f2f62011-05-15 07:14:44 +0000620 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
621 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity());
622 typeSizeMultiplier *= arraySizeMultiplier;
623
624 // This will be a size_t.
625 llvm::Value *size;
Chris Lattnerf2f38702010-07-20 21:07:09 +0000626
Chris Lattner32ac5832010-07-20 21:55:52 +0000627 // If someone is doing 'new int[42]' there is no need to do a dynamic check.
628 // Don't bloat the -O0 code.
John McCall036f2f62011-05-15 07:14:44 +0000629 if (llvm::ConstantInt *numElementsC =
630 dyn_cast<llvm::ConstantInt>(numElements)) {
631 const llvm::APInt &count = numElementsC->getValue();
John McCall8ed55a52010-09-02 09:58:18 +0000632
John McCall036f2f62011-05-15 07:14:44 +0000633 bool hasAnyOverflow = false;
John McCall8ed55a52010-09-02 09:58:18 +0000634
John McCall036f2f62011-05-15 07:14:44 +0000635 // If 'count' was a negative number, it's an overflow.
636 if (isSigned && count.isNegative())
637 hasAnyOverflow = true;
John McCall8ed55a52010-09-02 09:58:18 +0000638
John McCall036f2f62011-05-15 07:14:44 +0000639 // We want to do all this arithmetic in size_t. If numElements is
640 // wider than that, check whether it's already too big, and if so,
641 // overflow.
642 else if (numElementsWidth > sizeWidth &&
643 numElementsWidth - sizeWidth > count.countLeadingZeros())
644 hasAnyOverflow = true;
645
646 // Okay, compute a count at the right width.
647 llvm::APInt adjustedCount = count.zextOrTrunc(sizeWidth);
648
Sebastian Redlf862eb62012-02-22 17:37:52 +0000649 // If there is a brace-initializer, we cannot allocate fewer elements than
650 // there are initializers. If we do, that's treated like an overflow.
651 if (adjustedCount.ult(minElements))
652 hasAnyOverflow = true;
653
John McCall036f2f62011-05-15 07:14:44 +0000654 // Scale numElements by that. This might overflow, but we don't
655 // care because it only overflows if allocationSize does, too, and
656 // if that overflows then we shouldn't use this.
657 numElements = llvm::ConstantInt::get(CGF.SizeTy,
658 adjustedCount * arraySizeMultiplier);
659
660 // Compute the size before cookie, and track whether it overflowed.
661 bool overflow;
662 llvm::APInt allocationSize
663 = adjustedCount.umul_ov(typeSizeMultiplier, overflow);
664 hasAnyOverflow |= overflow;
665
666 // Add in the cookie, and check whether it's overflowed.
667 if (cookieSize != 0) {
668 // Save the current size without a cookie. This shouldn't be
669 // used if there was overflow.
670 sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
671
672 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
673 hasAnyOverflow |= overflow;
674 }
675
676 // On overflow, produce a -1 so operator new will fail.
Aaron Ballman455f42c2014-08-28 17:24:14 +0000677 if (hasAnyOverflow) {
678 size = llvm::Constant::getAllOnesValue(CGF.SizeTy);
679 } else {
John McCall036f2f62011-05-15 07:14:44 +0000680 size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
Aaron Ballman455f42c2014-08-28 17:24:14 +0000681 }
John McCall036f2f62011-05-15 07:14:44 +0000682
683 // Otherwise, we might need to use the overflow intrinsics.
684 } else {
Sebastian Redlf862eb62012-02-22 17:37:52 +0000685 // There are up to five conditions we need to test for:
John McCall036f2f62011-05-15 07:14:44 +0000686 // 1) if isSigned, we need to check whether numElements is negative;
687 // 2) if numElementsWidth > sizeWidth, we need to check whether
688 // numElements is larger than something representable in size_t;
Sebastian Redlf862eb62012-02-22 17:37:52 +0000689 // 3) if minElements > 0, we need to check whether numElements is smaller
690 // than that.
691 // 4) we need to compute
John McCall036f2f62011-05-15 07:14:44 +0000692 // sizeWithoutCookie := numElements * typeSizeMultiplier
693 // and check whether it overflows; and
Sebastian Redlf862eb62012-02-22 17:37:52 +0000694 // 5) if we need a cookie, we need to compute
John McCall036f2f62011-05-15 07:14:44 +0000695 // size := sizeWithoutCookie + cookieSize
696 // and check whether it overflows.
697
Craig Topper8a13c412014-05-21 05:09:00 +0000698 llvm::Value *hasOverflow = nullptr;
John McCall036f2f62011-05-15 07:14:44 +0000699
700 // If numElementsWidth > sizeWidth, then one way or another, we're
701 // going to have to do a comparison for (2), and this happens to
702 // take care of (1), too.
703 if (numElementsWidth > sizeWidth) {
704 llvm::APInt threshold(numElementsWidth, 1);
705 threshold <<= sizeWidth;
706
707 llvm::Value *thresholdV
708 = llvm::ConstantInt::get(numElementsType, threshold);
709
710 hasOverflow = CGF.Builder.CreateICmpUGE(numElements, thresholdV);
711 numElements = CGF.Builder.CreateTrunc(numElements, CGF.SizeTy);
712
713 // Otherwise, if we're signed, we want to sext up to size_t.
714 } else if (isSigned) {
715 if (numElementsWidth < sizeWidth)
716 numElements = CGF.Builder.CreateSExt(numElements, CGF.SizeTy);
717
718 // If there's a non-1 type size multiplier, then we can do the
719 // signedness check at the same time as we do the multiply
720 // because a negative number times anything will cause an
Sebastian Redlf862eb62012-02-22 17:37:52 +0000721 // unsigned overflow. Otherwise, we have to do it here. But at least
722 // in this case, we can subsume the >= minElements check.
John McCall036f2f62011-05-15 07:14:44 +0000723 if (typeSizeMultiplier == 1)
724 hasOverflow = CGF.Builder.CreateICmpSLT(numElements,
Sebastian Redlf862eb62012-02-22 17:37:52 +0000725 llvm::ConstantInt::get(CGF.SizeTy, minElements));
John McCall036f2f62011-05-15 07:14:44 +0000726
727 // Otherwise, zext up to size_t if necessary.
728 } else if (numElementsWidth < sizeWidth) {
729 numElements = CGF.Builder.CreateZExt(numElements, CGF.SizeTy);
730 }
731
732 assert(numElements->getType() == CGF.SizeTy);
733
Sebastian Redlf862eb62012-02-22 17:37:52 +0000734 if (minElements) {
735 // Don't allow allocation of fewer elements than we have initializers.
736 if (!hasOverflow) {
737 hasOverflow = CGF.Builder.CreateICmpULT(numElements,
738 llvm::ConstantInt::get(CGF.SizeTy, minElements));
739 } else if (numElementsWidth > sizeWidth) {
740 // The other existing overflow subsumes this check.
741 // We do an unsigned comparison, since any signed value < -1 is
742 // taken care of either above or below.
743 hasOverflow = CGF.Builder.CreateOr(hasOverflow,
744 CGF.Builder.CreateICmpULT(numElements,
745 llvm::ConstantInt::get(CGF.SizeTy, minElements)));
746 }
747 }
748
John McCall036f2f62011-05-15 07:14:44 +0000749 size = numElements;
750
751 // Multiply by the type size if necessary. This multiplier
752 // includes all the factors for nested arrays.
753 //
754 // This step also causes numElements to be scaled up by the
755 // nested-array factor if necessary. Overflow on this computation
756 // can be ignored because the result shouldn't be used if
757 // allocation fails.
758 if (typeSizeMultiplier != 1) {
John McCall036f2f62011-05-15 07:14:44 +0000759 llvm::Value *umul_with_overflow
Benjamin Kramer8d375ce2011-07-14 17:45:50 +0000760 = CGF.CGM.getIntrinsic(llvm::Intrinsic::umul_with_overflow, CGF.SizeTy);
John McCall036f2f62011-05-15 07:14:44 +0000761
762 llvm::Value *tsmV =
763 llvm::ConstantInt::get(CGF.SizeTy, typeSizeMultiplier);
764 llvm::Value *result =
David Blaikie43f9bb72015-05-18 22:14:03 +0000765 CGF.Builder.CreateCall(umul_with_overflow, {size, tsmV});
John McCall036f2f62011-05-15 07:14:44 +0000766
767 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
768 if (hasOverflow)
769 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
770 else
771 hasOverflow = overflowed;
772
773 size = CGF.Builder.CreateExtractValue(result, 0);
774
775 // Also scale up numElements by the array size multiplier.
776 if (arraySizeMultiplier != 1) {
777 // If the base element type size is 1, then we can re-use the
778 // multiply we just did.
779 if (typeSize.isOne()) {
780 assert(arraySizeMultiplier == typeSizeMultiplier);
781 numElements = size;
782
783 // Otherwise we need a separate multiply.
784 } else {
785 llvm::Value *asmV =
786 llvm::ConstantInt::get(CGF.SizeTy, arraySizeMultiplier);
787 numElements = CGF.Builder.CreateMul(numElements, asmV);
788 }
789 }
790 } else {
791 // numElements doesn't need to be scaled.
792 assert(arraySizeMultiplier == 1);
Chris Lattner32ac5832010-07-20 21:55:52 +0000793 }
794
John McCall036f2f62011-05-15 07:14:44 +0000795 // Add in the cookie size if necessary.
796 if (cookieSize != 0) {
797 sizeWithoutCookie = size;
798
John McCall036f2f62011-05-15 07:14:44 +0000799 llvm::Value *uadd_with_overflow
Benjamin Kramer8d375ce2011-07-14 17:45:50 +0000800 = CGF.CGM.getIntrinsic(llvm::Intrinsic::uadd_with_overflow, CGF.SizeTy);
John McCall036f2f62011-05-15 07:14:44 +0000801
802 llvm::Value *cookieSizeV = llvm::ConstantInt::get(CGF.SizeTy, cookieSize);
803 llvm::Value *result =
David Blaikie43f9bb72015-05-18 22:14:03 +0000804 CGF.Builder.CreateCall(uadd_with_overflow, {size, cookieSizeV});
John McCall036f2f62011-05-15 07:14:44 +0000805
806 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
807 if (hasOverflow)
808 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
809 else
810 hasOverflow = overflowed;
811
812 size = CGF.Builder.CreateExtractValue(result, 0);
John McCall8ed55a52010-09-02 09:58:18 +0000813 }
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000814
John McCall036f2f62011-05-15 07:14:44 +0000815 // If we had any possibility of dynamic overflow, make a select to
816 // overwrite 'size' with an all-ones value, which should cause
817 // operator new to throw.
818 if (hasOverflow)
Aaron Ballman455f42c2014-08-28 17:24:14 +0000819 size = CGF.Builder.CreateSelect(hasOverflow,
820 llvm::Constant::getAllOnesValue(CGF.SizeTy),
821 size);
Chris Lattner32ac5832010-07-20 21:55:52 +0000822 }
John McCall8ed55a52010-09-02 09:58:18 +0000823
John McCall036f2f62011-05-15 07:14:44 +0000824 if (cookieSize == 0)
825 sizeWithoutCookie = size;
John McCall8ed55a52010-09-02 09:58:18 +0000826 else
John McCall036f2f62011-05-15 07:14:44 +0000827 assert(sizeWithoutCookie && "didn't set sizeWithoutCookie?");
John McCall8ed55a52010-09-02 09:58:18 +0000828
John McCall036f2f62011-05-15 07:14:44 +0000829 return size;
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000830}
831
Sebastian Redlf862eb62012-02-22 17:37:52 +0000832static void StoreAnyExprIntoOneUnit(CodeGenFunction &CGF, const Expr *Init,
John McCall7f416cc2015-09-08 08:05:57 +0000833 QualType AllocType, Address NewPtr) {
Richard Smith1c96bc52013-12-11 01:40:16 +0000834 // FIXME: Refactor with EmitExprAsInit.
John McCall47fb9502013-03-07 21:37:08 +0000835 switch (CGF.getEvaluationKind(AllocType)) {
836 case TEK_Scalar:
David Blaikiea2c11242014-12-10 19:04:09 +0000837 CGF.EmitScalarInit(Init, nullptr,
John McCall7f416cc2015-09-08 08:05:57 +0000838 CGF.MakeAddrLValue(NewPtr, AllocType), false);
John McCall47fb9502013-03-07 21:37:08 +0000839 return;
840 case TEK_Complex:
John McCall7f416cc2015-09-08 08:05:57 +0000841 CGF.EmitComplexExprIntoLValue(Init, CGF.MakeAddrLValue(NewPtr, AllocType),
John McCall47fb9502013-03-07 21:37:08 +0000842 /*isInit*/ true);
843 return;
844 case TEK_Aggregate: {
John McCall7a626f62010-09-15 10:14:12 +0000845 AggValueSlot Slot
John McCall7f416cc2015-09-08 08:05:57 +0000846 = AggValueSlot::forAddr(NewPtr, AllocType.getQualifiers(),
John McCall8d6fc952011-08-25 20:40:09 +0000847 AggValueSlot::IsDestructed,
John McCall46759f42011-08-26 07:31:35 +0000848 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier615ed1a2012-03-29 17:37:10 +0000849 AggValueSlot::IsNotAliased);
John McCall7a626f62010-09-15 10:14:12 +0000850 CGF.EmitAggExpr(Init, Slot);
John McCall47fb9502013-03-07 21:37:08 +0000851 return;
John McCall7a626f62010-09-15 10:14:12 +0000852 }
John McCall47fb9502013-03-07 21:37:08 +0000853 }
854 llvm_unreachable("bad evaluation kind");
Fariborz Jahaniand5202e02010-06-25 18:26:07 +0000855}
856
David Blaikiefb901c7a2015-04-04 15:12:29 +0000857void CodeGenFunction::EmitNewArrayInitializer(
858 const CXXNewExpr *E, QualType ElementType, llvm::Type *ElementTy,
John McCall7f416cc2015-09-08 08:05:57 +0000859 Address BeginPtr, llvm::Value *NumElements,
David Blaikiefb901c7a2015-04-04 15:12:29 +0000860 llvm::Value *AllocSizeWithoutCookie) {
Richard Smith06a67e22014-06-03 06:58:52 +0000861 // If we have a type with trivial initialization and no initializer,
862 // there's nothing to do.
Sebastian Redl6047f072012-02-16 12:22:20 +0000863 if (!E->hasInitializer())
Richard Smith06a67e22014-06-03 06:58:52 +0000864 return;
John McCall99210dc2011-09-15 06:49:18 +0000865
John McCall7f416cc2015-09-08 08:05:57 +0000866 Address CurPtr = BeginPtr;
John McCall99210dc2011-09-15 06:49:18 +0000867
Richard Smith06a67e22014-06-03 06:58:52 +0000868 unsigned InitListElements = 0;
Sebastian Redlf862eb62012-02-22 17:37:52 +0000869
870 const Expr *Init = E->getInitializer();
John McCall7f416cc2015-09-08 08:05:57 +0000871 Address EndOfInit = Address::invalid();
Richard Smith06a67e22014-06-03 06:58:52 +0000872 QualType::DestructionKind DtorKind = ElementType.isDestructedType();
873 EHScopeStack::stable_iterator Cleanup;
874 llvm::Instruction *CleanupDominator = nullptr;
Richard Smith1c96bc52013-12-11 01:40:16 +0000875
John McCall7f416cc2015-09-08 08:05:57 +0000876 CharUnits ElementSize = getContext().getTypeSizeInChars(ElementType);
877 CharUnits ElementAlign =
878 BeginPtr.getAlignment().alignmentOfArrayElement(ElementSize);
879
Richard Smith0511d232016-10-05 22:41:02 +0000880 // Attempt to perform zero-initialization using memset.
881 auto TryMemsetInitialization = [&]() -> bool {
882 // FIXME: If the type is a pointer-to-data-member under the Itanium ABI,
883 // we can initialize with a memset to -1.
884 if (!CGM.getTypes().isZeroInitializable(ElementType))
885 return false;
886
887 // Optimization: since zero initialization will just set the memory
888 // to all zeroes, generate a single memset to do it in one shot.
889
890 // Subtract out the size of any elements we've already initialized.
891 auto *RemainingSize = AllocSizeWithoutCookie;
892 if (InitListElements) {
893 // We know this can't overflow; we check this when doing the allocation.
894 auto *InitializedSize = llvm::ConstantInt::get(
895 RemainingSize->getType(),
896 getContext().getTypeSizeInChars(ElementType).getQuantity() *
897 InitListElements);
898 RemainingSize = Builder.CreateSub(RemainingSize, InitializedSize);
899 }
900
901 // Create the memset.
902 Builder.CreateMemSet(CurPtr, Builder.getInt8(0), RemainingSize, false);
903 return true;
904 };
905
Sebastian Redlf862eb62012-02-22 17:37:52 +0000906 // If the initializer is an initializer list, first do the explicit elements.
907 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
Richard Smith0511d232016-10-05 22:41:02 +0000908 // Initializing from a (braced) string literal is a special case; the init
909 // list element does not initialize a (single) array element.
910 if (ILE->isStringLiteralInit()) {
911 // Initialize the initial portion of length equal to that of the string
912 // literal. The allocation must be for at least this much; we emitted a
913 // check for that earlier.
914 AggValueSlot Slot =
915 AggValueSlot::forAddr(CurPtr, ElementType.getQualifiers(),
916 AggValueSlot::IsDestructed,
917 AggValueSlot::DoesNotNeedGCBarriers,
918 AggValueSlot::IsNotAliased);
919 EmitAggExpr(ILE->getInit(0), Slot);
920
921 // Move past these elements.
922 InitListElements =
923 cast<ConstantArrayType>(ILE->getType()->getAsArrayTypeUnsafe())
924 ->getSize().getZExtValue();
925 CurPtr =
926 Address(Builder.CreateInBoundsGEP(CurPtr.getPointer(),
927 Builder.getSize(InitListElements),
928 "string.init.end"),
929 CurPtr.getAlignment().alignmentAtOffset(InitListElements *
930 ElementSize));
931
932 // Zero out the rest, if any remain.
933 llvm::ConstantInt *ConstNum = dyn_cast<llvm::ConstantInt>(NumElements);
934 if (!ConstNum || !ConstNum->equalsInt(InitListElements)) {
935 bool OK = TryMemsetInitialization();
936 (void)OK;
937 assert(OK && "couldn't memset character type?");
938 }
939 return;
940 }
941
Richard Smith06a67e22014-06-03 06:58:52 +0000942 InitListElements = ILE->getNumInits();
Chad Rosierf62290a2012-02-24 00:13:55 +0000943
Richard Smith1c96bc52013-12-11 01:40:16 +0000944 // If this is a multi-dimensional array new, we will initialize multiple
945 // elements with each init list element.
946 QualType AllocType = E->getAllocatedType();
947 if (const ConstantArrayType *CAT = dyn_cast_or_null<ConstantArrayType>(
948 AllocType->getAsArrayTypeUnsafe())) {
David Blaikiefb901c7a2015-04-04 15:12:29 +0000949 ElementTy = ConvertTypeForMem(AllocType);
John McCall7f416cc2015-09-08 08:05:57 +0000950 CurPtr = Builder.CreateElementBitCast(CurPtr, ElementTy);
Richard Smith06a67e22014-06-03 06:58:52 +0000951 InitListElements *= getContext().getConstantArrayElementCount(CAT);
Richard Smith1c96bc52013-12-11 01:40:16 +0000952 }
953
Richard Smith06a67e22014-06-03 06:58:52 +0000954 // Enter a partial-destruction Cleanup if necessary.
955 if (needsEHCleanup(DtorKind)) {
956 // In principle we could tell the Cleanup where we are more
Chad Rosierf62290a2012-02-24 00:13:55 +0000957 // directly, but the control flow can get so varied here that it
958 // would actually be quite complex. Therefore we go through an
959 // alloca.
John McCall7f416cc2015-09-08 08:05:57 +0000960 EndOfInit = CreateTempAlloca(BeginPtr.getType(), getPointerAlign(),
961 "array.init.end");
962 CleanupDominator = Builder.CreateStore(BeginPtr.getPointer(), EndOfInit);
963 pushIrregularPartialArrayCleanup(BeginPtr.getPointer(), EndOfInit,
964 ElementType, ElementAlign,
Richard Smith06a67e22014-06-03 06:58:52 +0000965 getDestroyer(DtorKind));
966 Cleanup = EHStack.stable_begin();
Chad Rosierf62290a2012-02-24 00:13:55 +0000967 }
968
John McCall7f416cc2015-09-08 08:05:57 +0000969 CharUnits StartAlign = CurPtr.getAlignment();
Sebastian Redlf862eb62012-02-22 17:37:52 +0000970 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) {
Chad Rosierf62290a2012-02-24 00:13:55 +0000971 // Tell the cleanup that it needs to destroy up to this
972 // element. TODO: some of these stores can be trivially
973 // observed to be unnecessary.
John McCall7f416cc2015-09-08 08:05:57 +0000974 if (EndOfInit.isValid()) {
975 auto FinishedPtr =
976 Builder.CreateBitCast(CurPtr.getPointer(), BeginPtr.getType());
977 Builder.CreateStore(FinishedPtr, EndOfInit);
978 }
Richard Smith06a67e22014-06-03 06:58:52 +0000979 // FIXME: If the last initializer is an incomplete initializer list for
980 // an array, and we have an array filler, we can fold together the two
981 // initialization loops.
Richard Smith1c96bc52013-12-11 01:40:16 +0000982 StoreAnyExprIntoOneUnit(*this, ILE->getInit(i),
Richard Smith06a67e22014-06-03 06:58:52 +0000983 ILE->getInit(i)->getType(), CurPtr);
John McCall7f416cc2015-09-08 08:05:57 +0000984 CurPtr = Address(Builder.CreateInBoundsGEP(CurPtr.getPointer(),
985 Builder.getSize(1),
986 "array.exp.next"),
987 StartAlign.alignmentAtOffset((i + 1) * ElementSize));
Sebastian Redlf862eb62012-02-22 17:37:52 +0000988 }
989
990 // The remaining elements are filled with the array filler expression.
991 Init = ILE->getArrayFiller();
Richard Smith1c96bc52013-12-11 01:40:16 +0000992
Richard Smith06a67e22014-06-03 06:58:52 +0000993 // Extract the initializer for the individual array elements by pulling
994 // out the array filler from all the nested initializer lists. This avoids
995 // generating a nested loop for the initialization.
996 while (Init && Init->getType()->isConstantArrayType()) {
997 auto *SubILE = dyn_cast<InitListExpr>(Init);
998 if (!SubILE)
999 break;
1000 assert(SubILE->getNumInits() == 0 && "explicit inits in array filler?");
1001 Init = SubILE->getArrayFiller();
1002 }
1003
1004 // Switch back to initializing one base element at a time.
John McCall7f416cc2015-09-08 08:05:57 +00001005 CurPtr = Builder.CreateBitCast(CurPtr, BeginPtr.getType());
Sebastian Redlf862eb62012-02-22 17:37:52 +00001006 }
1007
Richard Smith454a7cd2014-06-03 08:26:00 +00001008 // If all elements have already been initialized, skip any further
1009 // initialization.
1010 llvm::ConstantInt *ConstNum = dyn_cast<llvm::ConstantInt>(NumElements);
1011 if (ConstNum && ConstNum->getZExtValue() <= InitListElements) {
1012 // If there was a Cleanup, deactivate it.
1013 if (CleanupDominator)
1014 DeactivateCleanupBlock(Cleanup, CleanupDominator);
1015 return;
1016 }
1017
1018 assert(Init && "have trailing elements to initialize but no initializer");
1019
Richard Smith06a67e22014-06-03 06:58:52 +00001020 // If this is a constructor call, try to optimize it out, and failing that
1021 // emit a single loop to initialize all remaining elements.
Richard Smith454a7cd2014-06-03 08:26:00 +00001022 if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init)) {
Richard Smith06a67e22014-06-03 06:58:52 +00001023 CXXConstructorDecl *Ctor = CCE->getConstructor();
1024 if (Ctor->isTrivial()) {
1025 // If new expression did not specify value-initialization, then there
1026 // is no initialization.
1027 if (!CCE->requiresZeroInitialization() || Ctor->getParent()->isEmpty())
1028 return;
1029
1030 if (TryMemsetInitialization())
1031 return;
1032 }
1033
1034 // Store the new Cleanup position for irregular Cleanups.
1035 //
1036 // FIXME: Share this cleanup with the constructor call emission rather than
1037 // having it create a cleanup of its own.
John McCall7f416cc2015-09-08 08:05:57 +00001038 if (EndOfInit.isValid())
1039 Builder.CreateStore(CurPtr.getPointer(), EndOfInit);
Richard Smith06a67e22014-06-03 06:58:52 +00001040
1041 // Emit a constructor call loop to initialize the remaining elements.
1042 if (InitListElements)
1043 NumElements = Builder.CreateSub(
1044 NumElements,
1045 llvm::ConstantInt::get(NumElements->getType(), InitListElements));
Alexey Samsonov70b9c012014-08-21 20:26:47 +00001046 EmitCXXAggrConstructorCall(Ctor, NumElements, CurPtr, CCE,
Richard Smith06a67e22014-06-03 06:58:52 +00001047 CCE->requiresZeroInitialization());
Chandler Carruthe6c980c2014-05-03 09:16:57 +00001048 return;
1049 }
1050
Richard Smith06a67e22014-06-03 06:58:52 +00001051 // If this is value-initialization, we can usually use memset.
1052 ImplicitValueInitExpr IVIE(ElementType);
Richard Smith454a7cd2014-06-03 08:26:00 +00001053 if (isa<ImplicitValueInitExpr>(Init)) {
Richard Smith06a67e22014-06-03 06:58:52 +00001054 if (TryMemsetInitialization())
1055 return;
1056
1057 // Switch to an ImplicitValueInitExpr for the element type. This handles
1058 // only one case: multidimensional array new of pointers to members. In
1059 // all other cases, we already have an initializer for the array element.
1060 Init = &IVIE;
1061 }
1062
1063 // At this point we should have found an initializer for the individual
1064 // elements of the array.
1065 assert(getContext().hasSameUnqualifiedType(ElementType, Init->getType()) &&
1066 "got wrong type of element to initialize");
1067
Richard Smith454a7cd2014-06-03 08:26:00 +00001068 // If we have an empty initializer list, we can usually use memset.
1069 if (auto *ILE = dyn_cast<InitListExpr>(Init))
1070 if (ILE->getNumInits() == 0 && TryMemsetInitialization())
1071 return;
Richard Smith06a67e22014-06-03 06:58:52 +00001072
Yunzhong Gaocb779302015-06-10 00:27:52 +00001073 // If we have a struct whose every field is value-initialized, we can
1074 // usually use memset.
1075 if (auto *ILE = dyn_cast<InitListExpr>(Init)) {
1076 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
1077 if (RType->getDecl()->isStruct()) {
Richard Smith872307e2016-03-08 22:17:41 +00001078 unsigned NumElements = 0;
1079 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RType->getDecl()))
1080 NumElements = CXXRD->getNumBases();
Yunzhong Gaocb779302015-06-10 00:27:52 +00001081 for (auto *Field : RType->getDecl()->fields())
1082 if (!Field->isUnnamedBitfield())
Richard Smith872307e2016-03-08 22:17:41 +00001083 ++NumElements;
1084 // FIXME: Recurse into nested InitListExprs.
1085 if (ILE->getNumInits() == NumElements)
Yunzhong Gaocb779302015-06-10 00:27:52 +00001086 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
1087 if (!isa<ImplicitValueInitExpr>(ILE->getInit(i)))
Richard Smith872307e2016-03-08 22:17:41 +00001088 --NumElements;
1089 if (ILE->getNumInits() == NumElements && TryMemsetInitialization())
Yunzhong Gaocb779302015-06-10 00:27:52 +00001090 return;
1091 }
1092 }
1093 }
1094
Richard Smith06a67e22014-06-03 06:58:52 +00001095 // Create the loop blocks.
1096 llvm::BasicBlock *EntryBB = Builder.GetInsertBlock();
1097 llvm::BasicBlock *LoopBB = createBasicBlock("new.loop");
1098 llvm::BasicBlock *ContBB = createBasicBlock("new.loop.end");
1099
1100 // Find the end of the array, hoisted out of the loop.
1101 llvm::Value *EndPtr =
John McCall7f416cc2015-09-08 08:05:57 +00001102 Builder.CreateInBoundsGEP(BeginPtr.getPointer(), NumElements, "array.end");
John McCall99210dc2011-09-15 06:49:18 +00001103
Sebastian Redlf862eb62012-02-22 17:37:52 +00001104 // If the number of elements isn't constant, we have to now check if there is
1105 // anything left to initialize.
Richard Smith06a67e22014-06-03 06:58:52 +00001106 if (!ConstNum) {
John McCall7f416cc2015-09-08 08:05:57 +00001107 llvm::Value *IsEmpty =
1108 Builder.CreateICmpEQ(CurPtr.getPointer(), EndPtr, "array.isempty");
Richard Smith06a67e22014-06-03 06:58:52 +00001109 Builder.CreateCondBr(IsEmpty, ContBB, LoopBB);
John McCall99210dc2011-09-15 06:49:18 +00001110 }
1111
1112 // Enter the loop.
Richard Smith06a67e22014-06-03 06:58:52 +00001113 EmitBlock(LoopBB);
John McCall99210dc2011-09-15 06:49:18 +00001114
1115 // Set up the current-element phi.
Richard Smith06a67e22014-06-03 06:58:52 +00001116 llvm::PHINode *CurPtrPhi =
John McCall7f416cc2015-09-08 08:05:57 +00001117 Builder.CreatePHI(CurPtr.getType(), 2, "array.cur");
1118 CurPtrPhi->addIncoming(CurPtr.getPointer(), EntryBB);
1119
1120 CurPtr = Address(CurPtrPhi, ElementAlign);
John McCall99210dc2011-09-15 06:49:18 +00001121
Richard Smith06a67e22014-06-03 06:58:52 +00001122 // Store the new Cleanup position for irregular Cleanups.
John McCall7f416cc2015-09-08 08:05:57 +00001123 if (EndOfInit.isValid())
1124 Builder.CreateStore(CurPtr.getPointer(), EndOfInit);
Chad Rosierf62290a2012-02-24 00:13:55 +00001125
Richard Smith06a67e22014-06-03 06:58:52 +00001126 // Enter a partial-destruction Cleanup if necessary.
1127 if (!CleanupDominator && needsEHCleanup(DtorKind)) {
John McCall7f416cc2015-09-08 08:05:57 +00001128 pushRegularPartialArrayCleanup(BeginPtr.getPointer(), CurPtr.getPointer(),
1129 ElementType, ElementAlign,
Richard Smith06a67e22014-06-03 06:58:52 +00001130 getDestroyer(DtorKind));
1131 Cleanup = EHStack.stable_begin();
1132 CleanupDominator = Builder.CreateUnreachable();
John McCall99210dc2011-09-15 06:49:18 +00001133 }
1134
1135 // Emit the initializer into this element.
Richard Smith06a67e22014-06-03 06:58:52 +00001136 StoreAnyExprIntoOneUnit(*this, Init, Init->getType(), CurPtr);
John McCall99210dc2011-09-15 06:49:18 +00001137
Richard Smith06a67e22014-06-03 06:58:52 +00001138 // Leave the Cleanup if we entered one.
1139 if (CleanupDominator) {
1140 DeactivateCleanupBlock(Cleanup, CleanupDominator);
1141 CleanupDominator->eraseFromParent();
John McCallf4beacd2011-11-10 10:43:54 +00001142 }
John McCall99210dc2011-09-15 06:49:18 +00001143
Faisal Vali57ae0562013-12-14 00:40:05 +00001144 // Advance to the next element by adjusting the pointer type as necessary.
Richard Smith06a67e22014-06-03 06:58:52 +00001145 llvm::Value *NextPtr =
John McCall7f416cc2015-09-08 08:05:57 +00001146 Builder.CreateConstInBoundsGEP1_32(ElementTy, CurPtr.getPointer(), 1,
1147 "array.next");
Richard Smith06a67e22014-06-03 06:58:52 +00001148
John McCall99210dc2011-09-15 06:49:18 +00001149 // Check whether we've gotten to the end of the array and, if so,
1150 // exit the loop.
Richard Smith06a67e22014-06-03 06:58:52 +00001151 llvm::Value *IsEnd = Builder.CreateICmpEQ(NextPtr, EndPtr, "array.atend");
1152 Builder.CreateCondBr(IsEnd, ContBB, LoopBB);
1153 CurPtrPhi->addIncoming(NextPtr, Builder.GetInsertBlock());
John McCall99210dc2011-09-15 06:49:18 +00001154
Richard Smith06a67e22014-06-03 06:58:52 +00001155 EmitBlock(ContBB);
Fariborz Jahaniand5202e02010-06-25 18:26:07 +00001156}
1157
Anders Carlssonb4bd0662009-09-23 16:07:23 +00001158static void EmitNewInitializer(CodeGenFunction &CGF, const CXXNewExpr *E,
David Blaikiefb901c7a2015-04-04 15:12:29 +00001159 QualType ElementType, llvm::Type *ElementTy,
John McCall7f416cc2015-09-08 08:05:57 +00001160 Address NewPtr, llvm::Value *NumElements,
Douglas Gregor05fc5be2010-07-21 01:10:17 +00001161 llvm::Value *AllocSizeWithoutCookie) {
David Blaikie9b479662015-01-25 01:19:10 +00001162 ApplyDebugLocation DL(CGF, E);
Richard Smith06a67e22014-06-03 06:58:52 +00001163 if (E->isArray())
David Blaikiefb901c7a2015-04-04 15:12:29 +00001164 CGF.EmitNewArrayInitializer(E, ElementType, ElementTy, NewPtr, NumElements,
Richard Smith06a67e22014-06-03 06:58:52 +00001165 AllocSizeWithoutCookie);
1166 else if (const Expr *Init = E->getInitializer())
David Blaikie66e41972015-01-14 07:38:27 +00001167 StoreAnyExprIntoOneUnit(CGF, Init, E->getAllocatedType(), NewPtr);
Anders Carlssonb4bd0662009-09-23 16:07:23 +00001168}
1169
Richard Smith8d0dc312013-07-21 23:12:18 +00001170/// Emit a call to an operator new or operator delete function, as implicitly
1171/// created by new-expressions and delete-expressions.
1172static RValue EmitNewDeleteCall(CodeGenFunction &CGF,
1173 const FunctionDecl *Callee,
1174 const FunctionProtoType *CalleeType,
1175 const CallArgList &Args) {
1176 llvm::Instruction *CallOrInvoke;
Richard Smith1235a8d2013-07-29 20:14:16 +00001177 llvm::Value *CalleeAddr = CGF.CGM.GetAddrOfFunction(Callee);
Richard Smith8d0dc312013-07-21 23:12:18 +00001178 RValue RV =
Peter Collingbournef7706832014-12-12 23:41:25 +00001179 CGF.EmitCall(CGF.CGM.getTypes().arrangeFreeFunctionCall(
1180 Args, CalleeType, /*chainCall=*/false),
1181 CalleeAddr, ReturnValueSlot(), Args, Callee, &CallOrInvoke);
Richard Smith8d0dc312013-07-21 23:12:18 +00001182
1183 /// C++1y [expr.new]p10:
1184 /// [In a new-expression,] an implementation is allowed to omit a call
1185 /// to a replaceable global allocation function.
1186 ///
1187 /// We model such elidable calls with the 'builtin' attribute.
Rafael Espindola6956d582013-10-22 14:23:09 +00001188 llvm::Function *Fn = dyn_cast<llvm::Function>(CalleeAddr);
Richard Smith1235a8d2013-07-29 20:14:16 +00001189 if (Callee->isReplaceableGlobalAllocationFunction() &&
Rafael Espindola6956d582013-10-22 14:23:09 +00001190 Fn && Fn->hasFnAttribute(llvm::Attribute::NoBuiltin)) {
Richard Smith8d0dc312013-07-21 23:12:18 +00001191 // FIXME: Add addAttribute to CallSite.
1192 if (llvm::CallInst *CI = dyn_cast<llvm::CallInst>(CallOrInvoke))
1193 CI->addAttribute(llvm::AttributeSet::FunctionIndex,
1194 llvm::Attribute::Builtin);
1195 else if (llvm::InvokeInst *II = dyn_cast<llvm::InvokeInst>(CallOrInvoke))
1196 II->addAttribute(llvm::AttributeSet::FunctionIndex,
1197 llvm::Attribute::Builtin);
1198 else
1199 llvm_unreachable("unexpected kind of call instruction");
1200 }
1201
1202 return RV;
1203}
1204
Richard Smith760520b2014-06-03 23:27:44 +00001205RValue CodeGenFunction::EmitBuiltinNewDeleteCall(const FunctionProtoType *Type,
1206 const Expr *Arg,
1207 bool IsDelete) {
1208 CallArgList Args;
1209 const Stmt *ArgS = Arg;
David Blaikief05779e2015-07-21 18:37:18 +00001210 EmitCallArgs(Args, *Type->param_type_begin(), llvm::makeArrayRef(ArgS));
Richard Smith760520b2014-06-03 23:27:44 +00001211 // Find the allocation or deallocation function that we're calling.
1212 ASTContext &Ctx = getContext();
1213 DeclarationName Name = Ctx.DeclarationNames
1214 .getCXXOperatorName(IsDelete ? OO_Delete : OO_New);
1215 for (auto *Decl : Ctx.getTranslationUnitDecl()->lookup(Name))
Richard Smith599bed72014-06-05 00:43:02 +00001216 if (auto *FD = dyn_cast<FunctionDecl>(Decl))
1217 if (Ctx.hasSameType(FD->getType(), QualType(Type, 0)))
1218 return EmitNewDeleteCall(*this, cast<FunctionDecl>(Decl), Type, Args);
Richard Smith760520b2014-06-03 23:27:44 +00001219 llvm_unreachable("predeclared global operator new/delete is missing");
1220}
1221
Richard Smith189e52f2016-10-10 06:42:31 +00001222namespace {
Daniel Jaspere9abe642016-10-10 14:13:55 +00001223 /// A cleanup to call the given 'operator delete' function upon
1224 /// abnormal exit from a new expression.
Richard Smith189e52f2016-10-10 06:42:31 +00001225 class CallDeleteDuringNew final : public EHScopeStack::Cleanup {
Daniel Jaspere9abe642016-10-10 14:13:55 +00001226 size_t NumPlacementArgs;
Richard Smith189e52f2016-10-10 06:42:31 +00001227 const FunctionDecl *OperatorDelete;
Daniel Jaspere9abe642016-10-10 14:13:55 +00001228 llvm::Value *Ptr;
1229 llvm::Value *AllocSize;
Richard Smith189e52f2016-10-10 06:42:31 +00001230
Daniel Jaspere9abe642016-10-10 14:13:55 +00001231 RValue *getPlacementArgs() { return reinterpret_cast<RValue*>(this+1); }
1232
1233 public:
1234 static size_t getExtraSize(size_t NumPlacementArgs) {
1235 return NumPlacementArgs * sizeof(RValue);
1236 }
1237
1238 CallDeleteDuringNew(size_t NumPlacementArgs,
1239 const FunctionDecl *OperatorDelete,
1240 llvm::Value *Ptr,
1241 llvm::Value *AllocSize)
1242 : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
1243 Ptr(Ptr), AllocSize(AllocSize) {}
1244
1245 void setPlacementArg(unsigned I, RValue Arg) {
1246 assert(I < NumPlacementArgs && "index out of range");
1247 getPlacementArgs()[I] = Arg;
1248 }
1249
1250 void Emit(CodeGenFunction &CGF, Flags flags) override {
1251 const FunctionProtoType *FPT
1252 = OperatorDelete->getType()->getAs<FunctionProtoType>();
1253 assert(FPT->getNumParams() == NumPlacementArgs + 1 ||
1254 (FPT->getNumParams() == 2 && NumPlacementArgs == 0));
1255
1256 CallArgList DeleteArgs;
1257
1258 // The first argument is always a void*.
1259 FunctionProtoType::param_type_iterator AI = FPT->param_type_begin();
1260 DeleteArgs.add(RValue::get(Ptr), *AI++);
1261
1262 // A member 'operator delete' can take an extra 'size_t' argument.
1263 if (FPT->getNumParams() == NumPlacementArgs + 2)
1264 DeleteArgs.add(RValue::get(AllocSize), *AI++);
1265
1266 // Pass the rest of the arguments, which must match exactly.
1267 for (unsigned I = 0; I != NumPlacementArgs; ++I)
1268 DeleteArgs.add(getPlacementArgs()[I], *AI++);
1269
1270 // Call 'operator delete'.
1271 EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs);
1272 }
1273 };
1274
1275 /// A cleanup to call the given 'operator delete' function upon
1276 /// abnormal exit from a new expression when the new expression is
1277 /// conditional.
1278 class CallDeleteDuringConditionalNew final : public EHScopeStack::Cleanup {
1279 size_t NumPlacementArgs;
1280 const FunctionDecl *OperatorDelete;
1281 DominatingValue<RValue>::saved_type Ptr;
1282 DominatingValue<RValue>::saved_type AllocSize;
1283
1284 DominatingValue<RValue>::saved_type *getPlacementArgs() {
1285 return reinterpret_cast<DominatingValue<RValue>::saved_type*>(this+1);
Richard Smith189e52f2016-10-10 06:42:31 +00001286 }
John McCall824c2f52010-09-14 07:57:04 +00001287
1288 public:
1289 static size_t getExtraSize(size_t NumPlacementArgs) {
Daniel Jaspere9abe642016-10-10 14:13:55 +00001290 return NumPlacementArgs * sizeof(DominatingValue<RValue>::saved_type);
John McCall824c2f52010-09-14 07:57:04 +00001291 }
1292
Daniel Jaspere9abe642016-10-10 14:13:55 +00001293 CallDeleteDuringConditionalNew(size_t NumPlacementArgs,
1294 const FunctionDecl *OperatorDelete,
1295 DominatingValue<RValue>::saved_type Ptr,
1296 DominatingValue<RValue>::saved_type AllocSize)
1297 : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
1298 Ptr(Ptr), AllocSize(AllocSize) {}
John McCall824c2f52010-09-14 07:57:04 +00001299
Daniel Jaspere9abe642016-10-10 14:13:55 +00001300 void setPlacementArg(unsigned I, DominatingValue<RValue>::saved_type Arg) {
John McCall824c2f52010-09-14 07:57:04 +00001301 assert(I < NumPlacementArgs && "index out of range");
Daniel Jaspere9abe642016-10-10 14:13:55 +00001302 getPlacementArgs()[I] = Arg;
John McCall824c2f52010-09-14 07:57:04 +00001303 }
1304
Craig Topper4f12f102014-03-12 06:41:41 +00001305 void Emit(CodeGenFunction &CGF, Flags flags) override {
Daniel Jaspere9abe642016-10-10 14:13:55 +00001306 const FunctionProtoType *FPT
1307 = OperatorDelete->getType()->getAs<FunctionProtoType>();
1308 assert(FPT->getNumParams() == NumPlacementArgs + 1 ||
1309 (FPT->getNumParams() == 2 && NumPlacementArgs == 0));
1310
John McCall824c2f52010-09-14 07:57:04 +00001311 CallArgList DeleteArgs;
1312
1313 // The first argument is always a void*.
Daniel Jaspere9abe642016-10-10 14:13:55 +00001314 FunctionProtoType::param_type_iterator AI = FPT->param_type_begin();
1315 DeleteArgs.add(Ptr.restore(CGF), *AI++);
John McCall824c2f52010-09-14 07:57:04 +00001316
Daniel Jaspere9abe642016-10-10 14:13:55 +00001317 // A member 'operator delete' can take an extra 'size_t' argument.
1318 if (FPT->getNumParams() == NumPlacementArgs + 2) {
1319 RValue RV = AllocSize.restore(CGF);
1320 DeleteArgs.add(RV, *AI++);
John McCall7f9c92a2010-09-17 00:50:28 +00001321 }
1322
1323 // Pass the rest of the arguments, which must match exactly.
1324 for (unsigned I = 0; I != NumPlacementArgs; ++I) {
Daniel Jaspere9abe642016-10-10 14:13:55 +00001325 RValue RV = getPlacementArgs()[I].restore(CGF);
1326 DeleteArgs.add(RV, *AI++);
John McCall7f9c92a2010-09-17 00:50:28 +00001327 }
1328
1329 // Call 'operator delete'.
Richard Smith8d0dc312013-07-21 23:12:18 +00001330 EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs);
John McCall7f9c92a2010-09-17 00:50:28 +00001331 }
1332 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001333}
John McCall7f9c92a2010-09-17 00:50:28 +00001334
1335/// Enter a cleanup to call 'operator delete' if the initializer in a
1336/// new-expression throws.
1337static void EnterNewDeleteCleanup(CodeGenFunction &CGF,
1338 const CXXNewExpr *E,
John McCall7f416cc2015-09-08 08:05:57 +00001339 Address NewPtr,
John McCall7f9c92a2010-09-17 00:50:28 +00001340 llvm::Value *AllocSize,
1341 const CallArgList &NewArgs) {
1342 // If we're not inside a conditional branch, then the cleanup will
1343 // dominate and we can do the easier (and more efficient) thing.
1344 if (!CGF.isInConditionalBranch()) {
Daniel Jaspere9abe642016-10-10 14:13:55 +00001345 CallDeleteDuringNew *Cleanup = CGF.EHStack
1346 .pushCleanupWithExtra<CallDeleteDuringNew>(EHCleanup,
1347 E->getNumPlacementArgs(),
1348 E->getOperatorDelete(),
1349 NewPtr.getPointer(),
1350 AllocSize);
1351 for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
1352 Cleanup->setPlacementArg(I, NewArgs[I+1].RV);
John McCall7f9c92a2010-09-17 00:50:28 +00001353
1354 return;
1355 }
1356
1357 // Otherwise, we need to save all this stuff.
John McCallcb5f77f2011-01-28 10:53:53 +00001358 DominatingValue<RValue>::saved_type SavedNewPtr =
John McCall7f416cc2015-09-08 08:05:57 +00001359 DominatingValue<RValue>::save(CGF, RValue::get(NewPtr.getPointer()));
John McCallcb5f77f2011-01-28 10:53:53 +00001360 DominatingValue<RValue>::saved_type SavedAllocSize =
1361 DominatingValue<RValue>::save(CGF, RValue::get(AllocSize));
John McCall7f9c92a2010-09-17 00:50:28 +00001362
Daniel Jaspere9abe642016-10-10 14:13:55 +00001363 CallDeleteDuringConditionalNew *Cleanup = CGF.EHStack
1364 .pushCleanupWithExtra<CallDeleteDuringConditionalNew>(EHCleanup,
1365 E->getNumPlacementArgs(),
1366 E->getOperatorDelete(),
1367 SavedNewPtr,
1368 SavedAllocSize);
1369 for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
1370 Cleanup->setPlacementArg(I,
1371 DominatingValue<RValue>::save(CGF, NewArgs[I+1].RV));
John McCall7f9c92a2010-09-17 00:50:28 +00001372
John McCallf4beacd2011-11-10 10:43:54 +00001373 CGF.initFullExprCleanup();
John McCall824c2f52010-09-14 07:57:04 +00001374}
1375
Anders Carlssoncc52f652009-09-22 22:53:17 +00001376llvm::Value *CodeGenFunction::EmitCXXNewExpr(const CXXNewExpr *E) {
John McCall75f94982011-03-07 03:12:35 +00001377 // The element type being allocated.
1378 QualType allocType = getContext().getBaseElementType(E->getAllocatedType());
John McCall8ed55a52010-09-02 09:58:18 +00001379
John McCall75f94982011-03-07 03:12:35 +00001380 // 1. Build a call to the allocation function.
1381 FunctionDecl *allocator = E->getOperatorNew();
Anders Carlssoncc52f652009-09-22 22:53:17 +00001382
Sebastian Redlf862eb62012-02-22 17:37:52 +00001383 // If there is a brace-initializer, cannot allocate fewer elements than inits.
1384 unsigned minElements = 0;
1385 if (E->isArray() && E->hasInitializer()) {
Richard Smith0511d232016-10-05 22:41:02 +00001386 const InitListExpr *ILE = dyn_cast<InitListExpr>(E->getInitializer());
1387 if (ILE && ILE->isStringLiteralInit())
1388 minElements =
1389 cast<ConstantArrayType>(ILE->getType()->getAsArrayTypeUnsafe())
1390 ->getSize().getZExtValue();
1391 else if (ILE)
Sebastian Redlf862eb62012-02-22 17:37:52 +00001392 minElements = ILE->getNumInits();
1393 }
1394
Craig Topper8a13c412014-05-21 05:09:00 +00001395 llvm::Value *numElements = nullptr;
1396 llvm::Value *allocSizeWithoutCookie = nullptr;
John McCall75f94982011-03-07 03:12:35 +00001397 llvm::Value *allocSize =
Sebastian Redlf862eb62012-02-22 17:37:52 +00001398 EmitCXXNewAllocSize(*this, E, minElements, numElements,
1399 allocSizeWithoutCookie);
Alexey Samsonovcbe875a2014-08-28 00:22:11 +00001400
John McCall7ec4b432011-05-16 01:05:12 +00001401 // Emit the allocation call. If the allocator is a global placement
1402 // operator, just "inline" it directly.
John McCall7f416cc2015-09-08 08:05:57 +00001403 Address allocation = Address::invalid();
1404 CallArgList allocatorArgs;
John McCall7ec4b432011-05-16 01:05:12 +00001405 if (allocator->isReservedGlobalPlacementOperator()) {
John McCall53dcf942015-09-29 23:55:17 +00001406 assert(E->getNumPlacementArgs() == 1);
1407 const Expr *arg = *E->placement_arguments().begin();
1408
John McCall7f416cc2015-09-08 08:05:57 +00001409 AlignmentSource alignSource;
John McCall53dcf942015-09-29 23:55:17 +00001410 allocation = EmitPointerWithAlignment(arg, &alignSource);
John McCall7f416cc2015-09-08 08:05:57 +00001411
1412 // The pointer expression will, in many cases, be an opaque void*.
1413 // In these cases, discard the computed alignment and use the
1414 // formal alignment of the allocated type.
Daniel Jaspere9abe642016-10-10 14:13:55 +00001415 if (alignSource != AlignmentSource::Decl) {
1416 allocation = Address(allocation.getPointer(),
1417 getContext().getTypeAlignInChars(allocType));
1418 }
John McCall7f416cc2015-09-08 08:05:57 +00001419
John McCall53dcf942015-09-29 23:55:17 +00001420 // Set up allocatorArgs for the call to operator delete if it's not
1421 // the reserved global operator.
1422 if (E->getOperatorDelete() &&
1423 !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) {
1424 allocatorArgs.add(RValue::get(allocSize), getContext().getSizeType());
1425 allocatorArgs.add(RValue::get(allocation.getPointer()), arg->getType());
1426 }
1427
John McCall7ec4b432011-05-16 01:05:12 +00001428 } else {
John McCall7f416cc2015-09-08 08:05:57 +00001429 const FunctionProtoType *allocatorType =
1430 allocator->getType()->castAs<FunctionProtoType>();
1431
1432 // The allocation size is the first argument.
1433 QualType sizeType = getContext().getSizeType();
1434 allocatorArgs.add(RValue::get(allocSize), sizeType);
1435
Daniel Jaspere9abe642016-10-10 14:13:55 +00001436 // We start at 1 here because the first argument (the allocation size)
1437 // has already been emitted.
John McCall7f416cc2015-09-08 08:05:57 +00001438 EmitCallArgs(allocatorArgs, allocatorType, E->placement_arguments(),
Daniel Jaspere9abe642016-10-10 14:13:55 +00001439 /* CalleeDecl */ nullptr,
1440 /*ParamsToSkip*/ 1);
John McCall7f416cc2015-09-08 08:05:57 +00001441
1442 RValue RV =
1443 EmitNewDeleteCall(*this, allocator, allocatorType, allocatorArgs);
1444
Daniel Jaspere9abe642016-10-10 14:13:55 +00001445 // For now, only assume that the allocation function returns
1446 // something satisfactorily aligned for the element type, plus
1447 // the cookie if we have one.
1448 CharUnits allocationAlign =
1449 getContext().getTypeAlignInChars(allocType);
1450 if (allocSize != allocSizeWithoutCookie) {
1451 CharUnits cookieAlign = getSizeAlign(); // FIXME?
1452 allocationAlign = std::max(allocationAlign, cookieAlign);
John McCall7f416cc2015-09-08 08:05:57 +00001453 }
1454
1455 allocation = Address(RV.getScalarVal(), allocationAlign);
John McCall7ec4b432011-05-16 01:05:12 +00001456 }
Anders Carlssoncc52f652009-09-22 22:53:17 +00001457
John McCall75f94982011-03-07 03:12:35 +00001458 // Emit a null check on the allocation result if the allocation
1459 // function is allowed to return null (because it has a non-throwing
Richard Smith902a0232015-02-14 01:52:20 +00001460 // exception spec or is the reserved placement new) and we have an
John McCall75f94982011-03-07 03:12:35 +00001461 // interesting initializer.
Richard Smith902a0232015-02-14 01:52:20 +00001462 bool nullCheck = E->shouldNullCheckAllocation(getContext()) &&
Sebastian Redl6047f072012-02-16 12:22:20 +00001463 (!allocType.isPODType(getContext()) || E->hasInitializer());
Anders Carlssoncc52f652009-09-22 22:53:17 +00001464
Craig Topper8a13c412014-05-21 05:09:00 +00001465 llvm::BasicBlock *nullCheckBB = nullptr;
1466 llvm::BasicBlock *contBB = nullptr;
Anders Carlssoncc52f652009-09-22 22:53:17 +00001467
John McCallf7dcf322011-03-07 01:52:56 +00001468 // The null-check means that the initializer is conditionally
1469 // evaluated.
1470 ConditionalEvaluation conditional(*this);
1471
John McCall75f94982011-03-07 03:12:35 +00001472 if (nullCheck) {
John McCallf7dcf322011-03-07 01:52:56 +00001473 conditional.begin(*this);
John McCall75f94982011-03-07 03:12:35 +00001474
1475 nullCheckBB = Builder.GetInsertBlock();
1476 llvm::BasicBlock *notNullBB = createBasicBlock("new.notnull");
1477 contBB = createBasicBlock("new.cont");
1478
John McCall7f416cc2015-09-08 08:05:57 +00001479 llvm::Value *isNull =
1480 Builder.CreateIsNull(allocation.getPointer(), "new.isnull");
John McCall75f94982011-03-07 03:12:35 +00001481 Builder.CreateCondBr(isNull, contBB, notNullBB);
1482 EmitBlock(notNullBB);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001483 }
Anders Carlssonf7716812009-09-23 18:59:48 +00001484
John McCall824c2f52010-09-14 07:57:04 +00001485 // If there's an operator delete, enter a cleanup to call it if an
1486 // exception is thrown.
John McCall75f94982011-03-07 03:12:35 +00001487 EHScopeStack::stable_iterator operatorDeleteCleanup;
Craig Topper8a13c412014-05-21 05:09:00 +00001488 llvm::Instruction *cleanupDominator = nullptr;
John McCall7ec4b432011-05-16 01:05:12 +00001489 if (E->getOperatorDelete() &&
1490 !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) {
Daniel Jaspere9abe642016-10-10 14:13:55 +00001491 EnterNewDeleteCleanup(*this, E, allocation, allocSize, allocatorArgs);
John McCall75f94982011-03-07 03:12:35 +00001492 operatorDeleteCleanup = EHStack.stable_begin();
John McCallf4beacd2011-11-10 10:43:54 +00001493 cleanupDominator = Builder.CreateUnreachable();
John McCall824c2f52010-09-14 07:57:04 +00001494 }
1495
Eli Friedmancf9b1f62011-09-06 18:53:03 +00001496 assert((allocSize == allocSizeWithoutCookie) ==
1497 CalculateCookiePadding(*this, E).isZero());
1498 if (allocSize != allocSizeWithoutCookie) {
1499 assert(E->isArray());
1500 allocation = CGM.getCXXABI().InitializeArrayCookie(*this, allocation,
1501 numElements,
1502 E, allocType);
1503 }
1504
David Blaikiefb901c7a2015-04-04 15:12:29 +00001505 llvm::Type *elementTy = ConvertTypeForMem(allocType);
John McCall7f416cc2015-09-08 08:05:57 +00001506 Address result = Builder.CreateElementBitCast(allocation, elementTy);
John McCall824c2f52010-09-14 07:57:04 +00001507
Piotr Padlewski338c9d02015-09-15 21:46:47 +00001508 // Passing pointer through invariant.group.barrier to avoid propagation of
1509 // vptrs information which may be included in previous type.
1510 if (CGM.getCodeGenOpts().StrictVTablePointers &&
1511 CGM.getCodeGenOpts().OptimizationLevel > 0 &&
1512 allocator->isReservedGlobalPlacementOperator())
1513 result = Address(Builder.CreateInvariantGroupBarrier(result.getPointer()),
1514 result.getAlignment());
1515
David Blaikiefb901c7a2015-04-04 15:12:29 +00001516 EmitNewInitializer(*this, E, allocType, elementTy, result, numElements,
John McCall99210dc2011-09-15 06:49:18 +00001517 allocSizeWithoutCookie);
John McCall8ed55a52010-09-02 09:58:18 +00001518 if (E->isArray()) {
John McCall8ed55a52010-09-02 09:58:18 +00001519 // NewPtr is a pointer to the base element type. If we're
1520 // allocating an array of arrays, we'll need to cast back to the
1521 // array pointer type.
Chris Lattner2192fe52011-07-18 04:24:23 +00001522 llvm::Type *resultType = ConvertTypeForMem(E->getType());
John McCall7f416cc2015-09-08 08:05:57 +00001523 if (result.getType() != resultType)
John McCall75f94982011-03-07 03:12:35 +00001524 result = Builder.CreateBitCast(result, resultType);
Fariborz Jahanian47b46292010-03-24 16:57:01 +00001525 }
John McCall824c2f52010-09-14 07:57:04 +00001526
1527 // Deactivate the 'operator delete' cleanup if we finished
1528 // initialization.
John McCallf4beacd2011-11-10 10:43:54 +00001529 if (operatorDeleteCleanup.isValid()) {
1530 DeactivateCleanupBlock(operatorDeleteCleanup, cleanupDominator);
1531 cleanupDominator->eraseFromParent();
1532 }
Sebastian Redl6047f072012-02-16 12:22:20 +00001533
John McCall7f416cc2015-09-08 08:05:57 +00001534 llvm::Value *resultPtr = result.getPointer();
John McCall75f94982011-03-07 03:12:35 +00001535 if (nullCheck) {
John McCallf7dcf322011-03-07 01:52:56 +00001536 conditional.end(*this);
1537
John McCall75f94982011-03-07 03:12:35 +00001538 llvm::BasicBlock *notNullBB = Builder.GetInsertBlock();
1539 EmitBlock(contBB);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001540
John McCall7f416cc2015-09-08 08:05:57 +00001541 llvm::PHINode *PHI = Builder.CreatePHI(resultPtr->getType(), 2);
1542 PHI->addIncoming(resultPtr, notNullBB);
1543 PHI->addIncoming(llvm::Constant::getNullValue(resultPtr->getType()),
John McCall75f94982011-03-07 03:12:35 +00001544 nullCheckBB);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001545
John McCall7f416cc2015-09-08 08:05:57 +00001546 resultPtr = PHI;
Anders Carlssoncc52f652009-09-22 22:53:17 +00001547 }
John McCall8ed55a52010-09-02 09:58:18 +00001548
John McCall7f416cc2015-09-08 08:05:57 +00001549 return resultPtr;
Anders Carlssoncc52f652009-09-22 22:53:17 +00001550}
1551
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001552void CodeGenFunction::EmitDeleteCall(const FunctionDecl *DeleteFD,
Daniel Jaspere9abe642016-10-10 14:13:55 +00001553 llvm::Value *Ptr,
1554 QualType DeleteTy) {
1555 assert(DeleteFD->getOverloadedOperator() == OO_Delete);
John McCall8ed55a52010-09-02 09:58:18 +00001556
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001557 const FunctionProtoType *DeleteFTy =
1558 DeleteFD->getType()->getAs<FunctionProtoType>();
1559
1560 CallArgList DeleteArgs;
1561
Daniel Jaspere9abe642016-10-10 14:13:55 +00001562 // Check if we need to pass the size to the delete operator.
1563 llvm::Value *Size = nullptr;
1564 QualType SizeTy;
1565 if (DeleteFTy->getNumParams() == 2) {
1566 SizeTy = DeleteFTy->getParamType(1);
1567 CharUnits DeleteTypeSize = getContext().getTypeSizeInChars(DeleteTy);
1568 Size = llvm::ConstantInt::get(ConvertType(SizeTy),
1569 DeleteTypeSize.getQuantity());
1570 }
Alp Toker9cacbab2014-01-20 20:26:09 +00001571
Daniel Jaspere9abe642016-10-10 14:13:55 +00001572 QualType ArgTy = DeleteFTy->getParamType(0);
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001573 llvm::Value *DeletePtr = Builder.CreateBitCast(Ptr, ConvertType(ArgTy));
Eli Friedman43dca6a2011-05-02 17:57:46 +00001574 DeleteArgs.add(RValue::get(DeletePtr), ArgTy);
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001575
Daniel Jaspere9abe642016-10-10 14:13:55 +00001576 if (Size)
1577 DeleteArgs.add(RValue::get(Size), SizeTy);
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001578
1579 // Emit the call to delete.
Richard Smith8d0dc312013-07-21 23:12:18 +00001580 EmitNewDeleteCall(*this, DeleteFD, DeleteFTy, DeleteArgs);
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001581}
1582
John McCall8ed55a52010-09-02 09:58:18 +00001583namespace {
1584 /// Calls the given 'operator delete' on a single object.
David Blaikie7e70d682015-08-18 22:40:54 +00001585 struct CallObjectDelete final : EHScopeStack::Cleanup {
John McCall8ed55a52010-09-02 09:58:18 +00001586 llvm::Value *Ptr;
1587 const FunctionDecl *OperatorDelete;
1588 QualType ElementType;
1589
1590 CallObjectDelete(llvm::Value *Ptr,
1591 const FunctionDecl *OperatorDelete,
1592 QualType ElementType)
1593 : Ptr(Ptr), OperatorDelete(OperatorDelete), ElementType(ElementType) {}
1594
Craig Topper4f12f102014-03-12 06:41:41 +00001595 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall8ed55a52010-09-02 09:58:18 +00001596 CGF.EmitDeleteCall(OperatorDelete, Ptr, ElementType);
1597 }
1598 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001599}
John McCall8ed55a52010-09-02 09:58:18 +00001600
David Majnemer0c0b6d92014-10-31 20:09:12 +00001601void
1602CodeGenFunction::pushCallObjectDeleteCleanup(const FunctionDecl *OperatorDelete,
1603 llvm::Value *CompletePtr,
1604 QualType ElementType) {
1605 EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup, CompletePtr,
1606 OperatorDelete, ElementType);
1607}
1608
John McCall8ed55a52010-09-02 09:58:18 +00001609/// Emit the code for deleting a single object.
1610static void EmitObjectDelete(CodeGenFunction &CGF,
David Majnemer08681372014-11-01 07:37:17 +00001611 const CXXDeleteExpr *DE,
John McCall7f416cc2015-09-08 08:05:57 +00001612 Address Ptr,
David Majnemer08681372014-11-01 07:37:17 +00001613 QualType ElementType) {
John McCall8ed55a52010-09-02 09:58:18 +00001614 // Find the destructor for the type, if applicable. If the
1615 // destructor is virtual, we'll just emit the vcall and return.
Craig Topper8a13c412014-05-21 05:09:00 +00001616 const CXXDestructorDecl *Dtor = nullptr;
John McCall8ed55a52010-09-02 09:58:18 +00001617 if (const RecordType *RT = ElementType->getAs<RecordType>()) {
1618 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Eli Friedmanb23533d2011-08-02 18:05:30 +00001619 if (RD->hasDefinition() && !RD->hasTrivialDestructor()) {
John McCall8ed55a52010-09-02 09:58:18 +00001620 Dtor = RD->getDestructor();
1621
1622 if (Dtor->isVirtual()) {
David Majnemer08681372014-11-01 07:37:17 +00001623 CGF.CGM.getCXXABI().emitVirtualObjectDelete(CGF, DE, Ptr, ElementType,
1624 Dtor);
John McCall8ed55a52010-09-02 09:58:18 +00001625 return;
1626 }
1627 }
1628 }
1629
1630 // Make sure that we call delete even if the dtor throws.
John McCalle4df6c82011-01-28 08:37:24 +00001631 // This doesn't have to a conditional cleanup because we're going
1632 // to pop it off in a second.
David Majnemer08681372014-11-01 07:37:17 +00001633 const FunctionDecl *OperatorDelete = DE->getOperatorDelete();
John McCall8ed55a52010-09-02 09:58:18 +00001634 CGF.EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup,
John McCall7f416cc2015-09-08 08:05:57 +00001635 Ptr.getPointer(),
1636 OperatorDelete, ElementType);
John McCall8ed55a52010-09-02 09:58:18 +00001637
1638 if (Dtor)
1639 CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete,
Douglas Gregor61535002013-01-31 05:50:40 +00001640 /*ForVirtualBase=*/false,
1641 /*Delegating=*/false,
1642 Ptr);
John McCall460ce582015-10-22 18:38:17 +00001643 else if (auto Lifetime = ElementType.getObjCLifetime()) {
1644 switch (Lifetime) {
John McCall31168b02011-06-15 23:02:42 +00001645 case Qualifiers::OCL_None:
1646 case Qualifiers::OCL_ExplicitNone:
1647 case Qualifiers::OCL_Autoreleasing:
1648 break;
John McCall8ed55a52010-09-02 09:58:18 +00001649
John McCall7f416cc2015-09-08 08:05:57 +00001650 case Qualifiers::OCL_Strong:
1651 CGF.EmitARCDestroyStrong(Ptr, ARCPreciseLifetime);
John McCall31168b02011-06-15 23:02:42 +00001652 break;
John McCall31168b02011-06-15 23:02:42 +00001653
1654 case Qualifiers::OCL_Weak:
1655 CGF.EmitARCDestroyWeak(Ptr);
1656 break;
1657 }
1658 }
1659
John McCall8ed55a52010-09-02 09:58:18 +00001660 CGF.PopCleanupBlock();
1661}
1662
1663namespace {
1664 /// Calls the given 'operator delete' on an array of objects.
David Blaikie7e70d682015-08-18 22:40:54 +00001665 struct CallArrayDelete final : EHScopeStack::Cleanup {
John McCall8ed55a52010-09-02 09:58:18 +00001666 llvm::Value *Ptr;
1667 const FunctionDecl *OperatorDelete;
1668 llvm::Value *NumElements;
1669 QualType ElementType;
1670 CharUnits CookieSize;
1671
1672 CallArrayDelete(llvm::Value *Ptr,
1673 const FunctionDecl *OperatorDelete,
1674 llvm::Value *NumElements,
1675 QualType ElementType,
1676 CharUnits CookieSize)
1677 : Ptr(Ptr), OperatorDelete(OperatorDelete), NumElements(NumElements),
1678 ElementType(ElementType), CookieSize(CookieSize) {}
1679
Craig Topper4f12f102014-03-12 06:41:41 +00001680 void Emit(CodeGenFunction &CGF, Flags flags) override {
Daniel Jaspere9abe642016-10-10 14:13:55 +00001681 const FunctionProtoType *DeleteFTy =
1682 OperatorDelete->getType()->getAs<FunctionProtoType>();
1683 assert(DeleteFTy->getNumParams() == 1 || DeleteFTy->getNumParams() == 2);
1684
1685 CallArgList Args;
1686
1687 // Pass the pointer as the first argument.
1688 QualType VoidPtrTy = DeleteFTy->getParamType(0);
1689 llvm::Value *DeletePtr
1690 = CGF.Builder.CreateBitCast(Ptr, CGF.ConvertType(VoidPtrTy));
1691 Args.add(RValue::get(DeletePtr), VoidPtrTy);
1692
1693 // Pass the original requested size as the second argument.
1694 if (DeleteFTy->getNumParams() == 2) {
1695 QualType size_t = DeleteFTy->getParamType(1);
1696 llvm::IntegerType *SizeTy
1697 = cast<llvm::IntegerType>(CGF.ConvertType(size_t));
1698
1699 CharUnits ElementTypeSize =
1700 CGF.CGM.getContext().getTypeSizeInChars(ElementType);
1701
1702 // The size of an element, multiplied by the number of elements.
1703 llvm::Value *Size
1704 = llvm::ConstantInt::get(SizeTy, ElementTypeSize.getQuantity());
1705 if (NumElements)
1706 Size = CGF.Builder.CreateMul(Size, NumElements);
1707
1708 // Plus the size of the cookie if applicable.
1709 if (!CookieSize.isZero()) {
1710 llvm::Value *CookieSizeV
1711 = llvm::ConstantInt::get(SizeTy, CookieSize.getQuantity());
1712 Size = CGF.Builder.CreateAdd(Size, CookieSizeV);
1713 }
1714
1715 Args.add(RValue::get(Size), size_t);
1716 }
1717
1718 // Emit the call to delete.
1719 EmitNewDeleteCall(CGF, OperatorDelete, DeleteFTy, Args);
John McCall8ed55a52010-09-02 09:58:18 +00001720 }
1721 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001722}
John McCall8ed55a52010-09-02 09:58:18 +00001723
1724/// Emit the code for deleting an array of objects.
1725static void EmitArrayDelete(CodeGenFunction &CGF,
John McCall284c48f2011-01-27 09:37:56 +00001726 const CXXDeleteExpr *E,
John McCall7f416cc2015-09-08 08:05:57 +00001727 Address deletedPtr,
John McCallca2c56f2011-07-13 01:41:37 +00001728 QualType elementType) {
Craig Topper8a13c412014-05-21 05:09:00 +00001729 llvm::Value *numElements = nullptr;
1730 llvm::Value *allocatedPtr = nullptr;
John McCallca2c56f2011-07-13 01:41:37 +00001731 CharUnits cookieSize;
1732 CGF.CGM.getCXXABI().ReadArrayCookie(CGF, deletedPtr, E, elementType,
1733 numElements, allocatedPtr, cookieSize);
John McCall8ed55a52010-09-02 09:58:18 +00001734
John McCallca2c56f2011-07-13 01:41:37 +00001735 assert(allocatedPtr && "ReadArrayCookie didn't set allocated pointer");
John McCall8ed55a52010-09-02 09:58:18 +00001736
1737 // Make sure that we call delete even if one of the dtors throws.
John McCallca2c56f2011-07-13 01:41:37 +00001738 const FunctionDecl *operatorDelete = E->getOperatorDelete();
John McCall8ed55a52010-09-02 09:58:18 +00001739 CGF.EHStack.pushCleanup<CallArrayDelete>(NormalAndEHCleanup,
John McCallca2c56f2011-07-13 01:41:37 +00001740 allocatedPtr, operatorDelete,
1741 numElements, elementType,
1742 cookieSize);
John McCall8ed55a52010-09-02 09:58:18 +00001743
John McCallca2c56f2011-07-13 01:41:37 +00001744 // Destroy the elements.
1745 if (QualType::DestructionKind dtorKind = elementType.isDestructedType()) {
1746 assert(numElements && "no element count for a type with a destructor!");
1747
John McCall7f416cc2015-09-08 08:05:57 +00001748 CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType);
1749 CharUnits elementAlign =
1750 deletedPtr.getAlignment().alignmentOfArrayElement(elementSize);
1751
1752 llvm::Value *arrayBegin = deletedPtr.getPointer();
John McCallca2c56f2011-07-13 01:41:37 +00001753 llvm::Value *arrayEnd =
John McCall7f416cc2015-09-08 08:05:57 +00001754 CGF.Builder.CreateInBoundsGEP(arrayBegin, numElements, "delete.end");
John McCall97eab0a2011-07-13 08:09:46 +00001755
1756 // Note that it is legal to allocate a zero-length array, and we
1757 // can never fold the check away because the length should always
1758 // come from a cookie.
John McCall7f416cc2015-09-08 08:05:57 +00001759 CGF.emitArrayDestroy(arrayBegin, arrayEnd, elementType, elementAlign,
John McCallca2c56f2011-07-13 01:41:37 +00001760 CGF.getDestroyer(dtorKind),
John McCall97eab0a2011-07-13 08:09:46 +00001761 /*checkZeroLength*/ true,
John McCallca2c56f2011-07-13 01:41:37 +00001762 CGF.needsEHCleanup(dtorKind));
John McCall8ed55a52010-09-02 09:58:18 +00001763 }
1764
John McCallca2c56f2011-07-13 01:41:37 +00001765 // Pop the cleanup block.
John McCall8ed55a52010-09-02 09:58:18 +00001766 CGF.PopCleanupBlock();
1767}
1768
Anders Carlssoncc52f652009-09-22 22:53:17 +00001769void CodeGenFunction::EmitCXXDeleteExpr(const CXXDeleteExpr *E) {
Douglas Gregorbb3e12f2009-09-29 18:16:17 +00001770 const Expr *Arg = E->getArgument();
John McCall7f416cc2015-09-08 08:05:57 +00001771 Address Ptr = EmitPointerWithAlignment(Arg);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001772
1773 // Null check the pointer.
1774 llvm::BasicBlock *DeleteNotNull = createBasicBlock("delete.notnull");
1775 llvm::BasicBlock *DeleteEnd = createBasicBlock("delete.end");
1776
John McCall7f416cc2015-09-08 08:05:57 +00001777 llvm::Value *IsNull = Builder.CreateIsNull(Ptr.getPointer(), "isnull");
Anders Carlssoncc52f652009-09-22 22:53:17 +00001778
1779 Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull);
1780 EmitBlock(DeleteNotNull);
Anders Carlssone828c362009-11-13 04:45:41 +00001781
John McCall8ed55a52010-09-02 09:58:18 +00001782 // We might be deleting a pointer to array. If so, GEP down to the
1783 // first non-array element.
1784 // (this assumes that A(*)[3][7] is converted to [3 x [7 x %A]]*)
1785 QualType DeleteTy = Arg->getType()->getAs<PointerType>()->getPointeeType();
1786 if (DeleteTy->isConstantArrayType()) {
1787 llvm::Value *Zero = Builder.getInt32(0);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001788 SmallVector<llvm::Value*,8> GEP;
John McCall8ed55a52010-09-02 09:58:18 +00001789
1790 GEP.push_back(Zero); // point at the outermost array
1791
1792 // For each layer of array type we're pointing at:
1793 while (const ConstantArrayType *Arr
1794 = getContext().getAsConstantArrayType(DeleteTy)) {
1795 // 1. Unpeel the array type.
1796 DeleteTy = Arr->getElementType();
1797
1798 // 2. GEP to the first element of the array.
1799 GEP.push_back(Zero);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001800 }
John McCall8ed55a52010-09-02 09:58:18 +00001801
John McCall7f416cc2015-09-08 08:05:57 +00001802 Ptr = Address(Builder.CreateInBoundsGEP(Ptr.getPointer(), GEP, "del.first"),
1803 Ptr.getAlignment());
Anders Carlssoncc52f652009-09-22 22:53:17 +00001804 }
1805
John McCall7f416cc2015-09-08 08:05:57 +00001806 assert(ConvertTypeForMem(DeleteTy) == Ptr.getElementType());
John McCall8ed55a52010-09-02 09:58:18 +00001807
Reid Kleckner7270ef52015-03-19 17:03:58 +00001808 if (E->isArrayForm()) {
1809 EmitArrayDelete(*this, E, Ptr, DeleteTy);
1810 } else {
1811 EmitObjectDelete(*this, E, Ptr, DeleteTy);
1812 }
Anders Carlssoncc52f652009-09-22 22:53:17 +00001813
Anders Carlssoncc52f652009-09-22 22:53:17 +00001814 EmitBlock(DeleteEnd);
1815}
Mike Stumpc9b231c2009-11-15 08:09:41 +00001816
David Majnemer1c3d95e2014-07-19 00:17:06 +00001817static bool isGLValueFromPointerDeref(const Expr *E) {
1818 E = E->IgnoreParens();
1819
1820 if (const auto *CE = dyn_cast<CastExpr>(E)) {
1821 if (!CE->getSubExpr()->isGLValue())
1822 return false;
1823 return isGLValueFromPointerDeref(CE->getSubExpr());
1824 }
1825
1826 if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E))
1827 return isGLValueFromPointerDeref(OVE->getSourceExpr());
1828
1829 if (const auto *BO = dyn_cast<BinaryOperator>(E))
1830 if (BO->getOpcode() == BO_Comma)
1831 return isGLValueFromPointerDeref(BO->getRHS());
1832
1833 if (const auto *ACO = dyn_cast<AbstractConditionalOperator>(E))
1834 return isGLValueFromPointerDeref(ACO->getTrueExpr()) ||
1835 isGLValueFromPointerDeref(ACO->getFalseExpr());
1836
1837 // C++11 [expr.sub]p1:
1838 // The expression E1[E2] is identical (by definition) to *((E1)+(E2))
1839 if (isa<ArraySubscriptExpr>(E))
1840 return true;
1841
1842 if (const auto *UO = dyn_cast<UnaryOperator>(E))
1843 if (UO->getOpcode() == UO_Deref)
1844 return true;
1845
1846 return false;
1847}
1848
Warren Hunt747e3012014-06-18 21:15:55 +00001849static llvm::Value *EmitTypeidFromVTable(CodeGenFunction &CGF, const Expr *E,
Chris Lattner2192fe52011-07-18 04:24:23 +00001850 llvm::Type *StdTypeInfoPtrTy) {
Anders Carlsson940f02d2011-04-18 00:57:03 +00001851 // Get the vtable pointer.
John McCall7f416cc2015-09-08 08:05:57 +00001852 Address ThisPtr = CGF.EmitLValue(E).getAddress();
Anders Carlsson940f02d2011-04-18 00:57:03 +00001853
1854 // C++ [expr.typeid]p2:
1855 // If the glvalue expression is obtained by applying the unary * operator to
1856 // a pointer and the pointer is a null pointer value, the typeid expression
1857 // throws the std::bad_typeid exception.
David Majnemer1c3d95e2014-07-19 00:17:06 +00001858 //
1859 // However, this paragraph's intent is not clear. We choose a very generous
1860 // interpretation which implores us to consider comma operators, conditional
1861 // operators, parentheses and other such constructs.
David Majnemer1162d252014-06-22 19:05:33 +00001862 QualType SrcRecordTy = E->getType();
David Majnemer1c3d95e2014-07-19 00:17:06 +00001863 if (CGF.CGM.getCXXABI().shouldTypeidBeNullChecked(
1864 isGLValueFromPointerDeref(E), SrcRecordTy)) {
David Majnemer1162d252014-06-22 19:05:33 +00001865 llvm::BasicBlock *BadTypeidBlock =
Anders Carlsson940f02d2011-04-18 00:57:03 +00001866 CGF.createBasicBlock("typeid.bad_typeid");
David Majnemer1162d252014-06-22 19:05:33 +00001867 llvm::BasicBlock *EndBlock = CGF.createBasicBlock("typeid.end");
Anders Carlsson940f02d2011-04-18 00:57:03 +00001868
John McCall7f416cc2015-09-08 08:05:57 +00001869 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ThisPtr.getPointer());
David Majnemer1162d252014-06-22 19:05:33 +00001870 CGF.Builder.CreateCondBr(IsNull, BadTypeidBlock, EndBlock);
Anders Carlsson940f02d2011-04-18 00:57:03 +00001871
David Majnemer1162d252014-06-22 19:05:33 +00001872 CGF.EmitBlock(BadTypeidBlock);
1873 CGF.CGM.getCXXABI().EmitBadTypeidCall(CGF);
1874 CGF.EmitBlock(EndBlock);
Anders Carlsson940f02d2011-04-18 00:57:03 +00001875 }
1876
David Majnemer1162d252014-06-22 19:05:33 +00001877 return CGF.CGM.getCXXABI().EmitTypeid(CGF, SrcRecordTy, ThisPtr,
1878 StdTypeInfoPtrTy);
Anders Carlsson940f02d2011-04-18 00:57:03 +00001879}
1880
John McCalle4df6c82011-01-28 08:37:24 +00001881llvm::Value *CodeGenFunction::EmitCXXTypeidExpr(const CXXTypeidExpr *E) {
Chris Lattner2192fe52011-07-18 04:24:23 +00001882 llvm::Type *StdTypeInfoPtrTy =
Anders Carlsson940f02d2011-04-18 00:57:03 +00001883 ConvertType(E->getType())->getPointerTo();
Anders Carlssonfd7dfeb2009-12-11 02:46:30 +00001884
Anders Carlsson3f4336c2009-12-17 07:09:17 +00001885 if (E->isTypeOperand()) {
David Majnemer143c55e2013-09-27 07:04:31 +00001886 llvm::Constant *TypeInfo =
1887 CGM.GetAddrOfRTTIDescriptor(E->getTypeOperand(getContext()));
Anders Carlsson940f02d2011-04-18 00:57:03 +00001888 return Builder.CreateBitCast(TypeInfo, StdTypeInfoPtrTy);
Anders Carlsson3f4336c2009-12-17 07:09:17 +00001889 }
Anders Carlsson0c633502011-04-11 14:13:40 +00001890
Anders Carlsson940f02d2011-04-18 00:57:03 +00001891 // C++ [expr.typeid]p2:
1892 // When typeid is applied to a glvalue expression whose type is a
1893 // polymorphic class type, the result refers to a std::type_info object
1894 // representing the type of the most derived object (that is, the dynamic
1895 // type) to which the glvalue refers.
Richard Smithef8bf432012-08-13 20:08:14 +00001896 if (E->isPotentiallyEvaluated())
1897 return EmitTypeidFromVTable(*this, E->getExprOperand(),
1898 StdTypeInfoPtrTy);
Anders Carlsson940f02d2011-04-18 00:57:03 +00001899
1900 QualType OperandTy = E->getExprOperand()->getType();
1901 return Builder.CreateBitCast(CGM.GetAddrOfRTTIDescriptor(OperandTy),
1902 StdTypeInfoPtrTy);
Mike Stumpc9b231c2009-11-15 08:09:41 +00001903}
Mike Stump65511702009-11-16 06:50:58 +00001904
Anders Carlssonc1c99712011-04-11 01:45:29 +00001905static llvm::Value *EmitDynamicCastToNull(CodeGenFunction &CGF,
1906 QualType DestTy) {
Chris Lattner2192fe52011-07-18 04:24:23 +00001907 llvm::Type *DestLTy = CGF.ConvertType(DestTy);
Anders Carlssonc1c99712011-04-11 01:45:29 +00001908 if (DestTy->isPointerType())
1909 return llvm::Constant::getNullValue(DestLTy);
1910
1911 /// C++ [expr.dynamic.cast]p9:
1912 /// A failed cast to reference type throws std::bad_cast
David Majnemer1162d252014-06-22 19:05:33 +00001913 if (!CGF.CGM.getCXXABI().EmitBadCastCall(CGF))
1914 return nullptr;
Anders Carlssonc1c99712011-04-11 01:45:29 +00001915
1916 CGF.EmitBlock(CGF.createBasicBlock("dynamic_cast.end"));
1917 return llvm::UndefValue::get(DestLTy);
1918}
1919
John McCall7f416cc2015-09-08 08:05:57 +00001920llvm::Value *CodeGenFunction::EmitDynamicCast(Address ThisAddr,
Mike Stump65511702009-11-16 06:50:58 +00001921 const CXXDynamicCastExpr *DCE) {
Alexey Bataev2bf9b4c2015-10-20 04:24:12 +00001922 CGM.EmitExplicitCastExprType(DCE, this);
Anders Carlsson3f4336c2009-12-17 07:09:17 +00001923 QualType DestTy = DCE->getTypeAsWritten();
Anders Carlsson882d7902011-04-11 00:46:40 +00001924
Anders Carlssonc1c99712011-04-11 01:45:29 +00001925 if (DCE->isAlwaysNull())
David Majnemer1162d252014-06-22 19:05:33 +00001926 if (llvm::Value *T = EmitDynamicCastToNull(*this, DestTy))
1927 return T;
Anders Carlssonc1c99712011-04-11 01:45:29 +00001928
1929 QualType SrcTy = DCE->getSubExpr()->getType();
1930
David Majnemer1162d252014-06-22 19:05:33 +00001931 // C++ [expr.dynamic.cast]p7:
1932 // If T is "pointer to cv void," then the result is a pointer to the most
1933 // derived object pointed to by v.
1934 const PointerType *DestPTy = DestTy->getAs<PointerType>();
1935
1936 bool isDynamicCastToVoid;
1937 QualType SrcRecordTy;
1938 QualType DestRecordTy;
1939 if (DestPTy) {
1940 isDynamicCastToVoid = DestPTy->getPointeeType()->isVoidType();
1941 SrcRecordTy = SrcTy->castAs<PointerType>()->getPointeeType();
1942 DestRecordTy = DestPTy->getPointeeType();
1943 } else {
1944 isDynamicCastToVoid = false;
1945 SrcRecordTy = SrcTy;
1946 DestRecordTy = DestTy->castAs<ReferenceType>()->getPointeeType();
1947 }
1948
1949 assert(SrcRecordTy->isRecordType() && "source type must be a record type!");
1950
Anders Carlsson882d7902011-04-11 00:46:40 +00001951 // C++ [expr.dynamic.cast]p4:
1952 // If the value of v is a null pointer value in the pointer case, the result
1953 // is the null pointer value of type T.
David Majnemer1162d252014-06-22 19:05:33 +00001954 bool ShouldNullCheckSrcValue =
1955 CGM.getCXXABI().shouldDynamicCastCallBeNullChecked(SrcTy->isPointerType(),
1956 SrcRecordTy);
Craig Topper8a13c412014-05-21 05:09:00 +00001957
1958 llvm::BasicBlock *CastNull = nullptr;
1959 llvm::BasicBlock *CastNotNull = nullptr;
Anders Carlsson882d7902011-04-11 00:46:40 +00001960 llvm::BasicBlock *CastEnd = createBasicBlock("dynamic_cast.end");
Mike Stump65511702009-11-16 06:50:58 +00001961
Anders Carlsson882d7902011-04-11 00:46:40 +00001962 if (ShouldNullCheckSrcValue) {
1963 CastNull = createBasicBlock("dynamic_cast.null");
1964 CastNotNull = createBasicBlock("dynamic_cast.notnull");
1965
John McCall7f416cc2015-09-08 08:05:57 +00001966 llvm::Value *IsNull = Builder.CreateIsNull(ThisAddr.getPointer());
Anders Carlsson882d7902011-04-11 00:46:40 +00001967 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
1968 EmitBlock(CastNotNull);
Mike Stump65511702009-11-16 06:50:58 +00001969 }
1970
John McCall7f416cc2015-09-08 08:05:57 +00001971 llvm::Value *Value;
David Majnemer1162d252014-06-22 19:05:33 +00001972 if (isDynamicCastToVoid) {
John McCall7f416cc2015-09-08 08:05:57 +00001973 Value = CGM.getCXXABI().EmitDynamicCastToVoid(*this, ThisAddr, SrcRecordTy,
David Majnemer1162d252014-06-22 19:05:33 +00001974 DestTy);
1975 } else {
1976 assert(DestRecordTy->isRecordType() &&
1977 "destination type must be a record type!");
John McCall7f416cc2015-09-08 08:05:57 +00001978 Value = CGM.getCXXABI().EmitDynamicCastCall(*this, ThisAddr, SrcRecordTy,
David Majnemer1162d252014-06-22 19:05:33 +00001979 DestTy, DestRecordTy, CastEnd);
David Majnemer67528ea2015-11-23 03:01:14 +00001980 CastNotNull = Builder.GetInsertBlock();
David Majnemer1162d252014-06-22 19:05:33 +00001981 }
Anders Carlsson882d7902011-04-11 00:46:40 +00001982
1983 if (ShouldNullCheckSrcValue) {
1984 EmitBranch(CastEnd);
1985
1986 EmitBlock(CastNull);
1987 EmitBranch(CastEnd);
1988 }
1989
1990 EmitBlock(CastEnd);
1991
1992 if (ShouldNullCheckSrcValue) {
1993 llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
1994 PHI->addIncoming(Value, CastNotNull);
1995 PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), CastNull);
1996
1997 Value = PHI;
1998 }
1999
2000 return Value;
Mike Stump65511702009-11-16 06:50:58 +00002001}
Eli Friedmanc370a7e2012-02-09 03:32:31 +00002002
Eli Friedmanc370a7e2012-02-09 03:32:31 +00002003void CodeGenFunction::EmitLambdaExpr(const LambdaExpr *E, AggValueSlot Slot) {
Eli Friedman8631f3e82012-02-09 03:47:20 +00002004 RunCleanupsScope Scope(*this);
John McCall7f416cc2015-09-08 08:05:57 +00002005 LValue SlotLV = MakeAddrLValue(Slot.getAddress(), E->getType());
Eli Friedman8631f3e82012-02-09 03:47:20 +00002006
Eli Friedmanc370a7e2012-02-09 03:32:31 +00002007 CXXRecordDecl::field_iterator CurField = E->getLambdaClass()->field_begin();
James Y Knight53c76162015-07-17 18:21:37 +00002008 for (LambdaExpr::const_capture_init_iterator i = E->capture_init_begin(),
2009 e = E->capture_init_end();
Eric Christopherd47e0862012-02-29 03:25:18 +00002010 i != e; ++i, ++CurField) {
Eli Friedmanc370a7e2012-02-09 03:32:31 +00002011 // Emit initialization
David Blaikie40ed2972012-06-06 20:45:41 +00002012 LValue LV = EmitLValueForFieldInitialization(SlotLV, *CurField);
Alexey Bataev39c81e22014-08-28 04:28:19 +00002013 if (CurField->hasCapturedVLAType()) {
2014 auto VAT = CurField->getCapturedVLAType();
2015 EmitStoreThroughLValue(RValue::get(VLASizeMap[VAT->getSizeExpr()]), LV);
2016 } else {
2017 ArrayRef<VarDecl *> ArrayIndexes;
2018 if (CurField->getType()->isArrayType())
2019 ArrayIndexes = E->getCaptureInitIndexVars(i);
2020 EmitInitializerForField(*CurField, LV, *i, ArrayIndexes);
2021 }
Eli Friedmanc370a7e2012-02-09 03:32:31 +00002022 }
Eli Friedmanc370a7e2012-02-09 03:32:31 +00002023}