blob: 1dfe437c339283e96329a9ab2e3a6e3a808ec9e9 [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,
31 CallArgList &Args) {
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.
Alexey Samsonov8e1162c2014-09-08 17:22:45 +000064 if (CE) {
Alexey Samsonova5bf76b2014-08-25 20:17:35 +000065 // Special case: skip first argument of CXXOperatorCall (it is "this").
Alexey Samsonov8e1162c2014-09-08 17:22:45 +000066 unsigned ArgsToSkip = isa<CXXOperatorCallExpr>(CE) ? 1 : 0;
David Blaikief05779e2015-07-21 18:37:18 +000067 CGF.EmitCallArgs(Args, FPT, drop_begin(CE->arguments(), ArgsToSkip),
David Majnemer0c0b6d92014-10-31 20:09:12 +000068 CE->getDirectCallee());
Alexey Samsonova5bf76b2014-08-25 20:17:35 +000069 } else {
Alexey Samsonov8e1162c2014-09-08 17:22:45 +000070 assert(
71 FPT->getNumParams() == 0 &&
72 "No CallExpr specified for function with non-zero number of arguments");
Alexey Samsonova5bf76b2014-08-25 20:17:35 +000073 }
David Majnemer0c0b6d92014-10-31 20:09:12 +000074 return required;
75}
Anders Carlsson27da15b2010-01-01 20:29:01 +000076
David Majnemer0c0b6d92014-10-31 20:09:12 +000077RValue CodeGenFunction::EmitCXXMemberOrOperatorCall(
78 const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue,
79 llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy,
80 const CallExpr *CE) {
81 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
82 CallArgList Args;
83 RequiredArgs required = commonEmitCXXMemberOrOperatorCall(
Alexey Samsonovefa956c2016-03-10 00:20:33 +000084 *this, MD, This, ImplicitParam, ImplicitParamTy, CE, Args);
John McCall8dda7b22012-07-07 06:41:13 +000085 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
Rafael Espindolac50c27c2010-03-30 20:24:48 +000086 Callee, ReturnValue, Args, MD);
Anders Carlsson27da15b2010-01-01 20:29:01 +000087}
88
Alexey Samsonovae81bbb2016-03-10 00:20:37 +000089RValue CodeGenFunction::EmitCXXDestructorCall(
90 const CXXDestructorDecl *DD, llvm::Value *Callee, llvm::Value *This,
91 llvm::Value *ImplicitParam, QualType ImplicitParamTy, const CallExpr *CE,
92 StructorType Type) {
David Majnemer0c0b6d92014-10-31 20:09:12 +000093 CallArgList Args;
Alexey Samsonovae81bbb2016-03-10 00:20:37 +000094 commonEmitCXXMemberOrOperatorCall(*this, DD, This, ImplicitParam,
Alexey Samsonovefa956c2016-03-10 00:20:33 +000095 ImplicitParamTy, CE, Args);
Alexey Samsonovae81bbb2016-03-10 00:20:37 +000096 return EmitCall(CGM.getTypes().arrangeCXXStructorDeclaration(DD, Type),
97 Callee, ReturnValueSlot(), Args, DD);
David Majnemer0c0b6d92014-10-31 20:09:12 +000098}
99
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000100static CXXRecordDecl *getCXXRecord(const Expr *E) {
101 QualType T = E->getType();
102 if (const PointerType *PTy = T->getAs<PointerType>())
103 T = PTy->getPointeeType();
104 const RecordType *Ty = T->castAs<RecordType>();
105 return cast<CXXRecordDecl>(Ty->getDecl());
106}
107
Francois Pichet64225792011-01-18 05:04:39 +0000108// Note: This function also emit constructor calls to support a MSVC
109// extensions allowing explicit constructor function call.
Anders Carlsson27da15b2010-01-01 20:29:01 +0000110RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE,
111 ReturnValueSlot ReturnValue) {
John McCall2d2e8702011-04-11 07:02:50 +0000112 const Expr *callee = CE->getCallee()->IgnoreParens();
113
114 if (isa<BinaryOperator>(callee))
Anders Carlsson27da15b2010-01-01 20:29:01 +0000115 return EmitCXXMemberPointerCallExpr(CE, ReturnValue);
John McCall2d2e8702011-04-11 07:02:50 +0000116
117 const MemberExpr *ME = cast<MemberExpr>(callee);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000118 const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl());
119
120 if (MD->isStatic()) {
121 // The method is static, emit it as we would a regular call.
122 llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
Alexey Samsonov70b9c012014-08-21 20:26:47 +0000123 return EmitCall(getContext().getPointerType(MD->getType()), Callee, CE,
124 ReturnValue);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000125 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000126
Nico Weberaad4af62014-12-03 01:21:41 +0000127 bool HasQualifier = ME->hasQualifier();
128 NestedNameSpecifier *Qualifier = HasQualifier ? ME->getQualifier() : nullptr;
129 bool IsArrow = ME->isArrow();
Rafael Espindolaecbe2e92012-06-28 01:56:38 +0000130 const Expr *Base = ME->getBase();
Nico Weberaad4af62014-12-03 01:21:41 +0000131
132 return EmitCXXMemberOrOperatorMemberCallExpr(
133 CE, MD, ReturnValue, HasQualifier, Qualifier, IsArrow, Base);
134}
135
136RValue CodeGenFunction::EmitCXXMemberOrOperatorMemberCallExpr(
137 const CallExpr *CE, const CXXMethodDecl *MD, ReturnValueSlot ReturnValue,
138 bool HasQualifier, NestedNameSpecifier *Qualifier, bool IsArrow,
139 const Expr *Base) {
140 assert(isa<CXXMemberCallExpr>(CE) || isa<CXXOperatorCallExpr>(CE));
141
142 // Compute the object pointer.
143 bool CanUseVirtualCall = MD->isVirtual() && !HasQualifier;
Rafael Espindolaecbe2e92012-06-28 01:56:38 +0000144
Craig Topper8a13c412014-05-21 05:09:00 +0000145 const CXXMethodDecl *DevirtualizedMethod = nullptr;
Benjamin Kramer7463ed72013-08-25 22:46:27 +0000146 if (CanUseVirtualCall && CanDevirtualizeMemberFunctionCall(Base, MD)) {
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000147 const CXXRecordDecl *BestDynamicDecl = Base->getBestDynamicClassType();
148 DevirtualizedMethod = MD->getCorrespondingMethodInClass(BestDynamicDecl);
149 assert(DevirtualizedMethod);
150 const CXXRecordDecl *DevirtualizedClass = DevirtualizedMethod->getParent();
151 const Expr *Inner = Base->ignoreParenBaseCasts();
Alexey Bataev5bd68792014-09-29 10:32:21 +0000152 if (DevirtualizedMethod->getReturnType().getCanonicalType() !=
153 MD->getReturnType().getCanonicalType())
154 // If the return types are not the same, this might be a case where more
155 // code needs to run to compensate for it. For example, the derived
156 // method might return a type that inherits form from the return
157 // type of MD and has a prefix.
158 // For now we just avoid devirtualizing these covariant cases.
159 DevirtualizedMethod = nullptr;
160 else if (getCXXRecord(Inner) == DevirtualizedClass)
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000161 // If the class of the Inner expression is where the dynamic method
162 // is defined, build the this pointer from it.
163 Base = Inner;
164 else if (getCXXRecord(Base) != DevirtualizedClass) {
165 // If the method is defined in a class that is not the best dynamic
166 // one or the one of the full expression, we would have to build
167 // a derived-to-base cast to compute the correct this pointer, but
168 // we don't have support for that yet, so do a virtual call.
Craig Topper8a13c412014-05-21 05:09:00 +0000169 DevirtualizedMethod = nullptr;
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000170 }
171 }
Rafael Espindolaecbe2e92012-06-28 01:56:38 +0000172
John McCall7f416cc2015-09-08 08:05:57 +0000173 Address This = Address::invalid();
Nico Weberaad4af62014-12-03 01:21:41 +0000174 if (IsArrow)
John McCall7f416cc2015-09-08 08:05:57 +0000175 This = EmitPointerWithAlignment(Base);
John McCalle26a8722010-12-04 08:14:53 +0000176 else
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000177 This = EmitLValue(Base).getAddress();
Rafael Espindolaecbe2e92012-06-28 01:56:38 +0000178
Anders Carlsson27da15b2010-01-01 20:29:01 +0000179
Richard Smith419bd092015-04-29 19:26:57 +0000180 if (MD->isTrivial() || (MD->isDefaulted() && MD->getParent()->isUnion())) {
Craig Topper8a13c412014-05-21 05:09:00 +0000181 if (isa<CXXDestructorDecl>(MD)) return RValue::get(nullptr);
Francois Pichet64225792011-01-18 05:04:39 +0000182 if (isa<CXXConstructorDecl>(MD) &&
183 cast<CXXConstructorDecl>(MD)->isDefaultConstructor())
Craig Topper8a13c412014-05-21 05:09:00 +0000184 return RValue::get(nullptr);
John McCall0d635f52010-09-03 01:26:39 +0000185
Nico Weberaad4af62014-12-03 01:21:41 +0000186 if (!MD->getParent()->mayInsertExtraPadding()) {
187 if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) {
188 // We don't like to generate the trivial copy/move assignment operator
189 // when it isn't necessary; just produce the proper effect here.
190 // Special case: skip first argument of CXXOperatorCall (it is "this").
191 unsigned ArgsToSkip = isa<CXXOperatorCallExpr>(CE) ? 1 : 0;
John McCall7f416cc2015-09-08 08:05:57 +0000192 Address RHS = EmitLValue(*(CE->arg_begin() + ArgsToSkip)).getAddress();
Nico Weberaad4af62014-12-03 01:21:41 +0000193 EmitAggregateAssign(This, RHS, CE->getType());
John McCall7f416cc2015-09-08 08:05:57 +0000194 return RValue::get(This.getPointer());
Nico Weberaad4af62014-12-03 01:21:41 +0000195 }
Alexey Samsonov525bf652014-08-25 21:58:56 +0000196
Nico Weberaad4af62014-12-03 01:21:41 +0000197 if (isa<CXXConstructorDecl>(MD) &&
198 cast<CXXConstructorDecl>(MD)->isCopyOrMoveConstructor()) {
199 // Trivial move and copy ctor are the same.
200 assert(CE->getNumArgs() == 1 && "unexpected argcount for trivial ctor");
John McCall7f416cc2015-09-08 08:05:57 +0000201 Address RHS = EmitLValue(*CE->arg_begin()).getAddress();
Benjamin Kramerf48ee442015-07-18 14:35:53 +0000202 EmitAggregateCopy(This, RHS, (*CE->arg_begin())->getType());
John McCall7f416cc2015-09-08 08:05:57 +0000203 return RValue::get(This.getPointer());
Nico Weberaad4af62014-12-03 01:21:41 +0000204 }
205 llvm_unreachable("unknown trivial member function");
Francois Pichet64225792011-01-18 05:04:39 +0000206 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000207 }
208
John McCall0d635f52010-09-03 01:26:39 +0000209 // Compute the function type we're calling.
Nico Weber3abfe952014-12-02 20:41:18 +0000210 const CXXMethodDecl *CalleeDecl =
211 DevirtualizedMethod ? DevirtualizedMethod : MD;
Craig Topper8a13c412014-05-21 05:09:00 +0000212 const CGFunctionInfo *FInfo = nullptr;
Nico Weber3abfe952014-12-02 20:41:18 +0000213 if (const auto *Dtor = dyn_cast<CXXDestructorDecl>(CalleeDecl))
Rafael Espindola8d2a19b2014-09-08 16:01:27 +0000214 FInfo = &CGM.getTypes().arrangeCXXStructorDeclaration(
215 Dtor, StructorType::Complete);
Nico Weber3abfe952014-12-02 20:41:18 +0000216 else if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(CalleeDecl))
Rafael Espindola8d2a19b2014-09-08 16:01:27 +0000217 FInfo = &CGM.getTypes().arrangeCXXStructorDeclaration(
218 Ctor, StructorType::Complete);
Francois Pichet64225792011-01-18 05:04:39 +0000219 else
Eli Friedmanade60972012-10-25 00:12:49 +0000220 FInfo = &CGM.getTypes().arrangeCXXMethodDeclaration(CalleeDecl);
John McCall0d635f52010-09-03 01:26:39 +0000221
Reid Klecknere7de47e2013-07-22 13:51:44 +0000222 llvm::FunctionType *Ty = CGM.getTypes().GetFunctionType(*FInfo);
John McCall0d635f52010-09-03 01:26:39 +0000223
Anders Carlsson27da15b2010-01-01 20:29:01 +0000224 // C++ [class.virtual]p12:
225 // Explicit qualification with the scope operator (5.1) suppresses the
226 // virtual call mechanism.
227 //
228 // We also don't emit a virtual call if the base expression has a record type
229 // because then we know what the type is.
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000230 bool UseVirtualCall = CanUseVirtualCall && !DevirtualizedMethod;
Stephen Lin19cee182013-06-19 23:23:19 +0000231 llvm::Value *Callee;
Stephen Lin9dc6eef2013-06-30 20:40:16 +0000232
John McCall0d635f52010-09-03 01:26:39 +0000233 if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(MD)) {
Stephen Lin9dc6eef2013-06-30 20:40:16 +0000234 assert(CE->arg_begin() == CE->arg_end() &&
235 "Destructor shouldn't have explicit parameters");
236 assert(ReturnValue.isNull() && "Destructor shouldn't have return value");
John McCall0d635f52010-09-03 01:26:39 +0000237 if (UseVirtualCall) {
Nico Weberaad4af62014-12-03 01:21:41 +0000238 CGM.getCXXABI().EmitVirtualDestructorCall(
239 *this, Dtor, Dtor_Complete, This, cast<CXXMemberCallExpr>(CE));
Anders Carlsson27da15b2010-01-01 20:29:01 +0000240 } else {
Nico Weberaad4af62014-12-03 01:21:41 +0000241 if (getLangOpts().AppleKext && MD->isVirtual() && HasQualifier)
242 Callee = BuildAppleKextVirtualCall(MD, Qualifier, Ty);
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000243 else if (!DevirtualizedMethod)
Rafael Espindola1ac0ec82014-09-11 15:42:06 +0000244 Callee =
245 CGM.getAddrOfCXXStructor(Dtor, StructorType::Complete, FInfo, Ty);
Rafael Espindola49e860b2012-06-26 17:45:31 +0000246 else {
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000247 const CXXDestructorDecl *DDtor =
248 cast<CXXDestructorDecl>(DevirtualizedMethod);
Rafael Espindola49e860b2012-06-26 17:45:31 +0000249 Callee = CGM.GetAddrOfFunction(GlobalDecl(DDtor, Dtor_Complete), Ty);
250 }
John McCall7f416cc2015-09-08 08:05:57 +0000251 EmitCXXMemberOrOperatorCall(MD, Callee, ReturnValue, This.getPointer(),
Alexey Samsonova5bf76b2014-08-25 20:17:35 +0000252 /*ImplicitParam=*/nullptr, QualType(), CE);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000253 }
Craig Topper8a13c412014-05-21 05:09:00 +0000254 return RValue::get(nullptr);
Stephen Lin9dc6eef2013-06-30 20:40:16 +0000255 }
256
257 if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) {
Francois Pichet64225792011-01-18 05:04:39 +0000258 Callee = CGM.GetAddrOfFunction(GlobalDecl(Ctor, Ctor_Complete), Ty);
John McCall0d635f52010-09-03 01:26:39 +0000259 } else if (UseVirtualCall) {
Peter Collingbourne6708c4a2015-06-19 01:51:54 +0000260 Callee = CGM.getCXXABI().getVirtualFunctionPointer(*this, MD, This, Ty,
261 CE->getLocStart());
Anders Carlsson27da15b2010-01-01 20:29:01 +0000262 } else {
Peter Collingbourne1a7488a2015-04-02 00:23:30 +0000263 if (SanOpts.has(SanitizerKind::CFINVCall) &&
264 MD->getParent()->isDynamicClass()) {
Piotr Padlewski4b1ac722015-09-15 21:46:55 +0000265 llvm::Value *VTable = GetVTablePtr(This, Int8PtrTy, MD->getParent());
Peter Collingbournefb532b92016-02-24 20:46:36 +0000266 EmitVTablePtrCheckForCall(MD->getParent(), VTable, CFITCK_NVCall,
267 CE->getLocStart());
Peter Collingbourne1a7488a2015-04-02 00:23:30 +0000268 }
269
Nico Weberaad4af62014-12-03 01:21:41 +0000270 if (getLangOpts().AppleKext && MD->isVirtual() && HasQualifier)
271 Callee = BuildAppleKextVirtualCall(MD, Qualifier, Ty);
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000272 else if (!DevirtualizedMethod)
Rafael Espindola727a7712012-06-26 19:18:25 +0000273 Callee = CGM.GetAddrOfFunction(MD, Ty);
Rafael Espindola49e860b2012-06-26 17:45:31 +0000274 else {
Rafael Espindola3b33c4e2012-06-28 14:28:57 +0000275 Callee = CGM.GetAddrOfFunction(DevirtualizedMethod, Ty);
Rafael Espindola49e860b2012-06-26 17:45:31 +0000276 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000277 }
278
Timur Iskhodzhanovf1749422014-03-14 17:43:37 +0000279 if (MD->isVirtual()) {
280 This = CGM.getCXXABI().adjustThisArgumentForVirtualFunctionCall(
Reid Kleckner4b60f302016-05-03 18:44:29 +0000281 *this, CalleeDecl, This, UseVirtualCall);
Timur Iskhodzhanovf1749422014-03-14 17:43:37 +0000282 }
Timur Iskhodzhanov88fd4392013-08-21 06:25:03 +0000283
John McCall7f416cc2015-09-08 08:05:57 +0000284 return EmitCXXMemberOrOperatorCall(MD, Callee, ReturnValue, This.getPointer(),
Alexey Samsonova5bf76b2014-08-25 20:17:35 +0000285 /*ImplicitParam=*/nullptr, QualType(), CE);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000286}
287
288RValue
289CodeGenFunction::EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E,
290 ReturnValueSlot ReturnValue) {
291 const BinaryOperator *BO =
292 cast<BinaryOperator>(E->getCallee()->IgnoreParens());
293 const Expr *BaseExpr = BO->getLHS();
294 const Expr *MemFnExpr = BO->getRHS();
295
296 const MemberPointerType *MPT =
John McCall0009fcc2011-04-26 20:42:42 +0000297 MemFnExpr->getType()->castAs<MemberPointerType>();
John McCall475999d2010-08-22 00:05:51 +0000298
Anders Carlsson27da15b2010-01-01 20:29:01 +0000299 const FunctionProtoType *FPT =
John McCall0009fcc2011-04-26 20:42:42 +0000300 MPT->getPointeeType()->castAs<FunctionProtoType>();
Anders Carlsson27da15b2010-01-01 20:29:01 +0000301 const CXXRecordDecl *RD =
302 cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl());
303
Anders Carlsson27da15b2010-01-01 20:29:01 +0000304 // Emit the 'this' pointer.
John McCall7f416cc2015-09-08 08:05:57 +0000305 Address This = Address::invalid();
John McCalle3027922010-08-25 11:45:40 +0000306 if (BO->getOpcode() == BO_PtrMemI)
John McCall7f416cc2015-09-08 08:05:57 +0000307 This = EmitPointerWithAlignment(BaseExpr);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000308 else
309 This = EmitLValue(BaseExpr).getAddress();
Anders Carlsson27da15b2010-01-01 20:29:01 +0000310
John McCall7f416cc2015-09-08 08:05:57 +0000311 EmitTypeCheck(TCK_MemberCall, E->getExprLoc(), This.getPointer(),
Richard Smithe30752c2012-10-09 19:52:38 +0000312 QualType(MPT->getClass(), 0));
Richard Smith69d0d262012-08-24 00:54:33 +0000313
Richard Smithbde62d72016-09-26 23:56:57 +0000314 // Get the member function pointer.
315 llvm::Value *MemFnPtr = EmitScalarExpr(MemFnExpr);
316
John McCall475999d2010-08-22 00:05:51 +0000317 // Ask the ABI to load the callee. Note that This is modified.
John McCall7f416cc2015-09-08 08:05:57 +0000318 llvm::Value *ThisPtrForCall = nullptr;
John McCall475999d2010-08-22 00:05:51 +0000319 llvm::Value *Callee =
John McCall7f416cc2015-09-08 08:05:57 +0000320 CGM.getCXXABI().EmitLoadOfMemberFunctionPointer(*this, BO, This,
321 ThisPtrForCall, MemFnPtr, MPT);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000322
Anders Carlsson27da15b2010-01-01 20:29:01 +0000323 CallArgList Args;
324
325 QualType ThisType =
326 getContext().getPointerType(getContext().getTagDeclType(RD));
327
328 // Push the this ptr.
John McCall7f416cc2015-09-08 08:05:57 +0000329 Args.add(RValue::get(ThisPtrForCall), ThisType);
John McCall8dda7b22012-07-07 06:41:13 +0000330
George Burgess IV419996c2016-06-16 23:06:04 +0000331 RequiredArgs required =
332 RequiredArgs::forPrototypePlus(FPT, 1, /*FD=*/nullptr);
333
Anders Carlsson27da15b2010-01-01 20:29:01 +0000334 // And the rest of the call args
George Burgess IV419996c2016-06-16 23:06:04 +0000335 EmitCallArgs(Args, FPT, E->arguments());
Nick Lewycky5fa40c32013-10-01 21:51:38 +0000336 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
337 Callee, ReturnValue, Args);
Anders Carlsson27da15b2010-01-01 20:29:01 +0000338}
339
340RValue
341CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
342 const CXXMethodDecl *MD,
343 ReturnValueSlot ReturnValue) {
344 assert(MD->isInstance() &&
345 "Trying to emit a member call expr on a static method!");
Nico Weberaad4af62014-12-03 01:21:41 +0000346 return EmitCXXMemberOrOperatorMemberCallExpr(
347 E, MD, ReturnValue, /*HasQualifier=*/false, /*Qualifier=*/nullptr,
348 /*IsArrow=*/false, E->getArg(0));
Anders Carlsson27da15b2010-01-01 20:29:01 +0000349}
350
Peter Collingbournefe883422011-10-06 18:29:37 +0000351RValue CodeGenFunction::EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E,
352 ReturnValueSlot ReturnValue) {
353 return CGM.getCUDARuntime().EmitCUDAKernelCallExpr(*this, E, ReturnValue);
354}
355
Eli Friedmanfde961d2011-10-14 02:27:24 +0000356static void EmitNullBaseClassInitialization(CodeGenFunction &CGF,
John McCall7f416cc2015-09-08 08:05:57 +0000357 Address DestPtr,
Eli Friedmanfde961d2011-10-14 02:27:24 +0000358 const CXXRecordDecl *Base) {
359 if (Base->isEmpty())
360 return;
361
John McCall7f416cc2015-09-08 08:05:57 +0000362 DestPtr = CGF.Builder.CreateElementBitCast(DestPtr, CGF.Int8Ty);
Eli Friedmanfde961d2011-10-14 02:27:24 +0000363
364 const ASTRecordLayout &Layout = CGF.getContext().getASTRecordLayout(Base);
David Majnemer8671c6e2015-11-02 09:01:44 +0000365 CharUnits NVSize = Layout.getNonVirtualSize();
366
367 // We cannot simply zero-initialize the entire base sub-object if vbptrs are
368 // present, they are initialized by the most derived class before calling the
369 // constructor.
370 SmallVector<std::pair<CharUnits, CharUnits>, 1> Stores;
371 Stores.emplace_back(CharUnits::Zero(), NVSize);
372
373 // Each store is split by the existence of a vbptr.
374 CharUnits VBPtrWidth = CGF.getPointerSize();
375 std::vector<CharUnits> VBPtrOffsets =
376 CGF.CGM.getCXXABI().getVBPtrOffsets(Base);
377 for (CharUnits VBPtrOffset : VBPtrOffsets) {
David Majnemer7f980d82016-05-12 03:51:52 +0000378 // Stop before we hit any virtual base pointers located in virtual bases.
379 if (VBPtrOffset >= NVSize)
380 break;
David Majnemer8671c6e2015-11-02 09:01:44 +0000381 std::pair<CharUnits, CharUnits> LastStore = Stores.pop_back_val();
382 CharUnits LastStoreOffset = LastStore.first;
383 CharUnits LastStoreSize = LastStore.second;
384
385 CharUnits SplitBeforeOffset = LastStoreOffset;
386 CharUnits SplitBeforeSize = VBPtrOffset - SplitBeforeOffset;
387 assert(!SplitBeforeSize.isNegative() && "negative store size!");
388 if (!SplitBeforeSize.isZero())
389 Stores.emplace_back(SplitBeforeOffset, SplitBeforeSize);
390
391 CharUnits SplitAfterOffset = VBPtrOffset + VBPtrWidth;
392 CharUnits SplitAfterSize = LastStoreSize - SplitAfterOffset;
393 assert(!SplitAfterSize.isNegative() && "negative store size!");
394 if (!SplitAfterSize.isZero())
395 Stores.emplace_back(SplitAfterOffset, SplitAfterSize);
396 }
Eli Friedmanfde961d2011-10-14 02:27:24 +0000397
398 // If the type contains a pointer to data member we can't memset it to zero.
399 // Instead, create a null constant and copy it to the destination.
400 // TODO: there are other patterns besides zero that we can usefully memset,
401 // like -1, which happens to be the pattern used by member-pointers.
402 // TODO: isZeroInitializable can be over-conservative in the case where a
403 // virtual base contains a member pointer.
David Majnemer8671c6e2015-11-02 09:01:44 +0000404 llvm::Constant *NullConstantForBase = CGF.CGM.EmitNullConstantForBase(Base);
405 if (!NullConstantForBase->isNullValue()) {
406 llvm::GlobalVariable *NullVariable = new llvm::GlobalVariable(
407 CGF.CGM.getModule(), NullConstantForBase->getType(),
408 /*isConstant=*/true, llvm::GlobalVariable::PrivateLinkage,
409 NullConstantForBase, Twine());
John McCall7f416cc2015-09-08 08:05:57 +0000410
411 CharUnits Align = std::max(Layout.getNonVirtualAlignment(),
412 DestPtr.getAlignment());
Eli Friedmanfde961d2011-10-14 02:27:24 +0000413 NullVariable->setAlignment(Align.getQuantity());
John McCall7f416cc2015-09-08 08:05:57 +0000414
415 Address SrcPtr = Address(CGF.EmitCastToVoidPtr(NullVariable), Align);
Eli Friedmanfde961d2011-10-14 02:27:24 +0000416
417 // Get and call the appropriate llvm.memcpy overload.
David Majnemer8671c6e2015-11-02 09:01:44 +0000418 for (std::pair<CharUnits, CharUnits> Store : Stores) {
419 CharUnits StoreOffset = Store.first;
420 CharUnits StoreSize = Store.second;
421 llvm::Value *StoreSizeVal = CGF.CGM.getSize(StoreSize);
422 CGF.Builder.CreateMemCpy(
423 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset),
424 CGF.Builder.CreateConstInBoundsByteGEP(SrcPtr, StoreOffset),
425 StoreSizeVal);
426 }
427
Eli Friedmanfde961d2011-10-14 02:27:24 +0000428 // Otherwise, just memset the whole thing to zero. This is legal
429 // because in LLVM, all default initializers (other than the ones we just
430 // handled above) are guaranteed to have a bit pattern of all zeros.
David Majnemer8671c6e2015-11-02 09:01:44 +0000431 } else {
432 for (std::pair<CharUnits, CharUnits> Store : Stores) {
433 CharUnits StoreOffset = Store.first;
434 CharUnits StoreSize = Store.second;
435 llvm::Value *StoreSizeVal = CGF.CGM.getSize(StoreSize);
436 CGF.Builder.CreateMemSet(
437 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset),
438 CGF.Builder.getInt8(0), StoreSizeVal);
439 }
440 }
Eli Friedmanfde961d2011-10-14 02:27:24 +0000441}
442
Anders Carlsson27da15b2010-01-01 20:29:01 +0000443void
John McCall7a626f62010-09-15 10:14:12 +0000444CodeGenFunction::EmitCXXConstructExpr(const CXXConstructExpr *E,
445 AggValueSlot Dest) {
446 assert(!Dest.isIgnored() && "Must have a destination!");
Anders Carlsson27da15b2010-01-01 20:29:01 +0000447 const CXXConstructorDecl *CD = E->getConstructor();
Douglas Gregor630c76e2010-08-22 16:15:35 +0000448
449 // If we require zero initialization before (or instead of) calling the
450 // constructor, as can be the case with a non-user-provided default
Argyrios Kyrtzidis03535262011-04-28 22:57:55 +0000451 // constructor, emit the zero initialization now, unless destination is
452 // already zeroed.
Eli Friedmanfde961d2011-10-14 02:27:24 +0000453 if (E->requiresZeroInitialization() && !Dest.isZeroed()) {
454 switch (E->getConstructionKind()) {
455 case CXXConstructExpr::CK_Delegating:
Eli Friedmanfde961d2011-10-14 02:27:24 +0000456 case CXXConstructExpr::CK_Complete:
John McCall7f416cc2015-09-08 08:05:57 +0000457 EmitNullInitialization(Dest.getAddress(), E->getType());
Eli Friedmanfde961d2011-10-14 02:27:24 +0000458 break;
459 case CXXConstructExpr::CK_VirtualBase:
460 case CXXConstructExpr::CK_NonVirtualBase:
John McCall7f416cc2015-09-08 08:05:57 +0000461 EmitNullBaseClassInitialization(*this, Dest.getAddress(),
462 CD->getParent());
Eli Friedmanfde961d2011-10-14 02:27:24 +0000463 break;
464 }
465 }
Douglas Gregor630c76e2010-08-22 16:15:35 +0000466
467 // If this is a call to a trivial default constructor, do nothing.
468 if (CD->isTrivial() && CD->isDefaultConstructor())
469 return;
470
John McCall8ea46b62010-09-18 00:58:34 +0000471 // Elide the constructor if we're constructing from a temporary.
472 // The temporary check is required because Sema sets this on NRVO
473 // returns.
Richard Smith9c6890a2012-11-01 22:30:59 +0000474 if (getLangOpts().ElideConstructors && E->isElidable()) {
John McCall8ea46b62010-09-18 00:58:34 +0000475 assert(getContext().hasSameUnqualifiedType(E->getType(),
476 E->getArg(0)->getType()));
John McCall7a626f62010-09-15 10:14:12 +0000477 if (E->getArg(0)->isTemporaryObject(getContext(), CD->getParent())) {
478 EmitAggExpr(E->getArg(0), Dest);
Douglas Gregor222cf0e2010-05-15 00:13:29 +0000479 return;
480 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000481 }
Douglas Gregor630c76e2010-08-22 16:15:35 +0000482
Alexey Bataeve7545b32016-04-29 09:39:50 +0000483 if (const ArrayType *arrayType
484 = getContext().getAsArrayType(E->getType())) {
John McCall7f416cc2015-09-08 08:05:57 +0000485 EmitCXXAggrConstructorCall(CD, arrayType, Dest.getAddress(), E);
John McCallf677a8e2011-07-13 06:10:41 +0000486 } else {
Cameron Esfahanibceca202011-05-06 21:28:42 +0000487 CXXCtorType Type = Ctor_Complete;
Alexis Hunt271c3682011-05-03 20:19:28 +0000488 bool ForVirtualBase = false;
Douglas Gregor61535002013-01-31 05:50:40 +0000489 bool Delegating = false;
490
Alexis Hunt271c3682011-05-03 20:19:28 +0000491 switch (E->getConstructionKind()) {
492 case CXXConstructExpr::CK_Delegating:
Alexis Hunt61bc1732011-05-01 07:04:31 +0000493 // We should be emitting a constructor; GlobalDecl will assert this
494 Type = CurGD.getCtorType();
Douglas Gregor61535002013-01-31 05:50:40 +0000495 Delegating = true;
Alexis Hunt271c3682011-05-03 20:19:28 +0000496 break;
Alexis Hunt61bc1732011-05-01 07:04:31 +0000497
Alexis Hunt271c3682011-05-03 20:19:28 +0000498 case CXXConstructExpr::CK_Complete:
499 Type = Ctor_Complete;
500 break;
501
502 case CXXConstructExpr::CK_VirtualBase:
503 ForVirtualBase = true;
504 // fall-through
505
506 case CXXConstructExpr::CK_NonVirtualBase:
507 Type = Ctor_Base;
508 }
Anders Carlssone11f9ce2010-05-02 23:20:53 +0000509
Anders Carlsson27da15b2010-01-01 20:29:01 +0000510 // Call the constructor.
John McCall7f416cc2015-09-08 08:05:57 +0000511 EmitCXXConstructorCall(CD, Type, ForVirtualBase, Delegating,
512 Dest.getAddress(), E);
Anders Carlssone11f9ce2010-05-02 23:20:53 +0000513 }
Anders Carlsson27da15b2010-01-01 20:29:01 +0000514}
515
John McCall7f416cc2015-09-08 08:05:57 +0000516void CodeGenFunction::EmitSynthesizedCXXCopyCtor(Address Dest, Address Src,
517 const Expr *Exp) {
John McCall5d413782010-12-06 08:20:24 +0000518 if (const ExprWithCleanups *E = dyn_cast<ExprWithCleanups>(Exp))
Fariborz Jahaniane988bda2010-11-13 21:53:34 +0000519 Exp = E->getSubExpr();
520 assert(isa<CXXConstructExpr>(Exp) &&
521 "EmitSynthesizedCXXCopyCtor - unknown copy ctor expr");
522 const CXXConstructExpr* E = cast<CXXConstructExpr>(Exp);
523 const CXXConstructorDecl *CD = E->getConstructor();
524 RunCleanupsScope Scope(*this);
525
526 // If we require zero initialization before (or instead of) calling the
527 // constructor, as can be the case with a non-user-provided default
528 // constructor, emit the zero initialization now.
529 // FIXME. Do I still need this for a copy ctor synthesis?
530 if (E->requiresZeroInitialization())
531 EmitNullInitialization(Dest, E->getType());
532
Chandler Carruth99da11c2010-11-15 13:54:43 +0000533 assert(!getContext().getAsConstantArrayType(E->getType())
534 && "EmitSynthesizedCXXCopyCtor - Copied-in Array");
Alexey Samsonov525bf652014-08-25 21:58:56 +0000535 EmitSynthesizedCXXCopyCtorCall(CD, Dest, Src, E);
Fariborz Jahaniane988bda2010-11-13 21:53:34 +0000536}
537
John McCall8ed55a52010-09-02 09:58:18 +0000538static CharUnits CalculateCookiePadding(CodeGenFunction &CGF,
539 const CXXNewExpr *E) {
Anders Carlsson21122cf2009-12-13 20:04:38 +0000540 if (!E->isArray())
Ken Dyck3eb55cf2010-01-26 19:44:24 +0000541 return CharUnits::Zero();
Anders Carlsson21122cf2009-12-13 20:04:38 +0000542
John McCall7ec4b432011-05-16 01:05:12 +0000543 // No cookie is required if the operator new[] being used is the
544 // reserved placement operator new[].
545 if (E->getOperatorNew()->isReservedGlobalPlacementOperator())
John McCallaa4149a2010-08-23 01:17:59 +0000546 return CharUnits::Zero();
547
John McCall284c48f2011-01-27 09:37:56 +0000548 return CGF.CGM.getCXXABI().GetArrayCookieSize(E);
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000549}
550
John McCall036f2f62011-05-15 07:14:44 +0000551static llvm::Value *EmitCXXNewAllocSize(CodeGenFunction &CGF,
552 const CXXNewExpr *e,
Sebastian Redlf862eb62012-02-22 17:37:52 +0000553 unsigned minElements,
John McCall036f2f62011-05-15 07:14:44 +0000554 llvm::Value *&numElements,
555 llvm::Value *&sizeWithoutCookie) {
556 QualType type = e->getAllocatedType();
John McCall8ed55a52010-09-02 09:58:18 +0000557
John McCall036f2f62011-05-15 07:14:44 +0000558 if (!e->isArray()) {
559 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
560 sizeWithoutCookie
561 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity());
562 return sizeWithoutCookie;
Douglas Gregor05fc5be2010-07-21 01:10:17 +0000563 }
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000564
John McCall036f2f62011-05-15 07:14:44 +0000565 // The width of size_t.
566 unsigned sizeWidth = CGF.SizeTy->getBitWidth();
567
John McCall8ed55a52010-09-02 09:58:18 +0000568 // Figure out the cookie size.
John McCall036f2f62011-05-15 07:14:44 +0000569 llvm::APInt cookieSize(sizeWidth,
570 CalculateCookiePadding(CGF, e).getQuantity());
John McCall8ed55a52010-09-02 09:58:18 +0000571
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000572 // Emit the array size expression.
Argyrios Kyrtzidis7648fb42010-08-26 15:23:38 +0000573 // We multiply the size of all dimensions for NumElements.
574 // e.g for 'int[2][3]', ElemType is 'int' and NumElements is 6.
John McCall036f2f62011-05-15 07:14:44 +0000575 numElements = CGF.EmitScalarExpr(e->getArraySize());
576 assert(isa<llvm::IntegerType>(numElements->getType()));
John McCall8ed55a52010-09-02 09:58:18 +0000577
John McCall036f2f62011-05-15 07:14:44 +0000578 // The number of elements can be have an arbitrary integer type;
579 // essentially, we need to multiply it by a constant factor, add a
580 // cookie size, and verify that the result is representable as a
581 // size_t. That's just a gloss, though, and it's wrong in one
582 // important way: if the count is negative, it's an error even if
583 // the cookie size would bring the total size >= 0.
Douglas Gregor6ab2fa82011-05-20 16:38:50 +0000584 bool isSigned
585 = e->getArraySize()->getType()->isSignedIntegerOrEnumerationType();
Chris Lattner2192fe52011-07-18 04:24:23 +0000586 llvm::IntegerType *numElementsType
John McCall036f2f62011-05-15 07:14:44 +0000587 = cast<llvm::IntegerType>(numElements->getType());
588 unsigned numElementsWidth = numElementsType->getBitWidth();
589
590 // Compute the constant factor.
591 llvm::APInt arraySizeMultiplier(sizeWidth, 1);
Argyrios Kyrtzidis7648fb42010-08-26 15:23:38 +0000592 while (const ConstantArrayType *CAT
John McCall036f2f62011-05-15 07:14:44 +0000593 = CGF.getContext().getAsConstantArrayType(type)) {
594 type = CAT->getElementType();
595 arraySizeMultiplier *= CAT->getSize();
Argyrios Kyrtzidis7648fb42010-08-26 15:23:38 +0000596 }
597
John McCall036f2f62011-05-15 07:14:44 +0000598 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
599 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity());
600 typeSizeMultiplier *= arraySizeMultiplier;
601
602 // This will be a size_t.
603 llvm::Value *size;
Chris Lattnerf2f38702010-07-20 21:07:09 +0000604
Chris Lattner32ac5832010-07-20 21:55:52 +0000605 // If someone is doing 'new int[42]' there is no need to do a dynamic check.
606 // Don't bloat the -O0 code.
John McCall036f2f62011-05-15 07:14:44 +0000607 if (llvm::ConstantInt *numElementsC =
608 dyn_cast<llvm::ConstantInt>(numElements)) {
609 const llvm::APInt &count = numElementsC->getValue();
John McCall8ed55a52010-09-02 09:58:18 +0000610
John McCall036f2f62011-05-15 07:14:44 +0000611 bool hasAnyOverflow = false;
John McCall8ed55a52010-09-02 09:58:18 +0000612
John McCall036f2f62011-05-15 07:14:44 +0000613 // If 'count' was a negative number, it's an overflow.
614 if (isSigned && count.isNegative())
615 hasAnyOverflow = true;
John McCall8ed55a52010-09-02 09:58:18 +0000616
John McCall036f2f62011-05-15 07:14:44 +0000617 // We want to do all this arithmetic in size_t. If numElements is
618 // wider than that, check whether it's already too big, and if so,
619 // overflow.
620 else if (numElementsWidth > sizeWidth &&
621 numElementsWidth - sizeWidth > count.countLeadingZeros())
622 hasAnyOverflow = true;
623
624 // Okay, compute a count at the right width.
625 llvm::APInt adjustedCount = count.zextOrTrunc(sizeWidth);
626
Sebastian Redlf862eb62012-02-22 17:37:52 +0000627 // If there is a brace-initializer, we cannot allocate fewer elements than
628 // there are initializers. If we do, that's treated like an overflow.
629 if (adjustedCount.ult(minElements))
630 hasAnyOverflow = true;
631
John McCall036f2f62011-05-15 07:14:44 +0000632 // Scale numElements by that. This might overflow, but we don't
633 // care because it only overflows if allocationSize does, too, and
634 // if that overflows then we shouldn't use this.
635 numElements = llvm::ConstantInt::get(CGF.SizeTy,
636 adjustedCount * arraySizeMultiplier);
637
638 // Compute the size before cookie, and track whether it overflowed.
639 bool overflow;
640 llvm::APInt allocationSize
641 = adjustedCount.umul_ov(typeSizeMultiplier, overflow);
642 hasAnyOverflow |= overflow;
643
644 // Add in the cookie, and check whether it's overflowed.
645 if (cookieSize != 0) {
646 // Save the current size without a cookie. This shouldn't be
647 // used if there was overflow.
648 sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
649
650 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
651 hasAnyOverflow |= overflow;
652 }
653
654 // On overflow, produce a -1 so operator new will fail.
Aaron Ballman455f42c2014-08-28 17:24:14 +0000655 if (hasAnyOverflow) {
656 size = llvm::Constant::getAllOnesValue(CGF.SizeTy);
657 } else {
John McCall036f2f62011-05-15 07:14:44 +0000658 size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
Aaron Ballman455f42c2014-08-28 17:24:14 +0000659 }
John McCall036f2f62011-05-15 07:14:44 +0000660
661 // Otherwise, we might need to use the overflow intrinsics.
662 } else {
Sebastian Redlf862eb62012-02-22 17:37:52 +0000663 // There are up to five conditions we need to test for:
John McCall036f2f62011-05-15 07:14:44 +0000664 // 1) if isSigned, we need to check whether numElements is negative;
665 // 2) if numElementsWidth > sizeWidth, we need to check whether
666 // numElements is larger than something representable in size_t;
Sebastian Redlf862eb62012-02-22 17:37:52 +0000667 // 3) if minElements > 0, we need to check whether numElements is smaller
668 // than that.
669 // 4) we need to compute
John McCall036f2f62011-05-15 07:14:44 +0000670 // sizeWithoutCookie := numElements * typeSizeMultiplier
671 // and check whether it overflows; and
Sebastian Redlf862eb62012-02-22 17:37:52 +0000672 // 5) if we need a cookie, we need to compute
John McCall036f2f62011-05-15 07:14:44 +0000673 // size := sizeWithoutCookie + cookieSize
674 // and check whether it overflows.
675
Craig Topper8a13c412014-05-21 05:09:00 +0000676 llvm::Value *hasOverflow = nullptr;
John McCall036f2f62011-05-15 07:14:44 +0000677
678 // If numElementsWidth > sizeWidth, then one way or another, we're
679 // going to have to do a comparison for (2), and this happens to
680 // take care of (1), too.
681 if (numElementsWidth > sizeWidth) {
682 llvm::APInt threshold(numElementsWidth, 1);
683 threshold <<= sizeWidth;
684
685 llvm::Value *thresholdV
686 = llvm::ConstantInt::get(numElementsType, threshold);
687
688 hasOverflow = CGF.Builder.CreateICmpUGE(numElements, thresholdV);
689 numElements = CGF.Builder.CreateTrunc(numElements, CGF.SizeTy);
690
691 // Otherwise, if we're signed, we want to sext up to size_t.
692 } else if (isSigned) {
693 if (numElementsWidth < sizeWidth)
694 numElements = CGF.Builder.CreateSExt(numElements, CGF.SizeTy);
695
696 // If there's a non-1 type size multiplier, then we can do the
697 // signedness check at the same time as we do the multiply
698 // because a negative number times anything will cause an
Sebastian Redlf862eb62012-02-22 17:37:52 +0000699 // unsigned overflow. Otherwise, we have to do it here. But at least
700 // in this case, we can subsume the >= minElements check.
John McCall036f2f62011-05-15 07:14:44 +0000701 if (typeSizeMultiplier == 1)
702 hasOverflow = CGF.Builder.CreateICmpSLT(numElements,
Sebastian Redlf862eb62012-02-22 17:37:52 +0000703 llvm::ConstantInt::get(CGF.SizeTy, minElements));
John McCall036f2f62011-05-15 07:14:44 +0000704
705 // Otherwise, zext up to size_t if necessary.
706 } else if (numElementsWidth < sizeWidth) {
707 numElements = CGF.Builder.CreateZExt(numElements, CGF.SizeTy);
708 }
709
710 assert(numElements->getType() == CGF.SizeTy);
711
Sebastian Redlf862eb62012-02-22 17:37:52 +0000712 if (minElements) {
713 // Don't allow allocation of fewer elements than we have initializers.
714 if (!hasOverflow) {
715 hasOverflow = CGF.Builder.CreateICmpULT(numElements,
716 llvm::ConstantInt::get(CGF.SizeTy, minElements));
717 } else if (numElementsWidth > sizeWidth) {
718 // The other existing overflow subsumes this check.
719 // We do an unsigned comparison, since any signed value < -1 is
720 // taken care of either above or below.
721 hasOverflow = CGF.Builder.CreateOr(hasOverflow,
722 CGF.Builder.CreateICmpULT(numElements,
723 llvm::ConstantInt::get(CGF.SizeTy, minElements)));
724 }
725 }
726
John McCall036f2f62011-05-15 07:14:44 +0000727 size = numElements;
728
729 // Multiply by the type size if necessary. This multiplier
730 // includes all the factors for nested arrays.
731 //
732 // This step also causes numElements to be scaled up by the
733 // nested-array factor if necessary. Overflow on this computation
734 // can be ignored because the result shouldn't be used if
735 // allocation fails.
736 if (typeSizeMultiplier != 1) {
John McCall036f2f62011-05-15 07:14:44 +0000737 llvm::Value *umul_with_overflow
Benjamin Kramer8d375ce2011-07-14 17:45:50 +0000738 = CGF.CGM.getIntrinsic(llvm::Intrinsic::umul_with_overflow, CGF.SizeTy);
John McCall036f2f62011-05-15 07:14:44 +0000739
740 llvm::Value *tsmV =
741 llvm::ConstantInt::get(CGF.SizeTy, typeSizeMultiplier);
742 llvm::Value *result =
David Blaikie43f9bb72015-05-18 22:14:03 +0000743 CGF.Builder.CreateCall(umul_with_overflow, {size, tsmV});
John McCall036f2f62011-05-15 07:14:44 +0000744
745 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
746 if (hasOverflow)
747 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
748 else
749 hasOverflow = overflowed;
750
751 size = CGF.Builder.CreateExtractValue(result, 0);
752
753 // Also scale up numElements by the array size multiplier.
754 if (arraySizeMultiplier != 1) {
755 // If the base element type size is 1, then we can re-use the
756 // multiply we just did.
757 if (typeSize.isOne()) {
758 assert(arraySizeMultiplier == typeSizeMultiplier);
759 numElements = size;
760
761 // Otherwise we need a separate multiply.
762 } else {
763 llvm::Value *asmV =
764 llvm::ConstantInt::get(CGF.SizeTy, arraySizeMultiplier);
765 numElements = CGF.Builder.CreateMul(numElements, asmV);
766 }
767 }
768 } else {
769 // numElements doesn't need to be scaled.
770 assert(arraySizeMultiplier == 1);
Chris Lattner32ac5832010-07-20 21:55:52 +0000771 }
772
John McCall036f2f62011-05-15 07:14:44 +0000773 // Add in the cookie size if necessary.
774 if (cookieSize != 0) {
775 sizeWithoutCookie = size;
776
John McCall036f2f62011-05-15 07:14:44 +0000777 llvm::Value *uadd_with_overflow
Benjamin Kramer8d375ce2011-07-14 17:45:50 +0000778 = CGF.CGM.getIntrinsic(llvm::Intrinsic::uadd_with_overflow, CGF.SizeTy);
John McCall036f2f62011-05-15 07:14:44 +0000779
780 llvm::Value *cookieSizeV = llvm::ConstantInt::get(CGF.SizeTy, cookieSize);
781 llvm::Value *result =
David Blaikie43f9bb72015-05-18 22:14:03 +0000782 CGF.Builder.CreateCall(uadd_with_overflow, {size, cookieSizeV});
John McCall036f2f62011-05-15 07:14:44 +0000783
784 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
785 if (hasOverflow)
786 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
787 else
788 hasOverflow = overflowed;
789
790 size = CGF.Builder.CreateExtractValue(result, 0);
John McCall8ed55a52010-09-02 09:58:18 +0000791 }
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000792
John McCall036f2f62011-05-15 07:14:44 +0000793 // If we had any possibility of dynamic overflow, make a select to
794 // overwrite 'size' with an all-ones value, which should cause
795 // operator new to throw.
796 if (hasOverflow)
Aaron Ballman455f42c2014-08-28 17:24:14 +0000797 size = CGF.Builder.CreateSelect(hasOverflow,
798 llvm::Constant::getAllOnesValue(CGF.SizeTy),
799 size);
Chris Lattner32ac5832010-07-20 21:55:52 +0000800 }
John McCall8ed55a52010-09-02 09:58:18 +0000801
John McCall036f2f62011-05-15 07:14:44 +0000802 if (cookieSize == 0)
803 sizeWithoutCookie = size;
John McCall8ed55a52010-09-02 09:58:18 +0000804 else
John McCall036f2f62011-05-15 07:14:44 +0000805 assert(sizeWithoutCookie && "didn't set sizeWithoutCookie?");
John McCall8ed55a52010-09-02 09:58:18 +0000806
John McCall036f2f62011-05-15 07:14:44 +0000807 return size;
Anders Carlssonb4bd0662009-09-23 16:07:23 +0000808}
809
Sebastian Redlf862eb62012-02-22 17:37:52 +0000810static void StoreAnyExprIntoOneUnit(CodeGenFunction &CGF, const Expr *Init,
John McCall7f416cc2015-09-08 08:05:57 +0000811 QualType AllocType, Address NewPtr) {
Richard Smith1c96bc52013-12-11 01:40:16 +0000812 // FIXME: Refactor with EmitExprAsInit.
John McCall47fb9502013-03-07 21:37:08 +0000813 switch (CGF.getEvaluationKind(AllocType)) {
814 case TEK_Scalar:
David Blaikiea2c11242014-12-10 19:04:09 +0000815 CGF.EmitScalarInit(Init, nullptr,
John McCall7f416cc2015-09-08 08:05:57 +0000816 CGF.MakeAddrLValue(NewPtr, AllocType), false);
John McCall47fb9502013-03-07 21:37:08 +0000817 return;
818 case TEK_Complex:
John McCall7f416cc2015-09-08 08:05:57 +0000819 CGF.EmitComplexExprIntoLValue(Init, CGF.MakeAddrLValue(NewPtr, AllocType),
John McCall47fb9502013-03-07 21:37:08 +0000820 /*isInit*/ true);
821 return;
822 case TEK_Aggregate: {
John McCall7a626f62010-09-15 10:14:12 +0000823 AggValueSlot Slot
John McCall7f416cc2015-09-08 08:05:57 +0000824 = AggValueSlot::forAddr(NewPtr, AllocType.getQualifiers(),
John McCall8d6fc952011-08-25 20:40:09 +0000825 AggValueSlot::IsDestructed,
John McCall46759f42011-08-26 07:31:35 +0000826 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier615ed1a2012-03-29 17:37:10 +0000827 AggValueSlot::IsNotAliased);
John McCall7a626f62010-09-15 10:14:12 +0000828 CGF.EmitAggExpr(Init, Slot);
John McCall47fb9502013-03-07 21:37:08 +0000829 return;
John McCall7a626f62010-09-15 10:14:12 +0000830 }
John McCall47fb9502013-03-07 21:37:08 +0000831 }
832 llvm_unreachable("bad evaluation kind");
Fariborz Jahaniand5202e02010-06-25 18:26:07 +0000833}
834
David Blaikiefb901c7a2015-04-04 15:12:29 +0000835void CodeGenFunction::EmitNewArrayInitializer(
836 const CXXNewExpr *E, QualType ElementType, llvm::Type *ElementTy,
John McCall7f416cc2015-09-08 08:05:57 +0000837 Address BeginPtr, llvm::Value *NumElements,
David Blaikiefb901c7a2015-04-04 15:12:29 +0000838 llvm::Value *AllocSizeWithoutCookie) {
Richard Smith06a67e22014-06-03 06:58:52 +0000839 // If we have a type with trivial initialization and no initializer,
840 // there's nothing to do.
Sebastian Redl6047f072012-02-16 12:22:20 +0000841 if (!E->hasInitializer())
Richard Smith06a67e22014-06-03 06:58:52 +0000842 return;
John McCall99210dc2011-09-15 06:49:18 +0000843
John McCall7f416cc2015-09-08 08:05:57 +0000844 Address CurPtr = BeginPtr;
John McCall99210dc2011-09-15 06:49:18 +0000845
Richard Smith06a67e22014-06-03 06:58:52 +0000846 unsigned InitListElements = 0;
Sebastian Redlf862eb62012-02-22 17:37:52 +0000847
848 const Expr *Init = E->getInitializer();
John McCall7f416cc2015-09-08 08:05:57 +0000849 Address EndOfInit = Address::invalid();
Richard Smith06a67e22014-06-03 06:58:52 +0000850 QualType::DestructionKind DtorKind = ElementType.isDestructedType();
851 EHScopeStack::stable_iterator Cleanup;
852 llvm::Instruction *CleanupDominator = nullptr;
Richard Smith1c96bc52013-12-11 01:40:16 +0000853
John McCall7f416cc2015-09-08 08:05:57 +0000854 CharUnits ElementSize = getContext().getTypeSizeInChars(ElementType);
855 CharUnits ElementAlign =
856 BeginPtr.getAlignment().alignmentOfArrayElement(ElementSize);
857
Sebastian Redlf862eb62012-02-22 17:37:52 +0000858 // If the initializer is an initializer list, first do the explicit elements.
859 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
Richard Smith06a67e22014-06-03 06:58:52 +0000860 InitListElements = ILE->getNumInits();
Chad Rosierf62290a2012-02-24 00:13:55 +0000861
Richard Smith1c96bc52013-12-11 01:40:16 +0000862 // If this is a multi-dimensional array new, we will initialize multiple
863 // elements with each init list element.
864 QualType AllocType = E->getAllocatedType();
865 if (const ConstantArrayType *CAT = dyn_cast_or_null<ConstantArrayType>(
866 AllocType->getAsArrayTypeUnsafe())) {
David Blaikiefb901c7a2015-04-04 15:12:29 +0000867 ElementTy = ConvertTypeForMem(AllocType);
John McCall7f416cc2015-09-08 08:05:57 +0000868 CurPtr = Builder.CreateElementBitCast(CurPtr, ElementTy);
Richard Smith06a67e22014-06-03 06:58:52 +0000869 InitListElements *= getContext().getConstantArrayElementCount(CAT);
Richard Smith1c96bc52013-12-11 01:40:16 +0000870 }
871
Richard Smith06a67e22014-06-03 06:58:52 +0000872 // Enter a partial-destruction Cleanup if necessary.
873 if (needsEHCleanup(DtorKind)) {
874 // In principle we could tell the Cleanup where we are more
Chad Rosierf62290a2012-02-24 00:13:55 +0000875 // directly, but the control flow can get so varied here that it
876 // would actually be quite complex. Therefore we go through an
877 // alloca.
John McCall7f416cc2015-09-08 08:05:57 +0000878 EndOfInit = CreateTempAlloca(BeginPtr.getType(), getPointerAlign(),
879 "array.init.end");
880 CleanupDominator = Builder.CreateStore(BeginPtr.getPointer(), EndOfInit);
881 pushIrregularPartialArrayCleanup(BeginPtr.getPointer(), EndOfInit,
882 ElementType, ElementAlign,
Richard Smith06a67e22014-06-03 06:58:52 +0000883 getDestroyer(DtorKind));
884 Cleanup = EHStack.stable_begin();
Chad Rosierf62290a2012-02-24 00:13:55 +0000885 }
886
John McCall7f416cc2015-09-08 08:05:57 +0000887 CharUnits StartAlign = CurPtr.getAlignment();
Sebastian Redlf862eb62012-02-22 17:37:52 +0000888 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) {
Chad Rosierf62290a2012-02-24 00:13:55 +0000889 // Tell the cleanup that it needs to destroy up to this
890 // element. TODO: some of these stores can be trivially
891 // observed to be unnecessary.
John McCall7f416cc2015-09-08 08:05:57 +0000892 if (EndOfInit.isValid()) {
893 auto FinishedPtr =
894 Builder.CreateBitCast(CurPtr.getPointer(), BeginPtr.getType());
895 Builder.CreateStore(FinishedPtr, EndOfInit);
896 }
Richard Smith06a67e22014-06-03 06:58:52 +0000897 // FIXME: If the last initializer is an incomplete initializer list for
898 // an array, and we have an array filler, we can fold together the two
899 // initialization loops.
Richard Smith1c96bc52013-12-11 01:40:16 +0000900 StoreAnyExprIntoOneUnit(*this, ILE->getInit(i),
Richard Smith06a67e22014-06-03 06:58:52 +0000901 ILE->getInit(i)->getType(), CurPtr);
John McCall7f416cc2015-09-08 08:05:57 +0000902 CurPtr = Address(Builder.CreateInBoundsGEP(CurPtr.getPointer(),
903 Builder.getSize(1),
904 "array.exp.next"),
905 StartAlign.alignmentAtOffset((i + 1) * ElementSize));
Sebastian Redlf862eb62012-02-22 17:37:52 +0000906 }
907
908 // The remaining elements are filled with the array filler expression.
909 Init = ILE->getArrayFiller();
Richard Smith1c96bc52013-12-11 01:40:16 +0000910
Richard Smith06a67e22014-06-03 06:58:52 +0000911 // Extract the initializer for the individual array elements by pulling
912 // out the array filler from all the nested initializer lists. This avoids
913 // generating a nested loop for the initialization.
914 while (Init && Init->getType()->isConstantArrayType()) {
915 auto *SubILE = dyn_cast<InitListExpr>(Init);
916 if (!SubILE)
917 break;
918 assert(SubILE->getNumInits() == 0 && "explicit inits in array filler?");
919 Init = SubILE->getArrayFiller();
920 }
921
922 // Switch back to initializing one base element at a time.
John McCall7f416cc2015-09-08 08:05:57 +0000923 CurPtr = Builder.CreateBitCast(CurPtr, BeginPtr.getType());
Sebastian Redlf862eb62012-02-22 17:37:52 +0000924 }
925
Richard Smith06a67e22014-06-03 06:58:52 +0000926 // Attempt to perform zero-initialization using memset.
927 auto TryMemsetInitialization = [&]() -> bool {
928 // FIXME: If the type is a pointer-to-data-member under the Itanium ABI,
929 // we can initialize with a memset to -1.
930 if (!CGM.getTypes().isZeroInitializable(ElementType))
931 return false;
Chandler Carruthe6c980c2014-05-03 09:16:57 +0000932
Richard Smith06a67e22014-06-03 06:58:52 +0000933 // Optimization: since zero initialization will just set the memory
934 // to all zeroes, generate a single memset to do it in one shot.
935
936 // Subtract out the size of any elements we've already initialized.
937 auto *RemainingSize = AllocSizeWithoutCookie;
938 if (InitListElements) {
939 // We know this can't overflow; we check this when doing the allocation.
940 auto *InitializedSize = llvm::ConstantInt::get(
941 RemainingSize->getType(),
942 getContext().getTypeSizeInChars(ElementType).getQuantity() *
943 InitListElements);
944 RemainingSize = Builder.CreateSub(RemainingSize, InitializedSize);
945 }
946
947 // Create the memset.
John McCall7f416cc2015-09-08 08:05:57 +0000948 Builder.CreateMemSet(CurPtr, Builder.getInt8(0), RemainingSize, false);
Richard Smith06a67e22014-06-03 06:58:52 +0000949 return true;
950 };
951
Richard Smith454a7cd2014-06-03 08:26:00 +0000952 // If all elements have already been initialized, skip any further
953 // initialization.
954 llvm::ConstantInt *ConstNum = dyn_cast<llvm::ConstantInt>(NumElements);
955 if (ConstNum && ConstNum->getZExtValue() <= InitListElements) {
956 // If there was a Cleanup, deactivate it.
957 if (CleanupDominator)
958 DeactivateCleanupBlock(Cleanup, CleanupDominator);
959 return;
960 }
961
962 assert(Init && "have trailing elements to initialize but no initializer");
963
Richard Smith06a67e22014-06-03 06:58:52 +0000964 // If this is a constructor call, try to optimize it out, and failing that
965 // emit a single loop to initialize all remaining elements.
Richard Smith454a7cd2014-06-03 08:26:00 +0000966 if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init)) {
Richard Smith06a67e22014-06-03 06:58:52 +0000967 CXXConstructorDecl *Ctor = CCE->getConstructor();
968 if (Ctor->isTrivial()) {
969 // If new expression did not specify value-initialization, then there
970 // is no initialization.
971 if (!CCE->requiresZeroInitialization() || Ctor->getParent()->isEmpty())
972 return;
973
974 if (TryMemsetInitialization())
975 return;
976 }
977
978 // Store the new Cleanup position for irregular Cleanups.
979 //
980 // FIXME: Share this cleanup with the constructor call emission rather than
981 // having it create a cleanup of its own.
John McCall7f416cc2015-09-08 08:05:57 +0000982 if (EndOfInit.isValid())
983 Builder.CreateStore(CurPtr.getPointer(), EndOfInit);
Richard Smith06a67e22014-06-03 06:58:52 +0000984
985 // Emit a constructor call loop to initialize the remaining elements.
986 if (InitListElements)
987 NumElements = Builder.CreateSub(
988 NumElements,
989 llvm::ConstantInt::get(NumElements->getType(), InitListElements));
Alexey Samsonov70b9c012014-08-21 20:26:47 +0000990 EmitCXXAggrConstructorCall(Ctor, NumElements, CurPtr, CCE,
Richard Smith06a67e22014-06-03 06:58:52 +0000991 CCE->requiresZeroInitialization());
Chandler Carruthe6c980c2014-05-03 09:16:57 +0000992 return;
993 }
994
Richard Smith06a67e22014-06-03 06:58:52 +0000995 // If this is value-initialization, we can usually use memset.
996 ImplicitValueInitExpr IVIE(ElementType);
Richard Smith454a7cd2014-06-03 08:26:00 +0000997 if (isa<ImplicitValueInitExpr>(Init)) {
Richard Smith06a67e22014-06-03 06:58:52 +0000998 if (TryMemsetInitialization())
999 return;
1000
1001 // Switch to an ImplicitValueInitExpr for the element type. This handles
1002 // only one case: multidimensional array new of pointers to members. In
1003 // all other cases, we already have an initializer for the array element.
1004 Init = &IVIE;
1005 }
1006
1007 // At this point we should have found an initializer for the individual
1008 // elements of the array.
1009 assert(getContext().hasSameUnqualifiedType(ElementType, Init->getType()) &&
1010 "got wrong type of element to initialize");
1011
Richard Smith454a7cd2014-06-03 08:26:00 +00001012 // If we have an empty initializer list, we can usually use memset.
1013 if (auto *ILE = dyn_cast<InitListExpr>(Init))
1014 if (ILE->getNumInits() == 0 && TryMemsetInitialization())
1015 return;
Richard Smith06a67e22014-06-03 06:58:52 +00001016
Yunzhong Gaocb779302015-06-10 00:27:52 +00001017 // If we have a struct whose every field is value-initialized, we can
1018 // usually use memset.
1019 if (auto *ILE = dyn_cast<InitListExpr>(Init)) {
1020 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
1021 if (RType->getDecl()->isStruct()) {
Richard Smith872307e2016-03-08 22:17:41 +00001022 unsigned NumElements = 0;
1023 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RType->getDecl()))
1024 NumElements = CXXRD->getNumBases();
Yunzhong Gaocb779302015-06-10 00:27:52 +00001025 for (auto *Field : RType->getDecl()->fields())
1026 if (!Field->isUnnamedBitfield())
Richard Smith872307e2016-03-08 22:17:41 +00001027 ++NumElements;
1028 // FIXME: Recurse into nested InitListExprs.
1029 if (ILE->getNumInits() == NumElements)
Yunzhong Gaocb779302015-06-10 00:27:52 +00001030 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
1031 if (!isa<ImplicitValueInitExpr>(ILE->getInit(i)))
Richard Smith872307e2016-03-08 22:17:41 +00001032 --NumElements;
1033 if (ILE->getNumInits() == NumElements && TryMemsetInitialization())
Yunzhong Gaocb779302015-06-10 00:27:52 +00001034 return;
1035 }
1036 }
1037 }
1038
Richard Smith06a67e22014-06-03 06:58:52 +00001039 // Create the loop blocks.
1040 llvm::BasicBlock *EntryBB = Builder.GetInsertBlock();
1041 llvm::BasicBlock *LoopBB = createBasicBlock("new.loop");
1042 llvm::BasicBlock *ContBB = createBasicBlock("new.loop.end");
1043
1044 // Find the end of the array, hoisted out of the loop.
1045 llvm::Value *EndPtr =
John McCall7f416cc2015-09-08 08:05:57 +00001046 Builder.CreateInBoundsGEP(BeginPtr.getPointer(), NumElements, "array.end");
John McCall99210dc2011-09-15 06:49:18 +00001047
Sebastian Redlf862eb62012-02-22 17:37:52 +00001048 // If the number of elements isn't constant, we have to now check if there is
1049 // anything left to initialize.
Richard Smith06a67e22014-06-03 06:58:52 +00001050 if (!ConstNum) {
John McCall7f416cc2015-09-08 08:05:57 +00001051 llvm::Value *IsEmpty =
1052 Builder.CreateICmpEQ(CurPtr.getPointer(), EndPtr, "array.isempty");
Richard Smith06a67e22014-06-03 06:58:52 +00001053 Builder.CreateCondBr(IsEmpty, ContBB, LoopBB);
John McCall99210dc2011-09-15 06:49:18 +00001054 }
1055
1056 // Enter the loop.
Richard Smith06a67e22014-06-03 06:58:52 +00001057 EmitBlock(LoopBB);
John McCall99210dc2011-09-15 06:49:18 +00001058
1059 // Set up the current-element phi.
Richard Smith06a67e22014-06-03 06:58:52 +00001060 llvm::PHINode *CurPtrPhi =
John McCall7f416cc2015-09-08 08:05:57 +00001061 Builder.CreatePHI(CurPtr.getType(), 2, "array.cur");
1062 CurPtrPhi->addIncoming(CurPtr.getPointer(), EntryBB);
1063
1064 CurPtr = Address(CurPtrPhi, ElementAlign);
John McCall99210dc2011-09-15 06:49:18 +00001065
Richard Smith06a67e22014-06-03 06:58:52 +00001066 // Store the new Cleanup position for irregular Cleanups.
John McCall7f416cc2015-09-08 08:05:57 +00001067 if (EndOfInit.isValid())
1068 Builder.CreateStore(CurPtr.getPointer(), EndOfInit);
Chad Rosierf62290a2012-02-24 00:13:55 +00001069
Richard Smith06a67e22014-06-03 06:58:52 +00001070 // Enter a partial-destruction Cleanup if necessary.
1071 if (!CleanupDominator && needsEHCleanup(DtorKind)) {
John McCall7f416cc2015-09-08 08:05:57 +00001072 pushRegularPartialArrayCleanup(BeginPtr.getPointer(), CurPtr.getPointer(),
1073 ElementType, ElementAlign,
Richard Smith06a67e22014-06-03 06:58:52 +00001074 getDestroyer(DtorKind));
1075 Cleanup = EHStack.stable_begin();
1076 CleanupDominator = Builder.CreateUnreachable();
John McCall99210dc2011-09-15 06:49:18 +00001077 }
1078
1079 // Emit the initializer into this element.
Richard Smith06a67e22014-06-03 06:58:52 +00001080 StoreAnyExprIntoOneUnit(*this, Init, Init->getType(), CurPtr);
John McCall99210dc2011-09-15 06:49:18 +00001081
Richard Smith06a67e22014-06-03 06:58:52 +00001082 // Leave the Cleanup if we entered one.
1083 if (CleanupDominator) {
1084 DeactivateCleanupBlock(Cleanup, CleanupDominator);
1085 CleanupDominator->eraseFromParent();
John McCallf4beacd2011-11-10 10:43:54 +00001086 }
John McCall99210dc2011-09-15 06:49:18 +00001087
Faisal Vali57ae0562013-12-14 00:40:05 +00001088 // Advance to the next element by adjusting the pointer type as necessary.
Richard Smith06a67e22014-06-03 06:58:52 +00001089 llvm::Value *NextPtr =
John McCall7f416cc2015-09-08 08:05:57 +00001090 Builder.CreateConstInBoundsGEP1_32(ElementTy, CurPtr.getPointer(), 1,
1091 "array.next");
Richard Smith06a67e22014-06-03 06:58:52 +00001092
John McCall99210dc2011-09-15 06:49:18 +00001093 // Check whether we've gotten to the end of the array and, if so,
1094 // exit the loop.
Richard Smith06a67e22014-06-03 06:58:52 +00001095 llvm::Value *IsEnd = Builder.CreateICmpEQ(NextPtr, EndPtr, "array.atend");
1096 Builder.CreateCondBr(IsEnd, ContBB, LoopBB);
1097 CurPtrPhi->addIncoming(NextPtr, Builder.GetInsertBlock());
John McCall99210dc2011-09-15 06:49:18 +00001098
Richard Smith06a67e22014-06-03 06:58:52 +00001099 EmitBlock(ContBB);
Fariborz Jahaniand5202e02010-06-25 18:26:07 +00001100}
1101
Anders Carlssonb4bd0662009-09-23 16:07:23 +00001102static void EmitNewInitializer(CodeGenFunction &CGF, const CXXNewExpr *E,
David Blaikiefb901c7a2015-04-04 15:12:29 +00001103 QualType ElementType, llvm::Type *ElementTy,
John McCall7f416cc2015-09-08 08:05:57 +00001104 Address NewPtr, llvm::Value *NumElements,
Douglas Gregor05fc5be2010-07-21 01:10:17 +00001105 llvm::Value *AllocSizeWithoutCookie) {
David Blaikie9b479662015-01-25 01:19:10 +00001106 ApplyDebugLocation DL(CGF, E);
Richard Smith06a67e22014-06-03 06:58:52 +00001107 if (E->isArray())
David Blaikiefb901c7a2015-04-04 15:12:29 +00001108 CGF.EmitNewArrayInitializer(E, ElementType, ElementTy, NewPtr, NumElements,
Richard Smith06a67e22014-06-03 06:58:52 +00001109 AllocSizeWithoutCookie);
1110 else if (const Expr *Init = E->getInitializer())
David Blaikie66e41972015-01-14 07:38:27 +00001111 StoreAnyExprIntoOneUnit(CGF, Init, E->getAllocatedType(), NewPtr);
Anders Carlssonb4bd0662009-09-23 16:07:23 +00001112}
1113
Richard Smith8d0dc312013-07-21 23:12:18 +00001114/// Emit a call to an operator new or operator delete function, as implicitly
1115/// created by new-expressions and delete-expressions.
1116static RValue EmitNewDeleteCall(CodeGenFunction &CGF,
1117 const FunctionDecl *Callee,
1118 const FunctionProtoType *CalleeType,
1119 const CallArgList &Args) {
1120 llvm::Instruction *CallOrInvoke;
Richard Smith1235a8d2013-07-29 20:14:16 +00001121 llvm::Value *CalleeAddr = CGF.CGM.GetAddrOfFunction(Callee);
Richard Smith8d0dc312013-07-21 23:12:18 +00001122 RValue RV =
Peter Collingbournef7706832014-12-12 23:41:25 +00001123 CGF.EmitCall(CGF.CGM.getTypes().arrangeFreeFunctionCall(
1124 Args, CalleeType, /*chainCall=*/false),
1125 CalleeAddr, ReturnValueSlot(), Args, Callee, &CallOrInvoke);
Richard Smith8d0dc312013-07-21 23:12:18 +00001126
1127 /// C++1y [expr.new]p10:
1128 /// [In a new-expression,] an implementation is allowed to omit a call
1129 /// to a replaceable global allocation function.
1130 ///
1131 /// We model such elidable calls with the 'builtin' attribute.
Rafael Espindola6956d582013-10-22 14:23:09 +00001132 llvm::Function *Fn = dyn_cast<llvm::Function>(CalleeAddr);
Richard Smith1235a8d2013-07-29 20:14:16 +00001133 if (Callee->isReplaceableGlobalAllocationFunction() &&
Rafael Espindola6956d582013-10-22 14:23:09 +00001134 Fn && Fn->hasFnAttribute(llvm::Attribute::NoBuiltin)) {
Richard Smith8d0dc312013-07-21 23:12:18 +00001135 // FIXME: Add addAttribute to CallSite.
1136 if (llvm::CallInst *CI = dyn_cast<llvm::CallInst>(CallOrInvoke))
1137 CI->addAttribute(llvm::AttributeSet::FunctionIndex,
1138 llvm::Attribute::Builtin);
1139 else if (llvm::InvokeInst *II = dyn_cast<llvm::InvokeInst>(CallOrInvoke))
1140 II->addAttribute(llvm::AttributeSet::FunctionIndex,
1141 llvm::Attribute::Builtin);
1142 else
1143 llvm_unreachable("unexpected kind of call instruction");
1144 }
1145
1146 return RV;
1147}
1148
Richard Smith760520b2014-06-03 23:27:44 +00001149RValue CodeGenFunction::EmitBuiltinNewDeleteCall(const FunctionProtoType *Type,
1150 const Expr *Arg,
1151 bool IsDelete) {
1152 CallArgList Args;
1153 const Stmt *ArgS = Arg;
David Blaikief05779e2015-07-21 18:37:18 +00001154 EmitCallArgs(Args, *Type->param_type_begin(), llvm::makeArrayRef(ArgS));
Richard Smith760520b2014-06-03 23:27:44 +00001155 // Find the allocation or deallocation function that we're calling.
1156 ASTContext &Ctx = getContext();
1157 DeclarationName Name = Ctx.DeclarationNames
1158 .getCXXOperatorName(IsDelete ? OO_Delete : OO_New);
1159 for (auto *Decl : Ctx.getTranslationUnitDecl()->lookup(Name))
Richard Smith599bed72014-06-05 00:43:02 +00001160 if (auto *FD = dyn_cast<FunctionDecl>(Decl))
1161 if (Ctx.hasSameType(FD->getType(), QualType(Type, 0)))
1162 return EmitNewDeleteCall(*this, cast<FunctionDecl>(Decl), Type, Args);
Richard Smith760520b2014-06-03 23:27:44 +00001163 llvm_unreachable("predeclared global operator new/delete is missing");
1164}
1165
John McCall824c2f52010-09-14 07:57:04 +00001166namespace {
1167 /// A cleanup to call the given 'operator delete' function upon
1168 /// abnormal exit from a new expression.
David Blaikie7e70d682015-08-18 22:40:54 +00001169 class CallDeleteDuringNew final : public EHScopeStack::Cleanup {
John McCall824c2f52010-09-14 07:57:04 +00001170 size_t NumPlacementArgs;
1171 const FunctionDecl *OperatorDelete;
1172 llvm::Value *Ptr;
1173 llvm::Value *AllocSize;
1174
1175 RValue *getPlacementArgs() { return reinterpret_cast<RValue*>(this+1); }
1176
1177 public:
1178 static size_t getExtraSize(size_t NumPlacementArgs) {
1179 return NumPlacementArgs * sizeof(RValue);
1180 }
1181
1182 CallDeleteDuringNew(size_t NumPlacementArgs,
1183 const FunctionDecl *OperatorDelete,
1184 llvm::Value *Ptr,
1185 llvm::Value *AllocSize)
1186 : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
1187 Ptr(Ptr), AllocSize(AllocSize) {}
1188
1189 void setPlacementArg(unsigned I, RValue Arg) {
1190 assert(I < NumPlacementArgs && "index out of range");
1191 getPlacementArgs()[I] = Arg;
1192 }
1193
Craig Topper4f12f102014-03-12 06:41:41 +00001194 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall824c2f52010-09-14 07:57:04 +00001195 const FunctionProtoType *FPT
1196 = OperatorDelete->getType()->getAs<FunctionProtoType>();
Alp Toker9cacbab2014-01-20 20:26:09 +00001197 assert(FPT->getNumParams() == NumPlacementArgs + 1 ||
1198 (FPT->getNumParams() == 2 && NumPlacementArgs == 0));
John McCall824c2f52010-09-14 07:57:04 +00001199
1200 CallArgList DeleteArgs;
1201
1202 // The first argument is always a void*.
Alp Toker9cacbab2014-01-20 20:26:09 +00001203 FunctionProtoType::param_type_iterator AI = FPT->param_type_begin();
Eli Friedman43dca6a2011-05-02 17:57:46 +00001204 DeleteArgs.add(RValue::get(Ptr), *AI++);
John McCall824c2f52010-09-14 07:57:04 +00001205
1206 // A member 'operator delete' can take an extra 'size_t' argument.
Alp Toker9cacbab2014-01-20 20:26:09 +00001207 if (FPT->getNumParams() == NumPlacementArgs + 2)
Eli Friedman43dca6a2011-05-02 17:57:46 +00001208 DeleteArgs.add(RValue::get(AllocSize), *AI++);
John McCall824c2f52010-09-14 07:57:04 +00001209
1210 // Pass the rest of the arguments, which must match exactly.
1211 for (unsigned I = 0; I != NumPlacementArgs; ++I)
Eli Friedman43dca6a2011-05-02 17:57:46 +00001212 DeleteArgs.add(getPlacementArgs()[I], *AI++);
John McCall824c2f52010-09-14 07:57:04 +00001213
1214 // Call 'operator delete'.
Richard Smith8d0dc312013-07-21 23:12:18 +00001215 EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs);
John McCall824c2f52010-09-14 07:57:04 +00001216 }
1217 };
John McCall7f9c92a2010-09-17 00:50:28 +00001218
1219 /// A cleanup to call the given 'operator delete' function upon
1220 /// abnormal exit from a new expression when the new expression is
1221 /// conditional.
David Blaikie7e70d682015-08-18 22:40:54 +00001222 class CallDeleteDuringConditionalNew final : public EHScopeStack::Cleanup {
John McCall7f9c92a2010-09-17 00:50:28 +00001223 size_t NumPlacementArgs;
1224 const FunctionDecl *OperatorDelete;
John McCallcb5f77f2011-01-28 10:53:53 +00001225 DominatingValue<RValue>::saved_type Ptr;
1226 DominatingValue<RValue>::saved_type AllocSize;
John McCall7f9c92a2010-09-17 00:50:28 +00001227
John McCallcb5f77f2011-01-28 10:53:53 +00001228 DominatingValue<RValue>::saved_type *getPlacementArgs() {
1229 return reinterpret_cast<DominatingValue<RValue>::saved_type*>(this+1);
John McCall7f9c92a2010-09-17 00:50:28 +00001230 }
1231
1232 public:
1233 static size_t getExtraSize(size_t NumPlacementArgs) {
John McCallcb5f77f2011-01-28 10:53:53 +00001234 return NumPlacementArgs * sizeof(DominatingValue<RValue>::saved_type);
John McCall7f9c92a2010-09-17 00:50:28 +00001235 }
1236
1237 CallDeleteDuringConditionalNew(size_t NumPlacementArgs,
1238 const FunctionDecl *OperatorDelete,
John McCallcb5f77f2011-01-28 10:53:53 +00001239 DominatingValue<RValue>::saved_type Ptr,
1240 DominatingValue<RValue>::saved_type AllocSize)
John McCall7f9c92a2010-09-17 00:50:28 +00001241 : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
1242 Ptr(Ptr), AllocSize(AllocSize) {}
1243
John McCallcb5f77f2011-01-28 10:53:53 +00001244 void setPlacementArg(unsigned I, DominatingValue<RValue>::saved_type Arg) {
John McCall7f9c92a2010-09-17 00:50:28 +00001245 assert(I < NumPlacementArgs && "index out of range");
1246 getPlacementArgs()[I] = Arg;
1247 }
1248
Craig Topper4f12f102014-03-12 06:41:41 +00001249 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall7f9c92a2010-09-17 00:50:28 +00001250 const FunctionProtoType *FPT
1251 = OperatorDelete->getType()->getAs<FunctionProtoType>();
Alp Toker9cacbab2014-01-20 20:26:09 +00001252 assert(FPT->getNumParams() == NumPlacementArgs + 1 ||
1253 (FPT->getNumParams() == 2 && NumPlacementArgs == 0));
John McCall7f9c92a2010-09-17 00:50:28 +00001254
1255 CallArgList DeleteArgs;
1256
1257 // The first argument is always a void*.
Alp Toker9cacbab2014-01-20 20:26:09 +00001258 FunctionProtoType::param_type_iterator AI = FPT->param_type_begin();
Eli Friedman43dca6a2011-05-02 17:57:46 +00001259 DeleteArgs.add(Ptr.restore(CGF), *AI++);
John McCall7f9c92a2010-09-17 00:50:28 +00001260
1261 // A member 'operator delete' can take an extra 'size_t' argument.
Alp Toker9cacbab2014-01-20 20:26:09 +00001262 if (FPT->getNumParams() == NumPlacementArgs + 2) {
John McCallcb5f77f2011-01-28 10:53:53 +00001263 RValue RV = AllocSize.restore(CGF);
Eli Friedman43dca6a2011-05-02 17:57:46 +00001264 DeleteArgs.add(RV, *AI++);
John McCall7f9c92a2010-09-17 00:50:28 +00001265 }
1266
1267 // Pass the rest of the arguments, which must match exactly.
1268 for (unsigned I = 0; I != NumPlacementArgs; ++I) {
John McCallcb5f77f2011-01-28 10:53:53 +00001269 RValue RV = getPlacementArgs()[I].restore(CGF);
Eli Friedman43dca6a2011-05-02 17:57:46 +00001270 DeleteArgs.add(RV, *AI++);
John McCall7f9c92a2010-09-17 00:50:28 +00001271 }
1272
1273 // Call 'operator delete'.
Richard Smith8d0dc312013-07-21 23:12:18 +00001274 EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs);
John McCall7f9c92a2010-09-17 00:50:28 +00001275 }
1276 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001277}
John McCall7f9c92a2010-09-17 00:50:28 +00001278
1279/// Enter a cleanup to call 'operator delete' if the initializer in a
1280/// new-expression throws.
1281static void EnterNewDeleteCleanup(CodeGenFunction &CGF,
1282 const CXXNewExpr *E,
John McCall7f416cc2015-09-08 08:05:57 +00001283 Address NewPtr,
John McCall7f9c92a2010-09-17 00:50:28 +00001284 llvm::Value *AllocSize,
1285 const CallArgList &NewArgs) {
1286 // If we're not inside a conditional branch, then the cleanup will
1287 // dominate and we can do the easier (and more efficient) thing.
1288 if (!CGF.isInConditionalBranch()) {
1289 CallDeleteDuringNew *Cleanup = CGF.EHStack
1290 .pushCleanupWithExtra<CallDeleteDuringNew>(EHCleanup,
1291 E->getNumPlacementArgs(),
1292 E->getOperatorDelete(),
John McCall7f416cc2015-09-08 08:05:57 +00001293 NewPtr.getPointer(),
1294 AllocSize);
John McCall7f9c92a2010-09-17 00:50:28 +00001295 for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
Eli Friedmanf4258eb2011-05-02 18:05:27 +00001296 Cleanup->setPlacementArg(I, NewArgs[I+1].RV);
John McCall7f9c92a2010-09-17 00:50:28 +00001297
1298 return;
1299 }
1300
1301 // Otherwise, we need to save all this stuff.
John McCallcb5f77f2011-01-28 10:53:53 +00001302 DominatingValue<RValue>::saved_type SavedNewPtr =
John McCall7f416cc2015-09-08 08:05:57 +00001303 DominatingValue<RValue>::save(CGF, RValue::get(NewPtr.getPointer()));
John McCallcb5f77f2011-01-28 10:53:53 +00001304 DominatingValue<RValue>::saved_type SavedAllocSize =
1305 DominatingValue<RValue>::save(CGF, RValue::get(AllocSize));
John McCall7f9c92a2010-09-17 00:50:28 +00001306
1307 CallDeleteDuringConditionalNew *Cleanup = CGF.EHStack
John McCallf4beacd2011-11-10 10:43:54 +00001308 .pushCleanupWithExtra<CallDeleteDuringConditionalNew>(EHCleanup,
John McCall7f9c92a2010-09-17 00:50:28 +00001309 E->getNumPlacementArgs(),
1310 E->getOperatorDelete(),
1311 SavedNewPtr,
1312 SavedAllocSize);
1313 for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
John McCallcb5f77f2011-01-28 10:53:53 +00001314 Cleanup->setPlacementArg(I,
Eli Friedmanf4258eb2011-05-02 18:05:27 +00001315 DominatingValue<RValue>::save(CGF, NewArgs[I+1].RV));
John McCall7f9c92a2010-09-17 00:50:28 +00001316
John McCallf4beacd2011-11-10 10:43:54 +00001317 CGF.initFullExprCleanup();
John McCall824c2f52010-09-14 07:57:04 +00001318}
1319
Anders Carlssoncc52f652009-09-22 22:53:17 +00001320llvm::Value *CodeGenFunction::EmitCXXNewExpr(const CXXNewExpr *E) {
John McCall75f94982011-03-07 03:12:35 +00001321 // The element type being allocated.
1322 QualType allocType = getContext().getBaseElementType(E->getAllocatedType());
John McCall8ed55a52010-09-02 09:58:18 +00001323
John McCall75f94982011-03-07 03:12:35 +00001324 // 1. Build a call to the allocation function.
1325 FunctionDecl *allocator = E->getOperatorNew();
Anders Carlssoncc52f652009-09-22 22:53:17 +00001326
Sebastian Redlf862eb62012-02-22 17:37:52 +00001327 // If there is a brace-initializer, cannot allocate fewer elements than inits.
1328 unsigned minElements = 0;
1329 if (E->isArray() && E->hasInitializer()) {
1330 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(E->getInitializer()))
1331 minElements = ILE->getNumInits();
1332 }
1333
Craig Topper8a13c412014-05-21 05:09:00 +00001334 llvm::Value *numElements = nullptr;
1335 llvm::Value *allocSizeWithoutCookie = nullptr;
John McCall75f94982011-03-07 03:12:35 +00001336 llvm::Value *allocSize =
Sebastian Redlf862eb62012-02-22 17:37:52 +00001337 EmitCXXNewAllocSize(*this, E, minElements, numElements,
1338 allocSizeWithoutCookie);
Alexey Samsonovcbe875a2014-08-28 00:22:11 +00001339
John McCall7ec4b432011-05-16 01:05:12 +00001340 // Emit the allocation call. If the allocator is a global placement
1341 // operator, just "inline" it directly.
John McCall7f416cc2015-09-08 08:05:57 +00001342 Address allocation = Address::invalid();
1343 CallArgList allocatorArgs;
John McCall7ec4b432011-05-16 01:05:12 +00001344 if (allocator->isReservedGlobalPlacementOperator()) {
John McCall53dcf942015-09-29 23:55:17 +00001345 assert(E->getNumPlacementArgs() == 1);
1346 const Expr *arg = *E->placement_arguments().begin();
1347
John McCall7f416cc2015-09-08 08:05:57 +00001348 AlignmentSource alignSource;
John McCall53dcf942015-09-29 23:55:17 +00001349 allocation = EmitPointerWithAlignment(arg, &alignSource);
John McCall7f416cc2015-09-08 08:05:57 +00001350
1351 // The pointer expression will, in many cases, be an opaque void*.
1352 // In these cases, discard the computed alignment and use the
1353 // formal alignment of the allocated type.
1354 if (alignSource != AlignmentSource::Decl) {
1355 allocation = Address(allocation.getPointer(),
1356 getContext().getTypeAlignInChars(allocType));
1357 }
1358
John McCall53dcf942015-09-29 23:55:17 +00001359 // Set up allocatorArgs for the call to operator delete if it's not
1360 // the reserved global operator.
1361 if (E->getOperatorDelete() &&
1362 !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) {
1363 allocatorArgs.add(RValue::get(allocSize), getContext().getSizeType());
1364 allocatorArgs.add(RValue::get(allocation.getPointer()), arg->getType());
1365 }
1366
John McCall7ec4b432011-05-16 01:05:12 +00001367 } else {
John McCall7f416cc2015-09-08 08:05:57 +00001368 const FunctionProtoType *allocatorType =
1369 allocator->getType()->castAs<FunctionProtoType>();
1370
1371 // The allocation size is the first argument.
1372 QualType sizeType = getContext().getSizeType();
1373 allocatorArgs.add(RValue::get(allocSize), sizeType);
1374
1375 // We start at 1 here because the first argument (the allocation size)
1376 // has already been emitted.
1377 EmitCallArgs(allocatorArgs, allocatorType, E->placement_arguments(),
1378 /* CalleeDecl */ nullptr,
1379 /*ParamsToSkip*/ 1);
1380
1381 RValue RV =
1382 EmitNewDeleteCall(*this, allocator, allocatorType, allocatorArgs);
1383
1384 // For now, only assume that the allocation function returns
1385 // something satisfactorily aligned for the element type, plus
1386 // the cookie if we have one.
1387 CharUnits allocationAlign =
1388 getContext().getTypeAlignInChars(allocType);
1389 if (allocSize != allocSizeWithoutCookie) {
1390 CharUnits cookieAlign = getSizeAlign(); // FIXME?
1391 allocationAlign = std::max(allocationAlign, cookieAlign);
1392 }
1393
1394 allocation = Address(RV.getScalarVal(), allocationAlign);
John McCall7ec4b432011-05-16 01:05:12 +00001395 }
Anders Carlssoncc52f652009-09-22 22:53:17 +00001396
John McCall75f94982011-03-07 03:12:35 +00001397 // Emit a null check on the allocation result if the allocation
1398 // function is allowed to return null (because it has a non-throwing
Richard Smith902a0232015-02-14 01:52:20 +00001399 // exception spec or is the reserved placement new) and we have an
John McCall75f94982011-03-07 03:12:35 +00001400 // interesting initializer.
Richard Smith902a0232015-02-14 01:52:20 +00001401 bool nullCheck = E->shouldNullCheckAllocation(getContext()) &&
Sebastian Redl6047f072012-02-16 12:22:20 +00001402 (!allocType.isPODType(getContext()) || E->hasInitializer());
Anders Carlssoncc52f652009-09-22 22:53:17 +00001403
Craig Topper8a13c412014-05-21 05:09:00 +00001404 llvm::BasicBlock *nullCheckBB = nullptr;
1405 llvm::BasicBlock *contBB = nullptr;
Anders Carlssoncc52f652009-09-22 22:53:17 +00001406
John McCallf7dcf322011-03-07 01:52:56 +00001407 // The null-check means that the initializer is conditionally
1408 // evaluated.
1409 ConditionalEvaluation conditional(*this);
1410
John McCall75f94982011-03-07 03:12:35 +00001411 if (nullCheck) {
John McCallf7dcf322011-03-07 01:52:56 +00001412 conditional.begin(*this);
John McCall75f94982011-03-07 03:12:35 +00001413
1414 nullCheckBB = Builder.GetInsertBlock();
1415 llvm::BasicBlock *notNullBB = createBasicBlock("new.notnull");
1416 contBB = createBasicBlock("new.cont");
1417
John McCall7f416cc2015-09-08 08:05:57 +00001418 llvm::Value *isNull =
1419 Builder.CreateIsNull(allocation.getPointer(), "new.isnull");
John McCall75f94982011-03-07 03:12:35 +00001420 Builder.CreateCondBr(isNull, contBB, notNullBB);
1421 EmitBlock(notNullBB);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001422 }
Anders Carlssonf7716812009-09-23 18:59:48 +00001423
John McCall824c2f52010-09-14 07:57:04 +00001424 // If there's an operator delete, enter a cleanup to call it if an
1425 // exception is thrown.
John McCall75f94982011-03-07 03:12:35 +00001426 EHScopeStack::stable_iterator operatorDeleteCleanup;
Craig Topper8a13c412014-05-21 05:09:00 +00001427 llvm::Instruction *cleanupDominator = nullptr;
John McCall7ec4b432011-05-16 01:05:12 +00001428 if (E->getOperatorDelete() &&
1429 !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) {
John McCall75f94982011-03-07 03:12:35 +00001430 EnterNewDeleteCleanup(*this, E, allocation, allocSize, allocatorArgs);
1431 operatorDeleteCleanup = EHStack.stable_begin();
John McCallf4beacd2011-11-10 10:43:54 +00001432 cleanupDominator = Builder.CreateUnreachable();
John McCall824c2f52010-09-14 07:57:04 +00001433 }
1434
Eli Friedmancf9b1f62011-09-06 18:53:03 +00001435 assert((allocSize == allocSizeWithoutCookie) ==
1436 CalculateCookiePadding(*this, E).isZero());
1437 if (allocSize != allocSizeWithoutCookie) {
1438 assert(E->isArray());
1439 allocation = CGM.getCXXABI().InitializeArrayCookie(*this, allocation,
1440 numElements,
1441 E, allocType);
1442 }
1443
David Blaikiefb901c7a2015-04-04 15:12:29 +00001444 llvm::Type *elementTy = ConvertTypeForMem(allocType);
John McCall7f416cc2015-09-08 08:05:57 +00001445 Address result = Builder.CreateElementBitCast(allocation, elementTy);
John McCall824c2f52010-09-14 07:57:04 +00001446
Piotr Padlewski338c9d02015-09-15 21:46:47 +00001447 // Passing pointer through invariant.group.barrier to avoid propagation of
1448 // vptrs information which may be included in previous type.
1449 if (CGM.getCodeGenOpts().StrictVTablePointers &&
1450 CGM.getCodeGenOpts().OptimizationLevel > 0 &&
1451 allocator->isReservedGlobalPlacementOperator())
1452 result = Address(Builder.CreateInvariantGroupBarrier(result.getPointer()),
1453 result.getAlignment());
1454
David Blaikiefb901c7a2015-04-04 15:12:29 +00001455 EmitNewInitializer(*this, E, allocType, elementTy, result, numElements,
John McCall99210dc2011-09-15 06:49:18 +00001456 allocSizeWithoutCookie);
John McCall8ed55a52010-09-02 09:58:18 +00001457 if (E->isArray()) {
John McCall8ed55a52010-09-02 09:58:18 +00001458 // NewPtr is a pointer to the base element type. If we're
1459 // allocating an array of arrays, we'll need to cast back to the
1460 // array pointer type.
Chris Lattner2192fe52011-07-18 04:24:23 +00001461 llvm::Type *resultType = ConvertTypeForMem(E->getType());
John McCall7f416cc2015-09-08 08:05:57 +00001462 if (result.getType() != resultType)
John McCall75f94982011-03-07 03:12:35 +00001463 result = Builder.CreateBitCast(result, resultType);
Fariborz Jahanian47b46292010-03-24 16:57:01 +00001464 }
John McCall824c2f52010-09-14 07:57:04 +00001465
1466 // Deactivate the 'operator delete' cleanup if we finished
1467 // initialization.
John McCallf4beacd2011-11-10 10:43:54 +00001468 if (operatorDeleteCleanup.isValid()) {
1469 DeactivateCleanupBlock(operatorDeleteCleanup, cleanupDominator);
1470 cleanupDominator->eraseFromParent();
1471 }
Sebastian Redl6047f072012-02-16 12:22:20 +00001472
John McCall7f416cc2015-09-08 08:05:57 +00001473 llvm::Value *resultPtr = result.getPointer();
John McCall75f94982011-03-07 03:12:35 +00001474 if (nullCheck) {
John McCallf7dcf322011-03-07 01:52:56 +00001475 conditional.end(*this);
1476
John McCall75f94982011-03-07 03:12:35 +00001477 llvm::BasicBlock *notNullBB = Builder.GetInsertBlock();
1478 EmitBlock(contBB);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001479
John McCall7f416cc2015-09-08 08:05:57 +00001480 llvm::PHINode *PHI = Builder.CreatePHI(resultPtr->getType(), 2);
1481 PHI->addIncoming(resultPtr, notNullBB);
1482 PHI->addIncoming(llvm::Constant::getNullValue(resultPtr->getType()),
John McCall75f94982011-03-07 03:12:35 +00001483 nullCheckBB);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001484
John McCall7f416cc2015-09-08 08:05:57 +00001485 resultPtr = PHI;
Anders Carlssoncc52f652009-09-22 22:53:17 +00001486 }
John McCall8ed55a52010-09-02 09:58:18 +00001487
John McCall7f416cc2015-09-08 08:05:57 +00001488 return resultPtr;
Anders Carlssoncc52f652009-09-22 22:53:17 +00001489}
1490
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001491void CodeGenFunction::EmitDeleteCall(const FunctionDecl *DeleteFD,
1492 llvm::Value *Ptr,
1493 QualType DeleteTy) {
John McCall8ed55a52010-09-02 09:58:18 +00001494 assert(DeleteFD->getOverloadedOperator() == OO_Delete);
1495
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001496 const FunctionProtoType *DeleteFTy =
1497 DeleteFD->getType()->getAs<FunctionProtoType>();
1498
1499 CallArgList DeleteArgs;
1500
Anders Carlsson21122cf2009-12-13 20:04:38 +00001501 // Check if we need to pass the size to the delete operator.
Craig Topper8a13c412014-05-21 05:09:00 +00001502 llvm::Value *Size = nullptr;
Anders Carlsson21122cf2009-12-13 20:04:38 +00001503 QualType SizeTy;
Alp Toker9cacbab2014-01-20 20:26:09 +00001504 if (DeleteFTy->getNumParams() == 2) {
1505 SizeTy = DeleteFTy->getParamType(1);
Ken Dyck7df3cbe2010-01-26 19:59:28 +00001506 CharUnits DeleteTypeSize = getContext().getTypeSizeInChars(DeleteTy);
1507 Size = llvm::ConstantInt::get(ConvertType(SizeTy),
1508 DeleteTypeSize.getQuantity());
Anders Carlsson21122cf2009-12-13 20:04:38 +00001509 }
Alp Toker9cacbab2014-01-20 20:26:09 +00001510
1511 QualType ArgTy = DeleteFTy->getParamType(0);
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001512 llvm::Value *DeletePtr = Builder.CreateBitCast(Ptr, ConvertType(ArgTy));
Eli Friedman43dca6a2011-05-02 17:57:46 +00001513 DeleteArgs.add(RValue::get(DeletePtr), ArgTy);
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001514
Anders Carlsson21122cf2009-12-13 20:04:38 +00001515 if (Size)
Eli Friedman43dca6a2011-05-02 17:57:46 +00001516 DeleteArgs.add(RValue::get(Size), SizeTy);
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001517
1518 // Emit the call to delete.
Richard Smith8d0dc312013-07-21 23:12:18 +00001519 EmitNewDeleteCall(*this, DeleteFD, DeleteFTy, DeleteArgs);
Eli Friedmanfe81e3f2009-11-18 00:50:08 +00001520}
1521
John McCall8ed55a52010-09-02 09:58:18 +00001522namespace {
1523 /// Calls the given 'operator delete' on a single object.
David Blaikie7e70d682015-08-18 22:40:54 +00001524 struct CallObjectDelete final : EHScopeStack::Cleanup {
John McCall8ed55a52010-09-02 09:58:18 +00001525 llvm::Value *Ptr;
1526 const FunctionDecl *OperatorDelete;
1527 QualType ElementType;
1528
1529 CallObjectDelete(llvm::Value *Ptr,
1530 const FunctionDecl *OperatorDelete,
1531 QualType ElementType)
1532 : Ptr(Ptr), OperatorDelete(OperatorDelete), ElementType(ElementType) {}
1533
Craig Topper4f12f102014-03-12 06:41:41 +00001534 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall8ed55a52010-09-02 09:58:18 +00001535 CGF.EmitDeleteCall(OperatorDelete, Ptr, ElementType);
1536 }
1537 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001538}
John McCall8ed55a52010-09-02 09:58:18 +00001539
David Majnemer0c0b6d92014-10-31 20:09:12 +00001540void
1541CodeGenFunction::pushCallObjectDeleteCleanup(const FunctionDecl *OperatorDelete,
1542 llvm::Value *CompletePtr,
1543 QualType ElementType) {
1544 EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup, CompletePtr,
1545 OperatorDelete, ElementType);
1546}
1547
John McCall8ed55a52010-09-02 09:58:18 +00001548/// Emit the code for deleting a single object.
1549static void EmitObjectDelete(CodeGenFunction &CGF,
David Majnemer08681372014-11-01 07:37:17 +00001550 const CXXDeleteExpr *DE,
John McCall7f416cc2015-09-08 08:05:57 +00001551 Address Ptr,
David Majnemer08681372014-11-01 07:37:17 +00001552 QualType ElementType) {
John McCall8ed55a52010-09-02 09:58:18 +00001553 // Find the destructor for the type, if applicable. If the
1554 // destructor is virtual, we'll just emit the vcall and return.
Craig Topper8a13c412014-05-21 05:09:00 +00001555 const CXXDestructorDecl *Dtor = nullptr;
John McCall8ed55a52010-09-02 09:58:18 +00001556 if (const RecordType *RT = ElementType->getAs<RecordType>()) {
1557 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Eli Friedmanb23533d2011-08-02 18:05:30 +00001558 if (RD->hasDefinition() && !RD->hasTrivialDestructor()) {
John McCall8ed55a52010-09-02 09:58:18 +00001559 Dtor = RD->getDestructor();
1560
1561 if (Dtor->isVirtual()) {
David Majnemer08681372014-11-01 07:37:17 +00001562 CGF.CGM.getCXXABI().emitVirtualObjectDelete(CGF, DE, Ptr, ElementType,
1563 Dtor);
John McCall8ed55a52010-09-02 09:58:18 +00001564 return;
1565 }
1566 }
1567 }
1568
1569 // Make sure that we call delete even if the dtor throws.
John McCalle4df6c82011-01-28 08:37:24 +00001570 // This doesn't have to a conditional cleanup because we're going
1571 // to pop it off in a second.
David Majnemer08681372014-11-01 07:37:17 +00001572 const FunctionDecl *OperatorDelete = DE->getOperatorDelete();
John McCall8ed55a52010-09-02 09:58:18 +00001573 CGF.EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup,
John McCall7f416cc2015-09-08 08:05:57 +00001574 Ptr.getPointer(),
1575 OperatorDelete, ElementType);
John McCall8ed55a52010-09-02 09:58:18 +00001576
1577 if (Dtor)
1578 CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete,
Douglas Gregor61535002013-01-31 05:50:40 +00001579 /*ForVirtualBase=*/false,
1580 /*Delegating=*/false,
1581 Ptr);
John McCall460ce582015-10-22 18:38:17 +00001582 else if (auto Lifetime = ElementType.getObjCLifetime()) {
1583 switch (Lifetime) {
John McCall31168b02011-06-15 23:02:42 +00001584 case Qualifiers::OCL_None:
1585 case Qualifiers::OCL_ExplicitNone:
1586 case Qualifiers::OCL_Autoreleasing:
1587 break;
John McCall8ed55a52010-09-02 09:58:18 +00001588
John McCall7f416cc2015-09-08 08:05:57 +00001589 case Qualifiers::OCL_Strong:
1590 CGF.EmitARCDestroyStrong(Ptr, ARCPreciseLifetime);
John McCall31168b02011-06-15 23:02:42 +00001591 break;
John McCall31168b02011-06-15 23:02:42 +00001592
1593 case Qualifiers::OCL_Weak:
1594 CGF.EmitARCDestroyWeak(Ptr);
1595 break;
1596 }
1597 }
1598
John McCall8ed55a52010-09-02 09:58:18 +00001599 CGF.PopCleanupBlock();
1600}
1601
1602namespace {
1603 /// Calls the given 'operator delete' on an array of objects.
David Blaikie7e70d682015-08-18 22:40:54 +00001604 struct CallArrayDelete final : EHScopeStack::Cleanup {
John McCall8ed55a52010-09-02 09:58:18 +00001605 llvm::Value *Ptr;
1606 const FunctionDecl *OperatorDelete;
1607 llvm::Value *NumElements;
1608 QualType ElementType;
1609 CharUnits CookieSize;
1610
1611 CallArrayDelete(llvm::Value *Ptr,
1612 const FunctionDecl *OperatorDelete,
1613 llvm::Value *NumElements,
1614 QualType ElementType,
1615 CharUnits CookieSize)
1616 : Ptr(Ptr), OperatorDelete(OperatorDelete), NumElements(NumElements),
1617 ElementType(ElementType), CookieSize(CookieSize) {}
1618
Craig Topper4f12f102014-03-12 06:41:41 +00001619 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall8ed55a52010-09-02 09:58:18 +00001620 const FunctionProtoType *DeleteFTy =
1621 OperatorDelete->getType()->getAs<FunctionProtoType>();
Alp Toker9cacbab2014-01-20 20:26:09 +00001622 assert(DeleteFTy->getNumParams() == 1 || DeleteFTy->getNumParams() == 2);
John McCall8ed55a52010-09-02 09:58:18 +00001623
1624 CallArgList Args;
1625
1626 // Pass the pointer as the first argument.
Alp Toker9cacbab2014-01-20 20:26:09 +00001627 QualType VoidPtrTy = DeleteFTy->getParamType(0);
John McCall8ed55a52010-09-02 09:58:18 +00001628 llvm::Value *DeletePtr
1629 = CGF.Builder.CreateBitCast(Ptr, CGF.ConvertType(VoidPtrTy));
Eli Friedman43dca6a2011-05-02 17:57:46 +00001630 Args.add(RValue::get(DeletePtr), VoidPtrTy);
John McCall8ed55a52010-09-02 09:58:18 +00001631
1632 // Pass the original requested size as the second argument.
Alp Toker9cacbab2014-01-20 20:26:09 +00001633 if (DeleteFTy->getNumParams() == 2) {
1634 QualType size_t = DeleteFTy->getParamType(1);
Chris Lattner2192fe52011-07-18 04:24:23 +00001635 llvm::IntegerType *SizeTy
John McCall8ed55a52010-09-02 09:58:18 +00001636 = cast<llvm::IntegerType>(CGF.ConvertType(size_t));
1637
1638 CharUnits ElementTypeSize =
1639 CGF.CGM.getContext().getTypeSizeInChars(ElementType);
1640
1641 // The size of an element, multiplied by the number of elements.
1642 llvm::Value *Size
1643 = llvm::ConstantInt::get(SizeTy, ElementTypeSize.getQuantity());
David Majnemer149e6032015-06-30 03:30:26 +00001644 if (NumElements)
1645 Size = CGF.Builder.CreateMul(Size, NumElements);
John McCall8ed55a52010-09-02 09:58:18 +00001646
1647 // Plus the size of the cookie if applicable.
1648 if (!CookieSize.isZero()) {
1649 llvm::Value *CookieSizeV
1650 = llvm::ConstantInt::get(SizeTy, CookieSize.getQuantity());
1651 Size = CGF.Builder.CreateAdd(Size, CookieSizeV);
1652 }
1653
Eli Friedman43dca6a2011-05-02 17:57:46 +00001654 Args.add(RValue::get(Size), size_t);
John McCall8ed55a52010-09-02 09:58:18 +00001655 }
1656
1657 // Emit the call to delete.
Richard Smith8d0dc312013-07-21 23:12:18 +00001658 EmitNewDeleteCall(CGF, OperatorDelete, DeleteFTy, Args);
John McCall8ed55a52010-09-02 09:58:18 +00001659 }
1660 };
Alexander Kornienkoab9db512015-06-22 23:07:51 +00001661}
John McCall8ed55a52010-09-02 09:58:18 +00001662
1663/// Emit the code for deleting an array of objects.
1664static void EmitArrayDelete(CodeGenFunction &CGF,
John McCall284c48f2011-01-27 09:37:56 +00001665 const CXXDeleteExpr *E,
John McCall7f416cc2015-09-08 08:05:57 +00001666 Address deletedPtr,
John McCallca2c56f2011-07-13 01:41:37 +00001667 QualType elementType) {
Craig Topper8a13c412014-05-21 05:09:00 +00001668 llvm::Value *numElements = nullptr;
1669 llvm::Value *allocatedPtr = nullptr;
John McCallca2c56f2011-07-13 01:41:37 +00001670 CharUnits cookieSize;
1671 CGF.CGM.getCXXABI().ReadArrayCookie(CGF, deletedPtr, E, elementType,
1672 numElements, allocatedPtr, cookieSize);
John McCall8ed55a52010-09-02 09:58:18 +00001673
John McCallca2c56f2011-07-13 01:41:37 +00001674 assert(allocatedPtr && "ReadArrayCookie didn't set allocated pointer");
John McCall8ed55a52010-09-02 09:58:18 +00001675
1676 // Make sure that we call delete even if one of the dtors throws.
John McCallca2c56f2011-07-13 01:41:37 +00001677 const FunctionDecl *operatorDelete = E->getOperatorDelete();
John McCall8ed55a52010-09-02 09:58:18 +00001678 CGF.EHStack.pushCleanup<CallArrayDelete>(NormalAndEHCleanup,
John McCallca2c56f2011-07-13 01:41:37 +00001679 allocatedPtr, operatorDelete,
1680 numElements, elementType,
1681 cookieSize);
John McCall8ed55a52010-09-02 09:58:18 +00001682
John McCallca2c56f2011-07-13 01:41:37 +00001683 // Destroy the elements.
1684 if (QualType::DestructionKind dtorKind = elementType.isDestructedType()) {
1685 assert(numElements && "no element count for a type with a destructor!");
1686
John McCall7f416cc2015-09-08 08:05:57 +00001687 CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType);
1688 CharUnits elementAlign =
1689 deletedPtr.getAlignment().alignmentOfArrayElement(elementSize);
1690
1691 llvm::Value *arrayBegin = deletedPtr.getPointer();
John McCallca2c56f2011-07-13 01:41:37 +00001692 llvm::Value *arrayEnd =
John McCall7f416cc2015-09-08 08:05:57 +00001693 CGF.Builder.CreateInBoundsGEP(arrayBegin, numElements, "delete.end");
John McCall97eab0a2011-07-13 08:09:46 +00001694
1695 // Note that it is legal to allocate a zero-length array, and we
1696 // can never fold the check away because the length should always
1697 // come from a cookie.
John McCall7f416cc2015-09-08 08:05:57 +00001698 CGF.emitArrayDestroy(arrayBegin, arrayEnd, elementType, elementAlign,
John McCallca2c56f2011-07-13 01:41:37 +00001699 CGF.getDestroyer(dtorKind),
John McCall97eab0a2011-07-13 08:09:46 +00001700 /*checkZeroLength*/ true,
John McCallca2c56f2011-07-13 01:41:37 +00001701 CGF.needsEHCleanup(dtorKind));
John McCall8ed55a52010-09-02 09:58:18 +00001702 }
1703
John McCallca2c56f2011-07-13 01:41:37 +00001704 // Pop the cleanup block.
John McCall8ed55a52010-09-02 09:58:18 +00001705 CGF.PopCleanupBlock();
1706}
1707
Anders Carlssoncc52f652009-09-22 22:53:17 +00001708void CodeGenFunction::EmitCXXDeleteExpr(const CXXDeleteExpr *E) {
Douglas Gregorbb3e12f2009-09-29 18:16:17 +00001709 const Expr *Arg = E->getArgument();
John McCall7f416cc2015-09-08 08:05:57 +00001710 Address Ptr = EmitPointerWithAlignment(Arg);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001711
1712 // Null check the pointer.
1713 llvm::BasicBlock *DeleteNotNull = createBasicBlock("delete.notnull");
1714 llvm::BasicBlock *DeleteEnd = createBasicBlock("delete.end");
1715
John McCall7f416cc2015-09-08 08:05:57 +00001716 llvm::Value *IsNull = Builder.CreateIsNull(Ptr.getPointer(), "isnull");
Anders Carlssoncc52f652009-09-22 22:53:17 +00001717
1718 Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull);
1719 EmitBlock(DeleteNotNull);
Anders Carlssone828c362009-11-13 04:45:41 +00001720
John McCall8ed55a52010-09-02 09:58:18 +00001721 // We might be deleting a pointer to array. If so, GEP down to the
1722 // first non-array element.
1723 // (this assumes that A(*)[3][7] is converted to [3 x [7 x %A]]*)
1724 QualType DeleteTy = Arg->getType()->getAs<PointerType>()->getPointeeType();
1725 if (DeleteTy->isConstantArrayType()) {
1726 llvm::Value *Zero = Builder.getInt32(0);
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001727 SmallVector<llvm::Value*,8> GEP;
John McCall8ed55a52010-09-02 09:58:18 +00001728
1729 GEP.push_back(Zero); // point at the outermost array
1730
1731 // For each layer of array type we're pointing at:
1732 while (const ConstantArrayType *Arr
1733 = getContext().getAsConstantArrayType(DeleteTy)) {
1734 // 1. Unpeel the array type.
1735 DeleteTy = Arr->getElementType();
1736
1737 // 2. GEP to the first element of the array.
1738 GEP.push_back(Zero);
Anders Carlssoncc52f652009-09-22 22:53:17 +00001739 }
John McCall8ed55a52010-09-02 09:58:18 +00001740
John McCall7f416cc2015-09-08 08:05:57 +00001741 Ptr = Address(Builder.CreateInBoundsGEP(Ptr.getPointer(), GEP, "del.first"),
1742 Ptr.getAlignment());
Anders Carlssoncc52f652009-09-22 22:53:17 +00001743 }
1744
John McCall7f416cc2015-09-08 08:05:57 +00001745 assert(ConvertTypeForMem(DeleteTy) == Ptr.getElementType());
John McCall8ed55a52010-09-02 09:58:18 +00001746
Reid Kleckner7270ef52015-03-19 17:03:58 +00001747 if (E->isArrayForm()) {
1748 EmitArrayDelete(*this, E, Ptr, DeleteTy);
1749 } else {
1750 EmitObjectDelete(*this, E, Ptr, DeleteTy);
1751 }
Anders Carlssoncc52f652009-09-22 22:53:17 +00001752
Anders Carlssoncc52f652009-09-22 22:53:17 +00001753 EmitBlock(DeleteEnd);
1754}
Mike Stumpc9b231c2009-11-15 08:09:41 +00001755
David Majnemer1c3d95e2014-07-19 00:17:06 +00001756static bool isGLValueFromPointerDeref(const Expr *E) {
1757 E = E->IgnoreParens();
1758
1759 if (const auto *CE = dyn_cast<CastExpr>(E)) {
1760 if (!CE->getSubExpr()->isGLValue())
1761 return false;
1762 return isGLValueFromPointerDeref(CE->getSubExpr());
1763 }
1764
1765 if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E))
1766 return isGLValueFromPointerDeref(OVE->getSourceExpr());
1767
1768 if (const auto *BO = dyn_cast<BinaryOperator>(E))
1769 if (BO->getOpcode() == BO_Comma)
1770 return isGLValueFromPointerDeref(BO->getRHS());
1771
1772 if (const auto *ACO = dyn_cast<AbstractConditionalOperator>(E))
1773 return isGLValueFromPointerDeref(ACO->getTrueExpr()) ||
1774 isGLValueFromPointerDeref(ACO->getFalseExpr());
1775
1776 // C++11 [expr.sub]p1:
1777 // The expression E1[E2] is identical (by definition) to *((E1)+(E2))
1778 if (isa<ArraySubscriptExpr>(E))
1779 return true;
1780
1781 if (const auto *UO = dyn_cast<UnaryOperator>(E))
1782 if (UO->getOpcode() == UO_Deref)
1783 return true;
1784
1785 return false;
1786}
1787
Warren Hunt747e3012014-06-18 21:15:55 +00001788static llvm::Value *EmitTypeidFromVTable(CodeGenFunction &CGF, const Expr *E,
Chris Lattner2192fe52011-07-18 04:24:23 +00001789 llvm::Type *StdTypeInfoPtrTy) {
Anders Carlsson940f02d2011-04-18 00:57:03 +00001790 // Get the vtable pointer.
John McCall7f416cc2015-09-08 08:05:57 +00001791 Address ThisPtr = CGF.EmitLValue(E).getAddress();
Anders Carlsson940f02d2011-04-18 00:57:03 +00001792
1793 // C++ [expr.typeid]p2:
1794 // If the glvalue expression is obtained by applying the unary * operator to
1795 // a pointer and the pointer is a null pointer value, the typeid expression
1796 // throws the std::bad_typeid exception.
David Majnemer1c3d95e2014-07-19 00:17:06 +00001797 //
1798 // However, this paragraph's intent is not clear. We choose a very generous
1799 // interpretation which implores us to consider comma operators, conditional
1800 // operators, parentheses and other such constructs.
David Majnemer1162d252014-06-22 19:05:33 +00001801 QualType SrcRecordTy = E->getType();
David Majnemer1c3d95e2014-07-19 00:17:06 +00001802 if (CGF.CGM.getCXXABI().shouldTypeidBeNullChecked(
1803 isGLValueFromPointerDeref(E), SrcRecordTy)) {
David Majnemer1162d252014-06-22 19:05:33 +00001804 llvm::BasicBlock *BadTypeidBlock =
Anders Carlsson940f02d2011-04-18 00:57:03 +00001805 CGF.createBasicBlock("typeid.bad_typeid");
David Majnemer1162d252014-06-22 19:05:33 +00001806 llvm::BasicBlock *EndBlock = CGF.createBasicBlock("typeid.end");
Anders Carlsson940f02d2011-04-18 00:57:03 +00001807
John McCall7f416cc2015-09-08 08:05:57 +00001808 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ThisPtr.getPointer());
David Majnemer1162d252014-06-22 19:05:33 +00001809 CGF.Builder.CreateCondBr(IsNull, BadTypeidBlock, EndBlock);
Anders Carlsson940f02d2011-04-18 00:57:03 +00001810
David Majnemer1162d252014-06-22 19:05:33 +00001811 CGF.EmitBlock(BadTypeidBlock);
1812 CGF.CGM.getCXXABI().EmitBadTypeidCall(CGF);
1813 CGF.EmitBlock(EndBlock);
Anders Carlsson940f02d2011-04-18 00:57:03 +00001814 }
1815
David Majnemer1162d252014-06-22 19:05:33 +00001816 return CGF.CGM.getCXXABI().EmitTypeid(CGF, SrcRecordTy, ThisPtr,
1817 StdTypeInfoPtrTy);
Anders Carlsson940f02d2011-04-18 00:57:03 +00001818}
1819
John McCalle4df6c82011-01-28 08:37:24 +00001820llvm::Value *CodeGenFunction::EmitCXXTypeidExpr(const CXXTypeidExpr *E) {
Chris Lattner2192fe52011-07-18 04:24:23 +00001821 llvm::Type *StdTypeInfoPtrTy =
Anders Carlsson940f02d2011-04-18 00:57:03 +00001822 ConvertType(E->getType())->getPointerTo();
Anders Carlssonfd7dfeb2009-12-11 02:46:30 +00001823
Anders Carlsson3f4336c2009-12-17 07:09:17 +00001824 if (E->isTypeOperand()) {
David Majnemer143c55e2013-09-27 07:04:31 +00001825 llvm::Constant *TypeInfo =
1826 CGM.GetAddrOfRTTIDescriptor(E->getTypeOperand(getContext()));
Anders Carlsson940f02d2011-04-18 00:57:03 +00001827 return Builder.CreateBitCast(TypeInfo, StdTypeInfoPtrTy);
Anders Carlsson3f4336c2009-12-17 07:09:17 +00001828 }
Anders Carlsson0c633502011-04-11 14:13:40 +00001829
Anders Carlsson940f02d2011-04-18 00:57:03 +00001830 // C++ [expr.typeid]p2:
1831 // When typeid is applied to a glvalue expression whose type is a
1832 // polymorphic class type, the result refers to a std::type_info object
1833 // representing the type of the most derived object (that is, the dynamic
1834 // type) to which the glvalue refers.
Richard Smithef8bf432012-08-13 20:08:14 +00001835 if (E->isPotentiallyEvaluated())
1836 return EmitTypeidFromVTable(*this, E->getExprOperand(),
1837 StdTypeInfoPtrTy);
Anders Carlsson940f02d2011-04-18 00:57:03 +00001838
1839 QualType OperandTy = E->getExprOperand()->getType();
1840 return Builder.CreateBitCast(CGM.GetAddrOfRTTIDescriptor(OperandTy),
1841 StdTypeInfoPtrTy);
Mike Stumpc9b231c2009-11-15 08:09:41 +00001842}
Mike Stump65511702009-11-16 06:50:58 +00001843
Anders Carlssonc1c99712011-04-11 01:45:29 +00001844static llvm::Value *EmitDynamicCastToNull(CodeGenFunction &CGF,
1845 QualType DestTy) {
Chris Lattner2192fe52011-07-18 04:24:23 +00001846 llvm::Type *DestLTy = CGF.ConvertType(DestTy);
Anders Carlssonc1c99712011-04-11 01:45:29 +00001847 if (DestTy->isPointerType())
1848 return llvm::Constant::getNullValue(DestLTy);
1849
1850 /// C++ [expr.dynamic.cast]p9:
1851 /// A failed cast to reference type throws std::bad_cast
David Majnemer1162d252014-06-22 19:05:33 +00001852 if (!CGF.CGM.getCXXABI().EmitBadCastCall(CGF))
1853 return nullptr;
Anders Carlssonc1c99712011-04-11 01:45:29 +00001854
1855 CGF.EmitBlock(CGF.createBasicBlock("dynamic_cast.end"));
1856 return llvm::UndefValue::get(DestLTy);
1857}
1858
John McCall7f416cc2015-09-08 08:05:57 +00001859llvm::Value *CodeGenFunction::EmitDynamicCast(Address ThisAddr,
Mike Stump65511702009-11-16 06:50:58 +00001860 const CXXDynamicCastExpr *DCE) {
Alexey Bataev2bf9b4c2015-10-20 04:24:12 +00001861 CGM.EmitExplicitCastExprType(DCE, this);
Anders Carlsson3f4336c2009-12-17 07:09:17 +00001862 QualType DestTy = DCE->getTypeAsWritten();
Anders Carlsson882d7902011-04-11 00:46:40 +00001863
Anders Carlssonc1c99712011-04-11 01:45:29 +00001864 if (DCE->isAlwaysNull())
David Majnemer1162d252014-06-22 19:05:33 +00001865 if (llvm::Value *T = EmitDynamicCastToNull(*this, DestTy))
1866 return T;
Anders Carlssonc1c99712011-04-11 01:45:29 +00001867
1868 QualType SrcTy = DCE->getSubExpr()->getType();
1869
David Majnemer1162d252014-06-22 19:05:33 +00001870 // C++ [expr.dynamic.cast]p7:
1871 // If T is "pointer to cv void," then the result is a pointer to the most
1872 // derived object pointed to by v.
1873 const PointerType *DestPTy = DestTy->getAs<PointerType>();
1874
1875 bool isDynamicCastToVoid;
1876 QualType SrcRecordTy;
1877 QualType DestRecordTy;
1878 if (DestPTy) {
1879 isDynamicCastToVoid = DestPTy->getPointeeType()->isVoidType();
1880 SrcRecordTy = SrcTy->castAs<PointerType>()->getPointeeType();
1881 DestRecordTy = DestPTy->getPointeeType();
1882 } else {
1883 isDynamicCastToVoid = false;
1884 SrcRecordTy = SrcTy;
1885 DestRecordTy = DestTy->castAs<ReferenceType>()->getPointeeType();
1886 }
1887
1888 assert(SrcRecordTy->isRecordType() && "source type must be a record type!");
1889
Anders Carlsson882d7902011-04-11 00:46:40 +00001890 // C++ [expr.dynamic.cast]p4:
1891 // If the value of v is a null pointer value in the pointer case, the result
1892 // is the null pointer value of type T.
David Majnemer1162d252014-06-22 19:05:33 +00001893 bool ShouldNullCheckSrcValue =
1894 CGM.getCXXABI().shouldDynamicCastCallBeNullChecked(SrcTy->isPointerType(),
1895 SrcRecordTy);
Craig Topper8a13c412014-05-21 05:09:00 +00001896
1897 llvm::BasicBlock *CastNull = nullptr;
1898 llvm::BasicBlock *CastNotNull = nullptr;
Anders Carlsson882d7902011-04-11 00:46:40 +00001899 llvm::BasicBlock *CastEnd = createBasicBlock("dynamic_cast.end");
Mike Stump65511702009-11-16 06:50:58 +00001900
Anders Carlsson882d7902011-04-11 00:46:40 +00001901 if (ShouldNullCheckSrcValue) {
1902 CastNull = createBasicBlock("dynamic_cast.null");
1903 CastNotNull = createBasicBlock("dynamic_cast.notnull");
1904
John McCall7f416cc2015-09-08 08:05:57 +00001905 llvm::Value *IsNull = Builder.CreateIsNull(ThisAddr.getPointer());
Anders Carlsson882d7902011-04-11 00:46:40 +00001906 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
1907 EmitBlock(CastNotNull);
Mike Stump65511702009-11-16 06:50:58 +00001908 }
1909
John McCall7f416cc2015-09-08 08:05:57 +00001910 llvm::Value *Value;
David Majnemer1162d252014-06-22 19:05:33 +00001911 if (isDynamicCastToVoid) {
John McCall7f416cc2015-09-08 08:05:57 +00001912 Value = CGM.getCXXABI().EmitDynamicCastToVoid(*this, ThisAddr, SrcRecordTy,
David Majnemer1162d252014-06-22 19:05:33 +00001913 DestTy);
1914 } else {
1915 assert(DestRecordTy->isRecordType() &&
1916 "destination type must be a record type!");
John McCall7f416cc2015-09-08 08:05:57 +00001917 Value = CGM.getCXXABI().EmitDynamicCastCall(*this, ThisAddr, SrcRecordTy,
David Majnemer1162d252014-06-22 19:05:33 +00001918 DestTy, DestRecordTy, CastEnd);
David Majnemer67528ea2015-11-23 03:01:14 +00001919 CastNotNull = Builder.GetInsertBlock();
David Majnemer1162d252014-06-22 19:05:33 +00001920 }
Anders Carlsson882d7902011-04-11 00:46:40 +00001921
1922 if (ShouldNullCheckSrcValue) {
1923 EmitBranch(CastEnd);
1924
1925 EmitBlock(CastNull);
1926 EmitBranch(CastEnd);
1927 }
1928
1929 EmitBlock(CastEnd);
1930
1931 if (ShouldNullCheckSrcValue) {
1932 llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
1933 PHI->addIncoming(Value, CastNotNull);
1934 PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), CastNull);
1935
1936 Value = PHI;
1937 }
1938
1939 return Value;
Mike Stump65511702009-11-16 06:50:58 +00001940}
Eli Friedmanc370a7e2012-02-09 03:32:31 +00001941
Eli Friedmanc370a7e2012-02-09 03:32:31 +00001942void CodeGenFunction::EmitLambdaExpr(const LambdaExpr *E, AggValueSlot Slot) {
Eli Friedman8631f3e82012-02-09 03:47:20 +00001943 RunCleanupsScope Scope(*this);
John McCall7f416cc2015-09-08 08:05:57 +00001944 LValue SlotLV = MakeAddrLValue(Slot.getAddress(), E->getType());
Eli Friedman8631f3e82012-02-09 03:47:20 +00001945
Eli Friedmanc370a7e2012-02-09 03:32:31 +00001946 CXXRecordDecl::field_iterator CurField = E->getLambdaClass()->field_begin();
James Y Knight53c76162015-07-17 18:21:37 +00001947 for (LambdaExpr::const_capture_init_iterator i = E->capture_init_begin(),
1948 e = E->capture_init_end();
Eric Christopherd47e0862012-02-29 03:25:18 +00001949 i != e; ++i, ++CurField) {
Eli Friedmanc370a7e2012-02-09 03:32:31 +00001950 // Emit initialization
David Blaikie40ed2972012-06-06 20:45:41 +00001951 LValue LV = EmitLValueForFieldInitialization(SlotLV, *CurField);
Alexey Bataev39c81e22014-08-28 04:28:19 +00001952 if (CurField->hasCapturedVLAType()) {
1953 auto VAT = CurField->getCapturedVLAType();
1954 EmitStoreThroughLValue(RValue::get(VLASizeMap[VAT->getSizeExpr()]), LV);
1955 } else {
1956 ArrayRef<VarDecl *> ArrayIndexes;
1957 if (CurField->getType()->isArrayType())
1958 ArrayIndexes = E->getCaptureInitIndexVars(i);
1959 EmitInitializerForField(*CurField, LV, *i, ArrayIndexes);
1960 }
Eli Friedmanc370a7e2012-02-09 03:32:31 +00001961 }
Eli Friedmanc370a7e2012-02-09 03:32:31 +00001962}