blob: 604cde76a7b1d161ce774242f8ba00277aac3c0e [file] [log] [blame]
Anders Carlsson5b955922009-11-24 05:51:11 +00001//===--- CGExprCXX.cpp - Emit LLVM Code for C++ expressions ---------------===//
Anders Carlsson16d81b82009-09-22 22:53:17 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This contains code dealing with code generation of C++ expressions
11//
12//===----------------------------------------------------------------------===//
13
14#include "CodeGenFunction.h"
Peter Collingbourne6c0aa5f2011-10-06 18:29:37 +000015#include "CGCUDARuntime.h"
John McCall4c40d982010-08-31 07:33:07 +000016#include "CGCXXABI.h"
Devang Patelc69e1cf2010-09-30 19:05:55 +000017#include "CGDebugInfo.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000018#include "CGObjCRuntime.h"
Mark Lacey8b549992013-10-30 21:53:58 +000019#include "clang/CodeGen/CGFunctionInfo.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "clang/Frontend/CodeGenOptions.h"
Stephen Hines651f13c2014-04-23 16:59:28 -070021#include "llvm/IR/CallSite.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000022#include "llvm/IR/Intrinsics.h"
Anders Carlssonad3692bb2011-04-13 02:35:36 +000023
Anders Carlsson16d81b82009-09-22 22:53:17 +000024using namespace clang;
25using namespace CodeGen;
26
Stephen Hines176edba2014-12-01 14:53:08 -080027static RequiredArgs commonEmitCXXMemberOrOperatorCall(
28 CodeGenFunction &CGF, const CXXMethodDecl *MD, llvm::Value *Callee,
29 ReturnValueSlot ReturnValue, llvm::Value *This, llvm::Value *ImplicitParam,
30 QualType ImplicitParamTy, const CallExpr *CE, CallArgList &Args) {
31 assert(CE == nullptr || isa<CXXMemberCallExpr>(CE) ||
32 isa<CXXOperatorCallExpr>(CE));
Anders Carlsson3b5ad222010-01-01 20:29:01 +000033 assert(MD->isInstance() &&
Stephen Hines176edba2014-12-01 14:53:08 -080034 "Trying to emit a member or operator call expr on a static method!");
Anders Carlsson3b5ad222010-01-01 20:29:01 +000035
Richard Smith2c9f87c2012-08-24 00:54:33 +000036 // C++11 [class.mfct.non-static]p2:
37 // If a non-static member function of a class X is called for an object that
38 // is not of type X, or of a type derived from X, the behavior is undefined.
Stephen Hines176edba2014-12-01 14:53:08 -080039 SourceLocation CallLoc;
40 if (CE)
41 CallLoc = CE->getExprLoc();
42 CGF.EmitTypeCheck(
43 isa<CXXConstructorDecl>(MD) ? CodeGenFunction::TCK_ConstructorCall
44 : CodeGenFunction::TCK_MemberCall,
45 CallLoc, This, CGF.getContext().getRecordType(MD->getParent()));
Anders Carlsson3b5ad222010-01-01 20:29:01 +000046
47 // Push the this ptr.
Stephen Hines176edba2014-12-01 14:53:08 -080048 Args.add(RValue::get(This), MD->getThisType(CGF.getContext()));
Anders Carlsson3b5ad222010-01-01 20:29:01 +000049
Timur Iskhodzhanov59660c22013-02-13 08:37:51 +000050 // If there is an implicit parameter (e.g. VTT), emit it.
51 if (ImplicitParam) {
52 Args.add(RValue::get(ImplicitParam), ImplicitParamTy);
Anders Carlssonc997d422010-01-02 01:01:18 +000053 }
John McCallde5d3c72012-02-17 03:33:10 +000054
55 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
56 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size());
Anders Carlsson3b5ad222010-01-01 20:29:01 +000057
Stephen Hines176edba2014-12-01 14:53:08 -080058 // And the rest of the call args.
59 if (CE) {
60 // Special case: skip first argument of CXXOperatorCall (it is "this").
61 unsigned ArgsToSkip = isa<CXXOperatorCallExpr>(CE) ? 1 : 0;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080062 CGF.EmitCallArgs(Args, FPT, drop_begin(CE->arguments(), ArgsToSkip),
Stephen Hines176edba2014-12-01 14:53:08 -080063 CE->getDirectCallee());
64 } else {
65 assert(
66 FPT->getNumParams() == 0 &&
67 "No CallExpr specified for function with non-zero number of arguments");
68 }
69 return required;
70}
71
72RValue CodeGenFunction::EmitCXXMemberOrOperatorCall(
73 const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue,
74 llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy,
75 const CallExpr *CE) {
76 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
77 CallArgList Args;
78 RequiredArgs required = commonEmitCXXMemberOrOperatorCall(
79 *this, MD, Callee, ReturnValue, This, ImplicitParam, ImplicitParamTy, CE,
80 Args);
John McCall0f3d0972012-07-07 06:41:13 +000081 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
Rafael Espindola264ba482010-03-30 20:24:48 +000082 Callee, ReturnValue, Args, MD);
Anders Carlsson3b5ad222010-01-01 20:29:01 +000083}
84
Stephen Hines176edba2014-12-01 14:53:08 -080085RValue CodeGenFunction::EmitCXXStructorCall(
86 const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue,
87 llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy,
88 const CallExpr *CE, StructorType Type) {
89 CallArgList Args;
90 commonEmitCXXMemberOrOperatorCall(*this, MD, Callee, ReturnValue, This,
91 ImplicitParam, ImplicitParamTy, CE, Args);
92 return EmitCall(CGM.getTypes().arrangeCXXStructorDeclaration(MD, Type),
93 Callee, ReturnValue, Args, MD);
94}
95
Rafael Espindolaea01d762012-06-28 14:28:57 +000096static CXXRecordDecl *getCXXRecord(const Expr *E) {
97 QualType T = E->getType();
98 if (const PointerType *PTy = T->getAs<PointerType>())
99 T = PTy->getPointeeType();
100 const RecordType *Ty = T->castAs<RecordType>();
101 return cast<CXXRecordDecl>(Ty->getDecl());
102}
103
Francois Pichetdbee3412011-01-18 05:04:39 +0000104// Note: This function also emit constructor calls to support a MSVC
105// extensions allowing explicit constructor function call.
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000106RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE,
107 ReturnValueSlot ReturnValue) {
John McCall379b5152011-04-11 07:02:50 +0000108 const Expr *callee = CE->getCallee()->IgnoreParens();
109
110 if (isa<BinaryOperator>(callee))
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000111 return EmitCXXMemberPointerCallExpr(CE, ReturnValue);
John McCall379b5152011-04-11 07:02:50 +0000112
113 const MemberExpr *ME = cast<MemberExpr>(callee);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000114 const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl());
115
116 if (MD->isStatic()) {
117 // The method is static, emit it as we would a regular call.
118 llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
Stephen Hines176edba2014-12-01 14:53:08 -0800119 return EmitCall(getContext().getPointerType(MD->getType()), Callee, CE,
120 ReturnValue);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000121 }
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000122
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700123 bool HasQualifier = ME->hasQualifier();
124 NestedNameSpecifier *Qualifier = HasQualifier ? ME->getQualifier() : nullptr;
125 bool IsArrow = ME->isArrow();
Rafael Espindola632fbaa2012-06-28 01:56:38 +0000126 const Expr *Base = ME->getBase();
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700127
128 return EmitCXXMemberOrOperatorMemberCallExpr(
129 CE, MD, ReturnValue, HasQualifier, Qualifier, IsArrow, Base);
130}
131
132RValue CodeGenFunction::EmitCXXMemberOrOperatorMemberCallExpr(
133 const CallExpr *CE, const CXXMethodDecl *MD, ReturnValueSlot ReturnValue,
134 bool HasQualifier, NestedNameSpecifier *Qualifier, bool IsArrow,
135 const Expr *Base) {
136 assert(isa<CXXMemberCallExpr>(CE) || isa<CXXOperatorCallExpr>(CE));
137
138 // Compute the object pointer.
139 bool CanUseVirtualCall = MD->isVirtual() && !HasQualifier;
Rafael Espindola632fbaa2012-06-28 01:56:38 +0000140
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700141 const CXXMethodDecl *DevirtualizedMethod = nullptr;
Benjamin Kramer9581ed02013-08-25 22:46:27 +0000142 if (CanUseVirtualCall && CanDevirtualizeMemberFunctionCall(Base, MD)) {
Rafael Espindolaea01d762012-06-28 14:28:57 +0000143 const CXXRecordDecl *BestDynamicDecl = Base->getBestDynamicClassType();
144 DevirtualizedMethod = MD->getCorrespondingMethodInClass(BestDynamicDecl);
145 assert(DevirtualizedMethod);
146 const CXXRecordDecl *DevirtualizedClass = DevirtualizedMethod->getParent();
147 const Expr *Inner = Base->ignoreParenBaseCasts();
Stephen Hines176edba2014-12-01 14:53:08 -0800148 if (DevirtualizedMethod->getReturnType().getCanonicalType() !=
149 MD->getReturnType().getCanonicalType())
150 // If the return types are not the same, this might be a case where more
151 // code needs to run to compensate for it. For example, the derived
152 // method might return a type that inherits form from the return
153 // type of MD and has a prefix.
154 // For now we just avoid devirtualizing these covariant cases.
155 DevirtualizedMethod = nullptr;
156 else if (getCXXRecord(Inner) == DevirtualizedClass)
Rafael Espindolaea01d762012-06-28 14:28:57 +0000157 // If the class of the Inner expression is where the dynamic method
158 // is defined, build the this pointer from it.
159 Base = Inner;
160 else if (getCXXRecord(Base) != DevirtualizedClass) {
161 // If the method is defined in a class that is not the best dynamic
162 // one or the one of the full expression, we would have to build
163 // a derived-to-base cast to compute the correct this pointer, but
164 // we don't have support for that yet, so do a virtual call.
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700165 DevirtualizedMethod = nullptr;
Rafael Espindolaea01d762012-06-28 14:28:57 +0000166 }
167 }
Rafael Espindola632fbaa2012-06-28 01:56:38 +0000168
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800169 Address This = Address::invalid();
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700170 if (IsArrow)
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800171 This = EmitPointerWithAlignment(Base);
John McCall0e800c92010-12-04 08:14:53 +0000172 else
Rafael Espindolaea01d762012-06-28 14:28:57 +0000173 This = EmitLValue(Base).getAddress();
Rafael Espindola632fbaa2012-06-28 01:56:38 +0000174
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000175
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -0700176 if (MD->isTrivial() || (MD->isDefaulted() && MD->getParent()->isUnion())) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700177 if (isa<CXXDestructorDecl>(MD)) return RValue::get(nullptr);
Francois Pichetdbee3412011-01-18 05:04:39 +0000178 if (isa<CXXConstructorDecl>(MD) &&
179 cast<CXXConstructorDecl>(MD)->isDefaultConstructor())
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700180 return RValue::get(nullptr);
John McCallfc400282010-09-03 01:26:39 +0000181
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700182 if (!MD->getParent()->mayInsertExtraPadding()) {
183 if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) {
184 // We don't like to generate the trivial copy/move assignment operator
185 // when it isn't necessary; just produce the proper effect here.
186 // Special case: skip first argument of CXXOperatorCall (it is "this").
187 unsigned ArgsToSkip = isa<CXXOperatorCallExpr>(CE) ? 1 : 0;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800188 Address RHS = EmitLValue(*(CE->arg_begin() + ArgsToSkip)).getAddress();
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700189 EmitAggregateAssign(This, RHS, CE->getType());
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800190 return RValue::get(This.getPointer());
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700191 }
Stephen Hines176edba2014-12-01 14:53:08 -0800192
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700193 if (isa<CXXConstructorDecl>(MD) &&
194 cast<CXXConstructorDecl>(MD)->isCopyOrMoveConstructor()) {
195 // Trivial move and copy ctor are the same.
196 assert(CE->getNumArgs() == 1 && "unexpected argcount for trivial ctor");
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800197 Address RHS = EmitLValue(*CE->arg_begin()).getAddress();
198 EmitAggregateCopy(This, RHS, (*CE->arg_begin())->getType());
199 return RValue::get(This.getPointer());
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700200 }
201 llvm_unreachable("unknown trivial member function");
Francois Pichetdbee3412011-01-18 05:04:39 +0000202 }
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000203 }
204
John McCallfc400282010-09-03 01:26:39 +0000205 // Compute the function type we're calling.
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700206 const CXXMethodDecl *CalleeDecl =
207 DevirtualizedMethod ? DevirtualizedMethod : MD;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700208 const CGFunctionInfo *FInfo = nullptr;
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700209 if (const auto *Dtor = dyn_cast<CXXDestructorDecl>(CalleeDecl))
Stephen Hines176edba2014-12-01 14:53:08 -0800210 FInfo = &CGM.getTypes().arrangeCXXStructorDeclaration(
211 Dtor, StructorType::Complete);
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700212 else if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(CalleeDecl))
Stephen Hines176edba2014-12-01 14:53:08 -0800213 FInfo = &CGM.getTypes().arrangeCXXStructorDeclaration(
214 Ctor, StructorType::Complete);
Francois Pichetdbee3412011-01-18 05:04:39 +0000215 else
Eli Friedman465e89e2012-10-25 00:12:49 +0000216 FInfo = &CGM.getTypes().arrangeCXXMethodDeclaration(CalleeDecl);
John McCallfc400282010-09-03 01:26:39 +0000217
Reid Klecknera4130ba2013-07-22 13:51:44 +0000218 llvm::FunctionType *Ty = CGM.getTypes().GetFunctionType(*FInfo);
John McCallfc400282010-09-03 01:26:39 +0000219
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000220 // C++ [class.virtual]p12:
221 // Explicit qualification with the scope operator (5.1) suppresses the
222 // virtual call mechanism.
223 //
224 // We also don't emit a virtual call if the base expression has a record type
225 // because then we know what the type is.
Rafael Espindolaea01d762012-06-28 14:28:57 +0000226 bool UseVirtualCall = CanUseVirtualCall && !DevirtualizedMethod;
Stephen Lin3258abc2013-06-19 23:23:19 +0000227 llvm::Value *Callee;
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000228
John McCallfc400282010-09-03 01:26:39 +0000229 if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(MD)) {
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000230 assert(CE->arg_begin() == CE->arg_end() &&
231 "Destructor shouldn't have explicit parameters");
232 assert(ReturnValue.isNull() && "Destructor shouldn't have return value");
John McCallfc400282010-09-03 01:26:39 +0000233 if (UseVirtualCall) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700234 CGM.getCXXABI().EmitVirtualDestructorCall(
235 *this, Dtor, Dtor_Complete, This, cast<CXXMemberCallExpr>(CE));
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000236 } else {
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700237 if (getLangOpts().AppleKext && MD->isVirtual() && HasQualifier)
238 Callee = BuildAppleKextVirtualCall(MD, Qualifier, Ty);
Rafael Espindolaea01d762012-06-28 14:28:57 +0000239 else if (!DevirtualizedMethod)
Stephen Hines176edba2014-12-01 14:53:08 -0800240 Callee =
241 CGM.getAddrOfCXXStructor(Dtor, StructorType::Complete, FInfo, Ty);
Rafael Espindola0b4fe502012-06-26 17:45:31 +0000242 else {
Rafael Espindolaea01d762012-06-28 14:28:57 +0000243 const CXXDestructorDecl *DDtor =
244 cast<CXXDestructorDecl>(DevirtualizedMethod);
Rafael Espindola0b4fe502012-06-26 17:45:31 +0000245 Callee = CGM.GetAddrOfFunction(GlobalDecl(DDtor, Dtor_Complete), Ty);
246 }
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800247 EmitCXXMemberOrOperatorCall(MD, Callee, ReturnValue, This.getPointer(),
Stephen Hines176edba2014-12-01 14:53:08 -0800248 /*ImplicitParam=*/nullptr, QualType(), CE);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000249 }
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700250 return RValue::get(nullptr);
Stephen Lin3b50e8d2013-06-30 20:40:16 +0000251 }
252
253 if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) {
Francois Pichetdbee3412011-01-18 05:04:39 +0000254 Callee = CGM.GetAddrOfFunction(GlobalDecl(Ctor, Ctor_Complete), Ty);
John McCallfc400282010-09-03 01:26:39 +0000255 } else if (UseVirtualCall) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800256 Callee = CGM.getCXXABI().getVirtualFunctionPointer(*this, MD, This, Ty,
257 CE->getLocStart());
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000258 } else {
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -0700259 if (SanOpts.has(SanitizerKind::CFINVCall) &&
260 MD->getParent()->isDynamicClass()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800261 llvm::Value *VTable = GetVTablePtr(This, Int8PtrTy, MD->getParent());
262 EmitVTablePtrCheckForCall(MD, VTable, CFITCK_NVCall, CE->getLocStart());
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -0700263 }
264
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700265 if (getLangOpts().AppleKext && MD->isVirtual() && HasQualifier)
266 Callee = BuildAppleKextVirtualCall(MD, Qualifier, Ty);
Rafael Espindolaea01d762012-06-28 14:28:57 +0000267 else if (!DevirtualizedMethod)
Rafael Espindola12582bd2012-06-26 19:18:25 +0000268 Callee = CGM.GetAddrOfFunction(MD, Ty);
Rafael Espindola0b4fe502012-06-26 17:45:31 +0000269 else {
Rafael Espindolaea01d762012-06-28 14:28:57 +0000270 Callee = CGM.GetAddrOfFunction(DevirtualizedMethod, Ty);
Rafael Espindola0b4fe502012-06-26 17:45:31 +0000271 }
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000272 }
273
Stephen Hines651f13c2014-04-23 16:59:28 -0700274 if (MD->isVirtual()) {
275 This = CGM.getCXXABI().adjustThisArgumentForVirtualFunctionCall(
276 *this, MD, This, UseVirtualCall);
277 }
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000278
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800279 return EmitCXXMemberOrOperatorCall(MD, Callee, ReturnValue, This.getPointer(),
Stephen Hines176edba2014-12-01 14:53:08 -0800280 /*ImplicitParam=*/nullptr, QualType(), CE);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000281}
282
283RValue
284CodeGenFunction::EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E,
285 ReturnValueSlot ReturnValue) {
286 const BinaryOperator *BO =
287 cast<BinaryOperator>(E->getCallee()->IgnoreParens());
288 const Expr *BaseExpr = BO->getLHS();
289 const Expr *MemFnExpr = BO->getRHS();
290
291 const MemberPointerType *MPT =
John McCall864c0412011-04-26 20:42:42 +0000292 MemFnExpr->getType()->castAs<MemberPointerType>();
John McCall93d557b2010-08-22 00:05:51 +0000293
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000294 const FunctionProtoType *FPT =
John McCall864c0412011-04-26 20:42:42 +0000295 MPT->getPointeeType()->castAs<FunctionProtoType>();
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000296 const CXXRecordDecl *RD =
297 cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl());
298
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000299 // Get the member function pointer.
John McCalld608cdb2010-08-22 10:59:02 +0000300 llvm::Value *MemFnPtr = EmitScalarExpr(MemFnExpr);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000301
302 // Emit the 'this' pointer.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800303 Address This = Address::invalid();
John McCall2de56d12010-08-25 11:45:40 +0000304 if (BO->getOpcode() == BO_PtrMemI)
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800305 This = EmitPointerWithAlignment(BaseExpr);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000306 else
307 This = EmitLValue(BaseExpr).getAddress();
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000308
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800309 EmitTypeCheck(TCK_MemberCall, E->getExprLoc(), This.getPointer(),
Richard Smith4def70d2012-10-09 19:52:38 +0000310 QualType(MPT->getClass(), 0));
Richard Smith2c9f87c2012-08-24 00:54:33 +0000311
John McCall93d557b2010-08-22 00:05:51 +0000312 // Ask the ABI to load the callee. Note that This is modified.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800313 llvm::Value *ThisPtrForCall = nullptr;
John McCall93d557b2010-08-22 00:05:51 +0000314 llvm::Value *Callee =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800315 CGM.getCXXABI().EmitLoadOfMemberFunctionPointer(*this, BO, This,
316 ThisPtrForCall, MemFnPtr, MPT);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000317
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000318 CallArgList Args;
319
320 QualType ThisType =
321 getContext().getPointerType(getContext().getTagDeclType(RD));
322
323 // Push the this ptr.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800324 Args.add(RValue::get(ThisPtrForCall), ThisType);
John McCall0f3d0972012-07-07 06:41:13 +0000325
326 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, 1);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000327
328 // And the rest of the call args
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800329 EmitCallArgs(Args, FPT, E->arguments(), E->getDirectCallee());
Nick Lewycky5d4a7552013-10-01 21:51:38 +0000330 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
331 Callee, ReturnValue, Args);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000332}
333
334RValue
335CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
336 const CXXMethodDecl *MD,
337 ReturnValueSlot ReturnValue) {
338 assert(MD->isInstance() &&
339 "Trying to emit a member call expr on a static method!");
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700340 return EmitCXXMemberOrOperatorMemberCallExpr(
341 E, MD, ReturnValue, /*HasQualifier=*/false, /*Qualifier=*/nullptr,
342 /*IsArrow=*/false, E->getArg(0));
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000343}
344
Peter Collingbourne6c0aa5f2011-10-06 18:29:37 +0000345RValue CodeGenFunction::EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E,
346 ReturnValueSlot ReturnValue) {
347 return CGM.getCUDARuntime().EmitCUDAKernelCallExpr(*this, E, ReturnValue);
348}
349
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000350static void EmitNullBaseClassInitialization(CodeGenFunction &CGF,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800351 Address DestPtr,
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000352 const CXXRecordDecl *Base) {
353 if (Base->isEmpty())
354 return;
355
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800356 DestPtr = CGF.Builder.CreateElementBitCast(DestPtr, CGF.Int8Ty);
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000357
358 const ASTRecordLayout &Layout = CGF.getContext().getASTRecordLayout(Base);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800359 CharUnits NVSize = Layout.getNonVirtualSize();
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000360
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800361 // We cannot simply zero-initialize the entire base sub-object if vbptrs are
362 // present, they are initialized by the most derived class before calling the
363 // constructor.
364 SmallVector<std::pair<CharUnits, CharUnits>, 1> Stores;
365 Stores.emplace_back(CharUnits::Zero(), NVSize);
366
367 // Each store is split by the existence of a vbptr.
368 CharUnits VBPtrWidth = CGF.getPointerSize();
369 std::vector<CharUnits> VBPtrOffsets =
370 CGF.CGM.getCXXABI().getVBPtrOffsets(Base);
371 for (CharUnits VBPtrOffset : VBPtrOffsets) {
372 std::pair<CharUnits, CharUnits> LastStore = Stores.pop_back_val();
373 CharUnits LastStoreOffset = LastStore.first;
374 CharUnits LastStoreSize = LastStore.second;
375
376 CharUnits SplitBeforeOffset = LastStoreOffset;
377 CharUnits SplitBeforeSize = VBPtrOffset - SplitBeforeOffset;
378 assert(!SplitBeforeSize.isNegative() && "negative store size!");
379 if (!SplitBeforeSize.isZero())
380 Stores.emplace_back(SplitBeforeOffset, SplitBeforeSize);
381
382 CharUnits SplitAfterOffset = VBPtrOffset + VBPtrWidth;
383 CharUnits SplitAfterSize = LastStoreSize - SplitAfterOffset;
384 assert(!SplitAfterSize.isNegative() && "negative store size!");
385 if (!SplitAfterSize.isZero())
386 Stores.emplace_back(SplitAfterOffset, SplitAfterSize);
387 }
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000388
389 // If the type contains a pointer to data member we can't memset it to zero.
390 // Instead, create a null constant and copy it to the destination.
391 // TODO: there are other patterns besides zero that we can usefully memset,
392 // like -1, which happens to be the pattern used by member-pointers.
393 // TODO: isZeroInitializable can be over-conservative in the case where a
394 // virtual base contains a member pointer.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800395 llvm::Constant *NullConstantForBase = CGF.CGM.EmitNullConstantForBase(Base);
396 if (!NullConstantForBase->isNullValue()) {
397 llvm::GlobalVariable *NullVariable = new llvm::GlobalVariable(
398 CGF.CGM.getModule(), NullConstantForBase->getType(),
399 /*isConstant=*/true, llvm::GlobalVariable::PrivateLinkage,
400 NullConstantForBase, Twine());
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000401
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800402 CharUnits Align = std::max(Layout.getNonVirtualAlignment(),
403 DestPtr.getAlignment());
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000404 NullVariable->setAlignment(Align.getQuantity());
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800405
406 Address SrcPtr = Address(CGF.EmitCastToVoidPtr(NullVariable), Align);
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000407
408 // Get and call the appropriate llvm.memcpy overload.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800409 for (std::pair<CharUnits, CharUnits> Store : Stores) {
410 CharUnits StoreOffset = Store.first;
411 CharUnits StoreSize = Store.second;
412 llvm::Value *StoreSizeVal = CGF.CGM.getSize(StoreSize);
413 CGF.Builder.CreateMemCpy(
414 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset),
415 CGF.Builder.CreateConstInBoundsByteGEP(SrcPtr, StoreOffset),
416 StoreSizeVal);
417 }
418
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000419 // Otherwise, just memset the whole thing to zero. This is legal
420 // because in LLVM, all default initializers (other than the ones we just
421 // handled above) are guaranteed to have a bit pattern of all zeros.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800422 } else {
423 for (std::pair<CharUnits, CharUnits> Store : Stores) {
424 CharUnits StoreOffset = Store.first;
425 CharUnits StoreSize = Store.second;
426 llvm::Value *StoreSizeVal = CGF.CGM.getSize(StoreSize);
427 CGF.Builder.CreateMemSet(
428 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset),
429 CGF.Builder.getInt8(0), StoreSizeVal);
430 }
431 }
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000432}
433
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000434void
John McCall558d2ab2010-09-15 10:14:12 +0000435CodeGenFunction::EmitCXXConstructExpr(const CXXConstructExpr *E,
436 AggValueSlot Dest) {
437 assert(!Dest.isIgnored() && "Must have a destination!");
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000438 const CXXConstructorDecl *CD = E->getConstructor();
Douglas Gregor759e41b2010-08-22 16:15:35 +0000439
440 // If we require zero initialization before (or instead of) calling the
441 // constructor, as can be the case with a non-user-provided default
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +0000442 // constructor, emit the zero initialization now, unless destination is
443 // already zeroed.
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000444 if (E->requiresZeroInitialization() && !Dest.isZeroed()) {
445 switch (E->getConstructionKind()) {
446 case CXXConstructExpr::CK_Delegating:
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000447 case CXXConstructExpr::CK_Complete:
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800448 EmitNullInitialization(Dest.getAddress(), E->getType());
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000449 break;
450 case CXXConstructExpr::CK_VirtualBase:
451 case CXXConstructExpr::CK_NonVirtualBase:
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800452 EmitNullBaseClassInitialization(*this, Dest.getAddress(),
453 CD->getParent());
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000454 break;
455 }
456 }
Douglas Gregor759e41b2010-08-22 16:15:35 +0000457
458 // If this is a call to a trivial default constructor, do nothing.
459 if (CD->isTrivial() && CD->isDefaultConstructor())
460 return;
461
John McCallfc1e6c72010-09-18 00:58:34 +0000462 // Elide the constructor if we're constructing from a temporary.
463 // The temporary check is required because Sema sets this on NRVO
464 // returns.
Richard Smith7edf9e32012-11-01 22:30:59 +0000465 if (getLangOpts().ElideConstructors && E->isElidable()) {
John McCallfc1e6c72010-09-18 00:58:34 +0000466 assert(getContext().hasSameUnqualifiedType(E->getType(),
467 E->getArg(0)->getType()));
John McCall558d2ab2010-09-15 10:14:12 +0000468 if (E->getArg(0)->isTemporaryObject(getContext(), CD->getParent())) {
469 EmitAggExpr(E->getArg(0), Dest);
Douglas Gregor3c9034c2010-05-15 00:13:29 +0000470 return;
471 }
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000472 }
Douglas Gregor759e41b2010-08-22 16:15:35 +0000473
John McCallc3c07662011-07-13 06:10:41 +0000474 if (const ConstantArrayType *arrayType
475 = getContext().getAsConstantArrayType(E->getType())) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800476 EmitCXXAggrConstructorCall(CD, arrayType, Dest.getAddress(), E);
John McCallc3c07662011-07-13 06:10:41 +0000477 } else {
Cameron Esfahani6bd2f6a2011-05-06 21:28:42 +0000478 CXXCtorType Type = Ctor_Complete;
Sean Huntd49bd552011-05-03 20:19:28 +0000479 bool ForVirtualBase = false;
Douglas Gregor378e1e72013-01-31 05:50:40 +0000480 bool Delegating = false;
481
Sean Huntd49bd552011-05-03 20:19:28 +0000482 switch (E->getConstructionKind()) {
483 case CXXConstructExpr::CK_Delegating:
Sean Hunt059ce0d2011-05-01 07:04:31 +0000484 // We should be emitting a constructor; GlobalDecl will assert this
485 Type = CurGD.getCtorType();
Douglas Gregor378e1e72013-01-31 05:50:40 +0000486 Delegating = true;
Sean Huntd49bd552011-05-03 20:19:28 +0000487 break;
Sean Hunt059ce0d2011-05-01 07:04:31 +0000488
Sean Huntd49bd552011-05-03 20:19:28 +0000489 case CXXConstructExpr::CK_Complete:
490 Type = Ctor_Complete;
491 break;
492
493 case CXXConstructExpr::CK_VirtualBase:
494 ForVirtualBase = true;
495 // fall-through
496
497 case CXXConstructExpr::CK_NonVirtualBase:
498 Type = Ctor_Base;
499 }
Anders Carlsson155ed4a2010-05-02 23:20:53 +0000500
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000501 // Call the constructor.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800502 EmitCXXConstructorCall(CD, Type, ForVirtualBase, Delegating,
503 Dest.getAddress(), E);
Anders Carlsson155ed4a2010-05-02 23:20:53 +0000504 }
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000505}
506
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800507void CodeGenFunction::EmitSynthesizedCXXCopyCtor(Address Dest, Address Src,
508 const Expr *Exp) {
John McCall4765fa02010-12-06 08:20:24 +0000509 if (const ExprWithCleanups *E = dyn_cast<ExprWithCleanups>(Exp))
Fariborz Jahanian34999872010-11-13 21:53:34 +0000510 Exp = E->getSubExpr();
511 assert(isa<CXXConstructExpr>(Exp) &&
512 "EmitSynthesizedCXXCopyCtor - unknown copy ctor expr");
513 const CXXConstructExpr* E = cast<CXXConstructExpr>(Exp);
514 const CXXConstructorDecl *CD = E->getConstructor();
515 RunCleanupsScope Scope(*this);
516
517 // If we require zero initialization before (or instead of) calling the
518 // constructor, as can be the case with a non-user-provided default
519 // constructor, emit the zero initialization now.
520 // FIXME. Do I still need this for a copy ctor synthesis?
521 if (E->requiresZeroInitialization())
522 EmitNullInitialization(Dest, E->getType());
523
Chandler Carruth858a5462010-11-15 13:54:43 +0000524 assert(!getContext().getAsConstantArrayType(E->getType())
525 && "EmitSynthesizedCXXCopyCtor - Copied-in Array");
Stephen Hines176edba2014-12-01 14:53:08 -0800526 EmitSynthesizedCXXCopyCtorCall(CD, Dest, Src, E);
Fariborz Jahanian34999872010-11-13 21:53:34 +0000527}
528
John McCall1e7fe752010-09-02 09:58:18 +0000529static CharUnits CalculateCookiePadding(CodeGenFunction &CGF,
530 const CXXNewExpr *E) {
Anders Carlsson871d0782009-12-13 20:04:38 +0000531 if (!E->isArray())
Ken Dyckcaf647c2010-01-26 19:44:24 +0000532 return CharUnits::Zero();
Anders Carlsson871d0782009-12-13 20:04:38 +0000533
John McCallb1c98a32011-05-16 01:05:12 +0000534 // No cookie is required if the operator new[] being used is the
535 // reserved placement operator new[].
536 if (E->getOperatorNew()->isReservedGlobalPlacementOperator())
John McCall5172ed92010-08-23 01:17:59 +0000537 return CharUnits::Zero();
538
John McCall6ec278d2011-01-27 09:37:56 +0000539 return CGF.CGM.getCXXABI().GetArrayCookieSize(E);
Anders Carlssona4d4c012009-09-23 16:07:23 +0000540}
541
John McCall7d166272011-05-15 07:14:44 +0000542static llvm::Value *EmitCXXNewAllocSize(CodeGenFunction &CGF,
543 const CXXNewExpr *e,
Sebastian Redl92036472012-02-22 17:37:52 +0000544 unsigned minElements,
John McCall7d166272011-05-15 07:14:44 +0000545 llvm::Value *&numElements,
546 llvm::Value *&sizeWithoutCookie) {
547 QualType type = e->getAllocatedType();
John McCall1e7fe752010-09-02 09:58:18 +0000548
John McCall7d166272011-05-15 07:14:44 +0000549 if (!e->isArray()) {
550 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
551 sizeWithoutCookie
552 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity());
553 return sizeWithoutCookie;
Douglas Gregor59174c02010-07-21 01:10:17 +0000554 }
Anders Carlssona4d4c012009-09-23 16:07:23 +0000555
John McCall7d166272011-05-15 07:14:44 +0000556 // The width of size_t.
557 unsigned sizeWidth = CGF.SizeTy->getBitWidth();
558
John McCall1e7fe752010-09-02 09:58:18 +0000559 // Figure out the cookie size.
John McCall7d166272011-05-15 07:14:44 +0000560 llvm::APInt cookieSize(sizeWidth,
561 CalculateCookiePadding(CGF, e).getQuantity());
John McCall1e7fe752010-09-02 09:58:18 +0000562
Anders Carlssona4d4c012009-09-23 16:07:23 +0000563 // Emit the array size expression.
Argyrios Kyrtzidise7ab92e2010-08-26 15:23:38 +0000564 // We multiply the size of all dimensions for NumElements.
565 // e.g for 'int[2][3]', ElemType is 'int' and NumElements is 6.
John McCall7d166272011-05-15 07:14:44 +0000566 numElements = CGF.EmitScalarExpr(e->getArraySize());
567 assert(isa<llvm::IntegerType>(numElements->getType()));
John McCall1e7fe752010-09-02 09:58:18 +0000568
John McCall7d166272011-05-15 07:14:44 +0000569 // The number of elements can be have an arbitrary integer type;
570 // essentially, we need to multiply it by a constant factor, add a
571 // cookie size, and verify that the result is representable as a
572 // size_t. That's just a gloss, though, and it's wrong in one
573 // important way: if the count is negative, it's an error even if
574 // the cookie size would bring the total size >= 0.
Douglas Gregor575a1c92011-05-20 16:38:50 +0000575 bool isSigned
576 = e->getArraySize()->getType()->isSignedIntegerOrEnumerationType();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000577 llvm::IntegerType *numElementsType
John McCall7d166272011-05-15 07:14:44 +0000578 = cast<llvm::IntegerType>(numElements->getType());
579 unsigned numElementsWidth = numElementsType->getBitWidth();
580
581 // Compute the constant factor.
582 llvm::APInt arraySizeMultiplier(sizeWidth, 1);
Argyrios Kyrtzidise7ab92e2010-08-26 15:23:38 +0000583 while (const ConstantArrayType *CAT
John McCall7d166272011-05-15 07:14:44 +0000584 = CGF.getContext().getAsConstantArrayType(type)) {
585 type = CAT->getElementType();
586 arraySizeMultiplier *= CAT->getSize();
Argyrios Kyrtzidise7ab92e2010-08-26 15:23:38 +0000587 }
588
John McCall7d166272011-05-15 07:14:44 +0000589 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
590 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity());
591 typeSizeMultiplier *= arraySizeMultiplier;
592
593 // This will be a size_t.
594 llvm::Value *size;
Chris Lattner83252dc2010-07-20 21:07:09 +0000595
Chris Lattner806941e2010-07-20 21:55:52 +0000596 // If someone is doing 'new int[42]' there is no need to do a dynamic check.
597 // Don't bloat the -O0 code.
John McCall7d166272011-05-15 07:14:44 +0000598 if (llvm::ConstantInt *numElementsC =
599 dyn_cast<llvm::ConstantInt>(numElements)) {
600 const llvm::APInt &count = numElementsC->getValue();
John McCall1e7fe752010-09-02 09:58:18 +0000601
John McCall7d166272011-05-15 07:14:44 +0000602 bool hasAnyOverflow = false;
John McCall1e7fe752010-09-02 09:58:18 +0000603
John McCall7d166272011-05-15 07:14:44 +0000604 // If 'count' was a negative number, it's an overflow.
605 if (isSigned && count.isNegative())
606 hasAnyOverflow = true;
John McCall1e7fe752010-09-02 09:58:18 +0000607
John McCall7d166272011-05-15 07:14:44 +0000608 // We want to do all this arithmetic in size_t. If numElements is
609 // wider than that, check whether it's already too big, and if so,
610 // overflow.
611 else if (numElementsWidth > sizeWidth &&
612 numElementsWidth - sizeWidth > count.countLeadingZeros())
613 hasAnyOverflow = true;
614
615 // Okay, compute a count at the right width.
616 llvm::APInt adjustedCount = count.zextOrTrunc(sizeWidth);
617
Sebastian Redl92036472012-02-22 17:37:52 +0000618 // If there is a brace-initializer, we cannot allocate fewer elements than
619 // there are initializers. If we do, that's treated like an overflow.
620 if (adjustedCount.ult(minElements))
621 hasAnyOverflow = true;
622
John McCall7d166272011-05-15 07:14:44 +0000623 // Scale numElements by that. This might overflow, but we don't
624 // care because it only overflows if allocationSize does, too, and
625 // if that overflows then we shouldn't use this.
626 numElements = llvm::ConstantInt::get(CGF.SizeTy,
627 adjustedCount * arraySizeMultiplier);
628
629 // Compute the size before cookie, and track whether it overflowed.
630 bool overflow;
631 llvm::APInt allocationSize
632 = adjustedCount.umul_ov(typeSizeMultiplier, overflow);
633 hasAnyOverflow |= overflow;
634
635 // Add in the cookie, and check whether it's overflowed.
636 if (cookieSize != 0) {
637 // Save the current size without a cookie. This shouldn't be
638 // used if there was overflow.
639 sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
640
641 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
642 hasAnyOverflow |= overflow;
643 }
644
645 // On overflow, produce a -1 so operator new will fail.
646 if (hasAnyOverflow) {
647 size = llvm::Constant::getAllOnesValue(CGF.SizeTy);
648 } else {
649 size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
650 }
651
652 // Otherwise, we might need to use the overflow intrinsics.
653 } else {
Sebastian Redl92036472012-02-22 17:37:52 +0000654 // There are up to five conditions we need to test for:
John McCall7d166272011-05-15 07:14:44 +0000655 // 1) if isSigned, we need to check whether numElements is negative;
656 // 2) if numElementsWidth > sizeWidth, we need to check whether
657 // numElements is larger than something representable in size_t;
Sebastian Redl92036472012-02-22 17:37:52 +0000658 // 3) if minElements > 0, we need to check whether numElements is smaller
659 // than that.
660 // 4) we need to compute
John McCall7d166272011-05-15 07:14:44 +0000661 // sizeWithoutCookie := numElements * typeSizeMultiplier
662 // and check whether it overflows; and
Sebastian Redl92036472012-02-22 17:37:52 +0000663 // 5) if we need a cookie, we need to compute
John McCall7d166272011-05-15 07:14:44 +0000664 // size := sizeWithoutCookie + cookieSize
665 // and check whether it overflows.
666
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700667 llvm::Value *hasOverflow = nullptr;
John McCall7d166272011-05-15 07:14:44 +0000668
669 // If numElementsWidth > sizeWidth, then one way or another, we're
670 // going to have to do a comparison for (2), and this happens to
671 // take care of (1), too.
672 if (numElementsWidth > sizeWidth) {
673 llvm::APInt threshold(numElementsWidth, 1);
674 threshold <<= sizeWidth;
675
676 llvm::Value *thresholdV
677 = llvm::ConstantInt::get(numElementsType, threshold);
678
679 hasOverflow = CGF.Builder.CreateICmpUGE(numElements, thresholdV);
680 numElements = CGF.Builder.CreateTrunc(numElements, CGF.SizeTy);
681
682 // Otherwise, if we're signed, we want to sext up to size_t.
683 } else if (isSigned) {
684 if (numElementsWidth < sizeWidth)
685 numElements = CGF.Builder.CreateSExt(numElements, CGF.SizeTy);
686
687 // If there's a non-1 type size multiplier, then we can do the
688 // signedness check at the same time as we do the multiply
689 // because a negative number times anything will cause an
Sebastian Redl92036472012-02-22 17:37:52 +0000690 // unsigned overflow. Otherwise, we have to do it here. But at least
691 // in this case, we can subsume the >= minElements check.
John McCall7d166272011-05-15 07:14:44 +0000692 if (typeSizeMultiplier == 1)
693 hasOverflow = CGF.Builder.CreateICmpSLT(numElements,
Sebastian Redl92036472012-02-22 17:37:52 +0000694 llvm::ConstantInt::get(CGF.SizeTy, minElements));
John McCall7d166272011-05-15 07:14:44 +0000695
696 // Otherwise, zext up to size_t if necessary.
697 } else if (numElementsWidth < sizeWidth) {
698 numElements = CGF.Builder.CreateZExt(numElements, CGF.SizeTy);
699 }
700
701 assert(numElements->getType() == CGF.SizeTy);
702
Sebastian Redl92036472012-02-22 17:37:52 +0000703 if (minElements) {
704 // Don't allow allocation of fewer elements than we have initializers.
705 if (!hasOverflow) {
706 hasOverflow = CGF.Builder.CreateICmpULT(numElements,
707 llvm::ConstantInt::get(CGF.SizeTy, minElements));
708 } else if (numElementsWidth > sizeWidth) {
709 // The other existing overflow subsumes this check.
710 // We do an unsigned comparison, since any signed value < -1 is
711 // taken care of either above or below.
712 hasOverflow = CGF.Builder.CreateOr(hasOverflow,
713 CGF.Builder.CreateICmpULT(numElements,
714 llvm::ConstantInt::get(CGF.SizeTy, minElements)));
715 }
716 }
717
John McCall7d166272011-05-15 07:14:44 +0000718 size = numElements;
719
720 // Multiply by the type size if necessary. This multiplier
721 // includes all the factors for nested arrays.
722 //
723 // This step also causes numElements to be scaled up by the
724 // nested-array factor if necessary. Overflow on this computation
725 // can be ignored because the result shouldn't be used if
726 // allocation fails.
727 if (typeSizeMultiplier != 1) {
John McCall7d166272011-05-15 07:14:44 +0000728 llvm::Value *umul_with_overflow
Benjamin Kramer8dd55a32011-07-14 17:45:50 +0000729 = CGF.CGM.getIntrinsic(llvm::Intrinsic::umul_with_overflow, CGF.SizeTy);
John McCall7d166272011-05-15 07:14:44 +0000730
731 llvm::Value *tsmV =
732 llvm::ConstantInt::get(CGF.SizeTy, typeSizeMultiplier);
733 llvm::Value *result =
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -0700734 CGF.Builder.CreateCall(umul_with_overflow, {size, tsmV});
John McCall7d166272011-05-15 07:14:44 +0000735
736 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
737 if (hasOverflow)
738 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
739 else
740 hasOverflow = overflowed;
741
742 size = CGF.Builder.CreateExtractValue(result, 0);
743
744 // Also scale up numElements by the array size multiplier.
745 if (arraySizeMultiplier != 1) {
746 // If the base element type size is 1, then we can re-use the
747 // multiply we just did.
748 if (typeSize.isOne()) {
749 assert(arraySizeMultiplier == typeSizeMultiplier);
750 numElements = size;
751
752 // Otherwise we need a separate multiply.
753 } else {
754 llvm::Value *asmV =
755 llvm::ConstantInt::get(CGF.SizeTy, arraySizeMultiplier);
756 numElements = CGF.Builder.CreateMul(numElements, asmV);
757 }
758 }
759 } else {
760 // numElements doesn't need to be scaled.
761 assert(arraySizeMultiplier == 1);
Chris Lattner806941e2010-07-20 21:55:52 +0000762 }
763
John McCall7d166272011-05-15 07:14:44 +0000764 // Add in the cookie size if necessary.
765 if (cookieSize != 0) {
766 sizeWithoutCookie = size;
767
John McCall7d166272011-05-15 07:14:44 +0000768 llvm::Value *uadd_with_overflow
Benjamin Kramer8dd55a32011-07-14 17:45:50 +0000769 = CGF.CGM.getIntrinsic(llvm::Intrinsic::uadd_with_overflow, CGF.SizeTy);
John McCall7d166272011-05-15 07:14:44 +0000770
771 llvm::Value *cookieSizeV = llvm::ConstantInt::get(CGF.SizeTy, cookieSize);
772 llvm::Value *result =
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -0700773 CGF.Builder.CreateCall(uadd_with_overflow, {size, cookieSizeV});
John McCall7d166272011-05-15 07:14:44 +0000774
775 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
776 if (hasOverflow)
777 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
778 else
779 hasOverflow = overflowed;
780
781 size = CGF.Builder.CreateExtractValue(result, 0);
John McCall1e7fe752010-09-02 09:58:18 +0000782 }
Anders Carlssona4d4c012009-09-23 16:07:23 +0000783
John McCall7d166272011-05-15 07:14:44 +0000784 // If we had any possibility of dynamic overflow, make a select to
785 // overwrite 'size' with an all-ones value, which should cause
786 // operator new to throw.
787 if (hasOverflow)
788 size = CGF.Builder.CreateSelect(hasOverflow,
789 llvm::Constant::getAllOnesValue(CGF.SizeTy),
790 size);
Chris Lattner806941e2010-07-20 21:55:52 +0000791 }
John McCall1e7fe752010-09-02 09:58:18 +0000792
John McCall7d166272011-05-15 07:14:44 +0000793 if (cookieSize == 0)
794 sizeWithoutCookie = size;
John McCall1e7fe752010-09-02 09:58:18 +0000795 else
John McCall7d166272011-05-15 07:14:44 +0000796 assert(sizeWithoutCookie && "didn't set sizeWithoutCookie?");
John McCall1e7fe752010-09-02 09:58:18 +0000797
John McCall7d166272011-05-15 07:14:44 +0000798 return size;
Anders Carlssona4d4c012009-09-23 16:07:23 +0000799}
800
Sebastian Redl92036472012-02-22 17:37:52 +0000801static void StoreAnyExprIntoOneUnit(CodeGenFunction &CGF, const Expr *Init,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800802 QualType AllocType, Address NewPtr) {
Bill Wendlingb66a0f42013-12-11 04:25:35 +0000803 // FIXME: Refactor with EmitExprAsInit.
John McCall9d232c82013-03-07 21:37:08 +0000804 switch (CGF.getEvaluationKind(AllocType)) {
805 case TEK_Scalar:
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700806 CGF.EmitScalarInit(Init, nullptr,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800807 CGF.MakeAddrLValue(NewPtr, AllocType), false);
John McCall9d232c82013-03-07 21:37:08 +0000808 return;
809 case TEK_Complex:
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800810 CGF.EmitComplexExprIntoLValue(Init, CGF.MakeAddrLValue(NewPtr, AllocType),
John McCall9d232c82013-03-07 21:37:08 +0000811 /*isInit*/ true);
812 return;
813 case TEK_Aggregate: {
John McCall558d2ab2010-09-15 10:14:12 +0000814 AggValueSlot Slot
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800815 = AggValueSlot::forAddr(NewPtr, AllocType.getQualifiers(),
John McCall7c2349b2011-08-25 20:40:09 +0000816 AggValueSlot::IsDestructed,
John McCall44184392011-08-26 07:31:35 +0000817 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier649b4a12012-03-29 17:37:10 +0000818 AggValueSlot::IsNotAliased);
John McCall558d2ab2010-09-15 10:14:12 +0000819 CGF.EmitAggExpr(Init, Slot);
John McCall9d232c82013-03-07 21:37:08 +0000820 return;
John McCall558d2ab2010-09-15 10:14:12 +0000821 }
John McCall9d232c82013-03-07 21:37:08 +0000822 }
823 llvm_unreachable("bad evaluation kind");
Fariborz Jahanianef668722010-06-25 18:26:07 +0000824}
825
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -0700826void CodeGenFunction::EmitNewArrayInitializer(
827 const CXXNewExpr *E, QualType ElementType, llvm::Type *ElementTy,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800828 Address BeginPtr, llvm::Value *NumElements,
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -0700829 llvm::Value *AllocSizeWithoutCookie) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700830 // If we have a type with trivial initialization and no initializer,
831 // there's nothing to do.
Sebastian Redl2aed8b82012-02-16 12:22:20 +0000832 if (!E->hasInitializer())
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700833 return;
John McCall19705672011-09-15 06:49:18 +0000834
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800835 Address CurPtr = BeginPtr;
John McCall19705672011-09-15 06:49:18 +0000836
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700837 unsigned InitListElements = 0;
Sebastian Redl92036472012-02-22 17:37:52 +0000838
839 const Expr *Init = E->getInitializer();
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800840 Address EndOfInit = Address::invalid();
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700841 QualType::DestructionKind DtorKind = ElementType.isDestructedType();
842 EHScopeStack::stable_iterator Cleanup;
843 llvm::Instruction *CleanupDominator = nullptr;
Bill Wendlingb66a0f42013-12-11 04:25:35 +0000844
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800845 CharUnits ElementSize = getContext().getTypeSizeInChars(ElementType);
846 CharUnits ElementAlign =
847 BeginPtr.getAlignment().alignmentOfArrayElement(ElementSize);
848
Sebastian Redl92036472012-02-22 17:37:52 +0000849 // If the initializer is an initializer list, first do the explicit elements.
850 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700851 InitListElements = ILE->getNumInits();
Chad Rosier577fb5b2012-02-24 00:13:55 +0000852
Bill Wendlingb66a0f42013-12-11 04:25:35 +0000853 // If this is a multi-dimensional array new, we will initialize multiple
854 // elements with each init list element.
855 QualType AllocType = E->getAllocatedType();
856 if (const ConstantArrayType *CAT = dyn_cast_or_null<ConstantArrayType>(
857 AllocType->getAsArrayTypeUnsafe())) {
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -0700858 ElementTy = ConvertTypeForMem(AllocType);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800859 CurPtr = Builder.CreateElementBitCast(CurPtr, ElementTy);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700860 InitListElements *= getContext().getConstantArrayElementCount(CAT);
Bill Wendlingb66a0f42013-12-11 04:25:35 +0000861 }
862
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700863 // Enter a partial-destruction Cleanup if necessary.
864 if (needsEHCleanup(DtorKind)) {
865 // In principle we could tell the Cleanup where we are more
Chad Rosier577fb5b2012-02-24 00:13:55 +0000866 // directly, but the control flow can get so varied here that it
867 // would actually be quite complex. Therefore we go through an
868 // alloca.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800869 EndOfInit = CreateTempAlloca(BeginPtr.getType(), getPointerAlign(),
870 "array.init.end");
871 CleanupDominator = Builder.CreateStore(BeginPtr.getPointer(), EndOfInit);
872 pushIrregularPartialArrayCleanup(BeginPtr.getPointer(), EndOfInit,
873 ElementType, ElementAlign,
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700874 getDestroyer(DtorKind));
875 Cleanup = EHStack.stable_begin();
Chad Rosier577fb5b2012-02-24 00:13:55 +0000876 }
877
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800878 CharUnits StartAlign = CurPtr.getAlignment();
Sebastian Redl92036472012-02-22 17:37:52 +0000879 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) {
Chad Rosier577fb5b2012-02-24 00:13:55 +0000880 // Tell the cleanup that it needs to destroy up to this
881 // element. TODO: some of these stores can be trivially
882 // observed to be unnecessary.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800883 if (EndOfInit.isValid()) {
884 auto FinishedPtr =
885 Builder.CreateBitCast(CurPtr.getPointer(), BeginPtr.getType());
886 Builder.CreateStore(FinishedPtr, EndOfInit);
887 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700888 // FIXME: If the last initializer is an incomplete initializer list for
889 // an array, and we have an array filler, we can fold together the two
890 // initialization loops.
Bill Wendlingb66a0f42013-12-11 04:25:35 +0000891 StoreAnyExprIntoOneUnit(*this, ILE->getInit(i),
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700892 ILE->getInit(i)->getType(), CurPtr);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800893 CurPtr = Address(Builder.CreateInBoundsGEP(CurPtr.getPointer(),
894 Builder.getSize(1),
895 "array.exp.next"),
896 StartAlign.alignmentAtOffset((i + 1) * ElementSize));
Sebastian Redl92036472012-02-22 17:37:52 +0000897 }
898
899 // The remaining elements are filled with the array filler expression.
900 Init = ILE->getArrayFiller();
Bill Wendlingb66a0f42013-12-11 04:25:35 +0000901
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700902 // Extract the initializer for the individual array elements by pulling
903 // out the array filler from all the nested initializer lists. This avoids
904 // generating a nested loop for the initialization.
905 while (Init && Init->getType()->isConstantArrayType()) {
906 auto *SubILE = dyn_cast<InitListExpr>(Init);
907 if (!SubILE)
908 break;
909 assert(SubILE->getNumInits() == 0 && "explicit inits in array filler?");
910 Init = SubILE->getArrayFiller();
911 }
912
913 // Switch back to initializing one base element at a time.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800914 CurPtr = Builder.CreateBitCast(CurPtr, BeginPtr.getType());
Sebastian Redl92036472012-02-22 17:37:52 +0000915 }
916
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700917 // Attempt to perform zero-initialization using memset.
918 auto TryMemsetInitialization = [&]() -> bool {
919 // FIXME: If the type is a pointer-to-data-member under the Itanium ABI,
920 // we can initialize with a memset to -1.
921 if (!CGM.getTypes().isZeroInitializable(ElementType))
922 return false;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700923
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700924 // Optimization: since zero initialization will just set the memory
925 // to all zeroes, generate a single memset to do it in one shot.
926
927 // Subtract out the size of any elements we've already initialized.
928 auto *RemainingSize = AllocSizeWithoutCookie;
929 if (InitListElements) {
930 // We know this can't overflow; we check this when doing the allocation.
931 auto *InitializedSize = llvm::ConstantInt::get(
932 RemainingSize->getType(),
933 getContext().getTypeSizeInChars(ElementType).getQuantity() *
934 InitListElements);
935 RemainingSize = Builder.CreateSub(RemainingSize, InitializedSize);
936 }
937
938 // Create the memset.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800939 Builder.CreateMemSet(CurPtr, Builder.getInt8(0), RemainingSize, false);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700940 return true;
941 };
942
943 // If all elements have already been initialized, skip any further
944 // initialization.
945 llvm::ConstantInt *ConstNum = dyn_cast<llvm::ConstantInt>(NumElements);
946 if (ConstNum && ConstNum->getZExtValue() <= InitListElements) {
947 // If there was a Cleanup, deactivate it.
948 if (CleanupDominator)
949 DeactivateCleanupBlock(Cleanup, CleanupDominator);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700950 return;
951 }
952
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700953 assert(Init && "have trailing elements to initialize but no initializer");
954
955 // If this is a constructor call, try to optimize it out, and failing that
956 // emit a single loop to initialize all remaining elements.
957 if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init)) {
958 CXXConstructorDecl *Ctor = CCE->getConstructor();
959 if (Ctor->isTrivial()) {
960 // If new expression did not specify value-initialization, then there
961 // is no initialization.
962 if (!CCE->requiresZeroInitialization() || Ctor->getParent()->isEmpty())
963 return;
964
965 if (TryMemsetInitialization())
966 return;
967 }
968
969 // Store the new Cleanup position for irregular Cleanups.
970 //
971 // FIXME: Share this cleanup with the constructor call emission rather than
972 // having it create a cleanup of its own.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800973 if (EndOfInit.isValid())
974 Builder.CreateStore(CurPtr.getPointer(), EndOfInit);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700975
976 // Emit a constructor call loop to initialize the remaining elements.
977 if (InitListElements)
978 NumElements = Builder.CreateSub(
979 NumElements,
980 llvm::ConstantInt::get(NumElements->getType(), InitListElements));
Stephen Hines176edba2014-12-01 14:53:08 -0800981 EmitCXXAggrConstructorCall(Ctor, NumElements, CurPtr, CCE,
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700982 CCE->requiresZeroInitialization());
983 return;
984 }
985
986 // If this is value-initialization, we can usually use memset.
987 ImplicitValueInitExpr IVIE(ElementType);
988 if (isa<ImplicitValueInitExpr>(Init)) {
989 if (TryMemsetInitialization())
990 return;
991
992 // Switch to an ImplicitValueInitExpr for the element type. This handles
993 // only one case: multidimensional array new of pointers to members. In
994 // all other cases, we already have an initializer for the array element.
995 Init = &IVIE;
996 }
997
998 // At this point we should have found an initializer for the individual
999 // elements of the array.
1000 assert(getContext().hasSameUnqualifiedType(ElementType, Init->getType()) &&
1001 "got wrong type of element to initialize");
1002
1003 // If we have an empty initializer list, we can usually use memset.
1004 if (auto *ILE = dyn_cast<InitListExpr>(Init))
1005 if (ILE->getNumInits() == 0 && TryMemsetInitialization())
1006 return;
1007
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001008 // If we have a struct whose every field is value-initialized, we can
1009 // usually use memset.
1010 if (auto *ILE = dyn_cast<InitListExpr>(Init)) {
1011 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
1012 if (RType->getDecl()->isStruct()) {
1013 unsigned NumFields = 0;
1014 for (auto *Field : RType->getDecl()->fields())
1015 if (!Field->isUnnamedBitfield())
1016 ++NumFields;
1017 if (ILE->getNumInits() == NumFields)
1018 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
1019 if (!isa<ImplicitValueInitExpr>(ILE->getInit(i)))
1020 --NumFields;
1021 if (ILE->getNumInits() == NumFields && TryMemsetInitialization())
1022 return;
1023 }
1024 }
1025 }
1026
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001027 // Create the loop blocks.
1028 llvm::BasicBlock *EntryBB = Builder.GetInsertBlock();
1029 llvm::BasicBlock *LoopBB = createBasicBlock("new.loop");
1030 llvm::BasicBlock *ContBB = createBasicBlock("new.loop.end");
1031
1032 // Find the end of the array, hoisted out of the loop.
1033 llvm::Value *EndPtr =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001034 Builder.CreateInBoundsGEP(BeginPtr.getPointer(), NumElements, "array.end");
John McCall19705672011-09-15 06:49:18 +00001035
Sebastian Redl92036472012-02-22 17:37:52 +00001036 // If the number of elements isn't constant, we have to now check if there is
1037 // anything left to initialize.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001038 if (!ConstNum) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001039 llvm::Value *IsEmpty =
1040 Builder.CreateICmpEQ(CurPtr.getPointer(), EndPtr, "array.isempty");
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001041 Builder.CreateCondBr(IsEmpty, ContBB, LoopBB);
John McCall19705672011-09-15 06:49:18 +00001042 }
1043
1044 // Enter the loop.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001045 EmitBlock(LoopBB);
John McCall19705672011-09-15 06:49:18 +00001046
1047 // Set up the current-element phi.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001048 llvm::PHINode *CurPtrPhi =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001049 Builder.CreatePHI(CurPtr.getType(), 2, "array.cur");
1050 CurPtrPhi->addIncoming(CurPtr.getPointer(), EntryBB);
1051
1052 CurPtr = Address(CurPtrPhi, ElementAlign);
John McCall19705672011-09-15 06:49:18 +00001053
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001054 // Store the new Cleanup position for irregular Cleanups.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001055 if (EndOfInit.isValid())
1056 Builder.CreateStore(CurPtr.getPointer(), EndOfInit);
Chad Rosier577fb5b2012-02-24 00:13:55 +00001057
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001058 // Enter a partial-destruction Cleanup if necessary.
1059 if (!CleanupDominator && needsEHCleanup(DtorKind)) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001060 pushRegularPartialArrayCleanup(BeginPtr.getPointer(), CurPtr.getPointer(),
1061 ElementType, ElementAlign,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001062 getDestroyer(DtorKind));
1063 Cleanup = EHStack.stable_begin();
1064 CleanupDominator = Builder.CreateUnreachable();
John McCall19705672011-09-15 06:49:18 +00001065 }
1066
1067 // Emit the initializer into this element.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001068 StoreAnyExprIntoOneUnit(*this, Init, Init->getType(), CurPtr);
John McCall19705672011-09-15 06:49:18 +00001069
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001070 // Leave the Cleanup if we entered one.
1071 if (CleanupDominator) {
1072 DeactivateCleanupBlock(Cleanup, CleanupDominator);
1073 CleanupDominator->eraseFromParent();
John McCall6f103ba2011-11-10 10:43:54 +00001074 }
John McCall19705672011-09-15 06:49:18 +00001075
Stephen Hines651f13c2014-04-23 16:59:28 -07001076 // Advance to the next element by adjusting the pointer type as necessary.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001077 llvm::Value *NextPtr =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001078 Builder.CreateConstInBoundsGEP1_32(ElementTy, CurPtr.getPointer(), 1,
1079 "array.next");
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001080
John McCall19705672011-09-15 06:49:18 +00001081 // Check whether we've gotten to the end of the array and, if so,
1082 // exit the loop.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001083 llvm::Value *IsEnd = Builder.CreateICmpEQ(NextPtr, EndPtr, "array.atend");
1084 Builder.CreateCondBr(IsEnd, ContBB, LoopBB);
1085 CurPtrPhi->addIncoming(NextPtr, Builder.GetInsertBlock());
John McCall19705672011-09-15 06:49:18 +00001086
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001087 EmitBlock(ContBB);
Fariborz Jahanianef668722010-06-25 18:26:07 +00001088}
1089
Anders Carlssona4d4c012009-09-23 16:07:23 +00001090static void EmitNewInitializer(CodeGenFunction &CGF, const CXXNewExpr *E,
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07001091 QualType ElementType, llvm::Type *ElementTy,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001092 Address NewPtr, llvm::Value *NumElements,
Douglas Gregor59174c02010-07-21 01:10:17 +00001093 llvm::Value *AllocSizeWithoutCookie) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001094 ApplyDebugLocation DL(CGF, E);
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001095 if (E->isArray())
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07001096 CGF.EmitNewArrayInitializer(E, ElementType, ElementTy, NewPtr, NumElements,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001097 AllocSizeWithoutCookie);
1098 else if (const Expr *Init = E->getInitializer())
1099 StoreAnyExprIntoOneUnit(CGF, Init, E->getAllocatedType(), NewPtr);
Anders Carlssona4d4c012009-09-23 16:07:23 +00001100}
1101
Richard Smithddcff1b2013-07-21 23:12:18 +00001102/// Emit a call to an operator new or operator delete function, as implicitly
1103/// created by new-expressions and delete-expressions.
1104static RValue EmitNewDeleteCall(CodeGenFunction &CGF,
1105 const FunctionDecl *Callee,
1106 const FunctionProtoType *CalleeType,
1107 const CallArgList &Args) {
1108 llvm::Instruction *CallOrInvoke;
Richard Smith060cb4a2013-07-29 20:14:16 +00001109 llvm::Value *CalleeAddr = CGF.CGM.GetAddrOfFunction(Callee);
Richard Smithddcff1b2013-07-21 23:12:18 +00001110 RValue RV =
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001111 CGF.EmitCall(CGF.CGM.getTypes().arrangeFreeFunctionCall(
1112 Args, CalleeType, /*chainCall=*/false),
1113 CalleeAddr, ReturnValueSlot(), Args, Callee, &CallOrInvoke);
Richard Smithddcff1b2013-07-21 23:12:18 +00001114
1115 /// C++1y [expr.new]p10:
1116 /// [In a new-expression,] an implementation is allowed to omit a call
1117 /// to a replaceable global allocation function.
1118 ///
1119 /// We model such elidable calls with the 'builtin' attribute.
Rafael Espindola87017a72013-10-22 14:23:09 +00001120 llvm::Function *Fn = dyn_cast<llvm::Function>(CalleeAddr);
Richard Smith060cb4a2013-07-29 20:14:16 +00001121 if (Callee->isReplaceableGlobalAllocationFunction() &&
Rafael Espindola87017a72013-10-22 14:23:09 +00001122 Fn && Fn->hasFnAttribute(llvm::Attribute::NoBuiltin)) {
Richard Smithddcff1b2013-07-21 23:12:18 +00001123 // FIXME: Add addAttribute to CallSite.
1124 if (llvm::CallInst *CI = dyn_cast<llvm::CallInst>(CallOrInvoke))
1125 CI->addAttribute(llvm::AttributeSet::FunctionIndex,
1126 llvm::Attribute::Builtin);
1127 else if (llvm::InvokeInst *II = dyn_cast<llvm::InvokeInst>(CallOrInvoke))
1128 II->addAttribute(llvm::AttributeSet::FunctionIndex,
1129 llvm::Attribute::Builtin);
1130 else
1131 llvm_unreachable("unexpected kind of call instruction");
1132 }
1133
1134 return RV;
1135}
1136
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001137RValue CodeGenFunction::EmitBuiltinNewDeleteCall(const FunctionProtoType *Type,
1138 const Expr *Arg,
1139 bool IsDelete) {
1140 CallArgList Args;
1141 const Stmt *ArgS = Arg;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001142 EmitCallArgs(Args, *Type->param_type_begin(), llvm::makeArrayRef(ArgS));
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001143 // Find the allocation or deallocation function that we're calling.
1144 ASTContext &Ctx = getContext();
1145 DeclarationName Name = Ctx.DeclarationNames
1146 .getCXXOperatorName(IsDelete ? OO_Delete : OO_New);
1147 for (auto *Decl : Ctx.getTranslationUnitDecl()->lookup(Name))
1148 if (auto *FD = dyn_cast<FunctionDecl>(Decl))
1149 if (Ctx.hasSameType(FD->getType(), QualType(Type, 0)))
1150 return EmitNewDeleteCall(*this, cast<FunctionDecl>(Decl), Type, Args);
1151 llvm_unreachable("predeclared global operator new/delete is missing");
1152}
1153
John McCall7d8647f2010-09-14 07:57:04 +00001154namespace {
1155 /// A cleanup to call the given 'operator delete' function upon
1156 /// abnormal exit from a new expression.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001157 class CallDeleteDuringNew final : public EHScopeStack::Cleanup {
John McCall7d8647f2010-09-14 07:57:04 +00001158 size_t NumPlacementArgs;
1159 const FunctionDecl *OperatorDelete;
1160 llvm::Value *Ptr;
1161 llvm::Value *AllocSize;
1162
1163 RValue *getPlacementArgs() { return reinterpret_cast<RValue*>(this+1); }
1164
1165 public:
1166 static size_t getExtraSize(size_t NumPlacementArgs) {
1167 return NumPlacementArgs * sizeof(RValue);
1168 }
1169
1170 CallDeleteDuringNew(size_t NumPlacementArgs,
1171 const FunctionDecl *OperatorDelete,
1172 llvm::Value *Ptr,
1173 llvm::Value *AllocSize)
1174 : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
1175 Ptr(Ptr), AllocSize(AllocSize) {}
1176
1177 void setPlacementArg(unsigned I, RValue Arg) {
1178 assert(I < NumPlacementArgs && "index out of range");
1179 getPlacementArgs()[I] = Arg;
1180 }
1181
Stephen Hines651f13c2014-04-23 16:59:28 -07001182 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall7d8647f2010-09-14 07:57:04 +00001183 const FunctionProtoType *FPT
1184 = OperatorDelete->getType()->getAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -07001185 assert(FPT->getNumParams() == NumPlacementArgs + 1 ||
1186 (FPT->getNumParams() == 2 && NumPlacementArgs == 0));
John McCall7d8647f2010-09-14 07:57:04 +00001187
1188 CallArgList DeleteArgs;
1189
1190 // The first argument is always a void*.
Stephen Hines651f13c2014-04-23 16:59:28 -07001191 FunctionProtoType::param_type_iterator AI = FPT->param_type_begin();
Eli Friedman04c9a492011-05-02 17:57:46 +00001192 DeleteArgs.add(RValue::get(Ptr), *AI++);
John McCall7d8647f2010-09-14 07:57:04 +00001193
1194 // A member 'operator delete' can take an extra 'size_t' argument.
Stephen Hines651f13c2014-04-23 16:59:28 -07001195 if (FPT->getNumParams() == NumPlacementArgs + 2)
Eli Friedman04c9a492011-05-02 17:57:46 +00001196 DeleteArgs.add(RValue::get(AllocSize), *AI++);
John McCall7d8647f2010-09-14 07:57:04 +00001197
1198 // Pass the rest of the arguments, which must match exactly.
1199 for (unsigned I = 0; I != NumPlacementArgs; ++I)
Eli Friedman04c9a492011-05-02 17:57:46 +00001200 DeleteArgs.add(getPlacementArgs()[I], *AI++);
John McCall7d8647f2010-09-14 07:57:04 +00001201
1202 // Call 'operator delete'.
Richard Smithddcff1b2013-07-21 23:12:18 +00001203 EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs);
John McCall7d8647f2010-09-14 07:57:04 +00001204 }
1205 };
John McCall3019c442010-09-17 00:50:28 +00001206
1207 /// A cleanup to call the given 'operator delete' function upon
1208 /// abnormal exit from a new expression when the new expression is
1209 /// conditional.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001210 class CallDeleteDuringConditionalNew final : public EHScopeStack::Cleanup {
John McCall3019c442010-09-17 00:50:28 +00001211 size_t NumPlacementArgs;
1212 const FunctionDecl *OperatorDelete;
John McCall804b8072011-01-28 10:53:53 +00001213 DominatingValue<RValue>::saved_type Ptr;
1214 DominatingValue<RValue>::saved_type AllocSize;
John McCall3019c442010-09-17 00:50:28 +00001215
John McCall804b8072011-01-28 10:53:53 +00001216 DominatingValue<RValue>::saved_type *getPlacementArgs() {
1217 return reinterpret_cast<DominatingValue<RValue>::saved_type*>(this+1);
John McCall3019c442010-09-17 00:50:28 +00001218 }
1219
1220 public:
1221 static size_t getExtraSize(size_t NumPlacementArgs) {
John McCall804b8072011-01-28 10:53:53 +00001222 return NumPlacementArgs * sizeof(DominatingValue<RValue>::saved_type);
John McCall3019c442010-09-17 00:50:28 +00001223 }
1224
1225 CallDeleteDuringConditionalNew(size_t NumPlacementArgs,
1226 const FunctionDecl *OperatorDelete,
John McCall804b8072011-01-28 10:53:53 +00001227 DominatingValue<RValue>::saved_type Ptr,
1228 DominatingValue<RValue>::saved_type AllocSize)
John McCall3019c442010-09-17 00:50:28 +00001229 : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
1230 Ptr(Ptr), AllocSize(AllocSize) {}
1231
John McCall804b8072011-01-28 10:53:53 +00001232 void setPlacementArg(unsigned I, DominatingValue<RValue>::saved_type Arg) {
John McCall3019c442010-09-17 00:50:28 +00001233 assert(I < NumPlacementArgs && "index out of range");
1234 getPlacementArgs()[I] = Arg;
1235 }
1236
Stephen Hines651f13c2014-04-23 16:59:28 -07001237 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall3019c442010-09-17 00:50:28 +00001238 const FunctionProtoType *FPT
1239 = OperatorDelete->getType()->getAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -07001240 assert(FPT->getNumParams() == NumPlacementArgs + 1 ||
1241 (FPT->getNumParams() == 2 && NumPlacementArgs == 0));
John McCall3019c442010-09-17 00:50:28 +00001242
1243 CallArgList DeleteArgs;
1244
1245 // The first argument is always a void*.
Stephen Hines651f13c2014-04-23 16:59:28 -07001246 FunctionProtoType::param_type_iterator AI = FPT->param_type_begin();
Eli Friedman04c9a492011-05-02 17:57:46 +00001247 DeleteArgs.add(Ptr.restore(CGF), *AI++);
John McCall3019c442010-09-17 00:50:28 +00001248
1249 // A member 'operator delete' can take an extra 'size_t' argument.
Stephen Hines651f13c2014-04-23 16:59:28 -07001250 if (FPT->getNumParams() == NumPlacementArgs + 2) {
John McCall804b8072011-01-28 10:53:53 +00001251 RValue RV = AllocSize.restore(CGF);
Eli Friedman04c9a492011-05-02 17:57:46 +00001252 DeleteArgs.add(RV, *AI++);
John McCall3019c442010-09-17 00:50:28 +00001253 }
1254
1255 // Pass the rest of the arguments, which must match exactly.
1256 for (unsigned I = 0; I != NumPlacementArgs; ++I) {
John McCall804b8072011-01-28 10:53:53 +00001257 RValue RV = getPlacementArgs()[I].restore(CGF);
Eli Friedman04c9a492011-05-02 17:57:46 +00001258 DeleteArgs.add(RV, *AI++);
John McCall3019c442010-09-17 00:50:28 +00001259 }
1260
1261 // Call 'operator delete'.
Richard Smithddcff1b2013-07-21 23:12:18 +00001262 EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs);
John McCall3019c442010-09-17 00:50:28 +00001263 }
1264 };
1265}
1266
1267/// Enter a cleanup to call 'operator delete' if the initializer in a
1268/// new-expression throws.
1269static void EnterNewDeleteCleanup(CodeGenFunction &CGF,
1270 const CXXNewExpr *E,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001271 Address NewPtr,
John McCall3019c442010-09-17 00:50:28 +00001272 llvm::Value *AllocSize,
1273 const CallArgList &NewArgs) {
1274 // If we're not inside a conditional branch, then the cleanup will
1275 // dominate and we can do the easier (and more efficient) thing.
1276 if (!CGF.isInConditionalBranch()) {
1277 CallDeleteDuringNew *Cleanup = CGF.EHStack
1278 .pushCleanupWithExtra<CallDeleteDuringNew>(EHCleanup,
1279 E->getNumPlacementArgs(),
1280 E->getOperatorDelete(),
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001281 NewPtr.getPointer(),
1282 AllocSize);
John McCall3019c442010-09-17 00:50:28 +00001283 for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
Eli Friedmanc6d07822011-05-02 18:05:27 +00001284 Cleanup->setPlacementArg(I, NewArgs[I+1].RV);
John McCall3019c442010-09-17 00:50:28 +00001285
1286 return;
1287 }
1288
1289 // Otherwise, we need to save all this stuff.
John McCall804b8072011-01-28 10:53:53 +00001290 DominatingValue<RValue>::saved_type SavedNewPtr =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001291 DominatingValue<RValue>::save(CGF, RValue::get(NewPtr.getPointer()));
John McCall804b8072011-01-28 10:53:53 +00001292 DominatingValue<RValue>::saved_type SavedAllocSize =
1293 DominatingValue<RValue>::save(CGF, RValue::get(AllocSize));
John McCall3019c442010-09-17 00:50:28 +00001294
1295 CallDeleteDuringConditionalNew *Cleanup = CGF.EHStack
John McCall6f103ba2011-11-10 10:43:54 +00001296 .pushCleanupWithExtra<CallDeleteDuringConditionalNew>(EHCleanup,
John McCall3019c442010-09-17 00:50:28 +00001297 E->getNumPlacementArgs(),
1298 E->getOperatorDelete(),
1299 SavedNewPtr,
1300 SavedAllocSize);
1301 for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
John McCall804b8072011-01-28 10:53:53 +00001302 Cleanup->setPlacementArg(I,
Eli Friedmanc6d07822011-05-02 18:05:27 +00001303 DominatingValue<RValue>::save(CGF, NewArgs[I+1].RV));
John McCall3019c442010-09-17 00:50:28 +00001304
John McCall6f103ba2011-11-10 10:43:54 +00001305 CGF.initFullExprCleanup();
John McCall7d8647f2010-09-14 07:57:04 +00001306}
1307
Anders Carlsson16d81b82009-09-22 22:53:17 +00001308llvm::Value *CodeGenFunction::EmitCXXNewExpr(const CXXNewExpr *E) {
John McCallc2f3e7f2011-03-07 03:12:35 +00001309 // The element type being allocated.
1310 QualType allocType = getContext().getBaseElementType(E->getAllocatedType());
John McCall1e7fe752010-09-02 09:58:18 +00001311
John McCallc2f3e7f2011-03-07 03:12:35 +00001312 // 1. Build a call to the allocation function.
1313 FunctionDecl *allocator = E->getOperatorNew();
Anders Carlsson16d81b82009-09-22 22:53:17 +00001314
Sebastian Redl92036472012-02-22 17:37:52 +00001315 // If there is a brace-initializer, cannot allocate fewer elements than inits.
1316 unsigned minElements = 0;
1317 if (E->isArray() && E->hasInitializer()) {
1318 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(E->getInitializer()))
1319 minElements = ILE->getNumInits();
1320 }
1321
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001322 llvm::Value *numElements = nullptr;
1323 llvm::Value *allocSizeWithoutCookie = nullptr;
John McCallc2f3e7f2011-03-07 03:12:35 +00001324 llvm::Value *allocSize =
Sebastian Redl92036472012-02-22 17:37:52 +00001325 EmitCXXNewAllocSize(*this, E, minElements, numElements,
1326 allocSizeWithoutCookie);
Stephen Hines176edba2014-12-01 14:53:08 -08001327
John McCallb1c98a32011-05-16 01:05:12 +00001328 // Emit the allocation call. If the allocator is a global placement
1329 // operator, just "inline" it directly.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001330 Address allocation = Address::invalid();
1331 CallArgList allocatorArgs;
John McCallb1c98a32011-05-16 01:05:12 +00001332 if (allocator->isReservedGlobalPlacementOperator()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001333 assert(E->getNumPlacementArgs() == 1);
1334 const Expr *arg = *E->placement_arguments().begin();
1335
1336 AlignmentSource alignSource;
1337 allocation = EmitPointerWithAlignment(arg, &alignSource);
1338
1339 // The pointer expression will, in many cases, be an opaque void*.
1340 // In these cases, discard the computed alignment and use the
1341 // formal alignment of the allocated type.
1342 if (alignSource != AlignmentSource::Decl) {
1343 allocation = Address(allocation.getPointer(),
1344 getContext().getTypeAlignInChars(allocType));
1345 }
1346
1347 // Set up allocatorArgs for the call to operator delete if it's not
1348 // the reserved global operator.
1349 if (E->getOperatorDelete() &&
1350 !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) {
1351 allocatorArgs.add(RValue::get(allocSize), getContext().getSizeType());
1352 allocatorArgs.add(RValue::get(allocation.getPointer()), arg->getType());
1353 }
1354
John McCallb1c98a32011-05-16 01:05:12 +00001355 } else {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001356 const FunctionProtoType *allocatorType =
1357 allocator->getType()->castAs<FunctionProtoType>();
1358
1359 // The allocation size is the first argument.
1360 QualType sizeType = getContext().getSizeType();
1361 allocatorArgs.add(RValue::get(allocSize), sizeType);
1362
1363 // We start at 1 here because the first argument (the allocation size)
1364 // has already been emitted.
1365 EmitCallArgs(allocatorArgs, allocatorType, E->placement_arguments(),
1366 /* CalleeDecl */ nullptr,
1367 /*ParamsToSkip*/ 1);
1368
1369 RValue RV =
1370 EmitNewDeleteCall(*this, allocator, allocatorType, allocatorArgs);
1371
1372 // For now, only assume that the allocation function returns
1373 // something satisfactorily aligned for the element type, plus
1374 // the cookie if we have one.
1375 CharUnits allocationAlign =
1376 getContext().getTypeAlignInChars(allocType);
1377 if (allocSize != allocSizeWithoutCookie) {
1378 CharUnits cookieAlign = getSizeAlign(); // FIXME?
1379 allocationAlign = std::max(allocationAlign, cookieAlign);
1380 }
1381
1382 allocation = Address(RV.getScalarVal(), allocationAlign);
John McCallb1c98a32011-05-16 01:05:12 +00001383 }
Anders Carlsson16d81b82009-09-22 22:53:17 +00001384
John McCallc2f3e7f2011-03-07 03:12:35 +00001385 // Emit a null check on the allocation result if the allocation
1386 // function is allowed to return null (because it has a non-throwing
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001387 // exception spec or is the reserved placement new) and we have an
John McCallc2f3e7f2011-03-07 03:12:35 +00001388 // interesting initializer.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001389 bool nullCheck = E->shouldNullCheckAllocation(getContext()) &&
Sebastian Redl2aed8b82012-02-16 12:22:20 +00001390 (!allocType.isPODType(getContext()) || E->hasInitializer());
Anders Carlsson16d81b82009-09-22 22:53:17 +00001391
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001392 llvm::BasicBlock *nullCheckBB = nullptr;
1393 llvm::BasicBlock *contBB = nullptr;
Anders Carlsson16d81b82009-09-22 22:53:17 +00001394
John McCalla7f633f2011-03-07 01:52:56 +00001395 // The null-check means that the initializer is conditionally
1396 // evaluated.
1397 ConditionalEvaluation conditional(*this);
1398
John McCallc2f3e7f2011-03-07 03:12:35 +00001399 if (nullCheck) {
John McCalla7f633f2011-03-07 01:52:56 +00001400 conditional.begin(*this);
John McCallc2f3e7f2011-03-07 03:12:35 +00001401
1402 nullCheckBB = Builder.GetInsertBlock();
1403 llvm::BasicBlock *notNullBB = createBasicBlock("new.notnull");
1404 contBB = createBasicBlock("new.cont");
1405
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001406 llvm::Value *isNull =
1407 Builder.CreateIsNull(allocation.getPointer(), "new.isnull");
John McCallc2f3e7f2011-03-07 03:12:35 +00001408 Builder.CreateCondBr(isNull, contBB, notNullBB);
1409 EmitBlock(notNullBB);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001410 }
Anders Carlsson6ac5fc42009-09-23 18:59:48 +00001411
John McCall7d8647f2010-09-14 07:57:04 +00001412 // If there's an operator delete, enter a cleanup to call it if an
1413 // exception is thrown.
John McCallc2f3e7f2011-03-07 03:12:35 +00001414 EHScopeStack::stable_iterator operatorDeleteCleanup;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001415 llvm::Instruction *cleanupDominator = nullptr;
John McCallb1c98a32011-05-16 01:05:12 +00001416 if (E->getOperatorDelete() &&
1417 !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) {
John McCallc2f3e7f2011-03-07 03:12:35 +00001418 EnterNewDeleteCleanup(*this, E, allocation, allocSize, allocatorArgs);
1419 operatorDeleteCleanup = EHStack.stable_begin();
John McCall6f103ba2011-11-10 10:43:54 +00001420 cleanupDominator = Builder.CreateUnreachable();
John McCall7d8647f2010-09-14 07:57:04 +00001421 }
1422
Eli Friedman576cf172011-09-06 18:53:03 +00001423 assert((allocSize == allocSizeWithoutCookie) ==
1424 CalculateCookiePadding(*this, E).isZero());
1425 if (allocSize != allocSizeWithoutCookie) {
1426 assert(E->isArray());
1427 allocation = CGM.getCXXABI().InitializeArrayCookie(*this, allocation,
1428 numElements,
1429 E, allocType);
1430 }
1431
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07001432 llvm::Type *elementTy = ConvertTypeForMem(allocType);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001433 Address result = Builder.CreateElementBitCast(allocation, elementTy);
1434
1435 // Passing pointer through invariant.group.barrier to avoid propagation of
1436 // vptrs information which may be included in previous type.
1437 if (CGM.getCodeGenOpts().StrictVTablePointers &&
1438 CGM.getCodeGenOpts().OptimizationLevel > 0 &&
1439 allocator->isReservedGlobalPlacementOperator())
1440 result = Address(Builder.CreateInvariantGroupBarrier(result.getPointer()),
1441 result.getAlignment());
John McCall7d8647f2010-09-14 07:57:04 +00001442
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07001443 EmitNewInitializer(*this, E, allocType, elementTy, result, numElements,
John McCall19705672011-09-15 06:49:18 +00001444 allocSizeWithoutCookie);
John McCall1e7fe752010-09-02 09:58:18 +00001445 if (E->isArray()) {
John McCall1e7fe752010-09-02 09:58:18 +00001446 // NewPtr is a pointer to the base element type. If we're
1447 // allocating an array of arrays, we'll need to cast back to the
1448 // array pointer type.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001449 llvm::Type *resultType = ConvertTypeForMem(E->getType());
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001450 if (result.getType() != resultType)
John McCallc2f3e7f2011-03-07 03:12:35 +00001451 result = Builder.CreateBitCast(result, resultType);
Fariborz Jahanianceb43b62010-03-24 16:57:01 +00001452 }
John McCall7d8647f2010-09-14 07:57:04 +00001453
1454 // Deactivate the 'operator delete' cleanup if we finished
1455 // initialization.
John McCall6f103ba2011-11-10 10:43:54 +00001456 if (operatorDeleteCleanup.isValid()) {
1457 DeactivateCleanupBlock(operatorDeleteCleanup, cleanupDominator);
1458 cleanupDominator->eraseFromParent();
1459 }
Sebastian Redl2aed8b82012-02-16 12:22:20 +00001460
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001461 llvm::Value *resultPtr = result.getPointer();
John McCallc2f3e7f2011-03-07 03:12:35 +00001462 if (nullCheck) {
John McCalla7f633f2011-03-07 01:52:56 +00001463 conditional.end(*this);
1464
John McCallc2f3e7f2011-03-07 03:12:35 +00001465 llvm::BasicBlock *notNullBB = Builder.GetInsertBlock();
1466 EmitBlock(contBB);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001467
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001468 llvm::PHINode *PHI = Builder.CreatePHI(resultPtr->getType(), 2);
1469 PHI->addIncoming(resultPtr, notNullBB);
1470 PHI->addIncoming(llvm::Constant::getNullValue(resultPtr->getType()),
John McCallc2f3e7f2011-03-07 03:12:35 +00001471 nullCheckBB);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001472
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001473 resultPtr = PHI;
Anders Carlsson16d81b82009-09-22 22:53:17 +00001474 }
John McCall1e7fe752010-09-02 09:58:18 +00001475
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001476 return resultPtr;
Anders Carlsson16d81b82009-09-22 22:53:17 +00001477}
1478
Eli Friedman5fe05982009-11-18 00:50:08 +00001479void CodeGenFunction::EmitDeleteCall(const FunctionDecl *DeleteFD,
1480 llvm::Value *Ptr,
1481 QualType DeleteTy) {
John McCall1e7fe752010-09-02 09:58:18 +00001482 assert(DeleteFD->getOverloadedOperator() == OO_Delete);
1483
Eli Friedman5fe05982009-11-18 00:50:08 +00001484 const FunctionProtoType *DeleteFTy =
1485 DeleteFD->getType()->getAs<FunctionProtoType>();
1486
1487 CallArgList DeleteArgs;
1488
Anders Carlsson871d0782009-12-13 20:04:38 +00001489 // Check if we need to pass the size to the delete operator.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001490 llvm::Value *Size = nullptr;
Anders Carlsson871d0782009-12-13 20:04:38 +00001491 QualType SizeTy;
Stephen Hines651f13c2014-04-23 16:59:28 -07001492 if (DeleteFTy->getNumParams() == 2) {
1493 SizeTy = DeleteFTy->getParamType(1);
Ken Dyck4f122ef2010-01-26 19:59:28 +00001494 CharUnits DeleteTypeSize = getContext().getTypeSizeInChars(DeleteTy);
1495 Size = llvm::ConstantInt::get(ConvertType(SizeTy),
1496 DeleteTypeSize.getQuantity());
Anders Carlsson871d0782009-12-13 20:04:38 +00001497 }
Stephen Hines651f13c2014-04-23 16:59:28 -07001498
1499 QualType ArgTy = DeleteFTy->getParamType(0);
Eli Friedman5fe05982009-11-18 00:50:08 +00001500 llvm::Value *DeletePtr = Builder.CreateBitCast(Ptr, ConvertType(ArgTy));
Eli Friedman04c9a492011-05-02 17:57:46 +00001501 DeleteArgs.add(RValue::get(DeletePtr), ArgTy);
Eli Friedman5fe05982009-11-18 00:50:08 +00001502
Anders Carlsson871d0782009-12-13 20:04:38 +00001503 if (Size)
Eli Friedman04c9a492011-05-02 17:57:46 +00001504 DeleteArgs.add(RValue::get(Size), SizeTy);
Eli Friedman5fe05982009-11-18 00:50:08 +00001505
1506 // Emit the call to delete.
Richard Smithddcff1b2013-07-21 23:12:18 +00001507 EmitNewDeleteCall(*this, DeleteFD, DeleteFTy, DeleteArgs);
Eli Friedman5fe05982009-11-18 00:50:08 +00001508}
1509
John McCall1e7fe752010-09-02 09:58:18 +00001510namespace {
1511 /// Calls the given 'operator delete' on a single object.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001512 struct CallObjectDelete final : EHScopeStack::Cleanup {
John McCall1e7fe752010-09-02 09:58:18 +00001513 llvm::Value *Ptr;
1514 const FunctionDecl *OperatorDelete;
1515 QualType ElementType;
1516
1517 CallObjectDelete(llvm::Value *Ptr,
1518 const FunctionDecl *OperatorDelete,
1519 QualType ElementType)
1520 : Ptr(Ptr), OperatorDelete(OperatorDelete), ElementType(ElementType) {}
1521
Stephen Hines651f13c2014-04-23 16:59:28 -07001522 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall1e7fe752010-09-02 09:58:18 +00001523 CGF.EmitDeleteCall(OperatorDelete, Ptr, ElementType);
1524 }
1525 };
1526}
1527
Stephen Hines176edba2014-12-01 14:53:08 -08001528void
1529CodeGenFunction::pushCallObjectDeleteCleanup(const FunctionDecl *OperatorDelete,
1530 llvm::Value *CompletePtr,
1531 QualType ElementType) {
1532 EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup, CompletePtr,
1533 OperatorDelete, ElementType);
1534}
1535
John McCall1e7fe752010-09-02 09:58:18 +00001536/// Emit the code for deleting a single object.
1537static void EmitObjectDelete(CodeGenFunction &CGF,
Stephen Hines176edba2014-12-01 14:53:08 -08001538 const CXXDeleteExpr *DE,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001539 Address Ptr,
Stephen Hines176edba2014-12-01 14:53:08 -08001540 QualType ElementType) {
John McCall1e7fe752010-09-02 09:58:18 +00001541 // Find the destructor for the type, if applicable. If the
1542 // destructor is virtual, we'll just emit the vcall and return.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001543 const CXXDestructorDecl *Dtor = nullptr;
John McCall1e7fe752010-09-02 09:58:18 +00001544 if (const RecordType *RT = ElementType->getAs<RecordType>()) {
1545 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Eli Friedmanaebab722011-08-02 18:05:30 +00001546 if (RD->hasDefinition() && !RD->hasTrivialDestructor()) {
John McCall1e7fe752010-09-02 09:58:18 +00001547 Dtor = RD->getDestructor();
1548
1549 if (Dtor->isVirtual()) {
Stephen Hines176edba2014-12-01 14:53:08 -08001550 CGF.CGM.getCXXABI().emitVirtualObjectDelete(CGF, DE, Ptr, ElementType,
1551 Dtor);
John McCall1e7fe752010-09-02 09:58:18 +00001552 return;
1553 }
1554 }
1555 }
1556
1557 // Make sure that we call delete even if the dtor throws.
John McCall3ad32c82011-01-28 08:37:24 +00001558 // This doesn't have to a conditional cleanup because we're going
1559 // to pop it off in a second.
Stephen Hines176edba2014-12-01 14:53:08 -08001560 const FunctionDecl *OperatorDelete = DE->getOperatorDelete();
John McCall1e7fe752010-09-02 09:58:18 +00001561 CGF.EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001562 Ptr.getPointer(),
1563 OperatorDelete, ElementType);
John McCall1e7fe752010-09-02 09:58:18 +00001564
1565 if (Dtor)
1566 CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete,
Douglas Gregor378e1e72013-01-31 05:50:40 +00001567 /*ForVirtualBase=*/false,
1568 /*Delegating=*/false,
1569 Ptr);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001570 else if (auto Lifetime = ElementType.getObjCLifetime()) {
1571 switch (Lifetime) {
John McCallf85e1932011-06-15 23:02:42 +00001572 case Qualifiers::OCL_None:
1573 case Qualifiers::OCL_ExplicitNone:
1574 case Qualifiers::OCL_Autoreleasing:
1575 break;
John McCall1e7fe752010-09-02 09:58:18 +00001576
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001577 case Qualifiers::OCL_Strong:
1578 CGF.EmitARCDestroyStrong(Ptr, ARCPreciseLifetime);
John McCallf85e1932011-06-15 23:02:42 +00001579 break;
John McCallf85e1932011-06-15 23:02:42 +00001580
1581 case Qualifiers::OCL_Weak:
1582 CGF.EmitARCDestroyWeak(Ptr);
1583 break;
1584 }
1585 }
1586
John McCall1e7fe752010-09-02 09:58:18 +00001587 CGF.PopCleanupBlock();
1588}
1589
1590namespace {
1591 /// Calls the given 'operator delete' on an array of objects.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001592 struct CallArrayDelete final : EHScopeStack::Cleanup {
John McCall1e7fe752010-09-02 09:58:18 +00001593 llvm::Value *Ptr;
1594 const FunctionDecl *OperatorDelete;
1595 llvm::Value *NumElements;
1596 QualType ElementType;
1597 CharUnits CookieSize;
1598
1599 CallArrayDelete(llvm::Value *Ptr,
1600 const FunctionDecl *OperatorDelete,
1601 llvm::Value *NumElements,
1602 QualType ElementType,
1603 CharUnits CookieSize)
1604 : Ptr(Ptr), OperatorDelete(OperatorDelete), NumElements(NumElements),
1605 ElementType(ElementType), CookieSize(CookieSize) {}
1606
Stephen Hines651f13c2014-04-23 16:59:28 -07001607 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall1e7fe752010-09-02 09:58:18 +00001608 const FunctionProtoType *DeleteFTy =
1609 OperatorDelete->getType()->getAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -07001610 assert(DeleteFTy->getNumParams() == 1 || DeleteFTy->getNumParams() == 2);
John McCall1e7fe752010-09-02 09:58:18 +00001611
1612 CallArgList Args;
1613
1614 // Pass the pointer as the first argument.
Stephen Hines651f13c2014-04-23 16:59:28 -07001615 QualType VoidPtrTy = DeleteFTy->getParamType(0);
John McCall1e7fe752010-09-02 09:58:18 +00001616 llvm::Value *DeletePtr
1617 = CGF.Builder.CreateBitCast(Ptr, CGF.ConvertType(VoidPtrTy));
Eli Friedman04c9a492011-05-02 17:57:46 +00001618 Args.add(RValue::get(DeletePtr), VoidPtrTy);
John McCall1e7fe752010-09-02 09:58:18 +00001619
1620 // Pass the original requested size as the second argument.
Stephen Hines651f13c2014-04-23 16:59:28 -07001621 if (DeleteFTy->getNumParams() == 2) {
1622 QualType size_t = DeleteFTy->getParamType(1);
Chris Lattner2acc6e32011-07-18 04:24:23 +00001623 llvm::IntegerType *SizeTy
John McCall1e7fe752010-09-02 09:58:18 +00001624 = cast<llvm::IntegerType>(CGF.ConvertType(size_t));
1625
1626 CharUnits ElementTypeSize =
1627 CGF.CGM.getContext().getTypeSizeInChars(ElementType);
1628
1629 // The size of an element, multiplied by the number of elements.
1630 llvm::Value *Size
1631 = llvm::ConstantInt::get(SizeTy, ElementTypeSize.getQuantity());
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001632 if (NumElements)
1633 Size = CGF.Builder.CreateMul(Size, NumElements);
John McCall1e7fe752010-09-02 09:58:18 +00001634
1635 // Plus the size of the cookie if applicable.
1636 if (!CookieSize.isZero()) {
1637 llvm::Value *CookieSizeV
1638 = llvm::ConstantInt::get(SizeTy, CookieSize.getQuantity());
1639 Size = CGF.Builder.CreateAdd(Size, CookieSizeV);
1640 }
1641
Eli Friedman04c9a492011-05-02 17:57:46 +00001642 Args.add(RValue::get(Size), size_t);
John McCall1e7fe752010-09-02 09:58:18 +00001643 }
1644
1645 // Emit the call to delete.
Richard Smithddcff1b2013-07-21 23:12:18 +00001646 EmitNewDeleteCall(CGF, OperatorDelete, DeleteFTy, Args);
John McCall1e7fe752010-09-02 09:58:18 +00001647 }
1648 };
1649}
1650
1651/// Emit the code for deleting an array of objects.
1652static void EmitArrayDelete(CodeGenFunction &CGF,
John McCall6ec278d2011-01-27 09:37:56 +00001653 const CXXDeleteExpr *E,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001654 Address deletedPtr,
John McCall7cfd76c2011-07-13 01:41:37 +00001655 QualType elementType) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001656 llvm::Value *numElements = nullptr;
1657 llvm::Value *allocatedPtr = nullptr;
John McCall7cfd76c2011-07-13 01:41:37 +00001658 CharUnits cookieSize;
1659 CGF.CGM.getCXXABI().ReadArrayCookie(CGF, deletedPtr, E, elementType,
1660 numElements, allocatedPtr, cookieSize);
John McCall1e7fe752010-09-02 09:58:18 +00001661
John McCall7cfd76c2011-07-13 01:41:37 +00001662 assert(allocatedPtr && "ReadArrayCookie didn't set allocated pointer");
John McCall1e7fe752010-09-02 09:58:18 +00001663
1664 // Make sure that we call delete even if one of the dtors throws.
John McCall7cfd76c2011-07-13 01:41:37 +00001665 const FunctionDecl *operatorDelete = E->getOperatorDelete();
John McCall1e7fe752010-09-02 09:58:18 +00001666 CGF.EHStack.pushCleanup<CallArrayDelete>(NormalAndEHCleanup,
John McCall7cfd76c2011-07-13 01:41:37 +00001667 allocatedPtr, operatorDelete,
1668 numElements, elementType,
1669 cookieSize);
John McCall1e7fe752010-09-02 09:58:18 +00001670
John McCall7cfd76c2011-07-13 01:41:37 +00001671 // Destroy the elements.
1672 if (QualType::DestructionKind dtorKind = elementType.isDestructedType()) {
1673 assert(numElements && "no element count for a type with a destructor!");
1674
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001675 CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType);
1676 CharUnits elementAlign =
1677 deletedPtr.getAlignment().alignmentOfArrayElement(elementSize);
1678
1679 llvm::Value *arrayBegin = deletedPtr.getPointer();
John McCall7cfd76c2011-07-13 01:41:37 +00001680 llvm::Value *arrayEnd =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001681 CGF.Builder.CreateInBoundsGEP(arrayBegin, numElements, "delete.end");
John McCallfbf780a2011-07-13 08:09:46 +00001682
1683 // Note that it is legal to allocate a zero-length array, and we
1684 // can never fold the check away because the length should always
1685 // come from a cookie.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001686 CGF.emitArrayDestroy(arrayBegin, arrayEnd, elementType, elementAlign,
John McCall7cfd76c2011-07-13 01:41:37 +00001687 CGF.getDestroyer(dtorKind),
John McCallfbf780a2011-07-13 08:09:46 +00001688 /*checkZeroLength*/ true,
John McCall7cfd76c2011-07-13 01:41:37 +00001689 CGF.needsEHCleanup(dtorKind));
John McCall1e7fe752010-09-02 09:58:18 +00001690 }
1691
John McCall7cfd76c2011-07-13 01:41:37 +00001692 // Pop the cleanup block.
John McCall1e7fe752010-09-02 09:58:18 +00001693 CGF.PopCleanupBlock();
1694}
1695
Anders Carlsson16d81b82009-09-22 22:53:17 +00001696void CodeGenFunction::EmitCXXDeleteExpr(const CXXDeleteExpr *E) {
Douglas Gregor90916562009-09-29 18:16:17 +00001697 const Expr *Arg = E->getArgument();
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001698 Address Ptr = EmitPointerWithAlignment(Arg);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001699
1700 // Null check the pointer.
1701 llvm::BasicBlock *DeleteNotNull = createBasicBlock("delete.notnull");
1702 llvm::BasicBlock *DeleteEnd = createBasicBlock("delete.end");
1703
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001704 llvm::Value *IsNull = Builder.CreateIsNull(Ptr.getPointer(), "isnull");
Anders Carlsson16d81b82009-09-22 22:53:17 +00001705
1706 Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull);
1707 EmitBlock(DeleteNotNull);
Anders Carlsson566abee2009-11-13 04:45:41 +00001708
John McCall1e7fe752010-09-02 09:58:18 +00001709 // We might be deleting a pointer to array. If so, GEP down to the
1710 // first non-array element.
1711 // (this assumes that A(*)[3][7] is converted to [3 x [7 x %A]]*)
1712 QualType DeleteTy = Arg->getType()->getAs<PointerType>()->getPointeeType();
1713 if (DeleteTy->isConstantArrayType()) {
1714 llvm::Value *Zero = Builder.getInt32(0);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001715 SmallVector<llvm::Value*,8> GEP;
John McCall1e7fe752010-09-02 09:58:18 +00001716
1717 GEP.push_back(Zero); // point at the outermost array
1718
1719 // For each layer of array type we're pointing at:
1720 while (const ConstantArrayType *Arr
1721 = getContext().getAsConstantArrayType(DeleteTy)) {
1722 // 1. Unpeel the array type.
1723 DeleteTy = Arr->getElementType();
1724
1725 // 2. GEP to the first element of the array.
1726 GEP.push_back(Zero);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001727 }
John McCall1e7fe752010-09-02 09:58:18 +00001728
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001729 Ptr = Address(Builder.CreateInBoundsGEP(Ptr.getPointer(), GEP, "del.first"),
1730 Ptr.getAlignment());
Anders Carlsson16d81b82009-09-22 22:53:17 +00001731 }
1732
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001733 assert(ConvertTypeForMem(DeleteTy) == Ptr.getElementType());
John McCall1e7fe752010-09-02 09:58:18 +00001734
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07001735 if (E->isArrayForm()) {
1736 EmitArrayDelete(*this, E, Ptr, DeleteTy);
1737 } else {
1738 EmitObjectDelete(*this, E, Ptr, DeleteTy);
1739 }
Anders Carlsson16d81b82009-09-22 22:53:17 +00001740
Anders Carlsson16d81b82009-09-22 22:53:17 +00001741 EmitBlock(DeleteEnd);
1742}
Mike Stumpc2e84ae2009-11-15 08:09:41 +00001743
Stephen Hines176edba2014-12-01 14:53:08 -08001744static bool isGLValueFromPointerDeref(const Expr *E) {
1745 E = E->IgnoreParens();
1746
1747 if (const auto *CE = dyn_cast<CastExpr>(E)) {
1748 if (!CE->getSubExpr()->isGLValue())
1749 return false;
1750 return isGLValueFromPointerDeref(CE->getSubExpr());
1751 }
1752
1753 if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E))
1754 return isGLValueFromPointerDeref(OVE->getSourceExpr());
1755
1756 if (const auto *BO = dyn_cast<BinaryOperator>(E))
1757 if (BO->getOpcode() == BO_Comma)
1758 return isGLValueFromPointerDeref(BO->getRHS());
1759
1760 if (const auto *ACO = dyn_cast<AbstractConditionalOperator>(E))
1761 return isGLValueFromPointerDeref(ACO->getTrueExpr()) ||
1762 isGLValueFromPointerDeref(ACO->getFalseExpr());
1763
1764 // C++11 [expr.sub]p1:
1765 // The expression E1[E2] is identical (by definition) to *((E1)+(E2))
1766 if (isa<ArraySubscriptExpr>(E))
1767 return true;
1768
1769 if (const auto *UO = dyn_cast<UnaryOperator>(E))
1770 if (UO->getOpcode() == UO_Deref)
1771 return true;
1772
1773 return false;
1774}
1775
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001776static llvm::Value *EmitTypeidFromVTable(CodeGenFunction &CGF, const Expr *E,
Chris Lattner2acc6e32011-07-18 04:24:23 +00001777 llvm::Type *StdTypeInfoPtrTy) {
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001778 // Get the vtable pointer.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001779 Address ThisPtr = CGF.EmitLValue(E).getAddress();
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001780
1781 // C++ [expr.typeid]p2:
1782 // If the glvalue expression is obtained by applying the unary * operator to
1783 // a pointer and the pointer is a null pointer value, the typeid expression
1784 // throws the std::bad_typeid exception.
Stephen Hines176edba2014-12-01 14:53:08 -08001785 //
1786 // However, this paragraph's intent is not clear. We choose a very generous
1787 // interpretation which implores us to consider comma operators, conditional
1788 // operators, parentheses and other such constructs.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001789 QualType SrcRecordTy = E->getType();
Stephen Hines176edba2014-12-01 14:53:08 -08001790 if (CGF.CGM.getCXXABI().shouldTypeidBeNullChecked(
1791 isGLValueFromPointerDeref(E), SrcRecordTy)) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001792 llvm::BasicBlock *BadTypeidBlock =
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001793 CGF.createBasicBlock("typeid.bad_typeid");
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001794 llvm::BasicBlock *EndBlock = CGF.createBasicBlock("typeid.end");
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001795
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001796 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ThisPtr.getPointer());
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001797 CGF.Builder.CreateCondBr(IsNull, BadTypeidBlock, EndBlock);
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001798
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001799 CGF.EmitBlock(BadTypeidBlock);
1800 CGF.CGM.getCXXABI().EmitBadTypeidCall(CGF);
1801 CGF.EmitBlock(EndBlock);
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001802 }
1803
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001804 return CGF.CGM.getCXXABI().EmitTypeid(CGF, SrcRecordTy, ThisPtr,
1805 StdTypeInfoPtrTy);
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001806}
1807
John McCall3ad32c82011-01-28 08:37:24 +00001808llvm::Value *CodeGenFunction::EmitCXXTypeidExpr(const CXXTypeidExpr *E) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001809 llvm::Type *StdTypeInfoPtrTy =
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001810 ConvertType(E->getType())->getPointerTo();
Anders Carlsson31b7f522009-12-11 02:46:30 +00001811
Anders Carlsson1d7088d2009-12-17 07:09:17 +00001812 if (E->isTypeOperand()) {
David Majnemerfe16aa32013-09-27 07:04:31 +00001813 llvm::Constant *TypeInfo =
1814 CGM.GetAddrOfRTTIDescriptor(E->getTypeOperand(getContext()));
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001815 return Builder.CreateBitCast(TypeInfo, StdTypeInfoPtrTy);
Anders Carlsson1d7088d2009-12-17 07:09:17 +00001816 }
Anders Carlsson4bdbc0c2011-04-11 14:13:40 +00001817
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001818 // C++ [expr.typeid]p2:
1819 // When typeid is applied to a glvalue expression whose type is a
1820 // polymorphic class type, the result refers to a std::type_info object
1821 // representing the type of the most derived object (that is, the dynamic
1822 // type) to which the glvalue refers.
Richard Smith0d729102012-08-13 20:08:14 +00001823 if (E->isPotentiallyEvaluated())
1824 return EmitTypeidFromVTable(*this, E->getExprOperand(),
1825 StdTypeInfoPtrTy);
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001826
1827 QualType OperandTy = E->getExprOperand()->getType();
1828 return Builder.CreateBitCast(CGM.GetAddrOfRTTIDescriptor(OperandTy),
1829 StdTypeInfoPtrTy);
Mike Stumpc2e84ae2009-11-15 08:09:41 +00001830}
Mike Stumpc849c052009-11-16 06:50:58 +00001831
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001832static llvm::Value *EmitDynamicCastToNull(CodeGenFunction &CGF,
1833 QualType DestTy) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001834 llvm::Type *DestLTy = CGF.ConvertType(DestTy);
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001835 if (DestTy->isPointerType())
1836 return llvm::Constant::getNullValue(DestLTy);
1837
1838 /// C++ [expr.dynamic.cast]p9:
1839 /// A failed cast to reference type throws std::bad_cast
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001840 if (!CGF.CGM.getCXXABI().EmitBadCastCall(CGF))
1841 return nullptr;
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001842
1843 CGF.EmitBlock(CGF.createBasicBlock("dynamic_cast.end"));
1844 return llvm::UndefValue::get(DestLTy);
1845}
1846
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001847llvm::Value *CodeGenFunction::EmitDynamicCast(Address ThisAddr,
Mike Stumpc849c052009-11-16 06:50:58 +00001848 const CXXDynamicCastExpr *DCE) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001849 CGM.EmitExplicitCastExprType(DCE, this);
Anders Carlsson1d7088d2009-12-17 07:09:17 +00001850 QualType DestTy = DCE->getTypeAsWritten();
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001851
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001852 if (DCE->isAlwaysNull())
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001853 if (llvm::Value *T = EmitDynamicCastToNull(*this, DestTy))
1854 return T;
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001855
1856 QualType SrcTy = DCE->getSubExpr()->getType();
1857
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001858 // C++ [expr.dynamic.cast]p7:
1859 // If T is "pointer to cv void," then the result is a pointer to the most
1860 // derived object pointed to by v.
1861 const PointerType *DestPTy = DestTy->getAs<PointerType>();
1862
1863 bool isDynamicCastToVoid;
1864 QualType SrcRecordTy;
1865 QualType DestRecordTy;
1866 if (DestPTy) {
1867 isDynamicCastToVoid = DestPTy->getPointeeType()->isVoidType();
1868 SrcRecordTy = SrcTy->castAs<PointerType>()->getPointeeType();
1869 DestRecordTy = DestPTy->getPointeeType();
1870 } else {
1871 isDynamicCastToVoid = false;
1872 SrcRecordTy = SrcTy;
1873 DestRecordTy = DestTy->castAs<ReferenceType>()->getPointeeType();
1874 }
1875
1876 assert(SrcRecordTy->isRecordType() && "source type must be a record type!");
1877
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001878 // C++ [expr.dynamic.cast]p4:
1879 // If the value of v is a null pointer value in the pointer case, the result
1880 // is the null pointer value of type T.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001881 bool ShouldNullCheckSrcValue =
1882 CGM.getCXXABI().shouldDynamicCastCallBeNullChecked(SrcTy->isPointerType(),
1883 SrcRecordTy);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001884
1885 llvm::BasicBlock *CastNull = nullptr;
1886 llvm::BasicBlock *CastNotNull = nullptr;
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001887 llvm::BasicBlock *CastEnd = createBasicBlock("dynamic_cast.end");
Mike Stumpc849c052009-11-16 06:50:58 +00001888
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001889 if (ShouldNullCheckSrcValue) {
1890 CastNull = createBasicBlock("dynamic_cast.null");
1891 CastNotNull = createBasicBlock("dynamic_cast.notnull");
1892
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001893 llvm::Value *IsNull = Builder.CreateIsNull(ThisAddr.getPointer());
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001894 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
1895 EmitBlock(CastNotNull);
Mike Stumpc849c052009-11-16 06:50:58 +00001896 }
1897
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001898 llvm::Value *Value;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001899 if (isDynamicCastToVoid) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001900 Value = CGM.getCXXABI().EmitDynamicCastToVoid(*this, ThisAddr, SrcRecordTy,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001901 DestTy);
1902 } else {
1903 assert(DestRecordTy->isRecordType() &&
1904 "destination type must be a record type!");
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001905 Value = CGM.getCXXABI().EmitDynamicCastCall(*this, ThisAddr, SrcRecordTy,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001906 DestTy, DestRecordTy, CastEnd);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001907 CastNotNull = Builder.GetInsertBlock();
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001908 }
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001909
1910 if (ShouldNullCheckSrcValue) {
1911 EmitBranch(CastEnd);
1912
1913 EmitBlock(CastNull);
1914 EmitBranch(CastEnd);
1915 }
1916
1917 EmitBlock(CastEnd);
1918
1919 if (ShouldNullCheckSrcValue) {
1920 llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
1921 PHI->addIncoming(Value, CastNotNull);
1922 PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), CastNull);
1923
1924 Value = PHI;
1925 }
1926
1927 return Value;
Mike Stumpc849c052009-11-16 06:50:58 +00001928}
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001929
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001930void CodeGenFunction::EmitLambdaExpr(const LambdaExpr *E, AggValueSlot Slot) {
Eli Friedmanf8823e72012-02-09 03:47:20 +00001931 RunCleanupsScope Scope(*this);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001932 LValue SlotLV = MakeAddrLValue(Slot.getAddress(), E->getType());
Eli Friedmanf8823e72012-02-09 03:47:20 +00001933
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001934 CXXRecordDecl::field_iterator CurField = E->getLambdaClass()->field_begin();
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001935 for (LambdaExpr::const_capture_init_iterator i = E->capture_init_begin(),
1936 e = E->capture_init_end();
Eric Christopherc07b18e2012-02-29 03:25:18 +00001937 i != e; ++i, ++CurField) {
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001938 // Emit initialization
David Blaikie581deb32012-06-06 20:45:41 +00001939 LValue LV = EmitLValueForFieldInitialization(SlotLV, *CurField);
Stephen Hines176edba2014-12-01 14:53:08 -08001940 if (CurField->hasCapturedVLAType()) {
1941 auto VAT = CurField->getCapturedVLAType();
1942 EmitStoreThroughLValue(RValue::get(VLASizeMap[VAT->getSizeExpr()]), LV);
1943 } else {
1944 ArrayRef<VarDecl *> ArrayIndexes;
1945 if (CurField->getType()->isArrayType())
1946 ArrayIndexes = E->getCaptureInitIndexVars(i);
1947 EmitInitializerForField(*CurField, LV, *i, ArrayIndexes);
1948 }
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001949 }
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001950}