| 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
| 6 | |
| 7 | |
| 8 | |
| 9 | |
| 10 | |
| 11 | |
| 12 | |
| 13 | #include "CodeGenFunction.h" |
| 14 | #include "CGCUDARuntime.h" |
| 15 | #include "CGCXXABI.h" |
| 16 | #include "CGDebugInfo.h" |
| 17 | #include "CGObjCRuntime.h" |
| 18 | #include "ConstantEmitter.h" |
| 19 | #include "clang/Basic/CodeGenOptions.h" |
| 20 | #include "clang/CodeGen/CGFunctionInfo.h" |
| 21 | #include "llvm/IR/Intrinsics.h" |
| 22 | |
| 23 | using namespace clang; |
| 24 | using namespace CodeGen; |
| 25 | |
| 26 | namespace { |
| 27 | struct MemberCallInfo { |
| 28 | RequiredArgs ReqArgs; |
| 29 | |
| 30 | unsigned PrefixSize; |
| 31 | }; |
| 32 | } |
| 33 | |
| 34 | static MemberCallInfo |
| 35 | commonEmitCXXMemberOrOperatorCall(CodeGenFunction &CGF, const CXXMethodDecl *MD, |
| 36 | llvm::Value *This, llvm::Value *ImplicitParam, |
| 37 | QualType ImplicitParamTy, const CallExpr *CE, |
| 38 | CallArgList &Args, CallArgList *RtlArgs) { |
| 39 | (CE) || isa(CE)", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 40, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(CE == nullptr || isa<CXXMemberCallExpr>(CE) || |
| 40 | (CE) || isa(CE)", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 40, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> isa<CXXOperatorCallExpr>(CE)); |
| 41 | (0) . __assert_fail ("MD->isInstance() && \"Trying to emit a member or operator call expr on a static method!\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 42, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(MD->isInstance() && |
| 42 | (0) . __assert_fail ("MD->isInstance() && \"Trying to emit a member or operator call expr on a static method!\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 42, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "Trying to emit a member or operator call expr on a static method!"); |
| 43 | |
| 44 | |
| 45 | const CXXRecordDecl *RD = |
| 46 | CGF.CGM.getCXXABI().getThisArgumentTypeForMethod(MD); |
| 47 | Args.add(RValue::get(This), CGF.getTypes().DeriveThisType(RD, MD)); |
| 48 | |
| 49 | |
| 50 | if (ImplicitParam) { |
| 51 | Args.add(RValue::get(ImplicitParam), ImplicitParamTy); |
| 52 | } |
| 53 | |
| 54 | const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>(); |
| 55 | RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size()); |
| 56 | unsigned PrefixSize = Args.size() - 1; |
| 57 | |
| 58 | |
| 59 | if (RtlArgs) { |
| 60 | |
| 61 | |
| 62 | |
| 63 | Args.addFrom(*RtlArgs); |
| 64 | } else if (CE) { |
| 65 | |
| 66 | unsigned ArgsToSkip = isa<CXXOperatorCallExpr>(CE) ? 1 : 0; |
| 67 | CGF.EmitCallArgs(Args, FPT, drop_begin(CE->arguments(), ArgsToSkip), |
| 68 | CE->getDirectCallee()); |
| 69 | } else { |
| 70 | (0) . __assert_fail ("FPT->getNumParams() == 0 && \"No CallExpr specified for function with non-zero number of arguments\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 72, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert( |
| 71 | (0) . __assert_fail ("FPT->getNumParams() == 0 && \"No CallExpr specified for function with non-zero number of arguments\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 72, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> FPT->getNumParams() == 0 && |
| 72 | (0) . __assert_fail ("FPT->getNumParams() == 0 && \"No CallExpr specified for function with non-zero number of arguments\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 72, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "No CallExpr specified for function with non-zero number of arguments"); |
| 73 | } |
| 74 | return {required, PrefixSize}; |
| 75 | } |
| 76 | |
| 77 | RValue CodeGenFunction::EmitCXXMemberOrOperatorCall( |
| 78 | const CXXMethodDecl *MD, const CGCallee &Callee, |
| 79 | ReturnValueSlot ReturnValue, |
| 80 | llvm::Value *This, llvm::Value *ImplicitParam, QualType ImplicitParamTy, |
| 81 | const CallExpr *CE, CallArgList *RtlArgs) { |
| 82 | const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>(); |
| 83 | CallArgList Args; |
| 84 | MemberCallInfo CallInfo = commonEmitCXXMemberOrOperatorCall( |
| 85 | *this, MD, This, ImplicitParam, ImplicitParamTy, CE, Args, RtlArgs); |
| 86 | auto &FnInfo = CGM.getTypes().arrangeCXXMethodCall( |
| 87 | Args, FPT, CallInfo.ReqArgs, CallInfo.PrefixSize); |
| 88 | return EmitCall(FnInfo, Callee, ReturnValue, Args, nullptr, |
| 89 | CE ? CE->getExprLoc() : SourceLocation()); |
| 90 | } |
| 91 | |
| 92 | RValue CodeGenFunction::EmitCXXDestructorCall( |
| 93 | GlobalDecl Dtor, const CGCallee &Callee, llvm::Value *This, |
| 94 | llvm::Value *ImplicitParam, QualType ImplicitParamTy, const CallExpr *CE) { |
| 95 | CallArgList Args; |
| 96 | commonEmitCXXMemberOrOperatorCall(*this, cast<CXXMethodDecl>(Dtor.getDecl()), |
| 97 | This, ImplicitParam, ImplicitParamTy, CE, |
| 98 | Args, nullptr); |
| 99 | return EmitCall(CGM.getTypes().arrangeCXXStructorDeclaration(Dtor), Callee, |
| 100 | ReturnValueSlot(), Args); |
| 101 | } |
| 102 | |
| 103 | RValue CodeGenFunction::EmitCXXPseudoDestructorExpr( |
| 104 | const CXXPseudoDestructorExpr *E) { |
| 105 | QualType DestroyedType = E->getDestroyedType(); |
| 106 | if (DestroyedType.hasStrongOrWeakObjCLifetime()) { |
| 107 | |
| 108 | |
| 109 | |
| 110 | Expr *BaseExpr = E->getBase(); |
| 111 | Address BaseValue = Address::invalid(); |
| 112 | Qualifiers BaseQuals; |
| 113 | |
| 114 | |
| 115 | if (E->isArrow()) { |
| 116 | BaseValue = EmitPointerWithAlignment(BaseExpr); |
| 117 | const PointerType *PTy = BaseExpr->getType()->getAs<PointerType>(); |
| 118 | BaseQuals = PTy->getPointeeType().getQualifiers(); |
| 119 | } else { |
| 120 | LValue BaseLV = EmitLValue(BaseExpr); |
| 121 | BaseValue = BaseLV.getAddress(); |
| 122 | QualType BaseTy = BaseExpr->getType(); |
| 123 | BaseQuals = BaseTy.getQualifiers(); |
| 124 | } |
| 125 | |
| 126 | switch (DestroyedType.getObjCLifetime()) { |
| 127 | case Qualifiers::OCL_None: |
| 128 | case Qualifiers::OCL_ExplicitNone: |
| 129 | case Qualifiers::OCL_Autoreleasing: |
| 130 | break; |
| 131 | |
| 132 | case Qualifiers::OCL_Strong: |
| 133 | EmitARCRelease(Builder.CreateLoad(BaseValue, |
| 134 | DestroyedType.isVolatileQualified()), |
| 135 | ARCPreciseLifetime); |
| 136 | break; |
| 137 | |
| 138 | case Qualifiers::OCL_Weak: |
| 139 | EmitARCDestroyWeak(BaseValue); |
| 140 | break; |
| 141 | } |
| 142 | } else { |
| 143 | |
| 144 | |
| 145 | |
| 146 | |
| 147 | |
| 148 | EmitIgnoredExpr(E->getBase()); |
| 149 | } |
| 150 | |
| 151 | return RValue::get(nullptr); |
| 152 | } |
| 153 | |
| 154 | static CXXRecordDecl *getCXXRecord(const Expr *E) { |
| 155 | QualType T = E->getType(); |
| 156 | if (const PointerType *PTy = T->getAs<PointerType>()) |
| 157 | T = PTy->getPointeeType(); |
| 158 | const RecordType *Ty = T->castAs<RecordType>(); |
| 159 | return cast<CXXRecordDecl>(Ty->getDecl()); |
| 160 | } |
| 161 | |
| 162 | |
| 163 | |
| 164 | RValue CodeGenFunction::EmitCXXMemberCallExpr(const CXXMemberCallExpr *CE, |
| 165 | ReturnValueSlot ReturnValue) { |
| 166 | const Expr *callee = CE->getCallee()->IgnoreParens(); |
| 167 | |
| 168 | if (isa<BinaryOperator>(callee)) |
| 169 | return EmitCXXMemberPointerCallExpr(CE, ReturnValue); |
| 170 | |
| 171 | const MemberExpr *ME = cast<MemberExpr>(callee); |
| 172 | const CXXMethodDecl *MD = cast<CXXMethodDecl>(ME->getMemberDecl()); |
| 173 | |
| 174 | if (MD->isStatic()) { |
| 175 | |
| 176 | CGCallee callee = |
| 177 | CGCallee::forDirect(CGM.GetAddrOfFunction(MD), GlobalDecl(MD)); |
| 178 | return EmitCall(getContext().getPointerType(MD->getType()), callee, CE, |
| 179 | ReturnValue); |
| 180 | } |
| 181 | |
| 182 | bool HasQualifier = ME->hasQualifier(); |
| 183 | NestedNameSpecifier *Qualifier = HasQualifier ? ME->getQualifier() : nullptr; |
| 184 | bool IsArrow = ME->isArrow(); |
| 185 | const Expr *Base = ME->getBase(); |
| 186 | |
| 187 | return EmitCXXMemberOrOperatorMemberCallExpr( |
| 188 | CE, MD, ReturnValue, HasQualifier, Qualifier, IsArrow, Base); |
| 189 | } |
| 190 | |
| 191 | RValue CodeGenFunction::EmitCXXMemberOrOperatorMemberCallExpr( |
| 192 | const CallExpr *CE, const CXXMethodDecl *MD, ReturnValueSlot ReturnValue, |
| 193 | bool HasQualifier, NestedNameSpecifier *Qualifier, bool IsArrow, |
| 194 | const Expr *Base) { |
| 195 | (CE) || isa(CE)", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 195, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(isa<CXXMemberCallExpr>(CE) || isa<CXXOperatorCallExpr>(CE)); |
| 196 | |
| 197 | |
| 198 | bool CanUseVirtualCall = MD->isVirtual() && !HasQualifier; |
| 199 | |
| 200 | const CXXMethodDecl *DevirtualizedMethod = nullptr; |
| 201 | if (CanUseVirtualCall && |
| 202 | MD->getDevirtualizedMethod(Base, getLangOpts().AppleKext)) { |
| 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(); |
| 208 | if (DevirtualizedMethod->getReturnType().getCanonicalType() != |
| 209 | MD->getReturnType().getCanonicalType()) |
| 210 | |
| 211 | |
| 212 | |
| 213 | |
| 214 | |
| 215 | DevirtualizedMethod = nullptr; |
| 216 | else if (getCXXRecord(Inner) == DevirtualizedClass) |
| 217 | |
| 218 | |
| 219 | Base = Inner; |
| 220 | else if (getCXXRecord(Base) != DevirtualizedClass) { |
| 221 | |
| 222 | |
| 223 | |
| 224 | |
| 225 | DevirtualizedMethod = nullptr; |
| 226 | } |
| 227 | } |
| 228 | |
| 229 | |
| 230 | |
| 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(), |
| 238 | , EvaluationOrder::ForceRightToLeft); |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | LValue This; |
| 243 | if (IsArrow) { |
| 244 | LValueBaseInfo BaseInfo; |
| 245 | TBAAAccessInfo TBAAInfo; |
| 246 | Address ThisValue = EmitPointerWithAlignment(Base, &BaseInfo, &TBAAInfo); |
| 247 | This = MakeAddrLValue(ThisValue, Base->getType(), BaseInfo, TBAAInfo); |
| 248 | } else { |
| 249 | This = EmitLValue(Base); |
| 250 | } |
| 251 | |
| 252 | if (const CXXConstructorDecl *Ctor = dyn_cast<CXXConstructorDecl>(MD)) { |
| 253 | |
| 254 | |
| 255 | assert(!RtlArgs); |
| 256 | (0) . __assert_fail ("ReturnValue.isNull() && \"Constructor shouldn't have return value\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 256, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(ReturnValue.isNull() && "Constructor shouldn't have return value"); |
| 257 | CallArgList Args; |
| 258 | commonEmitCXXMemberOrOperatorCall( |
| 259 | *this, Ctor, This.getPointer(), , |
| 260 | (), CE, Args, nullptr); |
| 261 | |
| 262 | EmitCXXConstructorCall(Ctor, Ctor_Complete, , |
| 263 | , This.getAddress(), Args, |
| 264 | AggValueSlot::DoesNotOverlap, CE->getExprLoc(), |
| 265 | ); |
| 266 | return RValue::get(nullptr); |
| 267 | } |
| 268 | |
| 269 | if (MD->isTrivial() || (MD->isDefaulted() && MD->getParent()->isUnion())) { |
| 270 | if (isa<CXXDestructorDecl>(MD)) return RValue::get(nullptr); |
| 271 | if (!MD->getParent()->mayInsertExtraPadding()) { |
| 272 | if (MD->isCopyAssignmentOperator() || MD->isMoveAssignmentOperator()) { |
| 273 | |
| 274 | |
| 275 | LValue RHS = isa<CXXOperatorCallExpr>(CE) |
| 276 | ? MakeNaturalAlignAddrLValue( |
| 277 | (*RtlArgs)[0].getRValue(*this).getScalarVal(), |
| 278 | (*(CE->arg_begin() + 1))->getType()) |
| 279 | : EmitLValue(*CE->arg_begin()); |
| 280 | EmitAggregateAssign(This, RHS, CE->getType()); |
| 281 | return RValue::get(This.getPointer()); |
| 282 | } |
| 283 | llvm_unreachable("unknown trivial member function"); |
| 284 | } |
| 285 | } |
| 286 | |
| 287 | |
| 288 | const CXXMethodDecl *CalleeDecl = |
| 289 | DevirtualizedMethod ? DevirtualizedMethod : MD; |
| 290 | const CGFunctionInfo *FInfo = nullptr; |
| 291 | if (const auto *Dtor = dyn_cast<CXXDestructorDecl>(CalleeDecl)) |
| 292 | FInfo = &CGM.getTypes().arrangeCXXStructorDeclaration( |
| 293 | GlobalDecl(Dtor, Dtor_Complete)); |
| 294 | else |
| 295 | FInfo = &CGM.getTypes().arrangeCXXMethodDeclaration(CalleeDecl); |
| 296 | |
| 297 | llvm::FunctionType *Ty = CGM.getTypes().GetFunctionType(*FInfo); |
| 298 | |
| 299 | |
| 300 | |
| 301 | |
| 302 | SourceLocation CallLoc; |
| 303 | ASTContext &C = getContext(); |
| 304 | if (CE) |
| 305 | CallLoc = CE->getExprLoc(); |
| 306 | |
| 307 | SanitizerSet SkippedChecks; |
| 308 | if (const auto *CMCE = dyn_cast<CXXMemberCallExpr>(CE)) { |
| 309 | auto *IOA = CMCE->getImplicitObjectArgument(); |
| 310 | bool IsImplicitObjectCXXThis = IsWrappedCXXThis(IOA); |
| 311 | if (IsImplicitObjectCXXThis) |
| 312 | SkippedChecks.set(SanitizerKind::Alignment, true); |
| 313 | if (IsImplicitObjectCXXThis || isa<DeclRefExpr>(IOA)) |
| 314 | SkippedChecks.set(SanitizerKind::Null, true); |
| 315 | } |
| 316 | EmitTypeCheck(CodeGenFunction::TCK_MemberCall, CallLoc, This.getPointer(), |
| 317 | C.getRecordType(CalleeDecl->getParent()), |
| 318 | ::Zero(), SkippedChecks); |
| 319 | |
| 320 | |
| 321 | |
| 322 | |
| 323 | |
| 324 | |
| 325 | |
| 326 | bool UseVirtualCall = CanUseVirtualCall && !DevirtualizedMethod; |
| 327 | |
| 328 | if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(CalleeDecl)) { |
| 329 | (0) . __assert_fail ("CE->arg_begin() == CE->arg_end() && \"Destructor shouldn't have explicit parameters\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 330, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(CE->arg_begin() == CE->arg_end() && |
| 330 | (0) . __assert_fail ("CE->arg_begin() == CE->arg_end() && \"Destructor shouldn't have explicit parameters\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 330, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "Destructor shouldn't have explicit parameters"); |
| 331 | (0) . __assert_fail ("ReturnValue.isNull() && \"Destructor shouldn't have return value\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 331, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(ReturnValue.isNull() && "Destructor shouldn't have return value"); |
| 332 | if (UseVirtualCall) { |
| 333 | CGM.getCXXABI().EmitVirtualDestructorCall( |
| 334 | *this, Dtor, Dtor_Complete, This.getAddress(), |
| 335 | cast<CXXMemberCallExpr>(CE)); |
| 336 | } else { |
| 337 | GlobalDecl GD(Dtor, Dtor_Complete); |
| 338 | CGCallee Callee; |
| 339 | if (getLangOpts().AppleKext && Dtor->isVirtual() && HasQualifier) |
| 340 | Callee = BuildAppleKextVirtualCall(Dtor, Qualifier, Ty); |
| 341 | else if (!DevirtualizedMethod) |
| 342 | Callee = |
| 343 | CGCallee::forDirect(CGM.getAddrOfCXXStructor(GD, FInfo, Ty), GD); |
| 344 | else { |
| 345 | Callee = CGCallee::forDirect(CGM.GetAddrOfFunction(GD, Ty), GD); |
| 346 | } |
| 347 | |
| 348 | EmitCXXDestructorCall(GD, Callee, This.getPointer(), |
| 349 | , |
| 350 | (), nullptr); |
| 351 | } |
| 352 | return RValue::get(nullptr); |
| 353 | } |
| 354 | |
| 355 | |
| 356 | |
| 357 | |
| 358 | CGCallee Callee; |
| 359 | if (UseVirtualCall) { |
| 360 | Callee = CGCallee::forVirtual(CE, MD, This.getAddress(), Ty); |
| 361 | } else { |
| 362 | if (SanOpts.has(SanitizerKind::CFINVCall) && |
| 363 | MD->getParent()->isDynamicClass()) { |
| 364 | llvm::Value *VTable; |
| 365 | const CXXRecordDecl *RD; |
| 366 | std::tie(VTable, RD) = |
| 367 | CGM.getCXXABI().LoadVTablePtr(*this, This.getAddress(), |
| 368 | MD->getParent()); |
| 369 | EmitVTablePtrCheckForCall(RD, VTable, CFITCK_NVCall, CE->getBeginLoc()); |
| 370 | } |
| 371 | |
| 372 | if (getLangOpts().AppleKext && MD->isVirtual() && HasQualifier) |
| 373 | Callee = BuildAppleKextVirtualCall(MD, Qualifier, Ty); |
| 374 | else if (!DevirtualizedMethod) |
| 375 | Callee = |
| 376 | CGCallee::forDirect(CGM.GetAddrOfFunction(MD, Ty), GlobalDecl(MD)); |
| 377 | else { |
| 378 | Callee = |
| 379 | CGCallee::forDirect(CGM.GetAddrOfFunction(DevirtualizedMethod, Ty), |
| 380 | GlobalDecl(DevirtualizedMethod)); |
| 381 | } |
| 382 | } |
| 383 | |
| 384 | if (MD->isVirtual()) { |
| 385 | Address NewThisAddr = |
| 386 | CGM.getCXXABI().adjustThisArgumentForVirtualFunctionCall( |
| 387 | *this, CalleeDecl, This.getAddress(), UseVirtualCall); |
| 388 | This.setAddress(NewThisAddr); |
| 389 | } |
| 390 | |
| 391 | return EmitCXXMemberOrOperatorCall( |
| 392 | CalleeDecl, Callee, ReturnValue, This.getPointer(), |
| 393 | , QualType(), CE, RtlArgs); |
| 394 | } |
| 395 | |
| 396 | RValue |
| 397 | CodeGenFunction::EmitCXXMemberPointerCallExpr(const CXXMemberCallExpr *E, |
| 398 | ReturnValueSlot ReturnValue) { |
| 399 | const BinaryOperator *BO = |
| 400 | cast<BinaryOperator>(E->getCallee()->IgnoreParens()); |
| 401 | const Expr *BaseExpr = BO->getLHS(); |
| 402 | const Expr *MemFnExpr = BO->getRHS(); |
| 403 | |
| 404 | const MemberPointerType *MPT = |
| 405 | MemFnExpr->getType()->castAs<MemberPointerType>(); |
| 406 | |
| 407 | const FunctionProtoType *FPT = |
| 408 | MPT->getPointeeType()->castAs<FunctionProtoType>(); |
| 409 | const CXXRecordDecl *RD = |
| 410 | cast<CXXRecordDecl>(MPT->getClass()->getAs<RecordType>()->getDecl()); |
| 411 | |
| 412 | |
| 413 | Address This = Address::invalid(); |
| 414 | if (BO->getOpcode() == BO_PtrMemI) |
| 415 | This = EmitPointerWithAlignment(BaseExpr); |
| 416 | else |
| 417 | This = EmitLValue(BaseExpr).getAddress(); |
| 418 | |
| 419 | EmitTypeCheck(TCK_MemberCall, E->getExprLoc(), This.getPointer(), |
| 420 | QualType(MPT->getClass(), 0)); |
| 421 | |
| 422 | |
| 423 | llvm::Value *MemFnPtr = EmitScalarExpr(MemFnExpr); |
| 424 | |
| 425 | |
| 426 | llvm::Value *ThisPtrForCall = nullptr; |
| 427 | CGCallee Callee = |
| 428 | CGM.getCXXABI().EmitLoadOfMemberFunctionPointer(*this, BO, This, |
| 429 | ThisPtrForCall, MemFnPtr, MPT); |
| 430 | |
| 431 | CallArgList Args; |
| 432 | |
| 433 | QualType ThisType = |
| 434 | getContext().getPointerType(getContext().getTagDeclType(RD)); |
| 435 | |
| 436 | |
| 437 | Args.add(RValue::get(ThisPtrForCall), ThisType); |
| 438 | |
| 439 | RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, 1); |
| 440 | |
| 441 | |
| 442 | EmitCallArgs(Args, FPT, E->arguments()); |
| 443 | return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required, |
| 444 | ), |
| 445 | Callee, ReturnValue, Args, nullptr, E->getExprLoc()); |
| 446 | } |
| 447 | |
| 448 | RValue |
| 449 | CodeGenFunction::EmitCXXOperatorMemberCallExpr(const CXXOperatorCallExpr *E, |
| 450 | const CXXMethodDecl *MD, |
| 451 | ReturnValueSlot ReturnValue) { |
| 452 | (0) . __assert_fail ("MD->isInstance() && \"Trying to emit a member call expr on a static method!\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 453, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(MD->isInstance() && |
| 453 | (0) . __assert_fail ("MD->isInstance() && \"Trying to emit a member call expr on a static method!\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 453, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "Trying to emit a member call expr on a static method!"); |
| 454 | return EmitCXXMemberOrOperatorMemberCallExpr( |
| 455 | E, MD, ReturnValue, , , |
| 456 | , E->getArg(0)); |
| 457 | } |
| 458 | |
| 459 | RValue CodeGenFunction::EmitCUDAKernelCallExpr(const CUDAKernelCallExpr *E, |
| 460 | ReturnValueSlot ReturnValue) { |
| 461 | return CGM.getCUDARuntime().EmitCUDAKernelCallExpr(*this, E, ReturnValue); |
| 462 | } |
| 463 | |
| 464 | static void EmitNullBaseClassInitialization(CodeGenFunction &CGF, |
| 465 | Address DestPtr, |
| 466 | const CXXRecordDecl *Base) { |
| 467 | if (Base->isEmpty()) |
| 468 | return; |
| 469 | |
| 470 | DestPtr = CGF.Builder.CreateElementBitCast(DestPtr, CGF.Int8Ty); |
| 471 | |
| 472 | const ASTRecordLayout &Layout = CGF.getContext().getASTRecordLayout(Base); |
| 473 | CharUnits NVSize = Layout.getNonVirtualSize(); |
| 474 | |
| 475 | |
| 476 | |
| 477 | |
| 478 | SmallVector<std::pair<CharUnits, CharUnits>, 1> Stores; |
| 479 | Stores.emplace_back(CharUnits::Zero(), NVSize); |
| 480 | |
| 481 | |
| 482 | CharUnits VBPtrWidth = CGF.getPointerSize(); |
| 483 | std::vector<CharUnits> VBPtrOffsets = |
| 484 | CGF.CGM.getCXXABI().getVBPtrOffsets(Base); |
| 485 | for (CharUnits VBPtrOffset : VBPtrOffsets) { |
| 486 | |
| 487 | if (VBPtrOffset >= NVSize) |
| 488 | break; |
| 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 | (0) . __assert_fail ("!SplitBeforeSize.isNegative() && \"negative store size!\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 495, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">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 | (0) . __assert_fail ("!SplitAfterSize.isNegative() && \"negative store size!\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 501, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(!SplitAfterSize.isNegative() && "negative store size!"); |
| 502 | if (!SplitAfterSize.isZero()) |
| 503 | Stores.emplace_back(SplitAfterOffset, SplitAfterSize); |
| 504 | } |
| 505 | |
| 506 | |
| 507 | |
| 508 | |
| 509 | |
| 510 | |
| 511 | |
| 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 | , llvm::GlobalVariable::PrivateLinkage, |
| 517 | NullConstantForBase, Twine()); |
| 518 | |
| 519 | CharUnits Align = std::max(Layout.getNonVirtualAlignment(), |
| 520 | DestPtr.getAlignment()); |
| 521 | NullVariable->setAlignment(Align.getQuantity()); |
| 522 | |
| 523 | Address SrcPtr = Address(CGF.EmitCastToVoidPtr(NullVariable), Align); |
| 524 | |
| 525 | |
| 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 | |
| 536 | |
| 537 | |
| 538 | |
| 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 | } |
| 549 | } |
| 550 | |
| 551 | void |
| 552 | CodeGenFunction::EmitCXXConstructExpr(const CXXConstructExpr *E, |
| 553 | AggValueSlot Dest) { |
| 554 | (0) . __assert_fail ("!Dest.isIgnored() && \"Must have a destination!\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 554, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(!Dest.isIgnored() && "Must have a destination!"); |
| 555 | const CXXConstructorDecl *CD = E->getConstructor(); |
| 556 | |
| 557 | |
| 558 | |
| 559 | |
| 560 | |
| 561 | if (E->requiresZeroInitialization() && !Dest.isZeroed()) { |
| 562 | switch (E->getConstructionKind()) { |
| 563 | case CXXConstructExpr::CK_Delegating: |
| 564 | case CXXConstructExpr::CK_Complete: |
| 565 | EmitNullInitialization(Dest.getAddress(), E->getType()); |
| 566 | break; |
| 567 | case CXXConstructExpr::CK_VirtualBase: |
| 568 | case CXXConstructExpr::CK_NonVirtualBase: |
| 569 | EmitNullBaseClassInitialization(*this, Dest.getAddress(), |
| 570 | CD->getParent()); |
| 571 | break; |
| 572 | } |
| 573 | } |
| 574 | |
| 575 | |
| 576 | if (CD->isTrivial() && CD->isDefaultConstructor()) |
| 577 | return; |
| 578 | |
| 579 | |
| 580 | |
| 581 | |
| 582 | if (getLangOpts().ElideConstructors && E->isElidable()) { |
| 583 | getType(), E->getArg(0)->getType())", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 584, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(getContext().hasSameUnqualifiedType(E->getType(), |
| 584 | getType(), E->getArg(0)->getType())", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 584, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> E->getArg(0)->getType())); |
| 585 | if (E->getArg(0)->isTemporaryObject(getContext(), CD->getParent())) { |
| 586 | EmitAggExpr(E->getArg(0), Dest); |
| 587 | return; |
| 588 | } |
| 589 | } |
| 590 | |
| 591 | if (const ArrayType *arrayType |
| 592 | = getContext().getAsArrayType(E->getType())) { |
| 593 | EmitCXXAggrConstructorCall(CD, arrayType, Dest.getAddress(), E, |
| 594 | Dest.isSanitizerChecked()); |
| 595 | } else { |
| 596 | CXXCtorType Type = Ctor_Complete; |
| 597 | bool ForVirtualBase = false; |
| 598 | bool Delegating = false; |
| 599 | |
| 600 | switch (E->getConstructionKind()) { |
| 601 | case CXXConstructExpr::CK_Delegating: |
| 602 | |
| 603 | Type = CurGD.getCtorType(); |
| 604 | Delegating = true; |
| 605 | break; |
| 606 | |
| 607 | case CXXConstructExpr::CK_Complete: |
| 608 | Type = Ctor_Complete; |
| 609 | break; |
| 610 | |
| 611 | case CXXConstructExpr::CK_VirtualBase: |
| 612 | ForVirtualBase = true; |
| 613 | LLVM_FALLTHROUGH; |
| 614 | |
| 615 | case CXXConstructExpr::CK_NonVirtualBase: |
| 616 | Type = Ctor_Base; |
| 617 | } |
| 618 | |
| 619 | |
| 620 | EmitCXXConstructorCall(CD, Type, ForVirtualBase, Delegating, |
| 621 | Dest.getAddress(), E, Dest.mayOverlap(), |
| 622 | Dest.isSanitizerChecked()); |
| 623 | } |
| 624 | } |
| 625 | |
| 626 | void CodeGenFunction::EmitSynthesizedCXXCopyCtor(Address Dest, Address Src, |
| 627 | const Expr *Exp) { |
| 628 | if (const ExprWithCleanups *E = dyn_cast<ExprWithCleanups>(Exp)) |
| 629 | Exp = E->getSubExpr(); |
| 630 | (0) . __assert_fail ("isa(Exp) && \"EmitSynthesizedCXXCopyCtor - unknown copy ctor expr\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 631, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(isa<CXXConstructExpr>(Exp) && |
| 631 | (0) . __assert_fail ("isa(Exp) && \"EmitSynthesizedCXXCopyCtor - unknown copy ctor expr\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 631, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "EmitSynthesizedCXXCopyCtor - unknown copy ctor expr"); |
| 632 | const CXXConstructExpr* E = cast<CXXConstructExpr>(Exp); |
| 633 | const CXXConstructorDecl *CD = E->getConstructor(); |
| 634 | RunCleanupsScope Scope(*this); |
| 635 | |
| 636 | |
| 637 | |
| 638 | |
| 639 | |
| 640 | if (E->requiresZeroInitialization()) |
| 641 | EmitNullInitialization(Dest, E->getType()); |
| 642 | |
| 643 | (0) . __assert_fail ("!getContext().getAsConstantArrayType(E->getType()) && \"EmitSynthesizedCXXCopyCtor - Copied-in Array\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 644, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(!getContext().getAsConstantArrayType(E->getType()) |
| 644 | (0) . __assert_fail ("!getContext().getAsConstantArrayType(E->getType()) && \"EmitSynthesizedCXXCopyCtor - Copied-in Array\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 644, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> && "EmitSynthesizedCXXCopyCtor - Copied-in Array"); |
| 645 | EmitSynthesizedCXXCopyCtorCall(CD, Dest, Src, E); |
| 646 | } |
| 647 | |
| 648 | static CharUnits CalculateCookiePadding(CodeGenFunction &CGF, |
| 649 | const CXXNewExpr *E) { |
| 650 | if (!E->isArray()) |
| 651 | return CharUnits::Zero(); |
| 652 | |
| 653 | |
| 654 | |
| 655 | if (E->getOperatorNew()->isReservedGlobalPlacementOperator()) |
| 656 | return CharUnits::Zero(); |
| 657 | |
| 658 | return CGF.CGM.getCXXABI().GetArrayCookieSize(E); |
| 659 | } |
| 660 | |
| 661 | static llvm::Value *EmitCXXNewAllocSize(CodeGenFunction &CGF, |
| 662 | const CXXNewExpr *e, |
| 663 | unsigned minElements, |
| 664 | llvm::Value *&numElements, |
| 665 | llvm::Value *&sizeWithoutCookie) { |
| 666 | QualType type = e->getAllocatedType(); |
| 667 | |
| 668 | if (!e->isArray()) { |
| 669 | CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); |
| 670 | sizeWithoutCookie |
| 671 | = llvm::ConstantInt::get(CGF.SizeTy, typeSize.getQuantity()); |
| 672 | return sizeWithoutCookie; |
| 673 | } |
| 674 | |
| 675 | |
| 676 | unsigned sizeWidth = CGF.SizeTy->getBitWidth(); |
| 677 | |
| 678 | |
| 679 | llvm::APInt cookieSize(sizeWidth, |
| 680 | CalculateCookiePadding(CGF, e).getQuantity()); |
| 681 | |
| 682 | |
| 683 | |
| 684 | |
| 685 | numElements = |
| 686 | ConstantEmitter(CGF).tryEmitAbstract(e->getArraySize(), e->getType()); |
| 687 | if (!numElements) |
| 688 | numElements = CGF.EmitScalarExpr(e->getArraySize()); |
| 689 | (numElements->getType())", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 689, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(isa<llvm::IntegerType>(numElements->getType())); |
| 690 | |
| 691 | |
| 692 | |
| 693 | |
| 694 | |
| 695 | |
| 696 | |
| 697 | bool isSigned |
| 698 | = e->getArraySize()->getType()->isSignedIntegerOrEnumerationType(); |
| 699 | llvm::IntegerType *numElementsType |
| 700 | = cast<llvm::IntegerType>(numElements->getType()); |
| 701 | unsigned numElementsWidth = numElementsType->getBitWidth(); |
| 702 | |
| 703 | |
| 704 | llvm::APInt arraySizeMultiplier(sizeWidth, 1); |
| 705 | while (const ConstantArrayType *CAT |
| 706 | = CGF.getContext().getAsConstantArrayType(type)) { |
| 707 | type = CAT->getElementType(); |
| 708 | arraySizeMultiplier *= CAT->getSize(); |
| 709 | } |
| 710 | |
| 711 | CharUnits typeSize = CGF.getContext().getTypeSizeInChars(type); |
| 712 | llvm::APInt typeSizeMultiplier(sizeWidth, typeSize.getQuantity()); |
| 713 | typeSizeMultiplier *= arraySizeMultiplier; |
| 714 | |
| 715 | |
| 716 | llvm::Value *size; |
| 717 | |
| 718 | |
| 719 | |
| 720 | if (llvm::ConstantInt *numElementsC = |
| 721 | dyn_cast<llvm::ConstantInt>(numElements)) { |
| 722 | const llvm::APInt &count = numElementsC->getValue(); |
| 723 | |
| 724 | bool hasAnyOverflow = false; |
| 725 | |
| 726 | |
| 727 | if (isSigned && count.isNegative()) |
| 728 | hasAnyOverflow = true; |
| 729 | |
| 730 | |
| 731 | |
| 732 | |
| 733 | else if (numElementsWidth > sizeWidth && |
| 734 | numElementsWidth - sizeWidth > count.countLeadingZeros()) |
| 735 | hasAnyOverflow = true; |
| 736 | |
| 737 | |
| 738 | llvm::APInt adjustedCount = count.zextOrTrunc(sizeWidth); |
| 739 | |
| 740 | |
| 741 | |
| 742 | if (adjustedCount.ult(minElements)) |
| 743 | hasAnyOverflow = true; |
| 744 | |
| 745 | |
| 746 | |
| 747 | |
| 748 | numElements = llvm::ConstantInt::get(CGF.SizeTy, |
| 749 | adjustedCount * arraySizeMultiplier); |
| 750 | |
| 751 | |
| 752 | bool overflow; |
| 753 | llvm::APInt allocationSize |
| 754 | = adjustedCount.umul_ov(typeSizeMultiplier, overflow); |
| 755 | hasAnyOverflow |= overflow; |
| 756 | |
| 757 | |
| 758 | if (cookieSize != 0) { |
| 759 | |
| 760 | |
| 761 | sizeWithoutCookie = llvm::ConstantInt::get(CGF.SizeTy, allocationSize); |
| 762 | |
| 763 | allocationSize = allocationSize.uadd_ov(cookieSize, overflow); |
| 764 | hasAnyOverflow |= overflow; |
| 765 | } |
| 766 | |
| 767 | |
| 768 | if (hasAnyOverflow) { |
| 769 | size = llvm::Constant::getAllOnesValue(CGF.SizeTy); |
| 770 | } else { |
| 771 | size = llvm::ConstantInt::get(CGF.SizeTy, allocationSize); |
| 772 | } |
| 773 | |
| 774 | |
| 775 | } else { |
| 776 | |
| 777 | |
| 778 | |
| 779 | |
| 780 | |
| 781 | |
| 782 | |
| 783 | |
| 784 | |
| 785 | |
| 786 | |
| 787 | |
| 788 | |
| 789 | llvm::Value *hasOverflow = nullptr; |
| 790 | |
| 791 | |
| 792 | |
| 793 | |
| 794 | if (numElementsWidth > sizeWidth) { |
| 795 | llvm::APInt threshold(numElementsWidth, 1); |
| 796 | threshold <<= sizeWidth; |
| 797 | |
| 798 | llvm::Value *thresholdV |
| 799 | = llvm::ConstantInt::get(numElementsType, threshold); |
| 800 | |
| 801 | hasOverflow = CGF.Builder.CreateICmpUGE(numElements, thresholdV); |
| 802 | numElements = CGF.Builder.CreateTrunc(numElements, CGF.SizeTy); |
| 803 | |
| 804 | |
| 805 | } else if (isSigned) { |
| 806 | if (numElementsWidth < sizeWidth) |
| 807 | numElements = CGF.Builder.CreateSExt(numElements, CGF.SizeTy); |
| 808 | |
| 809 | |
| 810 | |
| 811 | |
| 812 | |
| 813 | |
| 814 | if (typeSizeMultiplier == 1) |
| 815 | hasOverflow = CGF.Builder.CreateICmpSLT(numElements, |
| 816 | llvm::ConstantInt::get(CGF.SizeTy, minElements)); |
| 817 | |
| 818 | |
| 819 | } else if (numElementsWidth < sizeWidth) { |
| 820 | numElements = CGF.Builder.CreateZExt(numElements, CGF.SizeTy); |
| 821 | } |
| 822 | |
| 823 | getType() == CGF.SizeTy", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 823, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(numElements->getType() == CGF.SizeTy); |
| 824 | |
| 825 | if (minElements) { |
| 826 | |
| 827 | if (!hasOverflow) { |
| 828 | hasOverflow = CGF.Builder.CreateICmpULT(numElements, |
| 829 | llvm::ConstantInt::get(CGF.SizeTy, minElements)); |
| 830 | } else if (numElementsWidth > sizeWidth) { |
| 831 | |
| 832 | |
| 833 | |
| 834 | hasOverflow = CGF.Builder.CreateOr(hasOverflow, |
| 835 | CGF.Builder.CreateICmpULT(numElements, |
| 836 | llvm::ConstantInt::get(CGF.SizeTy, minElements))); |
| 837 | } |
| 838 | } |
| 839 | |
| 840 | size = numElements; |
| 841 | |
| 842 | |
| 843 | |
| 844 | |
| 845 | |
| 846 | |
| 847 | |
| 848 | |
| 849 | if (typeSizeMultiplier != 1) { |
| 850 | llvm::Function *umul_with_overflow |
| 851 | = CGF.CGM.getIntrinsic(llvm::Intrinsic::umul_with_overflow, CGF.SizeTy); |
| 852 | |
| 853 | llvm::Value *tsmV = |
| 854 | llvm::ConstantInt::get(CGF.SizeTy, typeSizeMultiplier); |
| 855 | llvm::Value *result = |
| 856 | CGF.Builder.CreateCall(umul_with_overflow, {size, tsmV}); |
| 857 | |
| 858 | llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1); |
| 859 | if (hasOverflow) |
| 860 | hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed); |
| 861 | else |
| 862 | hasOverflow = overflowed; |
| 863 | |
| 864 | size = CGF.Builder.CreateExtractValue(result, 0); |
| 865 | |
| 866 | |
| 867 | if (arraySizeMultiplier != 1) { |
| 868 | |
| 869 | |
| 870 | if (typeSize.isOne()) { |
| 871 | assert(arraySizeMultiplier == typeSizeMultiplier); |
| 872 | numElements = size; |
| 873 | |
| 874 | |
| 875 | } else { |
| 876 | llvm::Value *asmV = |
| 877 | llvm::ConstantInt::get(CGF.SizeTy, arraySizeMultiplier); |
| 878 | numElements = CGF.Builder.CreateMul(numElements, asmV); |
| 879 | } |
| 880 | } |
| 881 | } else { |
| 882 | |
| 883 | assert(arraySizeMultiplier == 1); |
| 884 | } |
| 885 | |
| 886 | |
| 887 | if (cookieSize != 0) { |
| 888 | sizeWithoutCookie = size; |
| 889 | |
| 890 | llvm::Function *uadd_with_overflow |
| 891 | = CGF.CGM.getIntrinsic(llvm::Intrinsic::uadd_with_overflow, CGF.SizeTy); |
| 892 | |
| 893 | llvm::Value *cookieSizeV = llvm::ConstantInt::get(CGF.SizeTy, cookieSize); |
| 894 | llvm::Value *result = |
| 895 | CGF.Builder.CreateCall(uadd_with_overflow, {size, cookieSizeV}); |
| 896 | |
| 897 | llvm::Value *overflowed = CGF.Builder.CreateExtractValue(result, 1); |
| 898 | if (hasOverflow) |
| 899 | hasOverflow = CGF.Builder.CreateOr(hasOverflow, overflowed); |
| 900 | else |
| 901 | hasOverflow = overflowed; |
| 902 | |
| 903 | size = CGF.Builder.CreateExtractValue(result, 0); |
| 904 | } |
| 905 | |
| 906 | |
| 907 | |
| 908 | |
| 909 | if (hasOverflow) |
| 910 | size = CGF.Builder.CreateSelect(hasOverflow, |
| 911 | llvm::Constant::getAllOnesValue(CGF.SizeTy), |
| 912 | size); |
| 913 | } |
| 914 | |
| 915 | if (cookieSize == 0) |
| 916 | sizeWithoutCookie = size; |
| 917 | else |
| 918 | (0) . __assert_fail ("sizeWithoutCookie && \"didn't set sizeWithoutCookie?\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 918, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(sizeWithoutCookie && "didn't set sizeWithoutCookie?"); |
| 919 | |
| 920 | return size; |
| 921 | } |
| 922 | |
| 923 | static void StoreAnyExprIntoOneUnit(CodeGenFunction &CGF, const Expr *Init, |
| 924 | QualType AllocType, Address NewPtr, |
| 925 | AggValueSlot::Overlap_t MayOverlap) { |
| 926 | |
| 927 | switch (CGF.getEvaluationKind(AllocType)) { |
| 928 | case TEK_Scalar: |
| 929 | CGF.EmitScalarInit(Init, nullptr, |
| 930 | CGF.MakeAddrLValue(NewPtr, AllocType), false); |
| 931 | return; |
| 932 | case TEK_Complex: |
| 933 | CGF.EmitComplexExprIntoLValue(Init, CGF.MakeAddrLValue(NewPtr, AllocType), |
| 934 | true); |
| 935 | return; |
| 936 | case TEK_Aggregate: { |
| 937 | AggValueSlot Slot |
| 938 | = AggValueSlot::forAddr(NewPtr, AllocType.getQualifiers(), |
| 939 | AggValueSlot::IsDestructed, |
| 940 | AggValueSlot::DoesNotNeedGCBarriers, |
| 941 | AggValueSlot::IsNotAliased, |
| 942 | MayOverlap, AggValueSlot::IsNotZeroed, |
| 943 | AggValueSlot::IsSanitizerChecked); |
| 944 | CGF.EmitAggExpr(Init, Slot); |
| 945 | return; |
| 946 | } |
| 947 | } |
| 948 | llvm_unreachable("bad evaluation kind"); |
| 949 | } |
| 950 | |
| 951 | void CodeGenFunction::EmitNewArrayInitializer( |
| 952 | const CXXNewExpr *E, QualType ElementType, llvm::Type *ElementTy, |
| 953 | Address BeginPtr, llvm::Value *NumElements, |
| 954 | llvm::Value *AllocSizeWithoutCookie) { |
| 955 | |
| 956 | |
| 957 | if (!E->hasInitializer()) |
| 958 | return; |
| 959 | |
| 960 | Address CurPtr = BeginPtr; |
| 961 | |
| 962 | unsigned InitListElements = 0; |
| 963 | |
| 964 | const Expr *Init = E->getInitializer(); |
| 965 | Address EndOfInit = Address::invalid(); |
| 966 | QualType::DestructionKind DtorKind = ElementType.isDestructedType(); |
| 967 | EHScopeStack::stable_iterator Cleanup; |
| 968 | llvm::Instruction *CleanupDominator = nullptr; |
| 969 | |
| 970 | CharUnits ElementSize = getContext().getTypeSizeInChars(ElementType); |
| 971 | CharUnits ElementAlign = |
| 972 | BeginPtr.getAlignment().alignmentOfArrayElement(ElementSize); |
| 973 | |
| 974 | |
| 975 | auto TryMemsetInitialization = [&]() -> bool { |
| 976 | |
| 977 | |
| 978 | if (!CGM.getTypes().isZeroInitializable(ElementType)) |
| 979 | return false; |
| 980 | |
| 981 | |
| 982 | |
| 983 | |
| 984 | |
| 985 | auto *RemainingSize = AllocSizeWithoutCookie; |
| 986 | if (InitListElements) { |
| 987 | |
| 988 | auto *InitializedSize = llvm::ConstantInt::get( |
| 989 | RemainingSize->getType(), |
| 990 | getContext().getTypeSizeInChars(ElementType).getQuantity() * |
| 991 | InitListElements); |
| 992 | RemainingSize = Builder.CreateSub(RemainingSize, InitializedSize); |
| 993 | } |
| 994 | |
| 995 | |
| 996 | Builder.CreateMemSet(CurPtr, Builder.getInt8(0), RemainingSize, false); |
| 997 | return true; |
| 998 | }; |
| 999 | |
| 1000 | |
| 1001 | if (const InitListExpr *ILE = dyn_cast<InitListExpr>(Init)) { |
| 1002 | |
| 1003 | |
| 1004 | if (ILE->isStringLiteralInit()) { |
| 1005 | |
| 1006 | |
| 1007 | |
| 1008 | AggValueSlot Slot = |
| 1009 | AggValueSlot::forAddr(CurPtr, ElementType.getQualifiers(), |
| 1010 | AggValueSlot::IsDestructed, |
| 1011 | AggValueSlot::DoesNotNeedGCBarriers, |
| 1012 | AggValueSlot::IsNotAliased, |
| 1013 | AggValueSlot::DoesNotOverlap, |
| 1014 | AggValueSlot::IsNotZeroed, |
| 1015 | AggValueSlot::IsSanitizerChecked); |
| 1016 | EmitAggExpr(ILE->getInit(0), Slot); |
| 1017 | |
| 1018 | |
| 1019 | InitListElements = |
| 1020 | cast<ConstantArrayType>(ILE->getType()->getAsArrayTypeUnsafe()) |
| 1021 | ->getSize().getZExtValue(); |
| 1022 | CurPtr = |
| 1023 | Address(Builder.CreateInBoundsGEP(CurPtr.getPointer(), |
| 1024 | Builder.getSize(InitListElements), |
| 1025 | "string.init.end"), |
| 1026 | CurPtr.getAlignment().alignmentAtOffset(InitListElements * |
| 1027 | ElementSize)); |
| 1028 | |
| 1029 | |
| 1030 | llvm::ConstantInt *ConstNum = dyn_cast<llvm::ConstantInt>(NumElements); |
| 1031 | if (!ConstNum || !ConstNum->equalsInt(InitListElements)) { |
| 1032 | bool OK = TryMemsetInitialization(); |
| 1033 | (void)OK; |
| 1034 | (0) . __assert_fail ("OK && \"couldn't memset character type?\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1034, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(OK && "couldn't memset character type?"); |
| 1035 | } |
| 1036 | return; |
| 1037 | } |
| 1038 | |
| 1039 | InitListElements = ILE->getNumInits(); |
| 1040 | |
| 1041 | |
| 1042 | |
| 1043 | QualType AllocType = E->getAllocatedType(); |
| 1044 | if (const ConstantArrayType *CAT = dyn_cast_or_null<ConstantArrayType>( |
| 1045 | AllocType->getAsArrayTypeUnsafe())) { |
| 1046 | ElementTy = ConvertTypeForMem(AllocType); |
| 1047 | CurPtr = Builder.CreateElementBitCast(CurPtr, ElementTy); |
| 1048 | InitListElements *= getContext().getConstantArrayElementCount(CAT); |
| 1049 | } |
| 1050 | |
| 1051 | |
| 1052 | if (needsEHCleanup(DtorKind)) { |
| 1053 | |
| 1054 | |
| 1055 | |
| 1056 | |
| 1057 | EndOfInit = CreateTempAlloca(BeginPtr.getType(), getPointerAlign(), |
| 1058 | "array.init.end"); |
| 1059 | CleanupDominator = Builder.CreateStore(BeginPtr.getPointer(), EndOfInit); |
| 1060 | pushIrregularPartialArrayCleanup(BeginPtr.getPointer(), EndOfInit, |
| 1061 | ElementType, ElementAlign, |
| 1062 | getDestroyer(DtorKind)); |
| 1063 | Cleanup = EHStack.stable_begin(); |
| 1064 | } |
| 1065 | |
| 1066 | CharUnits StartAlign = CurPtr.getAlignment(); |
| 1067 | for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) { |
| 1068 | |
| 1069 | |
| 1070 | |
| 1071 | if (EndOfInit.isValid()) { |
| 1072 | auto FinishedPtr = |
| 1073 | Builder.CreateBitCast(CurPtr.getPointer(), BeginPtr.getType()); |
| 1074 | Builder.CreateStore(FinishedPtr, EndOfInit); |
| 1075 | } |
| 1076 | |
| 1077 | |
| 1078 | |
| 1079 | StoreAnyExprIntoOneUnit(*this, ILE->getInit(i), |
| 1080 | ILE->getInit(i)->getType(), CurPtr, |
| 1081 | AggValueSlot::DoesNotOverlap); |
| 1082 | CurPtr = Address(Builder.CreateInBoundsGEP(CurPtr.getPointer(), |
| 1083 | Builder.getSize(1), |
| 1084 | "array.exp.next"), |
| 1085 | StartAlign.alignmentAtOffset((i + 1) * ElementSize)); |
| 1086 | } |
| 1087 | |
| 1088 | |
| 1089 | Init = ILE->getArrayFiller(); |
| 1090 | |
| 1091 | |
| 1092 | |
| 1093 | |
| 1094 | while (Init && Init->getType()->isConstantArrayType()) { |
| 1095 | auto *SubILE = dyn_cast<InitListExpr>(Init); |
| 1096 | if (!SubILE) |
| 1097 | break; |
| 1098 | (0) . __assert_fail ("SubILE->getNumInits() == 0 && \"explicit inits in array filler?\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1098, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(SubILE->getNumInits() == 0 && "explicit inits in array filler?"); |
| 1099 | Init = SubILE->getArrayFiller(); |
| 1100 | } |
| 1101 | |
| 1102 | |
| 1103 | CurPtr = Builder.CreateBitCast(CurPtr, BeginPtr.getType()); |
| 1104 | } |
| 1105 | |
| 1106 | |
| 1107 | |
| 1108 | llvm::ConstantInt *ConstNum = dyn_cast<llvm::ConstantInt>(NumElements); |
| 1109 | if (ConstNum && ConstNum->getZExtValue() <= InitListElements) { |
| 1110 | |
| 1111 | if (CleanupDominator) |
| 1112 | DeactivateCleanupBlock(Cleanup, CleanupDominator); |
| 1113 | return; |
| 1114 | } |
| 1115 | |
| 1116 | (0) . __assert_fail ("Init && \"have trailing elements to initialize but no initializer\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1116, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(Init && "have trailing elements to initialize but no initializer"); |
| 1117 | |
| 1118 | |
| 1119 | |
| 1120 | if (const CXXConstructExpr *CCE = dyn_cast<CXXConstructExpr>(Init)) { |
| 1121 | CXXConstructorDecl *Ctor = CCE->getConstructor(); |
| 1122 | if (Ctor->isTrivial()) { |
| 1123 | |
| 1124 | |
| 1125 | if (!CCE->requiresZeroInitialization() || Ctor->getParent()->isEmpty()) |
| 1126 | return; |
| 1127 | |
| 1128 | if (TryMemsetInitialization()) |
| 1129 | return; |
| 1130 | } |
| 1131 | |
| 1132 | |
| 1133 | |
| 1134 | |
| 1135 | |
| 1136 | if (EndOfInit.isValid()) |
| 1137 | Builder.CreateStore(CurPtr.getPointer(), EndOfInit); |
| 1138 | |
| 1139 | |
| 1140 | if (InitListElements) |
| 1141 | NumElements = Builder.CreateSub( |
| 1142 | NumElements, |
| 1143 | llvm::ConstantInt::get(NumElements->getType(), InitListElements)); |
| 1144 | EmitCXXAggrConstructorCall(Ctor, NumElements, CurPtr, CCE, |
| 1145 | , |
| 1146 | CCE->requiresZeroInitialization()); |
| 1147 | return; |
| 1148 | } |
| 1149 | |
| 1150 | |
| 1151 | ImplicitValueInitExpr IVIE(ElementType); |
| 1152 | if (isa<ImplicitValueInitExpr>(Init)) { |
| 1153 | if (TryMemsetInitialization()) |
| 1154 | return; |
| 1155 | |
| 1156 | |
| 1157 | |
| 1158 | |
| 1159 | Init = &IVIE; |
| 1160 | } |
| 1161 | |
| 1162 | |
| 1163 | |
| 1164 | (0) . __assert_fail ("getContext().hasSameUnqualifiedType(ElementType, Init->getType()) && \"got wrong type of element to initialize\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1165, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(getContext().hasSameUnqualifiedType(ElementType, Init->getType()) && |
| 1165 | (0) . __assert_fail ("getContext().hasSameUnqualifiedType(ElementType, Init->getType()) && \"got wrong type of element to initialize\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1165, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "got wrong type of element to initialize"); |
| 1166 | |
| 1167 | |
| 1168 | if (auto *ILE = dyn_cast<InitListExpr>(Init)) |
| 1169 | if (ILE->getNumInits() == 0 && TryMemsetInitialization()) |
| 1170 | return; |
| 1171 | |
| 1172 | |
| 1173 | |
| 1174 | if (auto *ILE = dyn_cast<InitListExpr>(Init)) { |
| 1175 | if (const RecordType *RType = ILE->getType()->getAs<RecordType>()) { |
| 1176 | if (RType->getDecl()->isStruct()) { |
| 1177 | unsigned NumElements = 0; |
| 1178 | if (auto *CXXRD = dyn_cast<CXXRecordDecl>(RType->getDecl())) |
| 1179 | NumElements = CXXRD->getNumBases(); |
| 1180 | for (auto *Field : RType->getDecl()->fields()) |
| 1181 | if (!Field->isUnnamedBitfield()) |
| 1182 | ++NumElements; |
| 1183 | |
| 1184 | if (ILE->getNumInits() == NumElements) |
| 1185 | for (unsigned i = 0, e = ILE->getNumInits(); i != e; ++i) |
| 1186 | if (!isa<ImplicitValueInitExpr>(ILE->getInit(i))) |
| 1187 | --NumElements; |
| 1188 | if (ILE->getNumInits() == NumElements && TryMemsetInitialization()) |
| 1189 | return; |
| 1190 | } |
| 1191 | } |
| 1192 | } |
| 1193 | |
| 1194 | |
| 1195 | llvm::BasicBlock *EntryBB = Builder.GetInsertBlock(); |
| 1196 | llvm::BasicBlock *LoopBB = createBasicBlock("new.loop"); |
| 1197 | llvm::BasicBlock *ContBB = createBasicBlock("new.loop.end"); |
| 1198 | |
| 1199 | |
| 1200 | llvm::Value *EndPtr = |
| 1201 | Builder.CreateInBoundsGEP(BeginPtr.getPointer(), NumElements, "array.end"); |
| 1202 | |
| 1203 | |
| 1204 | |
| 1205 | if (!ConstNum) { |
| 1206 | llvm::Value *IsEmpty = |
| 1207 | Builder.CreateICmpEQ(CurPtr.getPointer(), EndPtr, "array.isempty"); |
| 1208 | Builder.CreateCondBr(IsEmpty, ContBB, LoopBB); |
| 1209 | } |
| 1210 | |
| 1211 | |
| 1212 | EmitBlock(LoopBB); |
| 1213 | |
| 1214 | |
| 1215 | llvm::PHINode *CurPtrPhi = |
| 1216 | Builder.CreatePHI(CurPtr.getType(), 2, "array.cur"); |
| 1217 | CurPtrPhi->addIncoming(CurPtr.getPointer(), EntryBB); |
| 1218 | |
| 1219 | CurPtr = Address(CurPtrPhi, ElementAlign); |
| 1220 | |
| 1221 | |
| 1222 | if (EndOfInit.isValid()) |
| 1223 | Builder.CreateStore(CurPtr.getPointer(), EndOfInit); |
| 1224 | |
| 1225 | |
| 1226 | if (!CleanupDominator && needsEHCleanup(DtorKind)) { |
| 1227 | pushRegularPartialArrayCleanup(BeginPtr.getPointer(), CurPtr.getPointer(), |
| 1228 | ElementType, ElementAlign, |
| 1229 | getDestroyer(DtorKind)); |
| 1230 | Cleanup = EHStack.stable_begin(); |
| 1231 | CleanupDominator = Builder.CreateUnreachable(); |
| 1232 | } |
| 1233 | |
| 1234 | |
| 1235 | StoreAnyExprIntoOneUnit(*this, Init, Init->getType(), CurPtr, |
| 1236 | AggValueSlot::DoesNotOverlap); |
| 1237 | |
| 1238 | |
| 1239 | if (CleanupDominator) { |
| 1240 | DeactivateCleanupBlock(Cleanup, CleanupDominator); |
| 1241 | CleanupDominator->eraseFromParent(); |
| 1242 | } |
| 1243 | |
| 1244 | |
| 1245 | llvm::Value *NextPtr = |
| 1246 | Builder.CreateConstInBoundsGEP1_32(ElementTy, CurPtr.getPointer(), 1, |
| 1247 | "array.next"); |
| 1248 | |
| 1249 | |
| 1250 | |
| 1251 | llvm::Value *IsEnd = Builder.CreateICmpEQ(NextPtr, EndPtr, "array.atend"); |
| 1252 | Builder.CreateCondBr(IsEnd, ContBB, LoopBB); |
| 1253 | CurPtrPhi->addIncoming(NextPtr, Builder.GetInsertBlock()); |
| 1254 | |
| 1255 | EmitBlock(ContBB); |
| 1256 | } |
| 1257 | |
| 1258 | static void EmitNewInitializer(CodeGenFunction &CGF, const CXXNewExpr *E, |
| 1259 | QualType ElementType, llvm::Type *ElementTy, |
| 1260 | Address NewPtr, llvm::Value *NumElements, |
| 1261 | llvm::Value *AllocSizeWithoutCookie) { |
| 1262 | ApplyDebugLocation DL(CGF, E); |
| 1263 | if (E->isArray()) |
| 1264 | CGF.EmitNewArrayInitializer(E, ElementType, ElementTy, NewPtr, NumElements, |
| 1265 | AllocSizeWithoutCookie); |
| 1266 | else if (const Expr *Init = E->getInitializer()) |
| 1267 | StoreAnyExprIntoOneUnit(CGF, Init, E->getAllocatedType(), NewPtr, |
| 1268 | AggValueSlot::DoesNotOverlap); |
| 1269 | } |
| 1270 | |
| 1271 | |
| 1272 | |
| 1273 | static RValue EmitNewDeleteCall(CodeGenFunction &CGF, |
| 1274 | const FunctionDecl *CalleeDecl, |
| 1275 | const FunctionProtoType *CalleeType, |
| 1276 | const CallArgList &Args) { |
| 1277 | llvm::CallBase *CallOrInvoke; |
| 1278 | llvm::Constant *CalleePtr = CGF.CGM.GetAddrOfFunction(CalleeDecl); |
| 1279 | CGCallee Callee = CGCallee::forDirect(CalleePtr, GlobalDecl(CalleeDecl)); |
| 1280 | RValue RV = |
| 1281 | CGF.EmitCall(CGF.CGM.getTypes().arrangeFreeFunctionCall( |
| 1282 | Args, CalleeType, ), |
| 1283 | Callee, ReturnValueSlot(), Args, &CallOrInvoke); |
| 1284 | |
| 1285 | |
| 1286 | |
| 1287 | |
| 1288 | |
| 1289 | |
| 1290 | llvm::Function *Fn = dyn_cast<llvm::Function>(CalleePtr); |
| 1291 | if (CalleeDecl->isReplaceableGlobalAllocationFunction() && |
| 1292 | Fn && Fn->hasFnAttribute(llvm::Attribute::NoBuiltin)) { |
| 1293 | CallOrInvoke->addAttribute(llvm::AttributeList::FunctionIndex, |
| 1294 | llvm::Attribute::Builtin); |
| 1295 | } |
| 1296 | |
| 1297 | return RV; |
| 1298 | } |
| 1299 | |
| 1300 | RValue CodeGenFunction::EmitBuiltinNewDeleteCall(const FunctionProtoType *Type, |
| 1301 | const CallExpr *TheCall, |
| 1302 | bool IsDelete) { |
| 1303 | CallArgList Args; |
| 1304 | EmitCallArgs(Args, Type->getParamTypes(), TheCall->arguments()); |
| 1305 | |
| 1306 | ASTContext &Ctx = getContext(); |
| 1307 | DeclarationName Name = Ctx.DeclarationNames |
| 1308 | .getCXXOperatorName(IsDelete ? OO_Delete : OO_New); |
| 1309 | |
| 1310 | for (auto *Decl : Ctx.getTranslationUnitDecl()->lookup(Name)) |
| 1311 | if (auto *FD = dyn_cast<FunctionDecl>(Decl)) |
| 1312 | if (Ctx.hasSameType(FD->getType(), QualType(Type, 0))) |
| 1313 | return EmitNewDeleteCall(*this, FD, Type, Args); |
| 1314 | llvm_unreachable("predeclared global operator new/delete is missing"); |
| 1315 | } |
| 1316 | |
| 1317 | namespace { |
| 1318 | |
| 1319 | struct UsualDeleteParams { |
| 1320 | bool DestroyingDelete = false; |
| 1321 | bool Size = false; |
| 1322 | bool Alignment = false; |
| 1323 | }; |
| 1324 | } |
| 1325 | |
| 1326 | static UsualDeleteParams getUsualDeleteParams(const FunctionDecl *FD) { |
| 1327 | UsualDeleteParams Params; |
| 1328 | |
| 1329 | const FunctionProtoType *FPT = FD->getType()->castAs<FunctionProtoType>(); |
| 1330 | auto AI = FPT->param_type_begin(), AE = FPT->param_type_end(); |
| 1331 | |
| 1332 | |
| 1333 | ++AI; |
| 1334 | |
| 1335 | |
| 1336 | if (FD->isDestroyingOperatorDelete()) { |
| 1337 | Params.DestroyingDelete = true; |
| 1338 | assert(AI != AE); |
| 1339 | ++AI; |
| 1340 | } |
| 1341 | |
| 1342 | |
| 1343 | if (AI != AE && (*AI)->isIntegerType()) { |
| 1344 | Params.Size = true; |
| 1345 | ++AI; |
| 1346 | } |
| 1347 | |
| 1348 | if (AI != AE && (*AI)->isAlignValT()) { |
| 1349 | Params.Alignment = true; |
| 1350 | ++AI; |
| 1351 | } |
| 1352 | |
| 1353 | (0) . __assert_fail ("AI == AE && \"unexpected usual deallocation function parameter\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1353, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(AI == AE && "unexpected usual deallocation function parameter"); |
| 1354 | return Params; |
| 1355 | } |
| 1356 | |
| 1357 | namespace { |
| 1358 | |
| 1359 | |
| 1360 | |
| 1361 | template<typename Traits> |
| 1362 | class CallDeleteDuringNew final : public EHScopeStack::Cleanup { |
| 1363 | |
| 1364 | typedef typename Traits::ValueTy ValueTy; |
| 1365 | |
| 1366 | typedef typename Traits::RValueTy RValueTy; |
| 1367 | struct PlacementArg { |
| 1368 | RValueTy ArgValue; |
| 1369 | QualType ArgType; |
| 1370 | }; |
| 1371 | |
| 1372 | unsigned NumPlacementArgs : 31; |
| 1373 | unsigned PassAlignmentToPlacementDelete : 1; |
| 1374 | const FunctionDecl *OperatorDelete; |
| 1375 | ValueTy Ptr; |
| 1376 | ValueTy AllocSize; |
| 1377 | CharUnits AllocAlign; |
| 1378 | |
| 1379 | PlacementArg *getPlacementArgs() { |
| 1380 | return reinterpret_cast<PlacementArg *>(this + 1); |
| 1381 | } |
| 1382 | |
| 1383 | public: |
| 1384 | static size_t (size_t NumPlacementArgs) { |
| 1385 | return NumPlacementArgs * sizeof(PlacementArg); |
| 1386 | } |
| 1387 | |
| 1388 | CallDeleteDuringNew(size_t NumPlacementArgs, |
| 1389 | const FunctionDecl *OperatorDelete, ValueTy Ptr, |
| 1390 | ValueTy AllocSize, bool PassAlignmentToPlacementDelete, |
| 1391 | CharUnits AllocAlign) |
| 1392 | : NumPlacementArgs(NumPlacementArgs), |
| 1393 | PassAlignmentToPlacementDelete(PassAlignmentToPlacementDelete), |
| 1394 | OperatorDelete(OperatorDelete), Ptr(Ptr), AllocSize(AllocSize), |
| 1395 | AllocAlign(AllocAlign) {} |
| 1396 | |
| 1397 | void setPlacementArg(unsigned I, RValueTy Arg, QualType Type) { |
| 1398 | (0) . __assert_fail ("I < NumPlacementArgs && \"index out of range\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1398, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(I < NumPlacementArgs && "index out of range"); |
| 1399 | getPlacementArgs()[I] = {Arg, Type}; |
| 1400 | } |
| 1401 | |
| 1402 | void Emit(CodeGenFunction &CGF, Flags flags) override { |
| 1403 | const FunctionProtoType *FPT = |
| 1404 | OperatorDelete->getType()->getAs<FunctionProtoType>(); |
| 1405 | CallArgList DeleteArgs; |
| 1406 | |
| 1407 | |
| 1408 | |
| 1409 | DeleteArgs.add(Traits::get(CGF, Ptr), FPT->getParamType(0)); |
| 1410 | |
| 1411 | |
| 1412 | UsualDeleteParams Params; |
| 1413 | if (NumPlacementArgs) { |
| 1414 | |
| 1415 | |
| 1416 | Params.Alignment = PassAlignmentToPlacementDelete; |
| 1417 | } else { |
| 1418 | |
| 1419 | |
| 1420 | Params = getUsualDeleteParams(OperatorDelete); |
| 1421 | } |
| 1422 | |
| 1423 | (0) . __assert_fail ("!Params.DestroyingDelete && \"should not call destroying delete in a new-expression\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1424, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(!Params.DestroyingDelete && |
| 1424 | (0) . __assert_fail ("!Params.DestroyingDelete && \"should not call destroying delete in a new-expression\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1424, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "should not call destroying delete in a new-expression"); |
| 1425 | |
| 1426 | |
| 1427 | if (Params.Size) |
| 1428 | DeleteArgs.add(Traits::get(CGF, AllocSize), |
| 1429 | CGF.getContext().getSizeType()); |
| 1430 | |
| 1431 | |
| 1432 | |
| 1433 | |
| 1434 | |
| 1435 | if (Params.Alignment) |
| 1436 | DeleteArgs.add(RValue::get(llvm::ConstantInt::get( |
| 1437 | CGF.SizeTy, AllocAlign.getQuantity())), |
| 1438 | CGF.getContext().getSizeType()); |
| 1439 | |
| 1440 | |
| 1441 | for (unsigned I = 0; I != NumPlacementArgs; ++I) { |
| 1442 | auto Arg = getPlacementArgs()[I]; |
| 1443 | DeleteArgs.add(Traits::get(CGF, Arg.ArgValue), Arg.ArgType); |
| 1444 | } |
| 1445 | |
| 1446 | |
| 1447 | EmitNewDeleteCall(CGF, OperatorDelete, FPT, DeleteArgs); |
| 1448 | } |
| 1449 | }; |
| 1450 | } |
| 1451 | |
| 1452 | |
| 1453 | |
| 1454 | static void EnterNewDeleteCleanup(CodeGenFunction &CGF, |
| 1455 | const CXXNewExpr *E, |
| 1456 | Address NewPtr, |
| 1457 | llvm::Value *AllocSize, |
| 1458 | CharUnits AllocAlign, |
| 1459 | const CallArgList &NewArgs) { |
| 1460 | unsigned NumNonPlacementArgs = E->passAlignment() ? 2 : 1; |
| 1461 | |
| 1462 | |
| 1463 | |
| 1464 | if (!CGF.isInConditionalBranch()) { |
| 1465 | struct DirectCleanupTraits { |
| 1466 | typedef llvm::Value *ValueTy; |
| 1467 | typedef RValue RValueTy; |
| 1468 | static RValue get(CodeGenFunction &, ValueTy V) { return RValue::get(V); } |
| 1469 | static RValue get(CodeGenFunction &, RValueTy V) { return V; } |
| 1470 | }; |
| 1471 | |
| 1472 | typedef CallDeleteDuringNew<DirectCleanupTraits> DirectCleanup; |
| 1473 | |
| 1474 | DirectCleanup *Cleanup = CGF.EHStack |
| 1475 | .pushCleanupWithExtra<DirectCleanup>(EHCleanup, |
| 1476 | E->getNumPlacementArgs(), |
| 1477 | E->getOperatorDelete(), |
| 1478 | NewPtr.getPointer(), |
| 1479 | AllocSize, |
| 1480 | E->passAlignment(), |
| 1481 | AllocAlign); |
| 1482 | for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I) { |
| 1483 | auto &Arg = NewArgs[I + NumNonPlacementArgs]; |
| 1484 | Cleanup->setPlacementArg(I, Arg.getRValue(CGF), Arg.Ty); |
| 1485 | } |
| 1486 | |
| 1487 | return; |
| 1488 | } |
| 1489 | |
| 1490 | |
| 1491 | DominatingValue<RValue>::saved_type SavedNewPtr = |
| 1492 | DominatingValue<RValue>::save(CGF, RValue::get(NewPtr.getPointer())); |
| 1493 | DominatingValue<RValue>::saved_type SavedAllocSize = |
| 1494 | DominatingValue<RValue>::save(CGF, RValue::get(AllocSize)); |
| 1495 | |
| 1496 | struct ConditionalCleanupTraits { |
| 1497 | typedef DominatingValue<RValue>::saved_type ValueTy; |
| 1498 | typedef DominatingValue<RValue>::saved_type RValueTy; |
| 1499 | static RValue get(CodeGenFunction &CGF, ValueTy V) { |
| 1500 | return V.restore(CGF); |
| 1501 | } |
| 1502 | }; |
| 1503 | typedef CallDeleteDuringNew<ConditionalCleanupTraits> ConditionalCleanup; |
| 1504 | |
| 1505 | ConditionalCleanup *Cleanup = CGF.EHStack |
| 1506 | .pushCleanupWithExtra<ConditionalCleanup>(EHCleanup, |
| 1507 | E->getNumPlacementArgs(), |
| 1508 | E->getOperatorDelete(), |
| 1509 | SavedNewPtr, |
| 1510 | SavedAllocSize, |
| 1511 | E->passAlignment(), |
| 1512 | AllocAlign); |
| 1513 | for (unsigned I = 0, N = E->getNumPlacementArgs(); I != N; ++I) { |
| 1514 | auto &Arg = NewArgs[I + NumNonPlacementArgs]; |
| 1515 | Cleanup->setPlacementArg( |
| 1516 | I, DominatingValue<RValue>::save(CGF, Arg.getRValue(CGF)), Arg.Ty); |
| 1517 | } |
| 1518 | |
| 1519 | CGF.initFullExprCleanup(); |
| 1520 | } |
| 1521 | |
| 1522 | llvm::Value *CodeGenFunction::EmitCXXNewExpr(const CXXNewExpr *E) { |
| 1523 | |
| 1524 | QualType allocType = getContext().getBaseElementType(E->getAllocatedType()); |
| 1525 | |
| 1526 | |
| 1527 | FunctionDecl *allocator = E->getOperatorNew(); |
| 1528 | |
| 1529 | |
| 1530 | unsigned minElements = 0; |
| 1531 | if (E->isArray() && E->hasInitializer()) { |
| 1532 | const InitListExpr *ILE = dyn_cast<InitListExpr>(E->getInitializer()); |
| 1533 | if (ILE && ILE->isStringLiteralInit()) |
| 1534 | minElements = |
| 1535 | cast<ConstantArrayType>(ILE->getType()->getAsArrayTypeUnsafe()) |
| 1536 | ->getSize().getZExtValue(); |
| 1537 | else if (ILE) |
| 1538 | minElements = ILE->getNumInits(); |
| 1539 | } |
| 1540 | |
| 1541 | llvm::Value *numElements = nullptr; |
| 1542 | llvm::Value *allocSizeWithoutCookie = nullptr; |
| 1543 | llvm::Value *allocSize = |
| 1544 | EmitCXXNewAllocSize(*this, E, minElements, numElements, |
| 1545 | allocSizeWithoutCookie); |
| 1546 | CharUnits allocAlign = getContext().getTypeAlignInChars(allocType); |
| 1547 | |
| 1548 | |
| 1549 | |
| 1550 | Address allocation = Address::invalid(); |
| 1551 | CallArgList allocatorArgs; |
| 1552 | if (allocator->isReservedGlobalPlacementOperator()) { |
| 1553 | getNumPlacementArgs() == 1", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1553, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(E->getNumPlacementArgs() == 1); |
| 1554 | const Expr *arg = *E->placement_arguments().begin(); |
| 1555 | |
| 1556 | LValueBaseInfo BaseInfo; |
| 1557 | allocation = EmitPointerWithAlignment(arg, &BaseInfo); |
| 1558 | |
| 1559 | |
| 1560 | |
| 1561 | |
| 1562 | if (BaseInfo.getAlignmentSource() != AlignmentSource::Decl) |
| 1563 | allocation = Address(allocation.getPointer(), allocAlign); |
| 1564 | |
| 1565 | |
| 1566 | |
| 1567 | if (E->getOperatorDelete() && |
| 1568 | !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) { |
| 1569 | allocatorArgs.add(RValue::get(allocSize), getContext().getSizeType()); |
| 1570 | allocatorArgs.add(RValue::get(allocation.getPointer()), arg->getType()); |
| 1571 | } |
| 1572 | |
| 1573 | } else { |
| 1574 | const FunctionProtoType *allocatorType = |
| 1575 | allocator->getType()->castAs<FunctionProtoType>(); |
| 1576 | unsigned ParamsToSkip = 0; |
| 1577 | |
| 1578 | |
| 1579 | QualType sizeType = getContext().getSizeType(); |
| 1580 | allocatorArgs.add(RValue::get(allocSize), sizeType); |
| 1581 | ++ParamsToSkip; |
| 1582 | |
| 1583 | if (allocSize != allocSizeWithoutCookie) { |
| 1584 | CharUnits cookieAlign = getSizeAlign(); |
| 1585 | allocAlign = std::max(allocAlign, cookieAlign); |
| 1586 | } |
| 1587 | |
| 1588 | |
| 1589 | if (E->passAlignment()) { |
| 1590 | QualType AlignValT = sizeType; |
| 1591 | if (allocatorType->getNumParams() > 1) { |
| 1592 | AlignValT = allocatorType->getParamType(1); |
| 1593 | (0) . __assert_fail ("getContext().hasSameUnqualifiedType( AlignValT->castAs()->getDecl()->getIntegerType(), sizeType) && \"wrong type for alignment parameter\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1596, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(getContext().hasSameUnqualifiedType( |
| 1594 | (0) . __assert_fail ("getContext().hasSameUnqualifiedType( AlignValT->castAs()->getDecl()->getIntegerType(), sizeType) && \"wrong type for alignment parameter\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1596, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> AlignValT->castAs<EnumType>()->getDecl()->getIntegerType(), |
| 1595 | (0) . __assert_fail ("getContext().hasSameUnqualifiedType( AlignValT->castAs()->getDecl()->getIntegerType(), sizeType) && \"wrong type for alignment parameter\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1596, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> sizeType) && |
| 1596 | (0) . __assert_fail ("getContext().hasSameUnqualifiedType( AlignValT->castAs()->getDecl()->getIntegerType(), sizeType) && \"wrong type for alignment parameter\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1596, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "wrong type for alignment parameter"); |
| 1597 | ++ParamsToSkip; |
| 1598 | } else { |
| 1599 | |
| 1600 | (0) . __assert_fail ("allocator->isVariadic() && \"can't pass alignment to allocator\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1600, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(allocator->isVariadic() && "can't pass alignment to allocator"); |
| 1601 | } |
| 1602 | allocatorArgs.add( |
| 1603 | RValue::get(llvm::ConstantInt::get(SizeTy, allocAlign.getQuantity())), |
| 1604 | AlignValT); |
| 1605 | } |
| 1606 | |
| 1607 | |
| 1608 | EmitCallArgs(allocatorArgs, allocatorType, E->placement_arguments(), |
| 1609 | AbstractCallee(), ParamsToSkip); |
| 1610 | |
| 1611 | RValue RV = |
| 1612 | EmitNewDeleteCall(*this, allocator, allocatorType, allocatorArgs); |
| 1613 | |
| 1614 | |
| 1615 | |
| 1616 | |
| 1617 | |
| 1618 | CharUnits allocationAlign = allocAlign; |
| 1619 | if (!E->passAlignment() && |
| 1620 | allocator->isReplaceableGlobalAllocationFunction()) { |
| 1621 | unsigned AllocatorAlign = llvm::PowerOf2Floor(std::min<uint64_t>( |
| 1622 | Target.getNewAlign(), getContext().getTypeSize(allocType))); |
| 1623 | allocationAlign = std::max( |
| 1624 | allocationAlign, getContext().toCharUnitsFromBits(AllocatorAlign)); |
| 1625 | } |
| 1626 | |
| 1627 | allocation = Address(RV.getScalarVal(), allocationAlign); |
| 1628 | } |
| 1629 | |
| 1630 | |
| 1631 | |
| 1632 | |
| 1633 | |
| 1634 | bool nullCheck = E->shouldNullCheckAllocation() && |
| 1635 | (!allocType.isPODType(getContext()) || E->hasInitializer() || |
| 1636 | sanitizePerformTypeCheck()); |
| 1637 | |
| 1638 | llvm::BasicBlock *nullCheckBB = nullptr; |
| 1639 | llvm::BasicBlock *contBB = nullptr; |
| 1640 | |
| 1641 | |
| 1642 | |
| 1643 | ConditionalEvaluation conditional(*this); |
| 1644 | |
| 1645 | if (nullCheck) { |
| 1646 | conditional.begin(*this); |
| 1647 | |
| 1648 | nullCheckBB = Builder.GetInsertBlock(); |
| 1649 | llvm::BasicBlock *notNullBB = createBasicBlock("new.notnull"); |
| 1650 | contBB = createBasicBlock("new.cont"); |
| 1651 | |
| 1652 | llvm::Value *isNull = |
| 1653 | Builder.CreateIsNull(allocation.getPointer(), "new.isnull"); |
| 1654 | Builder.CreateCondBr(isNull, contBB, notNullBB); |
| 1655 | EmitBlock(notNullBB); |
| 1656 | } |
| 1657 | |
| 1658 | |
| 1659 | |
| 1660 | EHScopeStack::stable_iterator operatorDeleteCleanup; |
| 1661 | llvm::Instruction *cleanupDominator = nullptr; |
| 1662 | if (E->getOperatorDelete() && |
| 1663 | !E->getOperatorDelete()->isReservedGlobalPlacementOperator()) { |
| 1664 | EnterNewDeleteCleanup(*this, E, allocation, allocSize, allocAlign, |
| 1665 | allocatorArgs); |
| 1666 | operatorDeleteCleanup = EHStack.stable_begin(); |
| 1667 | cleanupDominator = Builder.CreateUnreachable(); |
| 1668 | } |
| 1669 | |
| 1670 | assert((allocSize == allocSizeWithoutCookie) == |
| 1671 | CalculateCookiePadding(*this, E).isZero()); |
| 1672 | if (allocSize != allocSizeWithoutCookie) { |
| 1673 | isArray()", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1673, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(E->isArray()); |
| 1674 | allocation = CGM.getCXXABI().InitializeArrayCookie(*this, allocation, |
| 1675 | numElements, |
| 1676 | E, allocType); |
| 1677 | } |
| 1678 | |
| 1679 | llvm::Type *elementTy = ConvertTypeForMem(allocType); |
| 1680 | Address result = Builder.CreateElementBitCast(allocation, elementTy); |
| 1681 | |
| 1682 | |
| 1683 | |
| 1684 | |
| 1685 | |
| 1686 | if (CGM.getCodeGenOpts().StrictVTablePointers && |
| 1687 | allocator->isReservedGlobalPlacementOperator()) |
| 1688 | result = Address(Builder.CreateLaunderInvariantGroup(result.getPointer()), |
| 1689 | result.getAlignment()); |
| 1690 | |
| 1691 | |
| 1692 | |
| 1693 | |
| 1694 | |
| 1695 | |
| 1696 | SanitizerSet SkippedChecks; |
| 1697 | SkippedChecks.set(SanitizerKind::Null, nullCheck); |
| 1698 | EmitTypeCheck(CodeGenFunction::TCK_ConstructorCall, |
| 1699 | E->getAllocatedTypeSourceInfo()->getTypeLoc().getBeginLoc(), |
| 1700 | result.getPointer(), allocType, result.getAlignment(), |
| 1701 | SkippedChecks, numElements); |
| 1702 | |
| 1703 | EmitNewInitializer(*this, E, allocType, elementTy, result, numElements, |
| 1704 | allocSizeWithoutCookie); |
| 1705 | if (E->isArray()) { |
| 1706 | |
| 1707 | |
| 1708 | |
| 1709 | llvm::Type *resultType = ConvertTypeForMem(E->getType()); |
| 1710 | if (result.getType() != resultType) |
| 1711 | result = Builder.CreateBitCast(result, resultType); |
| 1712 | } |
| 1713 | |
| 1714 | |
| 1715 | |
| 1716 | if (operatorDeleteCleanup.isValid()) { |
| 1717 | DeactivateCleanupBlock(operatorDeleteCleanup, cleanupDominator); |
| 1718 | cleanupDominator->eraseFromParent(); |
| 1719 | } |
| 1720 | |
| 1721 | llvm::Value *resultPtr = result.getPointer(); |
| 1722 | if (nullCheck) { |
| 1723 | conditional.end(*this); |
| 1724 | |
| 1725 | llvm::BasicBlock *notNullBB = Builder.GetInsertBlock(); |
| 1726 | EmitBlock(contBB); |
| 1727 | |
| 1728 | llvm::PHINode *PHI = Builder.CreatePHI(resultPtr->getType(), 2); |
| 1729 | PHI->addIncoming(resultPtr, notNullBB); |
| 1730 | PHI->addIncoming(llvm::Constant::getNullValue(resultPtr->getType()), |
| 1731 | nullCheckBB); |
| 1732 | |
| 1733 | resultPtr = PHI; |
| 1734 | } |
| 1735 | |
| 1736 | return resultPtr; |
| 1737 | } |
| 1738 | |
| 1739 | void CodeGenFunction::EmitDeleteCall(const FunctionDecl *DeleteFD, |
| 1740 | llvm::Value *Ptr, QualType DeleteTy, |
| 1741 | llvm::Value *NumElements, |
| 1742 | CharUnits CookieSize) { |
| 1743 | getOverloadedOperator() == OO_Array_Delete", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1744, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert((!NumElements && CookieSize.isZero()) || |
| 1744 | getOverloadedOperator() == OO_Array_Delete", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1744, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> DeleteFD->getOverloadedOperator() == OO_Array_Delete); |
| 1745 | |
| 1746 | const FunctionProtoType *DeleteFTy = |
| 1747 | DeleteFD->getType()->getAs<FunctionProtoType>(); |
| 1748 | |
| 1749 | CallArgList DeleteArgs; |
| 1750 | |
| 1751 | auto Params = getUsualDeleteParams(DeleteFD); |
| 1752 | auto ParamTypeIt = DeleteFTy->param_type_begin(); |
| 1753 | |
| 1754 | |
| 1755 | QualType ArgTy = *ParamTypeIt++; |
| 1756 | llvm::Value *DeletePtr = Builder.CreateBitCast(Ptr, ConvertType(ArgTy)); |
| 1757 | DeleteArgs.add(RValue::get(DeletePtr), ArgTy); |
| 1758 | |
| 1759 | |
| 1760 | if (Params.DestroyingDelete) { |
| 1761 | QualType DDTag = *ParamTypeIt++; |
| 1762 | |
| 1763 | auto *V = llvm::UndefValue::get(getTypes().ConvertType(DDTag)); |
| 1764 | DeleteArgs.add(RValue::get(V), DDTag); |
| 1765 | } |
| 1766 | |
| 1767 | |
| 1768 | if (Params.Size) { |
| 1769 | QualType SizeType = *ParamTypeIt++; |
| 1770 | CharUnits DeleteTypeSize = getContext().getTypeSizeInChars(DeleteTy); |
| 1771 | llvm::Value *Size = llvm::ConstantInt::get(ConvertType(SizeType), |
| 1772 | DeleteTypeSize.getQuantity()); |
| 1773 | |
| 1774 | |
| 1775 | if (NumElements) |
| 1776 | Size = Builder.CreateMul(Size, NumElements); |
| 1777 | |
| 1778 | |
| 1779 | if (!CookieSize.isZero()) |
| 1780 | Size = Builder.CreateAdd( |
| 1781 | Size, llvm::ConstantInt::get(SizeTy, CookieSize.getQuantity())); |
| 1782 | |
| 1783 | DeleteArgs.add(RValue::get(Size), SizeType); |
| 1784 | } |
| 1785 | |
| 1786 | |
| 1787 | if (Params.Alignment) { |
| 1788 | QualType AlignValType = *ParamTypeIt++; |
| 1789 | CharUnits DeleteTypeAlign = getContext().toCharUnitsFromBits( |
| 1790 | getContext().getTypeAlignIfKnown(DeleteTy)); |
| 1791 | llvm::Value *Align = llvm::ConstantInt::get(ConvertType(AlignValType), |
| 1792 | DeleteTypeAlign.getQuantity()); |
| 1793 | DeleteArgs.add(RValue::get(Align), AlignValType); |
| 1794 | } |
| 1795 | |
| 1796 | (0) . __assert_fail ("ParamTypeIt == DeleteFTy->param_type_end() && \"unknown parameter to usual delete function\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1797, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(ParamTypeIt == DeleteFTy->param_type_end() && |
| 1797 | (0) . __assert_fail ("ParamTypeIt == DeleteFTy->param_type_end() && \"unknown parameter to usual delete function\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1797, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "unknown parameter to usual delete function"); |
| 1798 | |
| 1799 | |
| 1800 | EmitNewDeleteCall(*this, DeleteFD, DeleteFTy, DeleteArgs); |
| 1801 | } |
| 1802 | |
| 1803 | namespace { |
| 1804 | |
| 1805 | struct CallObjectDelete final : EHScopeStack::Cleanup { |
| 1806 | llvm::Value *Ptr; |
| 1807 | const FunctionDecl *OperatorDelete; |
| 1808 | QualType ElementType; |
| 1809 | |
| 1810 | CallObjectDelete(llvm::Value *Ptr, |
| 1811 | const FunctionDecl *OperatorDelete, |
| 1812 | QualType ElementType) |
| 1813 | : Ptr(Ptr), OperatorDelete(OperatorDelete), ElementType(ElementType) {} |
| 1814 | |
| 1815 | void Emit(CodeGenFunction &CGF, Flags flags) override { |
| 1816 | CGF.EmitDeleteCall(OperatorDelete, Ptr, ElementType); |
| 1817 | } |
| 1818 | }; |
| 1819 | } |
| 1820 | |
| 1821 | void |
| 1822 | CodeGenFunction::pushCallObjectDeleteCleanup(const FunctionDecl *OperatorDelete, |
| 1823 | llvm::Value *CompletePtr, |
| 1824 | QualType ElementType) { |
| 1825 | EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup, CompletePtr, |
| 1826 | OperatorDelete, ElementType); |
| 1827 | } |
| 1828 | |
| 1829 | |
| 1830 | |
| 1831 | |
| 1832 | |
| 1833 | static void EmitDestroyingObjectDelete(CodeGenFunction &CGF, |
| 1834 | const CXXDeleteExpr *DE, Address Ptr, |
| 1835 | QualType ElementType) { |
| 1836 | auto *Dtor = ElementType->getAsCXXRecordDecl()->getDestructor(); |
| 1837 | if (Dtor && Dtor->isVirtual()) |
| 1838 | CGF.CGM.getCXXABI().emitVirtualObjectDelete(CGF, DE, Ptr, ElementType, |
| 1839 | Dtor); |
| 1840 | else |
| 1841 | CGF.EmitDeleteCall(DE->getOperatorDelete(), Ptr.getPointer(), ElementType); |
| 1842 | } |
| 1843 | |
| 1844 | |
| 1845 | static void EmitObjectDelete(CodeGenFunction &CGF, |
| 1846 | const CXXDeleteExpr *DE, |
| 1847 | Address Ptr, |
| 1848 | QualType ElementType) { |
| 1849 | |
| 1850 | |
| 1851 | |
| 1852 | |
| 1853 | |
| 1854 | CGF.EmitTypeCheck(CodeGenFunction::TCK_MemberCall, |
| 1855 | DE->getExprLoc(), Ptr.getPointer(), |
| 1856 | ElementType); |
| 1857 | |
| 1858 | const FunctionDecl *OperatorDelete = DE->getOperatorDelete(); |
| 1859 | isDestroyingOperatorDelete()", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1859, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(!OperatorDelete->isDestroyingOperatorDelete()); |
| 1860 | |
| 1861 | |
| 1862 | |
| 1863 | const CXXDestructorDecl *Dtor = nullptr; |
| 1864 | if (const RecordType *RT = ElementType->getAs<RecordType>()) { |
| 1865 | CXXRecordDecl *RD = cast<CXXRecordDecl>(RT->getDecl()); |
| 1866 | if (RD->hasDefinition() && !RD->hasTrivialDestructor()) { |
| 1867 | Dtor = RD->getDestructor(); |
| 1868 | |
| 1869 | if (Dtor->isVirtual()) { |
| 1870 | CGF.CGM.getCXXABI().emitVirtualObjectDelete(CGF, DE, Ptr, ElementType, |
| 1871 | Dtor); |
| 1872 | return; |
| 1873 | } |
| 1874 | } |
| 1875 | } |
| 1876 | |
| 1877 | |
| 1878 | |
| 1879 | |
| 1880 | CGF.EHStack.pushCleanup<CallObjectDelete>(NormalAndEHCleanup, |
| 1881 | Ptr.getPointer(), |
| 1882 | OperatorDelete, ElementType); |
| 1883 | |
| 1884 | if (Dtor) |
| 1885 | CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete, |
| 1886 | , |
| 1887 | , |
| 1888 | Ptr); |
| 1889 | else if (auto Lifetime = ElementType.getObjCLifetime()) { |
| 1890 | switch (Lifetime) { |
| 1891 | case Qualifiers::OCL_None: |
| 1892 | case Qualifiers::OCL_ExplicitNone: |
| 1893 | case Qualifiers::OCL_Autoreleasing: |
| 1894 | break; |
| 1895 | |
| 1896 | case Qualifiers::OCL_Strong: |
| 1897 | CGF.EmitARCDestroyStrong(Ptr, ARCPreciseLifetime); |
| 1898 | break; |
| 1899 | |
| 1900 | case Qualifiers::OCL_Weak: |
| 1901 | CGF.EmitARCDestroyWeak(Ptr); |
| 1902 | break; |
| 1903 | } |
| 1904 | } |
| 1905 | |
| 1906 | CGF.PopCleanupBlock(); |
| 1907 | } |
| 1908 | |
| 1909 | namespace { |
| 1910 | |
| 1911 | struct CallArrayDelete final : EHScopeStack::Cleanup { |
| 1912 | llvm::Value *Ptr; |
| 1913 | const FunctionDecl *OperatorDelete; |
| 1914 | llvm::Value *NumElements; |
| 1915 | QualType ElementType; |
| 1916 | CharUnits CookieSize; |
| 1917 | |
| 1918 | CallArrayDelete(llvm::Value *Ptr, |
| 1919 | const FunctionDecl *OperatorDelete, |
| 1920 | llvm::Value *NumElements, |
| 1921 | QualType ElementType, |
| 1922 | CharUnits CookieSize) |
| 1923 | : Ptr(Ptr), OperatorDelete(OperatorDelete), NumElements(NumElements), |
| 1924 | ElementType(ElementType), CookieSize(CookieSize) {} |
| 1925 | |
| 1926 | void Emit(CodeGenFunction &CGF, Flags flags) override { |
| 1927 | CGF.EmitDeleteCall(OperatorDelete, Ptr, ElementType, NumElements, |
| 1928 | CookieSize); |
| 1929 | } |
| 1930 | }; |
| 1931 | } |
| 1932 | |
| 1933 | |
| 1934 | static void EmitArrayDelete(CodeGenFunction &CGF, |
| 1935 | const CXXDeleteExpr *E, |
| 1936 | Address deletedPtr, |
| 1937 | QualType elementType) { |
| 1938 | llvm::Value *numElements = nullptr; |
| 1939 | llvm::Value *allocatedPtr = nullptr; |
| 1940 | CharUnits cookieSize; |
| 1941 | CGF.CGM.getCXXABI().ReadArrayCookie(CGF, deletedPtr, E, elementType, |
| 1942 | numElements, allocatedPtr, cookieSize); |
| 1943 | |
| 1944 | (0) . __assert_fail ("allocatedPtr && \"ReadArrayCookie didn't set allocated pointer\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1944, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(allocatedPtr && "ReadArrayCookie didn't set allocated pointer"); |
| 1945 | |
| 1946 | |
| 1947 | const FunctionDecl *operatorDelete = E->getOperatorDelete(); |
| 1948 | CGF.EHStack.pushCleanup<CallArrayDelete>(NormalAndEHCleanup, |
| 1949 | allocatedPtr, operatorDelete, |
| 1950 | numElements, elementType, |
| 1951 | cookieSize); |
| 1952 | |
| 1953 | |
| 1954 | if (QualType::DestructionKind dtorKind = elementType.isDestructedType()) { |
| 1955 | (0) . __assert_fail ("numElements && \"no element count for a type with a destructor!\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 1955, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(numElements && "no element count for a type with a destructor!"); |
| 1956 | |
| 1957 | CharUnits elementSize = CGF.getContext().getTypeSizeInChars(elementType); |
| 1958 | CharUnits elementAlign = |
| 1959 | deletedPtr.getAlignment().alignmentOfArrayElement(elementSize); |
| 1960 | |
| 1961 | llvm::Value *arrayBegin = deletedPtr.getPointer(); |
| 1962 | llvm::Value *arrayEnd = |
| 1963 | CGF.Builder.CreateInBoundsGEP(arrayBegin, numElements, "delete.end"); |
| 1964 | |
| 1965 | |
| 1966 | |
| 1967 | |
| 1968 | CGF.emitArrayDestroy(arrayBegin, arrayEnd, elementType, elementAlign, |
| 1969 | CGF.getDestroyer(dtorKind), |
| 1970 | true, |
| 1971 | CGF.needsEHCleanup(dtorKind)); |
| 1972 | } |
| 1973 | |
| 1974 | |
| 1975 | CGF.PopCleanupBlock(); |
| 1976 | } |
| 1977 | |
| 1978 | void CodeGenFunction::EmitCXXDeleteExpr(const CXXDeleteExpr *E) { |
| 1979 | const Expr *Arg = E->getArgument(); |
| 1980 | Address Ptr = EmitPointerWithAlignment(Arg); |
| 1981 | |
| 1982 | |
| 1983 | llvm::BasicBlock *DeleteNotNull = createBasicBlock("delete.notnull"); |
| 1984 | llvm::BasicBlock *DeleteEnd = createBasicBlock("delete.end"); |
| 1985 | |
| 1986 | llvm::Value *IsNull = Builder.CreateIsNull(Ptr.getPointer(), "isnull"); |
| 1987 | |
| 1988 | Builder.CreateCondBr(IsNull, DeleteEnd, DeleteNotNull); |
| 1989 | EmitBlock(DeleteNotNull); |
| 1990 | |
| 1991 | QualType DeleteTy = E->getDestroyedType(); |
| 1992 | |
| 1993 | |
| 1994 | |
| 1995 | if (E->getOperatorDelete()->isDestroyingOperatorDelete()) { |
| 1996 | EmitDestroyingObjectDelete(*this, E, Ptr, DeleteTy); |
| 1997 | EmitBlock(DeleteEnd); |
| 1998 | return; |
| 1999 | } |
| 2000 | |
| 2001 | |
| 2002 | |
| 2003 | |
| 2004 | if (DeleteTy->isConstantArrayType()) { |
| 2005 | llvm::Value *Zero = Builder.getInt32(0); |
| 2006 | SmallVector<llvm::Value*,8> GEP; |
| 2007 | |
| 2008 | GEP.push_back(Zero); |
| 2009 | |
| 2010 | |
| 2011 | while (const ConstantArrayType *Arr |
| 2012 | = getContext().getAsConstantArrayType(DeleteTy)) { |
| 2013 | |
| 2014 | DeleteTy = Arr->getElementType(); |
| 2015 | |
| 2016 | |
| 2017 | GEP.push_back(Zero); |
| 2018 | } |
| 2019 | |
| 2020 | Ptr = Address(Builder.CreateInBoundsGEP(Ptr.getPointer(), GEP, "del.first"), |
| 2021 | Ptr.getAlignment()); |
| 2022 | } |
| 2023 | |
| 2024 | assert(ConvertTypeForMem(DeleteTy) == Ptr.getElementType()); |
| 2025 | |
| 2026 | if (E->isArrayForm()) { |
| 2027 | EmitArrayDelete(*this, E, Ptr, DeleteTy); |
| 2028 | } else { |
| 2029 | EmitObjectDelete(*this, E, Ptr, DeleteTy); |
| 2030 | } |
| 2031 | |
| 2032 | EmitBlock(DeleteEnd); |
| 2033 | } |
| 2034 | |
| 2035 | static bool isGLValueFromPointerDeref(const Expr *E) { |
| 2036 | E = E->IgnoreParens(); |
| 2037 | |
| 2038 | if (const auto *CE = dyn_cast<CastExpr>(E)) { |
| 2039 | if (!CE->getSubExpr()->isGLValue()) |
| 2040 | return false; |
| 2041 | return isGLValueFromPointerDeref(CE->getSubExpr()); |
| 2042 | } |
| 2043 | |
| 2044 | if (const auto *OVE = dyn_cast<OpaqueValueExpr>(E)) |
| 2045 | return isGLValueFromPointerDeref(OVE->getSourceExpr()); |
| 2046 | |
| 2047 | if (const auto *BO = dyn_cast<BinaryOperator>(E)) |
| 2048 | if (BO->getOpcode() == BO_Comma) |
| 2049 | return isGLValueFromPointerDeref(BO->getRHS()); |
| 2050 | |
| 2051 | if (const auto *ACO = dyn_cast<AbstractConditionalOperator>(E)) |
| 2052 | return isGLValueFromPointerDeref(ACO->getTrueExpr()) || |
| 2053 | isGLValueFromPointerDeref(ACO->getFalseExpr()); |
| 2054 | |
| 2055 | |
| 2056 | |
| 2057 | if (isa<ArraySubscriptExpr>(E)) |
| 2058 | return true; |
| 2059 | |
| 2060 | if (const auto *UO = dyn_cast<UnaryOperator>(E)) |
| 2061 | if (UO->getOpcode() == UO_Deref) |
| 2062 | return true; |
| 2063 | |
| 2064 | return false; |
| 2065 | } |
| 2066 | |
| 2067 | static llvm::Value *EmitTypeidFromVTable(CodeGenFunction &CGF, const Expr *E, |
| 2068 | llvm::Type *StdTypeInfoPtrTy) { |
| 2069 | |
| 2070 | Address ThisPtr = CGF.EmitLValue(E).getAddress(); |
| 2071 | |
| 2072 | QualType SrcRecordTy = E->getType(); |
| 2073 | |
| 2074 | |
| 2075 | |
| 2076 | |
| 2077 | |
| 2078 | CGF.EmitTypeCheck(CodeGenFunction::TCK_DynamicOperation, E->getExprLoc(), |
| 2079 | ThisPtr.getPointer(), SrcRecordTy); |
| 2080 | |
| 2081 | |
| 2082 | |
| 2083 | |
| 2084 | |
| 2085 | |
| 2086 | |
| 2087 | |
| 2088 | |
| 2089 | if (CGF.CGM.getCXXABI().shouldTypeidBeNullChecked( |
| 2090 | isGLValueFromPointerDeref(E), SrcRecordTy)) { |
| 2091 | llvm::BasicBlock *BadTypeidBlock = |
| 2092 | CGF.createBasicBlock("typeid.bad_typeid"); |
| 2093 | llvm::BasicBlock *EndBlock = CGF.createBasicBlock("typeid.end"); |
| 2094 | |
| 2095 | llvm::Value *IsNull = CGF.Builder.CreateIsNull(ThisPtr.getPointer()); |
| 2096 | CGF.Builder.CreateCondBr(IsNull, BadTypeidBlock, EndBlock); |
| 2097 | |
| 2098 | CGF.EmitBlock(BadTypeidBlock); |
| 2099 | CGF.CGM.getCXXABI().EmitBadTypeidCall(CGF); |
| 2100 | CGF.EmitBlock(EndBlock); |
| 2101 | } |
| 2102 | |
| 2103 | return CGF.CGM.getCXXABI().EmitTypeid(CGF, SrcRecordTy, ThisPtr, |
| 2104 | StdTypeInfoPtrTy); |
| 2105 | } |
| 2106 | |
| 2107 | llvm::Value *CodeGenFunction::EmitCXXTypeidExpr(const CXXTypeidExpr *E) { |
| 2108 | llvm::Type *StdTypeInfoPtrTy = |
| 2109 | ConvertType(E->getType())->getPointerTo(); |
| 2110 | |
| 2111 | if (E->isTypeOperand()) { |
| 2112 | llvm::Constant *TypeInfo = |
| 2113 | CGM.GetAddrOfRTTIDescriptor(E->getTypeOperand(getContext())); |
| 2114 | return Builder.CreateBitCast(TypeInfo, StdTypeInfoPtrTy); |
| 2115 | } |
| 2116 | |
| 2117 | |
| 2118 | |
| 2119 | |
| 2120 | |
| 2121 | |
| 2122 | if (E->isPotentiallyEvaluated()) |
| 2123 | return EmitTypeidFromVTable(*this, E->getExprOperand(), |
| 2124 | StdTypeInfoPtrTy); |
| 2125 | |
| 2126 | QualType OperandTy = E->getExprOperand()->getType(); |
| 2127 | return Builder.CreateBitCast(CGM.GetAddrOfRTTIDescriptor(OperandTy), |
| 2128 | StdTypeInfoPtrTy); |
| 2129 | } |
| 2130 | |
| 2131 | static llvm::Value *EmitDynamicCastToNull(CodeGenFunction &CGF, |
| 2132 | QualType DestTy) { |
| 2133 | llvm::Type *DestLTy = CGF.ConvertType(DestTy); |
| 2134 | if (DestTy->isPointerType()) |
| 2135 | return llvm::Constant::getNullValue(DestLTy); |
| 2136 | |
| 2137 | |
| 2138 | |
| 2139 | if (!CGF.CGM.getCXXABI().EmitBadCastCall(CGF)) |
| 2140 | return nullptr; |
| 2141 | |
| 2142 | CGF.EmitBlock(CGF.createBasicBlock("dynamic_cast.end")); |
| 2143 | return llvm::UndefValue::get(DestLTy); |
| 2144 | } |
| 2145 | |
| 2146 | llvm::Value *CodeGenFunction::EmitDynamicCast(Address ThisAddr, |
| 2147 | const CXXDynamicCastExpr *DCE) { |
| 2148 | CGM.EmitExplicitCastExprType(DCE, this); |
| 2149 | QualType DestTy = DCE->getTypeAsWritten(); |
| 2150 | |
| 2151 | QualType SrcTy = DCE->getSubExpr()->getType(); |
| 2152 | |
| 2153 | |
| 2154 | |
| 2155 | |
| 2156 | const PointerType *DestPTy = DestTy->getAs<PointerType>(); |
| 2157 | |
| 2158 | bool isDynamicCastToVoid; |
| 2159 | QualType SrcRecordTy; |
| 2160 | QualType DestRecordTy; |
| 2161 | if (DestPTy) { |
| 2162 | isDynamicCastToVoid = DestPTy->getPointeeType()->isVoidType(); |
| 2163 | SrcRecordTy = SrcTy->castAs<PointerType>()->getPointeeType(); |
| 2164 | DestRecordTy = DestPTy->getPointeeType(); |
| 2165 | } else { |
| 2166 | isDynamicCastToVoid = false; |
| 2167 | SrcRecordTy = SrcTy; |
| 2168 | DestRecordTy = DestTy->castAs<ReferenceType>()->getPointeeType(); |
| 2169 | } |
| 2170 | |
| 2171 | |
| 2172 | |
| 2173 | |
| 2174 | |
| 2175 | |
| 2176 | EmitTypeCheck(TCK_DynamicOperation, DCE->getExprLoc(), ThisAddr.getPointer(), |
| 2177 | SrcRecordTy); |
| 2178 | |
| 2179 | if (DCE->isAlwaysNull()) |
| 2180 | if (llvm::Value *T = EmitDynamicCastToNull(*this, DestTy)) |
| 2181 | return T; |
| 2182 | |
| 2183 | (0) . __assert_fail ("SrcRecordTy->isRecordType() && \"source type must be a record type!\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 2183, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(SrcRecordTy->isRecordType() && "source type must be a record type!"); |
| 2184 | |
| 2185 | |
| 2186 | |
| 2187 | |
| 2188 | bool ShouldNullCheckSrcValue = |
| 2189 | CGM.getCXXABI().shouldDynamicCastCallBeNullChecked(SrcTy->isPointerType(), |
| 2190 | SrcRecordTy); |
| 2191 | |
| 2192 | llvm::BasicBlock *CastNull = nullptr; |
| 2193 | llvm::BasicBlock *CastNotNull = nullptr; |
| 2194 | llvm::BasicBlock *CastEnd = createBasicBlock("dynamic_cast.end"); |
| 2195 | |
| 2196 | if (ShouldNullCheckSrcValue) { |
| 2197 | CastNull = createBasicBlock("dynamic_cast.null"); |
| 2198 | CastNotNull = createBasicBlock("dynamic_cast.notnull"); |
| 2199 | |
| 2200 | llvm::Value *IsNull = Builder.CreateIsNull(ThisAddr.getPointer()); |
| 2201 | Builder.CreateCondBr(IsNull, CastNull, CastNotNull); |
| 2202 | EmitBlock(CastNotNull); |
| 2203 | } |
| 2204 | |
| 2205 | llvm::Value *Value; |
| 2206 | if (isDynamicCastToVoid) { |
| 2207 | Value = CGM.getCXXABI().EmitDynamicCastToVoid(*this, ThisAddr, SrcRecordTy, |
| 2208 | DestTy); |
| 2209 | } else { |
| 2210 | (0) . __assert_fail ("DestRecordTy->isRecordType() && \"destination type must be a record type!\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 2211, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true">assert(DestRecordTy->isRecordType() && |
| 2211 | (0) . __assert_fail ("DestRecordTy->isRecordType() && \"destination type must be a record type!\"", "/home/seafit/code_projects/clang_source/clang/lib/CodeGen/CGExprCXX.cpp", 2211, __PRETTY_FUNCTION__))" file_link="../../../include/assert.h.html#88" macro="true"> "destination type must be a record type!"); |
| 2212 | Value = CGM.getCXXABI().EmitDynamicCastCall(*this, ThisAddr, SrcRecordTy, |
| 2213 | DestTy, DestRecordTy, CastEnd); |
| 2214 | CastNotNull = Builder.GetInsertBlock(); |
| 2215 | } |
| 2216 | |
| 2217 | if (ShouldNullCheckSrcValue) { |
| 2218 | EmitBranch(CastEnd); |
| 2219 | |
| 2220 | EmitBlock(CastNull); |
| 2221 | EmitBranch(CastEnd); |
| 2222 | } |
| 2223 | |
| 2224 | EmitBlock(CastEnd); |
| 2225 | |
| 2226 | if (ShouldNullCheckSrcValue) { |
| 2227 | llvm::PHINode *PHI = Builder.CreatePHI(Value->getType(), 2); |
| 2228 | PHI->addIncoming(Value, CastNotNull); |
| 2229 | PHI->addIncoming(llvm::Constant::getNullValue(Value->getType()), CastNull); |
| 2230 | |
| 2231 | Value = PHI; |
| 2232 | } |
| 2233 | |
| 2234 | return Value; |
| 2235 | } |
| 2236 | |