159486a2dSAnders Carlsson //===--- CGExprCXX.cpp - Emit LLVM Code for C++ expressions ---------------===//
259486a2dSAnders Carlsson //
359486a2dSAnders Carlsson //                     The LLVM Compiler Infrastructure
459486a2dSAnders Carlsson //
559486a2dSAnders Carlsson // This file is distributed under the University of Illinois Open Source
659486a2dSAnders Carlsson // License. See LICENSE.TXT for details.
759486a2dSAnders Carlsson //
859486a2dSAnders Carlsson //===----------------------------------------------------------------------===//
959486a2dSAnders Carlsson //
1059486a2dSAnders Carlsson // This contains code dealing with code generation of C++ expressions
1159486a2dSAnders Carlsson //
1259486a2dSAnders Carlsson //===----------------------------------------------------------------------===//
1359486a2dSAnders Carlsson 
1459486a2dSAnders Carlsson #include "CodeGenFunction.h"
15fe883422SPeter Collingbourne #include "CGCUDARuntime.h"
165d865c32SJohn McCall #include "CGCXXABI.h"
1791bbb554SDevang Patel #include "CGDebugInfo.h"
183a02247dSChandler Carruth #include "CGObjCRuntime.h"
19a8e7df36SMark Lacey #include "clang/CodeGen/CGFunctionInfo.h"
203a02247dSChandler Carruth #include "clang/Frontend/CodeGenOptions.h"
21c80ceea9SChandler Carruth #include "llvm/IR/CallSite.h"
22ffd5551bSChandler Carruth #include "llvm/IR/Intrinsics.h"
23bbe277c4SAnders Carlsson 
2459486a2dSAnders Carlsson using namespace clang;
2559486a2dSAnders Carlsson using namespace CodeGen;
2659486a2dSAnders Carlsson 
270c0b6d9aSDavid Majnemer static RequiredArgs commonEmitCXXMemberOrOperatorCall(
280c0b6d9aSDavid Majnemer     CodeGenFunction &CGF, const CXXMethodDecl *MD, llvm::Value *Callee,
290c0b6d9aSDavid Majnemer     ReturnValueSlot ReturnValue, llvm::Value *This, llvm::Value *ImplicitParam,
300c0b6d9aSDavid Majnemer     QualType ImplicitParamTy, const CallExpr *CE, CallArgList &Args) {
31a5bf76bdSAlexey Samsonov   assert(CE == nullptr || isa<CXXMemberCallExpr>(CE) ||
32a5bf76bdSAlexey Samsonov          isa<CXXOperatorCallExpr>(CE));
3327da15baSAnders Carlsson   assert(MD->isInstance() &&
34a5bf76bdSAlexey Samsonov          "Trying to emit a member or operator call expr on a static method!");
3527da15baSAnders Carlsson 
3669d0d262SRichard Smith   // C++11 [class.mfct.non-static]p2:
3769d0d262SRichard Smith   //   If a non-static member function of a class X is called for an object that
3869d0d262SRichard Smith   //   is not of type X, or of a type derived from X, the behavior is undefined.
39a5bf76bdSAlexey Samsonov   SourceLocation CallLoc;
40a5bf76bdSAlexey Samsonov   if (CE)
41a5bf76bdSAlexey Samsonov     CallLoc = CE->getExprLoc();
420c0b6d9aSDavid Majnemer   CGF.EmitTypeCheck(
430c0b6d9aSDavid Majnemer       isa<CXXConstructorDecl>(MD) ? CodeGenFunction::TCK_ConstructorCall
440c0b6d9aSDavid Majnemer                                   : CodeGenFunction::TCK_MemberCall,
450c0b6d9aSDavid Majnemer       CallLoc, This, CGF.getContext().getRecordType(MD->getParent()));
4627da15baSAnders Carlsson 
4727da15baSAnders Carlsson   // Push the this ptr.
480c0b6d9aSDavid Majnemer   Args.add(RValue::get(This), MD->getThisType(CGF.getContext()));
4927da15baSAnders Carlsson 
50ee6bc533STimur Iskhodzhanov   // If there is an implicit parameter (e.g. VTT), emit it.
51ee6bc533STimur Iskhodzhanov   if (ImplicitParam) {
52ee6bc533STimur Iskhodzhanov     Args.add(RValue::get(ImplicitParam), ImplicitParamTy);
53e36a6b3eSAnders Carlsson   }
54e36a6b3eSAnders Carlsson 
55a729c62bSJohn McCall   const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
56a729c62bSJohn McCall   RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size());
57a729c62bSJohn McCall 
58a729c62bSJohn McCall   // And the rest of the call args.
598e1162c7SAlexey Samsonov   if (CE) {
60a5bf76bdSAlexey Samsonov     // Special case: skip first argument of CXXOperatorCall (it is "this").
618e1162c7SAlexey Samsonov     unsigned ArgsToSkip = isa<CXXOperatorCallExpr>(CE) ? 1 : 0;
620c0b6d9aSDavid Majnemer     CGF.EmitCallArgs(Args, FPT, CE->arg_begin() + ArgsToSkip, CE->arg_end(),
638e1162c7SAlexey Samsonov                      CE->getDirectCallee());
64a5bf76bdSAlexey Samsonov   } else {
658e1162c7SAlexey Samsonov     assert(
668e1162c7SAlexey Samsonov         FPT->getNumParams() == 0 &&
678e1162c7SAlexey Samsonov         "No CallExpr specified for function with non-zero number of arguments");
68a5bf76bdSAlexey Samsonov   }
690c0b6d9aSDavid Majnemer   return required;
700c0b6d9aSDavid Majnemer }
7127da15baSAnders Carlsson 
720c0b6d9aSDavid Majnemer RValue CodeGenFunction::EmitCXXMemberOrOperatorCall(
730c0b6d9aSDavid Majnemer     const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue,
740c0b6d9aSDavid Majnemer     llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy,
750c0b6d9aSDavid Majnemer     const CallExpr *CE) {
760c0b6d9aSDavid Majnemer   const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
770c0b6d9aSDavid Majnemer   CallArgList Args;
780c0b6d9aSDavid Majnemer   RequiredArgs required = commonEmitCXXMemberOrOperatorCall(
790c0b6d9aSDavid Majnemer       *this, MD, Callee, ReturnValue, This, ImplicitParam, ImplicitParamTy, CE,
800c0b6d9aSDavid Majnemer       Args);
818dda7b27SJohn McCall   return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
82c50c27ccSRafael Espindola                   Callee, ReturnValue, Args, MD);
8327da15baSAnders Carlsson }
8427da15baSAnders Carlsson 
850c0b6d9aSDavid Majnemer RValue CodeGenFunction::EmitCXXStructorCall(
860c0b6d9aSDavid Majnemer     const CXXMethodDecl *MD, llvm::Value *Callee, ReturnValueSlot ReturnValue,
870c0b6d9aSDavid Majnemer     llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy,
880c0b6d9aSDavid Majnemer     const CallExpr *CE, StructorType Type) {
890c0b6d9aSDavid Majnemer   CallArgList Args;
900c0b6d9aSDavid Majnemer   commonEmitCXXMemberOrOperatorCall(*this, MD, Callee, ReturnValue, This,
910c0b6d9aSDavid Majnemer                                     ImplicitParam, ImplicitParamTy, CE, Args);
920c0b6d9aSDavid Majnemer   return EmitCall(CGM.getTypes().arrangeCXXStructorDeclaration(MD, Type),
930c0b6d9aSDavid Majnemer                   Callee, ReturnValue, Args, MD);
940c0b6d9aSDavid Majnemer }
950c0b6d9aSDavid Majnemer 
963b33c4ecSRafael Espindola static CXXRecordDecl *getCXXRecord(const Expr *E) {
973b33c4ecSRafael Espindola   QualType T = E->getType();
983b33c4ecSRafael Espindola   if (const PointerType *PTy = T->getAs<PointerType>())
993b33c4ecSRafael Espindola     T = PTy->getPointeeType();
1003b33c4ecSRafael Espindola   const RecordType *Ty = T->castAs<RecordType>();
1013b33c4ecSRafael Espindola   return cast<CXXRecordDecl>(Ty->getDecl());
1023b33c4ecSRafael Espindola }
1033b33c4ecSRafael Espindola 
10464225794SFrancois Pichet // Note: This function also emit constructor calls to support a MSVC
10564225794SFrancois Pichet // extensions allowing explicit constructor function call.
10627da15baSAnders Carlsson RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE,
10727da15baSAnders Carlsson                                               ReturnValueSlot ReturnValue) {
1082d2e8707SJohn McCall   const Expr *callee = CE->getCallee()->IgnoreParens();
1092d2e8707SJohn McCall 
1102d2e8707SJohn McCall   if (isa<BinaryOperator>(callee))
11127da15baSAnders Carlsson     return EmitCXXMemberPointerCallExpr(CE, ReturnValue);
11227da15baSAnders Carlsson 
1132d2e8707SJohn McCall   const MemberExpr *ME = cast<MemberExpr>(callee);
11427da15baSAnders Carlsson   const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl());
11527da15baSAnders Carlsson 
11627da15baSAnders Carlsson   if (MD->isStatic()) {
11727da15baSAnders Carlsson     // The method is static, emit it as we would a regular call.
11827da15baSAnders Carlsson     llvm::Value *Callee = CGM.GetAddrOfFunction(MD);
11970b9c01bSAlexey Samsonov     return EmitCall(getContext().getPointerType(MD->getType()), Callee, CE,
12070b9c01bSAlexey Samsonov                     ReturnValue);
12127da15baSAnders Carlsson   }
12227da15baSAnders Carlsson 
123aad4af6dSNico Weber   bool HasQualifier = ME->hasQualifier();
124aad4af6dSNico Weber   NestedNameSpecifier *Qualifier = HasQualifier ? ME->getQualifier() : nullptr;
125aad4af6dSNico Weber   bool IsArrow = ME->isArrow();
126ecbe2e97SRafael Espindola   const Expr *Base = ME->getBase();
127aad4af6dSNico Weber 
128aad4af6dSNico Weber   return EmitCXXMemberOrOperatorMemberCallExpr(
129aad4af6dSNico Weber       CE, MD, ReturnValue, HasQualifier, Qualifier, IsArrow, Base);
130aad4af6dSNico Weber }
131aad4af6dSNico Weber 
132aad4af6dSNico Weber RValue CodeGenFunction::EmitCXXMemberOrOperatorMemberCallExpr(
133aad4af6dSNico Weber     const CallExpr *CE, const CXXMethodDecl *MD, ReturnValueSlot ReturnValue,
134aad4af6dSNico Weber     bool HasQualifier, NestedNameSpecifier *Qualifier, bool IsArrow,
135aad4af6dSNico Weber     const Expr *Base) {
136aad4af6dSNico Weber   assert(isa<CXXMemberCallExpr>(CE) || isa<CXXOperatorCallExpr>(CE));
137aad4af6dSNico Weber 
138aad4af6dSNico Weber   // Compute the object pointer.
139aad4af6dSNico Weber   bool CanUseVirtualCall = MD->isVirtual() && !HasQualifier;
140ecbe2e97SRafael Espindola 
1418a13c418SCraig Topper   const CXXMethodDecl *DevirtualizedMethod = nullptr;
1427463ed7cSBenjamin Kramer   if (CanUseVirtualCall && CanDevirtualizeMemberFunctionCall(Base, MD)) {
1433b33c4ecSRafael Espindola     const CXXRecordDecl *BestDynamicDecl = Base->getBestDynamicClassType();
1443b33c4ecSRafael Espindola     DevirtualizedMethod = MD->getCorrespondingMethodInClass(BestDynamicDecl);
1453b33c4ecSRafael Espindola     assert(DevirtualizedMethod);
1463b33c4ecSRafael Espindola     const CXXRecordDecl *DevirtualizedClass = DevirtualizedMethod->getParent();
1473b33c4ecSRafael Espindola     const Expr *Inner = Base->ignoreParenBaseCasts();
1485bd68794SAlexey Bataev     if (DevirtualizedMethod->getReturnType().getCanonicalType() !=
1495bd68794SAlexey Bataev         MD->getReturnType().getCanonicalType())
1505bd68794SAlexey Bataev       // If the return types are not the same, this might be a case where more
1515bd68794SAlexey Bataev       // code needs to run to compensate for it. For example, the derived
1525bd68794SAlexey Bataev       // method might return a type that inherits form from the return
1535bd68794SAlexey Bataev       // type of MD and has a prefix.
1545bd68794SAlexey Bataev       // For now we just avoid devirtualizing these covariant cases.
1555bd68794SAlexey Bataev       DevirtualizedMethod = nullptr;
1565bd68794SAlexey Bataev     else if (getCXXRecord(Inner) == DevirtualizedClass)
1573b33c4ecSRafael Espindola       // If the class of the Inner expression is where the dynamic method
1583b33c4ecSRafael Espindola       // is defined, build the this pointer from it.
1593b33c4ecSRafael Espindola       Base = Inner;
1603b33c4ecSRafael Espindola     else if (getCXXRecord(Base) != DevirtualizedClass) {
1613b33c4ecSRafael Espindola       // If the method is defined in a class that is not the best dynamic
1623b33c4ecSRafael Espindola       // one or the one of the full expression, we would have to build
1633b33c4ecSRafael Espindola       // a derived-to-base cast to compute the correct this pointer, but
1643b33c4ecSRafael Espindola       // we don't have support for that yet, so do a virtual call.
1658a13c418SCraig Topper       DevirtualizedMethod = nullptr;
1663b33c4ecSRafael Espindola     }
1673b33c4ecSRafael Espindola   }
168ecbe2e97SRafael Espindola 
16927da15baSAnders Carlsson   llvm::Value *This;
170aad4af6dSNico Weber   if (IsArrow)
1713b33c4ecSRafael Espindola     This = EmitScalarExpr(Base);
172f93ac894SFariborz Jahanian   else
1733b33c4ecSRafael Espindola     This = EmitLValue(Base).getAddress();
174ecbe2e97SRafael Espindola 
17527da15baSAnders Carlsson 
176419bd094SRichard Smith   if (MD->isTrivial() || (MD->isDefaulted() && MD->getParent()->isUnion())) {
1778a13c418SCraig Topper     if (isa<CXXDestructorDecl>(MD)) return RValue::get(nullptr);
17864225794SFrancois Pichet     if (isa<CXXConstructorDecl>(MD) &&
17964225794SFrancois Pichet         cast<CXXConstructorDecl>(MD)->isDefaultConstructor())
1808a13c418SCraig Topper       return RValue::get(nullptr);
1810d635f53SJohn McCall 
182aad4af6dSNico Weber     if (!MD->getParent()->mayInsertExtraPadding()) {
18322653bacSSebastian Redl       if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) {
18422653bacSSebastian Redl         // We don't like to generate the trivial copy/move assignment operator
18522653bacSSebastian Redl         // when it isn't necessary; just produce the proper effect here.
186aad4af6dSNico Weber         // Special case: skip first argument of CXXOperatorCall (it is "this").
187aad4af6dSNico Weber         unsigned ArgsToSkip = isa<CXXOperatorCallExpr>(CE) ? 1 : 0;
188aad4af6dSNico Weber         llvm::Value *RHS =
189aad4af6dSNico Weber             EmitLValue(*(CE->arg_begin() + ArgsToSkip)).getAddress();
1901ca66919SBenjamin Kramer         EmitAggregateAssign(This, RHS, CE->getType());
19127da15baSAnders Carlsson         return RValue::get(This);
19227da15baSAnders Carlsson       }
19327da15baSAnders Carlsson 
19464225794SFrancois Pichet       if (isa<CXXConstructorDecl>(MD) &&
19522653bacSSebastian Redl           cast<CXXConstructorDecl>(MD)->isCopyOrMoveConstructor()) {
19622653bacSSebastian Redl         // Trivial move and copy ctor are the same.
197525bf650SAlexey Samsonov         assert(CE->getNumArgs() == 1 && "unexpected argcount for trivial ctor");
19864225794SFrancois Pichet         llvm::Value *RHS = EmitLValue(*CE->arg_begin()).getAddress();
199*f48ee448SBenjamin Kramer         EmitAggregateCopy(This, RHS, (*CE->arg_begin())->getType());
20064225794SFrancois Pichet         return RValue::get(This);
20164225794SFrancois Pichet       }
20264225794SFrancois Pichet       llvm_unreachable("unknown trivial member function");
20364225794SFrancois Pichet     }
204aad4af6dSNico Weber   }
20564225794SFrancois Pichet 
2060d635f53SJohn McCall   // Compute the function type we're calling.
2073abfe958SNico Weber   const CXXMethodDecl *CalleeDecl =
2083abfe958SNico Weber       DevirtualizedMethod ? DevirtualizedMethod : MD;
2098a13c418SCraig Topper   const CGFunctionInfo *FInfo = nullptr;
2103abfe958SNico Weber   if (const auto *Dtor = dyn_cast<CXXDestructorDecl>(CalleeDecl))
2118d2a19b4SRafael Espindola     FInfo = &CGM.getTypes().arrangeCXXStructorDeclaration(
2128d2a19b4SRafael Espindola         Dtor, StructorType::Complete);
2133abfe958SNico Weber   else if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(CalleeDecl))
2148d2a19b4SRafael Espindola     FInfo = &CGM.getTypes().arrangeCXXStructorDeclaration(
2158d2a19b4SRafael Espindola         Ctor, StructorType::Complete);
21664225794SFrancois Pichet   else
217ade60977SEli Friedman     FInfo = &CGM.getTypes().arrangeCXXMethodDeclaration(CalleeDecl);
2180d635f53SJohn McCall 
219e7de47efSReid Kleckner   llvm::FunctionType *Ty = CGM.getTypes().GetFunctionType(*FInfo);
2200d635f53SJohn McCall 
22127da15baSAnders Carlsson   // C++ [class.virtual]p12:
22227da15baSAnders Carlsson   //   Explicit qualification with the scope operator (5.1) suppresses the
22327da15baSAnders Carlsson   //   virtual call mechanism.
22427da15baSAnders Carlsson   //
22527da15baSAnders Carlsson   // We also don't emit a virtual call if the base expression has a record type
22627da15baSAnders Carlsson   // because then we know what the type is.
2273b33c4ecSRafael Espindola   bool UseVirtualCall = CanUseVirtualCall && !DevirtualizedMethod;
22819cee187SStephen Lin   llvm::Value *Callee;
2299dc6eef7SStephen Lin 
2300d635f53SJohn McCall   if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(MD)) {
23119cee187SStephen Lin     assert(CE->arg_begin() == CE->arg_end() &&
2329dc6eef7SStephen Lin            "Destructor shouldn't have explicit parameters");
2339dc6eef7SStephen Lin     assert(ReturnValue.isNull() && "Destructor shouldn't have return value");
2349dc6eef7SStephen Lin     if (UseVirtualCall) {
235aad4af6dSNico Weber       CGM.getCXXABI().EmitVirtualDestructorCall(
236aad4af6dSNico Weber           *this, Dtor, Dtor_Complete, This, cast<CXXMemberCallExpr>(CE));
23727da15baSAnders Carlsson     } else {
238aad4af6dSNico Weber       if (getLangOpts().AppleKext && MD->isVirtual() && HasQualifier)
239aad4af6dSNico Weber         Callee = BuildAppleKextVirtualCall(MD, Qualifier, Ty);
2403b33c4ecSRafael Espindola       else if (!DevirtualizedMethod)
2411ac0ec86SRafael Espindola         Callee =
2421ac0ec86SRafael Espindola             CGM.getAddrOfCXXStructor(Dtor, StructorType::Complete, FInfo, Ty);
24349e860b2SRafael Espindola       else {
2443b33c4ecSRafael Espindola         const CXXDestructorDecl *DDtor =
2453b33c4ecSRafael Espindola           cast<CXXDestructorDecl>(DevirtualizedMethod);
24649e860b2SRafael Espindola         Callee = CGM.GetAddrOfFunction(GlobalDecl(DDtor, Dtor_Complete), Ty);
24749e860b2SRafael Espindola       }
248a5bf76bdSAlexey Samsonov       EmitCXXMemberOrOperatorCall(MD, Callee, ReturnValue, This,
249a5bf76bdSAlexey Samsonov                                   /*ImplicitParam=*/nullptr, QualType(), CE);
25027da15baSAnders Carlsson     }
2518a13c418SCraig Topper     return RValue::get(nullptr);
2529dc6eef7SStephen Lin   }
2539dc6eef7SStephen Lin 
2549dc6eef7SStephen Lin   if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) {
25564225794SFrancois Pichet     Callee = CGM.GetAddrOfFunction(GlobalDecl(Ctor, Ctor_Complete), Ty);
2560d635f53SJohn McCall   } else if (UseVirtualCall) {
2576708c4a1SPeter Collingbourne     Callee = CGM.getCXXABI().getVirtualFunctionPointer(*this, MD, This, Ty,
2586708c4a1SPeter Collingbourne                                                        CE->getLocStart());
25927da15baSAnders Carlsson   } else {
2601a7488afSPeter Collingbourne     if (SanOpts.has(SanitizerKind::CFINVCall) &&
2611a7488afSPeter Collingbourne         MD->getParent()->isDynamicClass()) {
2621a7488afSPeter Collingbourne       llvm::Value *VTable = GetVTablePtr(This, Int8PtrTy);
2636708c4a1SPeter Collingbourne       EmitVTablePtrCheckForCall(MD, VTable, CFITCK_NVCall, CE->getLocStart());
2641a7488afSPeter Collingbourne     }
2651a7488afSPeter Collingbourne 
266aad4af6dSNico Weber     if (getLangOpts().AppleKext && MD->isVirtual() && HasQualifier)
267aad4af6dSNico Weber       Callee = BuildAppleKextVirtualCall(MD, Qualifier, Ty);
2683b33c4ecSRafael Espindola     else if (!DevirtualizedMethod)
269727a771aSRafael Espindola       Callee = CGM.GetAddrOfFunction(MD, Ty);
27049e860b2SRafael Espindola     else {
2713b33c4ecSRafael Espindola       Callee = CGM.GetAddrOfFunction(DevirtualizedMethod, Ty);
27249e860b2SRafael Espindola     }
27327da15baSAnders Carlsson   }
27427da15baSAnders Carlsson 
275f1749427STimur Iskhodzhanov   if (MD->isVirtual()) {
276f1749427STimur Iskhodzhanov     This = CGM.getCXXABI().adjustThisArgumentForVirtualFunctionCall(
277f1749427STimur Iskhodzhanov         *this, MD, This, UseVirtualCall);
278f1749427STimur Iskhodzhanov   }
27988fd439aSTimur Iskhodzhanov 
280a5bf76bdSAlexey Samsonov   return EmitCXXMemberOrOperatorCall(MD, Callee, ReturnValue, This,
281a5bf76bdSAlexey Samsonov                                      /*ImplicitParam=*/nullptr, QualType(), CE);
28227da15baSAnders Carlsson }
28327da15baSAnders Carlsson 
28427da15baSAnders Carlsson RValue
28527da15baSAnders Carlsson CodeGenFunction::EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E,
28627da15baSAnders Carlsson                                               ReturnValueSlot ReturnValue) {
28727da15baSAnders Carlsson   const BinaryOperator *BO =
28827da15baSAnders Carlsson       cast<BinaryOperator>(E->getCallee()->IgnoreParens());
28927da15baSAnders Carlsson   const Expr *BaseExpr = BO->getLHS();
29027da15baSAnders Carlsson   const Expr *MemFnExpr = BO->getRHS();
29127da15baSAnders Carlsson 
29227da15baSAnders Carlsson   const MemberPointerType *MPT =
2930009fcc3SJohn McCall     MemFnExpr->getType()->castAs<MemberPointerType>();
294475999dcSJohn McCall 
29527da15baSAnders Carlsson   const FunctionProtoType *FPT =
2960009fcc3SJohn McCall     MPT->getPointeeType()->castAs<FunctionProtoType>();
29727da15baSAnders Carlsson   const CXXRecordDecl *RD =
29827da15baSAnders Carlsson     cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl());
29927da15baSAnders Carlsson 
30027da15baSAnders Carlsson   // Get the member function pointer.
301a1dee530SJohn McCall   llvm::Value *MemFnPtr = EmitScalarExpr(MemFnExpr);
30227da15baSAnders Carlsson 
30327da15baSAnders Carlsson   // Emit the 'this' pointer.
30427da15baSAnders Carlsson   llvm::Value *This;
30527da15baSAnders Carlsson 
306e302792bSJohn McCall   if (BO->getOpcode() == BO_PtrMemI)
30727da15baSAnders Carlsson     This = EmitScalarExpr(BaseExpr);
30827da15baSAnders Carlsson   else
30927da15baSAnders Carlsson     This = EmitLValue(BaseExpr).getAddress();
31027da15baSAnders Carlsson 
311e30752c9SRichard Smith   EmitTypeCheck(TCK_MemberCall, E->getExprLoc(), This,
312e30752c9SRichard Smith                 QualType(MPT->getClass(), 0));
31369d0d262SRichard Smith 
314475999dcSJohn McCall   // Ask the ABI to load the callee.  Note that This is modified.
315475999dcSJohn McCall   llvm::Value *Callee =
3162b0d66dfSDavid Majnemer     CGM.getCXXABI().EmitLoadOfMemberFunctionPointer(*this, BO, This, MemFnPtr, MPT);
31727da15baSAnders Carlsson 
31827da15baSAnders Carlsson   CallArgList Args;
31927da15baSAnders Carlsson 
32027da15baSAnders Carlsson   QualType ThisType =
32127da15baSAnders Carlsson     getContext().getPointerType(getContext().getTagDeclType(RD));
32227da15baSAnders Carlsson 
32327da15baSAnders Carlsson   // Push the this ptr.
32443dca6a8SEli Friedman   Args.add(RValue::get(This), ThisType);
32527da15baSAnders Carlsson 
3268dda7b27SJohn McCall   RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, 1);
3278dda7b27SJohn McCall 
32827da15baSAnders Carlsson   // And the rest of the call args
3298e1162c7SAlexey Samsonov   EmitCallArgs(Args, FPT, E->arg_begin(), E->arg_end(), E->getDirectCallee());
3305fa40c3bSNick Lewycky   return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
3315fa40c3bSNick Lewycky                   Callee, ReturnValue, Args);
33227da15baSAnders Carlsson }
33327da15baSAnders Carlsson 
33427da15baSAnders Carlsson RValue
33527da15baSAnders Carlsson CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E,
33627da15baSAnders Carlsson                                                const CXXMethodDecl *MD,
33727da15baSAnders Carlsson                                                ReturnValueSlot ReturnValue) {
33827da15baSAnders Carlsson   assert(MD->isInstance() &&
33927da15baSAnders Carlsson          "Trying to emit a member call expr on a static method!");
340aad4af6dSNico Weber   return EmitCXXMemberOrOperatorMemberCallExpr(
341aad4af6dSNico Weber       E, MD, ReturnValue, /*HasQualifier=*/false, /*Qualifier=*/nullptr,
342aad4af6dSNico Weber       /*IsArrow=*/false, E->getArg(0));
34327da15baSAnders Carlsson }
34427da15baSAnders Carlsson 
345fe883422SPeter Collingbourne RValue CodeGenFunction::EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E,
346fe883422SPeter Collingbourne                                                ReturnValueSlot ReturnValue) {
347fe883422SPeter Collingbourne   return CGM.getCUDARuntime().EmitCUDAKernelCallExpr(*this, E, ReturnValue);
348fe883422SPeter Collingbourne }
349fe883422SPeter Collingbourne 
350fde961dbSEli Friedman static void EmitNullBaseClassInitialization(CodeGenFunction &CGF,
351fde961dbSEli Friedman                                             llvm::Value *DestPtr,
352fde961dbSEli Friedman                                             const CXXRecordDecl *Base) {
353fde961dbSEli Friedman   if (Base->isEmpty())
354fde961dbSEli Friedman     return;
355fde961dbSEli Friedman 
356fde961dbSEli Friedman   DestPtr = CGF.EmitCastToVoidPtr(DestPtr);
357fde961dbSEli Friedman 
358fde961dbSEli Friedman   const ASTRecordLayout &Layout = CGF.getContext().getASTRecordLayout(Base);
359fde961dbSEli Friedman   CharUnits Size = Layout.getNonVirtualSize();
360d640d7d9SWarren Hunt   CharUnits Align = Layout.getNonVirtualAlignment();
361fde961dbSEli Friedman 
362fde961dbSEli Friedman   llvm::Value *SizeVal = CGF.CGM.getSize(Size);
363fde961dbSEli Friedman 
364fde961dbSEli Friedman   // If the type contains a pointer to data member we can't memset it to zero.
365fde961dbSEli Friedman   // Instead, create a null constant and copy it to the destination.
366fde961dbSEli Friedman   // TODO: there are other patterns besides zero that we can usefully memset,
367fde961dbSEli Friedman   // like -1, which happens to be the pattern used by member-pointers.
368fde961dbSEli Friedman   // TODO: isZeroInitializable can be over-conservative in the case where a
369fde961dbSEli Friedman   // virtual base contains a member pointer.
370fde961dbSEli Friedman   if (!CGF.CGM.getTypes().isZeroInitializable(Base)) {
371fde961dbSEli Friedman     llvm::Constant *NullConstant = CGF.CGM.EmitNullConstantForBase(Base);
372fde961dbSEli Friedman 
373fde961dbSEli Friedman     llvm::GlobalVariable *NullVariable =
374fde961dbSEli Friedman       new llvm::GlobalVariable(CGF.CGM.getModule(), NullConstant->getType(),
375fde961dbSEli Friedman                                /*isConstant=*/true,
376fde961dbSEli Friedman                                llvm::GlobalVariable::PrivateLinkage,
377fde961dbSEli Friedman                                NullConstant, Twine());
378fde961dbSEli Friedman     NullVariable->setAlignment(Align.getQuantity());
379fde961dbSEli Friedman     llvm::Value *SrcPtr = CGF.EmitCastToVoidPtr(NullVariable);
380fde961dbSEli Friedman 
381fde961dbSEli Friedman     // Get and call the appropriate llvm.memcpy overload.
382fde961dbSEli Friedman     CGF.Builder.CreateMemCpy(DestPtr, SrcPtr, SizeVal, Align.getQuantity());
383fde961dbSEli Friedman     return;
384fde961dbSEli Friedman   }
385fde961dbSEli Friedman 
386fde961dbSEli Friedman   // Otherwise, just memset the whole thing to zero.  This is legal
387fde961dbSEli Friedman   // because in LLVM, all default initializers (other than the ones we just
388fde961dbSEli Friedman   // handled above) are guaranteed to have a bit pattern of all zeros.
389fde961dbSEli Friedman   CGF.Builder.CreateMemSet(DestPtr, CGF.Builder.getInt8(0), SizeVal,
390fde961dbSEli Friedman                            Align.getQuantity());
391fde961dbSEli Friedman }
392fde961dbSEli Friedman 
39327da15baSAnders Carlsson void
3947a626f63SJohn McCall CodeGenFunction::EmitCXXConstructExpr(const CXXConstructExpr *E,
3957a626f63SJohn McCall                                       AggValueSlot Dest) {
3967a626f63SJohn McCall   assert(!Dest.isIgnored() && "Must have a destination!");
39727da15baSAnders Carlsson   const CXXConstructorDecl *CD = E->getConstructor();
398630c76efSDouglas Gregor 
399630c76efSDouglas Gregor   // If we require zero initialization before (or instead of) calling the
400630c76efSDouglas Gregor   // constructor, as can be the case with a non-user-provided default
40103535265SArgyrios Kyrtzidis   // constructor, emit the zero initialization now, unless destination is
40203535265SArgyrios Kyrtzidis   // already zeroed.
403fde961dbSEli Friedman   if (E->requiresZeroInitialization() && !Dest.isZeroed()) {
404fde961dbSEli Friedman     switch (E->getConstructionKind()) {
405fde961dbSEli Friedman     case CXXConstructExpr::CK_Delegating:
406fde961dbSEli Friedman     case CXXConstructExpr::CK_Complete:
4077a626f63SJohn McCall       EmitNullInitialization(Dest.getAddr(), E->getType());
408fde961dbSEli Friedman       break;
409fde961dbSEli Friedman     case CXXConstructExpr::CK_VirtualBase:
410fde961dbSEli Friedman     case CXXConstructExpr::CK_NonVirtualBase:
411fde961dbSEli Friedman       EmitNullBaseClassInitialization(*this, Dest.getAddr(), CD->getParent());
412fde961dbSEli Friedman       break;
413fde961dbSEli Friedman     }
414fde961dbSEli Friedman   }
415630c76efSDouglas Gregor 
416630c76efSDouglas Gregor   // If this is a call to a trivial default constructor, do nothing.
417630c76efSDouglas Gregor   if (CD->isTrivial() && CD->isDefaultConstructor())
41827da15baSAnders Carlsson     return;
419630c76efSDouglas Gregor 
4208ea46b66SJohn McCall   // Elide the constructor if we're constructing from a temporary.
4218ea46b66SJohn McCall   // The temporary check is required because Sema sets this on NRVO
4228ea46b66SJohn McCall   // returns.
4239c6890a7SRichard Smith   if (getLangOpts().ElideConstructors && E->isElidable()) {
4248ea46b66SJohn McCall     assert(getContext().hasSameUnqualifiedType(E->getType(),
4258ea46b66SJohn McCall                                                E->getArg(0)->getType()));
4267a626f63SJohn McCall     if (E->getArg(0)->isTemporaryObject(getContext(), CD->getParent())) {
4277a626f63SJohn McCall       EmitAggExpr(E->getArg(0), Dest);
42827da15baSAnders Carlsson       return;
42927da15baSAnders Carlsson     }
430222cf0efSDouglas Gregor   }
431630c76efSDouglas Gregor 
432f677a8e9SJohn McCall   if (const ConstantArrayType *arrayType
433f677a8e9SJohn McCall         = getContext().getAsConstantArrayType(E->getType())) {
43470b9c01bSAlexey Samsonov     EmitCXXAggrConstructorCall(CD, arrayType, Dest.getAddr(), E);
435f677a8e9SJohn McCall   } else {
436bceca20aSCameron Esfahani     CXXCtorType Type = Ctor_Complete;
437271c3681SAlexis Hunt     bool ForVirtualBase = false;
43861535005SDouglas Gregor     bool Delegating = false;
439271c3681SAlexis Hunt 
440271c3681SAlexis Hunt     switch (E->getConstructionKind()) {
441271c3681SAlexis Hunt      case CXXConstructExpr::CK_Delegating:
44261bc1737SAlexis Hunt       // We should be emitting a constructor; GlobalDecl will assert this
44361bc1737SAlexis Hunt       Type = CurGD.getCtorType();
44461535005SDouglas Gregor       Delegating = true;
445271c3681SAlexis Hunt       break;
44661bc1737SAlexis Hunt 
447271c3681SAlexis Hunt      case CXXConstructExpr::CK_Complete:
448271c3681SAlexis Hunt       Type = Ctor_Complete;
449271c3681SAlexis Hunt       break;
450271c3681SAlexis Hunt 
451271c3681SAlexis Hunt      case CXXConstructExpr::CK_VirtualBase:
452271c3681SAlexis Hunt       ForVirtualBase = true;
453271c3681SAlexis Hunt       // fall-through
454271c3681SAlexis Hunt 
455271c3681SAlexis Hunt      case CXXConstructExpr::CK_NonVirtualBase:
456271c3681SAlexis Hunt       Type = Ctor_Base;
457271c3681SAlexis Hunt     }
458e11f9ce9SAnders Carlsson 
45927da15baSAnders Carlsson     // Call the constructor.
46061535005SDouglas Gregor     EmitCXXConstructorCall(CD, Type, ForVirtualBase, Delegating, Dest.getAddr(),
46170b9c01bSAlexey Samsonov                            E);
46227da15baSAnders Carlsson   }
463e11f9ce9SAnders Carlsson }
46427da15baSAnders Carlsson 
465e988bdacSFariborz Jahanian void
466e988bdacSFariborz Jahanian CodeGenFunction::EmitSynthesizedCXXCopyCtor(llvm::Value *Dest,
467e988bdacSFariborz Jahanian                                             llvm::Value *Src,
46850198098SFariborz Jahanian                                             const Expr *Exp) {
4695d413781SJohn McCall   if (const ExprWithCleanups *E = dyn_cast<ExprWithCleanups>(Exp))
470e988bdacSFariborz Jahanian     Exp = E->getSubExpr();
471e988bdacSFariborz Jahanian   assert(isa<CXXConstructExpr>(Exp) &&
472e988bdacSFariborz Jahanian          "EmitSynthesizedCXXCopyCtor - unknown copy ctor expr");
473e988bdacSFariborz Jahanian   const CXXConstructExpr* E = cast<CXXConstructExpr>(Exp);
474e988bdacSFariborz Jahanian   const CXXConstructorDecl *CD = E->getConstructor();
475e988bdacSFariborz Jahanian   RunCleanupsScope Scope(*this);
476e988bdacSFariborz Jahanian 
477e988bdacSFariborz Jahanian   // If we require zero initialization before (or instead of) calling the
478e988bdacSFariborz Jahanian   // constructor, as can be the case with a non-user-provided default
479e988bdacSFariborz Jahanian   // constructor, emit the zero initialization now.
480e988bdacSFariborz Jahanian   // FIXME. Do I still need this for a copy ctor synthesis?
481e988bdacSFariborz Jahanian   if (E->requiresZeroInitialization())
482e988bdacSFariborz Jahanian     EmitNullInitialization(Dest, E->getType());
483e988bdacSFariborz Jahanian 
48499da11cfSChandler Carruth   assert(!getContext().getAsConstantArrayType(E->getType())
48599da11cfSChandler Carruth          && "EmitSynthesizedCXXCopyCtor - Copied-in Array");
486525bf650SAlexey Samsonov   EmitSynthesizedCXXCopyCtorCall(CD, Dest, Src, E);
487e988bdacSFariborz Jahanian }
488e988bdacSFariborz Jahanian 
4898ed55a54SJohn McCall static CharUnits CalculateCookiePadding(CodeGenFunction &CGF,
4908ed55a54SJohn McCall                                         const CXXNewExpr *E) {
49121122cf6SAnders Carlsson   if (!E->isArray())
4923eb55cfeSKen Dyck     return CharUnits::Zero();
49321122cf6SAnders Carlsson 
4947ec4b434SJohn McCall   // No cookie is required if the operator new[] being used is the
4957ec4b434SJohn McCall   // reserved placement operator new[].
4967ec4b434SJohn McCall   if (E->getOperatorNew()->isReservedGlobalPlacementOperator())
4973eb55cfeSKen Dyck     return CharUnits::Zero();
498399f499fSAnders Carlsson 
499284c48ffSJohn McCall   return CGF.CGM.getCXXABI().GetArrayCookieSize(E);
50059486a2dSAnders Carlsson }
50159486a2dSAnders Carlsson 
502036f2f6bSJohn McCall static llvm::Value *EmitCXXNewAllocSize(CodeGenFunction &CGF,
503036f2f6bSJohn McCall                                         const CXXNewExpr *e,
504f862eb6aSSebastian Redl                                         unsigned minElements,
505036f2f6bSJohn McCall                                         llvm::Value *&numElements,
506036f2f6bSJohn McCall                                         llvm::Value *&sizeWithoutCookie) {
507036f2f6bSJohn McCall   QualType type = e->getAllocatedType();
50859486a2dSAnders Carlsson 
509036f2f6bSJohn McCall   if (!e->isArray()) {
510036f2f6bSJohn McCall     CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
511036f2f6bSJohn McCall     sizeWithoutCookie
512036f2f6bSJohn McCall       = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity());
513036f2f6bSJohn McCall     return sizeWithoutCookie;
51405fc5be3SDouglas Gregor   }
51559486a2dSAnders Carlsson 
516036f2f6bSJohn McCall   // The width of size_t.
517036f2f6bSJohn McCall   unsigned sizeWidth = CGF.SizeTy->getBitWidth();
518036f2f6bSJohn McCall 
5198ed55a54SJohn McCall   // Figure out the cookie size.
520036f2f6bSJohn McCall   llvm::APInt cookieSize(sizeWidth,
521036f2f6bSJohn McCall                          CalculateCookiePadding(CGF, e).getQuantity());
5228ed55a54SJohn McCall 
52359486a2dSAnders Carlsson   // Emit the array size expression.
5247648fb46SArgyrios Kyrtzidis   // We multiply the size of all dimensions for NumElements.
5257648fb46SArgyrios Kyrtzidis   // e.g for 'int[2][3]', ElemType is 'int' and NumElements is 6.
526036f2f6bSJohn McCall   numElements = CGF.EmitScalarExpr(e->getArraySize());
527036f2f6bSJohn McCall   assert(isa<llvm::IntegerType>(numElements->getType()));
5288ed55a54SJohn McCall 
529036f2f6bSJohn McCall   // The number of elements can be have an arbitrary integer type;
530036f2f6bSJohn McCall   // essentially, we need to multiply it by a constant factor, add a
531036f2f6bSJohn McCall   // cookie size, and verify that the result is representable as a
532036f2f6bSJohn McCall   // size_t.  That's just a gloss, though, and it's wrong in one
533036f2f6bSJohn McCall   // important way: if the count is negative, it's an error even if
534036f2f6bSJohn McCall   // the cookie size would bring the total size >= 0.
5356ab2fa8fSDouglas Gregor   bool isSigned
5366ab2fa8fSDouglas Gregor     = e->getArraySize()->getType()->isSignedIntegerOrEnumerationType();
5372192fe50SChris Lattner   llvm::IntegerType *numElementsType
538036f2f6bSJohn McCall     = cast<llvm::IntegerType>(numElements->getType());
539036f2f6bSJohn McCall   unsigned numElementsWidth = numElementsType->getBitWidth();
540036f2f6bSJohn McCall 
541036f2f6bSJohn McCall   // Compute the constant factor.
542036f2f6bSJohn McCall   llvm::APInt arraySizeMultiplier(sizeWidth, 1);
5437648fb46SArgyrios Kyrtzidis   while (const ConstantArrayType *CAT
544036f2f6bSJohn McCall              = CGF.getContext().getAsConstantArrayType(type)) {
545036f2f6bSJohn McCall     type = CAT->getElementType();
546036f2f6bSJohn McCall     arraySizeMultiplier *= CAT->getSize();
5477648fb46SArgyrios Kyrtzidis   }
54859486a2dSAnders Carlsson 
549036f2f6bSJohn McCall   CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type);
550036f2f6bSJohn McCall   llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity());
551036f2f6bSJohn McCall   typeSizeMultiplier *= arraySizeMultiplier;
552036f2f6bSJohn McCall 
553036f2f6bSJohn McCall   // This will be a size_t.
554036f2f6bSJohn McCall   llvm::Value *size;
55532ac583dSChris Lattner 
55632ac583dSChris Lattner   // If someone is doing 'new int[42]' there is no need to do a dynamic check.
55732ac583dSChris Lattner   // Don't bloat the -O0 code.
558036f2f6bSJohn McCall   if (llvm::ConstantInt *numElementsC =
559036f2f6bSJohn McCall         dyn_cast<llvm::ConstantInt>(numElements)) {
560036f2f6bSJohn McCall     const llvm::APInt &count = numElementsC->getValue();
56132ac583dSChris Lattner 
562036f2f6bSJohn McCall     bool hasAnyOverflow = false;
56332ac583dSChris Lattner 
564036f2f6bSJohn McCall     // If 'count' was a negative number, it's an overflow.
565036f2f6bSJohn McCall     if (isSigned && count.isNegative())
566036f2f6bSJohn McCall       hasAnyOverflow = true;
5678ed55a54SJohn McCall 
568036f2f6bSJohn McCall     // We want to do all this arithmetic in size_t.  If numElements is
569036f2f6bSJohn McCall     // wider than that, check whether it's already too big, and if so,
570036f2f6bSJohn McCall     // overflow.
571036f2f6bSJohn McCall     else if (numElementsWidth > sizeWidth &&
572036f2f6bSJohn McCall              numElementsWidth - sizeWidth > count.countLeadingZeros())
573036f2f6bSJohn McCall       hasAnyOverflow = true;
574036f2f6bSJohn McCall 
575036f2f6bSJohn McCall     // Okay, compute a count at the right width.
576036f2f6bSJohn McCall     llvm::APInt adjustedCount = count.zextOrTrunc(sizeWidth);
577036f2f6bSJohn McCall 
578f862eb6aSSebastian Redl     // If there is a brace-initializer, we cannot allocate fewer elements than
579f862eb6aSSebastian Redl     // there are initializers. If we do, that's treated like an overflow.
580f862eb6aSSebastian Redl     if (adjustedCount.ult(minElements))
581f862eb6aSSebastian Redl       hasAnyOverflow = true;
582f862eb6aSSebastian Redl 
583036f2f6bSJohn McCall     // Scale numElements by that.  This might overflow, but we don't
584036f2f6bSJohn McCall     // care because it only overflows if allocationSize does, too, and
585036f2f6bSJohn McCall     // if that overflows then we shouldn't use this.
586036f2f6bSJohn McCall     numElements = llvm::ConstantInt::get(CGF.SizeTy,
587036f2f6bSJohn McCall                                          adjustedCount * arraySizeMultiplier);
588036f2f6bSJohn McCall 
589036f2f6bSJohn McCall     // Compute the size before cookie, and track whether it overflowed.
590036f2f6bSJohn McCall     bool overflow;
591036f2f6bSJohn McCall     llvm::APInt allocationSize
592036f2f6bSJohn McCall       = adjustedCount.umul_ov(typeSizeMultiplier, overflow);
593036f2f6bSJohn McCall     hasAnyOverflow |= overflow;
594036f2f6bSJohn McCall 
595036f2f6bSJohn McCall     // Add in the cookie, and check whether it's overflowed.
596036f2f6bSJohn McCall     if (cookieSize != 0) {
597036f2f6bSJohn McCall       // Save the current size without a cookie.  This shouldn't be
598036f2f6bSJohn McCall       // used if there was overflow.
599036f2f6bSJohn McCall       sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
600036f2f6bSJohn McCall 
601036f2f6bSJohn McCall       allocationSize = allocationSize.uadd_ov(cookieSize, overflow);
602036f2f6bSJohn McCall       hasAnyOverflow |= overflow;
6038ed55a54SJohn McCall     }
6048ed55a54SJohn McCall 
605036f2f6bSJohn McCall     // On overflow, produce a -1 so operator new will fail.
606455f42c9SAaron Ballman     if (hasAnyOverflow) {
607455f42c9SAaron Ballman       size = llvm::Constant::getAllOnesValue(CGF.SizeTy);
608455f42c9SAaron Ballman     } else {
609036f2f6bSJohn McCall       size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize);
610455f42c9SAaron Ballman     }
61132ac583dSChris Lattner 
612036f2f6bSJohn McCall   // Otherwise, we might need to use the overflow intrinsics.
6138ed55a54SJohn McCall   } else {
614f862eb6aSSebastian Redl     // There are up to five conditions we need to test for:
615036f2f6bSJohn McCall     // 1) if isSigned, we need to check whether numElements is negative;
616036f2f6bSJohn McCall     // 2) if numElementsWidth > sizeWidth, we need to check whether
617036f2f6bSJohn McCall     //   numElements is larger than something representable in size_t;
618f862eb6aSSebastian Redl     // 3) if minElements > 0, we need to check whether numElements is smaller
619f862eb6aSSebastian Redl     //    than that.
620f862eb6aSSebastian Redl     // 4) we need to compute
621036f2f6bSJohn McCall     //      sizeWithoutCookie := numElements * typeSizeMultiplier
622036f2f6bSJohn McCall     //    and check whether it overflows; and
623f862eb6aSSebastian Redl     // 5) if we need a cookie, we need to compute
624036f2f6bSJohn McCall     //      size := sizeWithoutCookie + cookieSize
625036f2f6bSJohn McCall     //    and check whether it overflows.
6268ed55a54SJohn McCall 
6278a13c418SCraig Topper     llvm::Value *hasOverflow = nullptr;
6288ed55a54SJohn McCall 
629036f2f6bSJohn McCall     // If numElementsWidth > sizeWidth, then one way or another, we're
630036f2f6bSJohn McCall     // going to have to do a comparison for (2), and this happens to
631036f2f6bSJohn McCall     // take care of (1), too.
632036f2f6bSJohn McCall     if (numElementsWidth > sizeWidth) {
633036f2f6bSJohn McCall       llvm::APInt threshold(numElementsWidth, 1);
634036f2f6bSJohn McCall       threshold <<= sizeWidth;
6358ed55a54SJohn McCall 
636036f2f6bSJohn McCall       llvm::Value *thresholdV
637036f2f6bSJohn McCall         = llvm::ConstantInt::get(numElementsType, threshold);
638036f2f6bSJohn McCall 
639036f2f6bSJohn McCall       hasOverflow = CGF.Builder.CreateICmpUGE(numElements, thresholdV);
640036f2f6bSJohn McCall       numElements = CGF.Builder.CreateTrunc(numElements, CGF.SizeTy);
641036f2f6bSJohn McCall 
642036f2f6bSJohn McCall     // Otherwise, if we're signed, we want to sext up to size_t.
643036f2f6bSJohn McCall     } else if (isSigned) {
644036f2f6bSJohn McCall       if (numElementsWidth < sizeWidth)
645036f2f6bSJohn McCall         numElements = CGF.Builder.CreateSExt(numElements, CGF.SizeTy);
646036f2f6bSJohn McCall 
647036f2f6bSJohn McCall       // If there's a non-1 type size multiplier, then we can do the
648036f2f6bSJohn McCall       // signedness check at the same time as we do the multiply
649036f2f6bSJohn McCall       // because a negative number times anything will cause an
650f862eb6aSSebastian Redl       // unsigned overflow.  Otherwise, we have to do it here. But at least
651f862eb6aSSebastian Redl       // in this case, we can subsume the >= minElements check.
652036f2f6bSJohn McCall       if (typeSizeMultiplier == 1)
653036f2f6bSJohn McCall         hasOverflow = CGF.Builder.CreateICmpSLT(numElements,
654f862eb6aSSebastian Redl                               llvm::ConstantInt::get(CGF.SizeTy, minElements));
655036f2f6bSJohn McCall 
656036f2f6bSJohn McCall     // Otherwise, zext up to size_t if necessary.
657036f2f6bSJohn McCall     } else if (numElementsWidth < sizeWidth) {
658036f2f6bSJohn McCall       numElements = CGF.Builder.CreateZExt(numElements, CGF.SizeTy);
659036f2f6bSJohn McCall     }
660036f2f6bSJohn McCall 
661036f2f6bSJohn McCall     assert(numElements->getType() == CGF.SizeTy);
662036f2f6bSJohn McCall 
663f862eb6aSSebastian Redl     if (minElements) {
664f862eb6aSSebastian Redl       // Don't allow allocation of fewer elements than we have initializers.
665f862eb6aSSebastian Redl       if (!hasOverflow) {
666f862eb6aSSebastian Redl         hasOverflow = CGF.Builder.CreateICmpULT(numElements,
667f862eb6aSSebastian Redl                               llvm::ConstantInt::get(CGF.SizeTy, minElements));
668f862eb6aSSebastian Redl       } else if (numElementsWidth > sizeWidth) {
669f862eb6aSSebastian Redl         // The other existing overflow subsumes this check.
670f862eb6aSSebastian Redl         // We do an unsigned comparison, since any signed value < -1 is
671f862eb6aSSebastian Redl         // taken care of either above or below.
672f862eb6aSSebastian Redl         hasOverflow = CGF.Builder.CreateOr(hasOverflow,
673f862eb6aSSebastian Redl                           CGF.Builder.CreateICmpULT(numElements,
674f862eb6aSSebastian Redl                               llvm::ConstantInt::get(CGF.SizeTy, minElements)));
675f862eb6aSSebastian Redl       }
676f862eb6aSSebastian Redl     }
677f862eb6aSSebastian Redl 
678036f2f6bSJohn McCall     size = numElements;
679036f2f6bSJohn McCall 
680036f2f6bSJohn McCall     // Multiply by the type size if necessary.  This multiplier
681036f2f6bSJohn McCall     // includes all the factors for nested arrays.
6828ed55a54SJohn McCall     //
683036f2f6bSJohn McCall     // This step also causes numElements to be scaled up by the
684036f2f6bSJohn McCall     // nested-array factor if necessary.  Overflow on this computation
685036f2f6bSJohn McCall     // can be ignored because the result shouldn't be used if
686036f2f6bSJohn McCall     // allocation fails.
687036f2f6bSJohn McCall     if (typeSizeMultiplier != 1) {
688036f2f6bSJohn McCall       llvm::Value *umul_with_overflow
6898d375cefSBenjamin Kramer         = CGF.CGM.getIntrinsic(llvm::Intrinsic::umul_with_overflow, CGF.SizeTy);
6908ed55a54SJohn McCall 
691036f2f6bSJohn McCall       llvm::Value *tsmV =
692036f2f6bSJohn McCall         llvm::ConstantInt::get(CGF.SizeTy, typeSizeMultiplier);
693036f2f6bSJohn McCall       llvm::Value *result =
69443f9bb73SDavid Blaikie           CGF.Builder.CreateCall(umul_with_overflow, {size, tsmV});
6958ed55a54SJohn McCall 
696036f2f6bSJohn McCall       llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
697036f2f6bSJohn McCall       if (hasOverflow)
698036f2f6bSJohn McCall         hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
6998ed55a54SJohn McCall       else
700036f2f6bSJohn McCall         hasOverflow = overflowed;
70159486a2dSAnders Carlsson 
702036f2f6bSJohn McCall       size = CGF.Builder.CreateExtractValue(result, 0);
703036f2f6bSJohn McCall 
704036f2f6bSJohn McCall       // Also scale up numElements by the array size multiplier.
705036f2f6bSJohn McCall       if (arraySizeMultiplier != 1) {
706036f2f6bSJohn McCall         // If the base element type size is 1, then we can re-use the
707036f2f6bSJohn McCall         // multiply we just did.
708036f2f6bSJohn McCall         if (typeSize.isOne()) {
709036f2f6bSJohn McCall           assert(arraySizeMultiplier == typeSizeMultiplier);
710036f2f6bSJohn McCall           numElements = size;
711036f2f6bSJohn McCall 
712036f2f6bSJohn McCall         // Otherwise we need a separate multiply.
713036f2f6bSJohn McCall         } else {
714036f2f6bSJohn McCall           llvm::Value *asmV =
715036f2f6bSJohn McCall             llvm::ConstantInt::get(CGF.SizeTy, arraySizeMultiplier);
716036f2f6bSJohn McCall           numElements = CGF.Builder.CreateMul(numElements, asmV);
717036f2f6bSJohn McCall         }
718036f2f6bSJohn McCall       }
719036f2f6bSJohn McCall     } else {
720036f2f6bSJohn McCall       // numElements doesn't need to be scaled.
721036f2f6bSJohn McCall       assert(arraySizeMultiplier == 1);
722036f2f6bSJohn McCall     }
723036f2f6bSJohn McCall 
724036f2f6bSJohn McCall     // Add in the cookie size if necessary.
725036f2f6bSJohn McCall     if (cookieSize != 0) {
726036f2f6bSJohn McCall       sizeWithoutCookie = size;
727036f2f6bSJohn McCall 
728036f2f6bSJohn McCall       llvm::Value *uadd_with_overflow
7298d375cefSBenjamin Kramer         = CGF.CGM.getIntrinsic(llvm::Intrinsic::uadd_with_overflow, CGF.SizeTy);
730036f2f6bSJohn McCall 
731036f2f6bSJohn McCall       llvm::Value *cookieSizeV = llvm::ConstantInt::get(CGF.SizeTy, cookieSize);
732036f2f6bSJohn McCall       llvm::Value *result =
73343f9bb73SDavid Blaikie           CGF.Builder.CreateCall(uadd_with_overflow, {size, cookieSizeV});
734036f2f6bSJohn McCall 
735036f2f6bSJohn McCall       llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1);
736036f2f6bSJohn McCall       if (hasOverflow)
737036f2f6bSJohn McCall         hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed);
738036f2f6bSJohn McCall       else
739036f2f6bSJohn McCall         hasOverflow = overflowed;
740036f2f6bSJohn McCall 
741036f2f6bSJohn McCall       size = CGF.Builder.CreateExtractValue(result, 0);
742036f2f6bSJohn McCall     }
743036f2f6bSJohn McCall 
744036f2f6bSJohn McCall     // If we had any possibility of dynamic overflow, make a select to
745036f2f6bSJohn McCall     // overwrite 'size' with an all-ones value, which should cause
746036f2f6bSJohn McCall     // operator new to throw.
747036f2f6bSJohn McCall     if (hasOverflow)
748455f42c9SAaron Ballman       size = CGF.Builder.CreateSelect(hasOverflow,
749455f42c9SAaron Ballman                                  llvm::Constant::getAllOnesValue(CGF.SizeTy),
750036f2f6bSJohn McCall                                       size);
751036f2f6bSJohn McCall   }
752036f2f6bSJohn McCall 
753036f2f6bSJohn McCall   if (cookieSize == 0)
754036f2f6bSJohn McCall     sizeWithoutCookie = size;
755036f2f6bSJohn McCall   else
756036f2f6bSJohn McCall     assert(sizeWithoutCookie && "didn't set sizeWithoutCookie?");
757036f2f6bSJohn McCall 
758036f2f6bSJohn McCall   return size;
75959486a2dSAnders Carlsson }
76059486a2dSAnders Carlsson 
761f862eb6aSSebastian Redl static void StoreAnyExprIntoOneUnit(CodeGenFunction &CGF, const Expr *Init,
76266e4197fSDavid Blaikie                                     QualType AllocType, llvm::Value *NewPtr) {
7631c96bc5dSRichard Smith   // FIXME: Refactor with EmitExprAsInit.
76438cd36dbSEli Friedman   CharUnits Alignment = CGF.getContext().getTypeAlignInChars(AllocType);
76547fb9508SJohn McCall   switch (CGF.getEvaluationKind(AllocType)) {
76647fb9508SJohn McCall   case TEK_Scalar:
767a2c1124fSDavid Blaikie     CGF.EmitScalarInit(Init, nullptr,
76866e4197fSDavid Blaikie                        CGF.MakeAddrLValue(NewPtr, AllocType, Alignment), false);
76947fb9508SJohn McCall     return;
77047fb9508SJohn McCall   case TEK_Complex:
77147fb9508SJohn McCall     CGF.EmitComplexExprIntoLValue(Init, CGF.MakeAddrLValue(NewPtr, AllocType,
77247fb9508SJohn McCall                                                            Alignment),
77347fb9508SJohn McCall                                   /*isInit*/ true);
77447fb9508SJohn McCall     return;
77547fb9508SJohn McCall   case TEK_Aggregate: {
7767a626f63SJohn McCall     AggValueSlot Slot
777c1d85b93SEli Friedman       = AggValueSlot::forAddr(NewPtr, Alignment, AllocType.getQualifiers(),
7788d6fc958SJohn McCall                               AggValueSlot::IsDestructed,
77946759f4fSJohn McCall                               AggValueSlot::DoesNotNeedGCBarriers,
780615ed1a3SChad Rosier                               AggValueSlot::IsNotAliased);
7817a626f63SJohn McCall     CGF.EmitAggExpr(Init, Slot);
78247fb9508SJohn McCall     return;
7837a626f63SJohn McCall   }
784d5202e09SFariborz Jahanian   }
78547fb9508SJohn McCall   llvm_unreachable("bad evaluation kind");
78647fb9508SJohn McCall }
787d5202e09SFariborz Jahanian 
788fb901c7aSDavid Blaikie void CodeGenFunction::EmitNewArrayInitializer(
789fb901c7aSDavid Blaikie     const CXXNewExpr *E, QualType ElementType, llvm::Type *ElementTy,
790fb901c7aSDavid Blaikie     llvm::Value *BeginPtr, llvm::Value *NumElements,
79106a67e2cSRichard Smith     llvm::Value *AllocSizeWithoutCookie) {
79206a67e2cSRichard Smith   // If we have a type with trivial initialization and no initializer,
79306a67e2cSRichard Smith   // there's nothing to do.
7946047f07eSSebastian Redl   if (!E->hasInitializer())
79506a67e2cSRichard Smith     return;
796b66b08efSFariborz Jahanian 
79706a67e2cSRichard Smith   llvm::Value *CurPtr = BeginPtr;
798d5202e09SFariborz Jahanian 
79906a67e2cSRichard Smith   unsigned InitListElements = 0;
800f862eb6aSSebastian Redl 
801f862eb6aSSebastian Redl   const Expr *Init = E->getInitializer();
80206a67e2cSRichard Smith   llvm::AllocaInst *EndOfInit = nullptr;
80306a67e2cSRichard Smith   QualType::DestructionKind DtorKind = ElementType.isDestructedType();
80406a67e2cSRichard Smith   EHScopeStack::stable_iterator Cleanup;
80506a67e2cSRichard Smith   llvm::Instruction *CleanupDominator = nullptr;
8061c96bc5dSRichard Smith 
807f862eb6aSSebastian Redl   // If the initializer is an initializer list, first do the explicit elements.
808f862eb6aSSebastian Redl   if (const InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) {
80906a67e2cSRichard Smith     InitListElements = ILE->getNumInits();
810f62290a1SChad Rosier 
8111c96bc5dSRichard Smith     // If this is a multi-dimensional array new, we will initialize multiple
8121c96bc5dSRichard Smith     // elements with each init list element.
8131c96bc5dSRichard Smith     QualType AllocType = E->getAllocatedType();
8141c96bc5dSRichard Smith     if (const ConstantArrayType *CAT = dyn_cast_or_null<ConstantArrayType>(
8151c96bc5dSRichard Smith             AllocType->getAsArrayTypeUnsafe())) {
81606a67e2cSRichard Smith       unsigned AS = CurPtr->getType()->getPointerAddressSpace();
817fb901c7aSDavid Blaikie       ElementTy = ConvertTypeForMem(AllocType);
818fb901c7aSDavid Blaikie       llvm::Type *AllocPtrTy = ElementTy->getPointerTo(AS);
81906a67e2cSRichard Smith       CurPtr = Builder.CreateBitCast(CurPtr, AllocPtrTy);
82006a67e2cSRichard Smith       InitListElements *= getContext().getConstantArrayElementCount(CAT);
8211c96bc5dSRichard Smith     }
8221c96bc5dSRichard Smith 
82306a67e2cSRichard Smith     // Enter a partial-destruction Cleanup if necessary.
82406a67e2cSRichard Smith     if (needsEHCleanup(DtorKind)) {
82506a67e2cSRichard Smith       // In principle we could tell the Cleanup where we are more
826f62290a1SChad Rosier       // directly, but the control flow can get so varied here that it
827f62290a1SChad Rosier       // would actually be quite complex.  Therefore we go through an
828f62290a1SChad Rosier       // alloca.
82906a67e2cSRichard Smith       EndOfInit = CreateTempAlloca(BeginPtr->getType(), "array.init.end");
83006a67e2cSRichard Smith       CleanupDominator = Builder.CreateStore(BeginPtr, EndOfInit);
83106a67e2cSRichard Smith       pushIrregularPartialArrayCleanup(BeginPtr, EndOfInit, ElementType,
83206a67e2cSRichard Smith                                        getDestroyer(DtorKind));
83306a67e2cSRichard Smith       Cleanup = EHStack.stable_begin();
834f62290a1SChad Rosier     }
835f62290a1SChad Rosier 
836f862eb6aSSebastian Redl     for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) {
837f62290a1SChad Rosier       // Tell the cleanup that it needs to destroy up to this
838f62290a1SChad Rosier       // element.  TODO: some of these stores can be trivially
839f62290a1SChad Rosier       // observed to be unnecessary.
84006a67e2cSRichard Smith       if (EndOfInit)
84106a67e2cSRichard Smith         Builder.CreateStore(Builder.CreateBitCast(CurPtr, BeginPtr->getType()),
84206a67e2cSRichard Smith                             EndOfInit);
84306a67e2cSRichard Smith       // FIXME: If the last initializer is an incomplete initializer list for
84406a67e2cSRichard Smith       // an array, and we have an array filler, we can fold together the two
84506a67e2cSRichard Smith       // initialization loops.
8461c96bc5dSRichard Smith       StoreAnyExprIntoOneUnit(*this, ILE->getInit(i),
84706a67e2cSRichard Smith                               ILE->getInit(i)->getType(), CurPtr);
848fb901c7aSDavid Blaikie       CurPtr = Builder.CreateConstInBoundsGEP1_32(ElementTy, CurPtr, 1,
849fb901c7aSDavid Blaikie                                                   "array.exp.next");
850f862eb6aSSebastian Redl     }
851f862eb6aSSebastian Redl 
852f862eb6aSSebastian Redl     // The remaining elements are filled with the array filler expression.
853f862eb6aSSebastian Redl     Init = ILE->getArrayFiller();
8541c96bc5dSRichard Smith 
85506a67e2cSRichard Smith     // Extract the initializer for the individual array elements by pulling
85606a67e2cSRichard Smith     // out the array filler from all the nested initializer lists. This avoids
85706a67e2cSRichard Smith     // generating a nested loop for the initialization.
85806a67e2cSRichard Smith     while (Init && Init->getType()->isConstantArrayType()) {
85906a67e2cSRichard Smith       auto *SubILE = dyn_cast<InitListExpr>(Init);
86006a67e2cSRichard Smith       if (!SubILE)
86106a67e2cSRichard Smith         break;
86206a67e2cSRichard Smith       assert(SubILE->getNumInits() == 0 && "explicit inits in array filler?");
86306a67e2cSRichard Smith       Init = SubILE->getArrayFiller();
864f862eb6aSSebastian Redl     }
865f862eb6aSSebastian Redl 
86606a67e2cSRichard Smith     // Switch back to initializing one base element at a time.
86706a67e2cSRichard Smith     CurPtr = Builder.CreateBitCast(CurPtr, BeginPtr->getType());
868f62290a1SChad Rosier   }
869e6c980c4SChandler Carruth 
87006a67e2cSRichard Smith   // Attempt to perform zero-initialization using memset.
87106a67e2cSRichard Smith   auto TryMemsetInitialization = [&]() -> bool {
87206a67e2cSRichard Smith     // FIXME: If the type is a pointer-to-data-member under the Itanium ABI,
87306a67e2cSRichard Smith     // we can initialize with a memset to -1.
87406a67e2cSRichard Smith     if (!CGM.getTypes().isZeroInitializable(ElementType))
87506a67e2cSRichard Smith       return false;
876e6c980c4SChandler Carruth 
87706a67e2cSRichard Smith     // Optimization: since zero initialization will just set the memory
87806a67e2cSRichard Smith     // to all zeroes, generate a single memset to do it in one shot.
87906a67e2cSRichard Smith 
88006a67e2cSRichard Smith     // Subtract out the size of any elements we've already initialized.
88106a67e2cSRichard Smith     auto *RemainingSize = AllocSizeWithoutCookie;
88206a67e2cSRichard Smith     if (InitListElements) {
88306a67e2cSRichard Smith       // We know this can't overflow; we check this when doing the allocation.
88406a67e2cSRichard Smith       auto *InitializedSize = llvm::ConstantInt::get(
88506a67e2cSRichard Smith           RemainingSize->getType(),
88606a67e2cSRichard Smith           getContext().getTypeSizeInChars(ElementType).getQuantity() *
88706a67e2cSRichard Smith               InitListElements);
88806a67e2cSRichard Smith       RemainingSize = Builder.CreateSub(RemainingSize, InitializedSize);
88999210dc9SJohn McCall     }
890d5202e09SFariborz Jahanian 
89106a67e2cSRichard Smith     // Create the memset.
89206a67e2cSRichard Smith     CharUnits Alignment = getContext().getTypeAlignInChars(ElementType);
89306a67e2cSRichard Smith     Builder.CreateMemSet(CurPtr, Builder.getInt8(0), RemainingSize,
894705ba07eSKen Dyck                          Alignment.getQuantity(), false);
89506a67e2cSRichard Smith     return true;
89606a67e2cSRichard Smith   };
89705fc5be3SDouglas Gregor 
898454a7cdfSRichard Smith   // If all elements have already been initialized, skip any further
899454a7cdfSRichard Smith   // initialization.
900454a7cdfSRichard Smith   llvm::ConstantInt *ConstNum = dyn_cast<llvm::ConstantInt>(NumElements);
901454a7cdfSRichard Smith   if (ConstNum && ConstNum->getZExtValue() <= InitListElements) {
902454a7cdfSRichard Smith     // If there was a Cleanup, deactivate it.
903454a7cdfSRichard Smith     if (CleanupDominator)
904454a7cdfSRichard Smith       DeactivateCleanupBlock(Cleanup, CleanupDominator);
905454a7cdfSRichard Smith     return;
906454a7cdfSRichard Smith   }
907454a7cdfSRichard Smith 
908454a7cdfSRichard Smith   assert(Init && "have trailing elements to initialize but no initializer");
909454a7cdfSRichard Smith 
91006a67e2cSRichard Smith   // If this is a constructor call, try to optimize it out, and failing that
91106a67e2cSRichard Smith   // emit a single loop to initialize all remaining elements.
912454a7cdfSRichard Smith   if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init)) {
9136047f07eSSebastian Redl     CXXConstructorDecl *Ctor = CCE->getConstructor();
914d153103cSDouglas Gregor     if (Ctor->isTrivial()) {
91505fc5be3SDouglas Gregor       // If new expression did not specify value-initialization, then there
91605fc5be3SDouglas Gregor       // is no initialization.
9176047f07eSSebastian Redl       if (!CCE->requiresZeroInitialization() || Ctor->getParent()->isEmpty())
91805fc5be3SDouglas Gregor         return;
91905fc5be3SDouglas Gregor 
92006a67e2cSRichard Smith       if (TryMemsetInitialization())
9213a202f60SAnders Carlsson         return;
9223a202f60SAnders Carlsson     }
92305fc5be3SDouglas Gregor 
92406a67e2cSRichard Smith     // Store the new Cleanup position for irregular Cleanups.
92506a67e2cSRichard Smith     //
92606a67e2cSRichard Smith     // FIXME: Share this cleanup with the constructor call emission rather than
92706a67e2cSRichard Smith     // having it create a cleanup of its own.
92806a67e2cSRichard Smith     if (EndOfInit) Builder.CreateStore(CurPtr, EndOfInit);
92906a67e2cSRichard Smith 
93006a67e2cSRichard Smith     // Emit a constructor call loop to initialize the remaining elements.
93106a67e2cSRichard Smith     if (InitListElements)
93206a67e2cSRichard Smith       NumElements = Builder.CreateSub(
93306a67e2cSRichard Smith           NumElements,
93406a67e2cSRichard Smith           llvm::ConstantInt::get(NumElements->getType(), InitListElements));
93570b9c01bSAlexey Samsonov     EmitCXXAggrConstructorCall(Ctor, NumElements, CurPtr, CCE,
93648ddcf2cSEli Friedman                                CCE->requiresZeroInitialization());
93705fc5be3SDouglas Gregor     return;
9386047f07eSSebastian Redl   }
93906a67e2cSRichard Smith 
94006a67e2cSRichard Smith   // If this is value-initialization, we can usually use memset.
94106a67e2cSRichard Smith   ImplicitValueInitExpr IVIE(ElementType);
942454a7cdfSRichard Smith   if (isa<ImplicitValueInitExpr>(Init)) {
94306a67e2cSRichard Smith     if (TryMemsetInitialization())
94406a67e2cSRichard Smith       return;
94506a67e2cSRichard Smith 
94606a67e2cSRichard Smith     // Switch to an ImplicitValueInitExpr for the element type. This handles
94706a67e2cSRichard Smith     // only one case: multidimensional array new of pointers to members. In
94806a67e2cSRichard Smith     // all other cases, we already have an initializer for the array element.
94906a67e2cSRichard Smith     Init = &IVIE;
95006a67e2cSRichard Smith   }
95106a67e2cSRichard Smith 
95206a67e2cSRichard Smith   // At this point we should have found an initializer for the individual
95306a67e2cSRichard Smith   // elements of the array.
95406a67e2cSRichard Smith   assert(getContext().hasSameUnqualifiedType(ElementType, Init->getType()) &&
95506a67e2cSRichard Smith          "got wrong type of element to initialize");
95606a67e2cSRichard Smith 
957454a7cdfSRichard Smith   // If we have an empty initializer list, we can usually use memset.
958454a7cdfSRichard Smith   if (auto *ILE = dyn_cast<InitListExpr>(Init))
959454a7cdfSRichard Smith     if (ILE->getNumInits() == 0 && TryMemsetInitialization())
960d5202e09SFariborz Jahanian       return;
96159486a2dSAnders Carlsson 
962cb77930dSYunzhong Gao   // If we have a struct whose every field is value-initialized, we can
963cb77930dSYunzhong Gao   // usually use memset.
964cb77930dSYunzhong Gao   if (auto *ILE = dyn_cast<InitListExpr>(Init)) {
965cb77930dSYunzhong Gao     if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) {
966cb77930dSYunzhong Gao       if (RType->getDecl()->isStruct()) {
967cb77930dSYunzhong Gao         unsigned NumFields = 0;
968cb77930dSYunzhong Gao         for (auto *Field : RType->getDecl()->fields())
969cb77930dSYunzhong Gao           if (!Field->isUnnamedBitfield())
970cb77930dSYunzhong Gao             ++NumFields;
971cb77930dSYunzhong Gao         if (ILE->getNumInits() == NumFields)
972cb77930dSYunzhong Gao           for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i)
973cb77930dSYunzhong Gao             if (!isa<ImplicitValueInitExpr>(ILE->getInit(i)))
974cb77930dSYunzhong Gao               --NumFields;
975cb77930dSYunzhong Gao         if (ILE->getNumInits() == NumFields && TryMemsetInitialization())
976cb77930dSYunzhong Gao           return;
977cb77930dSYunzhong Gao       }
978cb77930dSYunzhong Gao     }
979cb77930dSYunzhong Gao   }
980cb77930dSYunzhong Gao 
98106a67e2cSRichard Smith   // Create the loop blocks.
98206a67e2cSRichard Smith   llvm::BasicBlock *EntryBB = Builder.GetInsertBlock();
98306a67e2cSRichard Smith   llvm::BasicBlock *LoopBB = createBasicBlock("new.loop");
98406a67e2cSRichard Smith   llvm::BasicBlock *ContBB = createBasicBlock("new.loop.end");
98559486a2dSAnders Carlsson 
98606a67e2cSRichard Smith   // Find the end of the array, hoisted out of the loop.
98706a67e2cSRichard Smith   llvm::Value *EndPtr =
98806a67e2cSRichard Smith     Builder.CreateInBoundsGEP(BeginPtr, NumElements, "array.end");
98906a67e2cSRichard Smith 
99006a67e2cSRichard Smith   // If the number of elements isn't constant, we have to now check if there is
99106a67e2cSRichard Smith   // anything left to initialize.
99206a67e2cSRichard Smith   if (!ConstNum) {
99306a67e2cSRichard Smith     llvm::Value *IsEmpty = Builder.CreateICmpEQ(CurPtr, EndPtr,
99406a67e2cSRichard Smith                                                 "array.isempty");
99506a67e2cSRichard Smith     Builder.CreateCondBr(IsEmpty, ContBB, LoopBB);
99606a67e2cSRichard Smith   }
99706a67e2cSRichard Smith 
99806a67e2cSRichard Smith   // Enter the loop.
99906a67e2cSRichard Smith   EmitBlock(LoopBB);
100006a67e2cSRichard Smith 
100106a67e2cSRichard Smith   // Set up the current-element phi.
100206a67e2cSRichard Smith   llvm::PHINode *CurPtrPhi =
100306a67e2cSRichard Smith     Builder.CreatePHI(CurPtr->getType(), 2, "array.cur");
100406a67e2cSRichard Smith   CurPtrPhi->addIncoming(CurPtr, EntryBB);
100506a67e2cSRichard Smith   CurPtr = CurPtrPhi;
100606a67e2cSRichard Smith 
100706a67e2cSRichard Smith   // Store the new Cleanup position for irregular Cleanups.
100806a67e2cSRichard Smith   if (EndOfInit) Builder.CreateStore(CurPtr, EndOfInit);
100906a67e2cSRichard Smith 
101006a67e2cSRichard Smith   // Enter a partial-destruction Cleanup if necessary.
101106a67e2cSRichard Smith   if (!CleanupDominator && needsEHCleanup(DtorKind)) {
101206a67e2cSRichard Smith     pushRegularPartialArrayCleanup(BeginPtr, CurPtr, ElementType,
101306a67e2cSRichard Smith                                    getDestroyer(DtorKind));
101406a67e2cSRichard Smith     Cleanup = EHStack.stable_begin();
101506a67e2cSRichard Smith     CleanupDominator = Builder.CreateUnreachable();
101606a67e2cSRichard Smith   }
101706a67e2cSRichard Smith 
101806a67e2cSRichard Smith   // Emit the initializer into this element.
101906a67e2cSRichard Smith   StoreAnyExprIntoOneUnit(*this, Init, Init->getType(), CurPtr);
102006a67e2cSRichard Smith 
102106a67e2cSRichard Smith   // Leave the Cleanup if we entered one.
102206a67e2cSRichard Smith   if (CleanupDominator) {
102306a67e2cSRichard Smith     DeactivateCleanupBlock(Cleanup, CleanupDominator);
102406a67e2cSRichard Smith     CleanupDominator->eraseFromParent();
102506a67e2cSRichard Smith   }
102606a67e2cSRichard Smith 
102706a67e2cSRichard Smith   // Advance to the next element by adjusting the pointer type as necessary.
102806a67e2cSRichard Smith   llvm::Value *NextPtr =
1029fb901c7aSDavid Blaikie       Builder.CreateConstInBoundsGEP1_32(ElementTy, CurPtr, 1, "array.next");
103006a67e2cSRichard Smith 
103106a67e2cSRichard Smith   // Check whether we've gotten to the end of the array and, if so,
103206a67e2cSRichard Smith   // exit the loop.
103306a67e2cSRichard Smith   llvm::Value *IsEnd = Builder.CreateICmpEQ(NextPtr, EndPtr, "array.atend");
103406a67e2cSRichard Smith   Builder.CreateCondBr(IsEnd, ContBB, LoopBB);
103506a67e2cSRichard Smith   CurPtrPhi->addIncoming(NextPtr, Builder.GetInsertBlock());
103606a67e2cSRichard Smith 
103706a67e2cSRichard Smith   EmitBlock(ContBB);
103806a67e2cSRichard Smith }
103906a67e2cSRichard Smith 
104006a67e2cSRichard Smith static void EmitNewInitializer(CodeGenFunction &CGF, const CXXNewExpr *E,
1041fb901c7aSDavid Blaikie                                QualType ElementType, llvm::Type *ElementTy,
1042fb901c7aSDavid Blaikie                                llvm::Value *NewPtr, llvm::Value *NumElements,
104306a67e2cSRichard Smith                                llvm::Value *AllocSizeWithoutCookie) {
10449b479666SDavid Blaikie   ApplyDebugLocation DL(CGF, E);
104506a67e2cSRichard Smith   if (E->isArray())
1046fb901c7aSDavid Blaikie     CGF.EmitNewArrayInitializer(E, ElementType, ElementTy, NewPtr, NumElements,
104706a67e2cSRichard Smith                                 AllocSizeWithoutCookie);
104806a67e2cSRichard Smith   else if (const Expr *Init = E->getInitializer())
104966e4197fSDavid Blaikie     StoreAnyExprIntoOneUnit(CGF, Init, E->getAllocatedType(), NewPtr);
105059486a2dSAnders Carlsson }
105159486a2dSAnders Carlsson 
10528d0dc31dSRichard Smith /// Emit a call to an operator new or operator delete function, as implicitly
10538d0dc31dSRichard Smith /// created by new-expressions and delete-expressions.
10548d0dc31dSRichard Smith static RValue EmitNewDeleteCall(CodeGenFunction &CGF,
10558d0dc31dSRichard Smith                                 const FunctionDecl *Callee,
10568d0dc31dSRichard Smith                                 const FunctionProtoType *CalleeType,
10578d0dc31dSRichard Smith                                 const CallArgList &Args) {
10588d0dc31dSRichard Smith   llvm::Instruction *CallOrInvoke;
10591235a8daSRichard Smith   llvm::Value *CalleeAddr = CGF.CGM.GetAddrOfFunction(Callee);
10608d0dc31dSRichard Smith   RValue RV =
1061f770683fSPeter Collingbourne       CGF.EmitCall(CGF.CGM.getTypes().arrangeFreeFunctionCall(
1062f770683fSPeter Collingbourne                        Args, CalleeType, /*chainCall=*/false),
1063f770683fSPeter Collingbourne                    CalleeAddr, ReturnValueSlot(), Args, Callee, &CallOrInvoke);
10648d0dc31dSRichard Smith 
10658d0dc31dSRichard Smith   /// C++1y [expr.new]p10:
10668d0dc31dSRichard Smith   ///   [In a new-expression,] an implementation is allowed to omit a call
10678d0dc31dSRichard Smith   ///   to a replaceable global allocation function.
10688d0dc31dSRichard Smith   ///
10698d0dc31dSRichard Smith   /// We model such elidable calls with the 'builtin' attribute.
10706956d587SRafael Espindola   llvm::Function *Fn = dyn_cast<llvm::Function>(CalleeAddr);
10711235a8daSRichard Smith   if (Callee->isReplaceableGlobalAllocationFunction() &&
10726956d587SRafael Espindola       Fn && Fn->hasFnAttribute(llvm::Attribute::NoBuiltin)) {
10738d0dc31dSRichard Smith     // FIXME: Add addAttribute to CallSite.
10748d0dc31dSRichard Smith     if (llvm::CallInst *CI = dyn_cast<llvm::CallInst>(CallOrInvoke))
10758d0dc31dSRichard Smith       CI->addAttribute(llvm::AttributeSet::FunctionIndex,
10768d0dc31dSRichard Smith                        llvm::Attribute::Builtin);
10778d0dc31dSRichard Smith     else if (llvm::InvokeInst *II = dyn_cast<llvm::InvokeInst>(CallOrInvoke))
10788d0dc31dSRichard Smith       II->addAttribute(llvm::AttributeSet::FunctionIndex,
10798d0dc31dSRichard Smith                        llvm::Attribute::Builtin);
10808d0dc31dSRichard Smith     else
10818d0dc31dSRichard Smith       llvm_unreachable("unexpected kind of call instruction");
10828d0dc31dSRichard Smith   }
10838d0dc31dSRichard Smith 
10848d0dc31dSRichard Smith   return RV;
10858d0dc31dSRichard Smith }
10868d0dc31dSRichard Smith 
1087760520bcSRichard Smith RValue CodeGenFunction::EmitBuiltinNewDeleteCall(const FunctionProtoType *Type,
1088760520bcSRichard Smith                                                  const Expr *Arg,
1089760520bcSRichard Smith                                                  bool IsDelete) {
1090760520bcSRichard Smith   CallArgList Args;
1091760520bcSRichard Smith   const Stmt *ArgS = Arg;
1092*f48ee448SBenjamin Kramer   EmitCallArgs(Args, *Type->param_type_begin(), &ArgS, &ArgS + 1);
1093760520bcSRichard Smith   // Find the allocation or deallocation function that we're calling.
1094760520bcSRichard Smith   ASTContext &Ctx = getContext();
1095760520bcSRichard Smith   DeclarationName Name = Ctx.DeclarationNames
1096760520bcSRichard Smith       .getCXXOperatorName(IsDelete ? OO_Delete : OO_New);
1097760520bcSRichard Smith   for (auto *Decl : Ctx.getTranslationUnitDecl()->lookup(Name))
1098599bed75SRichard Smith     if (auto *FD = dyn_cast<FunctionDecl>(Decl))
1099599bed75SRichard Smith       if (Ctx.hasSameType(FD->getType(), QualType(Type, 0)))
1100760520bcSRichard Smith         return EmitNewDeleteCall(*this, cast<FunctionDecl>(Decl), Type, Args);
1101760520bcSRichard Smith   llvm_unreachable("predeclared global operator new/delete is missing");
1102760520bcSRichard Smith }
1103760520bcSRichard Smith 
1104824c2f53SJohn McCall namespace {
1105824c2f53SJohn McCall   /// A cleanup to call the given 'operator delete' function upon
1106824c2f53SJohn McCall   /// abnormal exit from a new expression.
1107824c2f53SJohn McCall   class CallDeleteDuringNew : public EHScopeStack::Cleanup {
1108824c2f53SJohn McCall     size_t NumPlacementArgs;
1109824c2f53SJohn McCall     const FunctionDecl *OperatorDelete;
1110824c2f53SJohn McCall     llvm::Value *Ptr;
1111824c2f53SJohn McCall     llvm::Value *AllocSize;
1112824c2f53SJohn McCall 
1113824c2f53SJohn McCall     RValue *getPlacementArgs() { return reinterpret_cast<RValue*>(this+1); }
1114824c2f53SJohn McCall 
1115824c2f53SJohn McCall   public:
1116824c2f53SJohn McCall     static size_t getExtraSize(size_t NumPlacementArgs) {
1117824c2f53SJohn McCall       return NumPlacementArgs * sizeof(RValue);
1118824c2f53SJohn McCall     }
1119824c2f53SJohn McCall 
1120824c2f53SJohn McCall     CallDeleteDuringNew(size_t NumPlacementArgs,
1121824c2f53SJohn McCall                         const FunctionDecl *OperatorDelete,
1122824c2f53SJohn McCall                         llvm::Value *Ptr,
1123824c2f53SJohn McCall                         llvm::Value *AllocSize)
1124824c2f53SJohn McCall       : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
1125824c2f53SJohn McCall         Ptr(Ptr), AllocSize(AllocSize) {}
1126824c2f53SJohn McCall 
1127824c2f53SJohn McCall     void setPlacementArg(unsigned I, RValue Arg) {
1128824c2f53SJohn McCall       assert(I < NumPlacementArgs && "index out of range");
1129824c2f53SJohn McCall       getPlacementArgs()[I] = Arg;
1130824c2f53SJohn McCall     }
1131824c2f53SJohn McCall 
11324f12f10dSCraig Topper     void Emit(CodeGenFunction &CGF, Flags flags) override {
1133824c2f53SJohn McCall       const FunctionProtoType *FPT
1134824c2f53SJohn McCall         = OperatorDelete->getType()->getAs<FunctionProtoType>();
11359cacbabdSAlp Toker       assert(FPT->getNumParams() == NumPlacementArgs + 1 ||
11369cacbabdSAlp Toker              (FPT->getNumParams() == 2 && NumPlacementArgs == 0));
1137824c2f53SJohn McCall 
1138824c2f53SJohn McCall       CallArgList DeleteArgs;
1139824c2f53SJohn McCall 
1140824c2f53SJohn McCall       // The first argument is always a void*.
11419cacbabdSAlp Toker       FunctionProtoType::param_type_iterator AI = FPT->param_type_begin();
114243dca6a8SEli Friedman       DeleteArgs.add(RValue::get(Ptr), *AI++);
1143824c2f53SJohn McCall 
1144824c2f53SJohn McCall       // A member 'operator delete' can take an extra 'size_t' argument.
11459cacbabdSAlp Toker       if (FPT->getNumParams() == NumPlacementArgs + 2)
114643dca6a8SEli Friedman         DeleteArgs.add(RValue::get(AllocSize), *AI++);
1147824c2f53SJohn McCall 
1148824c2f53SJohn McCall       // Pass the rest of the arguments, which must match exactly.
1149824c2f53SJohn McCall       for (unsigned I = 0; I != NumPlacementArgs; ++I)
115043dca6a8SEli Friedman         DeleteArgs.add(getPlacementArgs()[I], *AI++);
1151824c2f53SJohn McCall 
1152824c2f53SJohn McCall       // Call 'operator delete'.
11538d0dc31dSRichard Smith       EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs);
1154824c2f53SJohn McCall     }
1155824c2f53SJohn McCall   };
11567f9c92a9SJohn McCall 
11577f9c92a9SJohn McCall   /// A cleanup to call the given 'operator delete' function upon
11587f9c92a9SJohn McCall   /// abnormal exit from a new expression when the new expression is
11597f9c92a9SJohn McCall   /// conditional.
11607f9c92a9SJohn McCall   class CallDeleteDuringConditionalNew : public EHScopeStack::Cleanup {
11617f9c92a9SJohn McCall     size_t NumPlacementArgs;
11627f9c92a9SJohn McCall     const FunctionDecl *OperatorDelete;
1163cb5f77f0SJohn McCall     DominatingValue<RValue>::saved_type Ptr;
1164cb5f77f0SJohn McCall     DominatingValue<RValue>::saved_type AllocSize;
11657f9c92a9SJohn McCall 
1166cb5f77f0SJohn McCall     DominatingValue<RValue>::saved_type *getPlacementArgs() {
1167cb5f77f0SJohn McCall       return reinterpret_cast<DominatingValue<RValue>::saved_type*>(this+1);
11687f9c92a9SJohn McCall     }
11697f9c92a9SJohn McCall 
11707f9c92a9SJohn McCall   public:
11717f9c92a9SJohn McCall     static size_t getExtraSize(size_t NumPlacementArgs) {
1172cb5f77f0SJohn McCall       return NumPlacementArgs * sizeof(DominatingValue<RValue>::saved_type);
11737f9c92a9SJohn McCall     }
11747f9c92a9SJohn McCall 
11757f9c92a9SJohn McCall     CallDeleteDuringConditionalNew(size_t NumPlacementArgs,
11767f9c92a9SJohn McCall                                    const FunctionDecl *OperatorDelete,
1177cb5f77f0SJohn McCall                                    DominatingValue<RValue>::saved_type Ptr,
1178cb5f77f0SJohn McCall                               DominatingValue<RValue>::saved_type AllocSize)
11797f9c92a9SJohn McCall       : NumPlacementArgs(NumPlacementArgs), OperatorDelete(OperatorDelete),
11807f9c92a9SJohn McCall         Ptr(Ptr), AllocSize(AllocSize) {}
11817f9c92a9SJohn McCall 
1182cb5f77f0SJohn McCall     void setPlacementArg(unsigned I, DominatingValue<RValue>::saved_type Arg) {
11837f9c92a9SJohn McCall       assert(I < NumPlacementArgs && "index out of range");
11847f9c92a9SJohn McCall       getPlacementArgs()[I] = Arg;
11857f9c92a9SJohn McCall     }
11867f9c92a9SJohn McCall 
11874f12f10dSCraig Topper     void Emit(CodeGenFunction &CGF, Flags flags) override {
11887f9c92a9SJohn McCall       const FunctionProtoType *FPT
11897f9c92a9SJohn McCall         = OperatorDelete->getType()->getAs<FunctionProtoType>();
11909cacbabdSAlp Toker       assert(FPT->getNumParams() == NumPlacementArgs + 1 ||
11919cacbabdSAlp Toker              (FPT->getNumParams() == 2 && NumPlacementArgs == 0));
11927f9c92a9SJohn McCall 
11937f9c92a9SJohn McCall       CallArgList DeleteArgs;
11947f9c92a9SJohn McCall 
11957f9c92a9SJohn McCall       // The first argument is always a void*.
11969cacbabdSAlp Toker       FunctionProtoType::param_type_iterator AI = FPT->param_type_begin();
119743dca6a8SEli Friedman       DeleteArgs.add(Ptr.restore(CGF), *AI++);
11987f9c92a9SJohn McCall 
11997f9c92a9SJohn McCall       // A member 'operator delete' can take an extra 'size_t' argument.
12009cacbabdSAlp Toker       if (FPT->getNumParams() == NumPlacementArgs + 2) {
1201cb5f77f0SJohn McCall         RValue RV = AllocSize.restore(CGF);
120243dca6a8SEli Friedman         DeleteArgs.add(RV, *AI++);
12037f9c92a9SJohn McCall       }
12047f9c92a9SJohn McCall 
12057f9c92a9SJohn McCall       // Pass the rest of the arguments, which must match exactly.
12067f9c92a9SJohn McCall       for (unsigned I = 0; I != NumPlacementArgs; ++I) {
1207cb5f77f0SJohn McCall         RValue RV = getPlacementArgs()[I].restore(CGF);
120843dca6a8SEli Friedman         DeleteArgs.add(RV, *AI++);
12097f9c92a9SJohn McCall       }
12107f9c92a9SJohn McCall 
12117f9c92a9SJohn McCall       // Call 'operator delete'.
12128d0dc31dSRichard Smith       EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs);
12137f9c92a9SJohn McCall     }
12147f9c92a9SJohn McCall   };
1215ab9db510SAlexander Kornienko }
12167f9c92a9SJohn McCall 
12177f9c92a9SJohn McCall /// Enter a cleanup to call 'operator delete' if the initializer in a
12187f9c92a9SJohn McCall /// new-expression throws.
12197f9c92a9SJohn McCall static void EnterNewDeleteCleanup(CodeGenFunction &CGF,
12207f9c92a9SJohn McCall                                   const CXXNewExpr *E,
12217f9c92a9SJohn McCall                                   llvm::Value *NewPtr,
12227f9c92a9SJohn McCall                                   llvm::Value *AllocSize,
12237f9c92a9SJohn McCall                                   const CallArgList &NewArgs) {
12247f9c92a9SJohn McCall   // If we're not inside a conditional branch, then the cleanup will
12257f9c92a9SJohn McCall   // dominate and we can do the easier (and more efficient) thing.
12267f9c92a9SJohn McCall   if (!CGF.isInConditionalBranch()) {
12277f9c92a9SJohn McCall     CallDeleteDuringNew *Cleanup = CGF.EHStack
12287f9c92a9SJohn McCall       .pushCleanupWithExtra<CallDeleteDuringNew>(EHCleanup,
12297f9c92a9SJohn McCall                                                  E->getNumPlacementArgs(),
12307f9c92a9SJohn McCall                                                  E->getOperatorDelete(),
12317f9c92a9SJohn McCall                                                  NewPtr, AllocSize);
12327f9c92a9SJohn McCall     for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
1233f4258eb4SEli Friedman       Cleanup->setPlacementArg(I, NewArgs[I+1].RV);
12347f9c92a9SJohn McCall 
12357f9c92a9SJohn McCall     return;
12367f9c92a9SJohn McCall   }
12377f9c92a9SJohn McCall 
12387f9c92a9SJohn McCall   // Otherwise, we need to save all this stuff.
1239cb5f77f0SJohn McCall   DominatingValue<RValue>::saved_type SavedNewPtr =
1240cb5f77f0SJohn McCall     DominatingValue<RValue>::save(CGF, RValue::get(NewPtr));
1241cb5f77f0SJohn McCall   DominatingValue<RValue>::saved_type SavedAllocSize =
1242cb5f77f0SJohn McCall     DominatingValue<RValue>::save(CGF, RValue::get(AllocSize));
12437f9c92a9SJohn McCall 
12447f9c92a9SJohn McCall   CallDeleteDuringConditionalNew *Cleanup = CGF.EHStack
1245f4beacd0SJohn McCall     .pushCleanupWithExtra<CallDeleteDuringConditionalNew>(EHCleanup,
12467f9c92a9SJohn McCall                                                  E->getNumPlacementArgs(),
12477f9c92a9SJohn McCall                                                  E->getOperatorDelete(),
12487f9c92a9SJohn McCall                                                  SavedNewPtr,
12497f9c92a9SJohn McCall                                                  SavedAllocSize);
12507f9c92a9SJohn McCall   for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I)
1251cb5f77f0SJohn McCall     Cleanup->setPlacementArg(I,
1252f4258eb4SEli Friedman                      DominatingValue<RValue>::save(CGF, NewArgs[I+1].RV));
12537f9c92a9SJohn McCall 
1254f4beacd0SJohn McCall   CGF.initFullExprCleanup();
1255824c2f53SJohn McCall }
1256824c2f53SJohn McCall 
125759486a2dSAnders Carlsson llvm::Value *CodeGenFunction::EmitCXXNewExpr(const CXXNewExpr *E) {
125875f9498aSJohn McCall   // The element type being allocated.
125975f9498aSJohn McCall   QualType allocType = getContext().getBaseElementType(E->getAllocatedType());
12608ed55a54SJohn McCall 
126175f9498aSJohn McCall   // 1. Build a call to the allocation function.
126275f9498aSJohn McCall   FunctionDecl *allocator = E->getOperatorNew();
126375f9498aSJohn McCall   const FunctionProtoType *allocatorType =
126475f9498aSJohn McCall     allocator->getType()->castAs<FunctionProtoType>();
126559486a2dSAnders Carlsson 
126675f9498aSJohn McCall   CallArgList allocatorArgs;
126759486a2dSAnders Carlsson 
126859486a2dSAnders Carlsson   // The allocation size is the first argument.
126975f9498aSJohn McCall   QualType sizeType = getContext().getSizeType();
127059486a2dSAnders Carlsson 
1271f862eb6aSSebastian Redl   // If there is a brace-initializer, cannot allocate fewer elements than inits.
1272f862eb6aSSebastian Redl   unsigned minElements = 0;
1273f862eb6aSSebastian Redl   if (E->isArray() && E->hasInitializer()) {
1274f862eb6aSSebastian Redl     if (const InitListExpr *ILE = dyn_cast<InitListExpr>(E->getInitializer()))
1275f862eb6aSSebastian Redl       minElements = ILE->getNumInits();
1276f862eb6aSSebastian Redl   }
1277f862eb6aSSebastian Redl 
12788a13c418SCraig Topper   llvm::Value *numElements = nullptr;
12798a13c418SCraig Topper   llvm::Value *allocSizeWithoutCookie = nullptr;
128075f9498aSJohn McCall   llvm::Value *allocSize =
1281f862eb6aSSebastian Redl     EmitCXXNewAllocSize(*this, E, minElements, numElements,
1282f862eb6aSSebastian Redl                         allocSizeWithoutCookie);
128359486a2dSAnders Carlsson 
128443dca6a8SEli Friedman   allocatorArgs.add(RValue::get(allocSize), sizeType);
128559486a2dSAnders Carlsson 
128659486a2dSAnders Carlsson   // We start at 1 here because the first argument (the allocation size)
128759486a2dSAnders Carlsson   // has already been emitted.
1288cbe875a5SAlexey Samsonov   EmitCallArgs(allocatorArgs, allocatorType, E->placement_arg_begin(),
12898e1162c7SAlexey Samsonov                E->placement_arg_end(), /* CalleeDecl */ nullptr,
12908e1162c7SAlexey Samsonov                /*ParamsToSkip*/ 1);
129159486a2dSAnders Carlsson 
12927ec4b434SJohn McCall   // Emit the allocation call.  If the allocator is a global placement
12937ec4b434SJohn McCall   // operator, just "inline" it directly.
12947ec4b434SJohn McCall   RValue RV;
12957ec4b434SJohn McCall   if (allocator->isReservedGlobalPlacementOperator()) {
12967ec4b434SJohn McCall     assert(allocatorArgs.size() == 2);
12977ec4b434SJohn McCall     RV = allocatorArgs[1].RV;
12987ec4b434SJohn McCall     // TODO: kill any unnecessary computations done for the size
12997ec4b434SJohn McCall     // argument.
13007ec4b434SJohn McCall   } else {
13018d0dc31dSRichard Smith     RV = EmitNewDeleteCall(*this, allocator, allocatorType, allocatorArgs);
13027ec4b434SJohn McCall   }
130359486a2dSAnders Carlsson 
130475f9498aSJohn McCall   // Emit a null check on the allocation result if the allocation
130575f9498aSJohn McCall   // function is allowed to return null (because it has a non-throwing
1306902a0238SRichard Smith   // exception spec or is the reserved placement new) and we have an
130775f9498aSJohn McCall   // interesting initializer.
1308902a0238SRichard Smith   bool nullCheck = E->shouldNullCheckAllocation(getContext()) &&
13096047f07eSSebastian Redl     (!allocType.isPODType(getContext()) || E->hasInitializer());
131059486a2dSAnders Carlsson 
13118a13c418SCraig Topper   llvm::BasicBlock *nullCheckBB = nullptr;
13128a13c418SCraig Topper   llvm::BasicBlock *contBB = nullptr;
131359486a2dSAnders Carlsson 
131475f9498aSJohn McCall   llvm::Value *allocation = RV.getScalarVal();
1315ea2fea2aSMicah Villmow   unsigned AS = allocation->getType()->getPointerAddressSpace();
131659486a2dSAnders Carlsson 
1317f7dcf320SJohn McCall   // The null-check means that the initializer is conditionally
1318f7dcf320SJohn McCall   // evaluated.
1319f7dcf320SJohn McCall   ConditionalEvaluation conditional(*this);
1320f7dcf320SJohn McCall 
132175f9498aSJohn McCall   if (nullCheck) {
1322f7dcf320SJohn McCall     conditional.begin(*this);
132375f9498aSJohn McCall 
132475f9498aSJohn McCall     nullCheckBB = Builder.GetInsertBlock();
132575f9498aSJohn McCall     llvm::BasicBlock *notNullBB = createBasicBlock("new.notnull");
132675f9498aSJohn McCall     contBB = createBasicBlock("new.cont");
132775f9498aSJohn McCall 
132875f9498aSJohn McCall     llvm::Value *isNull = Builder.CreateIsNull(allocation, "new.isnull");
132975f9498aSJohn McCall     Builder.CreateCondBr(isNull, contBB, notNullBB);
133075f9498aSJohn McCall     EmitBlock(notNullBB);
133159486a2dSAnders Carlsson   }
133259486a2dSAnders Carlsson 
1333824c2f53SJohn McCall   // If there's an operator delete, enter a cleanup to call it if an
1334824c2f53SJohn McCall   // exception is thrown.
133575f9498aSJohn McCall   EHScopeStack::stable_iterator operatorDeleteCleanup;
13368a13c418SCraig Topper   llvm::Instruction *cleanupDominator = nullptr;
13377ec4b434SJohn McCall   if (E->getOperatorDelete() &&
13387ec4b434SJohn McCall       !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) {
133975f9498aSJohn McCall     EnterNewDeleteCleanup(*this, E, allocation, allocSize, allocatorArgs);
134075f9498aSJohn McCall     operatorDeleteCleanup = EHStack.stable_begin();
1341f4beacd0SJohn McCall     cleanupDominator = Builder.CreateUnreachable();
1342824c2f53SJohn McCall   }
1343824c2f53SJohn McCall 
1344cf9b1f65SEli Friedman   assert((allocSize == allocSizeWithoutCookie) ==
1345cf9b1f65SEli Friedman          CalculateCookiePadding(*this, E).isZero());
1346cf9b1f65SEli Friedman   if (allocSize != allocSizeWithoutCookie) {
1347cf9b1f65SEli Friedman     assert(E->isArray());
1348cf9b1f65SEli Friedman     allocation = CGM.getCXXABI().InitializeArrayCookie(*this, allocation,
1349cf9b1f65SEli Friedman                                                        numElements,
1350cf9b1f65SEli Friedman                                                        E, allocType);
1351cf9b1f65SEli Friedman   }
1352cf9b1f65SEli Friedman 
1353fb901c7aSDavid Blaikie   llvm::Type *elementTy = ConvertTypeForMem(allocType);
1354fb901c7aSDavid Blaikie   llvm::Type *elementPtrTy = elementTy->getPointerTo(AS);
135575f9498aSJohn McCall   llvm::Value *result = Builder.CreateBitCast(allocation, elementPtrTy);
1356824c2f53SJohn McCall 
1357fb901c7aSDavid Blaikie   EmitNewInitializer(*this, E, allocType, elementTy, result, numElements,
135899210dc9SJohn McCall                      allocSizeWithoutCookie);
13598ed55a54SJohn McCall   if (E->isArray()) {
13608ed55a54SJohn McCall     // NewPtr is a pointer to the base element type.  If we're
13618ed55a54SJohn McCall     // allocating an array of arrays, we'll need to cast back to the
13628ed55a54SJohn McCall     // array pointer type.
13632192fe50SChris Lattner     llvm::Type *resultType = ConvertTypeForMem(E->getType());
136475f9498aSJohn McCall     if (result->getType() != resultType)
136575f9498aSJohn McCall       result = Builder.CreateBitCast(result, resultType);
136647b4629bSFariborz Jahanian   }
136759486a2dSAnders Carlsson 
1368824c2f53SJohn McCall   // Deactivate the 'operator delete' cleanup if we finished
1369824c2f53SJohn McCall   // initialization.
1370f4beacd0SJohn McCall   if (operatorDeleteCleanup.isValid()) {
1371f4beacd0SJohn McCall     DeactivateCleanupBlock(operatorDeleteCleanup, cleanupDominator);
1372f4beacd0SJohn McCall     cleanupDominator->eraseFromParent();
1373f4beacd0SJohn McCall   }
1374824c2f53SJohn McCall 
137575f9498aSJohn McCall   if (nullCheck) {
1376f7dcf320SJohn McCall     conditional.end(*this);
1377f7dcf320SJohn McCall 
137875f9498aSJohn McCall     llvm::BasicBlock *notNullBB = Builder.GetInsertBlock();
137975f9498aSJohn McCall     EmitBlock(contBB);
138059486a2dSAnders Carlsson 
138120c0f02cSJay Foad     llvm::PHINode *PHI = Builder.CreatePHI(result->getType(), 2);
138275f9498aSJohn McCall     PHI->addIncoming(result, notNullBB);
138375f9498aSJohn McCall     PHI->addIncoming(llvm::Constant::getNullValue(result->getType()),
138475f9498aSJohn McCall                      nullCheckBB);
138559486a2dSAnders Carlsson 
138675f9498aSJohn McCall     result = PHI;
138759486a2dSAnders Carlsson   }
138859486a2dSAnders Carlsson 
138975f9498aSJohn McCall   return result;
139059486a2dSAnders Carlsson }
139159486a2dSAnders Carlsson 
139259486a2dSAnders Carlsson void CodeGenFunction::EmitDeleteCall(const FunctionDecl *DeleteFD,
139359486a2dSAnders Carlsson                                      llvm::Value *Ptr,
139459486a2dSAnders Carlsson                                      QualType DeleteTy) {
13958ed55a54SJohn McCall   assert(DeleteFD->getOverloadedOperator() == OO_Delete);
13968ed55a54SJohn McCall 
139759486a2dSAnders Carlsson   const FunctionProtoType *DeleteFTy =
139859486a2dSAnders Carlsson     DeleteFD->getType()->getAs<FunctionProtoType>();
139959486a2dSAnders Carlsson 
140059486a2dSAnders Carlsson   CallArgList DeleteArgs;
140159486a2dSAnders Carlsson 
140221122cf6SAnders Carlsson   // Check if we need to pass the size to the delete operator.
14038a13c418SCraig Topper   llvm::Value *Size = nullptr;
140421122cf6SAnders Carlsson   QualType SizeTy;
14059cacbabdSAlp Toker   if (DeleteFTy->getNumParams() == 2) {
14069cacbabdSAlp Toker     SizeTy = DeleteFTy->getParamType(1);
14077df3cbebSKen Dyck     CharUnits DeleteTypeSize = getContext().getTypeSizeInChars(DeleteTy);
14087df3cbebSKen Dyck     Size = llvm::ConstantInt::get(ConvertType(SizeTy),
14097df3cbebSKen Dyck                                   DeleteTypeSize.getQuantity());
141021122cf6SAnders Carlsson   }
141121122cf6SAnders Carlsson 
14129cacbabdSAlp Toker   QualType ArgTy = DeleteFTy->getParamType(0);
141359486a2dSAnders Carlsson   llvm::Value *DeletePtr = Builder.CreateBitCast(Ptr, ConvertType(ArgTy));
141443dca6a8SEli Friedman   DeleteArgs.add(RValue::get(DeletePtr), ArgTy);
141559486a2dSAnders Carlsson 
141621122cf6SAnders Carlsson   if (Size)
141743dca6a8SEli Friedman     DeleteArgs.add(RValue::get(Size), SizeTy);
141859486a2dSAnders Carlsson 
141959486a2dSAnders Carlsson   // Emit the call to delete.
14208d0dc31dSRichard Smith   EmitNewDeleteCall(*this, DeleteFD, DeleteFTy, DeleteArgs);
142159486a2dSAnders Carlsson }
142259486a2dSAnders Carlsson 
14238ed55a54SJohn McCall namespace {
14248ed55a54SJohn McCall   /// Calls the given 'operator delete' on a single object.
14258ed55a54SJohn McCall   struct CallObjectDelete : EHScopeStack::Cleanup {
14268ed55a54SJohn McCall     llvm::Value *Ptr;
14278ed55a54SJohn McCall     const FunctionDecl *OperatorDelete;
14288ed55a54SJohn McCall     QualType ElementType;
14298ed55a54SJohn McCall 
14308ed55a54SJohn McCall     CallObjectDelete(llvm::Value *Ptr,
14318ed55a54SJohn McCall                      const FunctionDecl *OperatorDelete,
14328ed55a54SJohn McCall                      QualType ElementType)
14338ed55a54SJohn McCall       : Ptr(Ptr), OperatorDelete(OperatorDelete), ElementType(ElementType) {}
14348ed55a54SJohn McCall 
14354f12f10dSCraig Topper     void Emit(CodeGenFunction &CGF, Flags flags) override {
14368ed55a54SJohn McCall       CGF.EmitDeleteCall(OperatorDelete, Ptr, ElementType);
14378ed55a54SJohn McCall     }
14388ed55a54SJohn McCall   };
1439ab9db510SAlexander Kornienko }
14408ed55a54SJohn McCall 
14410c0b6d9aSDavid Majnemer void
14420c0b6d9aSDavid Majnemer CodeGenFunction::pushCallObjectDeleteCleanup(const FunctionDecl *OperatorDelete,
14430c0b6d9aSDavid Majnemer                                              llvm::Value *CompletePtr,
14440c0b6d9aSDavid Majnemer                                              QualType ElementType) {
14450c0b6d9aSDavid Majnemer   EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup, CompletePtr,
14460c0b6d9aSDavid Majnemer                                         OperatorDelete, ElementType);
14470c0b6d9aSDavid Majnemer }
14480c0b6d9aSDavid Majnemer 
14498ed55a54SJohn McCall /// Emit the code for deleting a single object.
14508ed55a54SJohn McCall static void EmitObjectDelete(CodeGenFunction &CGF,
14510868137aSDavid Majnemer                              const CXXDeleteExpr *DE,
14528ed55a54SJohn McCall                              llvm::Value *Ptr,
14530868137aSDavid Majnemer                              QualType ElementType) {
14548ed55a54SJohn McCall   // Find the destructor for the type, if applicable.  If the
14558ed55a54SJohn McCall   // destructor is virtual, we'll just emit the vcall and return.
14568a13c418SCraig Topper   const CXXDestructorDecl *Dtor = nullptr;
14578ed55a54SJohn McCall   if (const RecordType *RT = ElementType->getAs<RecordType>()) {
14588ed55a54SJohn McCall     CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl());
1459b23533dbSEli Friedman     if (RD->hasDefinition() && !RD->hasTrivialDestructor()) {
14608ed55a54SJohn McCall       Dtor = RD->getDestructor();
14618ed55a54SJohn McCall 
14628ed55a54SJohn McCall       if (Dtor->isVirtual()) {
14630868137aSDavid Majnemer         CGF.CGM.getCXXABI().emitVirtualObjectDelete(CGF, DE, Ptr, ElementType,
14640868137aSDavid Majnemer                                                     Dtor);
14658ed55a54SJohn McCall         return;
14668ed55a54SJohn McCall       }
14678ed55a54SJohn McCall     }
14688ed55a54SJohn McCall   }
14698ed55a54SJohn McCall 
14708ed55a54SJohn McCall   // Make sure that we call delete even if the dtor throws.
1471e4df6c8dSJohn McCall   // This doesn't have to a conditional cleanup because we're going
1472e4df6c8dSJohn McCall   // to pop it off in a second.
14730868137aSDavid Majnemer   const FunctionDecl *OperatorDelete = DE->getOperatorDelete();
14748ed55a54SJohn McCall   CGF.EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup,
14758ed55a54SJohn McCall                                             Ptr, OperatorDelete, ElementType);
14768ed55a54SJohn McCall 
14778ed55a54SJohn McCall   if (Dtor)
14788ed55a54SJohn McCall     CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete,
147961535005SDouglas Gregor                               /*ForVirtualBase=*/false,
148061535005SDouglas Gregor                               /*Delegating=*/false,
148161535005SDouglas Gregor                               Ptr);
1482bbafb8a7SDavid Blaikie   else if (CGF.getLangOpts().ObjCAutoRefCount &&
148331168b07SJohn McCall            ElementType->isObjCLifetimeType()) {
148431168b07SJohn McCall     switch (ElementType.getObjCLifetime()) {
148531168b07SJohn McCall     case Qualifiers::OCL_None:
148631168b07SJohn McCall     case Qualifiers::OCL_ExplicitNone:
148731168b07SJohn McCall     case Qualifiers::OCL_Autoreleasing:
148831168b07SJohn McCall       break;
148931168b07SJohn McCall 
149031168b07SJohn McCall     case Qualifiers::OCL_Strong: {
149131168b07SJohn McCall       // Load the pointer value.
149231168b07SJohn McCall       llvm::Value *PtrValue = CGF.Builder.CreateLoad(Ptr,
149331168b07SJohn McCall                                              ElementType.isVolatileQualified());
149431168b07SJohn McCall 
1495cdda29c9SJohn McCall       CGF.EmitARCRelease(PtrValue, ARCPreciseLifetime);
149631168b07SJohn McCall       break;
149731168b07SJohn McCall     }
149831168b07SJohn McCall 
149931168b07SJohn McCall     case Qualifiers::OCL_Weak:
150031168b07SJohn McCall       CGF.EmitARCDestroyWeak(Ptr);
150131168b07SJohn McCall       break;
150231168b07SJohn McCall     }
150331168b07SJohn McCall   }
15048ed55a54SJohn McCall 
15058ed55a54SJohn McCall   CGF.PopCleanupBlock();
15068ed55a54SJohn McCall }
15078ed55a54SJohn McCall 
15088ed55a54SJohn McCall namespace {
15098ed55a54SJohn McCall   /// Calls the given 'operator delete' on an array of objects.
15108ed55a54SJohn McCall   struct CallArrayDelete : EHScopeStack::Cleanup {
15118ed55a54SJohn McCall     llvm::Value *Ptr;
15128ed55a54SJohn McCall     const FunctionDecl *OperatorDelete;
15138ed55a54SJohn McCall     llvm::Value *NumElements;
15148ed55a54SJohn McCall     QualType ElementType;
15158ed55a54SJohn McCall     CharUnits CookieSize;
15168ed55a54SJohn McCall 
15178ed55a54SJohn McCall     CallArrayDelete(llvm::Value *Ptr,
15188ed55a54SJohn McCall                     const FunctionDecl *OperatorDelete,
15198ed55a54SJohn McCall                     llvm::Value *NumElements,
15208ed55a54SJohn McCall                     QualType ElementType,
15218ed55a54SJohn McCall                     CharUnits CookieSize)
15228ed55a54SJohn McCall       : Ptr(Ptr), OperatorDelete(OperatorDelete), NumElements(NumElements),
15238ed55a54SJohn McCall         ElementType(ElementType), CookieSize(CookieSize) {}
15248ed55a54SJohn McCall 
15254f12f10dSCraig Topper     void Emit(CodeGenFunction &CGF, Flags flags) override {
15268ed55a54SJohn McCall       const FunctionProtoType *DeleteFTy =
15278ed55a54SJohn McCall         OperatorDelete->getType()->getAs<FunctionProtoType>();
15289cacbabdSAlp Toker       assert(DeleteFTy->getNumParams() == 1 || DeleteFTy->getNumParams() == 2);
15298ed55a54SJohn McCall 
15308ed55a54SJohn McCall       CallArgList Args;
15318ed55a54SJohn McCall 
15328ed55a54SJohn McCall       // Pass the pointer as the first argument.
15339cacbabdSAlp Toker       QualType VoidPtrTy = DeleteFTy->getParamType(0);
15348ed55a54SJohn McCall       llvm::Value *DeletePtr
15358ed55a54SJohn McCall         = CGF.Builder.CreateBitCast(Ptr, CGF.ConvertType(VoidPtrTy));
153643dca6a8SEli Friedman       Args.add(RValue::get(DeletePtr), VoidPtrTy);
15378ed55a54SJohn McCall 
15388ed55a54SJohn McCall       // Pass the original requested size as the second argument.
15399cacbabdSAlp Toker       if (DeleteFTy->getNumParams() == 2) {
15409cacbabdSAlp Toker         QualType size_t = DeleteFTy->getParamType(1);
15412192fe50SChris Lattner         llvm::IntegerType *SizeTy
15428ed55a54SJohn McCall           = cast<llvm::IntegerType>(CGF.ConvertType(size_t));
15438ed55a54SJohn McCall 
15448ed55a54SJohn McCall         CharUnits ElementTypeSize =
15458ed55a54SJohn McCall           CGF.CGM.getContext().getTypeSizeInChars(ElementType);
15468ed55a54SJohn McCall 
15478ed55a54SJohn McCall         // The size of an element, multiplied by the number of elements.
15488ed55a54SJohn McCall         llvm::Value *Size
15498ed55a54SJohn McCall           = llvm::ConstantInt::get(SizeTy, ElementTypeSize.getQuantity());
1550149e6031SDavid Majnemer         if (NumElements)
15518ed55a54SJohn McCall           Size = CGF.Builder.CreateMul(Size, NumElements);
15528ed55a54SJohn McCall 
15538ed55a54SJohn McCall         // Plus the size of the cookie if applicable.
15548ed55a54SJohn McCall         if (!CookieSize.isZero()) {
15558ed55a54SJohn McCall           llvm::Value *CookieSizeV
15568ed55a54SJohn McCall             = llvm::ConstantInt::get(SizeTy, CookieSize.getQuantity());
15578ed55a54SJohn McCall           Size = CGF.Builder.CreateAdd(Size, CookieSizeV);
15588ed55a54SJohn McCall         }
15598ed55a54SJohn McCall 
156043dca6a8SEli Friedman         Args.add(RValue::get(Size), size_t);
15618ed55a54SJohn McCall       }
15628ed55a54SJohn McCall 
15638ed55a54SJohn McCall       // Emit the call to delete.
15648d0dc31dSRichard Smith       EmitNewDeleteCall(CGF, OperatorDelete, DeleteFTy, Args);
15658ed55a54SJohn McCall     }
15668ed55a54SJohn McCall   };
1567ab9db510SAlexander Kornienko }
15688ed55a54SJohn McCall 
15698ed55a54SJohn McCall /// Emit the code for deleting an array of objects.
15708ed55a54SJohn McCall static void EmitArrayDelete(CodeGenFunction &CGF,
1571284c48ffSJohn McCall                             const CXXDeleteExpr *E,
1572ca2c56f2SJohn McCall                             llvm::Value *deletedPtr,
1573ca2c56f2SJohn McCall                             QualType elementType) {
15748a13c418SCraig Topper   llvm::Value *numElements = nullptr;
15758a13c418SCraig Topper   llvm::Value *allocatedPtr = nullptr;
1576ca2c56f2SJohn McCall   CharUnits cookieSize;
1577ca2c56f2SJohn McCall   CGF.CGM.getCXXABI().ReadArrayCookie(CGF, deletedPtr, E, elementType,
1578ca2c56f2SJohn McCall                                       numElements, allocatedPtr, cookieSize);
15798ed55a54SJohn McCall 
1580ca2c56f2SJohn McCall   assert(allocatedPtr && "ReadArrayCookie didn't set allocated pointer");
15818ed55a54SJohn McCall 
15828ed55a54SJohn McCall   // Make sure that we call delete even if one of the dtors throws.
1583ca2c56f2SJohn McCall   const FunctionDecl *operatorDelete = E->getOperatorDelete();
15848ed55a54SJohn McCall   CGF.EHStack.pushCleanup<CallArrayDelete>(NormalAndEHCleanup,
1585ca2c56f2SJohn McCall                                            allocatedPtr, operatorDelete,
1586ca2c56f2SJohn McCall                                            numElements, elementType,
1587ca2c56f2SJohn McCall                                            cookieSize);
15888ed55a54SJohn McCall 
1589ca2c56f2SJohn McCall   // Destroy the elements.
1590ca2c56f2SJohn McCall   if (QualType::DestructionKind dtorKind = elementType.isDestructedType()) {
1591ca2c56f2SJohn McCall     assert(numElements && "no element count for a type with a destructor!");
159231168b07SJohn McCall 
1593ca2c56f2SJohn McCall     llvm::Value *arrayEnd =
1594ca2c56f2SJohn McCall       CGF.Builder.CreateInBoundsGEP(deletedPtr, numElements, "delete.end");
159597eab0a2SJohn McCall 
159697eab0a2SJohn McCall     // Note that it is legal to allocate a zero-length array, and we
159797eab0a2SJohn McCall     // can never fold the check away because the length should always
159897eab0a2SJohn McCall     // come from a cookie.
1599ca2c56f2SJohn McCall     CGF.emitArrayDestroy(deletedPtr, arrayEnd, elementType,
1600ca2c56f2SJohn McCall                          CGF.getDestroyer(dtorKind),
160197eab0a2SJohn McCall                          /*checkZeroLength*/ true,
1602ca2c56f2SJohn McCall                          CGF.needsEHCleanup(dtorKind));
16038ed55a54SJohn McCall   }
16048ed55a54SJohn McCall 
1605ca2c56f2SJohn McCall   // Pop the cleanup block.
16068ed55a54SJohn McCall   CGF.PopCleanupBlock();
16078ed55a54SJohn McCall }
16088ed55a54SJohn McCall 
160959486a2dSAnders Carlsson void CodeGenFunction::EmitCXXDeleteExpr(const CXXDeleteExpr *E) {
161059486a2dSAnders Carlsson   const Expr *Arg = E->getArgument();
161159486a2dSAnders Carlsson   llvm::Value *Ptr = EmitScalarExpr(Arg);
161259486a2dSAnders Carlsson 
161359486a2dSAnders Carlsson   // Null check the pointer.
161459486a2dSAnders Carlsson   llvm::BasicBlock *DeleteNotNull = createBasicBlock("delete.notnull");
161559486a2dSAnders Carlsson   llvm::BasicBlock *DeleteEnd = createBasicBlock("delete.end");
161659486a2dSAnders Carlsson 
161798981b10SAnders Carlsson   llvm::Value *IsNull = Builder.CreateIsNull(Ptr, "isnull");
161859486a2dSAnders Carlsson 
161959486a2dSAnders Carlsson   Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull);
162059486a2dSAnders Carlsson   EmitBlock(DeleteNotNull);
162159486a2dSAnders Carlsson 
16228ed55a54SJohn McCall   // We might be deleting a pointer to array.  If so, GEP down to the
16238ed55a54SJohn McCall   // first non-array element.
16248ed55a54SJohn McCall   // (this assumes that A(*)[3][7] is converted to [3 x [7 x %A]]*)
16258ed55a54SJohn McCall   QualType DeleteTy = Arg->getType()->getAs<PointerType>()->getPointeeType();
16268ed55a54SJohn McCall   if (DeleteTy->isConstantArrayType()) {
16278ed55a54SJohn McCall     llvm::Value *Zero = Builder.getInt32(0);
16280e62c1ccSChris Lattner     SmallVector<llvm::Value*,8> GEP;
162959486a2dSAnders Carlsson 
16308ed55a54SJohn McCall     GEP.push_back(Zero); // point at the outermost array
16318ed55a54SJohn McCall 
16328ed55a54SJohn McCall     // For each layer of array type we're pointing at:
16338ed55a54SJohn McCall     while (const ConstantArrayType *Arr
16348ed55a54SJohn McCall              = getContext().getAsConstantArrayType(DeleteTy)) {
16358ed55a54SJohn McCall       // 1. Unpeel the array type.
16368ed55a54SJohn McCall       DeleteTy = Arr->getElementType();
16378ed55a54SJohn McCall 
16388ed55a54SJohn McCall       // 2. GEP to the first element of the array.
16398ed55a54SJohn McCall       GEP.push_back(Zero);
16408ed55a54SJohn McCall     }
16418ed55a54SJohn McCall 
1642040dd82fSJay Foad     Ptr = Builder.CreateInBoundsGEP(Ptr, GEP, "del.first");
16438ed55a54SJohn McCall   }
16448ed55a54SJohn McCall 
164504f36218SDouglas Gregor   assert(ConvertTypeForMem(DeleteTy) ==
164604f36218SDouglas Gregor          cast<llvm::PointerType>(Ptr->getType())->getElementType());
16478ed55a54SJohn McCall 
16487270ef57SReid Kleckner   if (E->isArrayForm()) {
16497270ef57SReid Kleckner     EmitArrayDelete(*this, E, Ptr, DeleteTy);
16507270ef57SReid Kleckner   } else {
16517270ef57SReid Kleckner     EmitObjectDelete(*this, E, Ptr, DeleteTy);
16527270ef57SReid Kleckner   }
165359486a2dSAnders Carlsson 
165459486a2dSAnders Carlsson   EmitBlock(DeleteEnd);
165559486a2dSAnders Carlsson }
165659486a2dSAnders Carlsson 
16571c3d95ebSDavid Majnemer static bool isGLValueFromPointerDeref(const Expr *E) {
16581c3d95ebSDavid Majnemer   E = E->IgnoreParens();
16591c3d95ebSDavid Majnemer 
16601c3d95ebSDavid Majnemer   if (const auto *CE = dyn_cast<CastExpr>(E)) {
16611c3d95ebSDavid Majnemer     if (!CE->getSubExpr()->isGLValue())
16621c3d95ebSDavid Majnemer       return false;
16631c3d95ebSDavid Majnemer     return isGLValueFromPointerDeref(CE->getSubExpr());
16641c3d95ebSDavid Majnemer   }
16651c3d95ebSDavid Majnemer 
16661c3d95ebSDavid Majnemer   if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E))
16671c3d95ebSDavid Majnemer     return isGLValueFromPointerDeref(OVE->getSourceExpr());
16681c3d95ebSDavid Majnemer 
16691c3d95ebSDavid Majnemer   if (const auto *BO = dyn_cast<BinaryOperator>(E))
16701c3d95ebSDavid Majnemer     if (BO->getOpcode() == BO_Comma)
16711c3d95ebSDavid Majnemer       return isGLValueFromPointerDeref(BO->getRHS());
16721c3d95ebSDavid Majnemer 
16731c3d95ebSDavid Majnemer   if (const auto *ACO = dyn_cast<AbstractConditionalOperator>(E))
16741c3d95ebSDavid Majnemer     return isGLValueFromPointerDeref(ACO->getTrueExpr()) ||
16751c3d95ebSDavid Majnemer            isGLValueFromPointerDeref(ACO->getFalseExpr());
16761c3d95ebSDavid Majnemer 
16771c3d95ebSDavid Majnemer   // C++11 [expr.sub]p1:
16781c3d95ebSDavid Majnemer   //   The expression E1[E2] is identical (by definition) to *((E1)+(E2))
16791c3d95ebSDavid Majnemer   if (isa<ArraySubscriptExpr>(E))
16801c3d95ebSDavid Majnemer     return true;
16811c3d95ebSDavid Majnemer 
16821c3d95ebSDavid Majnemer   if (const auto *UO = dyn_cast<UnaryOperator>(E))
16831c3d95ebSDavid Majnemer     if (UO->getOpcode() == UO_Deref)
16841c3d95ebSDavid Majnemer       return true;
16851c3d95ebSDavid Majnemer 
16861c3d95ebSDavid Majnemer   return false;
16871c3d95ebSDavid Majnemer }
16881c3d95ebSDavid Majnemer 
1689747e301eSWarren Hunt static llvm::Value *EmitTypeidFromVTable(CodeGenFunction &CGF, const Expr *E,
16902192fe50SChris Lattner                                          llvm::Type *StdTypeInfoPtrTy) {
1691940f02d2SAnders Carlsson   // Get the vtable pointer.
1692940f02d2SAnders Carlsson   llvm::Value *ThisPtr = CGF.EmitLValue(E).getAddress();
1693940f02d2SAnders Carlsson 
1694940f02d2SAnders Carlsson   // C++ [expr.typeid]p2:
1695940f02d2SAnders Carlsson   //   If the glvalue expression is obtained by applying the unary * operator to
1696940f02d2SAnders Carlsson   //   a pointer and the pointer is a null pointer value, the typeid expression
1697940f02d2SAnders Carlsson   //   throws the std::bad_typeid exception.
16981c3d95ebSDavid Majnemer   //
16991c3d95ebSDavid Majnemer   // However, this paragraph's intent is not clear.  We choose a very generous
17001c3d95ebSDavid Majnemer   // interpretation which implores us to consider comma operators, conditional
17011c3d95ebSDavid Majnemer   // operators, parentheses and other such constructs.
17021162d25cSDavid Majnemer   QualType SrcRecordTy = E->getType();
17031c3d95ebSDavid Majnemer   if (CGF.CGM.getCXXABI().shouldTypeidBeNullChecked(
17041c3d95ebSDavid Majnemer           isGLValueFromPointerDeref(E), SrcRecordTy)) {
1705940f02d2SAnders Carlsson     llvm::BasicBlock *BadTypeidBlock =
1706940f02d2SAnders Carlsson         CGF.createBasicBlock("typeid.bad_typeid");
17071162d25cSDavid Majnemer     llvm::BasicBlock *EndBlock = CGF.createBasicBlock("typeid.end");
1708940f02d2SAnders Carlsson 
1709940f02d2SAnders Carlsson     llvm::Value *IsNull = CGF.Builder.CreateIsNull(ThisPtr);
1710940f02d2SAnders Carlsson     CGF.Builder.CreateCondBr(IsNull, BadTypeidBlock, EndBlock);
1711940f02d2SAnders Carlsson 
1712940f02d2SAnders Carlsson     CGF.EmitBlock(BadTypeidBlock);
17131162d25cSDavid Majnemer     CGF.CGM.getCXXABI().EmitBadTypeidCall(CGF);
1714940f02d2SAnders Carlsson     CGF.EmitBlock(EndBlock);
1715940f02d2SAnders Carlsson   }
1716940f02d2SAnders Carlsson 
17171162d25cSDavid Majnemer   return CGF.CGM.getCXXABI().EmitTypeid(CGF, SrcRecordTy, ThisPtr,
17181162d25cSDavid Majnemer                                         StdTypeInfoPtrTy);
1719940f02d2SAnders Carlsson }
1720940f02d2SAnders Carlsson 
172159486a2dSAnders Carlsson llvm::Value *CodeGenFunction::EmitCXXTypeidExpr(const CXXTypeidExpr *E) {
17222192fe50SChris Lattner   llvm::Type *StdTypeInfoPtrTy =
1723940f02d2SAnders Carlsson     ConvertType(E->getType())->getPointerTo();
1724fd7dfeb7SAnders Carlsson 
17253f4336cbSAnders Carlsson   if (E->isTypeOperand()) {
17263f4336cbSAnders Carlsson     llvm::Constant *TypeInfo =
1727143c55eaSDavid Majnemer         CGM.GetAddrOfRTTIDescriptor(E->getTypeOperand(getContext()));
1728940f02d2SAnders Carlsson     return Builder.CreateBitCast(TypeInfo, StdTypeInfoPtrTy);
17293f4336cbSAnders Carlsson   }
1730fd7dfeb7SAnders Carlsson 
1731940f02d2SAnders Carlsson   // C++ [expr.typeid]p2:
1732940f02d2SAnders Carlsson   //   When typeid is applied to a glvalue expression whose type is a
1733940f02d2SAnders Carlsson   //   polymorphic class type, the result refers to a std::type_info object
1734940f02d2SAnders Carlsson   //   representing the type of the most derived object (that is, the dynamic
1735940f02d2SAnders Carlsson   //   type) to which the glvalue refers.
1736ef8bf436SRichard Smith   if (E->isPotentiallyEvaluated())
1737940f02d2SAnders Carlsson     return EmitTypeidFromVTable(*this, E->getExprOperand(),
1738940f02d2SAnders Carlsson                                 StdTypeInfoPtrTy);
1739940f02d2SAnders Carlsson 
1740940f02d2SAnders Carlsson   QualType OperandTy = E->getExprOperand()->getType();
1741940f02d2SAnders Carlsson   return Builder.CreateBitCast(CGM.GetAddrOfRTTIDescriptor(OperandTy),
1742940f02d2SAnders Carlsson                                StdTypeInfoPtrTy);
174359486a2dSAnders Carlsson }
174459486a2dSAnders Carlsson 
1745c1c9971cSAnders Carlsson static llvm::Value *EmitDynamicCastToNull(CodeGenFunction &CGF,
1746c1c9971cSAnders Carlsson                                           QualType DestTy) {
17472192fe50SChris Lattner   llvm::Type *DestLTy = CGF.ConvertType(DestTy);
1748c1c9971cSAnders Carlsson   if (DestTy->isPointerType())
1749c1c9971cSAnders Carlsson     return llvm::Constant::getNullValue(DestLTy);
1750c1c9971cSAnders Carlsson 
1751c1c9971cSAnders Carlsson   /// C++ [expr.dynamic.cast]p9:
1752c1c9971cSAnders Carlsson   ///   A failed cast to reference type throws std::bad_cast
17531162d25cSDavid Majnemer   if (!CGF.CGM.getCXXABI().EmitBadCastCall(CGF))
17541162d25cSDavid Majnemer     return nullptr;
1755c1c9971cSAnders Carlsson 
1756c1c9971cSAnders Carlsson   CGF.EmitBlock(CGF.createBasicBlock("dynamic_cast.end"));
1757c1c9971cSAnders Carlsson   return llvm::UndefValue::get(DestLTy);
1758c1c9971cSAnders Carlsson }
1759c1c9971cSAnders Carlsson 
1760882d790fSAnders Carlsson llvm::Value *CodeGenFunction::EmitDynamicCast(llvm::Value *Value,
176159486a2dSAnders Carlsson                                               const CXXDynamicCastExpr *DCE) {
17623f4336cbSAnders Carlsson   QualType DestTy = DCE->getTypeAsWritten();
17633f4336cbSAnders Carlsson 
1764c1c9971cSAnders Carlsson   if (DCE->isAlwaysNull())
17651162d25cSDavid Majnemer     if (llvm::Value *T = EmitDynamicCastToNull(*this, DestTy))
17661162d25cSDavid Majnemer       return T;
1767c1c9971cSAnders Carlsson 
1768c1c9971cSAnders Carlsson   QualType SrcTy = DCE->getSubExpr()->getType();
1769c1c9971cSAnders Carlsson 
17701162d25cSDavid Majnemer   // C++ [expr.dynamic.cast]p7:
17711162d25cSDavid Majnemer   //   If T is "pointer to cv void," then the result is a pointer to the most
17721162d25cSDavid Majnemer   //   derived object pointed to by v.
17731162d25cSDavid Majnemer   const PointerType *DestPTy = DestTy->getAs<PointerType>();
17741162d25cSDavid Majnemer 
17751162d25cSDavid Majnemer   bool isDynamicCastToVoid;
17761162d25cSDavid Majnemer   QualType SrcRecordTy;
17771162d25cSDavid Majnemer   QualType DestRecordTy;
17781162d25cSDavid Majnemer   if (DestPTy) {
17791162d25cSDavid Majnemer     isDynamicCastToVoid = DestPTy->getPointeeType()->isVoidType();
17801162d25cSDavid Majnemer     SrcRecordTy = SrcTy->castAs<PointerType>()->getPointeeType();
17811162d25cSDavid Majnemer     DestRecordTy = DestPTy->getPointeeType();
17821162d25cSDavid Majnemer   } else {
17831162d25cSDavid Majnemer     isDynamicCastToVoid = false;
17841162d25cSDavid Majnemer     SrcRecordTy = SrcTy;
17851162d25cSDavid Majnemer     DestRecordTy = DestTy->castAs<ReferenceType>()->getPointeeType();
17861162d25cSDavid Majnemer   }
17871162d25cSDavid Majnemer 
17881162d25cSDavid Majnemer   assert(SrcRecordTy->isRecordType() && "source type must be a record type!");
17891162d25cSDavid Majnemer 
1790882d790fSAnders Carlsson   // C++ [expr.dynamic.cast]p4:
1791882d790fSAnders Carlsson   //   If the value of v is a null pointer value in the pointer case, the result
1792882d790fSAnders Carlsson   //   is the null pointer value of type T.
17931162d25cSDavid Majnemer   bool ShouldNullCheckSrcValue =
17941162d25cSDavid Majnemer       CGM.getCXXABI().shouldDynamicCastCallBeNullChecked(SrcTy->isPointerType(),
17951162d25cSDavid Majnemer                                                          SrcRecordTy);
179659486a2dSAnders Carlsson 
17978a13c418SCraig Topper   llvm::BasicBlock *CastNull = nullptr;
17988a13c418SCraig Topper   llvm::BasicBlock *CastNotNull = nullptr;
1799882d790fSAnders Carlsson   llvm::BasicBlock *CastEnd = createBasicBlock("dynamic_cast.end");
1800fa8b4955SDouglas Gregor 
1801882d790fSAnders Carlsson   if (ShouldNullCheckSrcValue) {
1802882d790fSAnders Carlsson     CastNull = createBasicBlock("dynamic_cast.null");
1803882d790fSAnders Carlsson     CastNotNull = createBasicBlock("dynamic_cast.notnull");
1804882d790fSAnders Carlsson 
1805882d790fSAnders Carlsson     llvm::Value *IsNull = Builder.CreateIsNull(Value);
1806882d790fSAnders Carlsson     Builder.CreateCondBr(IsNull, CastNull, CastNotNull);
1807882d790fSAnders Carlsson     EmitBlock(CastNotNull);
180859486a2dSAnders Carlsson   }
180959486a2dSAnders Carlsson 
18101162d25cSDavid Majnemer   if (isDynamicCastToVoid) {
18111162d25cSDavid Majnemer     Value = CGM.getCXXABI().EmitDynamicCastToVoid(*this, Value, SrcRecordTy,
18121162d25cSDavid Majnemer                                                   DestTy);
18131162d25cSDavid Majnemer   } else {
18141162d25cSDavid Majnemer     assert(DestRecordTy->isRecordType() &&
18151162d25cSDavid Majnemer            "destination type must be a record type!");
18161162d25cSDavid Majnemer     Value = CGM.getCXXABI().EmitDynamicCastCall(*this, Value, SrcRecordTy,
18171162d25cSDavid Majnemer                                                 DestTy, DestRecordTy, CastEnd);
18181162d25cSDavid Majnemer   }
18193f4336cbSAnders Carlsson 
1820882d790fSAnders Carlsson   if (ShouldNullCheckSrcValue) {
1821882d790fSAnders Carlsson     EmitBranch(CastEnd);
182259486a2dSAnders Carlsson 
1823882d790fSAnders Carlsson     EmitBlock(CastNull);
1824882d790fSAnders Carlsson     EmitBranch(CastEnd);
182559486a2dSAnders Carlsson   }
182659486a2dSAnders Carlsson 
1827882d790fSAnders Carlsson   EmitBlock(CastEnd);
182859486a2dSAnders Carlsson 
1829882d790fSAnders Carlsson   if (ShouldNullCheckSrcValue) {
1830882d790fSAnders Carlsson     llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2);
1831882d790fSAnders Carlsson     PHI->addIncoming(Value, CastNotNull);
1832882d790fSAnders Carlsson     PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), CastNull);
183359486a2dSAnders Carlsson 
1834882d790fSAnders Carlsson     Value = PHI;
183559486a2dSAnders Carlsson   }
183659486a2dSAnders Carlsson 
1837882d790fSAnders Carlsson   return Value;
183859486a2dSAnders Carlsson }
1839c370a7eeSEli Friedman 
1840c370a7eeSEli Friedman void CodeGenFunction::EmitLambdaExpr(const LambdaExpr *E, AggValueSlot Slot) {
18418631f3e8SEli Friedman   RunCleanupsScope Scope(*this);
184239c81e28SAlexey Bataev   LValue SlotLV =
184339c81e28SAlexey Bataev       MakeAddrLValue(Slot.getAddr(), E->getType(), Slot.getAlignment());
18448631f3e8SEli Friedman 
1845c370a7eeSEli Friedman   CXXRecordDecl::field_iterator CurField = E->getLambdaClass()->field_begin();
184653c7616eSJames Y Knight   for (LambdaExpr::const_capture_init_iterator i = E->capture_init_begin(),
1847c370a7eeSEli Friedman                                                e = E->capture_init_end();
1848c370a7eeSEli Friedman        i != e; ++i, ++CurField) {
1849c370a7eeSEli Friedman     // Emit initialization
185040ed2973SDavid Blaikie     LValue LV = EmitLValueForFieldInitialization(SlotLV, *CurField);
185139c81e28SAlexey Bataev     if (CurField->hasCapturedVLAType()) {
185239c81e28SAlexey Bataev       auto VAT = CurField->getCapturedVLAType();
185339c81e28SAlexey Bataev       EmitStoreThroughLValue(RValue::get(VLASizeMap[VAT->getSizeExpr()]), LV);
185439c81e28SAlexey Bataev     } else {
18555f1a04ffSEli Friedman       ArrayRef<VarDecl *> ArrayIndexes;
18565f1a04ffSEli Friedman       if (CurField->getType()->isArrayType())
18575f1a04ffSEli Friedman         ArrayIndexes = E->getCaptureInitIndexVars(i);
185840ed2973SDavid Blaikie       EmitInitializerForField(*CurField, LV, *i, ArrayIndexes);
1859c370a7eeSEli Friedman     }
1860c370a7eeSEli Friedman   }
186139c81e28SAlexey Bataev }
1862