1 //===--- MicrosoftCXXABI.cpp - Emit LLVM Code from ASTs for a Module ------===// 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 provides C++ code generation targeting the Microsoft Visual C++ ABI. 11 // The class in this file generates structures that follow the Microsoft 12 // Visual C++ ABI, which is actually not very well documented at all outside 13 // of Microsoft. 14 // 15 //===----------------------------------------------------------------------===// 16 17 #include "CGCXXABI.h" 18 #include "CGCleanup.h" 19 #include "CGVTables.h" 20 #include "CodeGenModule.h" 21 #include "CodeGenTypes.h" 22 #include "TargetInfo.h" 23 #include "clang/AST/Decl.h" 24 #include "clang/AST/DeclCXX.h" 25 #include "clang/AST/StmtCXX.h" 26 #include "clang/AST/VTableBuilder.h" 27 #include "llvm/ADT/StringExtras.h" 28 #include "llvm/ADT/StringSet.h" 29 #include "llvm/IR/CallSite.h" 30 #include "llvm/IR/Intrinsics.h" 31 32 using namespace clang; 33 using namespace CodeGen; 34 35 namespace { 36 37 /// Holds all the vbtable globals for a given class. 38 struct VBTableGlobals { 39 const VPtrInfoVector *VBTables; 40 SmallVector<llvm::GlobalVariable *, 2> Globals; 41 }; 42 43 class MicrosoftCXXABI : public CGCXXABI { 44 public: 45 MicrosoftCXXABI(CodeGenModule &CGM) 46 : CGCXXABI(CGM), BaseClassDescriptorType(nullptr), 47 ClassHierarchyDescriptorType(nullptr), 48 CompleteObjectLocatorType(nullptr), CatchableTypeType(nullptr), 49 ThrowInfoType(nullptr) {} 50 51 bool HasThisReturn(GlobalDecl GD) const override; 52 bool hasMostDerivedReturn(GlobalDecl GD) const override; 53 54 bool classifyReturnType(CGFunctionInfo &FI) const override; 55 56 RecordArgABI getRecordArgABI(const CXXRecordDecl *RD) const override; 57 58 bool isSRetParameterAfterThis() const override { return true; } 59 60 bool isThisCompleteObject(GlobalDecl GD) const override { 61 // The Microsoft ABI doesn't use separate complete-object vs. 62 // base-object variants of constructors, but it does of destructors. 63 if (isa<CXXDestructorDecl>(GD.getDecl())) { 64 switch (GD.getDtorType()) { 65 case Dtor_Complete: 66 case Dtor_Deleting: 67 return true; 68 69 case Dtor_Base: 70 return false; 71 72 case Dtor_Comdat: llvm_unreachable("emitting dtor comdat as function?"); 73 } 74 llvm_unreachable("bad dtor kind"); 75 } 76 77 // No other kinds. 78 return false; 79 } 80 81 size_t getSrcArgforCopyCtor(const CXXConstructorDecl *CD, 82 FunctionArgList &Args) const override { 83 assert(Args.size() >= 2 && 84 "expected the arglist to have at least two args!"); 85 // The 'most_derived' parameter goes second if the ctor is variadic and 86 // has v-bases. 87 if (CD->getParent()->getNumVBases() > 0 && 88 CD->getType()->castAs<FunctionProtoType>()->isVariadic()) 89 return 2; 90 return 1; 91 } 92 93 std::vector<CharUnits> getVBPtrOffsets(const CXXRecordDecl *RD) override { 94 std::vector<CharUnits> VBPtrOffsets; 95 const ASTContext &Context = getContext(); 96 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); 97 98 const VBTableGlobals &VBGlobals = enumerateVBTables(RD); 99 for (const VPtrInfo *VBT : *VBGlobals.VBTables) { 100 const ASTRecordLayout &SubobjectLayout = 101 Context.getASTRecordLayout(VBT->IntroducingObject); 102 CharUnits Offs = VBT->NonVirtualOffset; 103 Offs += SubobjectLayout.getVBPtrOffset(); 104 if (VBT->getVBaseWithVPtr()) 105 Offs += Layout.getVBaseClassOffset(VBT->getVBaseWithVPtr()); 106 VBPtrOffsets.push_back(Offs); 107 } 108 llvm::array_pod_sort(VBPtrOffsets.begin(), VBPtrOffsets.end()); 109 return VBPtrOffsets; 110 } 111 112 StringRef GetPureVirtualCallName() override { return "_purecall"; } 113 StringRef GetDeletedVirtualCallName() override { return "_purecall"; } 114 115 void emitVirtualObjectDelete(CodeGenFunction &CGF, const CXXDeleteExpr *DE, 116 Address Ptr, QualType ElementType, 117 const CXXDestructorDecl *Dtor) override; 118 119 void emitRethrow(CodeGenFunction &CGF, bool isNoReturn) override; 120 void emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) override; 121 122 void emitBeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *C) override; 123 124 llvm::GlobalVariable *getMSCompleteObjectLocator(const CXXRecordDecl *RD, 125 const VPtrInfo *Info); 126 127 llvm::Constant *getAddrOfRTTIDescriptor(QualType Ty) override; 128 CatchTypeInfo 129 getAddrOfCXXCatchHandlerType(QualType Ty, QualType CatchHandlerType) override; 130 131 /// MSVC needs an extra flag to indicate a catchall. 132 CatchTypeInfo getCatchAllTypeInfo() override { 133 return CatchTypeInfo{nullptr, 0x40}; 134 } 135 136 bool shouldTypeidBeNullChecked(bool IsDeref, QualType SrcRecordTy) override; 137 void EmitBadTypeidCall(CodeGenFunction &CGF) override; 138 llvm::Value *EmitTypeid(CodeGenFunction &CGF, QualType SrcRecordTy, 139 Address ThisPtr, 140 llvm::Type *StdTypeInfoPtrTy) override; 141 142 bool shouldDynamicCastCallBeNullChecked(bool SrcIsPtr, 143 QualType SrcRecordTy) override; 144 145 llvm::Value *EmitDynamicCastCall(CodeGenFunction &CGF, Address Value, 146 QualType SrcRecordTy, QualType DestTy, 147 QualType DestRecordTy, 148 llvm::BasicBlock *CastEnd) override; 149 150 llvm::Value *EmitDynamicCastToVoid(CodeGenFunction &CGF, Address Value, 151 QualType SrcRecordTy, 152 QualType DestTy) override; 153 154 bool EmitBadCastCall(CodeGenFunction &CGF) override; 155 bool canSpeculativelyEmitVTable(const CXXRecordDecl *RD) const override { 156 return false; 157 } 158 159 llvm::Value * 160 GetVirtualBaseClassOffset(CodeGenFunction &CGF, Address This, 161 const CXXRecordDecl *ClassDecl, 162 const CXXRecordDecl *BaseClassDecl) override; 163 164 llvm::BasicBlock * 165 EmitCtorCompleteObjectHandler(CodeGenFunction &CGF, 166 const CXXRecordDecl *RD) override; 167 168 void initializeHiddenVirtualInheritanceMembers(CodeGenFunction &CGF, 169 const CXXRecordDecl *RD) override; 170 171 void EmitCXXConstructors(const CXXConstructorDecl *D) override; 172 173 // Background on MSVC destructors 174 // ============================== 175 // 176 // Both Itanium and MSVC ABIs have destructor variants. The variant names 177 // roughly correspond in the following way: 178 // Itanium Microsoft 179 // Base -> no name, just ~Class 180 // Complete -> vbase destructor 181 // Deleting -> scalar deleting destructor 182 // vector deleting destructor 183 // 184 // The base and complete destructors are the same as in Itanium, although the 185 // complete destructor does not accept a VTT parameter when there are virtual 186 // bases. A separate mechanism involving vtordisps is used to ensure that 187 // virtual methods of destroyed subobjects are not called. 188 // 189 // The deleting destructors accept an i32 bitfield as a second parameter. Bit 190 // 1 indicates if the memory should be deleted. Bit 2 indicates if the this 191 // pointer points to an array. The scalar deleting destructor assumes that 192 // bit 2 is zero, and therefore does not contain a loop. 193 // 194 // For virtual destructors, only one entry is reserved in the vftable, and it 195 // always points to the vector deleting destructor. The vector deleting 196 // destructor is the most general, so it can be used to destroy objects in 197 // place, delete single heap objects, or delete arrays. 198 // 199 // A TU defining a non-inline destructor is only guaranteed to emit a base 200 // destructor, and all of the other variants are emitted on an as-needed basis 201 // in COMDATs. Because a non-base destructor can be emitted in a TU that 202 // lacks a definition for the destructor, non-base destructors must always 203 // delegate to or alias the base destructor. 204 205 void buildStructorSignature(const CXXMethodDecl *MD, StructorType T, 206 SmallVectorImpl<CanQualType> &ArgTys) override; 207 208 /// Non-base dtors should be emitted as delegating thunks in this ABI. 209 bool useThunkForDtorVariant(const CXXDestructorDecl *Dtor, 210 CXXDtorType DT) const override { 211 return DT != Dtor_Base; 212 } 213 214 void EmitCXXDestructors(const CXXDestructorDecl *D) override; 215 216 const CXXRecordDecl * 217 getThisArgumentTypeForMethod(const CXXMethodDecl *MD) override { 218 MD = MD->getCanonicalDecl(); 219 if (MD->isVirtual() && !isa<CXXDestructorDecl>(MD)) { 220 MicrosoftVTableContext::MethodVFTableLocation ML = 221 CGM.getMicrosoftVTableContext().getMethodVFTableLocation(MD); 222 // The vbases might be ordered differently in the final overrider object 223 // and the complete object, so the "this" argument may sometimes point to 224 // memory that has no particular type (e.g. past the complete object). 225 // In this case, we just use a generic pointer type. 226 // FIXME: might want to have a more precise type in the non-virtual 227 // multiple inheritance case. 228 if (ML.VBase || !ML.VFPtrOffset.isZero()) 229 return nullptr; 230 } 231 return MD->getParent(); 232 } 233 234 Address 235 adjustThisArgumentForVirtualFunctionCall(CodeGenFunction &CGF, GlobalDecl GD, 236 Address This, 237 bool VirtualCall) override; 238 239 void addImplicitStructorParams(CodeGenFunction &CGF, QualType &ResTy, 240 FunctionArgList &Params) override; 241 242 llvm::Value *adjustThisParameterInVirtualFunctionPrologue( 243 CodeGenFunction &CGF, GlobalDecl GD, llvm::Value *This) override; 244 245 void EmitInstanceFunctionProlog(CodeGenFunction &CGF) override; 246 247 unsigned addImplicitConstructorArgs(CodeGenFunction &CGF, 248 const CXXConstructorDecl *D, 249 CXXCtorType Type, bool ForVirtualBase, 250 bool Delegating, 251 CallArgList &Args) override; 252 253 void EmitDestructorCall(CodeGenFunction &CGF, const CXXDestructorDecl *DD, 254 CXXDtorType Type, bool ForVirtualBase, 255 bool Delegating, Address This) override; 256 257 void emitVTableTypeMetadata(VPtrInfo *Info, const CXXRecordDecl *RD, 258 llvm::GlobalVariable *VTable); 259 260 void emitVTableDefinitions(CodeGenVTables &CGVT, 261 const CXXRecordDecl *RD) override; 262 263 bool isVirtualOffsetNeededForVTableField(CodeGenFunction &CGF, 264 CodeGenFunction::VPtr Vptr) override; 265 266 /// Don't initialize vptrs if dynamic class 267 /// is marked with with the 'novtable' attribute. 268 bool doStructorsInitializeVPtrs(const CXXRecordDecl *VTableClass) override { 269 return !VTableClass->hasAttr<MSNoVTableAttr>(); 270 } 271 272 llvm::Constant * 273 getVTableAddressPoint(BaseSubobject Base, 274 const CXXRecordDecl *VTableClass) override; 275 276 llvm::Value *getVTableAddressPointInStructor( 277 CodeGenFunction &CGF, const CXXRecordDecl *VTableClass, 278 BaseSubobject Base, const CXXRecordDecl *NearestVBase) override; 279 280 llvm::Constant * 281 getVTableAddressPointForConstExpr(BaseSubobject Base, 282 const CXXRecordDecl *VTableClass) override; 283 284 llvm::GlobalVariable *getAddrOfVTable(const CXXRecordDecl *RD, 285 CharUnits VPtrOffset) override; 286 287 llvm::Value *getVirtualFunctionPointer(CodeGenFunction &CGF, GlobalDecl GD, 288 Address This, llvm::Type *Ty, 289 SourceLocation Loc) override; 290 291 llvm::Value *EmitVirtualDestructorCall(CodeGenFunction &CGF, 292 const CXXDestructorDecl *Dtor, 293 CXXDtorType DtorType, 294 Address This, 295 const CXXMemberCallExpr *CE) override; 296 297 void adjustCallArgsForDestructorThunk(CodeGenFunction &CGF, GlobalDecl GD, 298 CallArgList &CallArgs) override { 299 assert(GD.getDtorType() == Dtor_Deleting && 300 "Only deleting destructor thunks are available in this ABI"); 301 CallArgs.add(RValue::get(getStructorImplicitParamValue(CGF)), 302 getContext().IntTy); 303 } 304 305 void emitVirtualInheritanceTables(const CXXRecordDecl *RD) override; 306 307 llvm::GlobalVariable * 308 getAddrOfVBTable(const VPtrInfo &VBT, const CXXRecordDecl *RD, 309 llvm::GlobalVariable::LinkageTypes Linkage); 310 311 llvm::GlobalVariable * 312 getAddrOfVirtualDisplacementMap(const CXXRecordDecl *SrcRD, 313 const CXXRecordDecl *DstRD) { 314 SmallString<256> OutName; 315 llvm::raw_svector_ostream Out(OutName); 316 getMangleContext().mangleCXXVirtualDisplacementMap(SrcRD, DstRD, Out); 317 StringRef MangledName = OutName.str(); 318 319 if (auto *VDispMap = CGM.getModule().getNamedGlobal(MangledName)) 320 return VDispMap; 321 322 MicrosoftVTableContext &VTContext = CGM.getMicrosoftVTableContext(); 323 unsigned NumEntries = 1 + SrcRD->getNumVBases(); 324 SmallVector<llvm::Constant *, 4> Map(NumEntries, 325 llvm::UndefValue::get(CGM.IntTy)); 326 Map[0] = llvm::ConstantInt::get(CGM.IntTy, 0); 327 bool AnyDifferent = false; 328 for (const auto &I : SrcRD->vbases()) { 329 const CXXRecordDecl *VBase = I.getType()->getAsCXXRecordDecl(); 330 if (!DstRD->isVirtuallyDerivedFrom(VBase)) 331 continue; 332 333 unsigned SrcVBIndex = VTContext.getVBTableIndex(SrcRD, VBase); 334 unsigned DstVBIndex = VTContext.getVBTableIndex(DstRD, VBase); 335 Map[SrcVBIndex] = llvm::ConstantInt::get(CGM.IntTy, DstVBIndex * 4); 336 AnyDifferent |= SrcVBIndex != DstVBIndex; 337 } 338 // This map would be useless, don't use it. 339 if (!AnyDifferent) 340 return nullptr; 341 342 llvm::ArrayType *VDispMapTy = llvm::ArrayType::get(CGM.IntTy, Map.size()); 343 llvm::Constant *Init = llvm::ConstantArray::get(VDispMapTy, Map); 344 llvm::GlobalValue::LinkageTypes Linkage = 345 SrcRD->isExternallyVisible() && DstRD->isExternallyVisible() 346 ? llvm::GlobalValue::LinkOnceODRLinkage 347 : llvm::GlobalValue::InternalLinkage; 348 auto *VDispMap = new llvm::GlobalVariable( 349 CGM.getModule(), VDispMapTy, /*Constant=*/true, Linkage, 350 /*Initializer=*/Init, MangledName); 351 return VDispMap; 352 } 353 354 void emitVBTableDefinition(const VPtrInfo &VBT, const CXXRecordDecl *RD, 355 llvm::GlobalVariable *GV) const; 356 357 void setThunkLinkage(llvm::Function *Thunk, bool ForVTable, 358 GlobalDecl GD, bool ReturnAdjustment) override { 359 // Never dllimport/dllexport thunks. 360 Thunk->setDLLStorageClass(llvm::GlobalValue::DefaultStorageClass); 361 362 GVALinkage Linkage = 363 getContext().GetGVALinkageForFunction(cast<FunctionDecl>(GD.getDecl())); 364 365 if (Linkage == GVA_Internal) 366 Thunk->setLinkage(llvm::GlobalValue::InternalLinkage); 367 else if (ReturnAdjustment) 368 Thunk->setLinkage(llvm::GlobalValue::WeakODRLinkage); 369 else 370 Thunk->setLinkage(llvm::GlobalValue::LinkOnceODRLinkage); 371 } 372 373 llvm::Value *performThisAdjustment(CodeGenFunction &CGF, Address This, 374 const ThisAdjustment &TA) override; 375 376 llvm::Value *performReturnAdjustment(CodeGenFunction &CGF, Address Ret, 377 const ReturnAdjustment &RA) override; 378 379 void EmitThreadLocalInitFuncs( 380 CodeGenModule &CGM, ArrayRef<const VarDecl *> CXXThreadLocals, 381 ArrayRef<llvm::Function *> CXXThreadLocalInits, 382 ArrayRef<const VarDecl *> CXXThreadLocalInitVars) override; 383 384 bool usesThreadWrapperFunction() const override { return false; } 385 LValue EmitThreadLocalVarDeclLValue(CodeGenFunction &CGF, const VarDecl *VD, 386 QualType LValType) override; 387 388 void EmitGuardedInit(CodeGenFunction &CGF, const VarDecl &D, 389 llvm::GlobalVariable *DeclPtr, 390 bool PerformInit) override; 391 void registerGlobalDtor(CodeGenFunction &CGF, const VarDecl &D, 392 llvm::Constant *Dtor, llvm::Constant *Addr) override; 393 394 // ==== Notes on array cookies ========= 395 // 396 // MSVC seems to only use cookies when the class has a destructor; a 397 // two-argument usual array deallocation function isn't sufficient. 398 // 399 // For example, this code prints "100" and "1": 400 // struct A { 401 // char x; 402 // void *operator new[](size_t sz) { 403 // printf("%u\n", sz); 404 // return malloc(sz); 405 // } 406 // void operator delete[](void *p, size_t sz) { 407 // printf("%u\n", sz); 408 // free(p); 409 // } 410 // }; 411 // int main() { 412 // A *p = new A[100]; 413 // delete[] p; 414 // } 415 // Whereas it prints "104" and "104" if you give A a destructor. 416 417 bool requiresArrayCookie(const CXXDeleteExpr *expr, 418 QualType elementType) override; 419 bool requiresArrayCookie(const CXXNewExpr *expr) override; 420 CharUnits getArrayCookieSizeImpl(QualType type) override; 421 Address InitializeArrayCookie(CodeGenFunction &CGF, 422 Address NewPtr, 423 llvm::Value *NumElements, 424 const CXXNewExpr *expr, 425 QualType ElementType) override; 426 llvm::Value *readArrayCookieImpl(CodeGenFunction &CGF, 427 Address allocPtr, 428 CharUnits cookieSize) override; 429 430 friend struct MSRTTIBuilder; 431 432 bool isImageRelative() const { 433 return CGM.getTarget().getPointerWidth(/*AddressSpace=*/0) == 64; 434 } 435 436 // 5 routines for constructing the llvm types for MS RTTI structs. 437 llvm::StructType *getTypeDescriptorType(StringRef TypeInfoString) { 438 llvm::SmallString<32> TDTypeName("rtti.TypeDescriptor"); 439 TDTypeName += llvm::utostr(TypeInfoString.size()); 440 llvm::StructType *&TypeDescriptorType = 441 TypeDescriptorTypeMap[TypeInfoString.size()]; 442 if (TypeDescriptorType) 443 return TypeDescriptorType; 444 llvm::Type *FieldTypes[] = { 445 CGM.Int8PtrPtrTy, 446 CGM.Int8PtrTy, 447 llvm::ArrayType::get(CGM.Int8Ty, TypeInfoString.size() + 1)}; 448 TypeDescriptorType = 449 llvm::StructType::create(CGM.getLLVMContext(), FieldTypes, TDTypeName); 450 return TypeDescriptorType; 451 } 452 453 llvm::Type *getImageRelativeType(llvm::Type *PtrType) { 454 if (!isImageRelative()) 455 return PtrType; 456 return CGM.IntTy; 457 } 458 459 llvm::StructType *getBaseClassDescriptorType() { 460 if (BaseClassDescriptorType) 461 return BaseClassDescriptorType; 462 llvm::Type *FieldTypes[] = { 463 getImageRelativeType(CGM.Int8PtrTy), 464 CGM.IntTy, 465 CGM.IntTy, 466 CGM.IntTy, 467 CGM.IntTy, 468 CGM.IntTy, 469 getImageRelativeType(getClassHierarchyDescriptorType()->getPointerTo()), 470 }; 471 BaseClassDescriptorType = llvm::StructType::create( 472 CGM.getLLVMContext(), FieldTypes, "rtti.BaseClassDescriptor"); 473 return BaseClassDescriptorType; 474 } 475 476 llvm::StructType *getClassHierarchyDescriptorType() { 477 if (ClassHierarchyDescriptorType) 478 return ClassHierarchyDescriptorType; 479 // Forward-declare RTTIClassHierarchyDescriptor to break a cycle. 480 ClassHierarchyDescriptorType = llvm::StructType::create( 481 CGM.getLLVMContext(), "rtti.ClassHierarchyDescriptor"); 482 llvm::Type *FieldTypes[] = { 483 CGM.IntTy, 484 CGM.IntTy, 485 CGM.IntTy, 486 getImageRelativeType( 487 getBaseClassDescriptorType()->getPointerTo()->getPointerTo()), 488 }; 489 ClassHierarchyDescriptorType->setBody(FieldTypes); 490 return ClassHierarchyDescriptorType; 491 } 492 493 llvm::StructType *getCompleteObjectLocatorType() { 494 if (CompleteObjectLocatorType) 495 return CompleteObjectLocatorType; 496 CompleteObjectLocatorType = llvm::StructType::create( 497 CGM.getLLVMContext(), "rtti.CompleteObjectLocator"); 498 llvm::Type *FieldTypes[] = { 499 CGM.IntTy, 500 CGM.IntTy, 501 CGM.IntTy, 502 getImageRelativeType(CGM.Int8PtrTy), 503 getImageRelativeType(getClassHierarchyDescriptorType()->getPointerTo()), 504 getImageRelativeType(CompleteObjectLocatorType), 505 }; 506 llvm::ArrayRef<llvm::Type *> FieldTypesRef(FieldTypes); 507 if (!isImageRelative()) 508 FieldTypesRef = FieldTypesRef.drop_back(); 509 CompleteObjectLocatorType->setBody(FieldTypesRef); 510 return CompleteObjectLocatorType; 511 } 512 513 llvm::GlobalVariable *getImageBase() { 514 StringRef Name = "__ImageBase"; 515 if (llvm::GlobalVariable *GV = CGM.getModule().getNamedGlobal(Name)) 516 return GV; 517 518 return new llvm::GlobalVariable(CGM.getModule(), CGM.Int8Ty, 519 /*isConstant=*/true, 520 llvm::GlobalValue::ExternalLinkage, 521 /*Initializer=*/nullptr, Name); 522 } 523 524 llvm::Constant *getImageRelativeConstant(llvm::Constant *PtrVal) { 525 if (!isImageRelative()) 526 return PtrVal; 527 528 if (PtrVal->isNullValue()) 529 return llvm::Constant::getNullValue(CGM.IntTy); 530 531 llvm::Constant *ImageBaseAsInt = 532 llvm::ConstantExpr::getPtrToInt(getImageBase(), CGM.IntPtrTy); 533 llvm::Constant *PtrValAsInt = 534 llvm::ConstantExpr::getPtrToInt(PtrVal, CGM.IntPtrTy); 535 llvm::Constant *Diff = 536 llvm::ConstantExpr::getSub(PtrValAsInt, ImageBaseAsInt, 537 /*HasNUW=*/true, /*HasNSW=*/true); 538 return llvm::ConstantExpr::getTrunc(Diff, CGM.IntTy); 539 } 540 541 private: 542 MicrosoftMangleContext &getMangleContext() { 543 return cast<MicrosoftMangleContext>(CodeGen::CGCXXABI::getMangleContext()); 544 } 545 546 llvm::Constant *getZeroInt() { 547 return llvm::ConstantInt::get(CGM.IntTy, 0); 548 } 549 550 llvm::Constant *getAllOnesInt() { 551 return llvm::Constant::getAllOnesValue(CGM.IntTy); 552 } 553 554 CharUnits getVirtualFunctionPrologueThisAdjustment(GlobalDecl GD) override; 555 556 void 557 GetNullMemberPointerFields(const MemberPointerType *MPT, 558 llvm::SmallVectorImpl<llvm::Constant *> &fields); 559 560 /// \brief Shared code for virtual base adjustment. Returns the offset from 561 /// the vbptr to the virtual base. Optionally returns the address of the 562 /// vbptr itself. 563 llvm::Value *GetVBaseOffsetFromVBPtr(CodeGenFunction &CGF, 564 Address Base, 565 llvm::Value *VBPtrOffset, 566 llvm::Value *VBTableOffset, 567 llvm::Value **VBPtr = nullptr); 568 569 llvm::Value *GetVBaseOffsetFromVBPtr(CodeGenFunction &CGF, 570 Address Base, 571 int32_t VBPtrOffset, 572 int32_t VBTableOffset, 573 llvm::Value **VBPtr = nullptr) { 574 assert(VBTableOffset % 4 == 0 && "should be byte offset into table of i32s"); 575 llvm::Value *VBPOffset = llvm::ConstantInt::get(CGM.IntTy, VBPtrOffset), 576 *VBTOffset = llvm::ConstantInt::get(CGM.IntTy, VBTableOffset); 577 return GetVBaseOffsetFromVBPtr(CGF, Base, VBPOffset, VBTOffset, VBPtr); 578 } 579 580 std::pair<Address, llvm::Value *> 581 performBaseAdjustment(CodeGenFunction &CGF, Address Value, 582 QualType SrcRecordTy); 583 584 /// \brief Performs a full virtual base adjustment. Used to dereference 585 /// pointers to members of virtual bases. 586 llvm::Value *AdjustVirtualBase(CodeGenFunction &CGF, const Expr *E, 587 const CXXRecordDecl *RD, Address Base, 588 llvm::Value *VirtualBaseAdjustmentOffset, 589 llvm::Value *VBPtrOffset /* optional */); 590 591 /// \brief Emits a full member pointer with the fields common to data and 592 /// function member pointers. 593 llvm::Constant *EmitFullMemberPointer(llvm::Constant *FirstField, 594 bool IsMemberFunction, 595 const CXXRecordDecl *RD, 596 CharUnits NonVirtualBaseAdjustment, 597 unsigned VBTableIndex); 598 599 bool MemberPointerConstantIsNull(const MemberPointerType *MPT, 600 llvm::Constant *MP); 601 602 /// \brief - Initialize all vbptrs of 'this' with RD as the complete type. 603 void EmitVBPtrStores(CodeGenFunction &CGF, const CXXRecordDecl *RD); 604 605 /// \brief Caching wrapper around VBTableBuilder::enumerateVBTables(). 606 const VBTableGlobals &enumerateVBTables(const CXXRecordDecl *RD); 607 608 /// \brief Generate a thunk for calling a virtual member function MD. 609 llvm::Function *EmitVirtualMemPtrThunk( 610 const CXXMethodDecl *MD, 611 const MicrosoftVTableContext::MethodVFTableLocation &ML); 612 613 public: 614 llvm::Type *ConvertMemberPointerType(const MemberPointerType *MPT) override; 615 616 bool isZeroInitializable(const MemberPointerType *MPT) override; 617 618 bool isMemberPointerConvertible(const MemberPointerType *MPT) const override { 619 const CXXRecordDecl *RD = MPT->getMostRecentCXXRecordDecl(); 620 return RD->hasAttr<MSInheritanceAttr>(); 621 } 622 623 llvm::Constant *EmitNullMemberPointer(const MemberPointerType *MPT) override; 624 625 llvm::Constant *EmitMemberDataPointer(const MemberPointerType *MPT, 626 CharUnits offset) override; 627 llvm::Constant *EmitMemberFunctionPointer(const CXXMethodDecl *MD) override; 628 llvm::Constant *EmitMemberPointer(const APValue &MP, QualType MPT) override; 629 630 llvm::Value *EmitMemberPointerComparison(CodeGenFunction &CGF, 631 llvm::Value *L, 632 llvm::Value *R, 633 const MemberPointerType *MPT, 634 bool Inequality) override; 635 636 llvm::Value *EmitMemberPointerIsNotNull(CodeGenFunction &CGF, 637 llvm::Value *MemPtr, 638 const MemberPointerType *MPT) override; 639 640 llvm::Value * 641 EmitMemberDataPointerAddress(CodeGenFunction &CGF, const Expr *E, 642 Address Base, llvm::Value *MemPtr, 643 const MemberPointerType *MPT) override; 644 645 llvm::Value *EmitNonNullMemberPointerConversion( 646 const MemberPointerType *SrcTy, const MemberPointerType *DstTy, 647 CastKind CK, CastExpr::path_const_iterator PathBegin, 648 CastExpr::path_const_iterator PathEnd, llvm::Value *Src, 649 CGBuilderTy &Builder); 650 651 llvm::Value *EmitMemberPointerConversion(CodeGenFunction &CGF, 652 const CastExpr *E, 653 llvm::Value *Src) override; 654 655 llvm::Constant *EmitMemberPointerConversion(const CastExpr *E, 656 llvm::Constant *Src) override; 657 658 llvm::Constant *EmitMemberPointerConversion( 659 const MemberPointerType *SrcTy, const MemberPointerType *DstTy, 660 CastKind CK, CastExpr::path_const_iterator PathBegin, 661 CastExpr::path_const_iterator PathEnd, llvm::Constant *Src); 662 663 llvm::Value * 664 EmitLoadOfMemberFunctionPointer(CodeGenFunction &CGF, const Expr *E, 665 Address This, llvm::Value *&ThisPtrForCall, 666 llvm::Value *MemPtr, 667 const MemberPointerType *MPT) override; 668 669 void emitCXXStructor(const CXXMethodDecl *MD, StructorType Type) override; 670 671 llvm::StructType *getCatchableTypeType() { 672 if (CatchableTypeType) 673 return CatchableTypeType; 674 llvm::Type *FieldTypes[] = { 675 CGM.IntTy, // Flags 676 getImageRelativeType(CGM.Int8PtrTy), // TypeDescriptor 677 CGM.IntTy, // NonVirtualAdjustment 678 CGM.IntTy, // OffsetToVBPtr 679 CGM.IntTy, // VBTableIndex 680 CGM.IntTy, // Size 681 getImageRelativeType(CGM.Int8PtrTy) // CopyCtor 682 }; 683 CatchableTypeType = llvm::StructType::create( 684 CGM.getLLVMContext(), FieldTypes, "eh.CatchableType"); 685 return CatchableTypeType; 686 } 687 688 llvm::StructType *getCatchableTypeArrayType(uint32_t NumEntries) { 689 llvm::StructType *&CatchableTypeArrayType = 690 CatchableTypeArrayTypeMap[NumEntries]; 691 if (CatchableTypeArrayType) 692 return CatchableTypeArrayType; 693 694 llvm::SmallString<23> CTATypeName("eh.CatchableTypeArray."); 695 CTATypeName += llvm::utostr(NumEntries); 696 llvm::Type *CTType = 697 getImageRelativeType(getCatchableTypeType()->getPointerTo()); 698 llvm::Type *FieldTypes[] = { 699 CGM.IntTy, // NumEntries 700 llvm::ArrayType::get(CTType, NumEntries) // CatchableTypes 701 }; 702 CatchableTypeArrayType = 703 llvm::StructType::create(CGM.getLLVMContext(), FieldTypes, CTATypeName); 704 return CatchableTypeArrayType; 705 } 706 707 llvm::StructType *getThrowInfoType() { 708 if (ThrowInfoType) 709 return ThrowInfoType; 710 llvm::Type *FieldTypes[] = { 711 CGM.IntTy, // Flags 712 getImageRelativeType(CGM.Int8PtrTy), // CleanupFn 713 getImageRelativeType(CGM.Int8PtrTy), // ForwardCompat 714 getImageRelativeType(CGM.Int8PtrTy) // CatchableTypeArray 715 }; 716 ThrowInfoType = llvm::StructType::create(CGM.getLLVMContext(), FieldTypes, 717 "eh.ThrowInfo"); 718 return ThrowInfoType; 719 } 720 721 llvm::Constant *getThrowFn() { 722 // _CxxThrowException is passed an exception object and a ThrowInfo object 723 // which describes the exception. 724 llvm::Type *Args[] = {CGM.Int8PtrTy, getThrowInfoType()->getPointerTo()}; 725 llvm::FunctionType *FTy = 726 llvm::FunctionType::get(CGM.VoidTy, Args, /*IsVarArgs=*/false); 727 auto *Fn = cast<llvm::Function>( 728 CGM.CreateRuntimeFunction(FTy, "_CxxThrowException")); 729 // _CxxThrowException is stdcall on 32-bit x86 platforms. 730 if (CGM.getTarget().getTriple().getArch() == llvm::Triple::x86) 731 Fn->setCallingConv(llvm::CallingConv::X86_StdCall); 732 return Fn; 733 } 734 735 llvm::Function *getAddrOfCXXCtorClosure(const CXXConstructorDecl *CD, 736 CXXCtorType CT); 737 738 llvm::Constant *getCatchableType(QualType T, 739 uint32_t NVOffset = 0, 740 int32_t VBPtrOffset = -1, 741 uint32_t VBIndex = 0); 742 743 llvm::GlobalVariable *getCatchableTypeArray(QualType T); 744 745 llvm::GlobalVariable *getThrowInfo(QualType T) override; 746 747 private: 748 typedef std::pair<const CXXRecordDecl *, CharUnits> VFTableIdTy; 749 typedef llvm::DenseMap<VFTableIdTy, llvm::GlobalVariable *> VTablesMapTy; 750 typedef llvm::DenseMap<VFTableIdTy, llvm::GlobalValue *> VFTablesMapTy; 751 /// \brief All the vftables that have been referenced. 752 VFTablesMapTy VFTablesMap; 753 VTablesMapTy VTablesMap; 754 755 /// \brief This set holds the record decls we've deferred vtable emission for. 756 llvm::SmallPtrSet<const CXXRecordDecl *, 4> DeferredVFTables; 757 758 759 /// \brief All the vbtables which have been referenced. 760 llvm::DenseMap<const CXXRecordDecl *, VBTableGlobals> VBTablesMap; 761 762 /// Info on the global variable used to guard initialization of static locals. 763 /// The BitIndex field is only used for externally invisible declarations. 764 struct GuardInfo { 765 GuardInfo() : Guard(nullptr), BitIndex(0) {} 766 llvm::GlobalVariable *Guard; 767 unsigned BitIndex; 768 }; 769 770 /// Map from DeclContext to the current guard variable. We assume that the 771 /// AST is visited in source code order. 772 llvm::DenseMap<const DeclContext *, GuardInfo> GuardVariableMap; 773 llvm::DenseMap<const DeclContext *, GuardInfo> ThreadLocalGuardVariableMap; 774 llvm::DenseMap<const DeclContext *, unsigned> ThreadSafeGuardNumMap; 775 776 llvm::DenseMap<size_t, llvm::StructType *> TypeDescriptorTypeMap; 777 llvm::StructType *BaseClassDescriptorType; 778 llvm::StructType *ClassHierarchyDescriptorType; 779 llvm::StructType *CompleteObjectLocatorType; 780 781 llvm::DenseMap<QualType, llvm::GlobalVariable *> CatchableTypeArrays; 782 783 llvm::StructType *CatchableTypeType; 784 llvm::DenseMap<uint32_t, llvm::StructType *> CatchableTypeArrayTypeMap; 785 llvm::StructType *ThrowInfoType; 786 }; 787 788 } 789 790 CGCXXABI::RecordArgABI 791 MicrosoftCXXABI::getRecordArgABI(const CXXRecordDecl *RD) const { 792 switch (CGM.getTarget().getTriple().getArch()) { 793 default: 794 // FIXME: Implement for other architectures. 795 return RAA_Default; 796 797 case llvm::Triple::thumb: 798 // Use the simple Itanium rules for now. 799 // FIXME: This is incompatible with MSVC for arguments with a dtor and no 800 // copy ctor. 801 return !canCopyArgument(RD) ? RAA_Indirect : RAA_Default; 802 803 case llvm::Triple::x86: 804 // All record arguments are passed in memory on x86. Decide whether to 805 // construct the object directly in argument memory, or to construct the 806 // argument elsewhere and copy the bytes during the call. 807 808 // If C++ prohibits us from making a copy, construct the arguments directly 809 // into argument memory. 810 if (!canCopyArgument(RD)) 811 return RAA_DirectInMemory; 812 813 // Otherwise, construct the argument into a temporary and copy the bytes 814 // into the outgoing argument memory. 815 return RAA_Default; 816 817 case llvm::Triple::x86_64: 818 // Win64 passes objects with non-trivial copy ctors indirectly. 819 if (RD->hasNonTrivialCopyConstructor()) 820 return RAA_Indirect; 821 822 // If an object has a destructor, we'd really like to pass it indirectly 823 // because it allows us to elide copies. Unfortunately, MSVC makes that 824 // impossible for small types, which it will pass in a single register or 825 // stack slot. Most objects with dtors are large-ish, so handle that early. 826 // We can't call out all large objects as being indirect because there are 827 // multiple x64 calling conventions and the C++ ABI code shouldn't dictate 828 // how we pass large POD types. 829 if (RD->hasNonTrivialDestructor() && 830 getContext().getTypeSize(RD->getTypeForDecl()) > 64) 831 return RAA_Indirect; 832 833 // We have a trivial copy constructor or no copy constructors, but we have 834 // to make sure it isn't deleted. 835 bool CopyDeleted = false; 836 for (const CXXConstructorDecl *CD : RD->ctors()) { 837 if (CD->isCopyConstructor()) { 838 assert(CD->isTrivial()); 839 // We had at least one undeleted trivial copy ctor. Return directly. 840 if (!CD->isDeleted()) 841 return RAA_Default; 842 CopyDeleted = true; 843 } 844 } 845 846 // The trivial copy constructor was deleted. Return indirectly. 847 if (CopyDeleted) 848 return RAA_Indirect; 849 850 // There were no copy ctors. Return in RAX. 851 return RAA_Default; 852 } 853 854 llvm_unreachable("invalid enum"); 855 } 856 857 void MicrosoftCXXABI::emitVirtualObjectDelete(CodeGenFunction &CGF, 858 const CXXDeleteExpr *DE, 859 Address Ptr, 860 QualType ElementType, 861 const CXXDestructorDecl *Dtor) { 862 // FIXME: Provide a source location here even though there's no 863 // CXXMemberCallExpr for dtor call. 864 bool UseGlobalDelete = DE->isGlobalDelete(); 865 CXXDtorType DtorType = UseGlobalDelete ? Dtor_Complete : Dtor_Deleting; 866 llvm::Value *MDThis = 867 EmitVirtualDestructorCall(CGF, Dtor, DtorType, Ptr, /*CE=*/nullptr); 868 if (UseGlobalDelete) 869 CGF.EmitDeleteCall(DE->getOperatorDelete(), MDThis, ElementType); 870 } 871 872 void MicrosoftCXXABI::emitRethrow(CodeGenFunction &CGF, bool isNoReturn) { 873 llvm::Value *Args[] = { 874 llvm::ConstantPointerNull::get(CGM.Int8PtrTy), 875 llvm::ConstantPointerNull::get(getThrowInfoType()->getPointerTo())}; 876 auto *Fn = getThrowFn(); 877 if (isNoReturn) 878 CGF.EmitNoreturnRuntimeCallOrInvoke(Fn, Args); 879 else 880 CGF.EmitRuntimeCallOrInvoke(Fn, Args); 881 } 882 883 namespace { 884 struct CatchRetScope final : EHScopeStack::Cleanup { 885 llvm::CatchPadInst *CPI; 886 887 CatchRetScope(llvm::CatchPadInst *CPI) : CPI(CPI) {} 888 889 void Emit(CodeGenFunction &CGF, Flags flags) override { 890 llvm::BasicBlock *BB = CGF.createBasicBlock("catchret.dest"); 891 CGF.Builder.CreateCatchRet(CPI, BB); 892 CGF.EmitBlock(BB); 893 } 894 }; 895 } 896 897 void MicrosoftCXXABI::emitBeginCatch(CodeGenFunction &CGF, 898 const CXXCatchStmt *S) { 899 // In the MS ABI, the runtime handles the copy, and the catch handler is 900 // responsible for destruction. 901 VarDecl *CatchParam = S->getExceptionDecl(); 902 llvm::BasicBlock *CatchPadBB = CGF.Builder.GetInsertBlock(); 903 llvm::CatchPadInst *CPI = 904 cast<llvm::CatchPadInst>(CatchPadBB->getFirstNonPHI()); 905 CGF.CurrentFuncletPad = CPI; 906 907 // If this is a catch-all or the catch parameter is unnamed, we don't need to 908 // emit an alloca to the object. 909 if (!CatchParam || !CatchParam->getDeclName()) { 910 CGF.EHStack.pushCleanup<CatchRetScope>(NormalCleanup, CPI); 911 return; 912 } 913 914 CodeGenFunction::AutoVarEmission var = CGF.EmitAutoVarAlloca(*CatchParam); 915 CPI->setArgOperand(2, var.getObjectAddress(CGF).getPointer()); 916 CGF.EHStack.pushCleanup<CatchRetScope>(NormalCleanup, CPI); 917 CGF.EmitAutoVarCleanups(var); 918 } 919 920 /// We need to perform a generic polymorphic operation (like a typeid 921 /// or a cast), which requires an object with a vfptr. Adjust the 922 /// address to point to an object with a vfptr. 923 std::pair<Address, llvm::Value *> 924 MicrosoftCXXABI::performBaseAdjustment(CodeGenFunction &CGF, Address Value, 925 QualType SrcRecordTy) { 926 Value = CGF.Builder.CreateBitCast(Value, CGF.Int8PtrTy); 927 const CXXRecordDecl *SrcDecl = SrcRecordTy->getAsCXXRecordDecl(); 928 const ASTContext &Context = getContext(); 929 930 // If the class itself has a vfptr, great. This check implicitly 931 // covers non-virtual base subobjects: a class with its own virtual 932 // functions would be a candidate to be a primary base. 933 if (Context.getASTRecordLayout(SrcDecl).hasExtendableVFPtr()) 934 return std::make_pair(Value, llvm::ConstantInt::get(CGF.Int32Ty, 0)); 935 936 // Okay, one of the vbases must have a vfptr, or else this isn't 937 // actually a polymorphic class. 938 const CXXRecordDecl *PolymorphicBase = nullptr; 939 for (auto &Base : SrcDecl->vbases()) { 940 const CXXRecordDecl *BaseDecl = Base.getType()->getAsCXXRecordDecl(); 941 if (Context.getASTRecordLayout(BaseDecl).hasExtendableVFPtr()) { 942 PolymorphicBase = BaseDecl; 943 break; 944 } 945 } 946 assert(PolymorphicBase && "polymorphic class has no apparent vfptr?"); 947 948 llvm::Value *Offset = 949 GetVirtualBaseClassOffset(CGF, Value, SrcDecl, PolymorphicBase); 950 llvm::Value *Ptr = CGF.Builder.CreateInBoundsGEP(Value.getPointer(), Offset); 951 CharUnits VBaseAlign = 952 CGF.CGM.getVBaseAlignment(Value.getAlignment(), SrcDecl, PolymorphicBase); 953 return std::make_pair(Address(Ptr, VBaseAlign), Offset); 954 } 955 956 bool MicrosoftCXXABI::shouldTypeidBeNullChecked(bool IsDeref, 957 QualType SrcRecordTy) { 958 const CXXRecordDecl *SrcDecl = SrcRecordTy->getAsCXXRecordDecl(); 959 return IsDeref && 960 !getContext().getASTRecordLayout(SrcDecl).hasExtendableVFPtr(); 961 } 962 963 static llvm::CallSite emitRTtypeidCall(CodeGenFunction &CGF, 964 llvm::Value *Argument) { 965 llvm::Type *ArgTypes[] = {CGF.Int8PtrTy}; 966 llvm::FunctionType *FTy = 967 llvm::FunctionType::get(CGF.Int8PtrTy, ArgTypes, false); 968 llvm::Value *Args[] = {Argument}; 969 llvm::Constant *Fn = CGF.CGM.CreateRuntimeFunction(FTy, "__RTtypeid"); 970 return CGF.EmitRuntimeCallOrInvoke(Fn, Args); 971 } 972 973 void MicrosoftCXXABI::EmitBadTypeidCall(CodeGenFunction &CGF) { 974 llvm::CallSite Call = 975 emitRTtypeidCall(CGF, llvm::Constant::getNullValue(CGM.VoidPtrTy)); 976 Call.setDoesNotReturn(); 977 CGF.Builder.CreateUnreachable(); 978 } 979 980 llvm::Value *MicrosoftCXXABI::EmitTypeid(CodeGenFunction &CGF, 981 QualType SrcRecordTy, 982 Address ThisPtr, 983 llvm::Type *StdTypeInfoPtrTy) { 984 std::tie(ThisPtr, std::ignore) = 985 performBaseAdjustment(CGF, ThisPtr, SrcRecordTy); 986 auto Typeid = emitRTtypeidCall(CGF, ThisPtr.getPointer()).getInstruction(); 987 return CGF.Builder.CreateBitCast(Typeid, StdTypeInfoPtrTy); 988 } 989 990 bool MicrosoftCXXABI::shouldDynamicCastCallBeNullChecked(bool SrcIsPtr, 991 QualType SrcRecordTy) { 992 const CXXRecordDecl *SrcDecl = SrcRecordTy->getAsCXXRecordDecl(); 993 return SrcIsPtr && 994 !getContext().getASTRecordLayout(SrcDecl).hasExtendableVFPtr(); 995 } 996 997 llvm::Value *MicrosoftCXXABI::EmitDynamicCastCall( 998 CodeGenFunction &CGF, Address This, QualType SrcRecordTy, 999 QualType DestTy, QualType DestRecordTy, llvm::BasicBlock *CastEnd) { 1000 llvm::Type *DestLTy = CGF.ConvertType(DestTy); 1001 1002 llvm::Value *SrcRTTI = 1003 CGF.CGM.GetAddrOfRTTIDescriptor(SrcRecordTy.getUnqualifiedType()); 1004 llvm::Value *DestRTTI = 1005 CGF.CGM.GetAddrOfRTTIDescriptor(DestRecordTy.getUnqualifiedType()); 1006 1007 llvm::Value *Offset; 1008 std::tie(This, Offset) = performBaseAdjustment(CGF, This, SrcRecordTy); 1009 llvm::Value *ThisPtr = This.getPointer(); 1010 Offset = CGF.Builder.CreateTrunc(Offset, CGF.Int32Ty); 1011 1012 // PVOID __RTDynamicCast( 1013 // PVOID inptr, 1014 // LONG VfDelta, 1015 // PVOID SrcType, 1016 // PVOID TargetType, 1017 // BOOL isReference) 1018 llvm::Type *ArgTypes[] = {CGF.Int8PtrTy, CGF.Int32Ty, CGF.Int8PtrTy, 1019 CGF.Int8PtrTy, CGF.Int32Ty}; 1020 llvm::Constant *Function = CGF.CGM.CreateRuntimeFunction( 1021 llvm::FunctionType::get(CGF.Int8PtrTy, ArgTypes, false), 1022 "__RTDynamicCast"); 1023 llvm::Value *Args[] = { 1024 ThisPtr, Offset, SrcRTTI, DestRTTI, 1025 llvm::ConstantInt::get(CGF.Int32Ty, DestTy->isReferenceType())}; 1026 ThisPtr = CGF.EmitRuntimeCallOrInvoke(Function, Args).getInstruction(); 1027 return CGF.Builder.CreateBitCast(ThisPtr, DestLTy); 1028 } 1029 1030 llvm::Value * 1031 MicrosoftCXXABI::EmitDynamicCastToVoid(CodeGenFunction &CGF, Address Value, 1032 QualType SrcRecordTy, 1033 QualType DestTy) { 1034 std::tie(Value, std::ignore) = performBaseAdjustment(CGF, Value, SrcRecordTy); 1035 1036 // PVOID __RTCastToVoid( 1037 // PVOID inptr) 1038 llvm::Type *ArgTypes[] = {CGF.Int8PtrTy}; 1039 llvm::Constant *Function = CGF.CGM.CreateRuntimeFunction( 1040 llvm::FunctionType::get(CGF.Int8PtrTy, ArgTypes, false), 1041 "__RTCastToVoid"); 1042 llvm::Value *Args[] = {Value.getPointer()}; 1043 return CGF.EmitRuntimeCall(Function, Args); 1044 } 1045 1046 bool MicrosoftCXXABI::EmitBadCastCall(CodeGenFunction &CGF) { 1047 return false; 1048 } 1049 1050 llvm::Value *MicrosoftCXXABI::GetVirtualBaseClassOffset( 1051 CodeGenFunction &CGF, Address This, const CXXRecordDecl *ClassDecl, 1052 const CXXRecordDecl *BaseClassDecl) { 1053 const ASTContext &Context = getContext(); 1054 int64_t VBPtrChars = 1055 Context.getASTRecordLayout(ClassDecl).getVBPtrOffset().getQuantity(); 1056 llvm::Value *VBPtrOffset = llvm::ConstantInt::get(CGM.PtrDiffTy, VBPtrChars); 1057 CharUnits IntSize = Context.getTypeSizeInChars(Context.IntTy); 1058 CharUnits VBTableChars = 1059 IntSize * 1060 CGM.getMicrosoftVTableContext().getVBTableIndex(ClassDecl, BaseClassDecl); 1061 llvm::Value *VBTableOffset = 1062 llvm::ConstantInt::get(CGM.IntTy, VBTableChars.getQuantity()); 1063 1064 llvm::Value *VBPtrToNewBase = 1065 GetVBaseOffsetFromVBPtr(CGF, This, VBPtrOffset, VBTableOffset); 1066 VBPtrToNewBase = 1067 CGF.Builder.CreateSExtOrBitCast(VBPtrToNewBase, CGM.PtrDiffTy); 1068 return CGF.Builder.CreateNSWAdd(VBPtrOffset, VBPtrToNewBase); 1069 } 1070 1071 bool MicrosoftCXXABI::HasThisReturn(GlobalDecl GD) const { 1072 return isa<CXXConstructorDecl>(GD.getDecl()); 1073 } 1074 1075 static bool isDeletingDtor(GlobalDecl GD) { 1076 return isa<CXXDestructorDecl>(GD.getDecl()) && 1077 GD.getDtorType() == Dtor_Deleting; 1078 } 1079 1080 bool MicrosoftCXXABI::hasMostDerivedReturn(GlobalDecl GD) const { 1081 return isDeletingDtor(GD); 1082 } 1083 1084 bool MicrosoftCXXABI::classifyReturnType(CGFunctionInfo &FI) const { 1085 const CXXRecordDecl *RD = FI.getReturnType()->getAsCXXRecordDecl(); 1086 if (!RD) 1087 return false; 1088 1089 CharUnits Align = CGM.getContext().getTypeAlignInChars(FI.getReturnType()); 1090 if (FI.isInstanceMethod()) { 1091 // If it's an instance method, aggregates are always returned indirectly via 1092 // the second parameter. 1093 FI.getReturnInfo() = ABIArgInfo::getIndirect(Align, /*ByVal=*/false); 1094 FI.getReturnInfo().setSRetAfterThis(FI.isInstanceMethod()); 1095 return true; 1096 } else if (!RD->isPOD()) { 1097 // If it's a free function, non-POD types are returned indirectly. 1098 FI.getReturnInfo() = ABIArgInfo::getIndirect(Align, /*ByVal=*/false); 1099 return true; 1100 } 1101 1102 // Otherwise, use the C ABI rules. 1103 return false; 1104 } 1105 1106 llvm::BasicBlock * 1107 MicrosoftCXXABI::EmitCtorCompleteObjectHandler(CodeGenFunction &CGF, 1108 const CXXRecordDecl *RD) { 1109 llvm::Value *IsMostDerivedClass = getStructorImplicitParamValue(CGF); 1110 assert(IsMostDerivedClass && 1111 "ctor for a class with virtual bases must have an implicit parameter"); 1112 llvm::Value *IsCompleteObject = 1113 CGF.Builder.CreateIsNotNull(IsMostDerivedClass, "is_complete_object"); 1114 1115 llvm::BasicBlock *CallVbaseCtorsBB = CGF.createBasicBlock("ctor.init_vbases"); 1116 llvm::BasicBlock *SkipVbaseCtorsBB = CGF.createBasicBlock("ctor.skip_vbases"); 1117 CGF.Builder.CreateCondBr(IsCompleteObject, 1118 CallVbaseCtorsBB, SkipVbaseCtorsBB); 1119 1120 CGF.EmitBlock(CallVbaseCtorsBB); 1121 1122 // Fill in the vbtable pointers here. 1123 EmitVBPtrStores(CGF, RD); 1124 1125 // CGF will put the base ctor calls in this basic block for us later. 1126 1127 return SkipVbaseCtorsBB; 1128 } 1129 1130 void MicrosoftCXXABI::initializeHiddenVirtualInheritanceMembers( 1131 CodeGenFunction &CGF, const CXXRecordDecl *RD) { 1132 // In most cases, an override for a vbase virtual method can adjust 1133 // the "this" parameter by applying a constant offset. 1134 // However, this is not enough while a constructor or a destructor of some 1135 // class X is being executed if all the following conditions are met: 1136 // - X has virtual bases, (1) 1137 // - X overrides a virtual method M of a vbase Y, (2) 1138 // - X itself is a vbase of the most derived class. 1139 // 1140 // If (1) and (2) are true, the vtorDisp for vbase Y is a hidden member of X 1141 // which holds the extra amount of "this" adjustment we must do when we use 1142 // the X vftables (i.e. during X ctor or dtor). 1143 // Outside the ctors and dtors, the values of vtorDisps are zero. 1144 1145 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD); 1146 typedef ASTRecordLayout::VBaseOffsetsMapTy VBOffsets; 1147 const VBOffsets &VBaseMap = Layout.getVBaseOffsetsMap(); 1148 CGBuilderTy &Builder = CGF.Builder; 1149 1150 unsigned AS = getThisAddress(CGF).getAddressSpace(); 1151 llvm::Value *Int8This = nullptr; // Initialize lazily. 1152 1153 for (VBOffsets::const_iterator I = VBaseMap.begin(), E = VBaseMap.end(); 1154 I != E; ++I) { 1155 if (!I->second.hasVtorDisp()) 1156 continue; 1157 1158 llvm::Value *VBaseOffset = 1159 GetVirtualBaseClassOffset(CGF, getThisAddress(CGF), RD, I->first); 1160 uint64_t ConstantVBaseOffset = 1161 Layout.getVBaseClassOffset(I->first).getQuantity(); 1162 1163 // vtorDisp_for_vbase = vbptr[vbase_idx] - offsetof(RD, vbase). 1164 llvm::Value *VtorDispValue = Builder.CreateSub( 1165 VBaseOffset, llvm::ConstantInt::get(CGM.PtrDiffTy, ConstantVBaseOffset), 1166 "vtordisp.value"); 1167 VtorDispValue = Builder.CreateTruncOrBitCast(VtorDispValue, CGF.Int32Ty); 1168 1169 if (!Int8This) 1170 Int8This = Builder.CreateBitCast(getThisValue(CGF), 1171 CGF.Int8Ty->getPointerTo(AS)); 1172 llvm::Value *VtorDispPtr = Builder.CreateInBoundsGEP(Int8This, VBaseOffset); 1173 // vtorDisp is always the 32-bits before the vbase in the class layout. 1174 VtorDispPtr = Builder.CreateConstGEP1_32(VtorDispPtr, -4); 1175 VtorDispPtr = Builder.CreateBitCast( 1176 VtorDispPtr, CGF.Int32Ty->getPointerTo(AS), "vtordisp.ptr"); 1177 1178 Builder.CreateAlignedStore(VtorDispValue, VtorDispPtr, 1179 CharUnits::fromQuantity(4)); 1180 } 1181 } 1182 1183 static bool hasDefaultCXXMethodCC(ASTContext &Context, 1184 const CXXMethodDecl *MD) { 1185 CallingConv ExpectedCallingConv = Context.getDefaultCallingConvention( 1186 /*IsVariadic=*/false, /*IsCXXMethod=*/true); 1187 CallingConv ActualCallingConv = 1188 MD->getType()->getAs<FunctionProtoType>()->getCallConv(); 1189 return ExpectedCallingConv == ActualCallingConv; 1190 } 1191 1192 void MicrosoftCXXABI::EmitCXXConstructors(const CXXConstructorDecl *D) { 1193 // There's only one constructor type in this ABI. 1194 CGM.EmitGlobal(GlobalDecl(D, Ctor_Complete)); 1195 1196 // Exported default constructors either have a simple call-site where they use 1197 // the typical calling convention and have a single 'this' pointer for an 1198 // argument -or- they get a wrapper function which appropriately thunks to the 1199 // real default constructor. This thunk is the default constructor closure. 1200 if (D->hasAttr<DLLExportAttr>() && D->isDefaultConstructor()) 1201 if (!hasDefaultCXXMethodCC(getContext(), D) || D->getNumParams() != 0) { 1202 llvm::Function *Fn = getAddrOfCXXCtorClosure(D, Ctor_DefaultClosure); 1203 Fn->setLinkage(llvm::GlobalValue::WeakODRLinkage); 1204 Fn->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass); 1205 } 1206 } 1207 1208 void MicrosoftCXXABI::EmitVBPtrStores(CodeGenFunction &CGF, 1209 const CXXRecordDecl *RD) { 1210 Address This = getThisAddress(CGF); 1211 This = CGF.Builder.CreateElementBitCast(This, CGM.Int8Ty, "this.int8"); 1212 const ASTContext &Context = getContext(); 1213 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD); 1214 1215 const VBTableGlobals &VBGlobals = enumerateVBTables(RD); 1216 for (unsigned I = 0, E = VBGlobals.VBTables->size(); I != E; ++I) { 1217 const VPtrInfo *VBT = (*VBGlobals.VBTables)[I]; 1218 llvm::GlobalVariable *GV = VBGlobals.Globals[I]; 1219 const ASTRecordLayout &SubobjectLayout = 1220 Context.getASTRecordLayout(VBT->IntroducingObject); 1221 CharUnits Offs = VBT->NonVirtualOffset; 1222 Offs += SubobjectLayout.getVBPtrOffset(); 1223 if (VBT->getVBaseWithVPtr()) 1224 Offs += Layout.getVBaseClassOffset(VBT->getVBaseWithVPtr()); 1225 Address VBPtr = CGF.Builder.CreateConstInBoundsByteGEP(This, Offs); 1226 llvm::Value *GVPtr = 1227 CGF.Builder.CreateConstInBoundsGEP2_32(GV->getValueType(), GV, 0, 0); 1228 VBPtr = CGF.Builder.CreateElementBitCast(VBPtr, GVPtr->getType(), 1229 "vbptr." + VBT->ObjectWithVPtr->getName()); 1230 CGF.Builder.CreateStore(GVPtr, VBPtr); 1231 } 1232 } 1233 1234 void 1235 MicrosoftCXXABI::buildStructorSignature(const CXXMethodDecl *MD, StructorType T, 1236 SmallVectorImpl<CanQualType> &ArgTys) { 1237 // TODO: 'for base' flag 1238 if (T == StructorType::Deleting) { 1239 // The scalar deleting destructor takes an implicit int parameter. 1240 ArgTys.push_back(getContext().IntTy); 1241 } 1242 auto *CD = dyn_cast<CXXConstructorDecl>(MD); 1243 if (!CD) 1244 return; 1245 1246 // All parameters are already in place except is_most_derived, which goes 1247 // after 'this' if it's variadic and last if it's not. 1248 1249 const CXXRecordDecl *Class = CD->getParent(); 1250 const FunctionProtoType *FPT = CD->getType()->castAs<FunctionProtoType>(); 1251 if (Class->getNumVBases()) { 1252 if (FPT->isVariadic()) 1253 ArgTys.insert(ArgTys.begin() + 1, getContext().IntTy); 1254 else 1255 ArgTys.push_back(getContext().IntTy); 1256 } 1257 } 1258 1259 void MicrosoftCXXABI::EmitCXXDestructors(const CXXDestructorDecl *D) { 1260 // The TU defining a dtor is only guaranteed to emit a base destructor. All 1261 // other destructor variants are delegating thunks. 1262 CGM.EmitGlobal(GlobalDecl(D, Dtor_Base)); 1263 } 1264 1265 CharUnits 1266 MicrosoftCXXABI::getVirtualFunctionPrologueThisAdjustment(GlobalDecl GD) { 1267 GD = GD.getCanonicalDecl(); 1268 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); 1269 1270 GlobalDecl LookupGD = GD; 1271 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) { 1272 // Complete destructors take a pointer to the complete object as a 1273 // parameter, thus don't need this adjustment. 1274 if (GD.getDtorType() == Dtor_Complete) 1275 return CharUnits(); 1276 1277 // There's no Dtor_Base in vftable but it shares the this adjustment with 1278 // the deleting one, so look it up instead. 1279 LookupGD = GlobalDecl(DD, Dtor_Deleting); 1280 } 1281 1282 MicrosoftVTableContext::MethodVFTableLocation ML = 1283 CGM.getMicrosoftVTableContext().getMethodVFTableLocation(LookupGD); 1284 CharUnits Adjustment = ML.VFPtrOffset; 1285 1286 // Normal virtual instance methods need to adjust from the vfptr that first 1287 // defined the virtual method to the virtual base subobject, but destructors 1288 // do not. The vector deleting destructor thunk applies this adjustment for 1289 // us if necessary. 1290 if (isa<CXXDestructorDecl>(MD)) 1291 Adjustment = CharUnits::Zero(); 1292 1293 if (ML.VBase) { 1294 const ASTRecordLayout &DerivedLayout = 1295 getContext().getASTRecordLayout(MD->getParent()); 1296 Adjustment += DerivedLayout.getVBaseClassOffset(ML.VBase); 1297 } 1298 1299 return Adjustment; 1300 } 1301 1302 Address MicrosoftCXXABI::adjustThisArgumentForVirtualFunctionCall( 1303 CodeGenFunction &CGF, GlobalDecl GD, Address This, 1304 bool VirtualCall) { 1305 if (!VirtualCall) { 1306 // If the call of a virtual function is not virtual, we just have to 1307 // compensate for the adjustment the virtual function does in its prologue. 1308 CharUnits Adjustment = getVirtualFunctionPrologueThisAdjustment(GD); 1309 if (Adjustment.isZero()) 1310 return This; 1311 1312 This = CGF.Builder.CreateElementBitCast(This, CGF.Int8Ty); 1313 assert(Adjustment.isPositive()); 1314 return CGF.Builder.CreateConstByteGEP(This, Adjustment); 1315 } 1316 1317 GD = GD.getCanonicalDecl(); 1318 const CXXMethodDecl *MD = cast<CXXMethodDecl>(GD.getDecl()); 1319 1320 GlobalDecl LookupGD = GD; 1321 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) { 1322 // Complete dtors take a pointer to the complete object, 1323 // thus don't need adjustment. 1324 if (GD.getDtorType() == Dtor_Complete) 1325 return This; 1326 1327 // There's only Dtor_Deleting in vftable but it shares the this adjustment 1328 // with the base one, so look up the deleting one instead. 1329 LookupGD = GlobalDecl(DD, Dtor_Deleting); 1330 } 1331 MicrosoftVTableContext::MethodVFTableLocation ML = 1332 CGM.getMicrosoftVTableContext().getMethodVFTableLocation(LookupGD); 1333 1334 CharUnits StaticOffset = ML.VFPtrOffset; 1335 1336 // Base destructors expect 'this' to point to the beginning of the base 1337 // subobject, not the first vfptr that happens to contain the virtual dtor. 1338 // However, we still need to apply the virtual base adjustment. 1339 if (isa<CXXDestructorDecl>(MD) && GD.getDtorType() == Dtor_Base) 1340 StaticOffset = CharUnits::Zero(); 1341 1342 Address Result = This; 1343 if (ML.VBase) { 1344 Result = CGF.Builder.CreateElementBitCast(Result, CGF.Int8Ty); 1345 1346 const CXXRecordDecl *Derived = MD->getParent(); 1347 const CXXRecordDecl *VBase = ML.VBase; 1348 llvm::Value *VBaseOffset = 1349 GetVirtualBaseClassOffset(CGF, Result, Derived, VBase); 1350 llvm::Value *VBasePtr = 1351 CGF.Builder.CreateInBoundsGEP(Result.getPointer(), VBaseOffset); 1352 CharUnits VBaseAlign = 1353 CGF.CGM.getVBaseAlignment(Result.getAlignment(), Derived, VBase); 1354 Result = Address(VBasePtr, VBaseAlign); 1355 } 1356 if (!StaticOffset.isZero()) { 1357 assert(StaticOffset.isPositive()); 1358 Result = CGF.Builder.CreateElementBitCast(Result, CGF.Int8Ty); 1359 if (ML.VBase) { 1360 // Non-virtual adjustment might result in a pointer outside the allocated 1361 // object, e.g. if the final overrider class is laid out after the virtual 1362 // base that declares a method in the most derived class. 1363 // FIXME: Update the code that emits this adjustment in thunks prologues. 1364 Result = CGF.Builder.CreateConstByteGEP(Result, StaticOffset); 1365 } else { 1366 Result = CGF.Builder.CreateConstInBoundsByteGEP(Result, StaticOffset); 1367 } 1368 } 1369 return Result; 1370 } 1371 1372 void MicrosoftCXXABI::addImplicitStructorParams(CodeGenFunction &CGF, 1373 QualType &ResTy, 1374 FunctionArgList &Params) { 1375 ASTContext &Context = getContext(); 1376 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CGF.CurGD.getDecl()); 1377 assert(isa<CXXConstructorDecl>(MD) || isa<CXXDestructorDecl>(MD)); 1378 if (isa<CXXConstructorDecl>(MD) && MD->getParent()->getNumVBases()) { 1379 ImplicitParamDecl *IsMostDerived 1380 = ImplicitParamDecl::Create(Context, nullptr, 1381 CGF.CurGD.getDecl()->getLocation(), 1382 &Context.Idents.get("is_most_derived"), 1383 Context.IntTy); 1384 // The 'most_derived' parameter goes second if the ctor is variadic and last 1385 // if it's not. Dtors can't be variadic. 1386 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>(); 1387 if (FPT->isVariadic()) 1388 Params.insert(Params.begin() + 1, IsMostDerived); 1389 else 1390 Params.push_back(IsMostDerived); 1391 getStructorImplicitParamDecl(CGF) = IsMostDerived; 1392 } else if (isDeletingDtor(CGF.CurGD)) { 1393 ImplicitParamDecl *ShouldDelete 1394 = ImplicitParamDecl::Create(Context, nullptr, 1395 CGF.CurGD.getDecl()->getLocation(), 1396 &Context.Idents.get("should_call_delete"), 1397 Context.IntTy); 1398 Params.push_back(ShouldDelete); 1399 getStructorImplicitParamDecl(CGF) = ShouldDelete; 1400 } 1401 } 1402 1403 llvm::Value *MicrosoftCXXABI::adjustThisParameterInVirtualFunctionPrologue( 1404 CodeGenFunction &CGF, GlobalDecl GD, llvm::Value *This) { 1405 // In this ABI, every virtual function takes a pointer to one of the 1406 // subobjects that first defines it as the 'this' parameter, rather than a 1407 // pointer to the final overrider subobject. Thus, we need to adjust it back 1408 // to the final overrider subobject before use. 1409 // See comments in the MicrosoftVFTableContext implementation for the details. 1410 CharUnits Adjustment = getVirtualFunctionPrologueThisAdjustment(GD); 1411 if (Adjustment.isZero()) 1412 return This; 1413 1414 unsigned AS = cast<llvm::PointerType>(This->getType())->getAddressSpace(); 1415 llvm::Type *charPtrTy = CGF.Int8Ty->getPointerTo(AS), 1416 *thisTy = This->getType(); 1417 1418 This = CGF.Builder.CreateBitCast(This, charPtrTy); 1419 assert(Adjustment.isPositive()); 1420 This = CGF.Builder.CreateConstInBoundsGEP1_32(CGF.Int8Ty, This, 1421 -Adjustment.getQuantity()); 1422 return CGF.Builder.CreateBitCast(This, thisTy); 1423 } 1424 1425 void MicrosoftCXXABI::EmitInstanceFunctionProlog(CodeGenFunction &CGF) { 1426 // Naked functions have no prolog. 1427 if (CGF.CurFuncDecl && CGF.CurFuncDecl->hasAttr<NakedAttr>()) 1428 return; 1429 1430 EmitThisParam(CGF); 1431 1432 /// If this is a function that the ABI specifies returns 'this', initialize 1433 /// the return slot to 'this' at the start of the function. 1434 /// 1435 /// Unlike the setting of return types, this is done within the ABI 1436 /// implementation instead of by clients of CGCXXABI because: 1437 /// 1) getThisValue is currently protected 1438 /// 2) in theory, an ABI could implement 'this' returns some other way; 1439 /// HasThisReturn only specifies a contract, not the implementation 1440 if (HasThisReturn(CGF.CurGD)) 1441 CGF.Builder.CreateStore(getThisValue(CGF), CGF.ReturnValue); 1442 else if (hasMostDerivedReturn(CGF.CurGD)) 1443 CGF.Builder.CreateStore(CGF.EmitCastToVoidPtr(getThisValue(CGF)), 1444 CGF.ReturnValue); 1445 1446 const CXXMethodDecl *MD = cast<CXXMethodDecl>(CGF.CurGD.getDecl()); 1447 if (isa<CXXConstructorDecl>(MD) && MD->getParent()->getNumVBases()) { 1448 assert(getStructorImplicitParamDecl(CGF) && 1449 "no implicit parameter for a constructor with virtual bases?"); 1450 getStructorImplicitParamValue(CGF) 1451 = CGF.Builder.CreateLoad( 1452 CGF.GetAddrOfLocalVar(getStructorImplicitParamDecl(CGF)), 1453 "is_most_derived"); 1454 } 1455 1456 if (isDeletingDtor(CGF.CurGD)) { 1457 assert(getStructorImplicitParamDecl(CGF) && 1458 "no implicit parameter for a deleting destructor?"); 1459 getStructorImplicitParamValue(CGF) 1460 = CGF.Builder.CreateLoad( 1461 CGF.GetAddrOfLocalVar(getStructorImplicitParamDecl(CGF)), 1462 "should_call_delete"); 1463 } 1464 } 1465 1466 unsigned MicrosoftCXXABI::addImplicitConstructorArgs( 1467 CodeGenFunction &CGF, const CXXConstructorDecl *D, CXXCtorType Type, 1468 bool ForVirtualBase, bool Delegating, CallArgList &Args) { 1469 assert(Type == Ctor_Complete || Type == Ctor_Base); 1470 1471 // Check if we need a 'most_derived' parameter. 1472 if (!D->getParent()->getNumVBases()) 1473 return 0; 1474 1475 // Add the 'most_derived' argument second if we are variadic or last if not. 1476 const FunctionProtoType *FPT = D->getType()->castAs<FunctionProtoType>(); 1477 llvm::Value *MostDerivedArg; 1478 if (Delegating) { 1479 MostDerivedArg = getStructorImplicitParamValue(CGF); 1480 } else { 1481 MostDerivedArg = llvm::ConstantInt::get(CGM.Int32Ty, Type == Ctor_Complete); 1482 } 1483 RValue RV = RValue::get(MostDerivedArg); 1484 if (FPT->isVariadic()) 1485 Args.insert(Args.begin() + 1, 1486 CallArg(RV, getContext().IntTy, /*needscopy=*/false)); 1487 else 1488 Args.add(RV, getContext().IntTy); 1489 1490 return 1; // Added one arg. 1491 } 1492 1493 void MicrosoftCXXABI::EmitDestructorCall(CodeGenFunction &CGF, 1494 const CXXDestructorDecl *DD, 1495 CXXDtorType Type, bool ForVirtualBase, 1496 bool Delegating, Address This) { 1497 llvm::Value *Callee = CGM.getAddrOfCXXStructor(DD, getFromDtorType(Type)); 1498 1499 if (DD->isVirtual()) { 1500 assert(Type != CXXDtorType::Dtor_Deleting && 1501 "The deleting destructor should only be called via a virtual call"); 1502 This = adjustThisArgumentForVirtualFunctionCall(CGF, GlobalDecl(DD, Type), 1503 This, false); 1504 } 1505 1506 CGF.EmitCXXDestructorCall(DD, Callee, This.getPointer(), 1507 /*ImplicitParam=*/nullptr, 1508 /*ImplicitParamTy=*/QualType(), nullptr, 1509 getFromDtorType(Type)); 1510 } 1511 1512 void MicrosoftCXXABI::emitVTableTypeMetadata(VPtrInfo *Info, 1513 const CXXRecordDecl *RD, 1514 llvm::GlobalVariable *VTable) { 1515 if (!CGM.getCodeGenOpts().PrepareForLTO) 1516 return; 1517 1518 // The location of the first virtual function pointer in the virtual table, 1519 // aka the "address point" on Itanium. This is at offset 0 if RTTI is 1520 // disabled, or sizeof(void*) if RTTI is enabled. 1521 CharUnits AddressPoint = 1522 getContext().getLangOpts().RTTIData 1523 ? getContext().toCharUnitsFromBits( 1524 getContext().getTargetInfo().getPointerWidth(0)) 1525 : CharUnits::Zero(); 1526 1527 if (Info->PathToIntroducingObject.empty()) { 1528 CGM.AddVTableTypeMetadata(VTable, AddressPoint, RD); 1529 return; 1530 } 1531 1532 // Add a bitset entry for the least derived base belonging to this vftable. 1533 CGM.AddVTableTypeMetadata(VTable, AddressPoint, 1534 Info->PathToIntroducingObject.back()); 1535 1536 // Add a bitset entry for each derived class that is laid out at the same 1537 // offset as the least derived base. 1538 for (unsigned I = Info->PathToIntroducingObject.size() - 1; I != 0; --I) { 1539 const CXXRecordDecl *DerivedRD = Info->PathToIntroducingObject[I - 1]; 1540 const CXXRecordDecl *BaseRD = Info->PathToIntroducingObject[I]; 1541 1542 const ASTRecordLayout &Layout = 1543 getContext().getASTRecordLayout(DerivedRD); 1544 CharUnits Offset; 1545 auto VBI = Layout.getVBaseOffsetsMap().find(BaseRD); 1546 if (VBI == Layout.getVBaseOffsetsMap().end()) 1547 Offset = Layout.getBaseClassOffset(BaseRD); 1548 else 1549 Offset = VBI->second.VBaseOffset; 1550 if (!Offset.isZero()) 1551 return; 1552 CGM.AddVTableTypeMetadata(VTable, AddressPoint, DerivedRD); 1553 } 1554 1555 // Finally do the same for the most derived class. 1556 if (Info->FullOffsetInMDC.isZero()) 1557 CGM.AddVTableTypeMetadata(VTable, AddressPoint, RD); 1558 } 1559 1560 void MicrosoftCXXABI::emitVTableDefinitions(CodeGenVTables &CGVT, 1561 const CXXRecordDecl *RD) { 1562 MicrosoftVTableContext &VFTContext = CGM.getMicrosoftVTableContext(); 1563 const VPtrInfoVector &VFPtrs = VFTContext.getVFPtrOffsets(RD); 1564 1565 for (VPtrInfo *Info : VFPtrs) { 1566 llvm::GlobalVariable *VTable = getAddrOfVTable(RD, Info->FullOffsetInMDC); 1567 if (VTable->hasInitializer()) 1568 continue; 1569 1570 const VTableLayout &VTLayout = 1571 VFTContext.getVFTableLayout(RD, Info->FullOffsetInMDC); 1572 1573 llvm::Constant *RTTI = nullptr; 1574 if (any_of(VTLayout.vtable_components(), 1575 [](const VTableComponent &VTC) { return VTC.isRTTIKind(); })) 1576 RTTI = getMSCompleteObjectLocator(RD, Info); 1577 1578 llvm::Constant *Init = CGVT.CreateVTableInitializer(VTLayout, RTTI); 1579 1580 VTable->setInitializer(Init); 1581 1582 emitVTableTypeMetadata(Info, RD, VTable); 1583 } 1584 } 1585 1586 bool MicrosoftCXXABI::isVirtualOffsetNeededForVTableField( 1587 CodeGenFunction &CGF, CodeGenFunction::VPtr Vptr) { 1588 return Vptr.NearestVBase != nullptr; 1589 } 1590 1591 llvm::Value *MicrosoftCXXABI::getVTableAddressPointInStructor( 1592 CodeGenFunction &CGF, const CXXRecordDecl *VTableClass, BaseSubobject Base, 1593 const CXXRecordDecl *NearestVBase) { 1594 llvm::Constant *VTableAddressPoint = getVTableAddressPoint(Base, VTableClass); 1595 if (!VTableAddressPoint) { 1596 assert(Base.getBase()->getNumVBases() && 1597 !getContext().getASTRecordLayout(Base.getBase()).hasOwnVFPtr()); 1598 } 1599 return VTableAddressPoint; 1600 } 1601 1602 static void mangleVFTableName(MicrosoftMangleContext &MangleContext, 1603 const CXXRecordDecl *RD, const VPtrInfo *VFPtr, 1604 SmallString<256> &Name) { 1605 llvm::raw_svector_ostream Out(Name); 1606 MangleContext.mangleCXXVFTable(RD, VFPtr->MangledPath, Out); 1607 } 1608 1609 llvm::Constant * 1610 MicrosoftCXXABI::getVTableAddressPoint(BaseSubobject Base, 1611 const CXXRecordDecl *VTableClass) { 1612 (void)getAddrOfVTable(VTableClass, Base.getBaseOffset()); 1613 VFTableIdTy ID(VTableClass, Base.getBaseOffset()); 1614 return VFTablesMap[ID]; 1615 } 1616 1617 llvm::Constant *MicrosoftCXXABI::getVTableAddressPointForConstExpr( 1618 BaseSubobject Base, const CXXRecordDecl *VTableClass) { 1619 llvm::Constant *VFTable = getVTableAddressPoint(Base, VTableClass); 1620 assert(VFTable && "Couldn't find a vftable for the given base?"); 1621 return VFTable; 1622 } 1623 1624 llvm::GlobalVariable *MicrosoftCXXABI::getAddrOfVTable(const CXXRecordDecl *RD, 1625 CharUnits VPtrOffset) { 1626 // getAddrOfVTable may return 0 if asked to get an address of a vtable which 1627 // shouldn't be used in the given record type. We want to cache this result in 1628 // VFTablesMap, thus a simple zero check is not sufficient. 1629 1630 VFTableIdTy ID(RD, VPtrOffset); 1631 VTablesMapTy::iterator I; 1632 bool Inserted; 1633 std::tie(I, Inserted) = VTablesMap.insert(std::make_pair(ID, nullptr)); 1634 if (!Inserted) 1635 return I->second; 1636 1637 llvm::GlobalVariable *&VTable = I->second; 1638 1639 MicrosoftVTableContext &VTContext = CGM.getMicrosoftVTableContext(); 1640 const VPtrInfoVector &VFPtrs = VTContext.getVFPtrOffsets(RD); 1641 1642 if (DeferredVFTables.insert(RD).second) { 1643 // We haven't processed this record type before. 1644 // Queue up this vtable for possible deferred emission. 1645 CGM.addDeferredVTable(RD); 1646 1647 #ifndef NDEBUG 1648 // Create all the vftables at once in order to make sure each vftable has 1649 // a unique mangled name. 1650 llvm::StringSet<> ObservedMangledNames; 1651 for (size_t J = 0, F = VFPtrs.size(); J != F; ++J) { 1652 SmallString<256> Name; 1653 mangleVFTableName(getMangleContext(), RD, VFPtrs[J], Name); 1654 if (!ObservedMangledNames.insert(Name.str()).second) 1655 llvm_unreachable("Already saw this mangling before?"); 1656 } 1657 #endif 1658 } 1659 1660 VPtrInfo *const *VFPtrI = 1661 std::find_if(VFPtrs.begin(), VFPtrs.end(), [&](VPtrInfo *VPI) { 1662 return VPI->FullOffsetInMDC == VPtrOffset; 1663 }); 1664 if (VFPtrI == VFPtrs.end()) { 1665 VFTablesMap[ID] = nullptr; 1666 return nullptr; 1667 } 1668 VPtrInfo *VFPtr = *VFPtrI; 1669 1670 SmallString<256> VFTableName; 1671 mangleVFTableName(getMangleContext(), RD, VFPtr, VFTableName); 1672 1673 // Classes marked __declspec(dllimport) need vftables generated on the 1674 // import-side in order to support features like constexpr. No other 1675 // translation unit relies on the emission of the local vftable, translation 1676 // units are expected to generate them as needed. 1677 // 1678 // Because of this unique behavior, we maintain this logic here instead of 1679 // getVTableLinkage. 1680 llvm::GlobalValue::LinkageTypes VFTableLinkage = 1681 RD->hasAttr<DLLImportAttr>() ? llvm::GlobalValue::LinkOnceODRLinkage 1682 : CGM.getVTableLinkage(RD); 1683 bool VFTableComesFromAnotherTU = 1684 llvm::GlobalValue::isAvailableExternallyLinkage(VFTableLinkage) || 1685 llvm::GlobalValue::isExternalLinkage(VFTableLinkage); 1686 bool VTableAliasIsRequred = 1687 !VFTableComesFromAnotherTU && getContext().getLangOpts().RTTIData; 1688 1689 if (llvm::GlobalValue *VFTable = 1690 CGM.getModule().getNamedGlobal(VFTableName)) { 1691 VFTablesMap[ID] = VFTable; 1692 VTable = VTableAliasIsRequred 1693 ? cast<llvm::GlobalVariable>( 1694 cast<llvm::GlobalAlias>(VFTable)->getBaseObject()) 1695 : cast<llvm::GlobalVariable>(VFTable); 1696 return VTable; 1697 } 1698 1699 uint64_t NumVTableSlots = 1700 VTContext.getVFTableLayout(RD, VFPtr->FullOffsetInMDC) 1701 .vtable_components() 1702 .size(); 1703 llvm::GlobalValue::LinkageTypes VTableLinkage = 1704 VTableAliasIsRequred ? llvm::GlobalValue::PrivateLinkage : VFTableLinkage; 1705 1706 StringRef VTableName = VTableAliasIsRequred ? StringRef() : VFTableName.str(); 1707 1708 llvm::ArrayType *VTableType = 1709 llvm::ArrayType::get(CGM.Int8PtrTy, NumVTableSlots); 1710 1711 // Create a backing variable for the contents of VTable. The VTable may 1712 // or may not include space for a pointer to RTTI data. 1713 llvm::GlobalValue *VFTable; 1714 VTable = new llvm::GlobalVariable(CGM.getModule(), VTableType, 1715 /*isConstant=*/true, VTableLinkage, 1716 /*Initializer=*/nullptr, VTableName); 1717 VTable->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 1718 1719 llvm::Comdat *C = nullptr; 1720 if (!VFTableComesFromAnotherTU && 1721 (llvm::GlobalValue::isWeakForLinker(VFTableLinkage) || 1722 (llvm::GlobalValue::isLocalLinkage(VFTableLinkage) && 1723 VTableAliasIsRequred))) 1724 C = CGM.getModule().getOrInsertComdat(VFTableName.str()); 1725 1726 // Only insert a pointer into the VFTable for RTTI data if we are not 1727 // importing it. We never reference the RTTI data directly so there is no 1728 // need to make room for it. 1729 if (VTableAliasIsRequred) { 1730 llvm::Value *GEPIndices[] = {llvm::ConstantInt::get(CGM.IntTy, 0), 1731 llvm::ConstantInt::get(CGM.IntTy, 1)}; 1732 // Create a GEP which points just after the first entry in the VFTable, 1733 // this should be the location of the first virtual method. 1734 llvm::Constant *VTableGEP = llvm::ConstantExpr::getInBoundsGetElementPtr( 1735 VTable->getValueType(), VTable, GEPIndices); 1736 if (llvm::GlobalValue::isWeakForLinker(VFTableLinkage)) { 1737 VFTableLinkage = llvm::GlobalValue::ExternalLinkage; 1738 if (C) 1739 C->setSelectionKind(llvm::Comdat::Largest); 1740 } 1741 VFTable = llvm::GlobalAlias::create(CGM.Int8PtrTy, 1742 /*AddressSpace=*/0, VFTableLinkage, 1743 VFTableName.str(), VTableGEP, 1744 &CGM.getModule()); 1745 VFTable->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 1746 } else { 1747 // We don't need a GlobalAlias to be a symbol for the VTable if we won't 1748 // be referencing any RTTI data. 1749 // The GlobalVariable will end up being an appropriate definition of the 1750 // VFTable. 1751 VFTable = VTable; 1752 } 1753 if (C) 1754 VTable->setComdat(C); 1755 1756 if (RD->hasAttr<DLLExportAttr>()) 1757 VFTable->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass); 1758 1759 VFTablesMap[ID] = VFTable; 1760 return VTable; 1761 } 1762 1763 // Compute the identity of the most derived class whose virtual table is located 1764 // at the given offset into RD. 1765 static const CXXRecordDecl *getClassAtVTableLocation(ASTContext &Ctx, 1766 const CXXRecordDecl *RD, 1767 CharUnits Offset) { 1768 if (Offset.isZero()) 1769 return RD; 1770 1771 const ASTRecordLayout &Layout = Ctx.getASTRecordLayout(RD); 1772 const CXXRecordDecl *MaxBase = nullptr; 1773 CharUnits MaxBaseOffset; 1774 for (auto &&B : RD->bases()) { 1775 const CXXRecordDecl *Base = B.getType()->getAsCXXRecordDecl(); 1776 CharUnits BaseOffset = Layout.getBaseClassOffset(Base); 1777 if (BaseOffset <= Offset && BaseOffset >= MaxBaseOffset) { 1778 MaxBase = Base; 1779 MaxBaseOffset = BaseOffset; 1780 } 1781 } 1782 for (auto &&B : RD->vbases()) { 1783 const CXXRecordDecl *Base = B.getType()->getAsCXXRecordDecl(); 1784 CharUnits BaseOffset = Layout.getVBaseClassOffset(Base); 1785 if (BaseOffset <= Offset && BaseOffset >= MaxBaseOffset) { 1786 MaxBase = Base; 1787 MaxBaseOffset = BaseOffset; 1788 } 1789 } 1790 assert(MaxBase); 1791 return getClassAtVTableLocation(Ctx, MaxBase, Offset - MaxBaseOffset); 1792 } 1793 1794 // Compute the identity of the most derived class whose virtual table is located 1795 // at the MethodVFTableLocation ML. 1796 static const CXXRecordDecl * 1797 getClassAtVTableLocation(ASTContext &Ctx, GlobalDecl GD, 1798 MicrosoftVTableContext::MethodVFTableLocation &ML) { 1799 const CXXRecordDecl *RD = ML.VBase; 1800 if (!RD) 1801 RD = cast<CXXMethodDecl>(GD.getDecl())->getParent(); 1802 1803 return getClassAtVTableLocation(Ctx, RD, ML.VFPtrOffset); 1804 } 1805 1806 llvm::Value *MicrosoftCXXABI::getVirtualFunctionPointer(CodeGenFunction &CGF, 1807 GlobalDecl GD, 1808 Address This, 1809 llvm::Type *Ty, 1810 SourceLocation Loc) { 1811 GD = GD.getCanonicalDecl(); 1812 CGBuilderTy &Builder = CGF.Builder; 1813 1814 Ty = Ty->getPointerTo()->getPointerTo(); 1815 Address VPtr = 1816 adjustThisArgumentForVirtualFunctionCall(CGF, GD, This, true); 1817 1818 auto *MethodDecl = cast<CXXMethodDecl>(GD.getDecl()); 1819 llvm::Value *VTable = CGF.GetVTablePtr(VPtr, Ty, MethodDecl->getParent()); 1820 1821 MicrosoftVTableContext::MethodVFTableLocation ML = 1822 CGM.getMicrosoftVTableContext().getMethodVFTableLocation(GD); 1823 1824 if (CGF.ShouldEmitVTableTypeCheckedLoad(MethodDecl->getParent())) { 1825 return CGF.EmitVTableTypeCheckedLoad( 1826 getClassAtVTableLocation(getContext(), GD, ML), VTable, 1827 ML.Index * CGM.getContext().getTargetInfo().getPointerWidth(0) / 8); 1828 } else { 1829 if (CGM.getCodeGenOpts().PrepareForLTO) 1830 CGF.EmitTypeMetadataCodeForVCall( 1831 getClassAtVTableLocation(getContext(), GD, ML), VTable, Loc); 1832 1833 llvm::Value *VFuncPtr = 1834 Builder.CreateConstInBoundsGEP1_64(VTable, ML.Index, "vfn"); 1835 return Builder.CreateAlignedLoad(VFuncPtr, CGF.getPointerAlign()); 1836 } 1837 } 1838 1839 llvm::Value *MicrosoftCXXABI::EmitVirtualDestructorCall( 1840 CodeGenFunction &CGF, const CXXDestructorDecl *Dtor, CXXDtorType DtorType, 1841 Address This, const CXXMemberCallExpr *CE) { 1842 assert(CE == nullptr || CE->arg_begin() == CE->arg_end()); 1843 assert(DtorType == Dtor_Deleting || DtorType == Dtor_Complete); 1844 1845 // We have only one destructor in the vftable but can get both behaviors 1846 // by passing an implicit int parameter. 1847 GlobalDecl GD(Dtor, Dtor_Deleting); 1848 const CGFunctionInfo *FInfo = &CGM.getTypes().arrangeCXXStructorDeclaration( 1849 Dtor, StructorType::Deleting); 1850 llvm::Type *Ty = CGF.CGM.getTypes().GetFunctionType(*FInfo); 1851 llvm::Value *Callee = getVirtualFunctionPointer( 1852 CGF, GD, This, Ty, CE ? CE->getLocStart() : SourceLocation()); 1853 1854 ASTContext &Context = getContext(); 1855 llvm::Value *ImplicitParam = llvm::ConstantInt::get( 1856 llvm::IntegerType::getInt32Ty(CGF.getLLVMContext()), 1857 DtorType == Dtor_Deleting); 1858 1859 This = adjustThisArgumentForVirtualFunctionCall(CGF, GD, This, true); 1860 RValue RV = 1861 CGF.EmitCXXDestructorCall(Dtor, Callee, This.getPointer(), ImplicitParam, 1862 Context.IntTy, CE, StructorType::Deleting); 1863 return RV.getScalarVal(); 1864 } 1865 1866 const VBTableGlobals & 1867 MicrosoftCXXABI::enumerateVBTables(const CXXRecordDecl *RD) { 1868 // At this layer, we can key the cache off of a single class, which is much 1869 // easier than caching each vbtable individually. 1870 llvm::DenseMap<const CXXRecordDecl*, VBTableGlobals>::iterator Entry; 1871 bool Added; 1872 std::tie(Entry, Added) = 1873 VBTablesMap.insert(std::make_pair(RD, VBTableGlobals())); 1874 VBTableGlobals &VBGlobals = Entry->second; 1875 if (!Added) 1876 return VBGlobals; 1877 1878 MicrosoftVTableContext &Context = CGM.getMicrosoftVTableContext(); 1879 VBGlobals.VBTables = &Context.enumerateVBTables(RD); 1880 1881 // Cache the globals for all vbtables so we don't have to recompute the 1882 // mangled names. 1883 llvm::GlobalVariable::LinkageTypes Linkage = CGM.getVTableLinkage(RD); 1884 for (VPtrInfoVector::const_iterator I = VBGlobals.VBTables->begin(), 1885 E = VBGlobals.VBTables->end(); 1886 I != E; ++I) { 1887 VBGlobals.Globals.push_back(getAddrOfVBTable(**I, RD, Linkage)); 1888 } 1889 1890 return VBGlobals; 1891 } 1892 1893 llvm::Function *MicrosoftCXXABI::EmitVirtualMemPtrThunk( 1894 const CXXMethodDecl *MD, 1895 const MicrosoftVTableContext::MethodVFTableLocation &ML) { 1896 assert(!isa<CXXConstructorDecl>(MD) && !isa<CXXDestructorDecl>(MD) && 1897 "can't form pointers to ctors or virtual dtors"); 1898 1899 // Calculate the mangled name. 1900 SmallString<256> ThunkName; 1901 llvm::raw_svector_ostream Out(ThunkName); 1902 getMangleContext().mangleVirtualMemPtrThunk(MD, Out); 1903 1904 // If the thunk has been generated previously, just return it. 1905 if (llvm::GlobalValue *GV = CGM.getModule().getNamedValue(ThunkName)) 1906 return cast<llvm::Function>(GV); 1907 1908 // Create the llvm::Function. 1909 const CGFunctionInfo &FnInfo = CGM.getTypes().arrangeMSMemberPointerThunk(MD); 1910 llvm::FunctionType *ThunkTy = CGM.getTypes().GetFunctionType(FnInfo); 1911 llvm::Function *ThunkFn = 1912 llvm::Function::Create(ThunkTy, llvm::Function::ExternalLinkage, 1913 ThunkName.str(), &CGM.getModule()); 1914 assert(ThunkFn->getName() == ThunkName && "name was uniqued!"); 1915 1916 ThunkFn->setLinkage(MD->isExternallyVisible() 1917 ? llvm::GlobalValue::LinkOnceODRLinkage 1918 : llvm::GlobalValue::InternalLinkage); 1919 if (MD->isExternallyVisible()) 1920 ThunkFn->setComdat(CGM.getModule().getOrInsertComdat(ThunkFn->getName())); 1921 1922 CGM.SetLLVMFunctionAttributes(MD, FnInfo, ThunkFn); 1923 CGM.SetLLVMFunctionAttributesForDefinition(MD, ThunkFn); 1924 1925 // Add the "thunk" attribute so that LLVM knows that the return type is 1926 // meaningless. These thunks can be used to call functions with differing 1927 // return types, and the caller is required to cast the prototype 1928 // appropriately to extract the correct value. 1929 ThunkFn->addFnAttr("thunk"); 1930 1931 // These thunks can be compared, so they are not unnamed. 1932 ThunkFn->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::None); 1933 1934 // Start codegen. 1935 CodeGenFunction CGF(CGM); 1936 CGF.CurGD = GlobalDecl(MD); 1937 CGF.CurFuncIsThunk = true; 1938 1939 // Build FunctionArgs, but only include the implicit 'this' parameter 1940 // declaration. 1941 FunctionArgList FunctionArgs; 1942 buildThisParam(CGF, FunctionArgs); 1943 1944 // Start defining the function. 1945 CGF.StartFunction(GlobalDecl(), FnInfo.getReturnType(), ThunkFn, FnInfo, 1946 FunctionArgs, MD->getLocation(), SourceLocation()); 1947 EmitThisParam(CGF); 1948 1949 // Load the vfptr and then callee from the vftable. The callee should have 1950 // adjusted 'this' so that the vfptr is at offset zero. 1951 llvm::Value *VTable = CGF.GetVTablePtr( 1952 getThisAddress(CGF), ThunkTy->getPointerTo()->getPointerTo(), MD->getParent()); 1953 1954 llvm::Value *VFuncPtr = 1955 CGF.Builder.CreateConstInBoundsGEP1_64(VTable, ML.Index, "vfn"); 1956 llvm::Value *Callee = 1957 CGF.Builder.CreateAlignedLoad(VFuncPtr, CGF.getPointerAlign()); 1958 1959 CGF.EmitMustTailThunk(MD, getThisValue(CGF), Callee); 1960 1961 return ThunkFn; 1962 } 1963 1964 void MicrosoftCXXABI::emitVirtualInheritanceTables(const CXXRecordDecl *RD) { 1965 const VBTableGlobals &VBGlobals = enumerateVBTables(RD); 1966 for (unsigned I = 0, E = VBGlobals.VBTables->size(); I != E; ++I) { 1967 const VPtrInfo *VBT = (*VBGlobals.VBTables)[I]; 1968 llvm::GlobalVariable *GV = VBGlobals.Globals[I]; 1969 if (GV->isDeclaration()) 1970 emitVBTableDefinition(*VBT, RD, GV); 1971 } 1972 } 1973 1974 llvm::GlobalVariable * 1975 MicrosoftCXXABI::getAddrOfVBTable(const VPtrInfo &VBT, const CXXRecordDecl *RD, 1976 llvm::GlobalVariable::LinkageTypes Linkage) { 1977 SmallString<256> OutName; 1978 llvm::raw_svector_ostream Out(OutName); 1979 getMangleContext().mangleCXXVBTable(RD, VBT.MangledPath, Out); 1980 StringRef Name = OutName.str(); 1981 1982 llvm::ArrayType *VBTableType = 1983 llvm::ArrayType::get(CGM.IntTy, 1 + VBT.ObjectWithVPtr->getNumVBases()); 1984 1985 assert(!CGM.getModule().getNamedGlobal(Name) && 1986 "vbtable with this name already exists: mangling bug?"); 1987 llvm::GlobalVariable *GV = 1988 CGM.CreateOrReplaceCXXRuntimeVariable(Name, VBTableType, Linkage); 1989 GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 1990 1991 if (RD->hasAttr<DLLImportAttr>()) 1992 GV->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass); 1993 else if (RD->hasAttr<DLLExportAttr>()) 1994 GV->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass); 1995 1996 if (!GV->hasExternalLinkage()) 1997 emitVBTableDefinition(VBT, RD, GV); 1998 1999 return GV; 2000 } 2001 2002 void MicrosoftCXXABI::emitVBTableDefinition(const VPtrInfo &VBT, 2003 const CXXRecordDecl *RD, 2004 llvm::GlobalVariable *GV) const { 2005 const CXXRecordDecl *ObjectWithVPtr = VBT.ObjectWithVPtr; 2006 2007 assert(RD->getNumVBases() && ObjectWithVPtr->getNumVBases() && 2008 "should only emit vbtables for classes with vbtables"); 2009 2010 const ASTRecordLayout &BaseLayout = 2011 getContext().getASTRecordLayout(VBT.IntroducingObject); 2012 const ASTRecordLayout &DerivedLayout = getContext().getASTRecordLayout(RD); 2013 2014 SmallVector<llvm::Constant *, 4> Offsets(1 + ObjectWithVPtr->getNumVBases(), 2015 nullptr); 2016 2017 // The offset from ObjectWithVPtr's vbptr to itself always leads. 2018 CharUnits VBPtrOffset = BaseLayout.getVBPtrOffset(); 2019 Offsets[0] = llvm::ConstantInt::get(CGM.IntTy, -VBPtrOffset.getQuantity()); 2020 2021 MicrosoftVTableContext &Context = CGM.getMicrosoftVTableContext(); 2022 for (const auto &I : ObjectWithVPtr->vbases()) { 2023 const CXXRecordDecl *VBase = I.getType()->getAsCXXRecordDecl(); 2024 CharUnits Offset = DerivedLayout.getVBaseClassOffset(VBase); 2025 assert(!Offset.isNegative()); 2026 2027 // Make it relative to the subobject vbptr. 2028 CharUnits CompleteVBPtrOffset = VBT.NonVirtualOffset + VBPtrOffset; 2029 if (VBT.getVBaseWithVPtr()) 2030 CompleteVBPtrOffset += 2031 DerivedLayout.getVBaseClassOffset(VBT.getVBaseWithVPtr()); 2032 Offset -= CompleteVBPtrOffset; 2033 2034 unsigned VBIndex = Context.getVBTableIndex(ObjectWithVPtr, VBase); 2035 assert(Offsets[VBIndex] == nullptr && "The same vbindex seen twice?"); 2036 Offsets[VBIndex] = llvm::ConstantInt::get(CGM.IntTy, Offset.getQuantity()); 2037 } 2038 2039 assert(Offsets.size() == 2040 cast<llvm::ArrayType>(cast<llvm::PointerType>(GV->getType()) 2041 ->getElementType())->getNumElements()); 2042 llvm::ArrayType *VBTableType = 2043 llvm::ArrayType::get(CGM.IntTy, Offsets.size()); 2044 llvm::Constant *Init = llvm::ConstantArray::get(VBTableType, Offsets); 2045 GV->setInitializer(Init); 2046 2047 if (RD->hasAttr<DLLImportAttr>()) 2048 GV->setLinkage(llvm::GlobalVariable::AvailableExternallyLinkage); 2049 } 2050 2051 llvm::Value *MicrosoftCXXABI::performThisAdjustment(CodeGenFunction &CGF, 2052 Address This, 2053 const ThisAdjustment &TA) { 2054 if (TA.isEmpty()) 2055 return This.getPointer(); 2056 2057 This = CGF.Builder.CreateElementBitCast(This, CGF.Int8Ty); 2058 2059 llvm::Value *V; 2060 if (TA.Virtual.isEmpty()) { 2061 V = This.getPointer(); 2062 } else { 2063 assert(TA.Virtual.Microsoft.VtordispOffset < 0); 2064 // Adjust the this argument based on the vtordisp value. 2065 Address VtorDispPtr = 2066 CGF.Builder.CreateConstInBoundsByteGEP(This, 2067 CharUnits::fromQuantity(TA.Virtual.Microsoft.VtordispOffset)); 2068 VtorDispPtr = CGF.Builder.CreateElementBitCast(VtorDispPtr, CGF.Int32Ty); 2069 llvm::Value *VtorDisp = CGF.Builder.CreateLoad(VtorDispPtr, "vtordisp"); 2070 V = CGF.Builder.CreateGEP(This.getPointer(), 2071 CGF.Builder.CreateNeg(VtorDisp)); 2072 2073 // Unfortunately, having applied the vtordisp means that we no 2074 // longer really have a known alignment for the vbptr step. 2075 // We'll assume the vbptr is pointer-aligned. 2076 2077 if (TA.Virtual.Microsoft.VBPtrOffset) { 2078 // If the final overrider is defined in a virtual base other than the one 2079 // that holds the vfptr, we have to use a vtordispex thunk which looks up 2080 // the vbtable of the derived class. 2081 assert(TA.Virtual.Microsoft.VBPtrOffset > 0); 2082 assert(TA.Virtual.Microsoft.VBOffsetOffset >= 0); 2083 llvm::Value *VBPtr; 2084 llvm::Value *VBaseOffset = 2085 GetVBaseOffsetFromVBPtr(CGF, Address(V, CGF.getPointerAlign()), 2086 -TA.Virtual.Microsoft.VBPtrOffset, 2087 TA.Virtual.Microsoft.VBOffsetOffset, &VBPtr); 2088 V = CGF.Builder.CreateInBoundsGEP(VBPtr, VBaseOffset); 2089 } 2090 } 2091 2092 if (TA.NonVirtual) { 2093 // Non-virtual adjustment might result in a pointer outside the allocated 2094 // object, e.g. if the final overrider class is laid out after the virtual 2095 // base that declares a method in the most derived class. 2096 V = CGF.Builder.CreateConstGEP1_32(V, TA.NonVirtual); 2097 } 2098 2099 // Don't need to bitcast back, the call CodeGen will handle this. 2100 return V; 2101 } 2102 2103 llvm::Value * 2104 MicrosoftCXXABI::performReturnAdjustment(CodeGenFunction &CGF, Address Ret, 2105 const ReturnAdjustment &RA) { 2106 if (RA.isEmpty()) 2107 return Ret.getPointer(); 2108 2109 auto OrigTy = Ret.getType(); 2110 Ret = CGF.Builder.CreateElementBitCast(Ret, CGF.Int8Ty); 2111 2112 llvm::Value *V = Ret.getPointer(); 2113 if (RA.Virtual.Microsoft.VBIndex) { 2114 assert(RA.Virtual.Microsoft.VBIndex > 0); 2115 int32_t IntSize = CGF.getIntSize().getQuantity(); 2116 llvm::Value *VBPtr; 2117 llvm::Value *VBaseOffset = 2118 GetVBaseOffsetFromVBPtr(CGF, Ret, RA.Virtual.Microsoft.VBPtrOffset, 2119 IntSize * RA.Virtual.Microsoft.VBIndex, &VBPtr); 2120 V = CGF.Builder.CreateInBoundsGEP(VBPtr, VBaseOffset); 2121 } 2122 2123 if (RA.NonVirtual) 2124 V = CGF.Builder.CreateConstInBoundsGEP1_32(CGF.Int8Ty, V, RA.NonVirtual); 2125 2126 // Cast back to the original type. 2127 return CGF.Builder.CreateBitCast(V, OrigTy); 2128 } 2129 2130 bool MicrosoftCXXABI::requiresArrayCookie(const CXXDeleteExpr *expr, 2131 QualType elementType) { 2132 // Microsoft seems to completely ignore the possibility of a 2133 // two-argument usual deallocation function. 2134 return elementType.isDestructedType(); 2135 } 2136 2137 bool MicrosoftCXXABI::requiresArrayCookie(const CXXNewExpr *expr) { 2138 // Microsoft seems to completely ignore the possibility of a 2139 // two-argument usual deallocation function. 2140 return expr->getAllocatedType().isDestructedType(); 2141 } 2142 2143 CharUnits MicrosoftCXXABI::getArrayCookieSizeImpl(QualType type) { 2144 // The array cookie is always a size_t; we then pad that out to the 2145 // alignment of the element type. 2146 ASTContext &Ctx = getContext(); 2147 return std::max(Ctx.getTypeSizeInChars(Ctx.getSizeType()), 2148 Ctx.getTypeAlignInChars(type)); 2149 } 2150 2151 llvm::Value *MicrosoftCXXABI::readArrayCookieImpl(CodeGenFunction &CGF, 2152 Address allocPtr, 2153 CharUnits cookieSize) { 2154 Address numElementsPtr = 2155 CGF.Builder.CreateElementBitCast(allocPtr, CGF.SizeTy); 2156 return CGF.Builder.CreateLoad(numElementsPtr); 2157 } 2158 2159 Address MicrosoftCXXABI::InitializeArrayCookie(CodeGenFunction &CGF, 2160 Address newPtr, 2161 llvm::Value *numElements, 2162 const CXXNewExpr *expr, 2163 QualType elementType) { 2164 assert(requiresArrayCookie(expr)); 2165 2166 // The size of the cookie. 2167 CharUnits cookieSize = getArrayCookieSizeImpl(elementType); 2168 2169 // Compute an offset to the cookie. 2170 Address cookiePtr = newPtr; 2171 2172 // Write the number of elements into the appropriate slot. 2173 Address numElementsPtr 2174 = CGF.Builder.CreateElementBitCast(cookiePtr, CGF.SizeTy); 2175 CGF.Builder.CreateStore(numElements, numElementsPtr); 2176 2177 // Finally, compute a pointer to the actual data buffer by skipping 2178 // over the cookie completely. 2179 return CGF.Builder.CreateConstInBoundsByteGEP(newPtr, cookieSize); 2180 } 2181 2182 static void emitGlobalDtorWithTLRegDtor(CodeGenFunction &CGF, const VarDecl &VD, 2183 llvm::Constant *Dtor, 2184 llvm::Constant *Addr) { 2185 // Create a function which calls the destructor. 2186 llvm::Constant *DtorStub = CGF.createAtExitStub(VD, Dtor, Addr); 2187 2188 // extern "C" int __tlregdtor(void (*f)(void)); 2189 llvm::FunctionType *TLRegDtorTy = llvm::FunctionType::get( 2190 CGF.IntTy, DtorStub->getType(), /*IsVarArg=*/false); 2191 2192 llvm::Constant *TLRegDtor = 2193 CGF.CGM.CreateRuntimeFunction(TLRegDtorTy, "__tlregdtor"); 2194 if (llvm::Function *TLRegDtorFn = dyn_cast<llvm::Function>(TLRegDtor)) 2195 TLRegDtorFn->setDoesNotThrow(); 2196 2197 CGF.EmitNounwindRuntimeCall(TLRegDtor, DtorStub); 2198 } 2199 2200 void MicrosoftCXXABI::registerGlobalDtor(CodeGenFunction &CGF, const VarDecl &D, 2201 llvm::Constant *Dtor, 2202 llvm::Constant *Addr) { 2203 if (D.getTLSKind()) 2204 return emitGlobalDtorWithTLRegDtor(CGF, D, Dtor, Addr); 2205 2206 // The default behavior is to use atexit. 2207 CGF.registerGlobalDtorWithAtExit(D, Dtor, Addr); 2208 } 2209 2210 void MicrosoftCXXABI::EmitThreadLocalInitFuncs( 2211 CodeGenModule &CGM, ArrayRef<const VarDecl *> CXXThreadLocals, 2212 ArrayRef<llvm::Function *> CXXThreadLocalInits, 2213 ArrayRef<const VarDecl *> CXXThreadLocalInitVars) { 2214 // This will create a GV in the .CRT$XDU section. It will point to our 2215 // initialization function. The CRT will call all of these function 2216 // pointers at start-up time and, eventually, at thread-creation time. 2217 auto AddToXDU = [&CGM](llvm::Function *InitFunc) { 2218 llvm::GlobalVariable *InitFuncPtr = new llvm::GlobalVariable( 2219 CGM.getModule(), InitFunc->getType(), /*IsConstant=*/true, 2220 llvm::GlobalVariable::InternalLinkage, InitFunc, 2221 Twine(InitFunc->getName(), "$initializer$")); 2222 InitFuncPtr->setSection(".CRT$XDU"); 2223 // This variable has discardable linkage, we have to add it to @llvm.used to 2224 // ensure it won't get discarded. 2225 CGM.addUsedGlobal(InitFuncPtr); 2226 return InitFuncPtr; 2227 }; 2228 2229 std::vector<llvm::Function *> NonComdatInits; 2230 for (size_t I = 0, E = CXXThreadLocalInitVars.size(); I != E; ++I) { 2231 llvm::GlobalVariable *GV = cast<llvm::GlobalVariable>( 2232 CGM.GetGlobalValue(CGM.getMangledName(CXXThreadLocalInitVars[I]))); 2233 llvm::Function *F = CXXThreadLocalInits[I]; 2234 2235 // If the GV is already in a comdat group, then we have to join it. 2236 if (llvm::Comdat *C = GV->getComdat()) 2237 AddToXDU(F)->setComdat(C); 2238 else 2239 NonComdatInits.push_back(F); 2240 } 2241 2242 if (!NonComdatInits.empty()) { 2243 llvm::FunctionType *FTy = 2244 llvm::FunctionType::get(CGM.VoidTy, /*isVarArg=*/false); 2245 llvm::Function *InitFunc = CGM.CreateGlobalInitOrDestructFunction( 2246 FTy, "__tls_init", CGM.getTypes().arrangeNullaryFunction(), 2247 SourceLocation(), /*TLS=*/true); 2248 CodeGenFunction(CGM).GenerateCXXGlobalInitFunc(InitFunc, NonComdatInits); 2249 2250 AddToXDU(InitFunc); 2251 } 2252 } 2253 2254 LValue MicrosoftCXXABI::EmitThreadLocalVarDeclLValue(CodeGenFunction &CGF, 2255 const VarDecl *VD, 2256 QualType LValType) { 2257 CGF.CGM.ErrorUnsupported(VD, "thread wrappers"); 2258 return LValue(); 2259 } 2260 2261 static ConstantAddress getInitThreadEpochPtr(CodeGenModule &CGM) { 2262 StringRef VarName("_Init_thread_epoch"); 2263 CharUnits Align = CGM.getIntAlign(); 2264 if (auto *GV = CGM.getModule().getNamedGlobal(VarName)) 2265 return ConstantAddress(GV, Align); 2266 auto *GV = new llvm::GlobalVariable( 2267 CGM.getModule(), CGM.IntTy, 2268 /*Constant=*/false, llvm::GlobalVariable::ExternalLinkage, 2269 /*Initializer=*/nullptr, VarName, 2270 /*InsertBefore=*/nullptr, llvm::GlobalVariable::GeneralDynamicTLSModel); 2271 GV->setAlignment(Align.getQuantity()); 2272 return ConstantAddress(GV, Align); 2273 } 2274 2275 static llvm::Constant *getInitThreadHeaderFn(CodeGenModule &CGM) { 2276 llvm::FunctionType *FTy = 2277 llvm::FunctionType::get(llvm::Type::getVoidTy(CGM.getLLVMContext()), 2278 CGM.IntTy->getPointerTo(), /*isVarArg=*/false); 2279 return CGM.CreateRuntimeFunction( 2280 FTy, "_Init_thread_header", 2281 llvm::AttributeSet::get(CGM.getLLVMContext(), 2282 llvm::AttributeSet::FunctionIndex, 2283 llvm::Attribute::NoUnwind)); 2284 } 2285 2286 static llvm::Constant *getInitThreadFooterFn(CodeGenModule &CGM) { 2287 llvm::FunctionType *FTy = 2288 llvm::FunctionType::get(llvm::Type::getVoidTy(CGM.getLLVMContext()), 2289 CGM.IntTy->getPointerTo(), /*isVarArg=*/false); 2290 return CGM.CreateRuntimeFunction( 2291 FTy, "_Init_thread_footer", 2292 llvm::AttributeSet::get(CGM.getLLVMContext(), 2293 llvm::AttributeSet::FunctionIndex, 2294 llvm::Attribute::NoUnwind)); 2295 } 2296 2297 static llvm::Constant *getInitThreadAbortFn(CodeGenModule &CGM) { 2298 llvm::FunctionType *FTy = 2299 llvm::FunctionType::get(llvm::Type::getVoidTy(CGM.getLLVMContext()), 2300 CGM.IntTy->getPointerTo(), /*isVarArg=*/false); 2301 return CGM.CreateRuntimeFunction( 2302 FTy, "_Init_thread_abort", 2303 llvm::AttributeSet::get(CGM.getLLVMContext(), 2304 llvm::AttributeSet::FunctionIndex, 2305 llvm::Attribute::NoUnwind)); 2306 } 2307 2308 namespace { 2309 struct ResetGuardBit final : EHScopeStack::Cleanup { 2310 Address Guard; 2311 unsigned GuardNum; 2312 ResetGuardBit(Address Guard, unsigned GuardNum) 2313 : Guard(Guard), GuardNum(GuardNum) {} 2314 2315 void Emit(CodeGenFunction &CGF, Flags flags) override { 2316 // Reset the bit in the mask so that the static variable may be 2317 // reinitialized. 2318 CGBuilderTy &Builder = CGF.Builder; 2319 llvm::LoadInst *LI = Builder.CreateLoad(Guard); 2320 llvm::ConstantInt *Mask = 2321 llvm::ConstantInt::get(CGF.IntTy, ~(1ULL << GuardNum)); 2322 Builder.CreateStore(Builder.CreateAnd(LI, Mask), Guard); 2323 } 2324 }; 2325 2326 struct CallInitThreadAbort final : EHScopeStack::Cleanup { 2327 llvm::Value *Guard; 2328 CallInitThreadAbort(Address Guard) : Guard(Guard.getPointer()) {} 2329 2330 void Emit(CodeGenFunction &CGF, Flags flags) override { 2331 // Calling _Init_thread_abort will reset the guard's state. 2332 CGF.EmitNounwindRuntimeCall(getInitThreadAbortFn(CGF.CGM), Guard); 2333 } 2334 }; 2335 } 2336 2337 void MicrosoftCXXABI::EmitGuardedInit(CodeGenFunction &CGF, const VarDecl &D, 2338 llvm::GlobalVariable *GV, 2339 bool PerformInit) { 2340 // MSVC only uses guards for static locals. 2341 if (!D.isStaticLocal()) { 2342 assert(GV->hasWeakLinkage() || GV->hasLinkOnceLinkage()); 2343 // GlobalOpt is allowed to discard the initializer, so use linkonce_odr. 2344 llvm::Function *F = CGF.CurFn; 2345 F->setLinkage(llvm::GlobalValue::LinkOnceODRLinkage); 2346 F->setComdat(CGM.getModule().getOrInsertComdat(F->getName())); 2347 CGF.EmitCXXGlobalVarDeclInit(D, GV, PerformInit); 2348 return; 2349 } 2350 2351 bool ThreadlocalStatic = D.getTLSKind(); 2352 bool ThreadsafeStatic = getContext().getLangOpts().ThreadsafeStatics; 2353 2354 // Thread-safe static variables which aren't thread-specific have a 2355 // per-variable guard. 2356 bool HasPerVariableGuard = ThreadsafeStatic && !ThreadlocalStatic; 2357 2358 CGBuilderTy &Builder = CGF.Builder; 2359 llvm::IntegerType *GuardTy = CGF.Int32Ty; 2360 llvm::ConstantInt *Zero = llvm::ConstantInt::get(GuardTy, 0); 2361 CharUnits GuardAlign = CharUnits::fromQuantity(4); 2362 2363 // Get the guard variable for this function if we have one already. 2364 GuardInfo *GI = nullptr; 2365 if (ThreadlocalStatic) 2366 GI = &ThreadLocalGuardVariableMap[D.getDeclContext()]; 2367 else if (!ThreadsafeStatic) 2368 GI = &GuardVariableMap[D.getDeclContext()]; 2369 2370 llvm::GlobalVariable *GuardVar = GI ? GI->Guard : nullptr; 2371 unsigned GuardNum; 2372 if (D.isExternallyVisible()) { 2373 // Externally visible variables have to be numbered in Sema to properly 2374 // handle unreachable VarDecls. 2375 GuardNum = getContext().getStaticLocalNumber(&D); 2376 assert(GuardNum > 0); 2377 GuardNum--; 2378 } else if (HasPerVariableGuard) { 2379 GuardNum = ThreadSafeGuardNumMap[D.getDeclContext()]++; 2380 } else { 2381 // Non-externally visible variables are numbered here in CodeGen. 2382 GuardNum = GI->BitIndex++; 2383 } 2384 2385 if (!HasPerVariableGuard && GuardNum >= 32) { 2386 if (D.isExternallyVisible()) 2387 ErrorUnsupportedABI(CGF, "more than 32 guarded initializations"); 2388 GuardNum %= 32; 2389 GuardVar = nullptr; 2390 } 2391 2392 if (!GuardVar) { 2393 // Mangle the name for the guard. 2394 SmallString<256> GuardName; 2395 { 2396 llvm::raw_svector_ostream Out(GuardName); 2397 if (HasPerVariableGuard) 2398 getMangleContext().mangleThreadSafeStaticGuardVariable(&D, GuardNum, 2399 Out); 2400 else 2401 getMangleContext().mangleStaticGuardVariable(&D, Out); 2402 } 2403 2404 // Create the guard variable with a zero-initializer. Just absorb linkage, 2405 // visibility and dll storage class from the guarded variable. 2406 GuardVar = 2407 new llvm::GlobalVariable(CGM.getModule(), GuardTy, /*isConstant=*/false, 2408 GV->getLinkage(), Zero, GuardName.str()); 2409 GuardVar->setVisibility(GV->getVisibility()); 2410 GuardVar->setDLLStorageClass(GV->getDLLStorageClass()); 2411 GuardVar->setAlignment(GuardAlign.getQuantity()); 2412 if (GuardVar->isWeakForLinker()) 2413 GuardVar->setComdat( 2414 CGM.getModule().getOrInsertComdat(GuardVar->getName())); 2415 if (D.getTLSKind()) 2416 GuardVar->setThreadLocal(true); 2417 if (GI && !HasPerVariableGuard) 2418 GI->Guard = GuardVar; 2419 } 2420 2421 ConstantAddress GuardAddr(GuardVar, GuardAlign); 2422 2423 assert(GuardVar->getLinkage() == GV->getLinkage() && 2424 "static local from the same function had different linkage"); 2425 2426 if (!HasPerVariableGuard) { 2427 // Pseudo code for the test: 2428 // if (!(GuardVar & MyGuardBit)) { 2429 // GuardVar |= MyGuardBit; 2430 // ... initialize the object ...; 2431 // } 2432 2433 // Test our bit from the guard variable. 2434 llvm::ConstantInt *Bit = llvm::ConstantInt::get(GuardTy, 1ULL << GuardNum); 2435 llvm::LoadInst *LI = Builder.CreateLoad(GuardAddr); 2436 llvm::Value *IsInitialized = 2437 Builder.CreateICmpNE(Builder.CreateAnd(LI, Bit), Zero); 2438 llvm::BasicBlock *InitBlock = CGF.createBasicBlock("init"); 2439 llvm::BasicBlock *EndBlock = CGF.createBasicBlock("init.end"); 2440 Builder.CreateCondBr(IsInitialized, EndBlock, InitBlock); 2441 2442 // Set our bit in the guard variable and emit the initializer and add a global 2443 // destructor if appropriate. 2444 CGF.EmitBlock(InitBlock); 2445 Builder.CreateStore(Builder.CreateOr(LI, Bit), GuardAddr); 2446 CGF.EHStack.pushCleanup<ResetGuardBit>(EHCleanup, GuardAddr, GuardNum); 2447 CGF.EmitCXXGlobalVarDeclInit(D, GV, PerformInit); 2448 CGF.PopCleanupBlock(); 2449 Builder.CreateBr(EndBlock); 2450 2451 // Continue. 2452 CGF.EmitBlock(EndBlock); 2453 } else { 2454 // Pseudo code for the test: 2455 // if (TSS > _Init_thread_epoch) { 2456 // _Init_thread_header(&TSS); 2457 // if (TSS == -1) { 2458 // ... initialize the object ...; 2459 // _Init_thread_footer(&TSS); 2460 // } 2461 // } 2462 // 2463 // The algorithm is almost identical to what can be found in the appendix 2464 // found in N2325. 2465 2466 // This BasicBLock determines whether or not we have any work to do. 2467 llvm::LoadInst *FirstGuardLoad = Builder.CreateLoad(GuardAddr); 2468 FirstGuardLoad->setOrdering(llvm::AtomicOrdering::Unordered); 2469 llvm::LoadInst *InitThreadEpoch = 2470 Builder.CreateLoad(getInitThreadEpochPtr(CGM)); 2471 llvm::Value *IsUninitialized = 2472 Builder.CreateICmpSGT(FirstGuardLoad, InitThreadEpoch); 2473 llvm::BasicBlock *AttemptInitBlock = CGF.createBasicBlock("init.attempt"); 2474 llvm::BasicBlock *EndBlock = CGF.createBasicBlock("init.end"); 2475 Builder.CreateCondBr(IsUninitialized, AttemptInitBlock, EndBlock); 2476 2477 // This BasicBlock attempts to determine whether or not this thread is 2478 // responsible for doing the initialization. 2479 CGF.EmitBlock(AttemptInitBlock); 2480 CGF.EmitNounwindRuntimeCall(getInitThreadHeaderFn(CGM), 2481 GuardAddr.getPointer()); 2482 llvm::LoadInst *SecondGuardLoad = Builder.CreateLoad(GuardAddr); 2483 SecondGuardLoad->setOrdering(llvm::AtomicOrdering::Unordered); 2484 llvm::Value *ShouldDoInit = 2485 Builder.CreateICmpEQ(SecondGuardLoad, getAllOnesInt()); 2486 llvm::BasicBlock *InitBlock = CGF.createBasicBlock("init"); 2487 Builder.CreateCondBr(ShouldDoInit, InitBlock, EndBlock); 2488 2489 // Ok, we ended up getting selected as the initializing thread. 2490 CGF.EmitBlock(InitBlock); 2491 CGF.EHStack.pushCleanup<CallInitThreadAbort>(EHCleanup, GuardAddr); 2492 CGF.EmitCXXGlobalVarDeclInit(D, GV, PerformInit); 2493 CGF.PopCleanupBlock(); 2494 CGF.EmitNounwindRuntimeCall(getInitThreadFooterFn(CGM), 2495 GuardAddr.getPointer()); 2496 Builder.CreateBr(EndBlock); 2497 2498 CGF.EmitBlock(EndBlock); 2499 } 2500 } 2501 2502 bool MicrosoftCXXABI::isZeroInitializable(const MemberPointerType *MPT) { 2503 // Null-ness for function memptrs only depends on the first field, which is 2504 // the function pointer. The rest don't matter, so we can zero initialize. 2505 if (MPT->isMemberFunctionPointer()) 2506 return true; 2507 2508 // The virtual base adjustment field is always -1 for null, so if we have one 2509 // we can't zero initialize. The field offset is sometimes also -1 if 0 is a 2510 // valid field offset. 2511 const CXXRecordDecl *RD = MPT->getMostRecentCXXRecordDecl(); 2512 MSInheritanceAttr::Spelling Inheritance = RD->getMSInheritanceModel(); 2513 return (!MSInheritanceAttr::hasVBTableOffsetField(Inheritance) && 2514 RD->nullFieldOffsetIsZero()); 2515 } 2516 2517 llvm::Type * 2518 MicrosoftCXXABI::ConvertMemberPointerType(const MemberPointerType *MPT) { 2519 const CXXRecordDecl *RD = MPT->getMostRecentCXXRecordDecl(); 2520 MSInheritanceAttr::Spelling Inheritance = RD->getMSInheritanceModel(); 2521 llvm::SmallVector<llvm::Type *, 4> fields; 2522 if (MPT->isMemberFunctionPointer()) 2523 fields.push_back(CGM.VoidPtrTy); // FunctionPointerOrVirtualThunk 2524 else 2525 fields.push_back(CGM.IntTy); // FieldOffset 2526 2527 if (MSInheritanceAttr::hasNVOffsetField(MPT->isMemberFunctionPointer(), 2528 Inheritance)) 2529 fields.push_back(CGM.IntTy); 2530 if (MSInheritanceAttr::hasVBPtrOffsetField(Inheritance)) 2531 fields.push_back(CGM.IntTy); 2532 if (MSInheritanceAttr::hasVBTableOffsetField(Inheritance)) 2533 fields.push_back(CGM.IntTy); // VirtualBaseAdjustmentOffset 2534 2535 if (fields.size() == 1) 2536 return fields[0]; 2537 return llvm::StructType::get(CGM.getLLVMContext(), fields); 2538 } 2539 2540 void MicrosoftCXXABI:: 2541 GetNullMemberPointerFields(const MemberPointerType *MPT, 2542 llvm::SmallVectorImpl<llvm::Constant *> &fields) { 2543 assert(fields.empty()); 2544 const CXXRecordDecl *RD = MPT->getMostRecentCXXRecordDecl(); 2545 MSInheritanceAttr::Spelling Inheritance = RD->getMSInheritanceModel(); 2546 if (MPT->isMemberFunctionPointer()) { 2547 // FunctionPointerOrVirtualThunk 2548 fields.push_back(llvm::Constant::getNullValue(CGM.VoidPtrTy)); 2549 } else { 2550 if (RD->nullFieldOffsetIsZero()) 2551 fields.push_back(getZeroInt()); // FieldOffset 2552 else 2553 fields.push_back(getAllOnesInt()); // FieldOffset 2554 } 2555 2556 if (MSInheritanceAttr::hasNVOffsetField(MPT->isMemberFunctionPointer(), 2557 Inheritance)) 2558 fields.push_back(getZeroInt()); 2559 if (MSInheritanceAttr::hasVBPtrOffsetField(Inheritance)) 2560 fields.push_back(getZeroInt()); 2561 if (MSInheritanceAttr::hasVBTableOffsetField(Inheritance)) 2562 fields.push_back(getAllOnesInt()); 2563 } 2564 2565 llvm::Constant * 2566 MicrosoftCXXABI::EmitNullMemberPointer(const MemberPointerType *MPT) { 2567 llvm::SmallVector<llvm::Constant *, 4> fields; 2568 GetNullMemberPointerFields(MPT, fields); 2569 if (fields.size() == 1) 2570 return fields[0]; 2571 llvm::Constant *Res = llvm::ConstantStruct::getAnon(fields); 2572 assert(Res->getType() == ConvertMemberPointerType(MPT)); 2573 return Res; 2574 } 2575 2576 llvm::Constant * 2577 MicrosoftCXXABI::EmitFullMemberPointer(llvm::Constant *FirstField, 2578 bool IsMemberFunction, 2579 const CXXRecordDecl *RD, 2580 CharUnits NonVirtualBaseAdjustment, 2581 unsigned VBTableIndex) { 2582 MSInheritanceAttr::Spelling Inheritance = RD->getMSInheritanceModel(); 2583 2584 // Single inheritance class member pointer are represented as scalars instead 2585 // of aggregates. 2586 if (MSInheritanceAttr::hasOnlyOneField(IsMemberFunction, Inheritance)) 2587 return FirstField; 2588 2589 llvm::SmallVector<llvm::Constant *, 4> fields; 2590 fields.push_back(FirstField); 2591 2592 if (MSInheritanceAttr::hasNVOffsetField(IsMemberFunction, Inheritance)) 2593 fields.push_back(llvm::ConstantInt::get( 2594 CGM.IntTy, NonVirtualBaseAdjustment.getQuantity())); 2595 2596 if (MSInheritanceAttr::hasVBPtrOffsetField(Inheritance)) { 2597 CharUnits Offs = CharUnits::Zero(); 2598 if (VBTableIndex) 2599 Offs = getContext().getASTRecordLayout(RD).getVBPtrOffset(); 2600 fields.push_back(llvm::ConstantInt::get(CGM.IntTy, Offs.getQuantity())); 2601 } 2602 2603 // The rest of the fields are adjusted by conversions to a more derived class. 2604 if (MSInheritanceAttr::hasVBTableOffsetField(Inheritance)) 2605 fields.push_back(llvm::ConstantInt::get(CGM.IntTy, VBTableIndex)); 2606 2607 return llvm::ConstantStruct::getAnon(fields); 2608 } 2609 2610 llvm::Constant * 2611 MicrosoftCXXABI::EmitMemberDataPointer(const MemberPointerType *MPT, 2612 CharUnits offset) { 2613 const CXXRecordDecl *RD = MPT->getMostRecentCXXRecordDecl(); 2614 if (RD->getMSInheritanceModel() == 2615 MSInheritanceAttr::Keyword_virtual_inheritance) 2616 offset -= getContext().getOffsetOfBaseWithVBPtr(RD); 2617 llvm::Constant *FirstField = 2618 llvm::ConstantInt::get(CGM.IntTy, offset.getQuantity()); 2619 return EmitFullMemberPointer(FirstField, /*IsMemberFunction=*/false, RD, 2620 CharUnits::Zero(), /*VBTableIndex=*/0); 2621 } 2622 2623 llvm::Constant *MicrosoftCXXABI::EmitMemberPointer(const APValue &MP, 2624 QualType MPType) { 2625 const MemberPointerType *DstTy = MPType->castAs<MemberPointerType>(); 2626 const ValueDecl *MPD = MP.getMemberPointerDecl(); 2627 if (!MPD) 2628 return EmitNullMemberPointer(DstTy); 2629 2630 ASTContext &Ctx = getContext(); 2631 ArrayRef<const CXXRecordDecl *> MemberPointerPath = MP.getMemberPointerPath(); 2632 2633 llvm::Constant *C; 2634 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MPD)) { 2635 C = EmitMemberFunctionPointer(MD); 2636 } else { 2637 CharUnits FieldOffset = Ctx.toCharUnitsFromBits(Ctx.getFieldOffset(MPD)); 2638 C = EmitMemberDataPointer(DstTy, FieldOffset); 2639 } 2640 2641 if (!MemberPointerPath.empty()) { 2642 const CXXRecordDecl *SrcRD = cast<CXXRecordDecl>(MPD->getDeclContext()); 2643 const Type *SrcRecTy = Ctx.getTypeDeclType(SrcRD).getTypePtr(); 2644 const MemberPointerType *SrcTy = 2645 Ctx.getMemberPointerType(DstTy->getPointeeType(), SrcRecTy) 2646 ->castAs<MemberPointerType>(); 2647 2648 bool DerivedMember = MP.isMemberPointerToDerivedMember(); 2649 SmallVector<const CXXBaseSpecifier *, 4> DerivedToBasePath; 2650 const CXXRecordDecl *PrevRD = SrcRD; 2651 for (const CXXRecordDecl *PathElem : MemberPointerPath) { 2652 const CXXRecordDecl *Base = nullptr; 2653 const CXXRecordDecl *Derived = nullptr; 2654 if (DerivedMember) { 2655 Base = PathElem; 2656 Derived = PrevRD; 2657 } else { 2658 Base = PrevRD; 2659 Derived = PathElem; 2660 } 2661 for (const CXXBaseSpecifier &BS : Derived->bases()) 2662 if (BS.getType()->getAsCXXRecordDecl()->getCanonicalDecl() == 2663 Base->getCanonicalDecl()) 2664 DerivedToBasePath.push_back(&BS); 2665 PrevRD = PathElem; 2666 } 2667 assert(DerivedToBasePath.size() == MemberPointerPath.size()); 2668 2669 CastKind CK = DerivedMember ? CK_DerivedToBaseMemberPointer 2670 : CK_BaseToDerivedMemberPointer; 2671 C = EmitMemberPointerConversion(SrcTy, DstTy, CK, DerivedToBasePath.begin(), 2672 DerivedToBasePath.end(), C); 2673 } 2674 return C; 2675 } 2676 2677 llvm::Constant * 2678 MicrosoftCXXABI::EmitMemberFunctionPointer(const CXXMethodDecl *MD) { 2679 assert(MD->isInstance() && "Member function must not be static!"); 2680 2681 MD = MD->getCanonicalDecl(); 2682 CharUnits NonVirtualBaseAdjustment = CharUnits::Zero(); 2683 const CXXRecordDecl *RD = MD->getParent()->getMostRecentDecl(); 2684 CodeGenTypes &Types = CGM.getTypes(); 2685 2686 unsigned VBTableIndex = 0; 2687 llvm::Constant *FirstField; 2688 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>(); 2689 if (!MD->isVirtual()) { 2690 llvm::Type *Ty; 2691 // Check whether the function has a computable LLVM signature. 2692 if (Types.isFuncTypeConvertible(FPT)) { 2693 // The function has a computable LLVM signature; use the correct type. 2694 Ty = Types.GetFunctionType(Types.arrangeCXXMethodDeclaration(MD)); 2695 } else { 2696 // Use an arbitrary non-function type to tell GetAddrOfFunction that the 2697 // function type is incomplete. 2698 Ty = CGM.PtrDiffTy; 2699 } 2700 FirstField = CGM.GetAddrOfFunction(MD, Ty); 2701 } else { 2702 auto &VTableContext = CGM.getMicrosoftVTableContext(); 2703 MicrosoftVTableContext::MethodVFTableLocation ML = 2704 VTableContext.getMethodVFTableLocation(MD); 2705 FirstField = EmitVirtualMemPtrThunk(MD, ML); 2706 // Include the vfptr adjustment if the method is in a non-primary vftable. 2707 NonVirtualBaseAdjustment += ML.VFPtrOffset; 2708 if (ML.VBase) 2709 VBTableIndex = VTableContext.getVBTableIndex(RD, ML.VBase) * 4; 2710 } 2711 2712 if (VBTableIndex == 0 && 2713 RD->getMSInheritanceModel() == 2714 MSInheritanceAttr::Keyword_virtual_inheritance) 2715 NonVirtualBaseAdjustment -= getContext().getOffsetOfBaseWithVBPtr(RD); 2716 2717 // The rest of the fields are common with data member pointers. 2718 FirstField = llvm::ConstantExpr::getBitCast(FirstField, CGM.VoidPtrTy); 2719 return EmitFullMemberPointer(FirstField, /*IsMemberFunction=*/true, RD, 2720 NonVirtualBaseAdjustment, VBTableIndex); 2721 } 2722 2723 /// Member pointers are the same if they're either bitwise identical *or* both 2724 /// null. Null-ness for function members is determined by the first field, 2725 /// while for data member pointers we must compare all fields. 2726 llvm::Value * 2727 MicrosoftCXXABI::EmitMemberPointerComparison(CodeGenFunction &CGF, 2728 llvm::Value *L, 2729 llvm::Value *R, 2730 const MemberPointerType *MPT, 2731 bool Inequality) { 2732 CGBuilderTy &Builder = CGF.Builder; 2733 2734 // Handle != comparisons by switching the sense of all boolean operations. 2735 llvm::ICmpInst::Predicate Eq; 2736 llvm::Instruction::BinaryOps And, Or; 2737 if (Inequality) { 2738 Eq = llvm::ICmpInst::ICMP_NE; 2739 And = llvm::Instruction::Or; 2740 Or = llvm::Instruction::And; 2741 } else { 2742 Eq = llvm::ICmpInst::ICMP_EQ; 2743 And = llvm::Instruction::And; 2744 Or = llvm::Instruction::Or; 2745 } 2746 2747 // If this is a single field member pointer (single inheritance), this is a 2748 // single icmp. 2749 const CXXRecordDecl *RD = MPT->getMostRecentCXXRecordDecl(); 2750 MSInheritanceAttr::Spelling Inheritance = RD->getMSInheritanceModel(); 2751 if (MSInheritanceAttr::hasOnlyOneField(MPT->isMemberFunctionPointer(), 2752 Inheritance)) 2753 return Builder.CreateICmp(Eq, L, R); 2754 2755 // Compare the first field. 2756 llvm::Value *L0 = Builder.CreateExtractValue(L, 0, "lhs.0"); 2757 llvm::Value *R0 = Builder.CreateExtractValue(R, 0, "rhs.0"); 2758 llvm::Value *Cmp0 = Builder.CreateICmp(Eq, L0, R0, "memptr.cmp.first"); 2759 2760 // Compare everything other than the first field. 2761 llvm::Value *Res = nullptr; 2762 llvm::StructType *LType = cast<llvm::StructType>(L->getType()); 2763 for (unsigned I = 1, E = LType->getNumElements(); I != E; ++I) { 2764 llvm::Value *LF = Builder.CreateExtractValue(L, I); 2765 llvm::Value *RF = Builder.CreateExtractValue(R, I); 2766 llvm::Value *Cmp = Builder.CreateICmp(Eq, LF, RF, "memptr.cmp.rest"); 2767 if (Res) 2768 Res = Builder.CreateBinOp(And, Res, Cmp); 2769 else 2770 Res = Cmp; 2771 } 2772 2773 // Check if the first field is 0 if this is a function pointer. 2774 if (MPT->isMemberFunctionPointer()) { 2775 // (l1 == r1 && ...) || l0 == 0 2776 llvm::Value *Zero = llvm::Constant::getNullValue(L0->getType()); 2777 llvm::Value *IsZero = Builder.CreateICmp(Eq, L0, Zero, "memptr.cmp.iszero"); 2778 Res = Builder.CreateBinOp(Or, Res, IsZero); 2779 } 2780 2781 // Combine the comparison of the first field, which must always be true for 2782 // this comparison to succeeed. 2783 return Builder.CreateBinOp(And, Res, Cmp0, "memptr.cmp"); 2784 } 2785 2786 llvm::Value * 2787 MicrosoftCXXABI::EmitMemberPointerIsNotNull(CodeGenFunction &CGF, 2788 llvm::Value *MemPtr, 2789 const MemberPointerType *MPT) { 2790 CGBuilderTy &Builder = CGF.Builder; 2791 llvm::SmallVector<llvm::Constant *, 4> fields; 2792 // We only need one field for member functions. 2793 if (MPT->isMemberFunctionPointer()) 2794 fields.push_back(llvm::Constant::getNullValue(CGM.VoidPtrTy)); 2795 else 2796 GetNullMemberPointerFields(MPT, fields); 2797 assert(!fields.empty()); 2798 llvm::Value *FirstField = MemPtr; 2799 if (MemPtr->getType()->isStructTy()) 2800 FirstField = Builder.CreateExtractValue(MemPtr, 0); 2801 llvm::Value *Res = Builder.CreateICmpNE(FirstField, fields[0], "memptr.cmp0"); 2802 2803 // For function member pointers, we only need to test the function pointer 2804 // field. The other fields if any can be garbage. 2805 if (MPT->isMemberFunctionPointer()) 2806 return Res; 2807 2808 // Otherwise, emit a series of compares and combine the results. 2809 for (int I = 1, E = fields.size(); I < E; ++I) { 2810 llvm::Value *Field = Builder.CreateExtractValue(MemPtr, I); 2811 llvm::Value *Next = Builder.CreateICmpNE(Field, fields[I], "memptr.cmp"); 2812 Res = Builder.CreateOr(Res, Next, "memptr.tobool"); 2813 } 2814 return Res; 2815 } 2816 2817 bool MicrosoftCXXABI::MemberPointerConstantIsNull(const MemberPointerType *MPT, 2818 llvm::Constant *Val) { 2819 // Function pointers are null if the pointer in the first field is null. 2820 if (MPT->isMemberFunctionPointer()) { 2821 llvm::Constant *FirstField = Val->getType()->isStructTy() ? 2822 Val->getAggregateElement(0U) : Val; 2823 return FirstField->isNullValue(); 2824 } 2825 2826 // If it's not a function pointer and it's zero initializable, we can easily 2827 // check zero. 2828 if (isZeroInitializable(MPT) && Val->isNullValue()) 2829 return true; 2830 2831 // Otherwise, break down all the fields for comparison. Hopefully these 2832 // little Constants are reused, while a big null struct might not be. 2833 llvm::SmallVector<llvm::Constant *, 4> Fields; 2834 GetNullMemberPointerFields(MPT, Fields); 2835 if (Fields.size() == 1) { 2836 assert(Val->getType()->isIntegerTy()); 2837 return Val == Fields[0]; 2838 } 2839 2840 unsigned I, E; 2841 for (I = 0, E = Fields.size(); I != E; ++I) { 2842 if (Val->getAggregateElement(I) != Fields[I]) 2843 break; 2844 } 2845 return I == E; 2846 } 2847 2848 llvm::Value * 2849 MicrosoftCXXABI::GetVBaseOffsetFromVBPtr(CodeGenFunction &CGF, 2850 Address This, 2851 llvm::Value *VBPtrOffset, 2852 llvm::Value *VBTableOffset, 2853 llvm::Value **VBPtrOut) { 2854 CGBuilderTy &Builder = CGF.Builder; 2855 // Load the vbtable pointer from the vbptr in the instance. 2856 This = Builder.CreateElementBitCast(This, CGM.Int8Ty); 2857 llvm::Value *VBPtr = 2858 Builder.CreateInBoundsGEP(This.getPointer(), VBPtrOffset, "vbptr"); 2859 if (VBPtrOut) *VBPtrOut = VBPtr; 2860 VBPtr = Builder.CreateBitCast(VBPtr, 2861 CGM.Int32Ty->getPointerTo(0)->getPointerTo(This.getAddressSpace())); 2862 2863 CharUnits VBPtrAlign; 2864 if (auto CI = dyn_cast<llvm::ConstantInt>(VBPtrOffset)) { 2865 VBPtrAlign = This.getAlignment().alignmentAtOffset( 2866 CharUnits::fromQuantity(CI->getSExtValue())); 2867 } else { 2868 VBPtrAlign = CGF.getPointerAlign(); 2869 } 2870 2871 llvm::Value *VBTable = Builder.CreateAlignedLoad(VBPtr, VBPtrAlign, "vbtable"); 2872 2873 // Translate from byte offset to table index. It improves analyzability. 2874 llvm::Value *VBTableIndex = Builder.CreateAShr( 2875 VBTableOffset, llvm::ConstantInt::get(VBTableOffset->getType(), 2), 2876 "vbtindex", /*isExact=*/true); 2877 2878 // Load an i32 offset from the vb-table. 2879 llvm::Value *VBaseOffs = Builder.CreateInBoundsGEP(VBTable, VBTableIndex); 2880 VBaseOffs = Builder.CreateBitCast(VBaseOffs, CGM.Int32Ty->getPointerTo(0)); 2881 return Builder.CreateAlignedLoad(VBaseOffs, CharUnits::fromQuantity(4), 2882 "vbase_offs"); 2883 } 2884 2885 // Returns an adjusted base cast to i8*, since we do more address arithmetic on 2886 // it. 2887 llvm::Value *MicrosoftCXXABI::AdjustVirtualBase( 2888 CodeGenFunction &CGF, const Expr *E, const CXXRecordDecl *RD, 2889 Address Base, llvm::Value *VBTableOffset, llvm::Value *VBPtrOffset) { 2890 CGBuilderTy &Builder = CGF.Builder; 2891 Base = Builder.CreateElementBitCast(Base, CGM.Int8Ty); 2892 llvm::BasicBlock *OriginalBB = nullptr; 2893 llvm::BasicBlock *SkipAdjustBB = nullptr; 2894 llvm::BasicBlock *VBaseAdjustBB = nullptr; 2895 2896 // In the unspecified inheritance model, there might not be a vbtable at all, 2897 // in which case we need to skip the virtual base lookup. If there is a 2898 // vbtable, the first entry is a no-op entry that gives back the original 2899 // base, so look for a virtual base adjustment offset of zero. 2900 if (VBPtrOffset) { 2901 OriginalBB = Builder.GetInsertBlock(); 2902 VBaseAdjustBB = CGF.createBasicBlock("memptr.vadjust"); 2903 SkipAdjustBB = CGF.createBasicBlock("memptr.skip_vadjust"); 2904 llvm::Value *IsVirtual = 2905 Builder.CreateICmpNE(VBTableOffset, getZeroInt(), 2906 "memptr.is_vbase"); 2907 Builder.CreateCondBr(IsVirtual, VBaseAdjustBB, SkipAdjustBB); 2908 CGF.EmitBlock(VBaseAdjustBB); 2909 } 2910 2911 // If we weren't given a dynamic vbptr offset, RD should be complete and we'll 2912 // know the vbptr offset. 2913 if (!VBPtrOffset) { 2914 CharUnits offs = CharUnits::Zero(); 2915 if (!RD->hasDefinition()) { 2916 DiagnosticsEngine &Diags = CGF.CGM.getDiags(); 2917 unsigned DiagID = Diags.getCustomDiagID( 2918 DiagnosticsEngine::Error, 2919 "member pointer representation requires a " 2920 "complete class type for %0 to perform this expression"); 2921 Diags.Report(E->getExprLoc(), DiagID) << RD << E->getSourceRange(); 2922 } else if (RD->getNumVBases()) 2923 offs = getContext().getASTRecordLayout(RD).getVBPtrOffset(); 2924 VBPtrOffset = llvm::ConstantInt::get(CGM.IntTy, offs.getQuantity()); 2925 } 2926 llvm::Value *VBPtr = nullptr; 2927 llvm::Value *VBaseOffs = 2928 GetVBaseOffsetFromVBPtr(CGF, Base, VBPtrOffset, VBTableOffset, &VBPtr); 2929 llvm::Value *AdjustedBase = Builder.CreateInBoundsGEP(VBPtr, VBaseOffs); 2930 2931 // Merge control flow with the case where we didn't have to adjust. 2932 if (VBaseAdjustBB) { 2933 Builder.CreateBr(SkipAdjustBB); 2934 CGF.EmitBlock(SkipAdjustBB); 2935 llvm::PHINode *Phi = Builder.CreatePHI(CGM.Int8PtrTy, 2, "memptr.base"); 2936 Phi->addIncoming(Base.getPointer(), OriginalBB); 2937 Phi->addIncoming(AdjustedBase, VBaseAdjustBB); 2938 return Phi; 2939 } 2940 return AdjustedBase; 2941 } 2942 2943 llvm::Value *MicrosoftCXXABI::EmitMemberDataPointerAddress( 2944 CodeGenFunction &CGF, const Expr *E, Address Base, llvm::Value *MemPtr, 2945 const MemberPointerType *MPT) { 2946 assert(MPT->isMemberDataPointer()); 2947 unsigned AS = Base.getAddressSpace(); 2948 llvm::Type *PType = 2949 CGF.ConvertTypeForMem(MPT->getPointeeType())->getPointerTo(AS); 2950 CGBuilderTy &Builder = CGF.Builder; 2951 const CXXRecordDecl *RD = MPT->getMostRecentCXXRecordDecl(); 2952 MSInheritanceAttr::Spelling Inheritance = RD->getMSInheritanceModel(); 2953 2954 // Extract the fields we need, regardless of model. We'll apply them if we 2955 // have them. 2956 llvm::Value *FieldOffset = MemPtr; 2957 llvm::Value *VirtualBaseAdjustmentOffset = nullptr; 2958 llvm::Value *VBPtrOffset = nullptr; 2959 if (MemPtr->getType()->isStructTy()) { 2960 // We need to extract values. 2961 unsigned I = 0; 2962 FieldOffset = Builder.CreateExtractValue(MemPtr, I++); 2963 if (MSInheritanceAttr::hasVBPtrOffsetField(Inheritance)) 2964 VBPtrOffset = Builder.CreateExtractValue(MemPtr, I++); 2965 if (MSInheritanceAttr::hasVBTableOffsetField(Inheritance)) 2966 VirtualBaseAdjustmentOffset = Builder.CreateExtractValue(MemPtr, I++); 2967 } 2968 2969 llvm::Value *Addr; 2970 if (VirtualBaseAdjustmentOffset) { 2971 Addr = AdjustVirtualBase(CGF, E, RD, Base, VirtualBaseAdjustmentOffset, 2972 VBPtrOffset); 2973 } else { 2974 Addr = Base.getPointer(); 2975 } 2976 2977 // Cast to char*. 2978 Addr = Builder.CreateBitCast(Addr, CGF.Int8Ty->getPointerTo(AS)); 2979 2980 // Apply the offset, which we assume is non-null. 2981 Addr = Builder.CreateInBoundsGEP(Addr, FieldOffset, "memptr.offset"); 2982 2983 // Cast the address to the appropriate pointer type, adopting the address 2984 // space of the base pointer. 2985 return Builder.CreateBitCast(Addr, PType); 2986 } 2987 2988 llvm::Value * 2989 MicrosoftCXXABI::EmitMemberPointerConversion(CodeGenFunction &CGF, 2990 const CastExpr *E, 2991 llvm::Value *Src) { 2992 assert(E->getCastKind() == CK_DerivedToBaseMemberPointer || 2993 E->getCastKind() == CK_BaseToDerivedMemberPointer || 2994 E->getCastKind() == CK_ReinterpretMemberPointer); 2995 2996 // Use constant emission if we can. 2997 if (isa<llvm::Constant>(Src)) 2998 return EmitMemberPointerConversion(E, cast<llvm::Constant>(Src)); 2999 3000 // We may be adding or dropping fields from the member pointer, so we need 3001 // both types and the inheritance models of both records. 3002 const MemberPointerType *SrcTy = 3003 E->getSubExpr()->getType()->castAs<MemberPointerType>(); 3004 const MemberPointerType *DstTy = E->getType()->castAs<MemberPointerType>(); 3005 bool IsFunc = SrcTy->isMemberFunctionPointer(); 3006 3007 // If the classes use the same null representation, reinterpret_cast is a nop. 3008 bool IsReinterpret = E->getCastKind() == CK_ReinterpretMemberPointer; 3009 if (IsReinterpret && IsFunc) 3010 return Src; 3011 3012 CXXRecordDecl *SrcRD = SrcTy->getMostRecentCXXRecordDecl(); 3013 CXXRecordDecl *DstRD = DstTy->getMostRecentCXXRecordDecl(); 3014 if (IsReinterpret && 3015 SrcRD->nullFieldOffsetIsZero() == DstRD->nullFieldOffsetIsZero()) 3016 return Src; 3017 3018 CGBuilderTy &Builder = CGF.Builder; 3019 3020 // Branch past the conversion if Src is null. 3021 llvm::Value *IsNotNull = EmitMemberPointerIsNotNull(CGF, Src, SrcTy); 3022 llvm::Constant *DstNull = EmitNullMemberPointer(DstTy); 3023 3024 // C++ 5.2.10p9: The null member pointer value is converted to the null member 3025 // pointer value of the destination type. 3026 if (IsReinterpret) { 3027 // For reinterpret casts, sema ensures that src and dst are both functions 3028 // or data and have the same size, which means the LLVM types should match. 3029 assert(Src->getType() == DstNull->getType()); 3030 return Builder.CreateSelect(IsNotNull, Src, DstNull); 3031 } 3032 3033 llvm::BasicBlock *OriginalBB = Builder.GetInsertBlock(); 3034 llvm::BasicBlock *ConvertBB = CGF.createBasicBlock("memptr.convert"); 3035 llvm::BasicBlock *ContinueBB = CGF.createBasicBlock("memptr.converted"); 3036 Builder.CreateCondBr(IsNotNull, ConvertBB, ContinueBB); 3037 CGF.EmitBlock(ConvertBB); 3038 3039 llvm::Value *Dst = EmitNonNullMemberPointerConversion( 3040 SrcTy, DstTy, E->getCastKind(), E->path_begin(), E->path_end(), Src, 3041 Builder); 3042 3043 Builder.CreateBr(ContinueBB); 3044 3045 // In the continuation, choose between DstNull and Dst. 3046 CGF.EmitBlock(ContinueBB); 3047 llvm::PHINode *Phi = Builder.CreatePHI(DstNull->getType(), 2, "memptr.converted"); 3048 Phi->addIncoming(DstNull, OriginalBB); 3049 Phi->addIncoming(Dst, ConvertBB); 3050 return Phi; 3051 } 3052 3053 llvm::Value *MicrosoftCXXABI::EmitNonNullMemberPointerConversion( 3054 const MemberPointerType *SrcTy, const MemberPointerType *DstTy, CastKind CK, 3055 CastExpr::path_const_iterator PathBegin, 3056 CastExpr::path_const_iterator PathEnd, llvm::Value *Src, 3057 CGBuilderTy &Builder) { 3058 const CXXRecordDecl *SrcRD = SrcTy->getMostRecentCXXRecordDecl(); 3059 const CXXRecordDecl *DstRD = DstTy->getMostRecentCXXRecordDecl(); 3060 MSInheritanceAttr::Spelling SrcInheritance = SrcRD->getMSInheritanceModel(); 3061 MSInheritanceAttr::Spelling DstInheritance = DstRD->getMSInheritanceModel(); 3062 bool IsFunc = SrcTy->isMemberFunctionPointer(); 3063 bool IsConstant = isa<llvm::Constant>(Src); 3064 3065 // Decompose src. 3066 llvm::Value *FirstField = Src; 3067 llvm::Value *NonVirtualBaseAdjustment = getZeroInt(); 3068 llvm::Value *VirtualBaseAdjustmentOffset = getZeroInt(); 3069 llvm::Value *VBPtrOffset = getZeroInt(); 3070 if (!MSInheritanceAttr::hasOnlyOneField(IsFunc, SrcInheritance)) { 3071 // We need to extract values. 3072 unsigned I = 0; 3073 FirstField = Builder.CreateExtractValue(Src, I++); 3074 if (MSInheritanceAttr::hasNVOffsetField(IsFunc, SrcInheritance)) 3075 NonVirtualBaseAdjustment = Builder.CreateExtractValue(Src, I++); 3076 if (MSInheritanceAttr::hasVBPtrOffsetField(SrcInheritance)) 3077 VBPtrOffset = Builder.CreateExtractValue(Src, I++); 3078 if (MSInheritanceAttr::hasVBTableOffsetField(SrcInheritance)) 3079 VirtualBaseAdjustmentOffset = Builder.CreateExtractValue(Src, I++); 3080 } 3081 3082 bool IsDerivedToBase = (CK == CK_DerivedToBaseMemberPointer); 3083 const MemberPointerType *DerivedTy = IsDerivedToBase ? SrcTy : DstTy; 3084 const CXXRecordDecl *DerivedClass = DerivedTy->getMostRecentCXXRecordDecl(); 3085 3086 // For data pointers, we adjust the field offset directly. For functions, we 3087 // have a separate field. 3088 llvm::Value *&NVAdjustField = IsFunc ? NonVirtualBaseAdjustment : FirstField; 3089 3090 // The virtual inheritance model has a quirk: the virtual base table is always 3091 // referenced when dereferencing a member pointer even if the member pointer 3092 // is non-virtual. This is accounted for by adjusting the non-virtual offset 3093 // to point backwards to the top of the MDC from the first VBase. Undo this 3094 // adjustment to normalize the member pointer. 3095 llvm::Value *SrcVBIndexEqZero = 3096 Builder.CreateICmpEQ(VirtualBaseAdjustmentOffset, getZeroInt()); 3097 if (SrcInheritance == MSInheritanceAttr::Keyword_virtual_inheritance) { 3098 if (int64_t SrcOffsetToFirstVBase = 3099 getContext().getOffsetOfBaseWithVBPtr(SrcRD).getQuantity()) { 3100 llvm::Value *UndoSrcAdjustment = Builder.CreateSelect( 3101 SrcVBIndexEqZero, 3102 llvm::ConstantInt::get(CGM.IntTy, SrcOffsetToFirstVBase), 3103 getZeroInt()); 3104 NVAdjustField = Builder.CreateNSWAdd(NVAdjustField, UndoSrcAdjustment); 3105 } 3106 } 3107 3108 // A non-zero vbindex implies that we are dealing with a source member in a 3109 // floating virtual base in addition to some non-virtual offset. If the 3110 // vbindex is zero, we are dealing with a source that exists in a non-virtual, 3111 // fixed, base. The difference between these two cases is that the vbindex + 3112 // nvoffset *always* point to the member regardless of what context they are 3113 // evaluated in so long as the vbindex is adjusted. A member inside a fixed 3114 // base requires explicit nv adjustment. 3115 llvm::Constant *BaseClassOffset = llvm::ConstantInt::get( 3116 CGM.IntTy, 3117 CGM.computeNonVirtualBaseClassOffset(DerivedClass, PathBegin, PathEnd) 3118 .getQuantity()); 3119 3120 llvm::Value *NVDisp; 3121 if (IsDerivedToBase) 3122 NVDisp = Builder.CreateNSWSub(NVAdjustField, BaseClassOffset, "adj"); 3123 else 3124 NVDisp = Builder.CreateNSWAdd(NVAdjustField, BaseClassOffset, "adj"); 3125 3126 NVAdjustField = Builder.CreateSelect(SrcVBIndexEqZero, NVDisp, getZeroInt()); 3127 3128 // Update the vbindex to an appropriate value in the destination because 3129 // SrcRD's vbtable might not be a strict prefix of the one in DstRD. 3130 llvm::Value *DstVBIndexEqZero = SrcVBIndexEqZero; 3131 if (MSInheritanceAttr::hasVBTableOffsetField(DstInheritance) && 3132 MSInheritanceAttr::hasVBTableOffsetField(SrcInheritance)) { 3133 if (llvm::GlobalVariable *VDispMap = 3134 getAddrOfVirtualDisplacementMap(SrcRD, DstRD)) { 3135 llvm::Value *VBIndex = Builder.CreateExactUDiv( 3136 VirtualBaseAdjustmentOffset, llvm::ConstantInt::get(CGM.IntTy, 4)); 3137 if (IsConstant) { 3138 llvm::Constant *Mapping = VDispMap->getInitializer(); 3139 VirtualBaseAdjustmentOffset = 3140 Mapping->getAggregateElement(cast<llvm::Constant>(VBIndex)); 3141 } else { 3142 llvm::Value *Idxs[] = {getZeroInt(), VBIndex}; 3143 VirtualBaseAdjustmentOffset = 3144 Builder.CreateAlignedLoad(Builder.CreateInBoundsGEP(VDispMap, Idxs), 3145 CharUnits::fromQuantity(4)); 3146 } 3147 3148 DstVBIndexEqZero = 3149 Builder.CreateICmpEQ(VirtualBaseAdjustmentOffset, getZeroInt()); 3150 } 3151 } 3152 3153 // Set the VBPtrOffset to zero if the vbindex is zero. Otherwise, initialize 3154 // it to the offset of the vbptr. 3155 if (MSInheritanceAttr::hasVBPtrOffsetField(DstInheritance)) { 3156 llvm::Value *DstVBPtrOffset = llvm::ConstantInt::get( 3157 CGM.IntTy, 3158 getContext().getASTRecordLayout(DstRD).getVBPtrOffset().getQuantity()); 3159 VBPtrOffset = 3160 Builder.CreateSelect(DstVBIndexEqZero, getZeroInt(), DstVBPtrOffset); 3161 } 3162 3163 // Likewise, apply a similar adjustment so that dereferencing the member 3164 // pointer correctly accounts for the distance between the start of the first 3165 // virtual base and the top of the MDC. 3166 if (DstInheritance == MSInheritanceAttr::Keyword_virtual_inheritance) { 3167 if (int64_t DstOffsetToFirstVBase = 3168 getContext().getOffsetOfBaseWithVBPtr(DstRD).getQuantity()) { 3169 llvm::Value *DoDstAdjustment = Builder.CreateSelect( 3170 DstVBIndexEqZero, 3171 llvm::ConstantInt::get(CGM.IntTy, DstOffsetToFirstVBase), 3172 getZeroInt()); 3173 NVAdjustField = Builder.CreateNSWSub(NVAdjustField, DoDstAdjustment); 3174 } 3175 } 3176 3177 // Recompose dst from the null struct and the adjusted fields from src. 3178 llvm::Value *Dst; 3179 if (MSInheritanceAttr::hasOnlyOneField(IsFunc, DstInheritance)) { 3180 Dst = FirstField; 3181 } else { 3182 Dst = llvm::UndefValue::get(ConvertMemberPointerType(DstTy)); 3183 unsigned Idx = 0; 3184 Dst = Builder.CreateInsertValue(Dst, FirstField, Idx++); 3185 if (MSInheritanceAttr::hasNVOffsetField(IsFunc, DstInheritance)) 3186 Dst = Builder.CreateInsertValue(Dst, NonVirtualBaseAdjustment, Idx++); 3187 if (MSInheritanceAttr::hasVBPtrOffsetField(DstInheritance)) 3188 Dst = Builder.CreateInsertValue(Dst, VBPtrOffset, Idx++); 3189 if (MSInheritanceAttr::hasVBTableOffsetField(DstInheritance)) 3190 Dst = Builder.CreateInsertValue(Dst, VirtualBaseAdjustmentOffset, Idx++); 3191 } 3192 return Dst; 3193 } 3194 3195 llvm::Constant * 3196 MicrosoftCXXABI::EmitMemberPointerConversion(const CastExpr *E, 3197 llvm::Constant *Src) { 3198 const MemberPointerType *SrcTy = 3199 E->getSubExpr()->getType()->castAs<MemberPointerType>(); 3200 const MemberPointerType *DstTy = E->getType()->castAs<MemberPointerType>(); 3201 3202 CastKind CK = E->getCastKind(); 3203 3204 return EmitMemberPointerConversion(SrcTy, DstTy, CK, E->path_begin(), 3205 E->path_end(), Src); 3206 } 3207 3208 llvm::Constant *MicrosoftCXXABI::EmitMemberPointerConversion( 3209 const MemberPointerType *SrcTy, const MemberPointerType *DstTy, CastKind CK, 3210 CastExpr::path_const_iterator PathBegin, 3211 CastExpr::path_const_iterator PathEnd, llvm::Constant *Src) { 3212 assert(CK == CK_DerivedToBaseMemberPointer || 3213 CK == CK_BaseToDerivedMemberPointer || 3214 CK == CK_ReinterpretMemberPointer); 3215 // If src is null, emit a new null for dst. We can't return src because dst 3216 // might have a new representation. 3217 if (MemberPointerConstantIsNull(SrcTy, Src)) 3218 return EmitNullMemberPointer(DstTy); 3219 3220 // We don't need to do anything for reinterpret_casts of non-null member 3221 // pointers. We should only get here when the two type representations have 3222 // the same size. 3223 if (CK == CK_ReinterpretMemberPointer) 3224 return Src; 3225 3226 CGBuilderTy Builder(CGM, CGM.getLLVMContext()); 3227 auto *Dst = cast<llvm::Constant>(EmitNonNullMemberPointerConversion( 3228 SrcTy, DstTy, CK, PathBegin, PathEnd, Src, Builder)); 3229 3230 return Dst; 3231 } 3232 3233 llvm::Value *MicrosoftCXXABI::EmitLoadOfMemberFunctionPointer( 3234 CodeGenFunction &CGF, const Expr *E, Address This, 3235 llvm::Value *&ThisPtrForCall, llvm::Value *MemPtr, 3236 const MemberPointerType *MPT) { 3237 assert(MPT->isMemberFunctionPointer()); 3238 const FunctionProtoType *FPT = 3239 MPT->getPointeeType()->castAs<FunctionProtoType>(); 3240 const CXXRecordDecl *RD = MPT->getMostRecentCXXRecordDecl(); 3241 llvm::FunctionType *FTy = CGM.getTypes().GetFunctionType( 3242 CGM.getTypes().arrangeCXXMethodType(RD, FPT, /*FD=*/nullptr)); 3243 CGBuilderTy &Builder = CGF.Builder; 3244 3245 MSInheritanceAttr::Spelling Inheritance = RD->getMSInheritanceModel(); 3246 3247 // Extract the fields we need, regardless of model. We'll apply them if we 3248 // have them. 3249 llvm::Value *FunctionPointer = MemPtr; 3250 llvm::Value *NonVirtualBaseAdjustment = nullptr; 3251 llvm::Value *VirtualBaseAdjustmentOffset = nullptr; 3252 llvm::Value *VBPtrOffset = nullptr; 3253 if (MemPtr->getType()->isStructTy()) { 3254 // We need to extract values. 3255 unsigned I = 0; 3256 FunctionPointer = Builder.CreateExtractValue(MemPtr, I++); 3257 if (MSInheritanceAttr::hasNVOffsetField(MPT, Inheritance)) 3258 NonVirtualBaseAdjustment = Builder.CreateExtractValue(MemPtr, I++); 3259 if (MSInheritanceAttr::hasVBPtrOffsetField(Inheritance)) 3260 VBPtrOffset = Builder.CreateExtractValue(MemPtr, I++); 3261 if (MSInheritanceAttr::hasVBTableOffsetField(Inheritance)) 3262 VirtualBaseAdjustmentOffset = Builder.CreateExtractValue(MemPtr, I++); 3263 } 3264 3265 if (VirtualBaseAdjustmentOffset) { 3266 ThisPtrForCall = AdjustVirtualBase(CGF, E, RD, This, 3267 VirtualBaseAdjustmentOffset, VBPtrOffset); 3268 } else { 3269 ThisPtrForCall = This.getPointer(); 3270 } 3271 3272 if (NonVirtualBaseAdjustment) { 3273 // Apply the adjustment and cast back to the original struct type. 3274 llvm::Value *Ptr = Builder.CreateBitCast(ThisPtrForCall, CGF.Int8PtrTy); 3275 Ptr = Builder.CreateInBoundsGEP(Ptr, NonVirtualBaseAdjustment); 3276 ThisPtrForCall = Builder.CreateBitCast(Ptr, ThisPtrForCall->getType(), 3277 "this.adjusted"); 3278 } 3279 3280 return Builder.CreateBitCast(FunctionPointer, FTy->getPointerTo()); 3281 } 3282 3283 CGCXXABI *clang::CodeGen::CreateMicrosoftCXXABI(CodeGenModule &CGM) { 3284 return new MicrosoftCXXABI(CGM); 3285 } 3286 3287 // MS RTTI Overview: 3288 // The run time type information emitted by cl.exe contains 5 distinct types of 3289 // structures. Many of them reference each other. 3290 // 3291 // TypeInfo: Static classes that are returned by typeid. 3292 // 3293 // CompleteObjectLocator: Referenced by vftables. They contain information 3294 // required for dynamic casting, including OffsetFromTop. They also contain 3295 // a reference to the TypeInfo for the type and a reference to the 3296 // CompleteHierarchyDescriptor for the type. 3297 // 3298 // ClassHieararchyDescriptor: Contains information about a class hierarchy. 3299 // Used during dynamic_cast to walk a class hierarchy. References a base 3300 // class array and the size of said array. 3301 // 3302 // BaseClassArray: Contains a list of classes in a hierarchy. BaseClassArray is 3303 // somewhat of a misnomer because the most derived class is also in the list 3304 // as well as multiple copies of virtual bases (if they occur multiple times 3305 // in the hiearchy.) The BaseClassArray contains one BaseClassDescriptor for 3306 // every path in the hierarchy, in pre-order depth first order. Note, we do 3307 // not declare a specific llvm type for BaseClassArray, it's merely an array 3308 // of BaseClassDescriptor pointers. 3309 // 3310 // BaseClassDescriptor: Contains information about a class in a class hierarchy. 3311 // BaseClassDescriptor is also somewhat of a misnomer for the same reason that 3312 // BaseClassArray is. It contains information about a class within a 3313 // hierarchy such as: is this base is ambiguous and what is its offset in the 3314 // vbtable. The names of the BaseClassDescriptors have all of their fields 3315 // mangled into them so they can be aggressively deduplicated by the linker. 3316 3317 static llvm::GlobalVariable *getTypeInfoVTable(CodeGenModule &CGM) { 3318 StringRef MangledName("\01??_7type_info@@6B@"); 3319 if (auto VTable = CGM.getModule().getNamedGlobal(MangledName)) 3320 return VTable; 3321 return new llvm::GlobalVariable(CGM.getModule(), CGM.Int8PtrTy, 3322 /*Constant=*/true, 3323 llvm::GlobalVariable::ExternalLinkage, 3324 /*Initializer=*/nullptr, MangledName); 3325 } 3326 3327 namespace { 3328 3329 /// \brief A Helper struct that stores information about a class in a class 3330 /// hierarchy. The information stored in these structs struct is used during 3331 /// the generation of ClassHierarchyDescriptors and BaseClassDescriptors. 3332 // During RTTI creation, MSRTTIClasses are stored in a contiguous array with 3333 // implicit depth first pre-order tree connectivity. getFirstChild and 3334 // getNextSibling allow us to walk the tree efficiently. 3335 struct MSRTTIClass { 3336 enum { 3337 IsPrivateOnPath = 1 | 8, 3338 IsAmbiguous = 2, 3339 IsPrivate = 4, 3340 IsVirtual = 16, 3341 HasHierarchyDescriptor = 64 3342 }; 3343 MSRTTIClass(const CXXRecordDecl *RD) : RD(RD) {} 3344 uint32_t initialize(const MSRTTIClass *Parent, 3345 const CXXBaseSpecifier *Specifier); 3346 3347 MSRTTIClass *getFirstChild() { return this + 1; } 3348 static MSRTTIClass *getNextChild(MSRTTIClass *Child) { 3349 return Child + 1 + Child->NumBases; 3350 } 3351 3352 const CXXRecordDecl *RD, *VirtualRoot; 3353 uint32_t Flags, NumBases, OffsetInVBase; 3354 }; 3355 3356 /// \brief Recursively initialize the base class array. 3357 uint32_t MSRTTIClass::initialize(const MSRTTIClass *Parent, 3358 const CXXBaseSpecifier *Specifier) { 3359 Flags = HasHierarchyDescriptor; 3360 if (!Parent) { 3361 VirtualRoot = nullptr; 3362 OffsetInVBase = 0; 3363 } else { 3364 if (Specifier->getAccessSpecifier() != AS_public) 3365 Flags |= IsPrivate | IsPrivateOnPath; 3366 if (Specifier->isVirtual()) { 3367 Flags |= IsVirtual; 3368 VirtualRoot = RD; 3369 OffsetInVBase = 0; 3370 } else { 3371 if (Parent->Flags & IsPrivateOnPath) 3372 Flags |= IsPrivateOnPath; 3373 VirtualRoot = Parent->VirtualRoot; 3374 OffsetInVBase = Parent->OffsetInVBase + RD->getASTContext() 3375 .getASTRecordLayout(Parent->RD).getBaseClassOffset(RD).getQuantity(); 3376 } 3377 } 3378 NumBases = 0; 3379 MSRTTIClass *Child = getFirstChild(); 3380 for (const CXXBaseSpecifier &Base : RD->bases()) { 3381 NumBases += Child->initialize(this, &Base) + 1; 3382 Child = getNextChild(Child); 3383 } 3384 return NumBases; 3385 } 3386 3387 static llvm::GlobalValue::LinkageTypes getLinkageForRTTI(QualType Ty) { 3388 switch (Ty->getLinkage()) { 3389 case NoLinkage: 3390 case InternalLinkage: 3391 case UniqueExternalLinkage: 3392 return llvm::GlobalValue::InternalLinkage; 3393 3394 case VisibleNoLinkage: 3395 case ExternalLinkage: 3396 return llvm::GlobalValue::LinkOnceODRLinkage; 3397 } 3398 llvm_unreachable("Invalid linkage!"); 3399 } 3400 3401 /// \brief An ephemeral helper class for building MS RTTI types. It caches some 3402 /// calls to the module and information about the most derived class in a 3403 /// hierarchy. 3404 struct MSRTTIBuilder { 3405 enum { 3406 HasBranchingHierarchy = 1, 3407 HasVirtualBranchingHierarchy = 2, 3408 HasAmbiguousBases = 4 3409 }; 3410 3411 MSRTTIBuilder(MicrosoftCXXABI &ABI, const CXXRecordDecl *RD) 3412 : CGM(ABI.CGM), Context(CGM.getContext()), 3413 VMContext(CGM.getLLVMContext()), Module(CGM.getModule()), RD(RD), 3414 Linkage(getLinkageForRTTI(CGM.getContext().getTagDeclType(RD))), 3415 ABI(ABI) {} 3416 3417 llvm::GlobalVariable *getBaseClassDescriptor(const MSRTTIClass &Classes); 3418 llvm::GlobalVariable * 3419 getBaseClassArray(SmallVectorImpl<MSRTTIClass> &Classes); 3420 llvm::GlobalVariable *getClassHierarchyDescriptor(); 3421 llvm::GlobalVariable *getCompleteObjectLocator(const VPtrInfo *Info); 3422 3423 CodeGenModule &CGM; 3424 ASTContext &Context; 3425 llvm::LLVMContext &VMContext; 3426 llvm::Module &Module; 3427 const CXXRecordDecl *RD; 3428 llvm::GlobalVariable::LinkageTypes Linkage; 3429 MicrosoftCXXABI &ABI; 3430 }; 3431 3432 } // namespace 3433 3434 /// \brief Recursively serializes a class hierarchy in pre-order depth first 3435 /// order. 3436 static void serializeClassHierarchy(SmallVectorImpl<MSRTTIClass> &Classes, 3437 const CXXRecordDecl *RD) { 3438 Classes.push_back(MSRTTIClass(RD)); 3439 for (const CXXBaseSpecifier &Base : RD->bases()) 3440 serializeClassHierarchy(Classes, Base.getType()->getAsCXXRecordDecl()); 3441 } 3442 3443 /// \brief Find ambiguity among base classes. 3444 static void 3445 detectAmbiguousBases(SmallVectorImpl<MSRTTIClass> &Classes) { 3446 llvm::SmallPtrSet<const CXXRecordDecl *, 8> VirtualBases; 3447 llvm::SmallPtrSet<const CXXRecordDecl *, 8> UniqueBases; 3448 llvm::SmallPtrSet<const CXXRecordDecl *, 8> AmbiguousBases; 3449 for (MSRTTIClass *Class = &Classes.front(); Class <= &Classes.back();) { 3450 if ((Class->Flags & MSRTTIClass::IsVirtual) && 3451 !VirtualBases.insert(Class->RD).second) { 3452 Class = MSRTTIClass::getNextChild(Class); 3453 continue; 3454 } 3455 if (!UniqueBases.insert(Class->RD).second) 3456 AmbiguousBases.insert(Class->RD); 3457 Class++; 3458 } 3459 if (AmbiguousBases.empty()) 3460 return; 3461 for (MSRTTIClass &Class : Classes) 3462 if (AmbiguousBases.count(Class.RD)) 3463 Class.Flags |= MSRTTIClass::IsAmbiguous; 3464 } 3465 3466 llvm::GlobalVariable *MSRTTIBuilder::getClassHierarchyDescriptor() { 3467 SmallString<256> MangledName; 3468 { 3469 llvm::raw_svector_ostream Out(MangledName); 3470 ABI.getMangleContext().mangleCXXRTTIClassHierarchyDescriptor(RD, Out); 3471 } 3472 3473 // Check to see if we've already declared this ClassHierarchyDescriptor. 3474 if (auto CHD = Module.getNamedGlobal(MangledName)) 3475 return CHD; 3476 3477 // Serialize the class hierarchy and initialize the CHD Fields. 3478 SmallVector<MSRTTIClass, 8> Classes; 3479 serializeClassHierarchy(Classes, RD); 3480 Classes.front().initialize(/*Parent=*/nullptr, /*Specifier=*/nullptr); 3481 detectAmbiguousBases(Classes); 3482 int Flags = 0; 3483 for (auto Class : Classes) { 3484 if (Class.RD->getNumBases() > 1) 3485 Flags |= HasBranchingHierarchy; 3486 // Note: cl.exe does not calculate "HasAmbiguousBases" correctly. We 3487 // believe the field isn't actually used. 3488 if (Class.Flags & MSRTTIClass::IsAmbiguous) 3489 Flags |= HasAmbiguousBases; 3490 } 3491 if ((Flags & HasBranchingHierarchy) && RD->getNumVBases() != 0) 3492 Flags |= HasVirtualBranchingHierarchy; 3493 // These gep indices are used to get the address of the first element of the 3494 // base class array. 3495 llvm::Value *GEPIndices[] = {llvm::ConstantInt::get(CGM.IntTy, 0), 3496 llvm::ConstantInt::get(CGM.IntTy, 0)}; 3497 3498 // Forward-declare the class hierarchy descriptor 3499 auto Type = ABI.getClassHierarchyDescriptorType(); 3500 auto CHD = new llvm::GlobalVariable(Module, Type, /*Constant=*/true, Linkage, 3501 /*Initializer=*/nullptr, 3502 MangledName); 3503 if (CHD->isWeakForLinker()) 3504 CHD->setComdat(CGM.getModule().getOrInsertComdat(CHD->getName())); 3505 3506 auto *Bases = getBaseClassArray(Classes); 3507 3508 // Initialize the base class ClassHierarchyDescriptor. 3509 llvm::Constant *Fields[] = { 3510 llvm::ConstantInt::get(CGM.IntTy, 0), // Unknown 3511 llvm::ConstantInt::get(CGM.IntTy, Flags), 3512 llvm::ConstantInt::get(CGM.IntTy, Classes.size()), 3513 ABI.getImageRelativeConstant(llvm::ConstantExpr::getInBoundsGetElementPtr( 3514 Bases->getValueType(), Bases, 3515 llvm::ArrayRef<llvm::Value *>(GEPIndices))), 3516 }; 3517 CHD->setInitializer(llvm::ConstantStruct::get(Type, Fields)); 3518 return CHD; 3519 } 3520 3521 llvm::GlobalVariable * 3522 MSRTTIBuilder::getBaseClassArray(SmallVectorImpl<MSRTTIClass> &Classes) { 3523 SmallString<256> MangledName; 3524 { 3525 llvm::raw_svector_ostream Out(MangledName); 3526 ABI.getMangleContext().mangleCXXRTTIBaseClassArray(RD, Out); 3527 } 3528 3529 // Forward-declare the base class array. 3530 // cl.exe pads the base class array with 1 (in 32 bit mode) or 4 (in 64 bit 3531 // mode) bytes of padding. We provide a pointer sized amount of padding by 3532 // adding +1 to Classes.size(). The sections have pointer alignment and are 3533 // marked pick-any so it shouldn't matter. 3534 llvm::Type *PtrType = ABI.getImageRelativeType( 3535 ABI.getBaseClassDescriptorType()->getPointerTo()); 3536 auto *ArrType = llvm::ArrayType::get(PtrType, Classes.size() + 1); 3537 auto *BCA = 3538 new llvm::GlobalVariable(Module, ArrType, 3539 /*Constant=*/true, Linkage, 3540 /*Initializer=*/nullptr, MangledName); 3541 if (BCA->isWeakForLinker()) 3542 BCA->setComdat(CGM.getModule().getOrInsertComdat(BCA->getName())); 3543 3544 // Initialize the BaseClassArray. 3545 SmallVector<llvm::Constant *, 8> BaseClassArrayData; 3546 for (MSRTTIClass &Class : Classes) 3547 BaseClassArrayData.push_back( 3548 ABI.getImageRelativeConstant(getBaseClassDescriptor(Class))); 3549 BaseClassArrayData.push_back(llvm::Constant::getNullValue(PtrType)); 3550 BCA->setInitializer(llvm::ConstantArray::get(ArrType, BaseClassArrayData)); 3551 return BCA; 3552 } 3553 3554 llvm::GlobalVariable * 3555 MSRTTIBuilder::getBaseClassDescriptor(const MSRTTIClass &Class) { 3556 // Compute the fields for the BaseClassDescriptor. They are computed up front 3557 // because they are mangled into the name of the object. 3558 uint32_t OffsetInVBTable = 0; 3559 int32_t VBPtrOffset = -1; 3560 if (Class.VirtualRoot) { 3561 auto &VTableContext = CGM.getMicrosoftVTableContext(); 3562 OffsetInVBTable = VTableContext.getVBTableIndex(RD, Class.VirtualRoot) * 4; 3563 VBPtrOffset = Context.getASTRecordLayout(RD).getVBPtrOffset().getQuantity(); 3564 } 3565 3566 SmallString<256> MangledName; 3567 { 3568 llvm::raw_svector_ostream Out(MangledName); 3569 ABI.getMangleContext().mangleCXXRTTIBaseClassDescriptor( 3570 Class.RD, Class.OffsetInVBase, VBPtrOffset, OffsetInVBTable, 3571 Class.Flags, Out); 3572 } 3573 3574 // Check to see if we've already declared this object. 3575 if (auto BCD = Module.getNamedGlobal(MangledName)) 3576 return BCD; 3577 3578 // Forward-declare the base class descriptor. 3579 auto Type = ABI.getBaseClassDescriptorType(); 3580 auto BCD = 3581 new llvm::GlobalVariable(Module, Type, /*Constant=*/true, Linkage, 3582 /*Initializer=*/nullptr, MangledName); 3583 if (BCD->isWeakForLinker()) 3584 BCD->setComdat(CGM.getModule().getOrInsertComdat(BCD->getName())); 3585 3586 // Initialize the BaseClassDescriptor. 3587 llvm::Constant *Fields[] = { 3588 ABI.getImageRelativeConstant( 3589 ABI.getAddrOfRTTIDescriptor(Context.getTypeDeclType(Class.RD))), 3590 llvm::ConstantInt::get(CGM.IntTy, Class.NumBases), 3591 llvm::ConstantInt::get(CGM.IntTy, Class.OffsetInVBase), 3592 llvm::ConstantInt::get(CGM.IntTy, VBPtrOffset), 3593 llvm::ConstantInt::get(CGM.IntTy, OffsetInVBTable), 3594 llvm::ConstantInt::get(CGM.IntTy, Class.Flags), 3595 ABI.getImageRelativeConstant( 3596 MSRTTIBuilder(ABI, Class.RD).getClassHierarchyDescriptor()), 3597 }; 3598 BCD->setInitializer(llvm::ConstantStruct::get(Type, Fields)); 3599 return BCD; 3600 } 3601 3602 llvm::GlobalVariable * 3603 MSRTTIBuilder::getCompleteObjectLocator(const VPtrInfo *Info) { 3604 SmallString<256> MangledName; 3605 { 3606 llvm::raw_svector_ostream Out(MangledName); 3607 ABI.getMangleContext().mangleCXXRTTICompleteObjectLocator(RD, Info->MangledPath, Out); 3608 } 3609 3610 // Check to see if we've already computed this complete object locator. 3611 if (auto COL = Module.getNamedGlobal(MangledName)) 3612 return COL; 3613 3614 // Compute the fields of the complete object locator. 3615 int OffsetToTop = Info->FullOffsetInMDC.getQuantity(); 3616 int VFPtrOffset = 0; 3617 // The offset includes the vtordisp if one exists. 3618 if (const CXXRecordDecl *VBase = Info->getVBaseWithVPtr()) 3619 if (Context.getASTRecordLayout(RD) 3620 .getVBaseOffsetsMap() 3621 .find(VBase) 3622 ->second.hasVtorDisp()) 3623 VFPtrOffset = Info->NonVirtualOffset.getQuantity() + 4; 3624 3625 // Forward-declare the complete object locator. 3626 llvm::StructType *Type = ABI.getCompleteObjectLocatorType(); 3627 auto COL = new llvm::GlobalVariable(Module, Type, /*Constant=*/true, Linkage, 3628 /*Initializer=*/nullptr, MangledName); 3629 3630 // Initialize the CompleteObjectLocator. 3631 llvm::Constant *Fields[] = { 3632 llvm::ConstantInt::get(CGM.IntTy, ABI.isImageRelative()), 3633 llvm::ConstantInt::get(CGM.IntTy, OffsetToTop), 3634 llvm::ConstantInt::get(CGM.IntTy, VFPtrOffset), 3635 ABI.getImageRelativeConstant( 3636 CGM.GetAddrOfRTTIDescriptor(Context.getTypeDeclType(RD))), 3637 ABI.getImageRelativeConstant(getClassHierarchyDescriptor()), 3638 ABI.getImageRelativeConstant(COL), 3639 }; 3640 llvm::ArrayRef<llvm::Constant *> FieldsRef(Fields); 3641 if (!ABI.isImageRelative()) 3642 FieldsRef = FieldsRef.drop_back(); 3643 COL->setInitializer(llvm::ConstantStruct::get(Type, FieldsRef)); 3644 if (COL->isWeakForLinker()) 3645 COL->setComdat(CGM.getModule().getOrInsertComdat(COL->getName())); 3646 return COL; 3647 } 3648 3649 static QualType decomposeTypeForEH(ASTContext &Context, QualType T, 3650 bool &IsConst, bool &IsVolatile, 3651 bool &IsUnaligned) { 3652 T = Context.getExceptionObjectType(T); 3653 3654 // C++14 [except.handle]p3: 3655 // A handler is a match for an exception object of type E if [...] 3656 // - the handler is of type cv T or const T& where T is a pointer type and 3657 // E is a pointer type that can be converted to T by [...] 3658 // - a qualification conversion 3659 IsConst = false; 3660 IsVolatile = false; 3661 IsUnaligned = false; 3662 QualType PointeeType = T->getPointeeType(); 3663 if (!PointeeType.isNull()) { 3664 IsConst = PointeeType.isConstQualified(); 3665 IsVolatile = PointeeType.isVolatileQualified(); 3666 IsUnaligned = PointeeType.getQualifiers().hasUnaligned(); 3667 } 3668 3669 // Member pointer types like "const int A::*" are represented by having RTTI 3670 // for "int A::*" and separately storing the const qualifier. 3671 if (const auto *MPTy = T->getAs<MemberPointerType>()) 3672 T = Context.getMemberPointerType(PointeeType.getUnqualifiedType(), 3673 MPTy->getClass()); 3674 3675 // Pointer types like "const int * const *" are represented by having RTTI 3676 // for "const int **" and separately storing the const qualifier. 3677 if (T->isPointerType()) 3678 T = Context.getPointerType(PointeeType.getUnqualifiedType()); 3679 3680 return T; 3681 } 3682 3683 CatchTypeInfo 3684 MicrosoftCXXABI::getAddrOfCXXCatchHandlerType(QualType Type, 3685 QualType CatchHandlerType) { 3686 // TypeDescriptors for exceptions never have qualified pointer types, 3687 // qualifiers are stored seperately in order to support qualification 3688 // conversions. 3689 bool IsConst, IsVolatile, IsUnaligned; 3690 Type = 3691 decomposeTypeForEH(getContext(), Type, IsConst, IsVolatile, IsUnaligned); 3692 3693 bool IsReference = CatchHandlerType->isReferenceType(); 3694 3695 uint32_t Flags = 0; 3696 if (IsConst) 3697 Flags |= 1; 3698 if (IsVolatile) 3699 Flags |= 2; 3700 if (IsUnaligned) 3701 Flags |= 4; 3702 if (IsReference) 3703 Flags |= 8; 3704 3705 return CatchTypeInfo{getAddrOfRTTIDescriptor(Type)->stripPointerCasts(), 3706 Flags}; 3707 } 3708 3709 /// \brief Gets a TypeDescriptor. Returns a llvm::Constant * rather than a 3710 /// llvm::GlobalVariable * because different type descriptors have different 3711 /// types, and need to be abstracted. They are abstracting by casting the 3712 /// address to an Int8PtrTy. 3713 llvm::Constant *MicrosoftCXXABI::getAddrOfRTTIDescriptor(QualType Type) { 3714 SmallString<256> MangledName; 3715 { 3716 llvm::raw_svector_ostream Out(MangledName); 3717 getMangleContext().mangleCXXRTTI(Type, Out); 3718 } 3719 3720 // Check to see if we've already declared this TypeDescriptor. 3721 if (llvm::GlobalVariable *GV = CGM.getModule().getNamedGlobal(MangledName)) 3722 return llvm::ConstantExpr::getBitCast(GV, CGM.Int8PtrTy); 3723 3724 // Compute the fields for the TypeDescriptor. 3725 SmallString<256> TypeInfoString; 3726 { 3727 llvm::raw_svector_ostream Out(TypeInfoString); 3728 getMangleContext().mangleCXXRTTIName(Type, Out); 3729 } 3730 3731 // Declare and initialize the TypeDescriptor. 3732 llvm::Constant *Fields[] = { 3733 getTypeInfoVTable(CGM), // VFPtr 3734 llvm::ConstantPointerNull::get(CGM.Int8PtrTy), // Runtime data 3735 llvm::ConstantDataArray::getString(CGM.getLLVMContext(), TypeInfoString)}; 3736 llvm::StructType *TypeDescriptorType = 3737 getTypeDescriptorType(TypeInfoString); 3738 auto *Var = new llvm::GlobalVariable( 3739 CGM.getModule(), TypeDescriptorType, /*Constant=*/false, 3740 getLinkageForRTTI(Type), 3741 llvm::ConstantStruct::get(TypeDescriptorType, Fields), 3742 MangledName); 3743 if (Var->isWeakForLinker()) 3744 Var->setComdat(CGM.getModule().getOrInsertComdat(Var->getName())); 3745 return llvm::ConstantExpr::getBitCast(Var, CGM.Int8PtrTy); 3746 } 3747 3748 /// \brief Gets or a creates a Microsoft CompleteObjectLocator. 3749 llvm::GlobalVariable * 3750 MicrosoftCXXABI::getMSCompleteObjectLocator(const CXXRecordDecl *RD, 3751 const VPtrInfo *Info) { 3752 return MSRTTIBuilder(*this, RD).getCompleteObjectLocator(Info); 3753 } 3754 3755 static void emitCXXConstructor(CodeGenModule &CGM, 3756 const CXXConstructorDecl *ctor, 3757 StructorType ctorType) { 3758 // There are no constructor variants, always emit the complete destructor. 3759 llvm::Function *Fn = CGM.codegenCXXStructor(ctor, StructorType::Complete); 3760 CGM.maybeSetTrivialComdat(*ctor, *Fn); 3761 } 3762 3763 static void emitCXXDestructor(CodeGenModule &CGM, const CXXDestructorDecl *dtor, 3764 StructorType dtorType) { 3765 // The complete destructor is equivalent to the base destructor for 3766 // classes with no virtual bases, so try to emit it as an alias. 3767 if (!dtor->getParent()->getNumVBases() && 3768 (dtorType == StructorType::Complete || dtorType == StructorType::Base)) { 3769 bool ProducedAlias = !CGM.TryEmitDefinitionAsAlias( 3770 GlobalDecl(dtor, Dtor_Complete), GlobalDecl(dtor, Dtor_Base), true); 3771 if (ProducedAlias) { 3772 if (dtorType == StructorType::Complete) 3773 return; 3774 if (dtor->isVirtual()) 3775 CGM.getVTables().EmitThunks(GlobalDecl(dtor, Dtor_Complete)); 3776 } 3777 } 3778 3779 // The base destructor is equivalent to the base destructor of its 3780 // base class if there is exactly one non-virtual base class with a 3781 // non-trivial destructor, there are no fields with a non-trivial 3782 // destructor, and the body of the destructor is trivial. 3783 if (dtorType == StructorType::Base && !CGM.TryEmitBaseDestructorAsAlias(dtor)) 3784 return; 3785 3786 llvm::Function *Fn = CGM.codegenCXXStructor(dtor, dtorType); 3787 if (Fn->isWeakForLinker()) 3788 Fn->setComdat(CGM.getModule().getOrInsertComdat(Fn->getName())); 3789 } 3790 3791 void MicrosoftCXXABI::emitCXXStructor(const CXXMethodDecl *MD, 3792 StructorType Type) { 3793 if (auto *CD = dyn_cast<CXXConstructorDecl>(MD)) { 3794 emitCXXConstructor(CGM, CD, Type); 3795 return; 3796 } 3797 emitCXXDestructor(CGM, cast<CXXDestructorDecl>(MD), Type); 3798 } 3799 3800 llvm::Function * 3801 MicrosoftCXXABI::getAddrOfCXXCtorClosure(const CXXConstructorDecl *CD, 3802 CXXCtorType CT) { 3803 assert(CT == Ctor_CopyingClosure || CT == Ctor_DefaultClosure); 3804 3805 // Calculate the mangled name. 3806 SmallString<256> ThunkName; 3807 llvm::raw_svector_ostream Out(ThunkName); 3808 getMangleContext().mangleCXXCtor(CD, CT, Out); 3809 3810 // If the thunk has been generated previously, just return it. 3811 if (llvm::GlobalValue *GV = CGM.getModule().getNamedValue(ThunkName)) 3812 return cast<llvm::Function>(GV); 3813 3814 // Create the llvm::Function. 3815 const CGFunctionInfo &FnInfo = CGM.getTypes().arrangeMSCtorClosure(CD, CT); 3816 llvm::FunctionType *ThunkTy = CGM.getTypes().GetFunctionType(FnInfo); 3817 const CXXRecordDecl *RD = CD->getParent(); 3818 QualType RecordTy = getContext().getRecordType(RD); 3819 llvm::Function *ThunkFn = llvm::Function::Create( 3820 ThunkTy, getLinkageForRTTI(RecordTy), ThunkName.str(), &CGM.getModule()); 3821 ThunkFn->setCallingConv(static_cast<llvm::CallingConv::ID>( 3822 FnInfo.getEffectiveCallingConvention())); 3823 if (ThunkFn->isWeakForLinker()) 3824 ThunkFn->setComdat(CGM.getModule().getOrInsertComdat(ThunkFn->getName())); 3825 bool IsCopy = CT == Ctor_CopyingClosure; 3826 3827 // Start codegen. 3828 CodeGenFunction CGF(CGM); 3829 CGF.CurGD = GlobalDecl(CD, Ctor_Complete); 3830 3831 // Build FunctionArgs. 3832 FunctionArgList FunctionArgs; 3833 3834 // A constructor always starts with a 'this' pointer as its first argument. 3835 buildThisParam(CGF, FunctionArgs); 3836 3837 // Following the 'this' pointer is a reference to the source object that we 3838 // are copying from. 3839 ImplicitParamDecl SrcParam( 3840 getContext(), nullptr, SourceLocation(), &getContext().Idents.get("src"), 3841 getContext().getLValueReferenceType(RecordTy, 3842 /*SpelledAsLValue=*/true)); 3843 if (IsCopy) 3844 FunctionArgs.push_back(&SrcParam); 3845 3846 // Constructors for classes which utilize virtual bases have an additional 3847 // parameter which indicates whether or not it is being delegated to by a more 3848 // derived constructor. 3849 ImplicitParamDecl IsMostDerived(getContext(), nullptr, SourceLocation(), 3850 &getContext().Idents.get("is_most_derived"), 3851 getContext().IntTy); 3852 // Only add the parameter to the list if thie class has virtual bases. 3853 if (RD->getNumVBases() > 0) 3854 FunctionArgs.push_back(&IsMostDerived); 3855 3856 // Start defining the function. 3857 CGF.StartFunction(GlobalDecl(), FnInfo.getReturnType(), ThunkFn, FnInfo, 3858 FunctionArgs, CD->getLocation(), SourceLocation()); 3859 EmitThisParam(CGF); 3860 llvm::Value *This = getThisValue(CGF); 3861 3862 llvm::Value *SrcVal = 3863 IsCopy ? CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(&SrcParam), "src") 3864 : nullptr; 3865 3866 CallArgList Args; 3867 3868 // Push the this ptr. 3869 Args.add(RValue::get(This), CD->getThisType(getContext())); 3870 3871 // Push the src ptr. 3872 if (SrcVal) 3873 Args.add(RValue::get(SrcVal), SrcParam.getType()); 3874 3875 // Add the rest of the default arguments. 3876 std::vector<Stmt *> ArgVec; 3877 for (unsigned I = IsCopy ? 1 : 0, E = CD->getNumParams(); I != E; ++I) { 3878 Stmt *DefaultArg = getContext().getDefaultArgExprForConstructor(CD, I); 3879 assert(DefaultArg && "sema forgot to instantiate default args"); 3880 ArgVec.push_back(DefaultArg); 3881 } 3882 3883 CodeGenFunction::RunCleanupsScope Cleanups(CGF); 3884 3885 const auto *FPT = CD->getType()->castAs<FunctionProtoType>(); 3886 CGF.EmitCallArgs(Args, FPT, llvm::makeArrayRef(ArgVec), CD, IsCopy ? 1 : 0); 3887 3888 // Insert any ABI-specific implicit constructor arguments. 3889 unsigned ExtraArgs = addImplicitConstructorArgs(CGF, CD, Ctor_Complete, 3890 /*ForVirtualBase=*/false, 3891 /*Delegating=*/false, Args); 3892 3893 // Call the destructor with our arguments. 3894 llvm::Value *CalleeFn = CGM.getAddrOfCXXStructor(CD, StructorType::Complete); 3895 const CGFunctionInfo &CalleeInfo = CGM.getTypes().arrangeCXXConstructorCall( 3896 Args, CD, Ctor_Complete, ExtraArgs); 3897 CGF.EmitCall(CalleeInfo, CalleeFn, ReturnValueSlot(), Args, CD); 3898 3899 Cleanups.ForceCleanup(); 3900 3901 // Emit the ret instruction, remove any temporary instructions created for the 3902 // aid of CodeGen. 3903 CGF.FinishFunction(SourceLocation()); 3904 3905 return ThunkFn; 3906 } 3907 3908 llvm::Constant *MicrosoftCXXABI::getCatchableType(QualType T, 3909 uint32_t NVOffset, 3910 int32_t VBPtrOffset, 3911 uint32_t VBIndex) { 3912 assert(!T->isReferenceType()); 3913 3914 CXXRecordDecl *RD = T->getAsCXXRecordDecl(); 3915 const CXXConstructorDecl *CD = 3916 RD ? CGM.getContext().getCopyConstructorForExceptionObject(RD) : nullptr; 3917 CXXCtorType CT = Ctor_Complete; 3918 if (CD) 3919 if (!hasDefaultCXXMethodCC(getContext(), CD) || CD->getNumParams() != 1) 3920 CT = Ctor_CopyingClosure; 3921 3922 uint32_t Size = getContext().getTypeSizeInChars(T).getQuantity(); 3923 SmallString<256> MangledName; 3924 { 3925 llvm::raw_svector_ostream Out(MangledName); 3926 getMangleContext().mangleCXXCatchableType(T, CD, CT, Size, NVOffset, 3927 VBPtrOffset, VBIndex, Out); 3928 } 3929 if (llvm::GlobalVariable *GV = CGM.getModule().getNamedGlobal(MangledName)) 3930 return getImageRelativeConstant(GV); 3931 3932 // The TypeDescriptor is used by the runtime to determine if a catch handler 3933 // is appropriate for the exception object. 3934 llvm::Constant *TD = getImageRelativeConstant(getAddrOfRTTIDescriptor(T)); 3935 3936 // The runtime is responsible for calling the copy constructor if the 3937 // exception is caught by value. 3938 llvm::Constant *CopyCtor; 3939 if (CD) { 3940 if (CT == Ctor_CopyingClosure) 3941 CopyCtor = getAddrOfCXXCtorClosure(CD, Ctor_CopyingClosure); 3942 else 3943 CopyCtor = CGM.getAddrOfCXXStructor(CD, StructorType::Complete); 3944 3945 CopyCtor = llvm::ConstantExpr::getBitCast(CopyCtor, CGM.Int8PtrTy); 3946 } else { 3947 CopyCtor = llvm::Constant::getNullValue(CGM.Int8PtrTy); 3948 } 3949 CopyCtor = getImageRelativeConstant(CopyCtor); 3950 3951 bool IsScalar = !RD; 3952 bool HasVirtualBases = false; 3953 bool IsStdBadAlloc = false; // std::bad_alloc is special for some reason. 3954 QualType PointeeType = T; 3955 if (T->isPointerType()) 3956 PointeeType = T->getPointeeType(); 3957 if (const CXXRecordDecl *RD = PointeeType->getAsCXXRecordDecl()) { 3958 HasVirtualBases = RD->getNumVBases() > 0; 3959 if (IdentifierInfo *II = RD->getIdentifier()) 3960 IsStdBadAlloc = II->isStr("bad_alloc") && RD->isInStdNamespace(); 3961 } 3962 3963 // Encode the relevant CatchableType properties into the Flags bitfield. 3964 // FIXME: Figure out how bits 2 or 8 can get set. 3965 uint32_t Flags = 0; 3966 if (IsScalar) 3967 Flags |= 1; 3968 if (HasVirtualBases) 3969 Flags |= 4; 3970 if (IsStdBadAlloc) 3971 Flags |= 16; 3972 3973 llvm::Constant *Fields[] = { 3974 llvm::ConstantInt::get(CGM.IntTy, Flags), // Flags 3975 TD, // TypeDescriptor 3976 llvm::ConstantInt::get(CGM.IntTy, NVOffset), // NonVirtualAdjustment 3977 llvm::ConstantInt::get(CGM.IntTy, VBPtrOffset), // OffsetToVBPtr 3978 llvm::ConstantInt::get(CGM.IntTy, VBIndex), // VBTableIndex 3979 llvm::ConstantInt::get(CGM.IntTy, Size), // Size 3980 CopyCtor // CopyCtor 3981 }; 3982 llvm::StructType *CTType = getCatchableTypeType(); 3983 auto *GV = new llvm::GlobalVariable( 3984 CGM.getModule(), CTType, /*Constant=*/true, getLinkageForRTTI(T), 3985 llvm::ConstantStruct::get(CTType, Fields), MangledName); 3986 GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 3987 GV->setSection(".xdata"); 3988 if (GV->isWeakForLinker()) 3989 GV->setComdat(CGM.getModule().getOrInsertComdat(GV->getName())); 3990 return getImageRelativeConstant(GV); 3991 } 3992 3993 llvm::GlobalVariable *MicrosoftCXXABI::getCatchableTypeArray(QualType T) { 3994 assert(!T->isReferenceType()); 3995 3996 // See if we've already generated a CatchableTypeArray for this type before. 3997 llvm::GlobalVariable *&CTA = CatchableTypeArrays[T]; 3998 if (CTA) 3999 return CTA; 4000 4001 // Ensure that we don't have duplicate entries in our CatchableTypeArray by 4002 // using a SmallSetVector. Duplicates may arise due to virtual bases 4003 // occurring more than once in the hierarchy. 4004 llvm::SmallSetVector<llvm::Constant *, 2> CatchableTypes; 4005 4006 // C++14 [except.handle]p3: 4007 // A handler is a match for an exception object of type E if [...] 4008 // - the handler is of type cv T or cv T& and T is an unambiguous public 4009 // base class of E, or 4010 // - the handler is of type cv T or const T& where T is a pointer type and 4011 // E is a pointer type that can be converted to T by [...] 4012 // - a standard pointer conversion (4.10) not involving conversions to 4013 // pointers to private or protected or ambiguous classes 4014 const CXXRecordDecl *MostDerivedClass = nullptr; 4015 bool IsPointer = T->isPointerType(); 4016 if (IsPointer) 4017 MostDerivedClass = T->getPointeeType()->getAsCXXRecordDecl(); 4018 else 4019 MostDerivedClass = T->getAsCXXRecordDecl(); 4020 4021 // Collect all the unambiguous public bases of the MostDerivedClass. 4022 if (MostDerivedClass) { 4023 const ASTContext &Context = getContext(); 4024 const ASTRecordLayout &MostDerivedLayout = 4025 Context.getASTRecordLayout(MostDerivedClass); 4026 MicrosoftVTableContext &VTableContext = CGM.getMicrosoftVTableContext(); 4027 SmallVector<MSRTTIClass, 8> Classes; 4028 serializeClassHierarchy(Classes, MostDerivedClass); 4029 Classes.front().initialize(/*Parent=*/nullptr, /*Specifier=*/nullptr); 4030 detectAmbiguousBases(Classes); 4031 for (const MSRTTIClass &Class : Classes) { 4032 // Skip any ambiguous or private bases. 4033 if (Class.Flags & 4034 (MSRTTIClass::IsPrivateOnPath | MSRTTIClass::IsAmbiguous)) 4035 continue; 4036 // Write down how to convert from a derived pointer to a base pointer. 4037 uint32_t OffsetInVBTable = 0; 4038 int32_t VBPtrOffset = -1; 4039 if (Class.VirtualRoot) { 4040 OffsetInVBTable = 4041 VTableContext.getVBTableIndex(MostDerivedClass, Class.VirtualRoot)*4; 4042 VBPtrOffset = MostDerivedLayout.getVBPtrOffset().getQuantity(); 4043 } 4044 4045 // Turn our record back into a pointer if the exception object is a 4046 // pointer. 4047 QualType RTTITy = QualType(Class.RD->getTypeForDecl(), 0); 4048 if (IsPointer) 4049 RTTITy = Context.getPointerType(RTTITy); 4050 CatchableTypes.insert(getCatchableType(RTTITy, Class.OffsetInVBase, 4051 VBPtrOffset, OffsetInVBTable)); 4052 } 4053 } 4054 4055 // C++14 [except.handle]p3: 4056 // A handler is a match for an exception object of type E if 4057 // - The handler is of type cv T or cv T& and E and T are the same type 4058 // (ignoring the top-level cv-qualifiers) 4059 CatchableTypes.insert(getCatchableType(T)); 4060 4061 // C++14 [except.handle]p3: 4062 // A handler is a match for an exception object of type E if 4063 // - the handler is of type cv T or const T& where T is a pointer type and 4064 // E is a pointer type that can be converted to T by [...] 4065 // - a standard pointer conversion (4.10) not involving conversions to 4066 // pointers to private or protected or ambiguous classes 4067 // 4068 // C++14 [conv.ptr]p2: 4069 // A prvalue of type "pointer to cv T," where T is an object type, can be 4070 // converted to a prvalue of type "pointer to cv void". 4071 if (IsPointer && T->getPointeeType()->isObjectType()) 4072 CatchableTypes.insert(getCatchableType(getContext().VoidPtrTy)); 4073 4074 // C++14 [except.handle]p3: 4075 // A handler is a match for an exception object of type E if [...] 4076 // - the handler is of type cv T or const T& where T is a pointer or 4077 // pointer to member type and E is std::nullptr_t. 4078 // 4079 // We cannot possibly list all possible pointer types here, making this 4080 // implementation incompatible with the standard. However, MSVC includes an 4081 // entry for pointer-to-void in this case. Let's do the same. 4082 if (T->isNullPtrType()) 4083 CatchableTypes.insert(getCatchableType(getContext().VoidPtrTy)); 4084 4085 uint32_t NumEntries = CatchableTypes.size(); 4086 llvm::Type *CTType = 4087 getImageRelativeType(getCatchableTypeType()->getPointerTo()); 4088 llvm::ArrayType *AT = llvm::ArrayType::get(CTType, NumEntries); 4089 llvm::StructType *CTAType = getCatchableTypeArrayType(NumEntries); 4090 llvm::Constant *Fields[] = { 4091 llvm::ConstantInt::get(CGM.IntTy, NumEntries), // NumEntries 4092 llvm::ConstantArray::get( 4093 AT, llvm::makeArrayRef(CatchableTypes.begin(), 4094 CatchableTypes.end())) // CatchableTypes 4095 }; 4096 SmallString<256> MangledName; 4097 { 4098 llvm::raw_svector_ostream Out(MangledName); 4099 getMangleContext().mangleCXXCatchableTypeArray(T, NumEntries, Out); 4100 } 4101 CTA = new llvm::GlobalVariable( 4102 CGM.getModule(), CTAType, /*Constant=*/true, getLinkageForRTTI(T), 4103 llvm::ConstantStruct::get(CTAType, Fields), MangledName); 4104 CTA->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 4105 CTA->setSection(".xdata"); 4106 if (CTA->isWeakForLinker()) 4107 CTA->setComdat(CGM.getModule().getOrInsertComdat(CTA->getName())); 4108 return CTA; 4109 } 4110 4111 llvm::GlobalVariable *MicrosoftCXXABI::getThrowInfo(QualType T) { 4112 bool IsConst, IsVolatile, IsUnaligned; 4113 T = decomposeTypeForEH(getContext(), T, IsConst, IsVolatile, IsUnaligned); 4114 4115 // The CatchableTypeArray enumerates the various (CV-unqualified) types that 4116 // the exception object may be caught as. 4117 llvm::GlobalVariable *CTA = getCatchableTypeArray(T); 4118 // The first field in a CatchableTypeArray is the number of CatchableTypes. 4119 // This is used as a component of the mangled name which means that we need to 4120 // know what it is in order to see if we have previously generated the 4121 // ThrowInfo. 4122 uint32_t NumEntries = 4123 cast<llvm::ConstantInt>(CTA->getInitializer()->getAggregateElement(0U)) 4124 ->getLimitedValue(); 4125 4126 SmallString<256> MangledName; 4127 { 4128 llvm::raw_svector_ostream Out(MangledName); 4129 getMangleContext().mangleCXXThrowInfo(T, IsConst, IsVolatile, IsUnaligned, 4130 NumEntries, Out); 4131 } 4132 4133 // Reuse a previously generated ThrowInfo if we have generated an appropriate 4134 // one before. 4135 if (llvm::GlobalVariable *GV = CGM.getModule().getNamedGlobal(MangledName)) 4136 return GV; 4137 4138 // The RTTI TypeDescriptor uses an unqualified type but catch clauses must 4139 // be at least as CV qualified. Encode this requirement into the Flags 4140 // bitfield. 4141 uint32_t Flags = 0; 4142 if (IsConst) 4143 Flags |= 1; 4144 if (IsVolatile) 4145 Flags |= 2; 4146 if (IsUnaligned) 4147 Flags |= 4; 4148 4149 // The cleanup-function (a destructor) must be called when the exception 4150 // object's lifetime ends. 4151 llvm::Constant *CleanupFn = llvm::Constant::getNullValue(CGM.Int8PtrTy); 4152 if (const CXXRecordDecl *RD = T->getAsCXXRecordDecl()) 4153 if (CXXDestructorDecl *DtorD = RD->getDestructor()) 4154 if (!DtorD->isTrivial()) 4155 CleanupFn = llvm::ConstantExpr::getBitCast( 4156 CGM.getAddrOfCXXStructor(DtorD, StructorType::Complete), 4157 CGM.Int8PtrTy); 4158 // This is unused as far as we can tell, initialize it to null. 4159 llvm::Constant *ForwardCompat = 4160 getImageRelativeConstant(llvm::Constant::getNullValue(CGM.Int8PtrTy)); 4161 llvm::Constant *PointerToCatchableTypes = getImageRelativeConstant( 4162 llvm::ConstantExpr::getBitCast(CTA, CGM.Int8PtrTy)); 4163 llvm::StructType *TIType = getThrowInfoType(); 4164 llvm::Constant *Fields[] = { 4165 llvm::ConstantInt::get(CGM.IntTy, Flags), // Flags 4166 getImageRelativeConstant(CleanupFn), // CleanupFn 4167 ForwardCompat, // ForwardCompat 4168 PointerToCatchableTypes // CatchableTypeArray 4169 }; 4170 auto *GV = new llvm::GlobalVariable( 4171 CGM.getModule(), TIType, /*Constant=*/true, getLinkageForRTTI(T), 4172 llvm::ConstantStruct::get(TIType, Fields), StringRef(MangledName)); 4173 GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global); 4174 GV->setSection(".xdata"); 4175 if (GV->isWeakForLinker()) 4176 GV->setComdat(CGM.getModule().getOrInsertComdat(GV->getName())); 4177 return GV; 4178 } 4179 4180 void MicrosoftCXXABI::emitThrow(CodeGenFunction &CGF, const CXXThrowExpr *E) { 4181 const Expr *SubExpr = E->getSubExpr(); 4182 QualType ThrowType = SubExpr->getType(); 4183 // The exception object lives on the stack and it's address is passed to the 4184 // runtime function. 4185 Address AI = CGF.CreateMemTemp(ThrowType); 4186 CGF.EmitAnyExprToMem(SubExpr, AI, ThrowType.getQualifiers(), 4187 /*IsInit=*/true); 4188 4189 // The so-called ThrowInfo is used to describe how the exception object may be 4190 // caught. 4191 llvm::GlobalVariable *TI = getThrowInfo(ThrowType); 4192 4193 // Call into the runtime to throw the exception. 4194 llvm::Value *Args[] = { 4195 CGF.Builder.CreateBitCast(AI.getPointer(), CGM.Int8PtrTy), 4196 TI 4197 }; 4198 CGF.EmitNoreturnRuntimeCallOrInvoke(getThrowFn(), Args); 4199 } 4200