Anders Carlsson | 59486a2 | 2009-11-24 05:51:11 +0000 | [diff] [blame] | 1 | //===--- CGExprCXX.cpp - Emit LLVM Code for C++ expressions ---------------===// |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This contains code dealing with code generation of C++ expressions |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenFunction.h" |
Peter Collingbourne | fe88342 | 2011-10-06 18:29:37 +0000 | [diff] [blame] | 15 | #include "CGCUDARuntime.h" |
John McCall | 5d865c32 | 2010-08-31 07:33:07 +0000 | [diff] [blame] | 16 | #include "CGCXXABI.h" |
Devang Patel | 91bbb55 | 2010-09-30 19:05:55 +0000 | [diff] [blame] | 17 | #include "CGDebugInfo.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 18 | #include "CGObjCRuntime.h" |
Mark Lacey | a8e7df3 | 2013-10-30 21:53:58 +0000 | [diff] [blame] | 19 | #include "clang/CodeGen/CGFunctionInfo.h" |
Saleem Abdulrasool | 10a4972 | 2016-04-08 16:52:00 +0000 | [diff] [blame] | 20 | #include "clang/Frontend/CodeGenOptions.h" |
Chandler Carruth | c80ceea | 2014-03-04 11:02:08 +0000 | [diff] [blame] | 21 | #include "llvm/IR/CallSite.h" |
Chandler Carruth | ffd5551 | 2013-01-02 11:45:17 +0000 | [diff] [blame] | 22 | #include "llvm/IR/Intrinsics.h" |
Anders Carlsson | bbe277c | 2011-04-13 02:35:36 +0000 | [diff] [blame] | 23 | |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 24 | using namespace clang; |
| 25 | using namespace CodeGen; |
| 26 | |
George Burgess IV | d0a9e80 | 2017-02-23 22:07:35 +0000 | [diff] [blame] | 27 | namespace { |
| 28 | struct MemberCallInfo { |
| 29 | RequiredArgs ReqArgs; |
| 30 | // Number of prefix arguments for the call. Ignores the `this` pointer. |
| 31 | unsigned PrefixSize; |
| 32 | }; |
| 33 | } |
| 34 | |
| 35 | static MemberCallInfo |
Alexey Samsonov | efa956c | 2016-03-10 00:20:33 +0000 | [diff] [blame] | 36 | commonEmitCXXMemberOrOperatorCall(CodeGenFunction &CGF, const CXXMethodDecl *MD, |
| 37 | llvm::Value *This, llvm::Value *ImplicitParam, |
| 38 | QualType ImplicitParamTy, const CallExpr *CE, |
Richard Smith | 762672a | 2016-09-28 19:09:10 +0000 | [diff] [blame] | 39 | CallArgList &Args, CallArgList *RtlArgs) { |
Alexey Samsonov | a5bf76b | 2014-08-25 20:17:35 +0000 | [diff] [blame] | 40 | assert(CE == nullptr || isa<CXXMemberCallExpr>(CE) || |
| 41 | isa<CXXOperatorCallExpr>(CE)); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 42 | assert(MD->isInstance() && |
Alexey Samsonov | a5bf76b | 2014-08-25 20:17:35 +0000 | [diff] [blame] | 43 | "Trying to emit a member or operator call expr on a static method!"); |
Reid Kleckner | 034e727 | 2016-09-07 15:15:51 +0000 | [diff] [blame] | 44 | ASTContext &C = CGF.getContext(); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 45 | |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 46 | // Push the this ptr. |
Reid Kleckner | 034e727 | 2016-09-07 15:15:51 +0000 | [diff] [blame] | 47 | const CXXRecordDecl *RD = |
| 48 | CGF.CGM.getCXXABI().getThisArgumentTypeForMethod(MD); |
| 49 | Args.add(RValue::get(This), |
| 50 | RD ? C.getPointerType(C.getTypeDeclType(RD)) : C.VoidPtrTy); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 51 | |
Timur Iskhodzhanov | ee6bc53 | 2013-02-13 08:37:51 +0000 | [diff] [blame] | 52 | // If there is an implicit parameter (e.g. VTT), emit it. |
| 53 | if (ImplicitParam) { |
| 54 | Args.add(RValue::get(ImplicitParam), ImplicitParamTy); |
Anders Carlsson | e36a6b3 | 2010-01-02 01:01:18 +0000 | [diff] [blame] | 55 | } |
John McCall | a729c62 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 56 | |
| 57 | const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>(); |
George Burgess IV | 419996c | 2016-06-16 23:06:04 +0000 | [diff] [blame] | 58 | RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size(), MD); |
George Burgess IV | d0a9e80 | 2017-02-23 22:07:35 +0000 | [diff] [blame] | 59 | unsigned PrefixSize = Args.size() - 1; |
Alexey Samsonov | 8e1162c | 2014-09-08 17:22:45 +0000 | [diff] [blame] | 60 | |
John McCall | a729c62 | 2012-02-17 03:33:10 +0000 | [diff] [blame] | 61 | // And the rest of the call args. |
Richard Smith | 762672a | 2016-09-28 19:09:10 +0000 | [diff] [blame] | 62 | if (RtlArgs) { |
| 63 | // Special case: if the caller emitted the arguments right-to-left already |
| 64 | // (prior to emitting the *this argument), we're done. This happens for |
| 65 | // assignment operators. |
| 66 | Args.addFrom(*RtlArgs); |
| 67 | } else if (CE) { |
Alexey Samsonov | a5bf76b | 2014-08-25 20:17:35 +0000 | [diff] [blame] | 68 | // Special case: skip first argument of CXXOperatorCall (it is "this"). |
Alexey Samsonov | 8e1162c | 2014-09-08 17:22:45 +0000 | [diff] [blame] | 69 | unsigned ArgsToSkip = isa<CXXOperatorCallExpr>(CE) ? 1 : 0; |
David Blaikie | f05779e | 2015-07-21 18:37:18 +0000 | [diff] [blame] | 70 | CGF.EmitCallArgs(Args, FPT, drop_begin(CE->arguments(), ArgsToSkip), |
David Majnemer | 0c0b6d9 | 2014-10-31 20:09:12 +0000 | [diff] [blame] | 71 | CE->getDirectCallee()); |
Alexey Samsonov | a5bf76b | 2014-08-25 20:17:35 +0000 | [diff] [blame] | 72 | } else { |
Alexey Samsonov | 8e1162c | 2014-09-08 17:22:45 +0000 | [diff] [blame] | 73 | assert( |
| 74 | FPT->getNumParams() == 0 && |
| 75 | "No CallExpr specified for function with non-zero number of arguments"); |
Alexey Samsonov | a5bf76b | 2014-08-25 20:17:35 +0000 | [diff] [blame] | 76 | } |
George Burgess IV | d0a9e80 | 2017-02-23 22:07:35 +0000 | [diff] [blame] | 77 | return {required, PrefixSize}; |
David Majnemer | 0c0b6d9 | 2014-10-31 20:09:12 +0000 | [diff] [blame] | 78 | } |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 79 | |
David Majnemer | 0c0b6d9 | 2014-10-31 20:09:12 +0000 | [diff] [blame] | 80 | RValue CodeGenFunction::EmitCXXMemberOrOperatorCall( |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 81 | const CXXMethodDecl *MD, const CGCallee &Callee, |
| 82 | ReturnValueSlot ReturnValue, |
David Majnemer | 0c0b6d9 | 2014-10-31 20:09:12 +0000 | [diff] [blame] | 83 | llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy, |
Richard Smith | 762672a | 2016-09-28 19:09:10 +0000 | [diff] [blame] | 84 | const CallExpr *CE, CallArgList *RtlArgs) { |
David Majnemer | 0c0b6d9 | 2014-10-31 20:09:12 +0000 | [diff] [blame] | 85 | const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>(); |
| 86 | CallArgList Args; |
George Burgess IV | d0a9e80 | 2017-02-23 22:07:35 +0000 | [diff] [blame] | 87 | MemberCallInfo CallInfo = commonEmitCXXMemberOrOperatorCall( |
Richard Smith | 762672a | 2016-09-28 19:09:10 +0000 | [diff] [blame] | 88 | *this, MD, This, ImplicitParam, ImplicitParamTy, CE, Args, RtlArgs); |
George Burgess IV | d0a9e80 | 2017-02-23 22:07:35 +0000 | [diff] [blame] | 89 | auto &FnInfo = CGM.getTypes().arrangeCXXMethodCall( |
| 90 | Args, FPT, CallInfo.ReqArgs, CallInfo.PrefixSize); |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 91 | return EmitCall(FnInfo, Callee, ReturnValue, Args); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 92 | } |
| 93 | |
Alexey Samsonov | ae81bbb | 2016-03-10 00:20:37 +0000 | [diff] [blame] | 94 | RValue CodeGenFunction::EmitCXXDestructorCall( |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 95 | const CXXDestructorDecl *DD, const CGCallee &Callee, llvm::Value *This, |
Alexey Samsonov | ae81bbb | 2016-03-10 00:20:37 +0000 | [diff] [blame] | 96 | llvm::Value *ImplicitParam, QualType ImplicitParamTy, const CallExpr *CE, |
| 97 | StructorType Type) { |
David Majnemer | 0c0b6d9 | 2014-10-31 20:09:12 +0000 | [diff] [blame] | 98 | CallArgList Args; |
Alexey Samsonov | ae81bbb | 2016-03-10 00:20:37 +0000 | [diff] [blame] | 99 | commonEmitCXXMemberOrOperatorCall(*this, DD, This, ImplicitParam, |
Richard Smith | 762672a | 2016-09-28 19:09:10 +0000 | [diff] [blame] | 100 | ImplicitParamTy, CE, Args, nullptr); |
Alexey Samsonov | ae81bbb | 2016-03-10 00:20:37 +0000 | [diff] [blame] | 101 | return EmitCall(CGM.getTypes().arrangeCXXStructorDeclaration(DD, Type), |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 102 | Callee, ReturnValueSlot(), Args); |
| 103 | } |
| 104 | |
| 105 | RValue CodeGenFunction::EmitCXXPseudoDestructorExpr( |
| 106 | const CXXPseudoDestructorExpr *E) { |
| 107 | QualType DestroyedType = E->getDestroyedType(); |
| 108 | if (DestroyedType.hasStrongOrWeakObjCLifetime()) { |
| 109 | // Automatic Reference Counting: |
| 110 | // If the pseudo-expression names a retainable object with weak or |
| 111 | // strong lifetime, the object shall be released. |
| 112 | Expr *BaseExpr = E->getBase(); |
| 113 | Address BaseValue = Address::invalid(); |
| 114 | Qualifiers BaseQuals; |
| 115 | |
| 116 | // If this is s.x, emit s as an lvalue. If it is s->x, emit s as a scalar. |
| 117 | if (E->isArrow()) { |
| 118 | BaseValue = EmitPointerWithAlignment(BaseExpr); |
| 119 | const PointerType *PTy = BaseExpr->getType()->getAs<PointerType>(); |
| 120 | BaseQuals = PTy->getPointeeType().getQualifiers(); |
| 121 | } else { |
| 122 | LValue BaseLV = EmitLValue(BaseExpr); |
| 123 | BaseValue = BaseLV.getAddress(); |
| 124 | QualType BaseTy = BaseExpr->getType(); |
| 125 | BaseQuals = BaseTy.getQualifiers(); |
| 126 | } |
| 127 | |
| 128 | switch (DestroyedType.getObjCLifetime()) { |
| 129 | case Qualifiers::OCL_None: |
| 130 | case Qualifiers::OCL_ExplicitNone: |
| 131 | case Qualifiers::OCL_Autoreleasing: |
| 132 | break; |
| 133 | |
| 134 | case Qualifiers::OCL_Strong: |
| 135 | EmitARCRelease(Builder.CreateLoad(BaseValue, |
| 136 | DestroyedType.isVolatileQualified()), |
| 137 | ARCPreciseLifetime); |
| 138 | break; |
| 139 | |
| 140 | case Qualifiers::OCL_Weak: |
| 141 | EmitARCDestroyWeak(BaseValue); |
| 142 | break; |
| 143 | } |
| 144 | } else { |
| 145 | // C++ [expr.pseudo]p1: |
| 146 | // The result shall only be used as the operand for the function call |
| 147 | // operator (), and the result of such a call has type void. The only |
| 148 | // effect is the evaluation of the postfix-expression before the dot or |
| 149 | // arrow. |
| 150 | EmitIgnoredExpr(E->getBase()); |
| 151 | } |
| 152 | |
| 153 | return RValue::get(nullptr); |
David Majnemer | 0c0b6d9 | 2014-10-31 20:09:12 +0000 | [diff] [blame] | 154 | } |
| 155 | |
Rafael Espindola | 3b33c4e | 2012-06-28 14:28:57 +0000 | [diff] [blame] | 156 | static CXXRecordDecl *getCXXRecord(const Expr *E) { |
| 157 | QualType T = E->getType(); |
| 158 | if (const PointerType *PTy = T->getAs<PointerType>()) |
| 159 | T = PTy->getPointeeType(); |
| 160 | const RecordType *Ty = T->castAs<RecordType>(); |
| 161 | return cast<CXXRecordDecl>(Ty->getDecl()); |
| 162 | } |
| 163 | |
Francois Pichet | 6422579 | 2011-01-18 05:04:39 +0000 | [diff] [blame] | 164 | // Note: This function also emit constructor calls to support a MSVC |
| 165 | // extensions allowing explicit constructor function call. |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 166 | RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE, |
| 167 | ReturnValueSlot ReturnValue) { |
John McCall | 2d2e870 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 168 | const Expr *callee = CE->getCallee()->IgnoreParens(); |
| 169 | |
| 170 | if (isa<BinaryOperator>(callee)) |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 171 | return EmitCXXMemberPointerCallExpr(CE, ReturnValue); |
John McCall | 2d2e870 | 2011-04-11 07:02:50 +0000 | [diff] [blame] | 172 | |
| 173 | const MemberExpr *ME = cast<MemberExpr>(callee); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 174 | const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl()); |
| 175 | |
| 176 | if (MD->isStatic()) { |
| 177 | // The method is static, emit it as we would a regular call. |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 178 | CGCallee callee = CGCallee::forDirect(CGM.GetAddrOfFunction(MD), MD); |
| 179 | return EmitCall(getContext().getPointerType(MD->getType()), callee, CE, |
Alexey Samsonov | 70b9c01 | 2014-08-21 20:26:47 +0000 | [diff] [blame] | 180 | ReturnValue); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 181 | } |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 182 | |
Nico Weber | aad4af6 | 2014-12-03 01:21:41 +0000 | [diff] [blame] | 183 | bool HasQualifier = ME->hasQualifier(); |
| 184 | NestedNameSpecifier *Qualifier = HasQualifier ? ME->getQualifier() : nullptr; |
| 185 | bool IsArrow = ME->isArrow(); |
Rafael Espindola | ecbe2e9 | 2012-06-28 01:56:38 +0000 | [diff] [blame] | 186 | const Expr *Base = ME->getBase(); |
Nico Weber | aad4af6 | 2014-12-03 01:21:41 +0000 | [diff] [blame] | 187 | |
| 188 | return EmitCXXMemberOrOperatorMemberCallExpr( |
| 189 | CE, MD, ReturnValue, HasQualifier, Qualifier, IsArrow, Base); |
| 190 | } |
| 191 | |
| 192 | RValue CodeGenFunction::EmitCXXMemberOrOperatorMemberCallExpr( |
| 193 | const CallExpr *CE, const CXXMethodDecl *MD, ReturnValueSlot ReturnValue, |
| 194 | bool HasQualifier, NestedNameSpecifier *Qualifier, bool IsArrow, |
| 195 | const Expr *Base) { |
| 196 | assert(isa<CXXMemberCallExpr>(CE) || isa<CXXOperatorCallExpr>(CE)); |
| 197 | |
| 198 | // Compute the object pointer. |
| 199 | bool CanUseVirtualCall = MD->isVirtual() && !HasQualifier; |
Rafael Espindola | ecbe2e9 | 2012-06-28 01:56:38 +0000 | [diff] [blame] | 200 | |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 201 | const CXXMethodDecl *DevirtualizedMethod = nullptr; |
Benjamin Kramer | 7463ed7 | 2013-08-25 22:46:27 +0000 | [diff] [blame] | 202 | if (CanUseVirtualCall && CanDevirtualizeMemberFunctionCall(Base, MD)) { |
Rafael Espindola | 3b33c4e | 2012-06-28 14:28:57 +0000 | [diff] [blame] | 203 | const CXXRecordDecl *BestDynamicDecl = Base->getBestDynamicClassType(); |
| 204 | DevirtualizedMethod = MD->getCorrespondingMethodInClass(BestDynamicDecl); |
| 205 | assert(DevirtualizedMethod); |
| 206 | const CXXRecordDecl *DevirtualizedClass = DevirtualizedMethod->getParent(); |
| 207 | const Expr *Inner = Base->ignoreParenBaseCasts(); |
Alexey Bataev | 5bd6879 | 2014-09-29 10:32:21 +0000 | [diff] [blame] | 208 | if (DevirtualizedMethod->getReturnType().getCanonicalType() != |
| 209 | MD->getReturnType().getCanonicalType()) |
| 210 | // If the return types are not the same, this might be a case where more |
| 211 | // code needs to run to compensate for it. For example, the derived |
| 212 | // method might return a type that inherits form from the return |
| 213 | // type of MD and has a prefix. |
| 214 | // For now we just avoid devirtualizing these covariant cases. |
| 215 | DevirtualizedMethod = nullptr; |
| 216 | else if (getCXXRecord(Inner) == DevirtualizedClass) |
Rafael Espindola | 3b33c4e | 2012-06-28 14:28:57 +0000 | [diff] [blame] | 217 | // If the class of the Inner expression is where the dynamic method |
| 218 | // is defined, build the this pointer from it. |
| 219 | Base = Inner; |
| 220 | else if (getCXXRecord(Base) != DevirtualizedClass) { |
| 221 | // If the method is defined in a class that is not the best dynamic |
| 222 | // one or the one of the full expression, we would have to build |
| 223 | // a derived-to-base cast to compute the correct this pointer, but |
| 224 | // we don't have support for that yet, so do a virtual call. |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 225 | DevirtualizedMethod = nullptr; |
Rafael Espindola | 3b33c4e | 2012-06-28 14:28:57 +0000 | [diff] [blame] | 226 | } |
| 227 | } |
Rafael Espindola | ecbe2e9 | 2012-06-28 01:56:38 +0000 | [diff] [blame] | 228 | |
Richard Smith | 762672a | 2016-09-28 19:09:10 +0000 | [diff] [blame] | 229 | // C++17 demands that we evaluate the RHS of a (possibly-compound) assignment |
| 230 | // operator before the LHS. |
| 231 | CallArgList RtlArgStorage; |
| 232 | CallArgList *RtlArgs = nullptr; |
| 233 | if (auto *OCE = dyn_cast<CXXOperatorCallExpr>(CE)) { |
| 234 | if (OCE->isAssignmentOp()) { |
| 235 | RtlArgs = &RtlArgStorage; |
| 236 | EmitCallArgs(*RtlArgs, MD->getType()->castAs<FunctionProtoType>(), |
| 237 | drop_begin(CE->arguments(), 1), CE->getDirectCallee(), |
Richard Smith | a560ccf | 2016-09-29 21:30:12 +0000 | [diff] [blame] | 238 | /*ParamsToSkip*/0, EvaluationOrder::ForceRightToLeft); |
Richard Smith | 762672a | 2016-09-28 19:09:10 +0000 | [diff] [blame] | 239 | } |
| 240 | } |
| 241 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 242 | Address This = Address::invalid(); |
Nico Weber | aad4af6 | 2014-12-03 01:21:41 +0000 | [diff] [blame] | 243 | if (IsArrow) |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 244 | This = EmitPointerWithAlignment(Base); |
John McCall | e26a872 | 2010-12-04 08:14:53 +0000 | [diff] [blame] | 245 | else |
Rafael Espindola | 3b33c4e | 2012-06-28 14:28:57 +0000 | [diff] [blame] | 246 | This = EmitLValue(Base).getAddress(); |
Rafael Espindola | ecbe2e9 | 2012-06-28 01:56:38 +0000 | [diff] [blame] | 247 | |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 248 | |
Richard Smith | 419bd09 | 2015-04-29 19:26:57 +0000 | [diff] [blame] | 249 | if (MD->isTrivial() || (MD->isDefaulted() && MD->getParent()->isUnion())) { |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 250 | if (isa<CXXDestructorDecl>(MD)) return RValue::get(nullptr); |
Francois Pichet | 6422579 | 2011-01-18 05:04:39 +0000 | [diff] [blame] | 251 | if (isa<CXXConstructorDecl>(MD) && |
| 252 | cast<CXXConstructorDecl>(MD)->isDefaultConstructor()) |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 253 | return RValue::get(nullptr); |
John McCall | 0d635f5 | 2010-09-03 01:26:39 +0000 | [diff] [blame] | 254 | |
Nico Weber | aad4af6 | 2014-12-03 01:21:41 +0000 | [diff] [blame] | 255 | if (!MD->getParent()->mayInsertExtraPadding()) { |
| 256 | if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) { |
| 257 | // We don't like to generate the trivial copy/move assignment operator |
| 258 | // when it isn't necessary; just produce the proper effect here. |
Richard Smith | 762672a | 2016-09-28 19:09:10 +0000 | [diff] [blame] | 259 | LValue RHS = isa<CXXOperatorCallExpr>(CE) |
| 260 | ? MakeNaturalAlignAddrLValue( |
| 261 | (*RtlArgs)[0].RV.getScalarVal(), |
| 262 | (*(CE->arg_begin() + 1))->getType()) |
| 263 | : EmitLValue(*CE->arg_begin()); |
| 264 | EmitAggregateAssign(This, RHS.getAddress(), CE->getType()); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 265 | return RValue::get(This.getPointer()); |
Nico Weber | aad4af6 | 2014-12-03 01:21:41 +0000 | [diff] [blame] | 266 | } |
Alexey Samsonov | 525bf65 | 2014-08-25 21:58:56 +0000 | [diff] [blame] | 267 | |
Nico Weber | aad4af6 | 2014-12-03 01:21:41 +0000 | [diff] [blame] | 268 | if (isa<CXXConstructorDecl>(MD) && |
| 269 | cast<CXXConstructorDecl>(MD)->isCopyOrMoveConstructor()) { |
| 270 | // Trivial move and copy ctor are the same. |
| 271 | assert(CE->getNumArgs() == 1 && "unexpected argcount for trivial ctor"); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 272 | Address RHS = EmitLValue(*CE->arg_begin()).getAddress(); |
Benjamin Kramer | f48ee44 | 2015-07-18 14:35:53 +0000 | [diff] [blame] | 273 | EmitAggregateCopy(This, RHS, (*CE->arg_begin())->getType()); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 274 | return RValue::get(This.getPointer()); |
Nico Weber | aad4af6 | 2014-12-03 01:21:41 +0000 | [diff] [blame] | 275 | } |
| 276 | llvm_unreachable("unknown trivial member function"); |
Francois Pichet | 6422579 | 2011-01-18 05:04:39 +0000 | [diff] [blame] | 277 | } |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 278 | } |
| 279 | |
John McCall | 0d635f5 | 2010-09-03 01:26:39 +0000 | [diff] [blame] | 280 | // Compute the function type we're calling. |
Nico Weber | 3abfe95 | 2014-12-02 20:41:18 +0000 | [diff] [blame] | 281 | const CXXMethodDecl *CalleeDecl = |
| 282 | DevirtualizedMethod ? DevirtualizedMethod : MD; |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 283 | const CGFunctionInfo *FInfo = nullptr; |
Nico Weber | 3abfe95 | 2014-12-02 20:41:18 +0000 | [diff] [blame] | 284 | if (const auto *Dtor = dyn_cast<CXXDestructorDecl>(CalleeDecl)) |
Rafael Espindola | 8d2a19b | 2014-09-08 16:01:27 +0000 | [diff] [blame] | 285 | FInfo = &CGM.getTypes().arrangeCXXStructorDeclaration( |
| 286 | Dtor, StructorType::Complete); |
Nico Weber | 3abfe95 | 2014-12-02 20:41:18 +0000 | [diff] [blame] | 287 | else if (const auto *Ctor = dyn_cast<CXXConstructorDecl>(CalleeDecl)) |
Rafael Espindola | 8d2a19b | 2014-09-08 16:01:27 +0000 | [diff] [blame] | 288 | FInfo = &CGM.getTypes().arrangeCXXStructorDeclaration( |
| 289 | Ctor, StructorType::Complete); |
Francois Pichet | 6422579 | 2011-01-18 05:04:39 +0000 | [diff] [blame] | 290 | else |
Eli Friedman | ade6097 | 2012-10-25 00:12:49 +0000 | [diff] [blame] | 291 | FInfo = &CGM.getTypes().arrangeCXXMethodDeclaration(CalleeDecl); |
John McCall | 0d635f5 | 2010-09-03 01:26:39 +0000 | [diff] [blame] | 292 | |
Reid Kleckner | e7de47e | 2013-07-22 13:51:44 +0000 | [diff] [blame] | 293 | llvm::FunctionType *Ty = CGM.getTypes().GetFunctionType(*FInfo); |
John McCall | 0d635f5 | 2010-09-03 01:26:39 +0000 | [diff] [blame] | 294 | |
Ivan Krasin | d98f5d7 | 2016-11-17 00:39:48 +0000 | [diff] [blame] | 295 | // C++11 [class.mfct.non-static]p2: |
| 296 | // If a non-static member function of a class X is called for an object that |
| 297 | // is not of type X, or of a type derived from X, the behavior is undefined. |
| 298 | SourceLocation CallLoc; |
| 299 | ASTContext &C = getContext(); |
| 300 | if (CE) |
| 301 | CallLoc = CE->getExprLoc(); |
| 302 | |
Vedant Kumar | 34b1fd6 | 2017-02-17 23:22:59 +0000 | [diff] [blame] | 303 | SanitizerSet SkippedChecks; |
Vedant Kumar | ffd7c88 | 2017-04-14 22:03:34 +0000 | [diff] [blame] | 304 | if (const auto *CMCE = dyn_cast<CXXMemberCallExpr>(CE)) { |
| 305 | auto *IOA = CMCE->getImplicitObjectArgument(); |
| 306 | bool IsImplicitObjectCXXThis = IsWrappedCXXThis(IOA); |
| 307 | if (IsImplicitObjectCXXThis) |
| 308 | SkippedChecks.set(SanitizerKind::Alignment, true); |
| 309 | if (IsImplicitObjectCXXThis || isa<DeclRefExpr>(IOA)) |
Vedant Kumar | 34b1fd6 | 2017-02-17 23:22:59 +0000 | [diff] [blame] | 310 | SkippedChecks.set(SanitizerKind::Null, true); |
Vedant Kumar | ffd7c88 | 2017-04-14 22:03:34 +0000 | [diff] [blame] | 311 | } |
Vedant Kumar | 34b1fd6 | 2017-02-17 23:22:59 +0000 | [diff] [blame] | 312 | EmitTypeCheck( |
| 313 | isa<CXXConstructorDecl>(CalleeDecl) ? CodeGenFunction::TCK_ConstructorCall |
| 314 | : CodeGenFunction::TCK_MemberCall, |
| 315 | CallLoc, This.getPointer(), C.getRecordType(CalleeDecl->getParent()), |
| 316 | /*Alignment=*/CharUnits::Zero(), SkippedChecks); |
Ivan Krasin | d98f5d7 | 2016-11-17 00:39:48 +0000 | [diff] [blame] | 317 | |
Vedant Kumar | 018f266 | 2016-10-19 20:21:16 +0000 | [diff] [blame] | 318 | // FIXME: Uses of 'MD' past this point need to be audited. We may need to use |
| 319 | // 'CalleeDecl' instead. |
| 320 | |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 321 | // C++ [class.virtual]p12: |
| 322 | // Explicit qualification with the scope operator (5.1) suppresses the |
| 323 | // virtual call mechanism. |
| 324 | // |
| 325 | // We also don't emit a virtual call if the base expression has a record type |
| 326 | // because then we know what the type is. |
Rafael Espindola | 3b33c4e | 2012-06-28 14:28:57 +0000 | [diff] [blame] | 327 | bool UseVirtualCall = CanUseVirtualCall && !DevirtualizedMethod; |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 328 | |
John McCall | 0d635f5 | 2010-09-03 01:26:39 +0000 | [diff] [blame] | 329 | if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(MD)) { |
Stephen Lin | 9dc6eef | 2013-06-30 20:40:16 +0000 | [diff] [blame] | 330 | assert(CE->arg_begin() == CE->arg_end() && |
| 331 | "Destructor shouldn't have explicit parameters"); |
| 332 | assert(ReturnValue.isNull() && "Destructor shouldn't have return value"); |
John McCall | 0d635f5 | 2010-09-03 01:26:39 +0000 | [diff] [blame] | 333 | if (UseVirtualCall) { |
Nico Weber | aad4af6 | 2014-12-03 01:21:41 +0000 | [diff] [blame] | 334 | CGM.getCXXABI().EmitVirtualDestructorCall( |
| 335 | *this, Dtor, Dtor_Complete, This, cast<CXXMemberCallExpr>(CE)); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 336 | } else { |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 337 | CGCallee Callee; |
Nico Weber | aad4af6 | 2014-12-03 01:21:41 +0000 | [diff] [blame] | 338 | if (getLangOpts().AppleKext && MD->isVirtual() && HasQualifier) |
| 339 | Callee = BuildAppleKextVirtualCall(MD, Qualifier, Ty); |
Rafael Espindola | 3b33c4e | 2012-06-28 14:28:57 +0000 | [diff] [blame] | 340 | else if (!DevirtualizedMethod) |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 341 | Callee = CGCallee::forDirect( |
| 342 | CGM.getAddrOfCXXStructor(Dtor, StructorType::Complete, FInfo, Ty), |
| 343 | Dtor); |
Rafael Espindola | 49e860b | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 344 | else { |
Rafael Espindola | 3b33c4e | 2012-06-28 14:28:57 +0000 | [diff] [blame] | 345 | const CXXDestructorDecl *DDtor = |
| 346 | cast<CXXDestructorDecl>(DevirtualizedMethod); |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 347 | Callee = CGCallee::forDirect( |
| 348 | CGM.GetAddrOfFunction(GlobalDecl(DDtor, Dtor_Complete), Ty), |
| 349 | DDtor); |
Rafael Espindola | 49e860b | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 350 | } |
Vedant Kumar | 018f266 | 2016-10-19 20:21:16 +0000 | [diff] [blame] | 351 | EmitCXXMemberOrOperatorCall( |
| 352 | CalleeDecl, Callee, ReturnValue, This.getPointer(), |
| 353 | /*ImplicitParam=*/nullptr, QualType(), CE, nullptr); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 354 | } |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 355 | return RValue::get(nullptr); |
Stephen Lin | 9dc6eef | 2013-06-30 20:40:16 +0000 | [diff] [blame] | 356 | } |
| 357 | |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 358 | CGCallee Callee; |
Stephen Lin | 9dc6eef | 2013-06-30 20:40:16 +0000 | [diff] [blame] | 359 | if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) { |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 360 | Callee = CGCallee::forDirect( |
| 361 | CGM.GetAddrOfFunction(GlobalDecl(Ctor, Ctor_Complete), Ty), |
| 362 | Ctor); |
John McCall | 0d635f5 | 2010-09-03 01:26:39 +0000 | [diff] [blame] | 363 | } else if (UseVirtualCall) { |
Peter Collingbourne | 6708c4a | 2015-06-19 01:51:54 +0000 | [diff] [blame] | 364 | Callee = CGM.getCXXABI().getVirtualFunctionPointer(*this, MD, This, Ty, |
| 365 | CE->getLocStart()); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 366 | } else { |
Peter Collingbourne | 1a7488a | 2015-04-02 00:23:30 +0000 | [diff] [blame] | 367 | if (SanOpts.has(SanitizerKind::CFINVCall) && |
| 368 | MD->getParent()->isDynamicClass()) { |
Piotr Padlewski | 4b1ac72 | 2015-09-15 21:46:55 +0000 | [diff] [blame] | 369 | llvm::Value *VTable = GetVTablePtr(This, Int8PtrTy, MD->getParent()); |
Peter Collingbourne | fb532b9 | 2016-02-24 20:46:36 +0000 | [diff] [blame] | 370 | EmitVTablePtrCheckForCall(MD->getParent(), VTable, CFITCK_NVCall, |
| 371 | CE->getLocStart()); |
Peter Collingbourne | 1a7488a | 2015-04-02 00:23:30 +0000 | [diff] [blame] | 372 | } |
| 373 | |
Nico Weber | aad4af6 | 2014-12-03 01:21:41 +0000 | [diff] [blame] | 374 | if (getLangOpts().AppleKext && MD->isVirtual() && HasQualifier) |
| 375 | Callee = BuildAppleKextVirtualCall(MD, Qualifier, Ty); |
Rafael Espindola | 3b33c4e | 2012-06-28 14:28:57 +0000 | [diff] [blame] | 376 | else if (!DevirtualizedMethod) |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 377 | Callee = CGCallee::forDirect(CGM.GetAddrOfFunction(MD, Ty), MD); |
Rafael Espindola | 49e860b | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 378 | else { |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 379 | Callee = CGCallee::forDirect( |
| 380 | CGM.GetAddrOfFunction(DevirtualizedMethod, Ty), |
| 381 | DevirtualizedMethod); |
Rafael Espindola | 49e860b | 2012-06-26 17:45:31 +0000 | [diff] [blame] | 382 | } |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 383 | } |
| 384 | |
Timur Iskhodzhanov | f174942 | 2014-03-14 17:43:37 +0000 | [diff] [blame] | 385 | if (MD->isVirtual()) { |
| 386 | This = CGM.getCXXABI().adjustThisArgumentForVirtualFunctionCall( |
Reid Kleckner | 4b60f30 | 2016-05-03 18:44:29 +0000 | [diff] [blame] | 387 | *this, CalleeDecl, This, UseVirtualCall); |
Timur Iskhodzhanov | f174942 | 2014-03-14 17:43:37 +0000 | [diff] [blame] | 388 | } |
Timur Iskhodzhanov | 88fd439 | 2013-08-21 06:25:03 +0000 | [diff] [blame] | 389 | |
Vedant Kumar | 018f266 | 2016-10-19 20:21:16 +0000 | [diff] [blame] | 390 | return EmitCXXMemberOrOperatorCall( |
| 391 | CalleeDecl, Callee, ReturnValue, This.getPointer(), |
| 392 | /*ImplicitParam=*/nullptr, QualType(), CE, RtlArgs); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 393 | } |
| 394 | |
| 395 | RValue |
| 396 | CodeGenFunction::EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E, |
| 397 | ReturnValueSlot ReturnValue) { |
| 398 | const BinaryOperator *BO = |
| 399 | cast<BinaryOperator>(E->getCallee()->IgnoreParens()); |
| 400 | const Expr *BaseExpr = BO->getLHS(); |
| 401 | const Expr *MemFnExpr = BO->getRHS(); |
| 402 | |
| 403 | const MemberPointerType *MPT = |
John McCall | 0009fcc | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 404 | MemFnExpr->getType()->castAs<MemberPointerType>(); |
John McCall | 475999d | 2010-08-22 00:05:51 +0000 | [diff] [blame] | 405 | |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 406 | const FunctionProtoType *FPT = |
John McCall | 0009fcc | 2011-04-26 20:42:42 +0000 | [diff] [blame] | 407 | MPT->getPointeeType()->castAs<FunctionProtoType>(); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 408 | const CXXRecordDecl *RD = |
| 409 | cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl()); |
| 410 | |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 411 | // Emit the 'this' pointer. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 412 | Address This = Address::invalid(); |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 413 | if (BO->getOpcode() == BO_PtrMemI) |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 414 | This = EmitPointerWithAlignment(BaseExpr); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 415 | else |
| 416 | This = EmitLValue(BaseExpr).getAddress(); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 417 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 418 | EmitTypeCheck(TCK_MemberCall, E->getExprLoc(), This.getPointer(), |
Richard Smith | e30752c | 2012-10-09 19:52:38 +0000 | [diff] [blame] | 419 | QualType(MPT->getClass(), 0)); |
Richard Smith | 69d0d26 | 2012-08-24 00:54:33 +0000 | [diff] [blame] | 420 | |
Richard Smith | bde62d7 | 2016-09-26 23:56:57 +0000 | [diff] [blame] | 421 | // Get the member function pointer. |
| 422 | llvm::Value *MemFnPtr = EmitScalarExpr(MemFnExpr); |
| 423 | |
John McCall | 475999d | 2010-08-22 00:05:51 +0000 | [diff] [blame] | 424 | // Ask the ABI to load the callee. Note that This is modified. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 425 | llvm::Value *ThisPtrForCall = nullptr; |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 426 | CGCallee Callee = |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 427 | CGM.getCXXABI().EmitLoadOfMemberFunctionPointer(*this, BO, This, |
| 428 | ThisPtrForCall, MemFnPtr, MPT); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 429 | |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 430 | CallArgList Args; |
| 431 | |
| 432 | QualType ThisType = |
| 433 | getContext().getPointerType(getContext().getTagDeclType(RD)); |
| 434 | |
| 435 | // Push the this ptr. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 436 | Args.add(RValue::get(ThisPtrForCall), ThisType); |
John McCall | 8dda7b2 | 2012-07-07 06:41:13 +0000 | [diff] [blame] | 437 | |
George Burgess IV | 419996c | 2016-06-16 23:06:04 +0000 | [diff] [blame] | 438 | RequiredArgs required = |
| 439 | RequiredArgs::forPrototypePlus(FPT, 1, /*FD=*/nullptr); |
| 440 | |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 441 | // And the rest of the call args |
George Burgess IV | 419996c | 2016-06-16 23:06:04 +0000 | [diff] [blame] | 442 | EmitCallArgs(Args, FPT, E->arguments()); |
George Burgess IV | d0a9e80 | 2017-02-23 22:07:35 +0000 | [diff] [blame] | 443 | return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required, |
| 444 | /*PrefixSize=*/0), |
Nick Lewycky | 5fa40c3 | 2013-10-01 21:51:38 +0000 | [diff] [blame] | 445 | Callee, ReturnValue, Args); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | RValue |
| 449 | CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E, |
| 450 | const CXXMethodDecl *MD, |
| 451 | ReturnValueSlot ReturnValue) { |
| 452 | assert(MD->isInstance() && |
| 453 | "Trying to emit a member call expr on a static method!"); |
Nico Weber | aad4af6 | 2014-12-03 01:21:41 +0000 | [diff] [blame] | 454 | return EmitCXXMemberOrOperatorMemberCallExpr( |
| 455 | E, MD, ReturnValue, /*HasQualifier=*/false, /*Qualifier=*/nullptr, |
| 456 | /*IsArrow=*/false, E->getArg(0)); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 457 | } |
| 458 | |
Peter Collingbourne | fe88342 | 2011-10-06 18:29:37 +0000 | [diff] [blame] | 459 | RValue CodeGenFunction::EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E, |
| 460 | ReturnValueSlot ReturnValue) { |
| 461 | return CGM.getCUDARuntime().EmitCUDAKernelCallExpr(*this, E, ReturnValue); |
| 462 | } |
| 463 | |
Eli Friedman | fde961d | 2011-10-14 02:27:24 +0000 | [diff] [blame] | 464 | static void EmitNullBaseClassInitialization(CodeGenFunction &CGF, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 465 | Address DestPtr, |
Eli Friedman | fde961d | 2011-10-14 02:27:24 +0000 | [diff] [blame] | 466 | const CXXRecordDecl *Base) { |
| 467 | if (Base->isEmpty()) |
| 468 | return; |
| 469 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 470 | DestPtr = CGF.Builder.CreateElementBitCast(DestPtr, CGF.Int8Ty); |
Eli Friedman | fde961d | 2011-10-14 02:27:24 +0000 | [diff] [blame] | 471 | |
| 472 | const ASTRecordLayout &Layout = CGF.getContext().getASTRecordLayout(Base); |
David Majnemer | 8671c6e | 2015-11-02 09:01:44 +0000 | [diff] [blame] | 473 | CharUnits NVSize = Layout.getNonVirtualSize(); |
| 474 | |
| 475 | // We cannot simply zero-initialize the entire base sub-object if vbptrs are |
| 476 | // present, they are initialized by the most derived class before calling the |
| 477 | // constructor. |
| 478 | SmallVector<std::pair<CharUnits, CharUnits>, 1> Stores; |
| 479 | Stores.emplace_back(CharUnits::Zero(), NVSize); |
| 480 | |
| 481 | // Each store is split by the existence of a vbptr. |
| 482 | CharUnits VBPtrWidth = CGF.getPointerSize(); |
| 483 | std::vector<CharUnits> VBPtrOffsets = |
| 484 | CGF.CGM.getCXXABI().getVBPtrOffsets(Base); |
| 485 | for (CharUnits VBPtrOffset : VBPtrOffsets) { |
David Majnemer | 7f980d8 | 2016-05-12 03:51:52 +0000 | [diff] [blame] | 486 | // Stop before we hit any virtual base pointers located in virtual bases. |
| 487 | if (VBPtrOffset >= NVSize) |
| 488 | break; |
David Majnemer | 8671c6e | 2015-11-02 09:01:44 +0000 | [diff] [blame] | 489 | std::pair<CharUnits, CharUnits> LastStore = Stores.pop_back_val(); |
| 490 | CharUnits LastStoreOffset = LastStore.first; |
| 491 | CharUnits LastStoreSize = LastStore.second; |
| 492 | |
| 493 | CharUnits SplitBeforeOffset = LastStoreOffset; |
| 494 | CharUnits SplitBeforeSize = VBPtrOffset - SplitBeforeOffset; |
| 495 | assert(!SplitBeforeSize.isNegative() && "negative store size!"); |
| 496 | if (!SplitBeforeSize.isZero()) |
| 497 | Stores.emplace_back(SplitBeforeOffset, SplitBeforeSize); |
| 498 | |
| 499 | CharUnits SplitAfterOffset = VBPtrOffset + VBPtrWidth; |
| 500 | CharUnits SplitAfterSize = LastStoreSize - SplitAfterOffset; |
| 501 | assert(!SplitAfterSize.isNegative() && "negative store size!"); |
| 502 | if (!SplitAfterSize.isZero()) |
| 503 | Stores.emplace_back(SplitAfterOffset, SplitAfterSize); |
| 504 | } |
Eli Friedman | fde961d | 2011-10-14 02:27:24 +0000 | [diff] [blame] | 505 | |
| 506 | // If the type contains a pointer to data member we can't memset it to zero. |
| 507 | // Instead, create a null constant and copy it to the destination. |
| 508 | // TODO: there are other patterns besides zero that we can usefully memset, |
| 509 | // like -1, which happens to be the pattern used by member-pointers. |
| 510 | // TODO: isZeroInitializable can be over-conservative in the case where a |
| 511 | // virtual base contains a member pointer. |
David Majnemer | 8671c6e | 2015-11-02 09:01:44 +0000 | [diff] [blame] | 512 | llvm::Constant *NullConstantForBase = CGF.CGM.EmitNullConstantForBase(Base); |
| 513 | if (!NullConstantForBase->isNullValue()) { |
| 514 | llvm::GlobalVariable *NullVariable = new llvm::GlobalVariable( |
| 515 | CGF.CGM.getModule(), NullConstantForBase->getType(), |
| 516 | /*isConstant=*/true, llvm::GlobalVariable::PrivateLinkage, |
| 517 | NullConstantForBase, Twine()); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 518 | |
| 519 | CharUnits Align = std::max(Layout.getNonVirtualAlignment(), |
| 520 | DestPtr.getAlignment()); |
Eli Friedman | fde961d | 2011-10-14 02:27:24 +0000 | [diff] [blame] | 521 | NullVariable->setAlignment(Align.getQuantity()); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 522 | |
| 523 | Address SrcPtr = Address(CGF.EmitCastToVoidPtr(NullVariable), Align); |
Eli Friedman | fde961d | 2011-10-14 02:27:24 +0000 | [diff] [blame] | 524 | |
| 525 | // Get and call the appropriate llvm.memcpy overload. |
David Majnemer | 8671c6e | 2015-11-02 09:01:44 +0000 | [diff] [blame] | 526 | for (std::pair<CharUnits, CharUnits> Store : Stores) { |
| 527 | CharUnits StoreOffset = Store.first; |
| 528 | CharUnits StoreSize = Store.second; |
| 529 | llvm::Value *StoreSizeVal = CGF.CGM.getSize(StoreSize); |
| 530 | CGF.Builder.CreateMemCpy( |
| 531 | CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset), |
| 532 | CGF.Builder.CreateConstInBoundsByteGEP(SrcPtr, StoreOffset), |
| 533 | StoreSizeVal); |
| 534 | } |
| 535 | |
Eli Friedman | fde961d | 2011-10-14 02:27:24 +0000 | [diff] [blame] | 536 | // Otherwise, just memset the whole thing to zero. This is legal |
| 537 | // because in LLVM, all default initializers (other than the ones we just |
| 538 | // handled above) are guaranteed to have a bit pattern of all zeros. |
David Majnemer | 8671c6e | 2015-11-02 09:01:44 +0000 | [diff] [blame] | 539 | } else { |
| 540 | for (std::pair<CharUnits, CharUnits> Store : Stores) { |
| 541 | CharUnits StoreOffset = Store.first; |
| 542 | CharUnits StoreSize = Store.second; |
| 543 | llvm::Value *StoreSizeVal = CGF.CGM.getSize(StoreSize); |
| 544 | CGF.Builder.CreateMemSet( |
| 545 | CGF.Builder.CreateConstInBoundsByteGEP(DestPtr, StoreOffset), |
| 546 | CGF.Builder.getInt8(0), StoreSizeVal); |
| 547 | } |
| 548 | } |
Eli Friedman | fde961d | 2011-10-14 02:27:24 +0000 | [diff] [blame] | 549 | } |
| 550 | |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 551 | void |
John McCall | 7a626f6 | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 552 | CodeGenFunction::EmitCXXConstructExpr(const CXXConstructExpr *E, |
| 553 | AggValueSlot Dest) { |
| 554 | assert(!Dest.isIgnored() && "Must have a destination!"); |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 555 | const CXXConstructorDecl *CD = E->getConstructor(); |
Douglas Gregor | 630c76e | 2010-08-22 16:15:35 +0000 | [diff] [blame] | 556 | |
| 557 | // If we require zero initialization before (or instead of) calling the |
| 558 | // constructor, as can be the case with a non-user-provided default |
Argyrios Kyrtzidis | 0353526 | 2011-04-28 22:57:55 +0000 | [diff] [blame] | 559 | // constructor, emit the zero initialization now, unless destination is |
| 560 | // already zeroed. |
Eli Friedman | fde961d | 2011-10-14 02:27:24 +0000 | [diff] [blame] | 561 | if (E->requiresZeroInitialization() && !Dest.isZeroed()) { |
| 562 | switch (E->getConstructionKind()) { |
| 563 | case CXXConstructExpr::CK_Delegating: |
Eli Friedman | fde961d | 2011-10-14 02:27:24 +0000 | [diff] [blame] | 564 | case CXXConstructExpr::CK_Complete: |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 565 | EmitNullInitialization(Dest.getAddress(), E->getType()); |
Eli Friedman | fde961d | 2011-10-14 02:27:24 +0000 | [diff] [blame] | 566 | break; |
| 567 | case CXXConstructExpr::CK_VirtualBase: |
| 568 | case CXXConstructExpr::CK_NonVirtualBase: |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 569 | EmitNullBaseClassInitialization(*this, Dest.getAddress(), |
| 570 | CD->getParent()); |
Eli Friedman | fde961d | 2011-10-14 02:27:24 +0000 | [diff] [blame] | 571 | break; |
| 572 | } |
| 573 | } |
Douglas Gregor | 630c76e | 2010-08-22 16:15:35 +0000 | [diff] [blame] | 574 | |
| 575 | // If this is a call to a trivial default constructor, do nothing. |
| 576 | if (CD->isTrivial() && CD->isDefaultConstructor()) |
| 577 | return; |
| 578 | |
John McCall | 8ea46b6 | 2010-09-18 00:58:34 +0000 | [diff] [blame] | 579 | // Elide the constructor if we're constructing from a temporary. |
| 580 | // The temporary check is required because Sema sets this on NRVO |
| 581 | // returns. |
Richard Smith | 9c6890a | 2012-11-01 22:30:59 +0000 | [diff] [blame] | 582 | if (getLangOpts().ElideConstructors && E->isElidable()) { |
John McCall | 8ea46b6 | 2010-09-18 00:58:34 +0000 | [diff] [blame] | 583 | assert(getContext().hasSameUnqualifiedType(E->getType(), |
| 584 | E->getArg(0)->getType())); |
John McCall | 7a626f6 | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 585 | if (E->getArg(0)->isTemporaryObject(getContext(), CD->getParent())) { |
| 586 | EmitAggExpr(E->getArg(0), Dest); |
Douglas Gregor | 222cf0e | 2010-05-15 00:13:29 +0000 | [diff] [blame] | 587 | return; |
| 588 | } |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 589 | } |
Douglas Gregor | 630c76e | 2010-08-22 16:15:35 +0000 | [diff] [blame] | 590 | |
Alexey Bataev | e7545b3 | 2016-04-29 09:39:50 +0000 | [diff] [blame] | 591 | if (const ArrayType *arrayType |
| 592 | = getContext().getAsArrayType(E->getType())) { |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 593 | EmitCXXAggrConstructorCall(CD, arrayType, Dest.getAddress(), E); |
John McCall | f677a8e | 2011-07-13 06:10:41 +0000 | [diff] [blame] | 594 | } else { |
Cameron Esfahani | bceca20 | 2011-05-06 21:28:42 +0000 | [diff] [blame] | 595 | CXXCtorType Type = Ctor_Complete; |
Alexis Hunt | 271c368 | 2011-05-03 20:19:28 +0000 | [diff] [blame] | 596 | bool ForVirtualBase = false; |
Douglas Gregor | 6153500 | 2013-01-31 05:50:40 +0000 | [diff] [blame] | 597 | bool Delegating = false; |
| 598 | |
Alexis Hunt | 271c368 | 2011-05-03 20:19:28 +0000 | [diff] [blame] | 599 | switch (E->getConstructionKind()) { |
| 600 | case CXXConstructExpr::CK_Delegating: |
Alexis Hunt | 61bc173 | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 601 | // We should be emitting a constructor; GlobalDecl will assert this |
| 602 | Type = CurGD.getCtorType(); |
Douglas Gregor | 6153500 | 2013-01-31 05:50:40 +0000 | [diff] [blame] | 603 | Delegating = true; |
Alexis Hunt | 271c368 | 2011-05-03 20:19:28 +0000 | [diff] [blame] | 604 | break; |
Alexis Hunt | 61bc173 | 2011-05-01 07:04:31 +0000 | [diff] [blame] | 605 | |
Alexis Hunt | 271c368 | 2011-05-03 20:19:28 +0000 | [diff] [blame] | 606 | case CXXConstructExpr::CK_Complete: |
| 607 | Type = Ctor_Complete; |
| 608 | break; |
| 609 | |
| 610 | case CXXConstructExpr::CK_VirtualBase: |
| 611 | ForVirtualBase = true; |
| 612 | // fall-through |
| 613 | |
| 614 | case CXXConstructExpr::CK_NonVirtualBase: |
| 615 | Type = Ctor_Base; |
| 616 | } |
Anders Carlsson | e11f9ce | 2010-05-02 23:20:53 +0000 | [diff] [blame] | 617 | |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 618 | // Call the constructor. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 619 | EmitCXXConstructorCall(CD, Type, ForVirtualBase, Delegating, |
| 620 | Dest.getAddress(), E); |
Anders Carlsson | e11f9ce | 2010-05-02 23:20:53 +0000 | [diff] [blame] | 621 | } |
Anders Carlsson | 27da15b | 2010-01-01 20:29:01 +0000 | [diff] [blame] | 622 | } |
| 623 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 624 | void CodeGenFunction::EmitSynthesizedCXXCopyCtor(Address Dest, Address Src, |
| 625 | const Expr *Exp) { |
John McCall | 5d41378 | 2010-12-06 08:20:24 +0000 | [diff] [blame] | 626 | if (const ExprWithCleanups *E = dyn_cast<ExprWithCleanups>(Exp)) |
Fariborz Jahanian | e988bda | 2010-11-13 21:53:34 +0000 | [diff] [blame] | 627 | Exp = E->getSubExpr(); |
| 628 | assert(isa<CXXConstructExpr>(Exp) && |
| 629 | "EmitSynthesizedCXXCopyCtor - unknown copy ctor expr"); |
| 630 | const CXXConstructExpr* E = cast<CXXConstructExpr>(Exp); |
| 631 | const CXXConstructorDecl *CD = E->getConstructor(); |
| 632 | RunCleanupsScope Scope(*this); |
| 633 | |
| 634 | // If we require zero initialization before (or instead of) calling the |
| 635 | // constructor, as can be the case with a non-user-provided default |
| 636 | // constructor, emit the zero initialization now. |
| 637 | // FIXME. Do I still need this for a copy ctor synthesis? |
| 638 | if (E->requiresZeroInitialization()) |
| 639 | EmitNullInitialization(Dest, E->getType()); |
| 640 | |
Chandler Carruth | 99da11c | 2010-11-15 13:54:43 +0000 | [diff] [blame] | 641 | assert(!getContext().getAsConstantArrayType(E->getType()) |
| 642 | && "EmitSynthesizedCXXCopyCtor - Copied-in Array"); |
Alexey Samsonov | 525bf65 | 2014-08-25 21:58:56 +0000 | [diff] [blame] | 643 | EmitSynthesizedCXXCopyCtorCall(CD, Dest, Src, E); |
Fariborz Jahanian | e988bda | 2010-11-13 21:53:34 +0000 | [diff] [blame] | 644 | } |
| 645 | |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 646 | static CharUnits CalculateCookiePadding(CodeGenFunction &CGF, |
| 647 | const CXXNewExpr *E) { |
Anders Carlsson | 21122cf | 2009-12-13 20:04:38 +0000 | [diff] [blame] | 648 | if (!E->isArray()) |
Ken Dyck | 3eb55cf | 2010-01-26 19:44:24 +0000 | [diff] [blame] | 649 | return CharUnits::Zero(); |
Anders Carlsson | 21122cf | 2009-12-13 20:04:38 +0000 | [diff] [blame] | 650 | |
John McCall | 7ec4b43 | 2011-05-16 01:05:12 +0000 | [diff] [blame] | 651 | // No cookie is required if the operator new[] being used is the |
| 652 | // reserved placement operator new[]. |
| 653 | if (E->getOperatorNew()->isReservedGlobalPlacementOperator()) |
John McCall | aa4149a | 2010-08-23 01:17:59 +0000 | [diff] [blame] | 654 | return CharUnits::Zero(); |
| 655 | |
John McCall | 284c48f | 2011-01-27 09:37:56 +0000 | [diff] [blame] | 656 | return CGF.CGM.getCXXABI().GetArrayCookieSize(E); |
Anders Carlsson | b4bd066 | 2009-09-23 16:07:23 +0000 | [diff] [blame] | 657 | } |
| 658 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 659 | static llvm::Value *EmitCXXNewAllocSize(CodeGenFunction &CGF, |
| 660 | const CXXNewExpr *e, |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 661 | unsigned minElements, |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 662 | llvm::Value *&numElements, |
| 663 | llvm::Value *&sizeWithoutCookie) { |
| 664 | QualType type = e->getAllocatedType(); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 665 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 666 | if (!e->isArray()) { |
| 667 | CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); |
| 668 | sizeWithoutCookie |
| 669 | = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity()); |
| 670 | return sizeWithoutCookie; |
Douglas Gregor | 05fc5be | 2010-07-21 01:10:17 +0000 | [diff] [blame] | 671 | } |
Anders Carlsson | b4bd066 | 2009-09-23 16:07:23 +0000 | [diff] [blame] | 672 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 673 | // The width of size_t. |
| 674 | unsigned sizeWidth = CGF.SizeTy->getBitWidth(); |
| 675 | |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 676 | // Figure out the cookie size. |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 677 | llvm::APInt cookieSize(sizeWidth, |
| 678 | CalculateCookiePadding(CGF, e).getQuantity()); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 679 | |
Anders Carlsson | b4bd066 | 2009-09-23 16:07:23 +0000 | [diff] [blame] | 680 | // Emit the array size expression. |
Argyrios Kyrtzidis | 7648fb4 | 2010-08-26 15:23:38 +0000 | [diff] [blame] | 681 | // We multiply the size of all dimensions for NumElements. |
| 682 | // e.g for 'int[2][3]', ElemType is 'int' and NumElements is 6. |
Nick Lewycky | 0752762 | 2017-02-13 23:49:55 +0000 | [diff] [blame] | 683 | numElements = CGF.CGM.EmitConstantExpr(e->getArraySize(), |
| 684 | CGF.getContext().getSizeType(), &CGF); |
| 685 | if (!numElements) |
| 686 | numElements = CGF.EmitScalarExpr(e->getArraySize()); |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 687 | assert(isa<llvm::IntegerType>(numElements->getType())); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 688 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 689 | // The number of elements can be have an arbitrary integer type; |
| 690 | // essentially, we need to multiply it by a constant factor, add a |
| 691 | // cookie size, and verify that the result is representable as a |
| 692 | // size_t. That's just a gloss, though, and it's wrong in one |
| 693 | // important way: if the count is negative, it's an error even if |
| 694 | // the cookie size would bring the total size >= 0. |
Douglas Gregor | 6ab2fa8 | 2011-05-20 16:38:50 +0000 | [diff] [blame] | 695 | bool isSigned |
| 696 | = e->getArraySize()->getType()->isSignedIntegerOrEnumerationType(); |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 697 | llvm::IntegerType *numElementsType |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 698 | = cast<llvm::IntegerType>(numElements->getType()); |
| 699 | unsigned numElementsWidth = numElementsType->getBitWidth(); |
| 700 | |
| 701 | // Compute the constant factor. |
| 702 | llvm::APInt arraySizeMultiplier(sizeWidth, 1); |
Argyrios Kyrtzidis | 7648fb4 | 2010-08-26 15:23:38 +0000 | [diff] [blame] | 703 | while (const ConstantArrayType *CAT |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 704 | = CGF.getContext().getAsConstantArrayType(type)) { |
| 705 | type = CAT->getElementType(); |
| 706 | arraySizeMultiplier *= CAT->getSize(); |
Argyrios Kyrtzidis | 7648fb4 | 2010-08-26 15:23:38 +0000 | [diff] [blame] | 707 | } |
| 708 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 709 | CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); |
| 710 | llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity()); |
| 711 | typeSizeMultiplier *= arraySizeMultiplier; |
| 712 | |
| 713 | // This will be a size_t. |
| 714 | llvm::Value *size; |
Chris Lattner | f2f3870 | 2010-07-20 21:07:09 +0000 | [diff] [blame] | 715 | |
Chris Lattner | 32ac583 | 2010-07-20 21:55:52 +0000 | [diff] [blame] | 716 | // If someone is doing 'new int[42]' there is no need to do a dynamic check. |
| 717 | // Don't bloat the -O0 code. |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 718 | if (llvm::ConstantInt *numElementsC = |
| 719 | dyn_cast<llvm::ConstantInt>(numElements)) { |
| 720 | const llvm::APInt &count = numElementsC->getValue(); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 721 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 722 | bool hasAnyOverflow = false; |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 723 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 724 | // If 'count' was a negative number, it's an overflow. |
| 725 | if (isSigned && count.isNegative()) |
| 726 | hasAnyOverflow = true; |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 727 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 728 | // We want to do all this arithmetic in size_t. If numElements is |
| 729 | // wider than that, check whether it's already too big, and if so, |
| 730 | // overflow. |
| 731 | else if (numElementsWidth > sizeWidth && |
| 732 | numElementsWidth - sizeWidth > count.countLeadingZeros()) |
| 733 | hasAnyOverflow = true; |
| 734 | |
| 735 | // Okay, compute a count at the right width. |
| 736 | llvm::APInt adjustedCount = count.zextOrTrunc(sizeWidth); |
| 737 | |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 738 | // If there is a brace-initializer, we cannot allocate fewer elements than |
| 739 | // there are initializers. If we do, that's treated like an overflow. |
| 740 | if (adjustedCount.ult(minElements)) |
| 741 | hasAnyOverflow = true; |
| 742 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 743 | // Scale numElements by that. This might overflow, but we don't |
| 744 | // care because it only overflows if allocationSize does, too, and |
| 745 | // if that overflows then we shouldn't use this. |
| 746 | numElements = llvm::ConstantInt::get(CGF.SizeTy, |
| 747 | adjustedCount * arraySizeMultiplier); |
| 748 | |
| 749 | // Compute the size before cookie, and track whether it overflowed. |
| 750 | bool overflow; |
| 751 | llvm::APInt allocationSize |
| 752 | = adjustedCount.umul_ov(typeSizeMultiplier, overflow); |
| 753 | hasAnyOverflow |= overflow; |
| 754 | |
| 755 | // Add in the cookie, and check whether it's overflowed. |
| 756 | if (cookieSize != 0) { |
| 757 | // Save the current size without a cookie. This shouldn't be |
| 758 | // used if there was overflow. |
| 759 | sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize); |
| 760 | |
| 761 | allocationSize = allocationSize.uadd_ov(cookieSize, overflow); |
| 762 | hasAnyOverflow |= overflow; |
| 763 | } |
| 764 | |
| 765 | // On overflow, produce a -1 so operator new will fail. |
Aaron Ballman | 455f42c | 2014-08-28 17:24:14 +0000 | [diff] [blame] | 766 | if (hasAnyOverflow) { |
| 767 | size = llvm::Constant::getAllOnesValue(CGF.SizeTy); |
| 768 | } else { |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 769 | size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize); |
Aaron Ballman | 455f42c | 2014-08-28 17:24:14 +0000 | [diff] [blame] | 770 | } |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 771 | |
| 772 | // Otherwise, we might need to use the overflow intrinsics. |
| 773 | } else { |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 774 | // There are up to five conditions we need to test for: |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 775 | // 1) if isSigned, we need to check whether numElements is negative; |
| 776 | // 2) if numElementsWidth > sizeWidth, we need to check whether |
| 777 | // numElements is larger than something representable in size_t; |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 778 | // 3) if minElements > 0, we need to check whether numElements is smaller |
| 779 | // than that. |
| 780 | // 4) we need to compute |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 781 | // sizeWithoutCookie := numElements * typeSizeMultiplier |
| 782 | // and check whether it overflows; and |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 783 | // 5) if we need a cookie, we need to compute |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 784 | // size := sizeWithoutCookie + cookieSize |
| 785 | // and check whether it overflows. |
| 786 | |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 787 | llvm::Value *hasOverflow = nullptr; |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 788 | |
| 789 | // If numElementsWidth > sizeWidth, then one way or another, we're |
| 790 | // going to have to do a comparison for (2), and this happens to |
| 791 | // take care of (1), too. |
| 792 | if (numElementsWidth > sizeWidth) { |
| 793 | llvm::APInt threshold(numElementsWidth, 1); |
| 794 | threshold <<= sizeWidth; |
| 795 | |
| 796 | llvm::Value *thresholdV |
| 797 | = llvm::ConstantInt::get(numElementsType, threshold); |
| 798 | |
| 799 | hasOverflow = CGF.Builder.CreateICmpUGE(numElements, thresholdV); |
| 800 | numElements = CGF.Builder.CreateTrunc(numElements, CGF.SizeTy); |
| 801 | |
| 802 | // Otherwise, if we're signed, we want to sext up to size_t. |
| 803 | } else if (isSigned) { |
| 804 | if (numElementsWidth < sizeWidth) |
| 805 | numElements = CGF.Builder.CreateSExt(numElements, CGF.SizeTy); |
| 806 | |
| 807 | // If there's a non-1 type size multiplier, then we can do the |
| 808 | // signedness check at the same time as we do the multiply |
| 809 | // because a negative number times anything will cause an |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 810 | // unsigned overflow. Otherwise, we have to do it here. But at least |
| 811 | // in this case, we can subsume the >= minElements check. |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 812 | if (typeSizeMultiplier == 1) |
| 813 | hasOverflow = CGF.Builder.CreateICmpSLT(numElements, |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 814 | llvm::ConstantInt::get(CGF.SizeTy, minElements)); |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 815 | |
| 816 | // Otherwise, zext up to size_t if necessary. |
| 817 | } else if (numElementsWidth < sizeWidth) { |
| 818 | numElements = CGF.Builder.CreateZExt(numElements, CGF.SizeTy); |
| 819 | } |
| 820 | |
| 821 | assert(numElements->getType() == CGF.SizeTy); |
| 822 | |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 823 | if (minElements) { |
| 824 | // Don't allow allocation of fewer elements than we have initializers. |
| 825 | if (!hasOverflow) { |
| 826 | hasOverflow = CGF.Builder.CreateICmpULT(numElements, |
| 827 | llvm::ConstantInt::get(CGF.SizeTy, minElements)); |
| 828 | } else if (numElementsWidth > sizeWidth) { |
| 829 | // The other existing overflow subsumes this check. |
| 830 | // We do an unsigned comparison, since any signed value < -1 is |
| 831 | // taken care of either above or below. |
| 832 | hasOverflow = CGF.Builder.CreateOr(hasOverflow, |
| 833 | CGF.Builder.CreateICmpULT(numElements, |
| 834 | llvm::ConstantInt::get(CGF.SizeTy, minElements))); |
| 835 | } |
| 836 | } |
| 837 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 838 | size = numElements; |
| 839 | |
| 840 | // Multiply by the type size if necessary. This multiplier |
| 841 | // includes all the factors for nested arrays. |
| 842 | // |
| 843 | // This step also causes numElements to be scaled up by the |
| 844 | // nested-array factor if necessary. Overflow on this computation |
| 845 | // can be ignored because the result shouldn't be used if |
| 846 | // allocation fails. |
| 847 | if (typeSizeMultiplier != 1) { |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 848 | llvm::Value *umul_with_overflow |
Benjamin Kramer | 8d375ce | 2011-07-14 17:45:50 +0000 | [diff] [blame] | 849 | = CGF.CGM.getIntrinsic(llvm::Intrinsic::umul_with_overflow, CGF.SizeTy); |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 850 | |
| 851 | llvm::Value *tsmV = |
| 852 | llvm::ConstantInt::get(CGF.SizeTy, typeSizeMultiplier); |
| 853 | llvm::Value *result = |
David Blaikie | 43f9bb7 | 2015-05-18 22:14:03 +0000 | [diff] [blame] | 854 | CGF.Builder.CreateCall(umul_with_overflow, {size, tsmV}); |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 855 | |
| 856 | llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1); |
| 857 | if (hasOverflow) |
| 858 | hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed); |
| 859 | else |
| 860 | hasOverflow = overflowed; |
| 861 | |
| 862 | size = CGF.Builder.CreateExtractValue(result, 0); |
| 863 | |
| 864 | // Also scale up numElements by the array size multiplier. |
| 865 | if (arraySizeMultiplier != 1) { |
| 866 | // If the base element type size is 1, then we can re-use the |
| 867 | // multiply we just did. |
| 868 | if (typeSize.isOne()) { |
| 869 | assert(arraySizeMultiplier == typeSizeMultiplier); |
| 870 | numElements = size; |
| 871 | |
| 872 | // Otherwise we need a separate multiply. |
| 873 | } else { |
| 874 | llvm::Value *asmV = |
| 875 | llvm::ConstantInt::get(CGF.SizeTy, arraySizeMultiplier); |
| 876 | numElements = CGF.Builder.CreateMul(numElements, asmV); |
| 877 | } |
| 878 | } |
| 879 | } else { |
| 880 | // numElements doesn't need to be scaled. |
| 881 | assert(arraySizeMultiplier == 1); |
Chris Lattner | 32ac583 | 2010-07-20 21:55:52 +0000 | [diff] [blame] | 882 | } |
| 883 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 884 | // Add in the cookie size if necessary. |
| 885 | if (cookieSize != 0) { |
| 886 | sizeWithoutCookie = size; |
| 887 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 888 | llvm::Value *uadd_with_overflow |
Benjamin Kramer | 8d375ce | 2011-07-14 17:45:50 +0000 | [diff] [blame] | 889 | = CGF.CGM.getIntrinsic(llvm::Intrinsic::uadd_with_overflow, CGF.SizeTy); |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 890 | |
| 891 | llvm::Value *cookieSizeV = llvm::ConstantInt::get(CGF.SizeTy, cookieSize); |
| 892 | llvm::Value *result = |
David Blaikie | 43f9bb7 | 2015-05-18 22:14:03 +0000 | [diff] [blame] | 893 | CGF.Builder.CreateCall(uadd_with_overflow, {size, cookieSizeV}); |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 894 | |
| 895 | llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1); |
| 896 | if (hasOverflow) |
| 897 | hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed); |
| 898 | else |
| 899 | hasOverflow = overflowed; |
| 900 | |
| 901 | size = CGF.Builder.CreateExtractValue(result, 0); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 902 | } |
Anders Carlsson | b4bd066 | 2009-09-23 16:07:23 +0000 | [diff] [blame] | 903 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 904 | // If we had any possibility of dynamic overflow, make a select to |
| 905 | // overwrite 'size' with an all-ones value, which should cause |
| 906 | // operator new to throw. |
| 907 | if (hasOverflow) |
Aaron Ballman | 455f42c | 2014-08-28 17:24:14 +0000 | [diff] [blame] | 908 | size = CGF.Builder.CreateSelect(hasOverflow, |
| 909 | llvm::Constant::getAllOnesValue(CGF.SizeTy), |
| 910 | size); |
Chris Lattner | 32ac583 | 2010-07-20 21:55:52 +0000 | [diff] [blame] | 911 | } |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 912 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 913 | if (cookieSize == 0) |
| 914 | sizeWithoutCookie = size; |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 915 | else |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 916 | assert(sizeWithoutCookie && "didn't set sizeWithoutCookie?"); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 917 | |
John McCall | 036f2f6 | 2011-05-15 07:14:44 +0000 | [diff] [blame] | 918 | return size; |
Anders Carlsson | b4bd066 | 2009-09-23 16:07:23 +0000 | [diff] [blame] | 919 | } |
| 920 | |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 921 | static void StoreAnyExprIntoOneUnit(CodeGenFunction &CGF, const Expr *Init, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 922 | QualType AllocType, Address NewPtr) { |
Richard Smith | 1c96bc5 | 2013-12-11 01:40:16 +0000 | [diff] [blame] | 923 | // FIXME: Refactor with EmitExprAsInit. |
John McCall | 47fb950 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 924 | switch (CGF.getEvaluationKind(AllocType)) { |
| 925 | case TEK_Scalar: |
David Blaikie | a2c1124 | 2014-12-10 19:04:09 +0000 | [diff] [blame] | 926 | CGF.EmitScalarInit(Init, nullptr, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 927 | CGF.MakeAddrLValue(NewPtr, AllocType), false); |
John McCall | 47fb950 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 928 | return; |
| 929 | case TEK_Complex: |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 930 | CGF.EmitComplexExprIntoLValue(Init, CGF.MakeAddrLValue(NewPtr, AllocType), |
John McCall | 47fb950 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 931 | /*isInit*/ true); |
| 932 | return; |
| 933 | case TEK_Aggregate: { |
John McCall | 7a626f6 | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 934 | AggValueSlot Slot |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 935 | = AggValueSlot::forAddr(NewPtr, AllocType.getQualifiers(), |
John McCall | 8d6fc95 | 2011-08-25 20:40:09 +0000 | [diff] [blame] | 936 | AggValueSlot::IsDestructed, |
John McCall | 46759f4 | 2011-08-26 07:31:35 +0000 | [diff] [blame] | 937 | AggValueSlot::DoesNotNeedGCBarriers, |
Chad Rosier | 615ed1a | 2012-03-29 17:37:10 +0000 | [diff] [blame] | 938 | AggValueSlot::IsNotAliased); |
John McCall | 7a626f6 | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 939 | CGF.EmitAggExpr(Init, Slot); |
John McCall | 47fb950 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 940 | return; |
John McCall | 7a626f6 | 2010-09-15 10:14:12 +0000 | [diff] [blame] | 941 | } |
John McCall | 47fb950 | 2013-03-07 21:37:08 +0000 | [diff] [blame] | 942 | } |
| 943 | llvm_unreachable("bad evaluation kind"); |
Fariborz Jahanian | d5202e0 | 2010-06-25 18:26:07 +0000 | [diff] [blame] | 944 | } |
| 945 | |
David Blaikie | fb901c7a | 2015-04-04 15:12:29 +0000 | [diff] [blame] | 946 | void CodeGenFunction::EmitNewArrayInitializer( |
| 947 | const CXXNewExpr *E, QualType ElementType, llvm::Type *ElementTy, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 948 | Address BeginPtr, llvm::Value *NumElements, |
David Blaikie | fb901c7a | 2015-04-04 15:12:29 +0000 | [diff] [blame] | 949 | llvm::Value *AllocSizeWithoutCookie) { |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 950 | // If we have a type with trivial initialization and no initializer, |
| 951 | // there's nothing to do. |
Sebastian Redl | 6047f07 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 952 | if (!E->hasInitializer()) |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 953 | return; |
John McCall | 99210dc | 2011-09-15 06:49:18 +0000 | [diff] [blame] | 954 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 955 | Address CurPtr = BeginPtr; |
John McCall | 99210dc | 2011-09-15 06:49:18 +0000 | [diff] [blame] | 956 | |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 957 | unsigned InitListElements = 0; |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 958 | |
| 959 | const Expr *Init = E->getInitializer(); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 960 | Address EndOfInit = Address::invalid(); |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 961 | QualType::DestructionKind DtorKind = ElementType.isDestructedType(); |
| 962 | EHScopeStack::stable_iterator Cleanup; |
| 963 | llvm::Instruction *CleanupDominator = nullptr; |
Richard Smith | 1c96bc5 | 2013-12-11 01:40:16 +0000 | [diff] [blame] | 964 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 965 | CharUnits ElementSize = getContext().getTypeSizeInChars(ElementType); |
| 966 | CharUnits ElementAlign = |
| 967 | BeginPtr.getAlignment().alignmentOfArrayElement(ElementSize); |
| 968 | |
Richard Smith | 0511d23 | 2016-10-05 22:41:02 +0000 | [diff] [blame] | 969 | // Attempt to perform zero-initialization using memset. |
| 970 | auto TryMemsetInitialization = [&]() -> bool { |
| 971 | // FIXME: If the type is a pointer-to-data-member under the Itanium ABI, |
| 972 | // we can initialize with a memset to -1. |
| 973 | if (!CGM.getTypes().isZeroInitializable(ElementType)) |
| 974 | return false; |
| 975 | |
| 976 | // Optimization: since zero initialization will just set the memory |
| 977 | // to all zeroes, generate a single memset to do it in one shot. |
| 978 | |
| 979 | // Subtract out the size of any elements we've already initialized. |
| 980 | auto *RemainingSize = AllocSizeWithoutCookie; |
| 981 | if (InitListElements) { |
| 982 | // We know this can't overflow; we check this when doing the allocation. |
| 983 | auto *InitializedSize = llvm::ConstantInt::get( |
| 984 | RemainingSize->getType(), |
| 985 | getContext().getTypeSizeInChars(ElementType).getQuantity() * |
| 986 | InitListElements); |
| 987 | RemainingSize = Builder.CreateSub(RemainingSize, InitializedSize); |
| 988 | } |
| 989 | |
| 990 | // Create the memset. |
| 991 | Builder.CreateMemSet(CurPtr, Builder.getInt8(0), RemainingSize, false); |
| 992 | return true; |
| 993 | }; |
| 994 | |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 995 | // If the initializer is an initializer list, first do the explicit elements. |
| 996 | if (const InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) { |
Richard Smith | 0511d23 | 2016-10-05 22:41:02 +0000 | [diff] [blame] | 997 | // Initializing from a (braced) string literal is a special case; the init |
| 998 | // list element does not initialize a (single) array element. |
| 999 | if (ILE->isStringLiteralInit()) { |
| 1000 | // Initialize the initial portion of length equal to that of the string |
| 1001 | // literal. The allocation must be for at least this much; we emitted a |
| 1002 | // check for that earlier. |
| 1003 | AggValueSlot Slot = |
| 1004 | AggValueSlot::forAddr(CurPtr, ElementType.getQualifiers(), |
| 1005 | AggValueSlot::IsDestructed, |
| 1006 | AggValueSlot::DoesNotNeedGCBarriers, |
| 1007 | AggValueSlot::IsNotAliased); |
| 1008 | EmitAggExpr(ILE->getInit(0), Slot); |
| 1009 | |
| 1010 | // Move past these elements. |
| 1011 | InitListElements = |
| 1012 | cast<ConstantArrayType>(ILE->getType()->getAsArrayTypeUnsafe()) |
| 1013 | ->getSize().getZExtValue(); |
| 1014 | CurPtr = |
| 1015 | Address(Builder.CreateInBoundsGEP(CurPtr.getPointer(), |
| 1016 | Builder.getSize(InitListElements), |
| 1017 | "string.init.end"), |
| 1018 | CurPtr.getAlignment().alignmentAtOffset(InitListElements * |
| 1019 | ElementSize)); |
| 1020 | |
| 1021 | // Zero out the rest, if any remain. |
| 1022 | llvm::ConstantInt *ConstNum = dyn_cast<llvm::ConstantInt>(NumElements); |
| 1023 | if (!ConstNum || !ConstNum->equalsInt(InitListElements)) { |
| 1024 | bool OK = TryMemsetInitialization(); |
| 1025 | (void)OK; |
| 1026 | assert(OK && "couldn't memset character type?"); |
| 1027 | } |
| 1028 | return; |
| 1029 | } |
| 1030 | |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1031 | InitListElements = ILE->getNumInits(); |
Chad Rosier | f62290a | 2012-02-24 00:13:55 +0000 | [diff] [blame] | 1032 | |
Richard Smith | 1c96bc5 | 2013-12-11 01:40:16 +0000 | [diff] [blame] | 1033 | // If this is a multi-dimensional array new, we will initialize multiple |
| 1034 | // elements with each init list element. |
| 1035 | QualType AllocType = E->getAllocatedType(); |
| 1036 | if (const ConstantArrayType *CAT = dyn_cast_or_null<ConstantArrayType>( |
| 1037 | AllocType->getAsArrayTypeUnsafe())) { |
David Blaikie | fb901c7a | 2015-04-04 15:12:29 +0000 | [diff] [blame] | 1038 | ElementTy = ConvertTypeForMem(AllocType); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1039 | CurPtr = Builder.CreateElementBitCast(CurPtr, ElementTy); |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1040 | InitListElements *= getContext().getConstantArrayElementCount(CAT); |
Richard Smith | 1c96bc5 | 2013-12-11 01:40:16 +0000 | [diff] [blame] | 1041 | } |
| 1042 | |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1043 | // Enter a partial-destruction Cleanup if necessary. |
| 1044 | if (needsEHCleanup(DtorKind)) { |
| 1045 | // In principle we could tell the Cleanup where we are more |
Chad Rosier | f62290a | 2012-02-24 00:13:55 +0000 | [diff] [blame] | 1046 | // directly, but the control flow can get so varied here that it |
| 1047 | // would actually be quite complex. Therefore we go through an |
| 1048 | // alloca. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1049 | EndOfInit = CreateTempAlloca(BeginPtr.getType(), getPointerAlign(), |
| 1050 | "array.init.end"); |
| 1051 | CleanupDominator = Builder.CreateStore(BeginPtr.getPointer(), EndOfInit); |
| 1052 | pushIrregularPartialArrayCleanup(BeginPtr.getPointer(), EndOfInit, |
| 1053 | ElementType, ElementAlign, |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1054 | getDestroyer(DtorKind)); |
| 1055 | Cleanup = EHStack.stable_begin(); |
Chad Rosier | f62290a | 2012-02-24 00:13:55 +0000 | [diff] [blame] | 1056 | } |
| 1057 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1058 | CharUnits StartAlign = CurPtr.getAlignment(); |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 1059 | for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) { |
Chad Rosier | f62290a | 2012-02-24 00:13:55 +0000 | [diff] [blame] | 1060 | // Tell the cleanup that it needs to destroy up to this |
| 1061 | // element. TODO: some of these stores can be trivially |
| 1062 | // observed to be unnecessary. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1063 | if (EndOfInit.isValid()) { |
| 1064 | auto FinishedPtr = |
| 1065 | Builder.CreateBitCast(CurPtr.getPointer(), BeginPtr.getType()); |
| 1066 | Builder.CreateStore(FinishedPtr, EndOfInit); |
| 1067 | } |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1068 | // FIXME: If the last initializer is an incomplete initializer list for |
| 1069 | // an array, and we have an array filler, we can fold together the two |
| 1070 | // initialization loops. |
Richard Smith | 1c96bc5 | 2013-12-11 01:40:16 +0000 | [diff] [blame] | 1071 | StoreAnyExprIntoOneUnit(*this, ILE->getInit(i), |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1072 | ILE->getInit(i)->getType(), CurPtr); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1073 | CurPtr = Address(Builder.CreateInBoundsGEP(CurPtr.getPointer(), |
| 1074 | Builder.getSize(1), |
| 1075 | "array.exp.next"), |
| 1076 | StartAlign.alignmentAtOffset((i + 1) * ElementSize)); |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 1077 | } |
| 1078 | |
| 1079 | // The remaining elements are filled with the array filler expression. |
| 1080 | Init = ILE->getArrayFiller(); |
Richard Smith | 1c96bc5 | 2013-12-11 01:40:16 +0000 | [diff] [blame] | 1081 | |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1082 | // Extract the initializer for the individual array elements by pulling |
| 1083 | // out the array filler from all the nested initializer lists. This avoids |
| 1084 | // generating a nested loop for the initialization. |
| 1085 | while (Init && Init->getType()->isConstantArrayType()) { |
| 1086 | auto *SubILE = dyn_cast<InitListExpr>(Init); |
| 1087 | if (!SubILE) |
| 1088 | break; |
| 1089 | assert(SubILE->getNumInits() == 0 && "explicit inits in array filler?"); |
| 1090 | Init = SubILE->getArrayFiller(); |
| 1091 | } |
| 1092 | |
| 1093 | // Switch back to initializing one base element at a time. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1094 | CurPtr = Builder.CreateBitCast(CurPtr, BeginPtr.getType()); |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 1095 | } |
| 1096 | |
Richard Smith | 454a7cd | 2014-06-03 08:26:00 +0000 | [diff] [blame] | 1097 | // If all elements have already been initialized, skip any further |
| 1098 | // initialization. |
| 1099 | llvm::ConstantInt *ConstNum = dyn_cast<llvm::ConstantInt>(NumElements); |
| 1100 | if (ConstNum && ConstNum->getZExtValue() <= InitListElements) { |
| 1101 | // If there was a Cleanup, deactivate it. |
| 1102 | if (CleanupDominator) |
| 1103 | DeactivateCleanupBlock(Cleanup, CleanupDominator); |
| 1104 | return; |
| 1105 | } |
| 1106 | |
| 1107 | assert(Init && "have trailing elements to initialize but no initializer"); |
| 1108 | |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1109 | // If this is a constructor call, try to optimize it out, and failing that |
| 1110 | // emit a single loop to initialize all remaining elements. |
Richard Smith | 454a7cd | 2014-06-03 08:26:00 +0000 | [diff] [blame] | 1111 | if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init)) { |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1112 | CXXConstructorDecl *Ctor = CCE->getConstructor(); |
| 1113 | if (Ctor->isTrivial()) { |
| 1114 | // If new expression did not specify value-initialization, then there |
| 1115 | // is no initialization. |
| 1116 | if (!CCE->requiresZeroInitialization() || Ctor->getParent()->isEmpty()) |
| 1117 | return; |
| 1118 | |
| 1119 | if (TryMemsetInitialization()) |
| 1120 | return; |
| 1121 | } |
| 1122 | |
| 1123 | // Store the new Cleanup position for irregular Cleanups. |
| 1124 | // |
| 1125 | // FIXME: Share this cleanup with the constructor call emission rather than |
| 1126 | // having it create a cleanup of its own. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1127 | if (EndOfInit.isValid()) |
| 1128 | Builder.CreateStore(CurPtr.getPointer(), EndOfInit); |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1129 | |
| 1130 | // Emit a constructor call loop to initialize the remaining elements. |
| 1131 | if (InitListElements) |
| 1132 | NumElements = Builder.CreateSub( |
| 1133 | NumElements, |
| 1134 | llvm::ConstantInt::get(NumElements->getType(), InitListElements)); |
Alexey Samsonov | 70b9c01 | 2014-08-21 20:26:47 +0000 | [diff] [blame] | 1135 | EmitCXXAggrConstructorCall(Ctor, NumElements, CurPtr, CCE, |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1136 | CCE->requiresZeroInitialization()); |
Chandler Carruth | e6c980c | 2014-05-03 09:16:57 +0000 | [diff] [blame] | 1137 | return; |
| 1138 | } |
| 1139 | |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1140 | // If this is value-initialization, we can usually use memset. |
| 1141 | ImplicitValueInitExpr IVIE(ElementType); |
Richard Smith | 454a7cd | 2014-06-03 08:26:00 +0000 | [diff] [blame] | 1142 | if (isa<ImplicitValueInitExpr>(Init)) { |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1143 | if (TryMemsetInitialization()) |
| 1144 | return; |
| 1145 | |
| 1146 | // Switch to an ImplicitValueInitExpr for the element type. This handles |
| 1147 | // only one case: multidimensional array new of pointers to members. In |
| 1148 | // all other cases, we already have an initializer for the array element. |
| 1149 | Init = &IVIE; |
| 1150 | } |
| 1151 | |
| 1152 | // At this point we should have found an initializer for the individual |
| 1153 | // elements of the array. |
| 1154 | assert(getContext().hasSameUnqualifiedType(ElementType, Init->getType()) && |
| 1155 | "got wrong type of element to initialize"); |
| 1156 | |
Richard Smith | 454a7cd | 2014-06-03 08:26:00 +0000 | [diff] [blame] | 1157 | // If we have an empty initializer list, we can usually use memset. |
| 1158 | if (auto *ILE = dyn_cast<InitListExpr>(Init)) |
| 1159 | if (ILE->getNumInits() == 0 && TryMemsetInitialization()) |
| 1160 | return; |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1161 | |
Yunzhong Gao | cb77930 | 2015-06-10 00:27:52 +0000 | [diff] [blame] | 1162 | // If we have a struct whose every field is value-initialized, we can |
| 1163 | // usually use memset. |
| 1164 | if (auto *ILE = dyn_cast<InitListExpr>(Init)) { |
| 1165 | if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { |
| 1166 | if (RType->getDecl()->isStruct()) { |
Richard Smith | 872307e | 2016-03-08 22:17:41 +0000 | [diff] [blame] | 1167 | unsigned NumElements = 0; |
| 1168 | if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RType->getDecl())) |
| 1169 | NumElements = CXXRD->getNumBases(); |
Yunzhong Gao | cb77930 | 2015-06-10 00:27:52 +0000 | [diff] [blame] | 1170 | for (auto *Field : RType->getDecl()->fields()) |
| 1171 | if (!Field->isUnnamedBitfield()) |
Richard Smith | 872307e | 2016-03-08 22:17:41 +0000 | [diff] [blame] | 1172 | ++NumElements; |
| 1173 | // FIXME: Recurse into nested InitListExprs. |
| 1174 | if (ILE->getNumInits() == NumElements) |
Yunzhong Gao | cb77930 | 2015-06-10 00:27:52 +0000 | [diff] [blame] | 1175 | for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) |
| 1176 | if (!isa<ImplicitValueInitExpr>(ILE->getInit(i))) |
Richard Smith | 872307e | 2016-03-08 22:17:41 +0000 | [diff] [blame] | 1177 | --NumElements; |
| 1178 | if (ILE->getNumInits() == NumElements && TryMemsetInitialization()) |
Yunzhong Gao | cb77930 | 2015-06-10 00:27:52 +0000 | [diff] [blame] | 1179 | return; |
| 1180 | } |
| 1181 | } |
| 1182 | } |
| 1183 | |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1184 | // Create the loop blocks. |
| 1185 | llvm::BasicBlock *EntryBB = Builder.GetInsertBlock(); |
| 1186 | llvm::BasicBlock *LoopBB = createBasicBlock("new.loop"); |
| 1187 | llvm::BasicBlock *ContBB = createBasicBlock("new.loop.end"); |
| 1188 | |
| 1189 | // Find the end of the array, hoisted out of the loop. |
| 1190 | llvm::Value *EndPtr = |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1191 | Builder.CreateInBoundsGEP(BeginPtr.getPointer(), NumElements, "array.end"); |
John McCall | 99210dc | 2011-09-15 06:49:18 +0000 | [diff] [blame] | 1192 | |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 1193 | // If the number of elements isn't constant, we have to now check if there is |
| 1194 | // anything left to initialize. |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1195 | if (!ConstNum) { |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1196 | llvm::Value *IsEmpty = |
| 1197 | Builder.CreateICmpEQ(CurPtr.getPointer(), EndPtr, "array.isempty"); |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1198 | Builder.CreateCondBr(IsEmpty, ContBB, LoopBB); |
John McCall | 99210dc | 2011-09-15 06:49:18 +0000 | [diff] [blame] | 1199 | } |
| 1200 | |
| 1201 | // Enter the loop. |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1202 | EmitBlock(LoopBB); |
John McCall | 99210dc | 2011-09-15 06:49:18 +0000 | [diff] [blame] | 1203 | |
| 1204 | // Set up the current-element phi. |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1205 | llvm::PHINode *CurPtrPhi = |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1206 | Builder.CreatePHI(CurPtr.getType(), 2, "array.cur"); |
| 1207 | CurPtrPhi->addIncoming(CurPtr.getPointer(), EntryBB); |
| 1208 | |
| 1209 | CurPtr = Address(CurPtrPhi, ElementAlign); |
John McCall | 99210dc | 2011-09-15 06:49:18 +0000 | [diff] [blame] | 1210 | |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1211 | // Store the new Cleanup position for irregular Cleanups. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1212 | if (EndOfInit.isValid()) |
| 1213 | Builder.CreateStore(CurPtr.getPointer(), EndOfInit); |
Chad Rosier | f62290a | 2012-02-24 00:13:55 +0000 | [diff] [blame] | 1214 | |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1215 | // Enter a partial-destruction Cleanup if necessary. |
| 1216 | if (!CleanupDominator && needsEHCleanup(DtorKind)) { |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1217 | pushRegularPartialArrayCleanup(BeginPtr.getPointer(), CurPtr.getPointer(), |
| 1218 | ElementType, ElementAlign, |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1219 | getDestroyer(DtorKind)); |
| 1220 | Cleanup = EHStack.stable_begin(); |
| 1221 | CleanupDominator = Builder.CreateUnreachable(); |
John McCall | 99210dc | 2011-09-15 06:49:18 +0000 | [diff] [blame] | 1222 | } |
| 1223 | |
| 1224 | // Emit the initializer into this element. |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1225 | StoreAnyExprIntoOneUnit(*this, Init, Init->getType(), CurPtr); |
John McCall | 99210dc | 2011-09-15 06:49:18 +0000 | [diff] [blame] | 1226 | |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1227 | // Leave the Cleanup if we entered one. |
| 1228 | if (CleanupDominator) { |
| 1229 | DeactivateCleanupBlock(Cleanup, CleanupDominator); |
| 1230 | CleanupDominator->eraseFromParent(); |
John McCall | f4beacd | 2011-11-10 10:43:54 +0000 | [diff] [blame] | 1231 | } |
John McCall | 99210dc | 2011-09-15 06:49:18 +0000 | [diff] [blame] | 1232 | |
Faisal Vali | 57ae056 | 2013-12-14 00:40:05 +0000 | [diff] [blame] | 1233 | // Advance to the next element by adjusting the pointer type as necessary. |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1234 | llvm::Value *NextPtr = |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1235 | Builder.CreateConstInBoundsGEP1_32(ElementTy, CurPtr.getPointer(), 1, |
| 1236 | "array.next"); |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1237 | |
John McCall | 99210dc | 2011-09-15 06:49:18 +0000 | [diff] [blame] | 1238 | // Check whether we've gotten to the end of the array and, if so, |
| 1239 | // exit the loop. |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1240 | llvm::Value *IsEnd = Builder.CreateICmpEQ(NextPtr, EndPtr, "array.atend"); |
| 1241 | Builder.CreateCondBr(IsEnd, ContBB, LoopBB); |
| 1242 | CurPtrPhi->addIncoming(NextPtr, Builder.GetInsertBlock()); |
John McCall | 99210dc | 2011-09-15 06:49:18 +0000 | [diff] [blame] | 1243 | |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1244 | EmitBlock(ContBB); |
Fariborz Jahanian | d5202e0 | 2010-06-25 18:26:07 +0000 | [diff] [blame] | 1245 | } |
| 1246 | |
Anders Carlsson | b4bd066 | 2009-09-23 16:07:23 +0000 | [diff] [blame] | 1247 | static void EmitNewInitializer(CodeGenFunction &CGF, const CXXNewExpr *E, |
David Blaikie | fb901c7a | 2015-04-04 15:12:29 +0000 | [diff] [blame] | 1248 | QualType ElementType, llvm::Type *ElementTy, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1249 | Address NewPtr, llvm::Value *NumElements, |
Douglas Gregor | 05fc5be | 2010-07-21 01:10:17 +0000 | [diff] [blame] | 1250 | llvm::Value *AllocSizeWithoutCookie) { |
David Blaikie | 9b47966 | 2015-01-25 01:19:10 +0000 | [diff] [blame] | 1251 | ApplyDebugLocation DL(CGF, E); |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1252 | if (E->isArray()) |
David Blaikie | fb901c7a | 2015-04-04 15:12:29 +0000 | [diff] [blame] | 1253 | CGF.EmitNewArrayInitializer(E, ElementType, ElementTy, NewPtr, NumElements, |
Richard Smith | 06a67e2 | 2014-06-03 06:58:52 +0000 | [diff] [blame] | 1254 | AllocSizeWithoutCookie); |
| 1255 | else if (const Expr *Init = E->getInitializer()) |
David Blaikie | 66e4197 | 2015-01-14 07:38:27 +0000 | [diff] [blame] | 1256 | StoreAnyExprIntoOneUnit(CGF, Init, E->getAllocatedType(), NewPtr); |
Anders Carlsson | b4bd066 | 2009-09-23 16:07:23 +0000 | [diff] [blame] | 1257 | } |
| 1258 | |
Richard Smith | 8d0dc31 | 2013-07-21 23:12:18 +0000 | [diff] [blame] | 1259 | /// Emit a call to an operator new or operator delete function, as implicitly |
| 1260 | /// created by new-expressions and delete-expressions. |
| 1261 | static RValue EmitNewDeleteCall(CodeGenFunction &CGF, |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 1262 | const FunctionDecl *CalleeDecl, |
Richard Smith | 8d0dc31 | 2013-07-21 23:12:18 +0000 | [diff] [blame] | 1263 | const FunctionProtoType *CalleeType, |
| 1264 | const CallArgList &Args) { |
| 1265 | llvm::Instruction *CallOrInvoke; |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 1266 | llvm::Constant *CalleePtr = CGF.CGM.GetAddrOfFunction(CalleeDecl); |
| 1267 | CGCallee Callee = CGCallee::forDirect(CalleePtr, CalleeDecl); |
Richard Smith | 8d0dc31 | 2013-07-21 23:12:18 +0000 | [diff] [blame] | 1268 | RValue RV = |
Peter Collingbourne | f770683 | 2014-12-12 23:41:25 +0000 | [diff] [blame] | 1269 | CGF.EmitCall(CGF.CGM.getTypes().arrangeFreeFunctionCall( |
| 1270 | Args, CalleeType, /*chainCall=*/false), |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 1271 | Callee, ReturnValueSlot(), Args, &CallOrInvoke); |
Richard Smith | 8d0dc31 | 2013-07-21 23:12:18 +0000 | [diff] [blame] | 1272 | |
| 1273 | /// C++1y [expr.new]p10: |
| 1274 | /// [In a new-expression,] an implementation is allowed to omit a call |
| 1275 | /// to a replaceable global allocation function. |
| 1276 | /// |
| 1277 | /// We model such elidable calls with the 'builtin' attribute. |
John McCall | b92ab1a | 2016-10-26 23:46:34 +0000 | [diff] [blame] | 1278 | llvm::Function *Fn = dyn_cast<llvm::Function>(CalleePtr); |
| 1279 | if (CalleeDecl->isReplaceableGlobalAllocationFunction() && |
Rafael Espindola | 6956d58 | 2013-10-22 14:23:09 +0000 | [diff] [blame] | 1280 | Fn && Fn->hasFnAttribute(llvm::Attribute::NoBuiltin)) { |
Richard Smith | 8d0dc31 | 2013-07-21 23:12:18 +0000 | [diff] [blame] | 1281 | // FIXME: Add addAttribute to CallSite. |
| 1282 | if (llvm::CallInst *CI = dyn_cast<llvm::CallInst>(CallOrInvoke)) |
Reid Kleckner | de86482 | 2017-03-21 16:57:30 +0000 | [diff] [blame] | 1283 | CI->addAttribute(llvm::AttributeList::FunctionIndex, |
Richard Smith | 8d0dc31 | 2013-07-21 23:12:18 +0000 | [diff] [blame] | 1284 | llvm::Attribute::Builtin); |
| 1285 | else if (llvm::InvokeInst *II = dyn_cast<llvm::InvokeInst>(CallOrInvoke)) |
Reid Kleckner | de86482 | 2017-03-21 16:57:30 +0000 | [diff] [blame] | 1286 | II->addAttribute(llvm::AttributeList::FunctionIndex, |
Richard Smith | 8d0dc31 | 2013-07-21 23:12:18 +0000 | [diff] [blame] | 1287 | llvm::Attribute::Builtin); |
| 1288 | else |
| 1289 | llvm_unreachable("unexpected kind of call instruction"); |
| 1290 | } |
| 1291 | |
| 1292 | return RV; |
| 1293 | } |
| 1294 | |
Richard Smith | 760520b | 2014-06-03 23:27:44 +0000 | [diff] [blame] | 1295 | RValue CodeGenFunction::EmitBuiltinNewDeleteCall(const FunctionProtoType *Type, |
| 1296 | const Expr *Arg, |
| 1297 | bool IsDelete) { |
| 1298 | CallArgList Args; |
| 1299 | const Stmt *ArgS = Arg; |
David Blaikie | f05779e | 2015-07-21 18:37:18 +0000 | [diff] [blame] | 1300 | EmitCallArgs(Args, *Type->param_type_begin(), llvm::makeArrayRef(ArgS)); |
Richard Smith | 760520b | 2014-06-03 23:27:44 +0000 | [diff] [blame] | 1301 | // Find the allocation or deallocation function that we're calling. |
| 1302 | ASTContext &Ctx = getContext(); |
| 1303 | DeclarationName Name = Ctx.DeclarationNames |
| 1304 | .getCXXOperatorName(IsDelete ? OO_Delete : OO_New); |
| 1305 | for (auto *Decl : Ctx.getTranslationUnitDecl()->lookup(Name)) |
Richard Smith | 599bed7 | 2014-06-05 00:43:02 +0000 | [diff] [blame] | 1306 | if (auto *FD = dyn_cast<FunctionDecl>(Decl)) |
| 1307 | if (Ctx.hasSameType(FD->getType(), QualType(Type, 0))) |
| 1308 | return EmitNewDeleteCall(*this, cast<FunctionDecl>(Decl), Type, Args); |
Richard Smith | 760520b | 2014-06-03 23:27:44 +0000 | [diff] [blame] | 1309 | llvm_unreachable("predeclared global operator new/delete is missing"); |
| 1310 | } |
| 1311 | |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1312 | static std::pair<bool, bool> |
| 1313 | shouldPassSizeAndAlignToUsualDelete(const FunctionProtoType *FPT) { |
| 1314 | auto AI = FPT->param_type_begin(), AE = FPT->param_type_end(); |
Richard Smith | 189e52f | 2016-10-10 06:42:31 +0000 | [diff] [blame] | 1315 | |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1316 | // The first argument is always a void*. |
| 1317 | ++AI; |
| 1318 | |
| 1319 | // Figure out what other parameters we should be implicitly passing. |
| 1320 | bool PassSize = false; |
| 1321 | bool PassAlignment = false; |
| 1322 | |
| 1323 | if (AI != AE && (*AI)->isIntegerType()) { |
| 1324 | PassSize = true; |
| 1325 | ++AI; |
| 1326 | } |
| 1327 | |
| 1328 | if (AI != AE && (*AI)->isAlignValT()) { |
| 1329 | PassAlignment = true; |
| 1330 | ++AI; |
| 1331 | } |
| 1332 | |
| 1333 | assert(AI == AE && "unexpected usual deallocation function parameter"); |
| 1334 | return {PassSize, PassAlignment}; |
| 1335 | } |
| 1336 | |
| 1337 | namespace { |
| 1338 | /// A cleanup to call the given 'operator delete' function upon abnormal |
| 1339 | /// exit from a new expression. Templated on a traits type that deals with |
| 1340 | /// ensuring that the arguments dominate the cleanup if necessary. |
| 1341 | template<typename Traits> |
| 1342 | class CallDeleteDuringNew final : public EHScopeStack::Cleanup { |
| 1343 | /// Type used to hold llvm::Value*s. |
| 1344 | typedef typename Traits::ValueTy ValueTy; |
| 1345 | /// Type used to hold RValues. |
| 1346 | typedef typename Traits::RValueTy RValueTy; |
| 1347 | struct PlacementArg { |
| 1348 | RValueTy ArgValue; |
| 1349 | QualType ArgType; |
| 1350 | }; |
| 1351 | |
| 1352 | unsigned NumPlacementArgs : 31; |
| 1353 | unsigned PassAlignmentToPlacementDelete : 1; |
| 1354 | const FunctionDecl *OperatorDelete; |
| 1355 | ValueTy Ptr; |
| 1356 | ValueTy AllocSize; |
| 1357 | CharUnits AllocAlign; |
| 1358 | |
| 1359 | PlacementArg *getPlacementArgs() { |
| 1360 | return reinterpret_cast<PlacementArg *>(this + 1); |
| 1361 | } |
Daniel Jasper | e9abe64 | 2016-10-10 14:13:55 +0000 | [diff] [blame] | 1362 | |
| 1363 | public: |
| 1364 | static size_t getExtraSize(size_t NumPlacementArgs) { |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1365 | return NumPlacementArgs * sizeof(PlacementArg); |
Daniel Jasper | e9abe64 | 2016-10-10 14:13:55 +0000 | [diff] [blame] | 1366 | } |
| 1367 | |
| 1368 | CallDeleteDuringNew(size_t NumPlacementArgs, |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1369 | const FunctionDecl *OperatorDelete, ValueTy Ptr, |
| 1370 | ValueTy AllocSize, bool PassAlignmentToPlacementDelete, |
| 1371 | CharUnits AllocAlign) |
| 1372 | : NumPlacementArgs(NumPlacementArgs), |
| 1373 | PassAlignmentToPlacementDelete(PassAlignmentToPlacementDelete), |
| 1374 | OperatorDelete(OperatorDelete), Ptr(Ptr), AllocSize(AllocSize), |
| 1375 | AllocAlign(AllocAlign) {} |
Daniel Jasper | e9abe64 | 2016-10-10 14:13:55 +0000 | [diff] [blame] | 1376 | |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1377 | void setPlacementArg(unsigned I, RValueTy Arg, QualType Type) { |
Daniel Jasper | e9abe64 | 2016-10-10 14:13:55 +0000 | [diff] [blame] | 1378 | assert(I < NumPlacementArgs && "index out of range"); |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1379 | getPlacementArgs()[I] = {Arg, Type}; |
Daniel Jasper | e9abe64 | 2016-10-10 14:13:55 +0000 | [diff] [blame] | 1380 | } |
| 1381 | |
| 1382 | void Emit(CodeGenFunction &CGF, Flags flags) override { |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1383 | const FunctionProtoType *FPT = |
| 1384 | OperatorDelete->getType()->getAs<FunctionProtoType>(); |
Daniel Jasper | e9abe64 | 2016-10-10 14:13:55 +0000 | [diff] [blame] | 1385 | CallArgList DeleteArgs; |
| 1386 | |
| 1387 | // The first argument is always a void*. |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1388 | DeleteArgs.add(Traits::get(CGF, Ptr), FPT->getParamType(0)); |
Daniel Jasper | e9abe64 | 2016-10-10 14:13:55 +0000 | [diff] [blame] | 1389 | |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1390 | // Figure out what other parameters we should be implicitly passing. |
| 1391 | bool PassSize = false; |
| 1392 | bool PassAlignment = false; |
| 1393 | if (NumPlacementArgs) { |
| 1394 | // A placement deallocation function is implicitly passed an alignment |
| 1395 | // if the placement allocation function was, but is never passed a size. |
| 1396 | PassAlignment = PassAlignmentToPlacementDelete; |
| 1397 | } else { |
| 1398 | // For a non-placement new-expression, 'operator delete' can take a |
| 1399 | // size and/or an alignment if it has the right parameters. |
| 1400 | std::tie(PassSize, PassAlignment) = |
| 1401 | shouldPassSizeAndAlignToUsualDelete(FPT); |
John McCall | 7f9c92a | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1402 | } |
| 1403 | |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1404 | // The second argument can be a std::size_t (for non-placement delete). |
| 1405 | if (PassSize) |
| 1406 | DeleteArgs.add(Traits::get(CGF, AllocSize), |
| 1407 | CGF.getContext().getSizeType()); |
| 1408 | |
| 1409 | // The next (second or third) argument can be a std::align_val_t, which |
| 1410 | // is an enum whose underlying type is std::size_t. |
| 1411 | // FIXME: Use the right type as the parameter type. Note that in a call |
| 1412 | // to operator delete(size_t, ...), we may not have it available. |
| 1413 | if (PassAlignment) |
| 1414 | DeleteArgs.add(RValue::get(llvm::ConstantInt::get( |
| 1415 | CGF.SizeTy, AllocAlign.getQuantity())), |
| 1416 | CGF.getContext().getSizeType()); |
| 1417 | |
John McCall | 7f9c92a | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1418 | // Pass the rest of the arguments, which must match exactly. |
| 1419 | for (unsigned I = 0; I != NumPlacementArgs; ++I) { |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1420 | auto Arg = getPlacementArgs()[I]; |
| 1421 | DeleteArgs.add(Traits::get(CGF, Arg.ArgValue), Arg.ArgType); |
John McCall | 7f9c92a | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1422 | } |
| 1423 | |
| 1424 | // Call 'operator delete'. |
Richard Smith | 8d0dc31 | 2013-07-21 23:12:18 +0000 | [diff] [blame] | 1425 | EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs); |
John McCall | 7f9c92a | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1426 | } |
| 1427 | }; |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 1428 | } |
John McCall | 7f9c92a | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1429 | |
| 1430 | /// Enter a cleanup to call 'operator delete' if the initializer in a |
| 1431 | /// new-expression throws. |
| 1432 | static void EnterNewDeleteCleanup(CodeGenFunction &CGF, |
| 1433 | const CXXNewExpr *E, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1434 | Address NewPtr, |
John McCall | 7f9c92a | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1435 | llvm::Value *AllocSize, |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1436 | CharUnits AllocAlign, |
John McCall | 7f9c92a | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1437 | const CallArgList &NewArgs) { |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1438 | unsigned NumNonPlacementArgs = E->passAlignment() ? 2 : 1; |
| 1439 | |
John McCall | 7f9c92a | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1440 | // If we're not inside a conditional branch, then the cleanup will |
| 1441 | // dominate and we can do the easier (and more efficient) thing. |
| 1442 | if (!CGF.isInConditionalBranch()) { |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1443 | struct DirectCleanupTraits { |
| 1444 | typedef llvm::Value *ValueTy; |
| 1445 | typedef RValue RValueTy; |
| 1446 | static RValue get(CodeGenFunction &, ValueTy V) { return RValue::get(V); } |
| 1447 | static RValue get(CodeGenFunction &, RValueTy V) { return V; } |
| 1448 | }; |
| 1449 | |
| 1450 | typedef CallDeleteDuringNew<DirectCleanupTraits> DirectCleanup; |
| 1451 | |
| 1452 | DirectCleanup *Cleanup = CGF.EHStack |
| 1453 | .pushCleanupWithExtra<DirectCleanup>(EHCleanup, |
| 1454 | E->getNumPlacementArgs(), |
| 1455 | E->getOperatorDelete(), |
| 1456 | NewPtr.getPointer(), |
| 1457 | AllocSize, |
| 1458 | E->passAlignment(), |
| 1459 | AllocAlign); |
| 1460 | for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I) { |
| 1461 | auto &Arg = NewArgs[I + NumNonPlacementArgs]; |
| 1462 | Cleanup->setPlacementArg(I, Arg.RV, Arg.Ty); |
| 1463 | } |
John McCall | 7f9c92a | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1464 | |
| 1465 | return; |
| 1466 | } |
| 1467 | |
| 1468 | // Otherwise, we need to save all this stuff. |
John McCall | cb5f77f | 2011-01-28 10:53:53 +0000 | [diff] [blame] | 1469 | DominatingValue<RValue>::saved_type SavedNewPtr = |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1470 | DominatingValue<RValue>::save(CGF, RValue::get(NewPtr.getPointer())); |
John McCall | cb5f77f | 2011-01-28 10:53:53 +0000 | [diff] [blame] | 1471 | DominatingValue<RValue>::saved_type SavedAllocSize = |
| 1472 | DominatingValue<RValue>::save(CGF, RValue::get(AllocSize)); |
John McCall | 7f9c92a | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1473 | |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1474 | struct ConditionalCleanupTraits { |
| 1475 | typedef DominatingValue<RValue>::saved_type ValueTy; |
| 1476 | typedef DominatingValue<RValue>::saved_type RValueTy; |
| 1477 | static RValue get(CodeGenFunction &CGF, ValueTy V) { |
| 1478 | return V.restore(CGF); |
| 1479 | } |
| 1480 | }; |
| 1481 | typedef CallDeleteDuringNew<ConditionalCleanupTraits> ConditionalCleanup; |
| 1482 | |
| 1483 | ConditionalCleanup *Cleanup = CGF.EHStack |
| 1484 | .pushCleanupWithExtra<ConditionalCleanup>(EHCleanup, |
| 1485 | E->getNumPlacementArgs(), |
| 1486 | E->getOperatorDelete(), |
| 1487 | SavedNewPtr, |
| 1488 | SavedAllocSize, |
| 1489 | E->passAlignment(), |
| 1490 | AllocAlign); |
| 1491 | for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I) { |
| 1492 | auto &Arg = NewArgs[I + NumNonPlacementArgs]; |
| 1493 | Cleanup->setPlacementArg(I, DominatingValue<RValue>::save(CGF, Arg.RV), |
| 1494 | Arg.Ty); |
| 1495 | } |
John McCall | 7f9c92a | 2010-09-17 00:50:28 +0000 | [diff] [blame] | 1496 | |
John McCall | f4beacd | 2011-11-10 10:43:54 +0000 | [diff] [blame] | 1497 | CGF.initFullExprCleanup(); |
John McCall | 824c2f5 | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1498 | } |
| 1499 | |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1500 | llvm::Value *CodeGenFunction::EmitCXXNewExpr(const CXXNewExpr *E) { |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1501 | // The element type being allocated. |
| 1502 | QualType allocType = getContext().getBaseElementType(E->getAllocatedType()); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1503 | |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1504 | // 1. Build a call to the allocation function. |
| 1505 | FunctionDecl *allocator = E->getOperatorNew(); |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1506 | |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 1507 | // If there is a brace-initializer, cannot allocate fewer elements than inits. |
| 1508 | unsigned minElements = 0; |
| 1509 | if (E->isArray() && E->hasInitializer()) { |
Richard Smith | 0511d23 | 2016-10-05 22:41:02 +0000 | [diff] [blame] | 1510 | const InitListExpr *ILE = dyn_cast<InitListExpr>(E->getInitializer()); |
| 1511 | if (ILE && ILE->isStringLiteralInit()) |
| 1512 | minElements = |
| 1513 | cast<ConstantArrayType>(ILE->getType()->getAsArrayTypeUnsafe()) |
| 1514 | ->getSize().getZExtValue(); |
| 1515 | else if (ILE) |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 1516 | minElements = ILE->getNumInits(); |
| 1517 | } |
| 1518 | |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 1519 | llvm::Value *numElements = nullptr; |
| 1520 | llvm::Value *allocSizeWithoutCookie = nullptr; |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1521 | llvm::Value *allocSize = |
Sebastian Redl | f862eb6 | 2012-02-22 17:37:52 +0000 | [diff] [blame] | 1522 | EmitCXXNewAllocSize(*this, E, minElements, numElements, |
| 1523 | allocSizeWithoutCookie); |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1524 | CharUnits allocAlign = getContext().getTypeAlignInChars(allocType); |
Alexey Samsonov | cbe875a | 2014-08-28 00:22:11 +0000 | [diff] [blame] | 1525 | |
John McCall | 7ec4b43 | 2011-05-16 01:05:12 +0000 | [diff] [blame] | 1526 | // Emit the allocation call. If the allocator is a global placement |
| 1527 | // operator, just "inline" it directly. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1528 | Address allocation = Address::invalid(); |
| 1529 | CallArgList allocatorArgs; |
John McCall | 7ec4b43 | 2011-05-16 01:05:12 +0000 | [diff] [blame] | 1530 | if (allocator->isReservedGlobalPlacementOperator()) { |
John McCall | 53dcf94 | 2015-09-29 23:55:17 +0000 | [diff] [blame] | 1531 | assert(E->getNumPlacementArgs() == 1); |
| 1532 | const Expr *arg = *E->placement_arguments().begin(); |
| 1533 | |
Krzysztof Parzyszek | 8f24823 | 2017-05-18 17:07:11 +0000 | [diff] [blame] | 1534 | LValueBaseInfo BaseInfo; |
| 1535 | allocation = EmitPointerWithAlignment(arg, &BaseInfo); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1536 | |
| 1537 | // The pointer expression will, in many cases, be an opaque void*. |
| 1538 | // In these cases, discard the computed alignment and use the |
| 1539 | // formal alignment of the allocated type. |
Krzysztof Parzyszek | 8f24823 | 2017-05-18 17:07:11 +0000 | [diff] [blame] | 1540 | if (BaseInfo.getAlignmentSource() != AlignmentSource::Decl) |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1541 | allocation = Address(allocation.getPointer(), allocAlign); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1542 | |
John McCall | 53dcf94 | 2015-09-29 23:55:17 +0000 | [diff] [blame] | 1543 | // Set up allocatorArgs for the call to operator delete if it's not |
| 1544 | // the reserved global operator. |
| 1545 | if (E->getOperatorDelete() && |
| 1546 | !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) { |
| 1547 | allocatorArgs.add(RValue::get(allocSize), getContext().getSizeType()); |
| 1548 | allocatorArgs.add(RValue::get(allocation.getPointer()), arg->getType()); |
| 1549 | } |
| 1550 | |
John McCall | 7ec4b43 | 2011-05-16 01:05:12 +0000 | [diff] [blame] | 1551 | } else { |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1552 | const FunctionProtoType *allocatorType = |
| 1553 | allocator->getType()->castAs<FunctionProtoType>(); |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1554 | unsigned ParamsToSkip = 0; |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1555 | |
| 1556 | // The allocation size is the first argument. |
| 1557 | QualType sizeType = getContext().getSizeType(); |
| 1558 | allocatorArgs.add(RValue::get(allocSize), sizeType); |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1559 | ++ParamsToSkip; |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1560 | |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1561 | if (allocSize != allocSizeWithoutCookie) { |
| 1562 | CharUnits cookieAlign = getSizeAlign(); // FIXME: Ask the ABI. |
| 1563 | allocAlign = std::max(allocAlign, cookieAlign); |
| 1564 | } |
| 1565 | |
| 1566 | // The allocation alignment may be passed as the second argument. |
| 1567 | if (E->passAlignment()) { |
| 1568 | QualType AlignValT = sizeType; |
| 1569 | if (allocatorType->getNumParams() > 1) { |
| 1570 | AlignValT = allocatorType->getParamType(1); |
| 1571 | assert(getContext().hasSameUnqualifiedType( |
| 1572 | AlignValT->castAs<EnumType>()->getDecl()->getIntegerType(), |
| 1573 | sizeType) && |
| 1574 | "wrong type for alignment parameter"); |
| 1575 | ++ParamsToSkip; |
| 1576 | } else { |
| 1577 | // Corner case, passing alignment to 'operator new(size_t, ...)'. |
| 1578 | assert(allocator->isVariadic() && "can't pass alignment to allocator"); |
| 1579 | } |
| 1580 | allocatorArgs.add( |
| 1581 | RValue::get(llvm::ConstantInt::get(SizeTy, allocAlign.getQuantity())), |
| 1582 | AlignValT); |
| 1583 | } |
| 1584 | |
| 1585 | // FIXME: Why do we not pass a CalleeDecl here? |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1586 | EmitCallArgs(allocatorArgs, allocatorType, E->placement_arguments(), |
Vedant Kumar | ed00ea0 | 2017-03-06 05:28:22 +0000 | [diff] [blame] | 1587 | /*AC*/AbstractCallee(), /*ParamsToSkip*/ParamsToSkip); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1588 | |
| 1589 | RValue RV = |
| 1590 | EmitNewDeleteCall(*this, allocator, allocatorType, allocatorArgs); |
| 1591 | |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1592 | // If this was a call to a global replaceable allocation function that does |
| 1593 | // not take an alignment argument, the allocator is known to produce |
| 1594 | // storage that's suitably aligned for any object that fits, up to a known |
| 1595 | // threshold. Otherwise assume it's suitably aligned for the allocated type. |
| 1596 | CharUnits allocationAlign = allocAlign; |
| 1597 | if (!E->passAlignment() && |
| 1598 | allocator->isReplaceableGlobalAllocationFunction()) { |
| 1599 | unsigned AllocatorAlign = llvm::PowerOf2Floor(std::min<uint64_t>( |
| 1600 | Target.getNewAlign(), getContext().getTypeSize(allocType))); |
| 1601 | allocationAlign = std::max( |
| 1602 | allocationAlign, getContext().toCharUnitsFromBits(AllocatorAlign)); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1603 | } |
| 1604 | |
| 1605 | allocation = Address(RV.getScalarVal(), allocationAlign); |
John McCall | 7ec4b43 | 2011-05-16 01:05:12 +0000 | [diff] [blame] | 1606 | } |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1607 | |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1608 | // Emit a null check on the allocation result if the allocation |
| 1609 | // function is allowed to return null (because it has a non-throwing |
Richard Smith | 902a023 | 2015-02-14 01:52:20 +0000 | [diff] [blame] | 1610 | // exception spec or is the reserved placement new) and we have an |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1611 | // interesting initializer. |
Richard Smith | 902a023 | 2015-02-14 01:52:20 +0000 | [diff] [blame] | 1612 | bool nullCheck = E->shouldNullCheckAllocation(getContext()) && |
Sebastian Redl | 6047f07 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1613 | (!allocType.isPODType(getContext()) || E->hasInitializer()); |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1614 | |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 1615 | llvm::BasicBlock *nullCheckBB = nullptr; |
| 1616 | llvm::BasicBlock *contBB = nullptr; |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1617 | |
John McCall | f7dcf32 | 2011-03-07 01:52:56 +0000 | [diff] [blame] | 1618 | // The null-check means that the initializer is conditionally |
| 1619 | // evaluated. |
| 1620 | ConditionalEvaluation conditional(*this); |
| 1621 | |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1622 | if (nullCheck) { |
John McCall | f7dcf32 | 2011-03-07 01:52:56 +0000 | [diff] [blame] | 1623 | conditional.begin(*this); |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1624 | |
| 1625 | nullCheckBB = Builder.GetInsertBlock(); |
| 1626 | llvm::BasicBlock *notNullBB = createBasicBlock("new.notnull"); |
| 1627 | contBB = createBasicBlock("new.cont"); |
| 1628 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1629 | llvm::Value *isNull = |
| 1630 | Builder.CreateIsNull(allocation.getPointer(), "new.isnull"); |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1631 | Builder.CreateCondBr(isNull, contBB, notNullBB); |
| 1632 | EmitBlock(notNullBB); |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1633 | } |
Anders Carlsson | f771681 | 2009-09-23 18:59:48 +0000 | [diff] [blame] | 1634 | |
John McCall | 824c2f5 | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1635 | // If there's an operator delete, enter a cleanup to call it if an |
| 1636 | // exception is thrown. |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1637 | EHScopeStack::stable_iterator operatorDeleteCleanup; |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 1638 | llvm::Instruction *cleanupDominator = nullptr; |
John McCall | 7ec4b43 | 2011-05-16 01:05:12 +0000 | [diff] [blame] | 1639 | if (E->getOperatorDelete() && |
| 1640 | !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) { |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1641 | EnterNewDeleteCleanup(*this, E, allocation, allocSize, allocAlign, |
| 1642 | allocatorArgs); |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1643 | operatorDeleteCleanup = EHStack.stable_begin(); |
John McCall | f4beacd | 2011-11-10 10:43:54 +0000 | [diff] [blame] | 1644 | cleanupDominator = Builder.CreateUnreachable(); |
John McCall | 824c2f5 | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1645 | } |
| 1646 | |
Eli Friedman | cf9b1f6 | 2011-09-06 18:53:03 +0000 | [diff] [blame] | 1647 | assert((allocSize == allocSizeWithoutCookie) == |
| 1648 | CalculateCookiePadding(*this, E).isZero()); |
| 1649 | if (allocSize != allocSizeWithoutCookie) { |
| 1650 | assert(E->isArray()); |
| 1651 | allocation = CGM.getCXXABI().InitializeArrayCookie(*this, allocation, |
| 1652 | numElements, |
| 1653 | E, allocType); |
| 1654 | } |
| 1655 | |
David Blaikie | fb901c7a | 2015-04-04 15:12:29 +0000 | [diff] [blame] | 1656 | llvm::Type *elementTy = ConvertTypeForMem(allocType); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1657 | Address result = Builder.CreateElementBitCast(allocation, elementTy); |
John McCall | 824c2f5 | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1658 | |
Piotr Padlewski | 338c9d0 | 2015-09-15 21:46:47 +0000 | [diff] [blame] | 1659 | // Passing pointer through invariant.group.barrier to avoid propagation of |
| 1660 | // vptrs information which may be included in previous type. |
Piotr Padlewski | 31fd99c | 2017-05-20 08:56:18 +0000 | [diff] [blame^] | 1661 | // To not break LTO with different optimizations levels, we do it regardless |
| 1662 | // of optimization level. |
Piotr Padlewski | 338c9d0 | 2015-09-15 21:46:47 +0000 | [diff] [blame] | 1663 | if (CGM.getCodeGenOpts().StrictVTablePointers && |
Piotr Padlewski | 338c9d0 | 2015-09-15 21:46:47 +0000 | [diff] [blame] | 1664 | allocator->isReservedGlobalPlacementOperator()) |
| 1665 | result = Address(Builder.CreateInvariantGroupBarrier(result.getPointer()), |
| 1666 | result.getAlignment()); |
| 1667 | |
David Blaikie | fb901c7a | 2015-04-04 15:12:29 +0000 | [diff] [blame] | 1668 | EmitNewInitializer(*this, E, allocType, elementTy, result, numElements, |
John McCall | 99210dc | 2011-09-15 06:49:18 +0000 | [diff] [blame] | 1669 | allocSizeWithoutCookie); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1670 | if (E->isArray()) { |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1671 | // NewPtr is a pointer to the base element type. If we're |
| 1672 | // allocating an array of arrays, we'll need to cast back to the |
| 1673 | // array pointer type. |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1674 | llvm::Type *resultType = ConvertTypeForMem(E->getType()); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1675 | if (result.getType() != resultType) |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1676 | result = Builder.CreateBitCast(result, resultType); |
Fariborz Jahanian | 47b4629 | 2010-03-24 16:57:01 +0000 | [diff] [blame] | 1677 | } |
John McCall | 824c2f5 | 2010-09-14 07:57:04 +0000 | [diff] [blame] | 1678 | |
| 1679 | // Deactivate the 'operator delete' cleanup if we finished |
| 1680 | // initialization. |
John McCall | f4beacd | 2011-11-10 10:43:54 +0000 | [diff] [blame] | 1681 | if (operatorDeleteCleanup.isValid()) { |
| 1682 | DeactivateCleanupBlock(operatorDeleteCleanup, cleanupDominator); |
| 1683 | cleanupDominator->eraseFromParent(); |
| 1684 | } |
Sebastian Redl | 6047f07 | 2012-02-16 12:22:20 +0000 | [diff] [blame] | 1685 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1686 | llvm::Value *resultPtr = result.getPointer(); |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1687 | if (nullCheck) { |
John McCall | f7dcf32 | 2011-03-07 01:52:56 +0000 | [diff] [blame] | 1688 | conditional.end(*this); |
| 1689 | |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1690 | llvm::BasicBlock *notNullBB = Builder.GetInsertBlock(); |
| 1691 | EmitBlock(contBB); |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1692 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1693 | llvm::PHINode *PHI = Builder.CreatePHI(resultPtr->getType(), 2); |
| 1694 | PHI->addIncoming(resultPtr, notNullBB); |
| 1695 | PHI->addIncoming(llvm::Constant::getNullValue(resultPtr->getType()), |
John McCall | 75f9498 | 2011-03-07 03:12:35 +0000 | [diff] [blame] | 1696 | nullCheckBB); |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1697 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1698 | resultPtr = PHI; |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1699 | } |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1700 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1701 | return resultPtr; |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1702 | } |
| 1703 | |
Eli Friedman | fe81e3f | 2009-11-18 00:50:08 +0000 | [diff] [blame] | 1704 | void CodeGenFunction::EmitDeleteCall(const FunctionDecl *DeleteFD, |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1705 | llvm::Value *Ptr, QualType DeleteTy, |
| 1706 | llvm::Value *NumElements, |
| 1707 | CharUnits CookieSize) { |
| 1708 | assert((!NumElements && CookieSize.isZero()) || |
| 1709 | DeleteFD->getOverloadedOperator() == OO_Array_Delete); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1710 | |
Eli Friedman | fe81e3f | 2009-11-18 00:50:08 +0000 | [diff] [blame] | 1711 | const FunctionProtoType *DeleteFTy = |
| 1712 | DeleteFD->getType()->getAs<FunctionProtoType>(); |
| 1713 | |
| 1714 | CallArgList DeleteArgs; |
| 1715 | |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1716 | std::pair<bool, bool> PassSizeAndAlign = |
| 1717 | shouldPassSizeAndAlignToUsualDelete(DeleteFTy); |
Alp Toker | 9cacbab | 2014-01-20 20:26:09 +0000 | [diff] [blame] | 1718 | |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1719 | auto ParamTypeIt = DeleteFTy->param_type_begin(); |
| 1720 | |
| 1721 | // Pass the pointer itself. |
| 1722 | QualType ArgTy = *ParamTypeIt++; |
Eli Friedman | fe81e3f | 2009-11-18 00:50:08 +0000 | [diff] [blame] | 1723 | llvm::Value *DeletePtr = Builder.CreateBitCast(Ptr, ConvertType(ArgTy)); |
Eli Friedman | 43dca6a | 2011-05-02 17:57:46 +0000 | [diff] [blame] | 1724 | DeleteArgs.add(RValue::get(DeletePtr), ArgTy); |
Eli Friedman | fe81e3f | 2009-11-18 00:50:08 +0000 | [diff] [blame] | 1725 | |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1726 | // Pass the size if the delete function has a size_t parameter. |
| 1727 | if (PassSizeAndAlign.first) { |
| 1728 | QualType SizeType = *ParamTypeIt++; |
| 1729 | CharUnits DeleteTypeSize = getContext().getTypeSizeInChars(DeleteTy); |
| 1730 | llvm::Value *Size = llvm::ConstantInt::get(ConvertType(SizeType), |
| 1731 | DeleteTypeSize.getQuantity()); |
| 1732 | |
| 1733 | // For array new, multiply by the number of elements. |
| 1734 | if (NumElements) |
| 1735 | Size = Builder.CreateMul(Size, NumElements); |
| 1736 | |
| 1737 | // If there is a cookie, add the cookie size. |
| 1738 | if (!CookieSize.isZero()) |
| 1739 | Size = Builder.CreateAdd( |
| 1740 | Size, llvm::ConstantInt::get(SizeTy, CookieSize.getQuantity())); |
| 1741 | |
| 1742 | DeleteArgs.add(RValue::get(Size), SizeType); |
| 1743 | } |
| 1744 | |
| 1745 | // Pass the alignment if the delete function has an align_val_t parameter. |
| 1746 | if (PassSizeAndAlign.second) { |
| 1747 | QualType AlignValType = *ParamTypeIt++; |
| 1748 | CharUnits DeleteTypeAlign = getContext().toCharUnitsFromBits( |
| 1749 | getContext().getTypeAlignIfKnown(DeleteTy)); |
| 1750 | llvm::Value *Align = llvm::ConstantInt::get(ConvertType(AlignValType), |
| 1751 | DeleteTypeAlign.getQuantity()); |
| 1752 | DeleteArgs.add(RValue::get(Align), AlignValType); |
| 1753 | } |
| 1754 | |
| 1755 | assert(ParamTypeIt == DeleteFTy->param_type_end() && |
| 1756 | "unknown parameter to usual delete function"); |
Eli Friedman | fe81e3f | 2009-11-18 00:50:08 +0000 | [diff] [blame] | 1757 | |
| 1758 | // Emit the call to delete. |
Richard Smith | 8d0dc31 | 2013-07-21 23:12:18 +0000 | [diff] [blame] | 1759 | EmitNewDeleteCall(*this, DeleteFD, DeleteFTy, DeleteArgs); |
Eli Friedman | fe81e3f | 2009-11-18 00:50:08 +0000 | [diff] [blame] | 1760 | } |
| 1761 | |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1762 | namespace { |
| 1763 | /// Calls the given 'operator delete' on a single object. |
David Blaikie | 7e70d68 | 2015-08-18 22:40:54 +0000 | [diff] [blame] | 1764 | struct CallObjectDelete final : EHScopeStack::Cleanup { |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1765 | llvm::Value *Ptr; |
| 1766 | const FunctionDecl *OperatorDelete; |
| 1767 | QualType ElementType; |
| 1768 | |
| 1769 | CallObjectDelete(llvm::Value *Ptr, |
| 1770 | const FunctionDecl *OperatorDelete, |
| 1771 | QualType ElementType) |
| 1772 | : Ptr(Ptr), OperatorDelete(OperatorDelete), ElementType(ElementType) {} |
| 1773 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1774 | void Emit(CodeGenFunction &CGF, Flags flags) override { |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1775 | CGF.EmitDeleteCall(OperatorDelete, Ptr, ElementType); |
| 1776 | } |
| 1777 | }; |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 1778 | } |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1779 | |
David Majnemer | 0c0b6d9 | 2014-10-31 20:09:12 +0000 | [diff] [blame] | 1780 | void |
| 1781 | CodeGenFunction::pushCallObjectDeleteCleanup(const FunctionDecl *OperatorDelete, |
| 1782 | llvm::Value *CompletePtr, |
| 1783 | QualType ElementType) { |
| 1784 | EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup, CompletePtr, |
| 1785 | OperatorDelete, ElementType); |
| 1786 | } |
| 1787 | |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1788 | /// Emit the code for deleting a single object. |
| 1789 | static void EmitObjectDelete(CodeGenFunction &CGF, |
David Majnemer | 0868137 | 2014-11-01 07:37:17 +0000 | [diff] [blame] | 1790 | const CXXDeleteExpr *DE, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1791 | Address Ptr, |
David Majnemer | 0868137 | 2014-11-01 07:37:17 +0000 | [diff] [blame] | 1792 | QualType ElementType) { |
Ivan Krasin | d98f5d7 | 2016-11-17 00:39:48 +0000 | [diff] [blame] | 1793 | // C++11 [expr.delete]p3: |
| 1794 | // If the static type of the object to be deleted is different from its |
| 1795 | // dynamic type, the static type shall be a base class of the dynamic type |
| 1796 | // of the object to be deleted and the static type shall have a virtual |
| 1797 | // destructor or the behavior is undefined. |
| 1798 | CGF.EmitTypeCheck(CodeGenFunction::TCK_MemberCall, |
| 1799 | DE->getExprLoc(), Ptr.getPointer(), |
| 1800 | ElementType); |
| 1801 | |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1802 | // Find the destructor for the type, if applicable. If the |
| 1803 | // destructor is virtual, we'll just emit the vcall and return. |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 1804 | const CXXDestructorDecl *Dtor = nullptr; |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1805 | if (const RecordType *RT = ElementType->getAs<RecordType>()) { |
| 1806 | CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); |
Eli Friedman | b23533d | 2011-08-02 18:05:30 +0000 | [diff] [blame] | 1807 | if (RD->hasDefinition() && !RD->hasTrivialDestructor()) { |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1808 | Dtor = RD->getDestructor(); |
| 1809 | |
| 1810 | if (Dtor->isVirtual()) { |
David Majnemer | 0868137 | 2014-11-01 07:37:17 +0000 | [diff] [blame] | 1811 | CGF.CGM.getCXXABI().emitVirtualObjectDelete(CGF, DE, Ptr, ElementType, |
| 1812 | Dtor); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1813 | return; |
| 1814 | } |
| 1815 | } |
| 1816 | } |
| 1817 | |
| 1818 | // Make sure that we call delete even if the dtor throws. |
John McCall | e4df6c8 | 2011-01-28 08:37:24 +0000 | [diff] [blame] | 1819 | // This doesn't have to a conditional cleanup because we're going |
| 1820 | // to pop it off in a second. |
David Majnemer | 0868137 | 2014-11-01 07:37:17 +0000 | [diff] [blame] | 1821 | const FunctionDecl *OperatorDelete = DE->getOperatorDelete(); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1822 | CGF.EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1823 | Ptr.getPointer(), |
| 1824 | OperatorDelete, ElementType); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1825 | |
| 1826 | if (Dtor) |
| 1827 | CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete, |
Douglas Gregor | 6153500 | 2013-01-31 05:50:40 +0000 | [diff] [blame] | 1828 | /*ForVirtualBase=*/false, |
| 1829 | /*Delegating=*/false, |
| 1830 | Ptr); |
John McCall | 460ce58 | 2015-10-22 18:38:17 +0000 | [diff] [blame] | 1831 | else if (auto Lifetime = ElementType.getObjCLifetime()) { |
| 1832 | switch (Lifetime) { |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1833 | case Qualifiers::OCL_None: |
| 1834 | case Qualifiers::OCL_ExplicitNone: |
| 1835 | case Qualifiers::OCL_Autoreleasing: |
| 1836 | break; |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1837 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1838 | case Qualifiers::OCL_Strong: |
| 1839 | CGF.EmitARCDestroyStrong(Ptr, ARCPreciseLifetime); |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1840 | break; |
John McCall | 31168b0 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 1841 | |
| 1842 | case Qualifiers::OCL_Weak: |
| 1843 | CGF.EmitARCDestroyWeak(Ptr); |
| 1844 | break; |
| 1845 | } |
| 1846 | } |
| 1847 | |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1848 | CGF.PopCleanupBlock(); |
| 1849 | } |
| 1850 | |
| 1851 | namespace { |
| 1852 | /// Calls the given 'operator delete' on an array of objects. |
David Blaikie | 7e70d68 | 2015-08-18 22:40:54 +0000 | [diff] [blame] | 1853 | struct CallArrayDelete final : EHScopeStack::Cleanup { |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1854 | llvm::Value *Ptr; |
| 1855 | const FunctionDecl *OperatorDelete; |
| 1856 | llvm::Value *NumElements; |
| 1857 | QualType ElementType; |
| 1858 | CharUnits CookieSize; |
| 1859 | |
| 1860 | CallArrayDelete(llvm::Value *Ptr, |
| 1861 | const FunctionDecl *OperatorDelete, |
| 1862 | llvm::Value *NumElements, |
| 1863 | QualType ElementType, |
| 1864 | CharUnits CookieSize) |
| 1865 | : Ptr(Ptr), OperatorDelete(OperatorDelete), NumElements(NumElements), |
| 1866 | ElementType(ElementType), CookieSize(CookieSize) {} |
| 1867 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1868 | void Emit(CodeGenFunction &CGF, Flags flags) override { |
Richard Smith | b2f0f05 | 2016-10-10 18:54:32 +0000 | [diff] [blame] | 1869 | CGF.EmitDeleteCall(OperatorDelete, Ptr, ElementType, NumElements, |
| 1870 | CookieSize); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1871 | } |
| 1872 | }; |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 1873 | } |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1874 | |
| 1875 | /// Emit the code for deleting an array of objects. |
| 1876 | static void EmitArrayDelete(CodeGenFunction &CGF, |
John McCall | 284c48f | 2011-01-27 09:37:56 +0000 | [diff] [blame] | 1877 | const CXXDeleteExpr *E, |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1878 | Address deletedPtr, |
John McCall | ca2c56f | 2011-07-13 01:41:37 +0000 | [diff] [blame] | 1879 | QualType elementType) { |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 1880 | llvm::Value *numElements = nullptr; |
| 1881 | llvm::Value *allocatedPtr = nullptr; |
John McCall | ca2c56f | 2011-07-13 01:41:37 +0000 | [diff] [blame] | 1882 | CharUnits cookieSize; |
| 1883 | CGF.CGM.getCXXABI().ReadArrayCookie(CGF, deletedPtr, E, elementType, |
| 1884 | numElements, allocatedPtr, cookieSize); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1885 | |
John McCall | ca2c56f | 2011-07-13 01:41:37 +0000 | [diff] [blame] | 1886 | assert(allocatedPtr && "ReadArrayCookie didn't set allocated pointer"); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1887 | |
| 1888 | // Make sure that we call delete even if one of the dtors throws. |
John McCall | ca2c56f | 2011-07-13 01:41:37 +0000 | [diff] [blame] | 1889 | const FunctionDecl *operatorDelete = E->getOperatorDelete(); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1890 | CGF.EHStack.pushCleanup<CallArrayDelete>(NormalAndEHCleanup, |
John McCall | ca2c56f | 2011-07-13 01:41:37 +0000 | [diff] [blame] | 1891 | allocatedPtr, operatorDelete, |
| 1892 | numElements, elementType, |
| 1893 | cookieSize); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1894 | |
John McCall | ca2c56f | 2011-07-13 01:41:37 +0000 | [diff] [blame] | 1895 | // Destroy the elements. |
| 1896 | if (QualType::DestructionKind dtorKind = elementType.isDestructedType()) { |
| 1897 | assert(numElements && "no element count for a type with a destructor!"); |
| 1898 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1899 | CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType); |
| 1900 | CharUnits elementAlign = |
| 1901 | deletedPtr.getAlignment().alignmentOfArrayElement(elementSize); |
| 1902 | |
| 1903 | llvm::Value *arrayBegin = deletedPtr.getPointer(); |
John McCall | ca2c56f | 2011-07-13 01:41:37 +0000 | [diff] [blame] | 1904 | llvm::Value *arrayEnd = |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1905 | CGF.Builder.CreateInBoundsGEP(arrayBegin, numElements, "delete.end"); |
John McCall | 97eab0a | 2011-07-13 08:09:46 +0000 | [diff] [blame] | 1906 | |
| 1907 | // Note that it is legal to allocate a zero-length array, and we |
| 1908 | // can never fold the check away because the length should always |
| 1909 | // come from a cookie. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1910 | CGF.emitArrayDestroy(arrayBegin, arrayEnd, elementType, elementAlign, |
John McCall | ca2c56f | 2011-07-13 01:41:37 +0000 | [diff] [blame] | 1911 | CGF.getDestroyer(dtorKind), |
John McCall | 97eab0a | 2011-07-13 08:09:46 +0000 | [diff] [blame] | 1912 | /*checkZeroLength*/ true, |
John McCall | ca2c56f | 2011-07-13 01:41:37 +0000 | [diff] [blame] | 1913 | CGF.needsEHCleanup(dtorKind)); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1914 | } |
| 1915 | |
John McCall | ca2c56f | 2011-07-13 01:41:37 +0000 | [diff] [blame] | 1916 | // Pop the cleanup block. |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1917 | CGF.PopCleanupBlock(); |
| 1918 | } |
| 1919 | |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1920 | void CodeGenFunction::EmitCXXDeleteExpr(const CXXDeleteExpr *E) { |
Douglas Gregor | bb3e12f | 2009-09-29 18:16:17 +0000 | [diff] [blame] | 1921 | const Expr *Arg = E->getArgument(); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1922 | Address Ptr = EmitPointerWithAlignment(Arg); |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1923 | |
| 1924 | // Null check the pointer. |
| 1925 | llvm::BasicBlock *DeleteNotNull = createBasicBlock("delete.notnull"); |
| 1926 | llvm::BasicBlock *DeleteEnd = createBasicBlock("delete.end"); |
| 1927 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1928 | llvm::Value *IsNull = Builder.CreateIsNull(Ptr.getPointer(), "isnull"); |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1929 | |
| 1930 | Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull); |
| 1931 | EmitBlock(DeleteNotNull); |
Anders Carlsson | e828c36 | 2009-11-13 04:45:41 +0000 | [diff] [blame] | 1932 | |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1933 | // We might be deleting a pointer to array. If so, GEP down to the |
| 1934 | // first non-array element. |
| 1935 | // (this assumes that A(*)[3][7] is converted to [3 x [7 x %A]]*) |
| 1936 | QualType DeleteTy = Arg->getType()->getAs<PointerType>()->getPointeeType(); |
| 1937 | if (DeleteTy->isConstantArrayType()) { |
| 1938 | llvm::Value *Zero = Builder.getInt32(0); |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1939 | SmallVector<llvm::Value*,8> GEP; |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1940 | |
| 1941 | GEP.push_back(Zero); // point at the outermost array |
| 1942 | |
| 1943 | // For each layer of array type we're pointing at: |
| 1944 | while (const ConstantArrayType *Arr |
| 1945 | = getContext().getAsConstantArrayType(DeleteTy)) { |
| 1946 | // 1. Unpeel the array type. |
| 1947 | DeleteTy = Arr->getElementType(); |
| 1948 | |
| 1949 | // 2. GEP to the first element of the array. |
| 1950 | GEP.push_back(Zero); |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1951 | } |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1952 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1953 | Ptr = Address(Builder.CreateInBoundsGEP(Ptr.getPointer(), GEP, "del.first"), |
| 1954 | Ptr.getAlignment()); |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1955 | } |
| 1956 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 1957 | assert(ConvertTypeForMem(DeleteTy) == Ptr.getElementType()); |
John McCall | 8ed55a5 | 2010-09-02 09:58:18 +0000 | [diff] [blame] | 1958 | |
Reid Kleckner | 7270ef5 | 2015-03-19 17:03:58 +0000 | [diff] [blame] | 1959 | if (E->isArrayForm()) { |
| 1960 | EmitArrayDelete(*this, E, Ptr, DeleteTy); |
| 1961 | } else { |
| 1962 | EmitObjectDelete(*this, E, Ptr, DeleteTy); |
| 1963 | } |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1964 | |
Anders Carlsson | cc52f65 | 2009-09-22 22:53:17 +0000 | [diff] [blame] | 1965 | EmitBlock(DeleteEnd); |
| 1966 | } |
Mike Stump | c9b231c | 2009-11-15 08:09:41 +0000 | [diff] [blame] | 1967 | |
David Majnemer | 1c3d95e | 2014-07-19 00:17:06 +0000 | [diff] [blame] | 1968 | static bool isGLValueFromPointerDeref(const Expr *E) { |
| 1969 | E = E->IgnoreParens(); |
| 1970 | |
| 1971 | if (const auto *CE = dyn_cast<CastExpr>(E)) { |
| 1972 | if (!CE->getSubExpr()->isGLValue()) |
| 1973 | return false; |
| 1974 | return isGLValueFromPointerDeref(CE->getSubExpr()); |
| 1975 | } |
| 1976 | |
| 1977 | if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E)) |
| 1978 | return isGLValueFromPointerDeref(OVE->getSourceExpr()); |
| 1979 | |
| 1980 | if (const auto *BO = dyn_cast<BinaryOperator>(E)) |
| 1981 | if (BO->getOpcode() == BO_Comma) |
| 1982 | return isGLValueFromPointerDeref(BO->getRHS()); |
| 1983 | |
| 1984 | if (const auto *ACO = dyn_cast<AbstractConditionalOperator>(E)) |
| 1985 | return isGLValueFromPointerDeref(ACO->getTrueExpr()) || |
| 1986 | isGLValueFromPointerDeref(ACO->getFalseExpr()); |
| 1987 | |
| 1988 | // C++11 [expr.sub]p1: |
| 1989 | // The expression E1[E2] is identical (by definition) to *((E1)+(E2)) |
| 1990 | if (isa<ArraySubscriptExpr>(E)) |
| 1991 | return true; |
| 1992 | |
| 1993 | if (const auto *UO = dyn_cast<UnaryOperator>(E)) |
| 1994 | if (UO->getOpcode() == UO_Deref) |
| 1995 | return true; |
| 1996 | |
| 1997 | return false; |
| 1998 | } |
| 1999 | |
Warren Hunt | 747e301 | 2014-06-18 21:15:55 +0000 | [diff] [blame] | 2000 | static llvm::Value *EmitTypeidFromVTable(CodeGenFunction &CGF, const Expr *E, |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2001 | llvm::Type *StdTypeInfoPtrTy) { |
Anders Carlsson | 940f02d | 2011-04-18 00:57:03 +0000 | [diff] [blame] | 2002 | // Get the vtable pointer. |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2003 | Address ThisPtr = CGF.EmitLValue(E).getAddress(); |
Anders Carlsson | 940f02d | 2011-04-18 00:57:03 +0000 | [diff] [blame] | 2004 | |
| 2005 | // C++ [expr.typeid]p2: |
| 2006 | // If the glvalue expression is obtained by applying the unary * operator to |
| 2007 | // a pointer and the pointer is a null pointer value, the typeid expression |
| 2008 | // throws the std::bad_typeid exception. |
David Majnemer | 1c3d95e | 2014-07-19 00:17:06 +0000 | [diff] [blame] | 2009 | // |
| 2010 | // However, this paragraph's intent is not clear. We choose a very generous |
| 2011 | // interpretation which implores us to consider comma operators, conditional |
| 2012 | // operators, parentheses and other such constructs. |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2013 | QualType SrcRecordTy = E->getType(); |
David Majnemer | 1c3d95e | 2014-07-19 00:17:06 +0000 | [diff] [blame] | 2014 | if (CGF.CGM.getCXXABI().shouldTypeidBeNullChecked( |
| 2015 | isGLValueFromPointerDeref(E), SrcRecordTy)) { |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2016 | llvm::BasicBlock *BadTypeidBlock = |
Anders Carlsson | 940f02d | 2011-04-18 00:57:03 +0000 | [diff] [blame] | 2017 | CGF.createBasicBlock("typeid.bad_typeid"); |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2018 | llvm::BasicBlock *EndBlock = CGF.createBasicBlock("typeid.end"); |
Anders Carlsson | 940f02d | 2011-04-18 00:57:03 +0000 | [diff] [blame] | 2019 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2020 | llvm::Value *IsNull = CGF.Builder.CreateIsNull(ThisPtr.getPointer()); |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2021 | CGF.Builder.CreateCondBr(IsNull, BadTypeidBlock, EndBlock); |
Anders Carlsson | 940f02d | 2011-04-18 00:57:03 +0000 | [diff] [blame] | 2022 | |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2023 | CGF.EmitBlock(BadTypeidBlock); |
| 2024 | CGF.CGM.getCXXABI().EmitBadTypeidCall(CGF); |
| 2025 | CGF.EmitBlock(EndBlock); |
Anders Carlsson | 940f02d | 2011-04-18 00:57:03 +0000 | [diff] [blame] | 2026 | } |
| 2027 | |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2028 | return CGF.CGM.getCXXABI().EmitTypeid(CGF, SrcRecordTy, ThisPtr, |
| 2029 | StdTypeInfoPtrTy); |
Anders Carlsson | 940f02d | 2011-04-18 00:57:03 +0000 | [diff] [blame] | 2030 | } |
| 2031 | |
John McCall | e4df6c8 | 2011-01-28 08:37:24 +0000 | [diff] [blame] | 2032 | llvm::Value *CodeGenFunction::EmitCXXTypeidExpr(const CXXTypeidExpr *E) { |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2033 | llvm::Type *StdTypeInfoPtrTy = |
Anders Carlsson | 940f02d | 2011-04-18 00:57:03 +0000 | [diff] [blame] | 2034 | ConvertType(E->getType())->getPointerTo(); |
Anders Carlsson | fd7dfeb | 2009-12-11 02:46:30 +0000 | [diff] [blame] | 2035 | |
Anders Carlsson | 3f4336c | 2009-12-17 07:09:17 +0000 | [diff] [blame] | 2036 | if (E->isTypeOperand()) { |
David Majnemer | 143c55e | 2013-09-27 07:04:31 +0000 | [diff] [blame] | 2037 | llvm::Constant *TypeInfo = |
| 2038 | CGM.GetAddrOfRTTIDescriptor(E->getTypeOperand(getContext())); |
Anders Carlsson | 940f02d | 2011-04-18 00:57:03 +0000 | [diff] [blame] | 2039 | return Builder.CreateBitCast(TypeInfo, StdTypeInfoPtrTy); |
Anders Carlsson | 3f4336c | 2009-12-17 07:09:17 +0000 | [diff] [blame] | 2040 | } |
Anders Carlsson | 0c63350 | 2011-04-11 14:13:40 +0000 | [diff] [blame] | 2041 | |
Anders Carlsson | 940f02d | 2011-04-18 00:57:03 +0000 | [diff] [blame] | 2042 | // C++ [expr.typeid]p2: |
| 2043 | // When typeid is applied to a glvalue expression whose type is a |
| 2044 | // polymorphic class type, the result refers to a std::type_info object |
| 2045 | // representing the type of the most derived object (that is, the dynamic |
| 2046 | // type) to which the glvalue refers. |
Richard Smith | ef8bf43 | 2012-08-13 20:08:14 +0000 | [diff] [blame] | 2047 | if (E->isPotentiallyEvaluated()) |
| 2048 | return EmitTypeidFromVTable(*this, E->getExprOperand(), |
| 2049 | StdTypeInfoPtrTy); |
Anders Carlsson | 940f02d | 2011-04-18 00:57:03 +0000 | [diff] [blame] | 2050 | |
| 2051 | QualType OperandTy = E->getExprOperand()->getType(); |
| 2052 | return Builder.CreateBitCast(CGM.GetAddrOfRTTIDescriptor(OperandTy), |
| 2053 | StdTypeInfoPtrTy); |
Mike Stump | c9b231c | 2009-11-15 08:09:41 +0000 | [diff] [blame] | 2054 | } |
Mike Stump | 6551170 | 2009-11-16 06:50:58 +0000 | [diff] [blame] | 2055 | |
Anders Carlsson | c1c9971 | 2011-04-11 01:45:29 +0000 | [diff] [blame] | 2056 | static llvm::Value *EmitDynamicCastToNull(CodeGenFunction &CGF, |
| 2057 | QualType DestTy) { |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 2058 | llvm::Type *DestLTy = CGF.ConvertType(DestTy); |
Anders Carlsson | c1c9971 | 2011-04-11 01:45:29 +0000 | [diff] [blame] | 2059 | if (DestTy->isPointerType()) |
| 2060 | return llvm::Constant::getNullValue(DestLTy); |
| 2061 | |
| 2062 | /// C++ [expr.dynamic.cast]p9: |
| 2063 | /// A failed cast to reference type throws std::bad_cast |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2064 | if (!CGF.CGM.getCXXABI().EmitBadCastCall(CGF)) |
| 2065 | return nullptr; |
Anders Carlsson | c1c9971 | 2011-04-11 01:45:29 +0000 | [diff] [blame] | 2066 | |
| 2067 | CGF.EmitBlock(CGF.createBasicBlock("dynamic_cast.end")); |
| 2068 | return llvm::UndefValue::get(DestLTy); |
| 2069 | } |
| 2070 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2071 | llvm::Value *CodeGenFunction::EmitDynamicCast(Address ThisAddr, |
Mike Stump | 6551170 | 2009-11-16 06:50:58 +0000 | [diff] [blame] | 2072 | const CXXDynamicCastExpr *DCE) { |
Alexey Bataev | 2bf9b4c | 2015-10-20 04:24:12 +0000 | [diff] [blame] | 2073 | CGM.EmitExplicitCastExprType(DCE, this); |
Anders Carlsson | 3f4336c | 2009-12-17 07:09:17 +0000 | [diff] [blame] | 2074 | QualType DestTy = DCE->getTypeAsWritten(); |
Anders Carlsson | 882d790 | 2011-04-11 00:46:40 +0000 | [diff] [blame] | 2075 | |
Anders Carlsson | c1c9971 | 2011-04-11 01:45:29 +0000 | [diff] [blame] | 2076 | if (DCE->isAlwaysNull()) |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2077 | if (llvm::Value *T = EmitDynamicCastToNull(*this, DestTy)) |
| 2078 | return T; |
Anders Carlsson | c1c9971 | 2011-04-11 01:45:29 +0000 | [diff] [blame] | 2079 | |
| 2080 | QualType SrcTy = DCE->getSubExpr()->getType(); |
| 2081 | |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2082 | // C++ [expr.dynamic.cast]p7: |
| 2083 | // If T is "pointer to cv void," then the result is a pointer to the most |
| 2084 | // derived object pointed to by v. |
| 2085 | const PointerType *DestPTy = DestTy->getAs<PointerType>(); |
| 2086 | |
| 2087 | bool isDynamicCastToVoid; |
| 2088 | QualType SrcRecordTy; |
| 2089 | QualType DestRecordTy; |
| 2090 | if (DestPTy) { |
| 2091 | isDynamicCastToVoid = DestPTy->getPointeeType()->isVoidType(); |
| 2092 | SrcRecordTy = SrcTy->castAs<PointerType>()->getPointeeType(); |
| 2093 | DestRecordTy = DestPTy->getPointeeType(); |
| 2094 | } else { |
| 2095 | isDynamicCastToVoid = false; |
| 2096 | SrcRecordTy = SrcTy; |
| 2097 | DestRecordTy = DestTy->castAs<ReferenceType>()->getPointeeType(); |
| 2098 | } |
| 2099 | |
| 2100 | assert(SrcRecordTy->isRecordType() && "source type must be a record type!"); |
| 2101 | |
Anders Carlsson | 882d790 | 2011-04-11 00:46:40 +0000 | [diff] [blame] | 2102 | // C++ [expr.dynamic.cast]p4: |
| 2103 | // If the value of v is a null pointer value in the pointer case, the result |
| 2104 | // is the null pointer value of type T. |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2105 | bool ShouldNullCheckSrcValue = |
| 2106 | CGM.getCXXABI().shouldDynamicCastCallBeNullChecked(SrcTy->isPointerType(), |
| 2107 | SrcRecordTy); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 2108 | |
| 2109 | llvm::BasicBlock *CastNull = nullptr; |
| 2110 | llvm::BasicBlock *CastNotNull = nullptr; |
Anders Carlsson | 882d790 | 2011-04-11 00:46:40 +0000 | [diff] [blame] | 2111 | llvm::BasicBlock *CastEnd = createBasicBlock("dynamic_cast.end"); |
Mike Stump | 6551170 | 2009-11-16 06:50:58 +0000 | [diff] [blame] | 2112 | |
Anders Carlsson | 882d790 | 2011-04-11 00:46:40 +0000 | [diff] [blame] | 2113 | if (ShouldNullCheckSrcValue) { |
| 2114 | CastNull = createBasicBlock("dynamic_cast.null"); |
| 2115 | CastNotNull = createBasicBlock("dynamic_cast.notnull"); |
| 2116 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2117 | llvm::Value *IsNull = Builder.CreateIsNull(ThisAddr.getPointer()); |
Anders Carlsson | 882d790 | 2011-04-11 00:46:40 +0000 | [diff] [blame] | 2118 | Builder.CreateCondBr(IsNull, CastNull, CastNotNull); |
| 2119 | EmitBlock(CastNotNull); |
Mike Stump | 6551170 | 2009-11-16 06:50:58 +0000 | [diff] [blame] | 2120 | } |
| 2121 | |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2122 | llvm::Value *Value; |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2123 | if (isDynamicCastToVoid) { |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2124 | Value = CGM.getCXXABI().EmitDynamicCastToVoid(*this, ThisAddr, SrcRecordTy, |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2125 | DestTy); |
| 2126 | } else { |
| 2127 | assert(DestRecordTy->isRecordType() && |
| 2128 | "destination type must be a record type!"); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2129 | Value = CGM.getCXXABI().EmitDynamicCastCall(*this, ThisAddr, SrcRecordTy, |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2130 | DestTy, DestRecordTy, CastEnd); |
David Majnemer | 67528ea | 2015-11-23 03:01:14 +0000 | [diff] [blame] | 2131 | CastNotNull = Builder.GetInsertBlock(); |
David Majnemer | 1162d25 | 2014-06-22 19:05:33 +0000 | [diff] [blame] | 2132 | } |
Anders Carlsson | 882d790 | 2011-04-11 00:46:40 +0000 | [diff] [blame] | 2133 | |
| 2134 | if (ShouldNullCheckSrcValue) { |
| 2135 | EmitBranch(CastEnd); |
| 2136 | |
| 2137 | EmitBlock(CastNull); |
| 2138 | EmitBranch(CastEnd); |
| 2139 | } |
| 2140 | |
| 2141 | EmitBlock(CastEnd); |
| 2142 | |
| 2143 | if (ShouldNullCheckSrcValue) { |
| 2144 | llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2); |
| 2145 | PHI->addIncoming(Value, CastNotNull); |
| 2146 | PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), CastNull); |
| 2147 | |
| 2148 | Value = PHI; |
| 2149 | } |
| 2150 | |
| 2151 | return Value; |
Mike Stump | 6551170 | 2009-11-16 06:50:58 +0000 | [diff] [blame] | 2152 | } |
Eli Friedman | c370a7e | 2012-02-09 03:32:31 +0000 | [diff] [blame] | 2153 | |
Eli Friedman | c370a7e | 2012-02-09 03:32:31 +0000 | [diff] [blame] | 2154 | void CodeGenFunction::EmitLambdaExpr(const LambdaExpr *E, AggValueSlot Slot) { |
Eli Friedman | 8631f3e8 | 2012-02-09 03:47:20 +0000 | [diff] [blame] | 2155 | RunCleanupsScope Scope(*this); |
John McCall | 7f416cc | 2015-09-08 08:05:57 +0000 | [diff] [blame] | 2156 | LValue SlotLV = MakeAddrLValue(Slot.getAddress(), E->getType()); |
Eli Friedman | 8631f3e8 | 2012-02-09 03:47:20 +0000 | [diff] [blame] | 2157 | |
Eli Friedman | c370a7e | 2012-02-09 03:32:31 +0000 | [diff] [blame] | 2158 | CXXRecordDecl::field_iterator CurField = E->getLambdaClass()->field_begin(); |
James Y Knight | 53c7616 | 2015-07-17 18:21:37 +0000 | [diff] [blame] | 2159 | for (LambdaExpr::const_capture_init_iterator i = E->capture_init_begin(), |
| 2160 | e = E->capture_init_end(); |
Eric Christopher | d47e086 | 2012-02-29 03:25:18 +0000 | [diff] [blame] | 2161 | i != e; ++i, ++CurField) { |
Eli Friedman | c370a7e | 2012-02-09 03:32:31 +0000 | [diff] [blame] | 2162 | // Emit initialization |
David Blaikie | 40ed297 | 2012-06-06 20:45:41 +0000 | [diff] [blame] | 2163 | LValue LV = EmitLValueForFieldInitialization(SlotLV, *CurField); |
Alexey Bataev | 39c81e2 | 2014-08-28 04:28:19 +0000 | [diff] [blame] | 2164 | if (CurField->hasCapturedVLAType()) { |
| 2165 | auto VAT = CurField->getCapturedVLAType(); |
| 2166 | EmitStoreThroughLValue(RValue::get(VLASizeMap[VAT->getSizeExpr()]), LV); |
| 2167 | } else { |
Richard Smith | 30e304e | 2016-12-14 00:03:17 +0000 | [diff] [blame] | 2168 | EmitInitializerForField(*CurField, LV, *i); |
Alexey Bataev | 39c81e2 | 2014-08-28 04:28:19 +0000 | [diff] [blame] | 2169 | } |
Eli Friedman | c370a7e | 2012-02-09 03:32:31 +0000 | [diff] [blame] | 2170 | } |
Eli Friedman | c370a7e | 2012-02-09 03:32:31 +0000 | [diff] [blame] | 2171 | } |