blob: eec2aceb88a282f029fe932b4e9882c2480c0c50 [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
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070027static RequiredArgs
28commonEmitCXXMemberOrOperatorCall(CodeGenFunction &CGF, const CXXMethodDecl *MD,
29 llvm::Value *This, llvm::Value *ImplicitParam,
30 QualType ImplicitParamTy, const CallExpr *CE,
31 CallArgList &Args) {
Stephen Hines176edba2014-12-01 14:53:08 -080032 assert(CE == nullptr || isa<CXXMemberCallExpr>(CE) ||
33 isa<CXXOperatorCallExpr>(CE));
Anders Carlsson3b5ad222010-01-01 20:29:01 +000034 assert(MD->isInstance() &&
Stephen Hines176edba2014-12-01 14:53:08 -080035 "Trying to emit a member or operator call expr on a static method!");
Anders Carlsson3b5ad222010-01-01 20:29:01 +000036
Richard Smith2c9f87c2012-08-24 00:54:33 +000037 // C++11 [class.mfct.non-static]p2:
38 // If a non-static member function of a class X is called for an object that
39 // is not of type X, or of a type derived from X, the behavior is undefined.
Stephen Hines176edba2014-12-01 14:53:08 -080040 SourceLocation CallLoc;
41 if (CE)
42 CallLoc = CE->getExprLoc();
43 CGF.EmitTypeCheck(
44 isa<CXXConstructorDecl>(MD) ? CodeGenFunction::TCK_ConstructorCall
45 : CodeGenFunction::TCK_MemberCall,
46 CallLoc, This, CGF.getContext().getRecordType(MD->getParent()));
Anders Carlsson3b5ad222010-01-01 20:29:01 +000047
48 // Push the this ptr.
Stephen Hines176edba2014-12-01 14:53:08 -080049 Args.add(RValue::get(This), MD->getThisType(CGF.getContext()));
Anders Carlsson3b5ad222010-01-01 20:29:01 +000050
Timur Iskhodzhanov59660c22013-02-13 08:37:51 +000051 // If there is an implicit parameter (e.g. VTT), emit it.
52 if (ImplicitParam) {
53 Args.add(RValue::get(ImplicitParam), ImplicitParamTy);
Anders Carlssonc997d422010-01-02 01:01:18 +000054 }
John McCallde5d3c72012-02-17 03:33:10 +000055
56 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070057 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size(), MD);
Anders Carlsson3b5ad222010-01-01 20:29:01 +000058
Stephen Hines176edba2014-12-01 14:53:08 -080059 // And the rest of the call args.
60 if (CE) {
61 // Special case: skip first argument of CXXOperatorCall (it is "this").
62 unsigned ArgsToSkip = isa<CXXOperatorCallExpr>(CE) ? 1 : 0;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -080063 CGF.EmitCallArgs(Args, FPT, drop_begin(CE->arguments(), ArgsToSkip),
Stephen Hines176edba2014-12-01 14:53:08 -080064 CE->getDirectCallee());
65 } else {
66 assert(
67 FPT->getNumParams() == 0 &&
68 "No CallExpr specified for function with non-zero number of arguments");
69 }
70 return required;
71}
72
73RValue CodeGenFunction::EmitCXXMemberOrOperatorCall(
74 const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue,
75 llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy,
76 const CallExpr *CE) {
77 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
78 CallArgList Args;
79 RequiredArgs required = commonEmitCXXMemberOrOperatorCall(
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070080 *this, MD, This, ImplicitParam, ImplicitParamTy, CE, 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
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070085RValue CodeGenFunction::EmitCXXDestructorCall(
86 const CXXDestructorDecl *DD, llvm::Value *Callee, llvm::Value *This,
87 llvm::Value *ImplicitParam, QualType ImplicitParamTy, const CallExpr *CE,
88 StructorType Type) {
Stephen Hines176edba2014-12-01 14:53:08 -080089 CallArgList Args;
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -070090 commonEmitCXXMemberOrOperatorCall(*this, DD, This, ImplicitParam,
91 ImplicitParamTy, CE, Args);
92 return EmitCall(CGM.getTypes().arrangeCXXStructorDeclaration(DD, Type),
93 Callee, ReturnValueSlot(), Args, DD);
Stephen Hines176edba2014-12-01 14:53:08 -080094}
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());
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700262 EmitVTablePtrCheckForCall(MD->getParent(), VTable, CFITCK_NVCall,
263 CE->getLocStart());
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -0700264 }
265
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700266 if (getLangOpts().AppleKext && MD->isVirtual() && HasQualifier)
267 Callee = BuildAppleKextVirtualCall(MD, Qualifier, Ty);
Rafael Espindolaea01d762012-06-28 14:28:57 +0000268 else if (!DevirtualizedMethod)
Rafael Espindola12582bd2012-06-26 19:18:25 +0000269 Callee = CGM.GetAddrOfFunction(MD, Ty);
Rafael Espindola0b4fe502012-06-26 17:45:31 +0000270 else {
Rafael Espindolaea01d762012-06-28 14:28:57 +0000271 Callee = CGM.GetAddrOfFunction(DevirtualizedMethod, Ty);
Rafael Espindola0b4fe502012-06-26 17:45:31 +0000272 }
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000273 }
274
Stephen Hines651f13c2014-04-23 16:59:28 -0700275 if (MD->isVirtual()) {
276 This = CGM.getCXXABI().adjustThisArgumentForVirtualFunctionCall(
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700277 *this, CalleeDecl, This, UseVirtualCall);
Stephen Hines651f13c2014-04-23 16:59:28 -0700278 }
Timur Iskhodzhanov8f189a92013-08-21 06:25:03 +0000279
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800280 return EmitCXXMemberOrOperatorCall(MD, Callee, ReturnValue, This.getPointer(),
Stephen Hines176edba2014-12-01 14:53:08 -0800281 /*ImplicitParam=*/nullptr, QualType(), CE);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000282}
283
284RValue
285CodeGenFunction::EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E,
286 ReturnValueSlot ReturnValue) {
287 const BinaryOperator *BO =
288 cast<BinaryOperator>(E->getCallee()->IgnoreParens());
289 const Expr *BaseExpr = BO->getLHS();
290 const Expr *MemFnExpr = BO->getRHS();
291
292 const MemberPointerType *MPT =
John McCall864c0412011-04-26 20:42:42 +0000293 MemFnExpr->getType()->castAs<MemberPointerType>();
John McCall93d557b2010-08-22 00:05:51 +0000294
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000295 const FunctionProtoType *FPT =
John McCall864c0412011-04-26 20:42:42 +0000296 MPT->getPointeeType()->castAs<FunctionProtoType>();
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000297 const CXXRecordDecl *RD =
298 cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl());
299
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000300 // Get the member function pointer.
John McCalld608cdb2010-08-22 10:59:02 +0000301 llvm::Value *MemFnPtr = EmitScalarExpr(MemFnExpr);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000302
303 // Emit the 'this' pointer.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800304 Address This = Address::invalid();
John McCall2de56d12010-08-25 11:45:40 +0000305 if (BO->getOpcode() == BO_PtrMemI)
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800306 This = EmitPointerWithAlignment(BaseExpr);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000307 else
308 This = EmitLValue(BaseExpr).getAddress();
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000309
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800310 EmitTypeCheck(TCK_MemberCall, E->getExprLoc(), This.getPointer(),
Richard Smith4def70d2012-10-09 19:52:38 +0000311 QualType(MPT->getClass(), 0));
Richard Smith2c9f87c2012-08-24 00:54:33 +0000312
John McCall93d557b2010-08-22 00:05:51 +0000313 // Ask the ABI to load the callee. Note that This is modified.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800314 llvm::Value *ThisPtrForCall = nullptr;
John McCall93d557b2010-08-22 00:05:51 +0000315 llvm::Value *Callee =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800316 CGM.getCXXABI().EmitLoadOfMemberFunctionPointer(*this, BO, This,
317 ThisPtrForCall, MemFnPtr, MPT);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000318
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000319 CallArgList Args;
320
321 QualType ThisType =
322 getContext().getPointerType(getContext().getTagDeclType(RD));
323
324 // Push the this ptr.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800325 Args.add(RValue::get(ThisPtrForCall), ThisType);
John McCall0f3d0972012-07-07 06:41:13 +0000326
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700327 RequiredArgs required =
328 RequiredArgs::forPrototypePlus(FPT, 1, /*FD=*/nullptr);
329
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000330 // And the rest of the call args
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700331 EmitCallArgs(Args, FPT, E->arguments());
Nick Lewycky5d4a7552013-10-01 21:51:38 +0000332 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
333 Callee, ReturnValue, Args);
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000334}
335
336RValue
337CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
338 const CXXMethodDecl *MD,
339 ReturnValueSlot ReturnValue) {
340 assert(MD->isInstance() &&
341 "Trying to emit a member call expr on a static method!");
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700342 return EmitCXXMemberOrOperatorMemberCallExpr(
343 E, MD, ReturnValue, /*HasQualifier=*/false, /*Qualifier=*/nullptr,
344 /*IsArrow=*/false, E->getArg(0));
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000345}
346
Peter Collingbourne6c0aa5f2011-10-06 18:29:37 +0000347RValue CodeGenFunction::EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E,
348 ReturnValueSlot ReturnValue) {
349 return CGM.getCUDARuntime().EmitCUDAKernelCallExpr(*this, E, ReturnValue);
350}
351
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000352static void EmitNullBaseClassInitialization(CodeGenFunction &CGF,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800353 Address DestPtr,
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000354 const CXXRecordDecl *Base) {
355 if (Base->isEmpty())
356 return;
357
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800358 DestPtr = CGF.Builder.CreateElementBitCast(DestPtr, CGF.Int8Ty);
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000359
360 const ASTRecordLayout &Layout = CGF.getContext().getASTRecordLayout(Base);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800361 CharUnits NVSize = Layout.getNonVirtualSize();
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000362
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800363 // We cannot simply zero-initialize the entire base sub-object if vbptrs are
364 // present, they are initialized by the most derived class before calling the
365 // constructor.
366 SmallVector<std::pair<CharUnits, CharUnits>, 1> Stores;
367 Stores.emplace_back(CharUnits::Zero(), NVSize);
368
369 // Each store is split by the existence of a vbptr.
370 CharUnits VBPtrWidth = CGF.getPointerSize();
371 std::vector<CharUnits> VBPtrOffsets =
372 CGF.CGM.getCXXABI().getVBPtrOffsets(Base);
373 for (CharUnits VBPtrOffset : VBPtrOffsets) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700374 // Stop before we hit any virtual base pointers located in virtual bases.
375 if (VBPtrOffset >= NVSize)
376 break;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800377 std::pair<CharUnits, CharUnits> LastStore = Stores.pop_back_val();
378 CharUnits LastStoreOffset = LastStore.first;
379 CharUnits LastStoreSize = LastStore.second;
380
381 CharUnits SplitBeforeOffset = LastStoreOffset;
382 CharUnits SplitBeforeSize = VBPtrOffset - SplitBeforeOffset;
383 assert(!SplitBeforeSize.isNegative() && "negative store size!");
384 if (!SplitBeforeSize.isZero())
385 Stores.emplace_back(SplitBeforeOffset, SplitBeforeSize);
386
387 CharUnits SplitAfterOffset = VBPtrOffset + VBPtrWidth;
388 CharUnits SplitAfterSize = LastStoreSize - SplitAfterOffset;
389 assert(!SplitAfterSize.isNegative() && "negative store size!");
390 if (!SplitAfterSize.isZero())
391 Stores.emplace_back(SplitAfterOffset, SplitAfterSize);
392 }
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000393
394 // If the type contains a pointer to data member we can't memset it to zero.
395 // Instead, create a null constant and copy it to the destination.
396 // TODO: there are other patterns besides zero that we can usefully memset,
397 // like -1, which happens to be the pattern used by member-pointers.
398 // TODO: isZeroInitializable can be over-conservative in the case where a
399 // virtual base contains a member pointer.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800400 llvm::Constant *NullConstantForBase = CGF.CGM.EmitNullConstantForBase(Base);
401 if (!NullConstantForBase->isNullValue()) {
402 llvm::GlobalVariable *NullVariable = new llvm::GlobalVariable(
403 CGF.CGM.getModule(), NullConstantForBase->getType(),
404 /*isConstant=*/true, llvm::GlobalVariable::PrivateLinkage,
405 NullConstantForBase, Twine());
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000406
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800407 CharUnits Align = std::max(Layout.getNonVirtualAlignment(),
408 DestPtr.getAlignment());
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000409 NullVariable->setAlignment(Align.getQuantity());
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800410
411 Address SrcPtr = Address(CGF.EmitCastToVoidPtr(NullVariable), Align);
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000412
413 // Get and call the appropriate llvm.memcpy overload.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800414 for (std::pair<CharUnits, CharUnits> Store : Stores) {
415 CharUnits StoreOffset = Store.first;
416 CharUnits StoreSize = Store.second;
417 llvm::Value *StoreSizeVal = CGF.CGM.getSize(StoreSize);
418 CGF.Builder.CreateMemCpy(
419 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset),
420 CGF.Builder.CreateConstInBoundsByteGEP(SrcPtr, StoreOffset),
421 StoreSizeVal);
422 }
423
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000424 // Otherwise, just memset the whole thing to zero. This is legal
425 // because in LLVM, all default initializers (other than the ones we just
426 // handled above) are guaranteed to have a bit pattern of all zeros.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800427 } else {
428 for (std::pair<CharUnits, CharUnits> Store : Stores) {
429 CharUnits StoreOffset = Store.first;
430 CharUnits StoreSize = Store.second;
431 llvm::Value *StoreSizeVal = CGF.CGM.getSize(StoreSize);
432 CGF.Builder.CreateMemSet(
433 CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset),
434 CGF.Builder.getInt8(0), StoreSizeVal);
435 }
436 }
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000437}
438
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000439void
John McCall558d2ab2010-09-15 10:14:12 +0000440CodeGenFunction::EmitCXXConstructExpr(const CXXConstructExpr *E,
441 AggValueSlot Dest) {
442 assert(!Dest.isIgnored() && "Must have a destination!");
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000443 const CXXConstructorDecl *CD = E->getConstructor();
Douglas Gregor759e41b2010-08-22 16:15:35 +0000444
445 // If we require zero initialization before (or instead of) calling the
446 // constructor, as can be the case with a non-user-provided default
Argyrios Kyrtzidis657baf12011-04-28 22:57:55 +0000447 // constructor, emit the zero initialization now, unless destination is
448 // already zeroed.
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000449 if (E->requiresZeroInitialization() && !Dest.isZeroed()) {
450 switch (E->getConstructionKind()) {
451 case CXXConstructExpr::CK_Delegating:
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000452 case CXXConstructExpr::CK_Complete:
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800453 EmitNullInitialization(Dest.getAddress(), E->getType());
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000454 break;
455 case CXXConstructExpr::CK_VirtualBase:
456 case CXXConstructExpr::CK_NonVirtualBase:
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800457 EmitNullBaseClassInitialization(*this, Dest.getAddress(),
458 CD->getParent());
Eli Friedman2ed7cb62011-10-14 02:27:24 +0000459 break;
460 }
461 }
Douglas Gregor759e41b2010-08-22 16:15:35 +0000462
463 // If this is a call to a trivial default constructor, do nothing.
464 if (CD->isTrivial() && CD->isDefaultConstructor())
465 return;
466
John McCallfc1e6c72010-09-18 00:58:34 +0000467 // Elide the constructor if we're constructing from a temporary.
468 // The temporary check is required because Sema sets this on NRVO
469 // returns.
Richard Smith7edf9e32012-11-01 22:30:59 +0000470 if (getLangOpts().ElideConstructors && E->isElidable()) {
John McCallfc1e6c72010-09-18 00:58:34 +0000471 assert(getContext().hasSameUnqualifiedType(E->getType(),
472 E->getArg(0)->getType()));
John McCall558d2ab2010-09-15 10:14:12 +0000473 if (E->getArg(0)->isTemporaryObject(getContext(), CD->getParent())) {
474 EmitAggExpr(E->getArg(0), Dest);
Douglas Gregor3c9034c2010-05-15 00:13:29 +0000475 return;
476 }
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000477 }
Douglas Gregor759e41b2010-08-22 16:15:35 +0000478
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -0700479 if (const ArrayType *arrayType
480 = getContext().getAsArrayType(E->getType())) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800481 EmitCXXAggrConstructorCall(CD, arrayType, Dest.getAddress(), E);
John McCallc3c07662011-07-13 06:10:41 +0000482 } else {
Cameron Esfahani6bd2f6a2011-05-06 21:28:42 +0000483 CXXCtorType Type = Ctor_Complete;
Sean Huntd49bd552011-05-03 20:19:28 +0000484 bool ForVirtualBase = false;
Douglas Gregor378e1e72013-01-31 05:50:40 +0000485 bool Delegating = false;
486
Sean Huntd49bd552011-05-03 20:19:28 +0000487 switch (E->getConstructionKind()) {
488 case CXXConstructExpr::CK_Delegating:
Sean Hunt059ce0d2011-05-01 07:04:31 +0000489 // We should be emitting a constructor; GlobalDecl will assert this
490 Type = CurGD.getCtorType();
Douglas Gregor378e1e72013-01-31 05:50:40 +0000491 Delegating = true;
Sean Huntd49bd552011-05-03 20:19:28 +0000492 break;
Sean Hunt059ce0d2011-05-01 07:04:31 +0000493
Sean Huntd49bd552011-05-03 20:19:28 +0000494 case CXXConstructExpr::CK_Complete:
495 Type = Ctor_Complete;
496 break;
497
498 case CXXConstructExpr::CK_VirtualBase:
499 ForVirtualBase = true;
500 // fall-through
501
502 case CXXConstructExpr::CK_NonVirtualBase:
503 Type = Ctor_Base;
504 }
Anders Carlsson155ed4a2010-05-02 23:20:53 +0000505
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000506 // Call the constructor.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800507 EmitCXXConstructorCall(CD, Type, ForVirtualBase, Delegating,
508 Dest.getAddress(), E);
Anders Carlsson155ed4a2010-05-02 23:20:53 +0000509 }
Anders Carlsson3b5ad222010-01-01 20:29:01 +0000510}
511
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800512void CodeGenFunction::EmitSynthesizedCXXCopyCtor(Address Dest, Address Src,
513 const Expr *Exp) {
John McCall4765fa02010-12-06 08:20:24 +0000514 if (const ExprWithCleanups *E = dyn_cast<ExprWithCleanups>(Exp))
Fariborz Jahanian34999872010-11-13 21:53:34 +0000515 Exp = E->getSubExpr();
516 assert(isa<CXXConstructExpr>(Exp) &&
517 "EmitSynthesizedCXXCopyCtor - unknown copy ctor expr");
518 const CXXConstructExpr* E = cast<CXXConstructExpr>(Exp);
519 const CXXConstructorDecl *CD = E->getConstructor();
520 RunCleanupsScope Scope(*this);
521
522 // If we require zero initialization before (or instead of) calling the
523 // constructor, as can be the case with a non-user-provided default
524 // constructor, emit the zero initialization now.
525 // FIXME. Do I still need this for a copy ctor synthesis?
526 if (E->requiresZeroInitialization())
527 EmitNullInitialization(Dest, E->getType());
528
Chandler Carruth858a5462010-11-15 13:54:43 +0000529 assert(!getContext().getAsConstantArrayType(E->getType())
530 && "EmitSynthesizedCXXCopyCtor - Copied-in Array");
Stephen Hines176edba2014-12-01 14:53:08 -0800531 EmitSynthesizedCXXCopyCtorCall(CD, Dest, Src, E);
Fariborz Jahanian34999872010-11-13 21:53:34 +0000532}
533
John McCall1e7fe752010-09-02 09:58:18 +0000534static CharUnits CalculateCookiePadding(CodeGenFunction &CGF,
535 const CXXNewExpr *E) {
Anders Carlsson871d0782009-12-13 20:04:38 +0000536 if (!E->isArray())
Ken Dyckcaf647c2010-01-26 19:44:24 +0000537 return CharUnits::Zero();
Anders Carlsson871d0782009-12-13 20:04:38 +0000538
John McCallb1c98a32011-05-16 01:05:12 +0000539 // No cookie is required if the operator new[] being used is the
540 // reserved placement operator new[].
541 if (E->getOperatorNew()->isReservedGlobalPlacementOperator())
John McCall5172ed92010-08-23 01:17:59 +0000542 return CharUnits::Zero();
543
John McCall6ec278d2011-01-27 09:37:56 +0000544 return CGF.CGM.getCXXABI().GetArrayCookieSize(E);
Anders Carlssona4d4c012009-09-23 16:07:23 +0000545}
546
John McCall7d166272011-05-15 07:14:44 +0000547static llvm::Value *EmitCXXNewAllocSize(CodeGenFunction &CGF,
548 const CXXNewExpr *e,
Sebastian Redl92036472012-02-22 17:37:52 +0000549 unsigned minElements,
John McCall7d166272011-05-15 07:14:44 +0000550 llvm::Value *&numElements,
551 llvm::Value *&sizeWithoutCookie) {
552 QualType type = e->getAllocatedType();
John McCall1e7fe752010-09-02 09:58:18 +0000553
John McCall7d166272011-05-15 07:14:44 +0000554 if (!e->isArray()) {
555 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
556 sizeWithoutCookie
557 = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity());
558 return sizeWithoutCookie;
Douglas Gregor59174c02010-07-21 01:10:17 +0000559 }
Anders Carlssona4d4c012009-09-23 16:07:23 +0000560
John McCall7d166272011-05-15 07:14:44 +0000561 // The width of size_t.
562 unsigned sizeWidth = CGF.SizeTy->getBitWidth();
563
John McCall1e7fe752010-09-02 09:58:18 +0000564 // Figure out the cookie size.
John McCall7d166272011-05-15 07:14:44 +0000565 llvm::APInt cookieSize(sizeWidth,
566 CalculateCookiePadding(CGF, e).getQuantity());
John McCall1e7fe752010-09-02 09:58:18 +0000567
Anders Carlssona4d4c012009-09-23 16:07:23 +0000568 // Emit the array size expression.
Argyrios Kyrtzidise7ab92e2010-08-26 15:23:38 +0000569 // We multiply the size of all dimensions for NumElements.
570 // e.g for 'int[2][3]', ElemType is 'int' and NumElements is 6.
John McCall7d166272011-05-15 07:14:44 +0000571 numElements = CGF.EmitScalarExpr(e->getArraySize());
572 assert(isa<llvm::IntegerType>(numElements->getType()));
John McCall1e7fe752010-09-02 09:58:18 +0000573
John McCall7d166272011-05-15 07:14:44 +0000574 // The number of elements can be have an arbitrary integer type;
575 // essentially, we need to multiply it by a constant factor, add a
576 // cookie size, and verify that the result is representable as a
577 // size_t. That's just a gloss, though, and it's wrong in one
578 // important way: if the count is negative, it's an error even if
579 // the cookie size would bring the total size >= 0.
Douglas Gregor575a1c92011-05-20 16:38:50 +0000580 bool isSigned
581 = e->getArraySize()->getType()->isSignedIntegerOrEnumerationType();
Chris Lattner2acc6e32011-07-18 04:24:23 +0000582 llvm::IntegerType *numElementsType
John McCall7d166272011-05-15 07:14:44 +0000583 = cast<llvm::IntegerType>(numElements->getType());
584 unsigned numElementsWidth = numElementsType->getBitWidth();
585
586 // Compute the constant factor.
587 llvm::APInt arraySizeMultiplier(sizeWidth, 1);
Argyrios Kyrtzidise7ab92e2010-08-26 15:23:38 +0000588 while (const ConstantArrayType *CAT
John McCall7d166272011-05-15 07:14:44 +0000589 = CGF.getContext().getAsConstantArrayType(type)) {
590 type = CAT->getElementType();
591 arraySizeMultiplier *= CAT->getSize();
Argyrios Kyrtzidise7ab92e2010-08-26 15:23:38 +0000592 }
593
John McCall7d166272011-05-15 07:14:44 +0000594 CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
595 llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity());
596 typeSizeMultiplier *= arraySizeMultiplier;
597
598 // This will be a size_t.
599 llvm::Value *size;
Chris Lattner83252dc2010-07-20 21:07:09 +0000600
Chris Lattner806941e2010-07-20 21:55:52 +0000601 // If someone is doing 'new int[42]' there is no need to do a dynamic check.
602 // Don't bloat the -O0 code.
John McCall7d166272011-05-15 07:14:44 +0000603 if (llvm::ConstantInt *numElementsC =
604 dyn_cast<llvm::ConstantInt>(numElements)) {
605 const llvm::APInt &count = numElementsC->getValue();
John McCall1e7fe752010-09-02 09:58:18 +0000606
John McCall7d166272011-05-15 07:14:44 +0000607 bool hasAnyOverflow = false;
John McCall1e7fe752010-09-02 09:58:18 +0000608
John McCall7d166272011-05-15 07:14:44 +0000609 // If 'count' was a negative number, it's an overflow.
610 if (isSigned && count.isNegative())
611 hasAnyOverflow = true;
John McCall1e7fe752010-09-02 09:58:18 +0000612
John McCall7d166272011-05-15 07:14:44 +0000613 // We want to do all this arithmetic in size_t. If numElements is
614 // wider than that, check whether it's already too big, and if so,
615 // overflow.
616 else if (numElementsWidth > sizeWidth &&
617 numElementsWidth - sizeWidth > count.countLeadingZeros())
618 hasAnyOverflow = true;
619
620 // Okay, compute a count at the right width.
621 llvm::APInt adjustedCount = count.zextOrTrunc(sizeWidth);
622
Sebastian Redl92036472012-02-22 17:37:52 +0000623 // If there is a brace-initializer, we cannot allocate fewer elements than
624 // there are initializers. If we do, that's treated like an overflow.
625 if (adjustedCount.ult(minElements))
626 hasAnyOverflow = true;
627
John McCall7d166272011-05-15 07:14:44 +0000628 // Scale numElements by that. This might overflow, but we don't
629 // care because it only overflows if allocationSize does, too, and
630 // if that overflows then we shouldn't use this.
631 numElements = llvm::ConstantInt::get(CGF.SizeTy,
632 adjustedCount * arraySizeMultiplier);
633
634 // Compute the size before cookie, and track whether it overflowed.
635 bool overflow;
636 llvm::APInt allocationSize
637 = adjustedCount.umul_ov(typeSizeMultiplier, overflow);
638 hasAnyOverflow |= overflow;
639
640 // Add in the cookie, and check whether it's overflowed.
641 if (cookieSize != 0) {
642 // Save the current size without a cookie. This shouldn't be
643 // used if there was overflow.
644 sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
645
646 allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
647 hasAnyOverflow |= overflow;
648 }
649
650 // On overflow, produce a -1 so operator new will fail.
651 if (hasAnyOverflow) {
652 size = llvm::Constant::getAllOnesValue(CGF.SizeTy);
653 } else {
654 size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
655 }
656
657 // Otherwise, we might need to use the overflow intrinsics.
658 } else {
Sebastian Redl92036472012-02-22 17:37:52 +0000659 // There are up to five conditions we need to test for:
John McCall7d166272011-05-15 07:14:44 +0000660 // 1) if isSigned, we need to check whether numElements is negative;
661 // 2) if numElementsWidth > sizeWidth, we need to check whether
662 // numElements is larger than something representable in size_t;
Sebastian Redl92036472012-02-22 17:37:52 +0000663 // 3) if minElements > 0, we need to check whether numElements is smaller
664 // than that.
665 // 4) we need to compute
John McCall7d166272011-05-15 07:14:44 +0000666 // sizeWithoutCookie := numElements * typeSizeMultiplier
667 // and check whether it overflows; and
Sebastian Redl92036472012-02-22 17:37:52 +0000668 // 5) if we need a cookie, we need to compute
John McCall7d166272011-05-15 07:14:44 +0000669 // size := sizeWithoutCookie + cookieSize
670 // and check whether it overflows.
671
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700672 llvm::Value *hasOverflow = nullptr;
John McCall7d166272011-05-15 07:14:44 +0000673
674 // If numElementsWidth > sizeWidth, then one way or another, we're
675 // going to have to do a comparison for (2), and this happens to
676 // take care of (1), too.
677 if (numElementsWidth > sizeWidth) {
678 llvm::APInt threshold(numElementsWidth, 1);
679 threshold <<= sizeWidth;
680
681 llvm::Value *thresholdV
682 = llvm::ConstantInt::get(numElementsType, threshold);
683
684 hasOverflow = CGF.Builder.CreateICmpUGE(numElements, thresholdV);
685 numElements = CGF.Builder.CreateTrunc(numElements, CGF.SizeTy);
686
687 // Otherwise, if we're signed, we want to sext up to size_t.
688 } else if (isSigned) {
689 if (numElementsWidth < sizeWidth)
690 numElements = CGF.Builder.CreateSExt(numElements, CGF.SizeTy);
691
692 // If there's a non-1 type size multiplier, then we can do the
693 // signedness check at the same time as we do the multiply
694 // because a negative number times anything will cause an
Sebastian Redl92036472012-02-22 17:37:52 +0000695 // unsigned overflow. Otherwise, we have to do it here. But at least
696 // in this case, we can subsume the >= minElements check.
John McCall7d166272011-05-15 07:14:44 +0000697 if (typeSizeMultiplier == 1)
698 hasOverflow = CGF.Builder.CreateICmpSLT(numElements,
Sebastian Redl92036472012-02-22 17:37:52 +0000699 llvm::ConstantInt::get(CGF.SizeTy, minElements));
John McCall7d166272011-05-15 07:14:44 +0000700
701 // Otherwise, zext up to size_t if necessary.
702 } else if (numElementsWidth < sizeWidth) {
703 numElements = CGF.Builder.CreateZExt(numElements, CGF.SizeTy);
704 }
705
706 assert(numElements->getType() == CGF.SizeTy);
707
Sebastian Redl92036472012-02-22 17:37:52 +0000708 if (minElements) {
709 // Don't allow allocation of fewer elements than we have initializers.
710 if (!hasOverflow) {
711 hasOverflow = CGF.Builder.CreateICmpULT(numElements,
712 llvm::ConstantInt::get(CGF.SizeTy, minElements));
713 } else if (numElementsWidth > sizeWidth) {
714 // The other existing overflow subsumes this check.
715 // We do an unsigned comparison, since any signed value < -1 is
716 // taken care of either above or below.
717 hasOverflow = CGF.Builder.CreateOr(hasOverflow,
718 CGF.Builder.CreateICmpULT(numElements,
719 llvm::ConstantInt::get(CGF.SizeTy, minElements)));
720 }
721 }
722
John McCall7d166272011-05-15 07:14:44 +0000723 size = numElements;
724
725 // Multiply by the type size if necessary. This multiplier
726 // includes all the factors for nested arrays.
727 //
728 // This step also causes numElements to be scaled up by the
729 // nested-array factor if necessary. Overflow on this computation
730 // can be ignored because the result shouldn't be used if
731 // allocation fails.
732 if (typeSizeMultiplier != 1) {
John McCall7d166272011-05-15 07:14:44 +0000733 llvm::Value *umul_with_overflow
Benjamin Kramer8dd55a32011-07-14 17:45:50 +0000734 = CGF.CGM.getIntrinsic(llvm::Intrinsic::umul_with_overflow, CGF.SizeTy);
John McCall7d166272011-05-15 07:14:44 +0000735
736 llvm::Value *tsmV =
737 llvm::ConstantInt::get(CGF.SizeTy, typeSizeMultiplier);
738 llvm::Value *result =
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -0700739 CGF.Builder.CreateCall(umul_with_overflow, {size, tsmV});
John McCall7d166272011-05-15 07:14:44 +0000740
741 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
742 if (hasOverflow)
743 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
744 else
745 hasOverflow = overflowed;
746
747 size = CGF.Builder.CreateExtractValue(result, 0);
748
749 // Also scale up numElements by the array size multiplier.
750 if (arraySizeMultiplier != 1) {
751 // If the base element type size is 1, then we can re-use the
752 // multiply we just did.
753 if (typeSize.isOne()) {
754 assert(arraySizeMultiplier == typeSizeMultiplier);
755 numElements = size;
756
757 // Otherwise we need a separate multiply.
758 } else {
759 llvm::Value *asmV =
760 llvm::ConstantInt::get(CGF.SizeTy, arraySizeMultiplier);
761 numElements = CGF.Builder.CreateMul(numElements, asmV);
762 }
763 }
764 } else {
765 // numElements doesn't need to be scaled.
766 assert(arraySizeMultiplier == 1);
Chris Lattner806941e2010-07-20 21:55:52 +0000767 }
768
John McCall7d166272011-05-15 07:14:44 +0000769 // Add in the cookie size if necessary.
770 if (cookieSize != 0) {
771 sizeWithoutCookie = size;
772
John McCall7d166272011-05-15 07:14:44 +0000773 llvm::Value *uadd_with_overflow
Benjamin Kramer8dd55a32011-07-14 17:45:50 +0000774 = CGF.CGM.getIntrinsic(llvm::Intrinsic::uadd_with_overflow, CGF.SizeTy);
John McCall7d166272011-05-15 07:14:44 +0000775
776 llvm::Value *cookieSizeV = llvm::ConstantInt::get(CGF.SizeTy, cookieSize);
777 llvm::Value *result =
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -0700778 CGF.Builder.CreateCall(uadd_with_overflow, {size, cookieSizeV});
John McCall7d166272011-05-15 07:14:44 +0000779
780 llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
781 if (hasOverflow)
782 hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
783 else
784 hasOverflow = overflowed;
785
786 size = CGF.Builder.CreateExtractValue(result, 0);
John McCall1e7fe752010-09-02 09:58:18 +0000787 }
Anders Carlssona4d4c012009-09-23 16:07:23 +0000788
John McCall7d166272011-05-15 07:14:44 +0000789 // If we had any possibility of dynamic overflow, make a select to
790 // overwrite 'size' with an all-ones value, which should cause
791 // operator new to throw.
792 if (hasOverflow)
793 size = CGF.Builder.CreateSelect(hasOverflow,
794 llvm::Constant::getAllOnesValue(CGF.SizeTy),
795 size);
Chris Lattner806941e2010-07-20 21:55:52 +0000796 }
John McCall1e7fe752010-09-02 09:58:18 +0000797
John McCall7d166272011-05-15 07:14:44 +0000798 if (cookieSize == 0)
799 sizeWithoutCookie = size;
John McCall1e7fe752010-09-02 09:58:18 +0000800 else
John McCall7d166272011-05-15 07:14:44 +0000801 assert(sizeWithoutCookie && "didn't set sizeWithoutCookie?");
John McCall1e7fe752010-09-02 09:58:18 +0000802
John McCall7d166272011-05-15 07:14:44 +0000803 return size;
Anders Carlssona4d4c012009-09-23 16:07:23 +0000804}
805
Sebastian Redl92036472012-02-22 17:37:52 +0000806static void StoreAnyExprIntoOneUnit(CodeGenFunction &CGF, const Expr *Init,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800807 QualType AllocType, Address NewPtr) {
Bill Wendlingb66a0f42013-12-11 04:25:35 +0000808 // FIXME: Refactor with EmitExprAsInit.
John McCall9d232c82013-03-07 21:37:08 +0000809 switch (CGF.getEvaluationKind(AllocType)) {
810 case TEK_Scalar:
Stephen Hines0e2c34f2015-03-23 12:09:02 -0700811 CGF.EmitScalarInit(Init, nullptr,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800812 CGF.MakeAddrLValue(NewPtr, AllocType), false);
John McCall9d232c82013-03-07 21:37:08 +0000813 return;
814 case TEK_Complex:
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800815 CGF.EmitComplexExprIntoLValue(Init, CGF.MakeAddrLValue(NewPtr, AllocType),
John McCall9d232c82013-03-07 21:37:08 +0000816 /*isInit*/ true);
817 return;
818 case TEK_Aggregate: {
John McCall558d2ab2010-09-15 10:14:12 +0000819 AggValueSlot Slot
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800820 = AggValueSlot::forAddr(NewPtr, AllocType.getQualifiers(),
John McCall7c2349b2011-08-25 20:40:09 +0000821 AggValueSlot::IsDestructed,
John McCall44184392011-08-26 07:31:35 +0000822 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier649b4a12012-03-29 17:37:10 +0000823 AggValueSlot::IsNotAliased);
John McCall558d2ab2010-09-15 10:14:12 +0000824 CGF.EmitAggExpr(Init, Slot);
John McCall9d232c82013-03-07 21:37:08 +0000825 return;
John McCall558d2ab2010-09-15 10:14:12 +0000826 }
John McCall9d232c82013-03-07 21:37:08 +0000827 }
828 llvm_unreachable("bad evaluation kind");
Fariborz Jahanianef668722010-06-25 18:26:07 +0000829}
830
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -0700831void CodeGenFunction::EmitNewArrayInitializer(
832 const CXXNewExpr *E, QualType ElementType, llvm::Type *ElementTy,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800833 Address BeginPtr, llvm::Value *NumElements,
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -0700834 llvm::Value *AllocSizeWithoutCookie) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700835 // If we have a type with trivial initialization and no initializer,
836 // there's nothing to do.
Sebastian Redl2aed8b82012-02-16 12:22:20 +0000837 if (!E->hasInitializer())
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700838 return;
John McCall19705672011-09-15 06:49:18 +0000839
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800840 Address CurPtr = BeginPtr;
John McCall19705672011-09-15 06:49:18 +0000841
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700842 unsigned InitListElements = 0;
Sebastian Redl92036472012-02-22 17:37:52 +0000843
844 const Expr *Init = E->getInitializer();
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800845 Address EndOfInit = Address::invalid();
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700846 QualType::DestructionKind DtorKind = ElementType.isDestructedType();
847 EHScopeStack::stable_iterator Cleanup;
848 llvm::Instruction *CleanupDominator = nullptr;
Bill Wendlingb66a0f42013-12-11 04:25:35 +0000849
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800850 CharUnits ElementSize = getContext().getTypeSizeInChars(ElementType);
851 CharUnits ElementAlign =
852 BeginPtr.getAlignment().alignmentOfArrayElement(ElementSize);
853
Sebastian Redl92036472012-02-22 17:37:52 +0000854 // If the initializer is an initializer list, first do the explicit elements.
855 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700856 InitListElements = ILE->getNumInits();
Chad Rosier577fb5b2012-02-24 00:13:55 +0000857
Bill Wendlingb66a0f42013-12-11 04:25:35 +0000858 // If this is a multi-dimensional array new, we will initialize multiple
859 // elements with each init list element.
860 QualType AllocType = E->getAllocatedType();
861 if (const ConstantArrayType *CAT = dyn_cast_or_null<ConstantArrayType>(
862 AllocType->getAsArrayTypeUnsafe())) {
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -0700863 ElementTy = ConvertTypeForMem(AllocType);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800864 CurPtr = Builder.CreateElementBitCast(CurPtr, ElementTy);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700865 InitListElements *= getContext().getConstantArrayElementCount(CAT);
Bill Wendlingb66a0f42013-12-11 04:25:35 +0000866 }
867
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700868 // Enter a partial-destruction Cleanup if necessary.
869 if (needsEHCleanup(DtorKind)) {
870 // In principle we could tell the Cleanup where we are more
Chad Rosier577fb5b2012-02-24 00:13:55 +0000871 // directly, but the control flow can get so varied here that it
872 // would actually be quite complex. Therefore we go through an
873 // alloca.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800874 EndOfInit = CreateTempAlloca(BeginPtr.getType(), getPointerAlign(),
875 "array.init.end");
876 CleanupDominator = Builder.CreateStore(BeginPtr.getPointer(), EndOfInit);
877 pushIrregularPartialArrayCleanup(BeginPtr.getPointer(), EndOfInit,
878 ElementType, ElementAlign,
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700879 getDestroyer(DtorKind));
880 Cleanup = EHStack.stable_begin();
Chad Rosier577fb5b2012-02-24 00:13:55 +0000881 }
882
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800883 CharUnits StartAlign = CurPtr.getAlignment();
Sebastian Redl92036472012-02-22 17:37:52 +0000884 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) {
Chad Rosier577fb5b2012-02-24 00:13:55 +0000885 // Tell the cleanup that it needs to destroy up to this
886 // element. TODO: some of these stores can be trivially
887 // observed to be unnecessary.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800888 if (EndOfInit.isValid()) {
889 auto FinishedPtr =
890 Builder.CreateBitCast(CurPtr.getPointer(), BeginPtr.getType());
891 Builder.CreateStore(FinishedPtr, EndOfInit);
892 }
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700893 // FIXME: If the last initializer is an incomplete initializer list for
894 // an array, and we have an array filler, we can fold together the two
895 // initialization loops.
Bill Wendlingb66a0f42013-12-11 04:25:35 +0000896 StoreAnyExprIntoOneUnit(*this, ILE->getInit(i),
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700897 ILE->getInit(i)->getType(), CurPtr);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800898 CurPtr = Address(Builder.CreateInBoundsGEP(CurPtr.getPointer(),
899 Builder.getSize(1),
900 "array.exp.next"),
901 StartAlign.alignmentAtOffset((i + 1) * ElementSize));
Sebastian Redl92036472012-02-22 17:37:52 +0000902 }
903
904 // The remaining elements are filled with the array filler expression.
905 Init = ILE->getArrayFiller();
Bill Wendlingb66a0f42013-12-11 04:25:35 +0000906
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700907 // Extract the initializer for the individual array elements by pulling
908 // out the array filler from all the nested initializer lists. This avoids
909 // generating a nested loop for the initialization.
910 while (Init && Init->getType()->isConstantArrayType()) {
911 auto *SubILE = dyn_cast<InitListExpr>(Init);
912 if (!SubILE)
913 break;
914 assert(SubILE->getNumInits() == 0 && "explicit inits in array filler?");
915 Init = SubILE->getArrayFiller();
916 }
917
918 // Switch back to initializing one base element at a time.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800919 CurPtr = Builder.CreateBitCast(CurPtr, BeginPtr.getType());
Sebastian Redl92036472012-02-22 17:37:52 +0000920 }
921
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700922 // Attempt to perform zero-initialization using memset.
923 auto TryMemsetInitialization = [&]() -> bool {
924 // FIXME: If the type is a pointer-to-data-member under the Itanium ABI,
925 // we can initialize with a memset to -1.
926 if (!CGM.getTypes().isZeroInitializable(ElementType))
927 return false;
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700928
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700929 // Optimization: since zero initialization will just set the memory
930 // to all zeroes, generate a single memset to do it in one shot.
931
932 // Subtract out the size of any elements we've already initialized.
933 auto *RemainingSize = AllocSizeWithoutCookie;
934 if (InitListElements) {
935 // We know this can't overflow; we check this when doing the allocation.
936 auto *InitializedSize = llvm::ConstantInt::get(
937 RemainingSize->getType(),
938 getContext().getTypeSizeInChars(ElementType).getQuantity() *
939 InitListElements);
940 RemainingSize = Builder.CreateSub(RemainingSize, InitializedSize);
941 }
942
943 // Create the memset.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800944 Builder.CreateMemSet(CurPtr, Builder.getInt8(0), RemainingSize, false);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700945 return true;
946 };
947
948 // If all elements have already been initialized, skip any further
949 // initialization.
950 llvm::ConstantInt *ConstNum = dyn_cast<llvm::ConstantInt>(NumElements);
951 if (ConstNum && ConstNum->getZExtValue() <= InitListElements) {
952 // If there was a Cleanup, deactivate it.
953 if (CleanupDominator)
954 DeactivateCleanupBlock(Cleanup, CleanupDominator);
Stephen Hines6bcf27b2014-05-29 04:14:42 -0700955 return;
956 }
957
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700958 assert(Init && "have trailing elements to initialize but no initializer");
959
960 // If this is a constructor call, try to optimize it out, and failing that
961 // emit a single loop to initialize all remaining elements.
962 if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init)) {
963 CXXConstructorDecl *Ctor = CCE->getConstructor();
964 if (Ctor->isTrivial()) {
965 // If new expression did not specify value-initialization, then there
966 // is no initialization.
967 if (!CCE->requiresZeroInitialization() || Ctor->getParent()->isEmpty())
968 return;
969
970 if (TryMemsetInitialization())
971 return;
972 }
973
974 // Store the new Cleanup position for irregular Cleanups.
975 //
976 // FIXME: Share this cleanup with the constructor call emission rather than
977 // having it create a cleanup of its own.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -0800978 if (EndOfInit.isValid())
979 Builder.CreateStore(CurPtr.getPointer(), EndOfInit);
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700980
981 // Emit a constructor call loop to initialize the remaining elements.
982 if (InitListElements)
983 NumElements = Builder.CreateSub(
984 NumElements,
985 llvm::ConstantInt::get(NumElements->getType(), InitListElements));
Stephen Hines176edba2014-12-01 14:53:08 -0800986 EmitCXXAggrConstructorCall(Ctor, NumElements, CurPtr, CCE,
Stephen Hinesc568f1e2014-07-21 00:47:37 -0700987 CCE->requiresZeroInitialization());
988 return;
989 }
990
991 // If this is value-initialization, we can usually use memset.
992 ImplicitValueInitExpr IVIE(ElementType);
993 if (isa<ImplicitValueInitExpr>(Init)) {
994 if (TryMemsetInitialization())
995 return;
996
997 // Switch to an ImplicitValueInitExpr for the element type. This handles
998 // only one case: multidimensional array new of pointers to members. In
999 // all other cases, we already have an initializer for the array element.
1000 Init = &IVIE;
1001 }
1002
1003 // At this point we should have found an initializer for the individual
1004 // elements of the array.
1005 assert(getContext().hasSameUnqualifiedType(ElementType, Init->getType()) &&
1006 "got wrong type of element to initialize");
1007
1008 // If we have an empty initializer list, we can usually use memset.
1009 if (auto *ILE = dyn_cast<InitListExpr>(Init))
1010 if (ILE->getNumInits() == 0 && TryMemsetInitialization())
1011 return;
1012
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001013 // If we have a struct whose every field is value-initialized, we can
1014 // usually use memset.
1015 if (auto *ILE = dyn_cast<InitListExpr>(Init)) {
1016 if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
1017 if (RType->getDecl()->isStruct()) {
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001018 unsigned NumElements = 0;
1019 if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RType->getDecl()))
1020 NumElements = CXXRD->getNumBases();
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001021 for (auto *Field : RType->getDecl()->fields())
1022 if (!Field->isUnnamedBitfield())
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001023 ++NumElements;
1024 // FIXME: Recurse into nested InitListExprs.
1025 if (ILE->getNumInits() == NumElements)
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001026 for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
1027 if (!isa<ImplicitValueInitExpr>(ILE->getInit(i)))
Pirama Arumuga Nainar4967a712016-09-19 22:19:55 -07001028 --NumElements;
1029 if (ILE->getNumInits() == NumElements && TryMemsetInitialization())
Pirama Arumuga Nainarb6d69932015-07-01 12:25:36 -07001030 return;
1031 }
1032 }
1033 }
1034
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001035 // Create the loop blocks.
1036 llvm::BasicBlock *EntryBB = Builder.GetInsertBlock();
1037 llvm::BasicBlock *LoopBB = createBasicBlock("new.loop");
1038 llvm::BasicBlock *ContBB = createBasicBlock("new.loop.end");
1039
1040 // Find the end of the array, hoisted out of the loop.
1041 llvm::Value *EndPtr =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001042 Builder.CreateInBoundsGEP(BeginPtr.getPointer(), NumElements, "array.end");
John McCall19705672011-09-15 06:49:18 +00001043
Sebastian Redl92036472012-02-22 17:37:52 +00001044 // If the number of elements isn't constant, we have to now check if there is
1045 // anything left to initialize.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001046 if (!ConstNum) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001047 llvm::Value *IsEmpty =
1048 Builder.CreateICmpEQ(CurPtr.getPointer(), EndPtr, "array.isempty");
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001049 Builder.CreateCondBr(IsEmpty, ContBB, LoopBB);
John McCall19705672011-09-15 06:49:18 +00001050 }
1051
1052 // Enter the loop.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001053 EmitBlock(LoopBB);
John McCall19705672011-09-15 06:49:18 +00001054
1055 // Set up the current-element phi.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001056 llvm::PHINode *CurPtrPhi =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001057 Builder.CreatePHI(CurPtr.getType(), 2, "array.cur");
1058 CurPtrPhi->addIncoming(CurPtr.getPointer(), EntryBB);
1059
1060 CurPtr = Address(CurPtrPhi, ElementAlign);
John McCall19705672011-09-15 06:49:18 +00001061
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001062 // Store the new Cleanup position for irregular Cleanups.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001063 if (EndOfInit.isValid())
1064 Builder.CreateStore(CurPtr.getPointer(), EndOfInit);
Chad Rosier577fb5b2012-02-24 00:13:55 +00001065
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001066 // Enter a partial-destruction Cleanup if necessary.
1067 if (!CleanupDominator && needsEHCleanup(DtorKind)) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001068 pushRegularPartialArrayCleanup(BeginPtr.getPointer(), CurPtr.getPointer(),
1069 ElementType, ElementAlign,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001070 getDestroyer(DtorKind));
1071 Cleanup = EHStack.stable_begin();
1072 CleanupDominator = Builder.CreateUnreachable();
John McCall19705672011-09-15 06:49:18 +00001073 }
1074
1075 // Emit the initializer into this element.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001076 StoreAnyExprIntoOneUnit(*this, Init, Init->getType(), CurPtr);
John McCall19705672011-09-15 06:49:18 +00001077
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001078 // Leave the Cleanup if we entered one.
1079 if (CleanupDominator) {
1080 DeactivateCleanupBlock(Cleanup, CleanupDominator);
1081 CleanupDominator->eraseFromParent();
John McCall6f103ba2011-11-10 10:43:54 +00001082 }
John McCall19705672011-09-15 06:49:18 +00001083
Stephen Hines651f13c2014-04-23 16:59:28 -07001084 // Advance to the next element by adjusting the pointer type as necessary.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001085 llvm::Value *NextPtr =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001086 Builder.CreateConstInBoundsGEP1_32(ElementTy, CurPtr.getPointer(), 1,
1087 "array.next");
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001088
John McCall19705672011-09-15 06:49:18 +00001089 // Check whether we've gotten to the end of the array and, if so,
1090 // exit the loop.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001091 llvm::Value *IsEnd = Builder.CreateICmpEQ(NextPtr, EndPtr, "array.atend");
1092 Builder.CreateCondBr(IsEnd, ContBB, LoopBB);
1093 CurPtrPhi->addIncoming(NextPtr, Builder.GetInsertBlock());
John McCall19705672011-09-15 06:49:18 +00001094
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001095 EmitBlock(ContBB);
Fariborz Jahanianef668722010-06-25 18:26:07 +00001096}
1097
Anders Carlssona4d4c012009-09-23 16:07:23 +00001098static void EmitNewInitializer(CodeGenFunction &CGF, const CXXNewExpr *E,
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07001099 QualType ElementType, llvm::Type *ElementTy,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001100 Address NewPtr, llvm::Value *NumElements,
Douglas Gregor59174c02010-07-21 01:10:17 +00001101 llvm::Value *AllocSizeWithoutCookie) {
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001102 ApplyDebugLocation DL(CGF, E);
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001103 if (E->isArray())
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07001104 CGF.EmitNewArrayInitializer(E, ElementType, ElementTy, NewPtr, NumElements,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001105 AllocSizeWithoutCookie);
1106 else if (const Expr *Init = E->getInitializer())
1107 StoreAnyExprIntoOneUnit(CGF, Init, E->getAllocatedType(), NewPtr);
Anders Carlssona4d4c012009-09-23 16:07:23 +00001108}
1109
Richard Smithddcff1b2013-07-21 23:12:18 +00001110/// Emit a call to an operator new or operator delete function, as implicitly
1111/// created by new-expressions and delete-expressions.
1112static RValue EmitNewDeleteCall(CodeGenFunction &CGF,
1113 const FunctionDecl *Callee,
1114 const FunctionProtoType *CalleeType,
1115 const CallArgList &Args) {
1116 llvm::Instruction *CallOrInvoke;
Richard Smith060cb4a2013-07-29 20:14:16 +00001117 llvm::Value *CalleeAddr = CGF.CGM.GetAddrOfFunction(Callee);
Richard Smithddcff1b2013-07-21 23:12:18 +00001118 RValue RV =
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001119 CGF.EmitCall(CGF.CGM.getTypes().arrangeFreeFunctionCall(
1120 Args, CalleeType, /*chainCall=*/false),
1121 CalleeAddr, ReturnValueSlot(), Args, Callee, &CallOrInvoke);
Richard Smithddcff1b2013-07-21 23:12:18 +00001122
1123 /// C++1y [expr.new]p10:
1124 /// [In a new-expression,] an implementation is allowed to omit a call
1125 /// to a replaceable global allocation function.
1126 ///
1127 /// We model such elidable calls with the 'builtin' attribute.
Rafael Espindola87017a72013-10-22 14:23:09 +00001128 llvm::Function *Fn = dyn_cast<llvm::Function>(CalleeAddr);
Richard Smith060cb4a2013-07-29 20:14:16 +00001129 if (Callee->isReplaceableGlobalAllocationFunction() &&
Rafael Espindola87017a72013-10-22 14:23:09 +00001130 Fn && Fn->hasFnAttribute(llvm::Attribute::NoBuiltin)) {
Richard Smithddcff1b2013-07-21 23:12:18 +00001131 // FIXME: Add addAttribute to CallSite.
1132 if (llvm::CallInst *CI = dyn_cast<llvm::CallInst>(CallOrInvoke))
1133 CI->addAttribute(llvm::AttributeSet::FunctionIndex,
1134 llvm::Attribute::Builtin);
1135 else if (llvm::InvokeInst *II = dyn_cast<llvm::InvokeInst>(CallOrInvoke))
1136 II->addAttribute(llvm::AttributeSet::FunctionIndex,
1137 llvm::Attribute::Builtin);
1138 else
1139 llvm_unreachable("unexpected kind of call instruction");
1140 }
1141
1142 return RV;
1143}
1144
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001145RValue CodeGenFunction::EmitBuiltinNewDeleteCall(const FunctionProtoType *Type,
1146 const Expr *Arg,
1147 bool IsDelete) {
1148 CallArgList Args;
1149 const Stmt *ArgS = Arg;
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001150 EmitCallArgs(Args, *Type->param_type_begin(), llvm::makeArrayRef(ArgS));
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001151 // Find the allocation or deallocation function that we're calling.
1152 ASTContext &Ctx = getContext();
1153 DeclarationName Name = Ctx.DeclarationNames
1154 .getCXXOperatorName(IsDelete ? OO_Delete : OO_New);
1155 for (auto *Decl : Ctx.getTranslationUnitDecl()->lookup(Name))
1156 if (auto *FD = dyn_cast<FunctionDecl>(Decl))
1157 if (Ctx.hasSameType(FD->getType(), QualType(Type, 0)))
1158 return EmitNewDeleteCall(*this, cast<FunctionDecl>(Decl), Type, Args);
1159 llvm_unreachable("predeclared global operator new/delete is missing");
1160}
1161
John McCall7d8647f2010-09-14 07:57:04 +00001162namespace {
1163 /// A cleanup to call the given 'operator delete' function upon
1164 /// abnormal exit from a new expression.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001165 class CallDeleteDuringNew final : public EHScopeStack::Cleanup {
John McCall7d8647f2010-09-14 07:57:04 +00001166 size_t NumPlacementArgs;
1167 const FunctionDecl *OperatorDelete;
1168 llvm::Value *Ptr;
1169 llvm::Value *AllocSize;
1170
1171 RValue *getPlacementArgs() { return reinterpret_cast<RValue*>(this+1); }
1172
1173 public:
1174 static size_t getExtraSize(size_t NumPlacementArgs) {
1175 return NumPlacementArgs * sizeof(RValue);
1176 }
1177
1178 CallDeleteDuringNew(size_t NumPlacementArgs,
1179 const FunctionDecl *OperatorDelete,
1180 llvm::Value *Ptr,
1181 llvm::Value *AllocSize)
1182 : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
1183 Ptr(Ptr), AllocSize(AllocSize) {}
1184
1185 void setPlacementArg(unsigned I, RValue Arg) {
1186 assert(I < NumPlacementArgs && "index out of range");
1187 getPlacementArgs()[I] = Arg;
1188 }
1189
Stephen Hines651f13c2014-04-23 16:59:28 -07001190 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall7d8647f2010-09-14 07:57:04 +00001191 const FunctionProtoType *FPT
1192 = OperatorDelete->getType()->getAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -07001193 assert(FPT->getNumParams() == NumPlacementArgs + 1 ||
1194 (FPT->getNumParams() == 2 && NumPlacementArgs == 0));
John McCall7d8647f2010-09-14 07:57:04 +00001195
1196 CallArgList DeleteArgs;
1197
1198 // The first argument is always a void*.
Stephen Hines651f13c2014-04-23 16:59:28 -07001199 FunctionProtoType::param_type_iterator AI = FPT->param_type_begin();
Eli Friedman04c9a492011-05-02 17:57:46 +00001200 DeleteArgs.add(RValue::get(Ptr), *AI++);
John McCall7d8647f2010-09-14 07:57:04 +00001201
1202 // A member 'operator delete' can take an extra 'size_t' argument.
Stephen Hines651f13c2014-04-23 16:59:28 -07001203 if (FPT->getNumParams() == NumPlacementArgs + 2)
Eli Friedman04c9a492011-05-02 17:57:46 +00001204 DeleteArgs.add(RValue::get(AllocSize), *AI++);
John McCall7d8647f2010-09-14 07:57:04 +00001205
1206 // Pass the rest of the arguments, which must match exactly.
1207 for (unsigned I = 0; I != NumPlacementArgs; ++I)
Eli Friedman04c9a492011-05-02 17:57:46 +00001208 DeleteArgs.add(getPlacementArgs()[I], *AI++);
John McCall7d8647f2010-09-14 07:57:04 +00001209
1210 // Call 'operator delete'.
Richard Smithddcff1b2013-07-21 23:12:18 +00001211 EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs);
John McCall7d8647f2010-09-14 07:57:04 +00001212 }
1213 };
John McCall3019c442010-09-17 00:50:28 +00001214
1215 /// A cleanup to call the given 'operator delete' function upon
1216 /// abnormal exit from a new expression when the new expression is
1217 /// conditional.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001218 class CallDeleteDuringConditionalNew final : public EHScopeStack::Cleanup {
John McCall3019c442010-09-17 00:50:28 +00001219 size_t NumPlacementArgs;
1220 const FunctionDecl *OperatorDelete;
John McCall804b8072011-01-28 10:53:53 +00001221 DominatingValue<RValue>::saved_type Ptr;
1222 DominatingValue<RValue>::saved_type AllocSize;
John McCall3019c442010-09-17 00:50:28 +00001223
John McCall804b8072011-01-28 10:53:53 +00001224 DominatingValue<RValue>::saved_type *getPlacementArgs() {
1225 return reinterpret_cast<DominatingValue<RValue>::saved_type*>(this+1);
John McCall3019c442010-09-17 00:50:28 +00001226 }
1227
1228 public:
1229 static size_t getExtraSize(size_t NumPlacementArgs) {
John McCall804b8072011-01-28 10:53:53 +00001230 return NumPlacementArgs * sizeof(DominatingValue<RValue>::saved_type);
John McCall3019c442010-09-17 00:50:28 +00001231 }
1232
1233 CallDeleteDuringConditionalNew(size_t NumPlacementArgs,
1234 const FunctionDecl *OperatorDelete,
John McCall804b8072011-01-28 10:53:53 +00001235 DominatingValue<RValue>::saved_type Ptr,
1236 DominatingValue<RValue>::saved_type AllocSize)
John McCall3019c442010-09-17 00:50:28 +00001237 : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
1238 Ptr(Ptr), AllocSize(AllocSize) {}
1239
John McCall804b8072011-01-28 10:53:53 +00001240 void setPlacementArg(unsigned I, DominatingValue<RValue>::saved_type Arg) {
John McCall3019c442010-09-17 00:50:28 +00001241 assert(I < NumPlacementArgs && "index out of range");
1242 getPlacementArgs()[I] = Arg;
1243 }
1244
Stephen Hines651f13c2014-04-23 16:59:28 -07001245 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall3019c442010-09-17 00:50:28 +00001246 const FunctionProtoType *FPT
1247 = OperatorDelete->getType()->getAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -07001248 assert(FPT->getNumParams() == NumPlacementArgs + 1 ||
1249 (FPT->getNumParams() == 2 && NumPlacementArgs == 0));
John McCall3019c442010-09-17 00:50:28 +00001250
1251 CallArgList DeleteArgs;
1252
1253 // The first argument is always a void*.
Stephen Hines651f13c2014-04-23 16:59:28 -07001254 FunctionProtoType::param_type_iterator AI = FPT->param_type_begin();
Eli Friedman04c9a492011-05-02 17:57:46 +00001255 DeleteArgs.add(Ptr.restore(CGF), *AI++);
John McCall3019c442010-09-17 00:50:28 +00001256
1257 // A member 'operator delete' can take an extra 'size_t' argument.
Stephen Hines651f13c2014-04-23 16:59:28 -07001258 if (FPT->getNumParams() == NumPlacementArgs + 2) {
John McCall804b8072011-01-28 10:53:53 +00001259 RValue RV = AllocSize.restore(CGF);
Eli Friedman04c9a492011-05-02 17:57:46 +00001260 DeleteArgs.add(RV, *AI++);
John McCall3019c442010-09-17 00:50:28 +00001261 }
1262
1263 // Pass the rest of the arguments, which must match exactly.
1264 for (unsigned I = 0; I != NumPlacementArgs; ++I) {
John McCall804b8072011-01-28 10:53:53 +00001265 RValue RV = getPlacementArgs()[I].restore(CGF);
Eli Friedman04c9a492011-05-02 17:57:46 +00001266 DeleteArgs.add(RV, *AI++);
John McCall3019c442010-09-17 00:50:28 +00001267 }
1268
1269 // Call 'operator delete'.
Richard Smithddcff1b2013-07-21 23:12:18 +00001270 EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs);
John McCall3019c442010-09-17 00:50:28 +00001271 }
1272 };
1273}
1274
1275/// Enter a cleanup to call 'operator delete' if the initializer in a
1276/// new-expression throws.
1277static void EnterNewDeleteCleanup(CodeGenFunction &CGF,
1278 const CXXNewExpr *E,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001279 Address NewPtr,
John McCall3019c442010-09-17 00:50:28 +00001280 llvm::Value *AllocSize,
1281 const CallArgList &NewArgs) {
1282 // If we're not inside a conditional branch, then the cleanup will
1283 // dominate and we can do the easier (and more efficient) thing.
1284 if (!CGF.isInConditionalBranch()) {
1285 CallDeleteDuringNew *Cleanup = CGF.EHStack
1286 .pushCleanupWithExtra<CallDeleteDuringNew>(EHCleanup,
1287 E->getNumPlacementArgs(),
1288 E->getOperatorDelete(),
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001289 NewPtr.getPointer(),
1290 AllocSize);
John McCall3019c442010-09-17 00:50:28 +00001291 for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
Eli Friedmanc6d07822011-05-02 18:05:27 +00001292 Cleanup->setPlacementArg(I, NewArgs[I+1].RV);
John McCall3019c442010-09-17 00:50:28 +00001293
1294 return;
1295 }
1296
1297 // Otherwise, we need to save all this stuff.
John McCall804b8072011-01-28 10:53:53 +00001298 DominatingValue<RValue>::saved_type SavedNewPtr =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001299 DominatingValue<RValue>::save(CGF, RValue::get(NewPtr.getPointer()));
John McCall804b8072011-01-28 10:53:53 +00001300 DominatingValue<RValue>::saved_type SavedAllocSize =
1301 DominatingValue<RValue>::save(CGF, RValue::get(AllocSize));
John McCall3019c442010-09-17 00:50:28 +00001302
1303 CallDeleteDuringConditionalNew *Cleanup = CGF.EHStack
John McCall6f103ba2011-11-10 10:43:54 +00001304 .pushCleanupWithExtra<CallDeleteDuringConditionalNew>(EHCleanup,
John McCall3019c442010-09-17 00:50:28 +00001305 E->getNumPlacementArgs(),
1306 E->getOperatorDelete(),
1307 SavedNewPtr,
1308 SavedAllocSize);
1309 for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
John McCall804b8072011-01-28 10:53:53 +00001310 Cleanup->setPlacementArg(I,
Eli Friedmanc6d07822011-05-02 18:05:27 +00001311 DominatingValue<RValue>::save(CGF, NewArgs[I+1].RV));
John McCall3019c442010-09-17 00:50:28 +00001312
John McCall6f103ba2011-11-10 10:43:54 +00001313 CGF.initFullExprCleanup();
John McCall7d8647f2010-09-14 07:57:04 +00001314}
1315
Anders Carlsson16d81b82009-09-22 22:53:17 +00001316llvm::Value *CodeGenFunction::EmitCXXNewExpr(const CXXNewExpr *E) {
John McCallc2f3e7f2011-03-07 03:12:35 +00001317 // The element type being allocated.
1318 QualType allocType = getContext().getBaseElementType(E->getAllocatedType());
John McCall1e7fe752010-09-02 09:58:18 +00001319
John McCallc2f3e7f2011-03-07 03:12:35 +00001320 // 1. Build a call to the allocation function.
1321 FunctionDecl *allocator = E->getOperatorNew();
Anders Carlsson16d81b82009-09-22 22:53:17 +00001322
Sebastian Redl92036472012-02-22 17:37:52 +00001323 // If there is a brace-initializer, cannot allocate fewer elements than inits.
1324 unsigned minElements = 0;
1325 if (E->isArray() && E->hasInitializer()) {
1326 if (const InitListExpr *ILE = dyn_cast<InitListExpr>(E->getInitializer()))
1327 minElements = ILE->getNumInits();
1328 }
1329
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001330 llvm::Value *numElements = nullptr;
1331 llvm::Value *allocSizeWithoutCookie = nullptr;
John McCallc2f3e7f2011-03-07 03:12:35 +00001332 llvm::Value *allocSize =
Sebastian Redl92036472012-02-22 17:37:52 +00001333 EmitCXXNewAllocSize(*this, E, minElements, numElements,
1334 allocSizeWithoutCookie);
Stephen Hines176edba2014-12-01 14:53:08 -08001335
John McCallb1c98a32011-05-16 01:05:12 +00001336 // Emit the allocation call. If the allocator is a global placement
1337 // operator, just "inline" it directly.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001338 Address allocation = Address::invalid();
1339 CallArgList allocatorArgs;
John McCallb1c98a32011-05-16 01:05:12 +00001340 if (allocator->isReservedGlobalPlacementOperator()) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001341 assert(E->getNumPlacementArgs() == 1);
1342 const Expr *arg = *E->placement_arguments().begin();
1343
1344 AlignmentSource alignSource;
1345 allocation = EmitPointerWithAlignment(arg, &alignSource);
1346
1347 // The pointer expression will, in many cases, be an opaque void*.
1348 // In these cases, discard the computed alignment and use the
1349 // formal alignment of the allocated type.
1350 if (alignSource != AlignmentSource::Decl) {
1351 allocation = Address(allocation.getPointer(),
1352 getContext().getTypeAlignInChars(allocType));
1353 }
1354
1355 // Set up allocatorArgs for the call to operator delete if it's not
1356 // the reserved global operator.
1357 if (E->getOperatorDelete() &&
1358 !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) {
1359 allocatorArgs.add(RValue::get(allocSize), getContext().getSizeType());
1360 allocatorArgs.add(RValue::get(allocation.getPointer()), arg->getType());
1361 }
1362
John McCallb1c98a32011-05-16 01:05:12 +00001363 } else {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001364 const FunctionProtoType *allocatorType =
1365 allocator->getType()->castAs<FunctionProtoType>();
1366
1367 // The allocation size is the first argument.
1368 QualType sizeType = getContext().getSizeType();
1369 allocatorArgs.add(RValue::get(allocSize), sizeType);
1370
1371 // We start at 1 here because the first argument (the allocation size)
1372 // has already been emitted.
1373 EmitCallArgs(allocatorArgs, allocatorType, E->placement_arguments(),
1374 /* CalleeDecl */ nullptr,
1375 /*ParamsToSkip*/ 1);
1376
1377 RValue RV =
1378 EmitNewDeleteCall(*this, allocator, allocatorType, allocatorArgs);
1379
1380 // For now, only assume that the allocation function returns
1381 // something satisfactorily aligned for the element type, plus
1382 // the cookie if we have one.
1383 CharUnits allocationAlign =
1384 getContext().getTypeAlignInChars(allocType);
1385 if (allocSize != allocSizeWithoutCookie) {
1386 CharUnits cookieAlign = getSizeAlign(); // FIXME?
1387 allocationAlign = std::max(allocationAlign, cookieAlign);
1388 }
1389
1390 allocation = Address(RV.getScalarVal(), allocationAlign);
John McCallb1c98a32011-05-16 01:05:12 +00001391 }
Anders Carlsson16d81b82009-09-22 22:53:17 +00001392
John McCallc2f3e7f2011-03-07 03:12:35 +00001393 // Emit a null check on the allocation result if the allocation
1394 // function is allowed to return null (because it has a non-throwing
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001395 // exception spec or is the reserved placement new) and we have an
John McCallc2f3e7f2011-03-07 03:12:35 +00001396 // interesting initializer.
Stephen Hines0e2c34f2015-03-23 12:09:02 -07001397 bool nullCheck = E->shouldNullCheckAllocation(getContext()) &&
Sebastian Redl2aed8b82012-02-16 12:22:20 +00001398 (!allocType.isPODType(getContext()) || E->hasInitializer());
Anders Carlsson16d81b82009-09-22 22:53:17 +00001399
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001400 llvm::BasicBlock *nullCheckBB = nullptr;
1401 llvm::BasicBlock *contBB = nullptr;
Anders Carlsson16d81b82009-09-22 22:53:17 +00001402
John McCalla7f633f2011-03-07 01:52:56 +00001403 // The null-check means that the initializer is conditionally
1404 // evaluated.
1405 ConditionalEvaluation conditional(*this);
1406
John McCallc2f3e7f2011-03-07 03:12:35 +00001407 if (nullCheck) {
John McCalla7f633f2011-03-07 01:52:56 +00001408 conditional.begin(*this);
John McCallc2f3e7f2011-03-07 03:12:35 +00001409
1410 nullCheckBB = Builder.GetInsertBlock();
1411 llvm::BasicBlock *notNullBB = createBasicBlock("new.notnull");
1412 contBB = createBasicBlock("new.cont");
1413
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001414 llvm::Value *isNull =
1415 Builder.CreateIsNull(allocation.getPointer(), "new.isnull");
John McCallc2f3e7f2011-03-07 03:12:35 +00001416 Builder.CreateCondBr(isNull, contBB, notNullBB);
1417 EmitBlock(notNullBB);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001418 }
Anders Carlsson6ac5fc42009-09-23 18:59:48 +00001419
John McCall7d8647f2010-09-14 07:57:04 +00001420 // If there's an operator delete, enter a cleanup to call it if an
1421 // exception is thrown.
John McCallc2f3e7f2011-03-07 03:12:35 +00001422 EHScopeStack::stable_iterator operatorDeleteCleanup;
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001423 llvm::Instruction *cleanupDominator = nullptr;
John McCallb1c98a32011-05-16 01:05:12 +00001424 if (E->getOperatorDelete() &&
1425 !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) {
John McCallc2f3e7f2011-03-07 03:12:35 +00001426 EnterNewDeleteCleanup(*this, E, allocation, allocSize, allocatorArgs);
1427 operatorDeleteCleanup = EHStack.stable_begin();
John McCall6f103ba2011-11-10 10:43:54 +00001428 cleanupDominator = Builder.CreateUnreachable();
John McCall7d8647f2010-09-14 07:57:04 +00001429 }
1430
Eli Friedman576cf172011-09-06 18:53:03 +00001431 assert((allocSize == allocSizeWithoutCookie) ==
1432 CalculateCookiePadding(*this, E).isZero());
1433 if (allocSize != allocSizeWithoutCookie) {
1434 assert(E->isArray());
1435 allocation = CGM.getCXXABI().InitializeArrayCookie(*this, allocation,
1436 numElements,
1437 E, allocType);
1438 }
1439
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07001440 llvm::Type *elementTy = ConvertTypeForMem(allocType);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001441 Address result = Builder.CreateElementBitCast(allocation, elementTy);
1442
1443 // Passing pointer through invariant.group.barrier to avoid propagation of
1444 // vptrs information which may be included in previous type.
1445 if (CGM.getCodeGenOpts().StrictVTablePointers &&
1446 CGM.getCodeGenOpts().OptimizationLevel > 0 &&
1447 allocator->isReservedGlobalPlacementOperator())
1448 result = Address(Builder.CreateInvariantGroupBarrier(result.getPointer()),
1449 result.getAlignment());
John McCall7d8647f2010-09-14 07:57:04 +00001450
Pirama Arumuga Nainar58878f82015-05-06 11:48:57 -07001451 EmitNewInitializer(*this, E, allocType, elementTy, result, numElements,
John McCall19705672011-09-15 06:49:18 +00001452 allocSizeWithoutCookie);
John McCall1e7fe752010-09-02 09:58:18 +00001453 if (E->isArray()) {
John McCall1e7fe752010-09-02 09:58:18 +00001454 // NewPtr is a pointer to the base element type. If we're
1455 // allocating an array of arrays, we'll need to cast back to the
1456 // array pointer type.
Chris Lattner2acc6e32011-07-18 04:24:23 +00001457 llvm::Type *resultType = ConvertTypeForMem(E->getType());
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001458 if (result.getType() != resultType)
John McCallc2f3e7f2011-03-07 03:12:35 +00001459 result = Builder.CreateBitCast(result, resultType);
Fariborz Jahanianceb43b62010-03-24 16:57:01 +00001460 }
John McCall7d8647f2010-09-14 07:57:04 +00001461
1462 // Deactivate the 'operator delete' cleanup if we finished
1463 // initialization.
John McCall6f103ba2011-11-10 10:43:54 +00001464 if (operatorDeleteCleanup.isValid()) {
1465 DeactivateCleanupBlock(operatorDeleteCleanup, cleanupDominator);
1466 cleanupDominator->eraseFromParent();
1467 }
Sebastian Redl2aed8b82012-02-16 12:22:20 +00001468
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001469 llvm::Value *resultPtr = result.getPointer();
John McCallc2f3e7f2011-03-07 03:12:35 +00001470 if (nullCheck) {
John McCalla7f633f2011-03-07 01:52:56 +00001471 conditional.end(*this);
1472
John McCallc2f3e7f2011-03-07 03:12:35 +00001473 llvm::BasicBlock *notNullBB = Builder.GetInsertBlock();
1474 EmitBlock(contBB);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001475
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001476 llvm::PHINode *PHI = Builder.CreatePHI(resultPtr->getType(), 2);
1477 PHI->addIncoming(resultPtr, notNullBB);
1478 PHI->addIncoming(llvm::Constant::getNullValue(resultPtr->getType()),
John McCallc2f3e7f2011-03-07 03:12:35 +00001479 nullCheckBB);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001480
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001481 resultPtr = PHI;
Anders Carlsson16d81b82009-09-22 22:53:17 +00001482 }
John McCall1e7fe752010-09-02 09:58:18 +00001483
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001484 return resultPtr;
Anders Carlsson16d81b82009-09-22 22:53:17 +00001485}
1486
Eli Friedman5fe05982009-11-18 00:50:08 +00001487void CodeGenFunction::EmitDeleteCall(const FunctionDecl *DeleteFD,
1488 llvm::Value *Ptr,
1489 QualType DeleteTy) {
John McCall1e7fe752010-09-02 09:58:18 +00001490 assert(DeleteFD->getOverloadedOperator() == OO_Delete);
1491
Eli Friedman5fe05982009-11-18 00:50:08 +00001492 const FunctionProtoType *DeleteFTy =
1493 DeleteFD->getType()->getAs<FunctionProtoType>();
1494
1495 CallArgList DeleteArgs;
1496
Anders Carlsson871d0782009-12-13 20:04:38 +00001497 // Check if we need to pass the size to the delete operator.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001498 llvm::Value *Size = nullptr;
Anders Carlsson871d0782009-12-13 20:04:38 +00001499 QualType SizeTy;
Stephen Hines651f13c2014-04-23 16:59:28 -07001500 if (DeleteFTy->getNumParams() == 2) {
1501 SizeTy = DeleteFTy->getParamType(1);
Ken Dyck4f122ef2010-01-26 19:59:28 +00001502 CharUnits DeleteTypeSize = getContext().getTypeSizeInChars(DeleteTy);
1503 Size = llvm::ConstantInt::get(ConvertType(SizeTy),
1504 DeleteTypeSize.getQuantity());
Anders Carlsson871d0782009-12-13 20:04:38 +00001505 }
Stephen Hines651f13c2014-04-23 16:59:28 -07001506
1507 QualType ArgTy = DeleteFTy->getParamType(0);
Eli Friedman5fe05982009-11-18 00:50:08 +00001508 llvm::Value *DeletePtr = Builder.CreateBitCast(Ptr, ConvertType(ArgTy));
Eli Friedman04c9a492011-05-02 17:57:46 +00001509 DeleteArgs.add(RValue::get(DeletePtr), ArgTy);
Eli Friedman5fe05982009-11-18 00:50:08 +00001510
Anders Carlsson871d0782009-12-13 20:04:38 +00001511 if (Size)
Eli Friedman04c9a492011-05-02 17:57:46 +00001512 DeleteArgs.add(RValue::get(Size), SizeTy);
Eli Friedman5fe05982009-11-18 00:50:08 +00001513
1514 // Emit the call to delete.
Richard Smithddcff1b2013-07-21 23:12:18 +00001515 EmitNewDeleteCall(*this, DeleteFD, DeleteFTy, DeleteArgs);
Eli Friedman5fe05982009-11-18 00:50:08 +00001516}
1517
John McCall1e7fe752010-09-02 09:58:18 +00001518namespace {
1519 /// Calls the given 'operator delete' on a single object.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001520 struct CallObjectDelete final : EHScopeStack::Cleanup {
John McCall1e7fe752010-09-02 09:58:18 +00001521 llvm::Value *Ptr;
1522 const FunctionDecl *OperatorDelete;
1523 QualType ElementType;
1524
1525 CallObjectDelete(llvm::Value *Ptr,
1526 const FunctionDecl *OperatorDelete,
1527 QualType ElementType)
1528 : Ptr(Ptr), OperatorDelete(OperatorDelete), ElementType(ElementType) {}
1529
Stephen Hines651f13c2014-04-23 16:59:28 -07001530 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall1e7fe752010-09-02 09:58:18 +00001531 CGF.EmitDeleteCall(OperatorDelete, Ptr, ElementType);
1532 }
1533 };
1534}
1535
Stephen Hines176edba2014-12-01 14:53:08 -08001536void
1537CodeGenFunction::pushCallObjectDeleteCleanup(const FunctionDecl *OperatorDelete,
1538 llvm::Value *CompletePtr,
1539 QualType ElementType) {
1540 EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup, CompletePtr,
1541 OperatorDelete, ElementType);
1542}
1543
John McCall1e7fe752010-09-02 09:58:18 +00001544/// Emit the code for deleting a single object.
1545static void EmitObjectDelete(CodeGenFunction &CGF,
Stephen Hines176edba2014-12-01 14:53:08 -08001546 const CXXDeleteExpr *DE,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001547 Address Ptr,
Stephen Hines176edba2014-12-01 14:53:08 -08001548 QualType ElementType) {
John McCall1e7fe752010-09-02 09:58:18 +00001549 // Find the destructor for the type, if applicable. If the
1550 // destructor is virtual, we'll just emit the vcall and return.
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001551 const CXXDestructorDecl *Dtor = nullptr;
John McCall1e7fe752010-09-02 09:58:18 +00001552 if (const RecordType *RT = ElementType->getAs<RecordType>()) {
1553 CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
Eli Friedmanaebab722011-08-02 18:05:30 +00001554 if (RD->hasDefinition() && !RD->hasTrivialDestructor()) {
John McCall1e7fe752010-09-02 09:58:18 +00001555 Dtor = RD->getDestructor();
1556
1557 if (Dtor->isVirtual()) {
Stephen Hines176edba2014-12-01 14:53:08 -08001558 CGF.CGM.getCXXABI().emitVirtualObjectDelete(CGF, DE, Ptr, ElementType,
1559 Dtor);
John McCall1e7fe752010-09-02 09:58:18 +00001560 return;
1561 }
1562 }
1563 }
1564
1565 // Make sure that we call delete even if the dtor throws.
John McCall3ad32c82011-01-28 08:37:24 +00001566 // This doesn't have to a conditional cleanup because we're going
1567 // to pop it off in a second.
Stephen Hines176edba2014-12-01 14:53:08 -08001568 const FunctionDecl *OperatorDelete = DE->getOperatorDelete();
John McCall1e7fe752010-09-02 09:58:18 +00001569 CGF.EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001570 Ptr.getPointer(),
1571 OperatorDelete, ElementType);
John McCall1e7fe752010-09-02 09:58:18 +00001572
1573 if (Dtor)
1574 CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete,
Douglas Gregor378e1e72013-01-31 05:50:40 +00001575 /*ForVirtualBase=*/false,
1576 /*Delegating=*/false,
1577 Ptr);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001578 else if (auto Lifetime = ElementType.getObjCLifetime()) {
1579 switch (Lifetime) {
John McCallf85e1932011-06-15 23:02:42 +00001580 case Qualifiers::OCL_None:
1581 case Qualifiers::OCL_ExplicitNone:
1582 case Qualifiers::OCL_Autoreleasing:
1583 break;
John McCall1e7fe752010-09-02 09:58:18 +00001584
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001585 case Qualifiers::OCL_Strong:
1586 CGF.EmitARCDestroyStrong(Ptr, ARCPreciseLifetime);
John McCallf85e1932011-06-15 23:02:42 +00001587 break;
John McCallf85e1932011-06-15 23:02:42 +00001588
1589 case Qualifiers::OCL_Weak:
1590 CGF.EmitARCDestroyWeak(Ptr);
1591 break;
1592 }
1593 }
1594
John McCall1e7fe752010-09-02 09:58:18 +00001595 CGF.PopCleanupBlock();
1596}
1597
1598namespace {
1599 /// Calls the given 'operator delete' on an array of objects.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001600 struct CallArrayDelete final : EHScopeStack::Cleanup {
John McCall1e7fe752010-09-02 09:58:18 +00001601 llvm::Value *Ptr;
1602 const FunctionDecl *OperatorDelete;
1603 llvm::Value *NumElements;
1604 QualType ElementType;
1605 CharUnits CookieSize;
1606
1607 CallArrayDelete(llvm::Value *Ptr,
1608 const FunctionDecl *OperatorDelete,
1609 llvm::Value *NumElements,
1610 QualType ElementType,
1611 CharUnits CookieSize)
1612 : Ptr(Ptr), OperatorDelete(OperatorDelete), NumElements(NumElements),
1613 ElementType(ElementType), CookieSize(CookieSize) {}
1614
Stephen Hines651f13c2014-04-23 16:59:28 -07001615 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall1e7fe752010-09-02 09:58:18 +00001616 const FunctionProtoType *DeleteFTy =
1617 OperatorDelete->getType()->getAs<FunctionProtoType>();
Stephen Hines651f13c2014-04-23 16:59:28 -07001618 assert(DeleteFTy->getNumParams() == 1 || DeleteFTy->getNumParams() == 2);
John McCall1e7fe752010-09-02 09:58:18 +00001619
1620 CallArgList Args;
1621
1622 // Pass the pointer as the first argument.
Stephen Hines651f13c2014-04-23 16:59:28 -07001623 QualType VoidPtrTy = DeleteFTy->getParamType(0);
John McCall1e7fe752010-09-02 09:58:18 +00001624 llvm::Value *DeletePtr
1625 = CGF.Builder.CreateBitCast(Ptr, CGF.ConvertType(VoidPtrTy));
Eli Friedman04c9a492011-05-02 17:57:46 +00001626 Args.add(RValue::get(DeletePtr), VoidPtrTy);
John McCall1e7fe752010-09-02 09:58:18 +00001627
1628 // Pass the original requested size as the second argument.
Stephen Hines651f13c2014-04-23 16:59:28 -07001629 if (DeleteFTy->getNumParams() == 2) {
1630 QualType size_t = DeleteFTy->getParamType(1);
Chris Lattner2acc6e32011-07-18 04:24:23 +00001631 llvm::IntegerType *SizeTy
John McCall1e7fe752010-09-02 09:58:18 +00001632 = cast<llvm::IntegerType>(CGF.ConvertType(size_t));
1633
1634 CharUnits ElementTypeSize =
1635 CGF.CGM.getContext().getTypeSizeInChars(ElementType);
1636
1637 // The size of an element, multiplied by the number of elements.
1638 llvm::Value *Size
1639 = llvm::ConstantInt::get(SizeTy, ElementTypeSize.getQuantity());
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001640 if (NumElements)
1641 Size = CGF.Builder.CreateMul(Size, NumElements);
John McCall1e7fe752010-09-02 09:58:18 +00001642
1643 // Plus the size of the cookie if applicable.
1644 if (!CookieSize.isZero()) {
1645 llvm::Value *CookieSizeV
1646 = llvm::ConstantInt::get(SizeTy, CookieSize.getQuantity());
1647 Size = CGF.Builder.CreateAdd(Size, CookieSizeV);
1648 }
1649
Eli Friedman04c9a492011-05-02 17:57:46 +00001650 Args.add(RValue::get(Size), size_t);
John McCall1e7fe752010-09-02 09:58:18 +00001651 }
1652
1653 // Emit the call to delete.
Richard Smithddcff1b2013-07-21 23:12:18 +00001654 EmitNewDeleteCall(CGF, OperatorDelete, DeleteFTy, Args);
John McCall1e7fe752010-09-02 09:58:18 +00001655 }
1656 };
1657}
1658
1659/// Emit the code for deleting an array of objects.
1660static void EmitArrayDelete(CodeGenFunction &CGF,
John McCall6ec278d2011-01-27 09:37:56 +00001661 const CXXDeleteExpr *E,
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001662 Address deletedPtr,
John McCall7cfd76c2011-07-13 01:41:37 +00001663 QualType elementType) {
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001664 llvm::Value *numElements = nullptr;
1665 llvm::Value *allocatedPtr = nullptr;
John McCall7cfd76c2011-07-13 01:41:37 +00001666 CharUnits cookieSize;
1667 CGF.CGM.getCXXABI().ReadArrayCookie(CGF, deletedPtr, E, elementType,
1668 numElements, allocatedPtr, cookieSize);
John McCall1e7fe752010-09-02 09:58:18 +00001669
John McCall7cfd76c2011-07-13 01:41:37 +00001670 assert(allocatedPtr && "ReadArrayCookie didn't set allocated pointer");
John McCall1e7fe752010-09-02 09:58:18 +00001671
1672 // Make sure that we call delete even if one of the dtors throws.
John McCall7cfd76c2011-07-13 01:41:37 +00001673 const FunctionDecl *operatorDelete = E->getOperatorDelete();
John McCall1e7fe752010-09-02 09:58:18 +00001674 CGF.EHStack.pushCleanup<CallArrayDelete>(NormalAndEHCleanup,
John McCall7cfd76c2011-07-13 01:41:37 +00001675 allocatedPtr, operatorDelete,
1676 numElements, elementType,
1677 cookieSize);
John McCall1e7fe752010-09-02 09:58:18 +00001678
John McCall7cfd76c2011-07-13 01:41:37 +00001679 // Destroy the elements.
1680 if (QualType::DestructionKind dtorKind = elementType.isDestructedType()) {
1681 assert(numElements && "no element count for a type with a destructor!");
1682
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001683 CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType);
1684 CharUnits elementAlign =
1685 deletedPtr.getAlignment().alignmentOfArrayElement(elementSize);
1686
1687 llvm::Value *arrayBegin = deletedPtr.getPointer();
John McCall7cfd76c2011-07-13 01:41:37 +00001688 llvm::Value *arrayEnd =
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001689 CGF.Builder.CreateInBoundsGEP(arrayBegin, numElements, "delete.end");
John McCallfbf780a2011-07-13 08:09:46 +00001690
1691 // Note that it is legal to allocate a zero-length array, and we
1692 // can never fold the check away because the length should always
1693 // come from a cookie.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001694 CGF.emitArrayDestroy(arrayBegin, arrayEnd, elementType, elementAlign,
John McCall7cfd76c2011-07-13 01:41:37 +00001695 CGF.getDestroyer(dtorKind),
John McCallfbf780a2011-07-13 08:09:46 +00001696 /*checkZeroLength*/ true,
John McCall7cfd76c2011-07-13 01:41:37 +00001697 CGF.needsEHCleanup(dtorKind));
John McCall1e7fe752010-09-02 09:58:18 +00001698 }
1699
John McCall7cfd76c2011-07-13 01:41:37 +00001700 // Pop the cleanup block.
John McCall1e7fe752010-09-02 09:58:18 +00001701 CGF.PopCleanupBlock();
1702}
1703
Anders Carlsson16d81b82009-09-22 22:53:17 +00001704void CodeGenFunction::EmitCXXDeleteExpr(const CXXDeleteExpr *E) {
Douglas Gregor90916562009-09-29 18:16:17 +00001705 const Expr *Arg = E->getArgument();
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001706 Address Ptr = EmitPointerWithAlignment(Arg);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001707
1708 // Null check the pointer.
1709 llvm::BasicBlock *DeleteNotNull = createBasicBlock("delete.notnull");
1710 llvm::BasicBlock *DeleteEnd = createBasicBlock("delete.end");
1711
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001712 llvm::Value *IsNull = Builder.CreateIsNull(Ptr.getPointer(), "isnull");
Anders Carlsson16d81b82009-09-22 22:53:17 +00001713
1714 Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull);
1715 EmitBlock(DeleteNotNull);
Anders Carlsson566abee2009-11-13 04:45:41 +00001716
John McCall1e7fe752010-09-02 09:58:18 +00001717 // We might be deleting a pointer to array. If so, GEP down to the
1718 // first non-array element.
1719 // (this assumes that A(*)[3][7] is converted to [3 x [7 x %A]]*)
1720 QualType DeleteTy = Arg->getType()->getAs<PointerType>()->getPointeeType();
1721 if (DeleteTy->isConstantArrayType()) {
1722 llvm::Value *Zero = Builder.getInt32(0);
Chris Lattner5f9e2722011-07-23 10:55:15 +00001723 SmallVector<llvm::Value*,8> GEP;
John McCall1e7fe752010-09-02 09:58:18 +00001724
1725 GEP.push_back(Zero); // point at the outermost array
1726
1727 // For each layer of array type we're pointing at:
1728 while (const ConstantArrayType *Arr
1729 = getContext().getAsConstantArrayType(DeleteTy)) {
1730 // 1. Unpeel the array type.
1731 DeleteTy = Arr->getElementType();
1732
1733 // 2. GEP to the first element of the array.
1734 GEP.push_back(Zero);
Anders Carlsson16d81b82009-09-22 22:53:17 +00001735 }
John McCall1e7fe752010-09-02 09:58:18 +00001736
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001737 Ptr = Address(Builder.CreateInBoundsGEP(Ptr.getPointer(), GEP, "del.first"),
1738 Ptr.getAlignment());
Anders Carlsson16d81b82009-09-22 22:53:17 +00001739 }
1740
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001741 assert(ConvertTypeForMem(DeleteTy) == Ptr.getElementType());
John McCall1e7fe752010-09-02 09:58:18 +00001742
Pirama Arumuga Nainar3ea9e332015-04-08 08:57:32 -07001743 if (E->isArrayForm()) {
1744 EmitArrayDelete(*this, E, Ptr, DeleteTy);
1745 } else {
1746 EmitObjectDelete(*this, E, Ptr, DeleteTy);
1747 }
Anders Carlsson16d81b82009-09-22 22:53:17 +00001748
Anders Carlsson16d81b82009-09-22 22:53:17 +00001749 EmitBlock(DeleteEnd);
1750}
Mike Stumpc2e84ae2009-11-15 08:09:41 +00001751
Stephen Hines176edba2014-12-01 14:53:08 -08001752static bool isGLValueFromPointerDeref(const Expr *E) {
1753 E = E->IgnoreParens();
1754
1755 if (const auto *CE = dyn_cast<CastExpr>(E)) {
1756 if (!CE->getSubExpr()->isGLValue())
1757 return false;
1758 return isGLValueFromPointerDeref(CE->getSubExpr());
1759 }
1760
1761 if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E))
1762 return isGLValueFromPointerDeref(OVE->getSourceExpr());
1763
1764 if (const auto *BO = dyn_cast<BinaryOperator>(E))
1765 if (BO->getOpcode() == BO_Comma)
1766 return isGLValueFromPointerDeref(BO->getRHS());
1767
1768 if (const auto *ACO = dyn_cast<AbstractConditionalOperator>(E))
1769 return isGLValueFromPointerDeref(ACO->getTrueExpr()) ||
1770 isGLValueFromPointerDeref(ACO->getFalseExpr());
1771
1772 // C++11 [expr.sub]p1:
1773 // The expression E1[E2] is identical (by definition) to *((E1)+(E2))
1774 if (isa<ArraySubscriptExpr>(E))
1775 return true;
1776
1777 if (const auto *UO = dyn_cast<UnaryOperator>(E))
1778 if (UO->getOpcode() == UO_Deref)
1779 return true;
1780
1781 return false;
1782}
1783
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001784static llvm::Value *EmitTypeidFromVTable(CodeGenFunction &CGF, const Expr *E,
Chris Lattner2acc6e32011-07-18 04:24:23 +00001785 llvm::Type *StdTypeInfoPtrTy) {
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001786 // Get the vtable pointer.
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001787 Address ThisPtr = CGF.EmitLValue(E).getAddress();
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001788
1789 // C++ [expr.typeid]p2:
1790 // If the glvalue expression is obtained by applying the unary * operator to
1791 // a pointer and the pointer is a null pointer value, the typeid expression
1792 // throws the std::bad_typeid exception.
Stephen Hines176edba2014-12-01 14:53:08 -08001793 //
1794 // However, this paragraph's intent is not clear. We choose a very generous
1795 // interpretation which implores us to consider comma operators, conditional
1796 // operators, parentheses and other such constructs.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001797 QualType SrcRecordTy = E->getType();
Stephen Hines176edba2014-12-01 14:53:08 -08001798 if (CGF.CGM.getCXXABI().shouldTypeidBeNullChecked(
1799 isGLValueFromPointerDeref(E), SrcRecordTy)) {
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001800 llvm::BasicBlock *BadTypeidBlock =
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001801 CGF.createBasicBlock("typeid.bad_typeid");
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001802 llvm::BasicBlock *EndBlock = CGF.createBasicBlock("typeid.end");
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001803
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001804 llvm::Value *IsNull = CGF.Builder.CreateIsNull(ThisPtr.getPointer());
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001805 CGF.Builder.CreateCondBr(IsNull, BadTypeidBlock, EndBlock);
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001806
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001807 CGF.EmitBlock(BadTypeidBlock);
1808 CGF.CGM.getCXXABI().EmitBadTypeidCall(CGF);
1809 CGF.EmitBlock(EndBlock);
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001810 }
1811
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001812 return CGF.CGM.getCXXABI().EmitTypeid(CGF, SrcRecordTy, ThisPtr,
1813 StdTypeInfoPtrTy);
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001814}
1815
John McCall3ad32c82011-01-28 08:37:24 +00001816llvm::Value *CodeGenFunction::EmitCXXTypeidExpr(const CXXTypeidExpr *E) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001817 llvm::Type *StdTypeInfoPtrTy =
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001818 ConvertType(E->getType())->getPointerTo();
Anders Carlsson31b7f522009-12-11 02:46:30 +00001819
Anders Carlsson1d7088d2009-12-17 07:09:17 +00001820 if (E->isTypeOperand()) {
David Majnemerfe16aa32013-09-27 07:04:31 +00001821 llvm::Constant *TypeInfo =
1822 CGM.GetAddrOfRTTIDescriptor(E->getTypeOperand(getContext()));
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001823 return Builder.CreateBitCast(TypeInfo, StdTypeInfoPtrTy);
Anders Carlsson1d7088d2009-12-17 07:09:17 +00001824 }
Anders Carlsson4bdbc0c2011-04-11 14:13:40 +00001825
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001826 // C++ [expr.typeid]p2:
1827 // When typeid is applied to a glvalue expression whose type is a
1828 // polymorphic class type, the result refers to a std::type_info object
1829 // representing the type of the most derived object (that is, the dynamic
1830 // type) to which the glvalue refers.
Richard Smith0d729102012-08-13 20:08:14 +00001831 if (E->isPotentiallyEvaluated())
1832 return EmitTypeidFromVTable(*this, E->getExprOperand(),
1833 StdTypeInfoPtrTy);
Anders Carlsson3f6c5e12011-04-18 00:57:03 +00001834
1835 QualType OperandTy = E->getExprOperand()->getType();
1836 return Builder.CreateBitCast(CGM.GetAddrOfRTTIDescriptor(OperandTy),
1837 StdTypeInfoPtrTy);
Mike Stumpc2e84ae2009-11-15 08:09:41 +00001838}
Mike Stumpc849c052009-11-16 06:50:58 +00001839
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001840static llvm::Value *EmitDynamicCastToNull(CodeGenFunction &CGF,
1841 QualType DestTy) {
Chris Lattner2acc6e32011-07-18 04:24:23 +00001842 llvm::Type *DestLTy = CGF.ConvertType(DestTy);
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001843 if (DestTy->isPointerType())
1844 return llvm::Constant::getNullValue(DestLTy);
1845
1846 /// C++ [expr.dynamic.cast]p9:
1847 /// A failed cast to reference type throws std::bad_cast
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001848 if (!CGF.CGM.getCXXABI().EmitBadCastCall(CGF))
1849 return nullptr;
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001850
1851 CGF.EmitBlock(CGF.createBasicBlock("dynamic_cast.end"));
1852 return llvm::UndefValue::get(DestLTy);
1853}
1854
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001855llvm::Value *CodeGenFunction::EmitDynamicCast(Address ThisAddr,
Mike Stumpc849c052009-11-16 06:50:58 +00001856 const CXXDynamicCastExpr *DCE) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001857 CGM.EmitExplicitCastExprType(DCE, this);
Anders Carlsson1d7088d2009-12-17 07:09:17 +00001858 QualType DestTy = DCE->getTypeAsWritten();
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001859
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001860 if (DCE->isAlwaysNull())
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001861 if (llvm::Value *T = EmitDynamicCastToNull(*this, DestTy))
1862 return T;
Anders Carlsson3ddcdd52011-04-11 01:45:29 +00001863
1864 QualType SrcTy = DCE->getSubExpr()->getType();
1865
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001866 // C++ [expr.dynamic.cast]p7:
1867 // If T is "pointer to cv void," then the result is a pointer to the most
1868 // derived object pointed to by v.
1869 const PointerType *DestPTy = DestTy->getAs<PointerType>();
1870
1871 bool isDynamicCastToVoid;
1872 QualType SrcRecordTy;
1873 QualType DestRecordTy;
1874 if (DestPTy) {
1875 isDynamicCastToVoid = DestPTy->getPointeeType()->isVoidType();
1876 SrcRecordTy = SrcTy->castAs<PointerType>()->getPointeeType();
1877 DestRecordTy = DestPTy->getPointeeType();
1878 } else {
1879 isDynamicCastToVoid = false;
1880 SrcRecordTy = SrcTy;
1881 DestRecordTy = DestTy->castAs<ReferenceType>()->getPointeeType();
1882 }
1883
1884 assert(SrcRecordTy->isRecordType() && "source type must be a record type!");
1885
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001886 // C++ [expr.dynamic.cast]p4:
1887 // If the value of v is a null pointer value in the pointer case, the result
1888 // is the null pointer value of type T.
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001889 bool ShouldNullCheckSrcValue =
1890 CGM.getCXXABI().shouldDynamicCastCallBeNullChecked(SrcTy->isPointerType(),
1891 SrcRecordTy);
Stephen Hines6bcf27b2014-05-29 04:14:42 -07001892
1893 llvm::BasicBlock *CastNull = nullptr;
1894 llvm::BasicBlock *CastNotNull = nullptr;
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001895 llvm::BasicBlock *CastEnd = createBasicBlock("dynamic_cast.end");
Mike Stumpc849c052009-11-16 06:50:58 +00001896
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001897 if (ShouldNullCheckSrcValue) {
1898 CastNull = createBasicBlock("dynamic_cast.null");
1899 CastNotNull = createBasicBlock("dynamic_cast.notnull");
1900
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001901 llvm::Value *IsNull = Builder.CreateIsNull(ThisAddr.getPointer());
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001902 Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
1903 EmitBlock(CastNotNull);
Mike Stumpc849c052009-11-16 06:50:58 +00001904 }
1905
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001906 llvm::Value *Value;
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001907 if (isDynamicCastToVoid) {
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001908 Value = CGM.getCXXABI().EmitDynamicCastToVoid(*this, ThisAddr, SrcRecordTy,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001909 DestTy);
1910 } else {
1911 assert(DestRecordTy->isRecordType() &&
1912 "destination type must be a record type!");
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001913 Value = CGM.getCXXABI().EmitDynamicCastCall(*this, ThisAddr, SrcRecordTy,
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001914 DestTy, DestRecordTy, CastEnd);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001915 CastNotNull = Builder.GetInsertBlock();
Stephen Hinesc568f1e2014-07-21 00:47:37 -07001916 }
Anders Carlssonf0cb4a62011-04-11 00:46:40 +00001917
1918 if (ShouldNullCheckSrcValue) {
1919 EmitBranch(CastEnd);
1920
1921 EmitBlock(CastNull);
1922 EmitBranch(CastEnd);
1923 }
1924
1925 EmitBlock(CastEnd);
1926
1927 if (ShouldNullCheckSrcValue) {
1928 llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
1929 PHI->addIncoming(Value, CastNotNull);
1930 PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), CastNull);
1931
1932 Value = PHI;
1933 }
1934
1935 return Value;
Mike Stumpc849c052009-11-16 06:50:58 +00001936}
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001937
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001938void CodeGenFunction::EmitLambdaExpr(const LambdaExpr *E, AggValueSlot Slot) {
Eli Friedmanf8823e72012-02-09 03:47:20 +00001939 RunCleanupsScope Scope(*this);
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001940 LValue SlotLV = MakeAddrLValue(Slot.getAddress(), E->getType());
Eli Friedmanf8823e72012-02-09 03:47:20 +00001941
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001942 CXXRecordDecl::field_iterator CurField = E->getLambdaClass()->field_begin();
Pirama Arumuga Nainar87d948e2016-03-03 15:49:35 -08001943 for (LambdaExpr::const_capture_init_iterator i = E->capture_init_begin(),
1944 e = E->capture_init_end();
Eric Christopherc07b18e2012-02-29 03:25:18 +00001945 i != e; ++i, ++CurField) {
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001946 // Emit initialization
David Blaikie581deb32012-06-06 20:45:41 +00001947 LValue LV = EmitLValueForFieldInitialization(SlotLV, *CurField);
Stephen Hines176edba2014-12-01 14:53:08 -08001948 if (CurField->hasCapturedVLAType()) {
1949 auto VAT = CurField->getCapturedVLAType();
1950 EmitStoreThroughLValue(RValue::get(VLASizeMap[VAT->getSizeExpr()]), LV);
1951 } else {
1952 ArrayRef<VarDecl *> ArrayIndexes;
1953 if (CurField->getType()->isArrayType())
1954 ArrayIndexes = E->getCaptureInitIndexVars(i);
1955 EmitInitializerForField(*CurField, LV, *i, ArrayIndexes);
1956 }
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001957 }
Eli Friedman4c5d8af2012-02-09 03:32:31 +00001958}