32#include "llvm/ADT/StringExtras.h"
33#include "llvm/ADT/StringSet.h"
34#include "llvm/IR/Intrinsics.h"
42struct VBTableGlobals {
44 SmallVector<llvm::GlobalVariable *, 2> Globals;
47class MicrosoftCXXABI :
public CGCXXABI {
49 MicrosoftCXXABI(CodeGenModule &CGM)
50 : CGCXXABI(CGM), BaseClassDescriptorType(
nullptr),
51 ClassHierarchyDescriptorType(
nullptr),
56 "visibility export mapping option unimplemented in this ABI");
59 bool HasThisReturn(GlobalDecl GD)
const override;
60 bool hasMostDerivedReturn(GlobalDecl GD)
const override;
66 bool isSRetParameterAfterThis()
const override {
return true; }
68 bool isThisCompleteObject(GlobalDecl GD)
const override {
80 case Dtor_Comdat: llvm_unreachable(
"emitting dtor comdat as function?");
82 llvm_unreachable(
"unexpected unified dtor type");
84 llvm_unreachable(
"bad dtor kind");
91 size_t getSrcArgforCopyCtor(
const CXXConstructorDecl *CD,
92 FunctionArgList &Args)
const override {
93 assert(Args.size() >= 2 &&
94 "expected the arglist to have at least two args!");
103 std::vector<CharUnits> getVBPtrOffsets(
const CXXRecordDecl *RD)
override {
104 std::vector<CharUnits> VBPtrOffsets;
105 const ASTContext &Context = getContext();
106 const ASTRecordLayout &Layout = Context.getASTRecordLayout(RD);
108 const VBTableGlobals &VBGlobals = enumerateVBTables(RD);
109 for (
const std::unique_ptr<VPtrInfo> &VBT : *VBGlobals.VBTables) {
110 const ASTRecordLayout &SubobjectLayout =
111 Context.getASTRecordLayout(VBT->IntroducingObject);
112 CharUnits Offs = VBT->NonVirtualOffset;
114 if (VBT->getVBaseWithVPtr())
116 VBPtrOffsets.push_back(Offs);
118 llvm::array_pod_sort(VBPtrOffsets.begin(), VBPtrOffsets.end());
122 StringRef GetPureVirtualCallName()
override {
return "_purecall"; }
123 StringRef GetDeletedVirtualCallName()
override {
return "_purecall"; }
125 void emitVirtualObjectDelete(CodeGenFunction &CGF,
const CXXDeleteExpr *DE,
126 Address Ptr, QualType ElementType,
127 const CXXDestructorDecl *Dtor)
override;
129 void emitRethrow(CodeGenFunction &CGF,
bool isNoReturn)
override;
130 void emitThrow(CodeGenFunction &CGF,
const CXXThrowExpr *E)
override;
132 void emitBeginCatch(CodeGenFunction &CGF,
const CXXCatchStmt *
C)
override;
134 llvm::GlobalVariable *getMSCompleteObjectLocator(
const CXXRecordDecl *RD,
135 const VPtrInfo &Info);
137 llvm::Constant *getAddrOfRTTIDescriptor(QualType Ty)
override;
139 getAddrOfCXXCatchHandlerType(QualType Ty, QualType CatchHandlerType)
override;
142 CatchTypeInfo getCatchAllTypeInfo()
override {
145 if (getContext().getLangOpts().EHAsynch)
146 return CatchTypeInfo{
nullptr, 0};
148 return CatchTypeInfo{
nullptr, 0x40};
151 bool shouldTypeidBeNullChecked(QualType SrcRecordTy)
override;
152 void EmitBadTypeidCall(CodeGenFunction &CGF)
override;
153 llvm::Value *EmitTypeid(CodeGenFunction &CGF, QualType SrcRecordTy,
155 llvm::Type *StdTypeInfoPtrTy)
override;
157 bool shouldDynamicCastCallBeNullChecked(
bool SrcIsPtr,
158 QualType SrcRecordTy)
override;
160 bool shouldEmitExactDynamicCast(QualType DestRecordTy)
override {
164 std::optional<ExactDynamicCastInfo>
165 getExactDynamicCastInfo(QualType SrcRecordTy, QualType DestTy,
166 QualType DestRecordTy)
override {
167 llvm_unreachable(
"unsupported");
170 QualType SrcRecordTy, QualType DestTy,
171 QualType DestRecordTy,
172 const ExactDynamicCastInfo &CastInfo,
173 llvm::BasicBlock *CastSuccess,
174 llvm::BasicBlock *CastFail)
override {
175 llvm_unreachable(
"unsupported");
178 llvm::Value *emitDynamicCastCall(CodeGenFunction &CGF, Address
Value,
179 QualType SrcRecordTy, QualType DestTy,
180 QualType DestRecordTy,
181 llvm::BasicBlock *CastEnd)
override;
184 QualType SrcRecordTy)
override;
186 bool EmitBadCastCall(CodeGenFunction &CGF)
override;
187 bool canSpeculativelyEmitVTable(
const CXXRecordDecl *RD)
const override {
192 GetVirtualBaseClassOffset(CodeGenFunction &CGF, Address This,
193 const CXXRecordDecl *ClassDecl,
194 const CXXRecordDecl *BaseClassDecl)
override;
197 EmitCtorCompleteObjectHandler(CodeGenFunction &CGF,
198 const CXXRecordDecl *RD)
override;
201 EmitDtorCompleteObjectHandler(CodeGenFunction &CGF);
203 void initializeHiddenVirtualInheritanceMembers(CodeGenFunction &CGF,
204 const CXXRecordDecl *RD)
override;
206 void EmitCXXConstructors(
const CXXConstructorDecl *D)
override;
240 AddedStructorArgCounts
241 buildStructorSignature(GlobalDecl GD,
242 SmallVectorImpl<CanQualType> &ArgTys)
override;
245 bool useThunkForDtorVariant(
const CXXDestructorDecl *Dtor,
250 void setCXXDestructorDLLStorage(llvm::GlobalValue *GV,
251 const CXXDestructorDecl *Dtor,
254 llvm::GlobalValue::LinkageTypes
258 void EmitCXXDestructors(
const CXXDestructorDecl *D)
override;
260 const CXXRecordDecl *getThisArgumentTypeForMethod(GlobalDecl GD)
override {
263 if (MD->isVirtual()) {
264 GlobalDecl LookupGD = GD;
265 if (
const auto *DD = dyn_cast<CXXDestructorDecl>(MD)) {
269 return MD->getParent();
273 LookupGD = GlobalDecl(
279 MethodVFTableLocation ML =
291 return MD->getParent();
295 adjustThisArgumentForVirtualFunctionCall(CodeGenFunction &CGF, GlobalDecl GD,
297 bool VirtualCall)
override;
299 void addImplicitStructorParams(CodeGenFunction &CGF, QualType &ResTy,
300 FunctionArgList &Params)
override;
302 void EmitInstanceFunctionProlog(CodeGenFunction &CGF)
override;
304 AddedStructorArgs getImplicitConstructorArgs(CodeGenFunction &CGF,
305 const CXXConstructorDecl *D,
311 const CXXDestructorDecl *DD,
316 void EmitDestructorCall(CodeGenFunction &CGF,
const CXXDestructorDecl *DD,
319 QualType ThisTy)
override;
321 void emitVTableTypeMetadata(
const VPtrInfo &Info,
const CXXRecordDecl *RD,
322 llvm::GlobalVariable *VTable);
324 void emitVTableDefinitions(CodeGenVTables &CGVT,
325 const CXXRecordDecl *RD)
override;
327 bool isVirtualOffsetNeededForVTableField(CodeGenFunction &CGF,
328 CodeGenFunction::VPtr Vptr)
override;
332 bool doStructorsInitializeVPtrs(
const CXXRecordDecl *VTableClass)
override {
333 return !VTableClass->
hasAttr<MSNoVTableAttr>();
337 getVTableAddressPoint(BaseSubobject Base,
338 const CXXRecordDecl *VTableClass)
override;
340 llvm::Value *getVTableAddressPointInStructor(
341 CodeGenFunction &CGF,
const CXXRecordDecl *VTableClass,
342 BaseSubobject Base,
const CXXRecordDecl *NearestVBase)
override;
344 llvm::GlobalVariable *getAddrOfVTable(
const CXXRecordDecl *RD,
345 CharUnits VPtrOffset)
override;
347 CGCallee getVirtualFunctionPointer(CodeGenFunction &CGF, GlobalDecl GD,
348 Address This, llvm::Type *Ty,
349 SourceLocation Loc)
override;
352 EmitVirtualDestructorCall(CodeGenFunction &CGF,
const CXXDestructorDecl *Dtor,
354 DeleteOrMemberCallExpr E,
355 llvm::CallBase **CallOrInvoke)
override;
357 void adjustCallArgsForDestructorThunk(CodeGenFunction &CGF, GlobalDecl GD,
358 CallArgList &CallArgs)
override {
361 "Only vector deleting destructor thunks are available in this ABI");
366 void emitVirtualInheritanceTables(
const CXXRecordDecl *RD)
override;
368 llvm::GlobalVariable *
369 getAddrOfVBTable(
const VPtrInfo &VBT,
const CXXRecordDecl *RD,
370 llvm::GlobalVariable::LinkageTypes
Linkage);
372 llvm::GlobalVariable *
373 getAddrOfVirtualDisplacementMap(
const CXXRecordDecl *SrcRD,
374 const CXXRecordDecl *DstRD) {
375 SmallString<256> OutName;
376 llvm::raw_svector_ostream
Out(OutName);
377 getMangleContext().mangleCXXVirtualDisplacementMap(SrcRD, DstRD, Out);
378 StringRef MangledName = OutName.str();
380 if (
auto *VDispMap = CGM.
getModule().getNamedGlobal(MangledName))
385 SmallVector<llvm::Constant *, 4> Map(NumEntries,
386 llvm::PoisonValue::get(CGM.
IntTy));
387 Map[0] = llvm::ConstantInt::get(CGM.
IntTy, 0);
388 bool AnyDifferent =
false;
389 for (
const auto &I : SrcRD->
vbases()) {
390 const CXXRecordDecl *VBase = I.getType()->getAsCXXRecordDecl();
396 Map[SrcVBIndex] = llvm::ConstantInt::get(CGM.
IntTy, DstVBIndex * 4);
397 AnyDifferent |= SrcVBIndex != DstVBIndex;
403 llvm::ArrayType *VDispMapTy = llvm::ArrayType::get(CGM.
IntTy, Map.size());
404 llvm::Constant *
Init = llvm::ConstantArray::get(VDispMapTy, Map);
405 llvm::GlobalValue::LinkageTypes
Linkage =
407 ? llvm::GlobalValue::LinkOnceODRLinkage
408 : llvm::GlobalValue::InternalLinkage;
409 auto *VDispMap =
new llvm::GlobalVariable(
415 void emitVBTableDefinition(
const VPtrInfo &VBT,
const CXXRecordDecl *RD,
416 llvm::GlobalVariable *GV)
const;
418 void setThunkLinkage(llvm::Function *Thunk,
bool ForVTable,
419 GlobalDecl GD,
bool ReturnAdjustment)
override {
424 Thunk->setLinkage(llvm::GlobalValue::InternalLinkage);
425 else if (ReturnAdjustment)
426 Thunk->setLinkage(llvm::GlobalValue::WeakODRLinkage);
428 Thunk->setLinkage(llvm::GlobalValue::LinkOnceODRLinkage);
431 bool exportThunk()
override {
return false; }
433 llvm::Value *performThisAdjustment(CodeGenFunction &CGF, Address This,
434 const CXXRecordDecl * ,
435 const ThunkInfo &TI)
override;
438 const CXXRecordDecl * ,
439 const ReturnAdjustment &RA)
override;
441 void EmitThreadLocalInitFuncs(
442 CodeGenModule &CGM, ArrayRef<const VarDecl *> CXXThreadLocals,
443 ArrayRef<llvm::Function *> CXXThreadLocalInits,
444 ArrayRef<const VarDecl *> CXXThreadLocalInitVars)
override;
446 bool usesThreadWrapperFunction(
const VarDecl *VD)
const override {
447 return getContext().getLangOpts().isCompatibleWithMSVC(
448 LangOptions::MSVC2019_5) &&
450 (!isEmittedWithConstantInitializer(VD) || mayNeedDestruction(VD));
452 LValue EmitThreadLocalVarDeclLValue(CodeGenFunction &CGF,
const VarDecl *VD,
453 QualType LValType)
override;
455 void EmitGuardedInit(CodeGenFunction &CGF,
const VarDecl &D,
456 llvm::GlobalVariable *DeclPtr,
457 bool PerformInit)
override;
458 void registerGlobalDtor(CodeGenFunction &CGF,
const VarDecl &D,
459 llvm::FunctionCallee Dtor,
460 llvm::Constant *
Addr)
override;
485 bool requiresArrayCookie(
const CXXDeleteExpr *
expr,
486 QualType elementType)
override;
487 bool requiresArrayCookie(
const CXXNewExpr *
expr)
override;
488 CharUnits getArrayCookieSizeImpl(QualType
type)
override;
489 Address InitializeArrayCookie(CodeGenFunction &CGF,
491 llvm::Value *NumElements,
492 const CXXNewExpr *
expr,
493 QualType ElementType)
override;
494 llvm::Value *readArrayCookieImpl(CodeGenFunction &CGF,
496 CharUnits cookieSize)
override;
498 friend struct MSRTTIBuilder;
500 bool isImageRelative()
const {
505 llvm::StructType *getTypeDescriptorType(StringRef TypeInfoString) {
506 llvm::SmallString<32> TDTypeName(
"rtti.TypeDescriptor");
507 TDTypeName += llvm::utostr(TypeInfoString.size());
508 llvm::StructType *&TypeDescriptorType =
509 TypeDescriptorTypeMap[TypeInfoString.size()];
510 if (TypeDescriptorType)
511 return TypeDescriptorType;
512 llvm::Type *FieldTypes[] = {
515 llvm::ArrayType::get(CGM.
Int8Ty, TypeInfoString.size() + 1)};
517 llvm::StructType::create(CGM.
getLLVMContext(), FieldTypes, TDTypeName);
518 return TypeDescriptorType;
521 llvm::Type *getImageRelativeType(llvm::Type *PtrType) {
522 if (!isImageRelative())
527 llvm::StructType *getBaseClassDescriptorType() {
528 if (BaseClassDescriptorType)
529 return BaseClassDescriptorType;
530 llvm::Type *FieldTypes[] = {
539 BaseClassDescriptorType = llvm::StructType::create(
541 return BaseClassDescriptorType;
544 llvm::StructType *getClassHierarchyDescriptorType() {
545 if (ClassHierarchyDescriptorType)
546 return ClassHierarchyDescriptorType;
550 ClassHierarchyDescriptorType =
551 llvm::StructType::create(FieldTypes,
"rtti.ClassHierarchyDescriptor");
552 return ClassHierarchyDescriptorType;
555 llvm::StructType *getCompleteObjectLocatorType() {
556 if (CompleteObjectLocatorType)
557 return CompleteObjectLocatorType;
558 llvm::Type *FieldTypes[] = {
564 getImageRelativeType(CGM.
VoidTy),
566 llvm::ArrayRef<llvm::Type *> FieldTypesRef(FieldTypes);
567 if (!isImageRelative())
568 FieldTypesRef = FieldTypesRef.drop_back();
569 CompleteObjectLocatorType =
570 llvm::StructType::create(FieldTypesRef,
"rtti.CompleteObjectLocator");
571 return CompleteObjectLocatorType;
574 llvm::GlobalVariable *getImageBase() {
575 StringRef Name =
"__ImageBase";
576 if (llvm::GlobalVariable *GV = CGM.
getModule().getNamedGlobal(Name))
581 llvm::GlobalValue::ExternalLinkage,
587 llvm::Constant *getImageRelativeConstant(llvm::Constant *PtrVal) {
588 if (!isImageRelative())
591 if (PtrVal->isNullValue())
592 return llvm::Constant::getNullValue(CGM.
IntTy);
594 llvm::Constant *ImageBaseAsInt =
595 llvm::ConstantExpr::getPtrToInt(getImageBase(), CGM.
IntPtrTy);
596 llvm::Constant *PtrValAsInt =
597 llvm::ConstantExpr::getPtrToInt(PtrVal, CGM.
IntPtrTy);
598 llvm::Constant *Diff =
599 llvm::ConstantExpr::getSub(PtrValAsInt, ImageBaseAsInt,
601 return llvm::ConstantExpr::getTrunc(Diff, CGM.
IntTy);
605 MicrosoftMangleContext &getMangleContext() {
609 llvm::Constant *getZeroInt() {
610 return llvm::ConstantInt::get(CGM.
IntTy, 0);
613 llvm::Constant *getAllOnesInt() {
614 return llvm::Constant::getAllOnesValue(CGM.
IntTy);
617 CharUnits getVirtualFunctionPrologueThisAdjustment(GlobalDecl GD)
override;
620 GetNullMemberPointerFields(
const MemberPointerType *MPT,
621 llvm::SmallVectorImpl<llvm::Constant *> &fields);
626 llvm::Value *GetVBaseOffsetFromVBPtr(CodeGenFunction &CGF,
628 llvm::Value *VBPtrOffset,
629 llvm::Value *VBTableOffset,
630 llvm::Value **VBPtr =
nullptr);
632 llvm::Value *GetVBaseOffsetFromVBPtr(CodeGenFunction &CGF,
635 int32_t VBTableOffset,
636 llvm::Value **VBPtr =
nullptr) {
637 assert(VBTableOffset % 4 == 0 &&
"should be byte offset into table of i32s");
638 llvm::Value *VBPOffset =
639 llvm::ConstantInt::getSigned(CGM.
IntTy, VBPtrOffset);
640 llvm::Value *VBTOffset = llvm::ConstantInt::get(CGM.
IntTy, VBTableOffset);
641 return GetVBaseOffsetFromVBPtr(CGF, Base, VBPOffset, VBTOffset, VBPtr);
644 std::tuple<Address, llvm::Value *, const CXXRecordDecl *>
645 performBaseAdjustment(CodeGenFunction &CGF, Address
Value,
646 QualType SrcRecordTy);
650 llvm::Value *AdjustVirtualBase(CodeGenFunction &CGF,
const Expr *E,
651 const CXXRecordDecl *RD, Address Base,
652 llvm::Value *VirtualBaseAdjustmentOffset,
653 llvm::Value *VBPtrOffset );
657 llvm::Constant *EmitFullMemberPointer(llvm::Constant *FirstField,
658 bool IsMemberFunction,
659 const CXXRecordDecl *RD,
660 CharUnits NonVirtualBaseAdjustment,
661 unsigned VBTableIndex);
663 bool MemberPointerConstantIsNull(
const MemberPointerType *MPT,
667 void EmitVBPtrStores(CodeGenFunction &CGF,
const CXXRecordDecl *RD);
670 const VBTableGlobals &enumerateVBTables(
const CXXRecordDecl *RD);
673 llvm::Function *EmitVirtualMemPtrThunk(
const CXXMethodDecl *MD,
674 const MethodVFTableLocation &ML);
676 llvm::Constant *EmitMemberDataPointer(
const CXXRecordDecl *RD,
680 llvm::Type *ConvertMemberPointerType(
const MemberPointerType *MPT)
override;
682 bool isZeroInitializable(
const MemberPointerType *MPT)
override;
684 bool isMemberPointerConvertible(
const MemberPointerType *MPT)
const override {
686 return RD->
hasAttr<MSInheritanceAttr>();
689 llvm::Constant *EmitNullMemberPointer(
const MemberPointerType *MPT)
override;
691 llvm::Constant *EmitMemberDataPointer(
const MemberPointerType *MPT,
692 CharUnits offset)
override;
693 llvm::Constant *EmitMemberFunctionPointer(
const CXXMethodDecl *MD)
override;
694 llvm::Constant *EmitMemberPointer(
const APValue &MP, QualType MPT)
override;
696 llvm::Value *EmitMemberPointerComparison(CodeGenFunction &CGF,
699 const MemberPointerType *MPT,
700 bool Inequality)
override;
702 llvm::Value *EmitMemberPointerIsNotNull(CodeGenFunction &CGF,
704 const MemberPointerType *MPT)
override;
706 llvm::Value *EmitMemberDataPointerAddress(CodeGenFunction &CGF,
const Expr *E,
707 Address Base, llvm::Value *MemPtr,
708 const MemberPointerType *MPT,
709 bool IsInBounds)
override;
711 llvm::Value *EmitNonNullMemberPointerConversion(
712 const MemberPointerType *SrcTy,
const MemberPointerType *DstTy,
715 CGBuilderTy &Builder);
717 llvm::Value *EmitMemberPointerConversion(CodeGenFunction &CGF,
719 llvm::Value *Src)
override;
721 llvm::Constant *EmitMemberPointerConversion(
const CastExpr *E,
722 llvm::Constant *Src)
override;
724 llvm::Constant *EmitMemberPointerConversion(
725 const MemberPointerType *SrcTy,
const MemberPointerType *DstTy,
730 EmitLoadOfMemberFunctionPointer(CodeGenFunction &CGF,
const Expr *E,
731 Address This, llvm::Value *&ThisPtrForCall,
733 const MemberPointerType *MPT)
override;
735 void emitCXXStructor(GlobalDecl GD)
override;
737 llvm::StructType *getCatchableTypeType() {
738 if (CatchableTypeType)
739 return CatchableTypeType;
740 llvm::Type *FieldTypes[] = {
749 CatchableTypeType = llvm::StructType::create(
751 return CatchableTypeType;
754 llvm::StructType *getCatchableTypeArrayType(uint32_t NumEntries) {
755 llvm::StructType *&CatchableTypeArrayType =
756 CatchableTypeArrayTypeMap[NumEntries];
757 if (CatchableTypeArrayType)
758 return CatchableTypeArrayType;
760 llvm::SmallString<23> CTATypeName(
"eh.CatchableTypeArray.");
761 CTATypeName += llvm::utostr(NumEntries);
762 llvm::Type *CTType = getImageRelativeType(CGM.
DefaultPtrTy);
763 llvm::Type *FieldTypes[] = {
765 llvm::ArrayType::get(CTType, NumEntries)
767 CatchableTypeArrayType =
768 llvm::StructType::create(CGM.
getLLVMContext(), FieldTypes, CTATypeName);
769 return CatchableTypeArrayType;
772 llvm::StructType *getThrowInfoType() {
774 return ThrowInfoType;
775 llvm::Type *FieldTypes[] = {
781 ThrowInfoType = llvm::StructType::create(CGM.
getLLVMContext(), FieldTypes,
783 return ThrowInfoType;
790 llvm::FunctionType *FTy =
791 llvm::FunctionType::get(CGM.
VoidTy, Args,
false);
792 llvm::FunctionCallee Throw =
796 if (
auto *Fn = dyn_cast<llvm::Function>(Throw.getCallee()))
797 Fn->setCallingConv(llvm::CallingConv::X86_StdCall);
802 llvm::Function *getAddrOfCXXCtorClosure(
const CXXConstructorDecl *CD,
805 llvm::Constant *getCatchableType(QualType T,
806 uint32_t NVOffset = 0,
807 int32_t VBPtrOffset = -1,
808 uint32_t VBIndex = 0);
810 llvm::GlobalVariable *getCatchableTypeArray(QualType T);
812 llvm::GlobalVariable *getThrowInfo(QualType T)
override;
814 std::pair<llvm::Value *, const CXXRecordDecl *>
815 LoadVTablePtr(CodeGenFunction &CGF, Address This,
816 const CXXRecordDecl *RD)
override;
819 isPermittedToBeHomogeneousAggregate(
const CXXRecordDecl *RD)
const override;
822 typedef std::pair<const CXXRecordDecl *, CharUnits> VFTableIdTy;
823 typedef llvm::DenseMap<VFTableIdTy, llvm::GlobalVariable *> VTablesMapTy;
824 typedef llvm::DenseMap<VFTableIdTy, llvm::GlobalValue *> VFTablesMapTy;
826 VFTablesMapTy VFTablesMap;
827 VTablesMapTy VTablesMap;
830 llvm::SmallPtrSet<const CXXRecordDecl *, 4> DeferredVFTables;
834 llvm::DenseMap<const CXXRecordDecl *, VBTableGlobals> VBTablesMap;
839 GuardInfo() =
default;
840 llvm::GlobalVariable *Guard =
nullptr;
841 unsigned BitIndex = 0;
846 llvm::DenseMap<const DeclContext *, GuardInfo> GuardVariableMap;
847 llvm::DenseMap<const DeclContext *, GuardInfo> ThreadLocalGuardVariableMap;
848 llvm::DenseMap<const DeclContext *, unsigned> ThreadSafeGuardNumMap;
850 llvm::DenseMap<size_t, llvm::StructType *> TypeDescriptorTypeMap;
851 llvm::StructType *BaseClassDescriptorType;
852 llvm::StructType *ClassHierarchyDescriptorType;
853 llvm::StructType *CompleteObjectLocatorType;
855 llvm::DenseMap<QualType, llvm::GlobalVariable *> CatchableTypeArrays;
857 llvm::StructType *CatchableTypeType;
858 llvm::DenseMap<uint32_t, llvm::StructType *> CatchableTypeArrayTypeMap;
859 llvm::StructType *ThrowInfoType;
865MicrosoftCXXABI::getRecordArgABI(
const CXXRecordDecl *RD)
const {
877 case llvm::Triple::thumb:
883 case llvm::Triple::x86: {
889 getContext().getTypeInfo(getContext().getCanonicalTagType(RD));
895 return RAA_DirectInMemory;
898 case llvm::Triple::x86_64:
899 case llvm::Triple::aarch64:
903 llvm_unreachable(
"invalid enum");
906void MicrosoftCXXABI::emitVirtualObjectDelete(CodeGenFunction &CGF,
907 const CXXDeleteExpr *DE,
909 QualType ElementType,
910 const CXXDestructorDecl *Dtor) {
913 if (!getContext().getTargetInfo().callGlobalDeleteInDeletingDtor(
914 getContext().getLangOpts())) {
917 llvm::Value *MDThis =
918 EmitVirtualDestructorCall(CGF, Dtor, DtorType, Ptr, DE,
928void MicrosoftCXXABI::emitRethrow(CodeGenFunction &CGF,
bool isNoReturn) {
929 llvm::Value *Args[] = {llvm::ConstantPointerNull::get(CGM.
Int8PtrTy),
938void MicrosoftCXXABI::emitBeginCatch(CodeGenFunction &CGF,
939 const CXXCatchStmt *S) {
943 llvm::BasicBlock *CatchPadBB = CGF.
Builder.GetInsertBlock();
944 llvm::CatchPadInst *CPI =
956 CPI->setArgOperand(2,
var.getObjectAddress(CGF).emitRawPointer(CGF));
964std::tuple<Address, llvm::Value *, const CXXRecordDecl *>
965MicrosoftCXXABI::performBaseAdjustment(CodeGenFunction &CGF, Address
Value,
966 QualType SrcRecordTy) {
969 const ASTContext &Context = getContext();
975 return std::make_tuple(
Value, llvm::ConstantInt::get(CGF.
Int32Ty, 0),
980 const CXXRecordDecl *PolymorphicBase =
nullptr;
981 for (
auto &Base : SrcDecl->
vbases()) {
982 const CXXRecordDecl *BaseDecl =
Base.getType()->getAsCXXRecordDecl();
984 PolymorphicBase = BaseDecl;
988 assert(PolymorphicBase &&
"polymorphic class has no apparent vfptr?");
990 llvm::Value *Offset =
991 GetVirtualBaseClassOffset(CGF,
Value, SrcDecl, PolymorphicBase);
993 Value.getElementType(),
Value.emitRawPointer(CGF), Offset);
994 CharUnits VBaseAlign =
996 return std::make_tuple(
Address(Ptr, CGF.
Int8Ty, VBaseAlign), Offset,
1000bool MicrosoftCXXABI::shouldTypeidBeNullChecked(QualType SrcRecordTy) {
1002 return !getContext().getASTRecordLayout(SrcDecl).hasExtendableVFPtr();
1006 llvm::Value *Argument) {
1007 llvm::Type *ArgTypes[] = {CGF.
Int8PtrTy};
1008 llvm::FunctionType *FTy =
1009 llvm::FunctionType::get(CGF.
Int8PtrTy, ArgTypes,
false);
1010 llvm::Value *Args[] = {Argument};
1015void MicrosoftCXXABI::EmitBadTypeidCall(CodeGenFunction &CGF) {
1016 llvm::CallBase *
Call =
1018 Call->setDoesNotReturn();
1019 CGF.
Builder.CreateUnreachable();
1022llvm::Value *MicrosoftCXXABI::EmitTypeid(CodeGenFunction &CGF,
1023 QualType SrcRecordTy,
1025 llvm::Type *StdTypeInfoPtrTy) {
1026 std::tie(ThisPtr, std::ignore, std::ignore) =
1027 performBaseAdjustment(CGF, ThisPtr, SrcRecordTy);
1029 return CGF.
Builder.CreateBitCast(Typeid, StdTypeInfoPtrTy);
1032bool MicrosoftCXXABI::shouldDynamicCastCallBeNullChecked(
bool SrcIsPtr,
1033 QualType SrcRecordTy) {
1036 !getContext().getASTRecordLayout(SrcDecl).hasExtendableVFPtr();
1039llvm::Value *MicrosoftCXXABI::emitDynamicCastCall(
1040 CodeGenFunction &CGF, Address This, QualType SrcRecordTy, QualType DestTy,
1041 QualType DestRecordTy, llvm::BasicBlock *CastEnd) {
1042 llvm::Value *SrcRTTI =
1044 llvm::Value *DestRTTI =
1047 llvm::Value *Offset;
1048 std::tie(This, Offset, std::ignore) =
1049 performBaseAdjustment(CGF, This, SrcRecordTy);
1050 llvm::Value *ThisPtr =
This.emitRawPointer(CGF);
1062 llvm::FunctionType::get(CGF.
Int8PtrTy, ArgTypes,
false),
1064 llvm::Value *Args[] = {
1065 ThisPtr, Offset, SrcRTTI, DestRTTI,
1070llvm::Value *MicrosoftCXXABI::emitDynamicCastToVoid(CodeGenFunction &CGF,
1072 QualType SrcRecordTy) {
1073 std::tie(
Value, std::ignore, std::ignore) =
1074 performBaseAdjustment(CGF,
Value, SrcRecordTy);
1078 llvm::Type *ArgTypes[] = {CGF.
Int8PtrTy};
1080 llvm::FunctionType::get(CGF.
Int8PtrTy, ArgTypes,
false),
1082 llvm::Value *Args[] = {
Value.emitRawPointer(CGF)};
1086bool MicrosoftCXXABI::EmitBadCastCall(CodeGenFunction &CGF) {
1090llvm::Value *MicrosoftCXXABI::GetVirtualBaseClassOffset(
1091 CodeGenFunction &CGF, Address This,
const CXXRecordDecl *ClassDecl,
1092 const CXXRecordDecl *BaseClassDecl) {
1093 const ASTContext &Context = getContext();
1096 llvm::Value *VBPtrOffset = llvm::ConstantInt::get(CGM.
PtrDiffTy, VBPtrChars);
1098 CharUnits VBTableChars =
1101 llvm::Value *VBTableOffset =
1104 llvm::Value *VBPtrToNewBase =
1105 GetVBaseOffsetFromVBPtr(CGF, This, VBPtrOffset, VBTableOffset);
1108 return CGF.
Builder.CreateNSWAdd(VBPtrOffset, VBPtrToNewBase);
1111bool MicrosoftCXXABI::HasThisReturn(GlobalDecl GD)
const {
1121bool MicrosoftCXXABI::hasMostDerivedReturn(GlobalDecl GD)
const {
1131 uint64_t NumElts = 0;
1171 if (
auto *Ctor = dyn_cast<CXXConstructorDecl>(D)) {
1172 if (Ctor->isUserProvided())
1174 }
else if (
auto *
Template = dyn_cast<FunctionTemplateDecl>(D)) {
1177 }
else if (
auto *MethodDecl = dyn_cast<CXXMethodDecl>(D)) {
1178 if (MethodDecl->isCopyAssignmentOperator() && MethodDecl->isDeleted())
1187bool MicrosoftCXXABI::classifyReturnType(CGFunctionInfo &FI)
const {
1188 const CXXRecordDecl *RD = FI.
getReturnType()->getAsCXXRecordDecl();
1198 if (isIndirectReturn) {
1220MicrosoftCXXABI::EmitCtorCompleteObjectHandler(CodeGenFunction &CGF,
1221 const CXXRecordDecl *RD) {
1222 llvm::Value *IsMostDerivedClass = getStructorImplicitParamValue(CGF);
1223 assert(IsMostDerivedClass &&
1224 "ctor for a class with virtual bases must have an implicit parameter");
1225 llvm::Value *IsCompleteObject =
1226 CGF.
Builder.CreateIsNotNull(IsMostDerivedClass,
"is_complete_object");
1228 llvm::BasicBlock *CallVbaseCtorsBB = CGF.
createBasicBlock(
"ctor.init_vbases");
1229 llvm::BasicBlock *SkipVbaseCtorsBB = CGF.
createBasicBlock(
"ctor.skip_vbases");
1230 CGF.
Builder.CreateCondBr(IsCompleteObject,
1231 CallVbaseCtorsBB, SkipVbaseCtorsBB);
1236 EmitVBPtrStores(CGF, RD);
1240 return SkipVbaseCtorsBB;
1244MicrosoftCXXABI::EmitDtorCompleteObjectHandler(CodeGenFunction &CGF) {
1245 llvm::Value *IsMostDerivedClass = getStructorImplicitParamValue(CGF);
1246 assert(IsMostDerivedClass &&
1247 "ctor for a class with virtual bases must have an implicit parameter");
1248 llvm::Value *IsCompleteObject =
1249 CGF.
Builder.CreateIsNotNull(IsMostDerivedClass,
"is_complete_object");
1251 llvm::BasicBlock *CallVbaseDtorsBB = CGF.
createBasicBlock(
"Dtor.dtor_vbases");
1252 llvm::BasicBlock *SkipVbaseDtorsBB = CGF.
createBasicBlock(
"Dtor.skip_vbases");
1253 CGF.
Builder.CreateCondBr(IsCompleteObject,
1254 CallVbaseDtorsBB, SkipVbaseDtorsBB);
1259 return SkipVbaseDtorsBB;
1262void MicrosoftCXXABI::initializeHiddenVirtualInheritanceMembers(
1263 CodeGenFunction &CGF,
const CXXRecordDecl *RD) {
1277 const ASTRecordLayout &Layout = getContext().getASTRecordLayout(RD);
1280 CGBuilderTy &Builder = CGF.
Builder;
1282 llvm::Value *Int8This =
nullptr;
1284 for (
const CXXBaseSpecifier &S : RD->
vbases()) {
1285 const CXXRecordDecl *VBase = S.getType()->getAsCXXRecordDecl();
1286 auto I = VBaseMap.find(VBase);
1287 assert(I != VBaseMap.end());
1288 if (!I->second.hasVtorDisp())
1291 llvm::Value *VBaseOffset =
1292 GetVirtualBaseClassOffset(CGF, getThisAddress(CGF), RD, VBase);
1293 uint64_t ConstantVBaseOffset = I->second.VBaseOffset.getQuantity();
1296 llvm::Value *VtorDispValue = Builder.CreateSub(
1297 VBaseOffset, llvm::ConstantInt::get(CGM.
PtrDiffTy, ConstantVBaseOffset),
1299 VtorDispValue = Builder.CreateTruncOrBitCast(VtorDispValue, CGF.
Int32Ty);
1302 Int8This = getThisValue(CGF);
1304 llvm::Value *VtorDispPtr =
1305 Builder.CreateInBoundsGEP(CGF.
Int8Ty, Int8This, VBaseOffset);
1307 VtorDispPtr = Builder.CreateConstGEP1_32(CGF.
Int8Ty, VtorDispPtr, -4);
1309 Builder.CreateAlignedStore(VtorDispValue, VtorDispPtr,
1316 CallingConv ExpectedCallingConv = Context.getDefaultCallingConvention(
1320 return ExpectedCallingConv == ActualCallingConv;
1323void MicrosoftCXXABI::EmitCXXConstructors(
const CXXConstructorDecl *D) {
1335 Fn->setLinkage(llvm::GlobalValue::WeakODRLinkage);
1341void MicrosoftCXXABI::EmitVBPtrStores(CodeGenFunction &CGF,
1342 const CXXRecordDecl *RD) {
1345 const ASTContext &Context = getContext();
1348 const VBTableGlobals &VBGlobals = enumerateVBTables(RD);
1349 for (
unsigned I = 0, E = VBGlobals.VBTables->size(); I != E; ++I) {
1350 const std::unique_ptr<VPtrInfo> &VBT = (*VBGlobals.VBTables)[I];
1351 llvm::GlobalVariable *GV = VBGlobals.Globals[I];
1352 const ASTRecordLayout &SubobjectLayout =
1354 CharUnits Offs = VBT->NonVirtualOffset;
1356 if (VBT->getVBaseWithVPtr())
1359 llvm::Value *GVPtr =
1366CGCXXABI::AddedStructorArgCounts
1367MicrosoftCXXABI::buildStructorSignature(GlobalDecl GD,
1368 SmallVectorImpl<CanQualType> &ArgTys) {
1369 AddedStructorArgCounts Added;
1375 ArgTys.push_back(getContext().IntTy);
1378 auto *CD = dyn_cast<CXXConstructorDecl>(GD.
getDecl());
1386 const FunctionProtoType *FPT = CD->
getType()->
castAs<FunctionProtoType>();
1387 if (
Class->getNumVBases()) {
1389 ArgTys.insert(ArgTys.begin() + 1, getContext().IntTy);
1392 ArgTys.push_back(getContext().IntTy);
1400void MicrosoftCXXABI::setCXXDestructorDLLStorage(llvm::GlobalValue *GV,
1401 const CXXDestructorDecl *Dtor,
1406 GV->setDLLStorageClass(llvm::GlobalValue::DefaultStorageClass);
1408 const NamedDecl *ND = Dtor;
1413llvm::GlobalValue::LinkageTypes MicrosoftCXXABI::getCXXDestructorLinkage(
1418 return llvm::GlobalValue::InternalLinkage;
1429 if (Dtor->
hasAttr<DLLExportAttr>())
1430 return llvm::GlobalValue::WeakODRLinkage;
1431 if (Dtor->
hasAttr<DLLImportAttr>())
1432 return llvm::GlobalValue::AvailableExternallyLinkage;
1433 return llvm::GlobalValue::LinkOnceODRLinkage;
1438 return llvm::GlobalValue::LinkOnceODRLinkage;
1440 llvm_unreachable(
"MS C++ ABI does not support unified dtors");
1446 return llvm::GlobalValue::WeakAnyLinkage;
1448 llvm_unreachable(
"MS C++ ABI does not support comdat dtors");
1450 llvm_unreachable(
"invalid dtor type");
1453void MicrosoftCXXABI::EmitCXXDestructors(
const CXXDestructorDecl *D) {
1467MicrosoftCXXABI::getVirtualFunctionPrologueThisAdjustment(GlobalDecl GD) {
1470 if (
const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) {
1485 MethodVFTableLocation ML =
1497 const ASTRecordLayout &DerivedLayout =
1498 getContext().getASTRecordLayout(MD->
getParent());
1505Address MicrosoftCXXABI::adjustThisArgumentForVirtualFunctionCall(
1506 CodeGenFunction &CGF, GlobalDecl GD, Address This,
1511 CharUnits Adjustment = getVirtualFunctionPrologueThisAdjustment(GD);
1522 GlobalDecl LookupGD = GD;
1523 if (
const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) {
1537 MethodVFTableLocation ML =
1552 const CXXRecordDecl *Derived = MD->
getParent();
1553 const CXXRecordDecl *VBase = ML.
VBase;
1554 llvm::Value *VBaseOffset =
1555 GetVirtualBaseClassOffset(CGF,
Result, Derived, VBase);
1557 Result.getElementType(),
Result.emitRawPointer(CGF), VBaseOffset);
1558 CharUnits VBaseAlign =
1562 if (!StaticOffset.
isZero()) {
1578void MicrosoftCXXABI::addImplicitStructorParams(CodeGenFunction &CGF,
1580 FunctionArgList &Params) {
1581 ASTContext &Context = getContext();
1588 ImplicitParamKind::Other);
1591 const FunctionProtoType *FPT = MD->
getType()->
castAs<FunctionProtoType>();
1593 Params.insert(Params.begin() + 1, IsMostDerived);
1595 Params.push_back(IsMostDerived);
1596 getStructorImplicitParamDecl(CGF) = IsMostDerived;
1601 ImplicitParamKind::Other);
1602 Params.push_back(ShouldDelete);
1603 getStructorImplicitParamDecl(CGF) = ShouldDelete;
1607void MicrosoftCXXABI::EmitInstanceFunctionProlog(CodeGenFunction &CGF) {
1624 llvm::Value *
This = loadIncomingCXXThis(CGF);
1627 CharUnits Adjustment = getVirtualFunctionPrologueThisAdjustment(CGF.
CurGD);
1628 if (!Adjustment.
isZero()) {
1634 setCXXABIThisValue(CGF, This);
1644 if (HasThisReturn(CGF.
CurGD) || hasMostDerivedReturn(CGF.
CurGD))
1648 assert(getStructorImplicitParamDecl(CGF) &&
1649 "no implicit parameter for a constructor with virtual bases?");
1650 getStructorImplicitParamValue(CGF)
1657 assert(getStructorImplicitParamDecl(CGF) &&
1658 "no implicit parameter for a deleting destructor?");
1659 getStructorImplicitParamValue(CGF)
1662 "should_call_delete");
1666CGCXXABI::AddedStructorArgs MicrosoftCXXABI::getImplicitConstructorArgs(
1673 return AddedStructorArgs{};
1676 const FunctionProtoType *FPT = D->
getType()->
castAs<FunctionProtoType>();
1677 llvm::Value *MostDerivedArg;
1679 MostDerivedArg = getStructorImplicitParamValue(CGF);
1684 return AddedStructorArgs::prefix({{MostDerivedArg, getContext().IntTy}});
1686 return AddedStructorArgs::suffix({{MostDerivedArg, getContext().IntTy}});
1689llvm::Value *MicrosoftCXXABI::getCXXDestructorImplicitParam(
1695void MicrosoftCXXABI::EmitDestructorCall(CodeGenFunction &CGF,
1696 const CXXDestructorDecl *DD,
1706 GlobalDecl GD(DD,
Type);
1710 assert(
Type != CXXDtorType::Dtor_Deleting &&
1711 "The deleting destructor should only be called via a virtual call");
1712 This = adjustThisArgumentForVirtualFunctionCall(CGF, GlobalDecl(DD,
Type),
1716 llvm::BasicBlock *BaseDtorEndBB =
nullptr;
1718 BaseDtorEndBB = EmitDtorCompleteObjectHandler(CGF);
1727 QualType(),
nullptr);
1728 if (BaseDtorEndBB) {
1730 CGF.
Builder.CreateBr(BaseDtorEndBB);
1735void MicrosoftCXXABI::emitVTableTypeMetadata(
const VPtrInfo &Info,
1736 const CXXRecordDecl *RD,
1737 llvm::GlobalVariable *VTable) {
1748 llvm::DenseSet<const CXXRecordDecl *> Visited;
1749 llvm::GlobalObject::VCallVisibility TypeVis =
1751 if (TypeVis != llvm::GlobalObject::VCallVisibilityPublic)
1752 VTable->setVCallVisibilityMetadata(TypeVis);
1758 CharUnits AddressPoint =
1759 getContext().getLangOpts().RTTIData
1760 ? getContext().toCharUnitsFromBits(
1761 getContext().getTargetInfo().getPointerWidth(LangAS::Default))
1779 const ASTRecordLayout &Layout =
1780 getContext().getASTRecordLayout(DerivedRD);
1786 Offset = VBI->second.VBaseOffset;
1797void MicrosoftCXXABI::emitVTableDefinitions(CodeGenVTables &CGVT,
1798 const CXXRecordDecl *RD) {
1802 for (
const std::unique_ptr<VPtrInfo>& Info : VFPtrs) {
1803 llvm::GlobalVariable *VTable = getAddrOfVTable(RD, Info->
FullOffsetInMDC);
1804 if (VTable->hasInitializer())
1807 const VTableLayout &VTLayout =
1810 llvm::Constant *RTTI =
nullptr;
1812 [](
const VTableComponent &VTC) { return VTC.isRTTIKind(); }))
1813 RTTI = getMSCompleteObjectLocator(RD, *Info);
1815 ConstantInitBuilder builder(CGM);
1816 auto components = builder.beginStruct();
1818 VTable->hasLocalLinkage());
1819 components.finishAndSetAsInitializer(VTable);
1821 emitVTableTypeMetadata(*Info, RD, VTable);
1825bool MicrosoftCXXABI::isVirtualOffsetNeededForVTableField(
1826 CodeGenFunction &CGF, CodeGenFunction::VPtr Vptr) {
1830llvm::Value *MicrosoftCXXABI::getVTableAddressPointInStructor(
1831 CodeGenFunction &CGF,
const CXXRecordDecl *VTableClass, BaseSubobject Base,
1832 const CXXRecordDecl *NearestVBase) {
1833 llvm::Constant *VTableAddressPoint = getVTableAddressPoint(Base, VTableClass);
1834 if (!VTableAddressPoint) {
1835 assert(
Base.getBase()->getNumVBases() &&
1836 !getContext().getASTRecordLayout(
Base.getBase()).hasOwnVFPtr());
1838 return VTableAddressPoint;
1844 llvm::raw_svector_ostream Out(Name);
1849MicrosoftCXXABI::getVTableAddressPoint(BaseSubobject Base,
1850 const CXXRecordDecl *VTableClass) {
1851 (void)getAddrOfVTable(VTableClass,
Base.getBaseOffset());
1852 VFTableIdTy
ID(VTableClass,
Base.getBaseOffset());
1853 return VFTablesMap[
ID];
1856llvm::GlobalVariable *MicrosoftCXXABI::getAddrOfVTable(
const CXXRecordDecl *RD,
1857 CharUnits VPtrOffset) {
1862 VFTableIdTy
ID(RD, VPtrOffset);
1863 auto [I, Inserted] = VTablesMap.try_emplace(ID);
1867 llvm::GlobalVariable *&VTable = I->second;
1872 if (DeferredVFTables.insert(RD).second) {
1880 llvm::StringSet<> ObservedMangledNames;
1881 for (
const auto &VFPtr : VFPtrs) {
1882 SmallString<256> Name;
1884 if (!ObservedMangledNames.insert(Name.str()).second)
1885 llvm_unreachable(
"Already saw this mangling before?");
1890 const std::unique_ptr<VPtrInfo> *VFPtrI =
1891 llvm::find_if(VFPtrs, [&](
const std::unique_ptr<VPtrInfo> &VPI) {
1892 return VPI->FullOffsetInMDC == VPtrOffset;
1894 if (VFPtrI == VFPtrs.end()) {
1895 VFTablesMap[
ID] =
nullptr;
1898 const std::unique_ptr<VPtrInfo> &VFPtr = *VFPtrI;
1900 SmallString<256> VFTableName;
1910 llvm::GlobalValue::LinkageTypes VFTableLinkage =
1911 RD->
hasAttr<DLLImportAttr>() ? llvm::GlobalValue::LinkOnceODRLinkage
1912 : CGM.getVTableLinkage(RD);
1913 bool VFTableComesFromAnotherTU =
1914 llvm::GlobalValue::isAvailableExternallyLinkage(VFTableLinkage) ||
1915 llvm::GlobalValue::isExternalLinkage(VFTableLinkage);
1916 bool VTableAliasIsRequred =
1917 !VFTableComesFromAnotherTU && getContext().getLangOpts().RTTIData;
1919 if (llvm::GlobalValue *VFTable =
1920 CGM.
getModule().getNamedGlobal(VFTableName)) {
1921 VFTablesMap[
ID] = VFTable;
1922 VTable = VTableAliasIsRequred
1925 :
cast<llvm::GlobalVariable>(VFTable);
1929 const VTableLayout &VTLayout =
1931 llvm::GlobalValue::LinkageTypes VTableLinkage =
1932 VTableAliasIsRequred ? llvm::GlobalValue::PrivateLinkage : VFTableLinkage;
1934 StringRef VTableName = VTableAliasIsRequred ? StringRef() : VFTableName.str();
1936 llvm::Type *VTableType = CGM.
getVTables().getVTableType(VTLayout);
1940 llvm::GlobalValue *VFTable;
1941 VTable =
new llvm::GlobalVariable(CGM.
getModule(), VTableType,
1942 true, VTableLinkage,
1943 nullptr, VTableName);
1944 VTable->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
1946 llvm::Comdat *
C =
nullptr;
1947 if (!VFTableComesFromAnotherTU &&
1948 llvm::GlobalValue::isWeakForLinker(VFTableLinkage))
1949 C = CGM.
getModule().getOrInsertComdat(VFTableName.str());
1954 if (VTableAliasIsRequred) {
1955 llvm::Value *GEPIndices[] = {llvm::ConstantInt::get(CGM.
Int32Ty, 0),
1956 llvm::ConstantInt::get(CGM.
Int32Ty, 0),
1957 llvm::ConstantInt::get(CGM.
Int32Ty, 1)};
1960 llvm::Constant *VTableGEP = llvm::ConstantExpr::getInBoundsGetElementPtr(
1961 VTable->getValueType(), VTable, GEPIndices);
1962 if (llvm::GlobalValue::isWeakForLinker(VFTableLinkage)) {
1963 VFTableLinkage = llvm::GlobalValue::ExternalLinkage;
1965 C->setSelectionKind(llvm::Comdat::Largest);
1967 VFTable = llvm::GlobalAlias::create(CGM.
Int8PtrTy,
1969 VFTableName.str(), VTableGEP,
1971 VFTable->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
1980 VTable->setComdat(
C);
1982 if (RD->
hasAttr<DLLExportAttr>())
1983 VFTable->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass);
1985 VFTablesMap[
ID] = VFTable;
1989CGCallee MicrosoftCXXABI::getVirtualFunctionPointer(CodeGenFunction &CGF,
1993 SourceLocation Loc) {
1994 CGBuilderTy &Builder = CGF.
Builder;
1998 adjustThisArgumentForVirtualFunctionCall(CGF, GD, This,
true);
2001 llvm::Value *VTable =
2009 auto getObjectWithVPtr = [&] {
2012 [&](
const std::unique_ptr<VPtrInfo> &Info) {
2013 return Info->FullOffsetInMDC == ML.VFPtrOffset;
2022 getObjectWithVPtr(), VTable, Ty,
2030 llvm::Value *VFuncPtr =
2031 Builder.CreateConstInBoundsGEP1_64(Ty, VTable, ML.
Index,
"vfn");
2032 VFunc = Builder.CreateAlignedLoad(Ty, VFuncPtr, CGF.
getPointerAlign());
2035 CGCallee
Callee(GD, VFunc);
2039llvm::Value *MicrosoftCXXABI::EmitVirtualDestructorCall(
2040 CodeGenFunction &CGF,
const CXXDestructorDecl *Dtor,
CXXDtorType DtorType,
2041 Address This, DeleteOrMemberCallExpr E, llvm::CallBase **CallOrInvoke) {
2042 auto *CE = dyn_cast<const CXXMemberCallExpr *>(E);
2043 auto *D = dyn_cast<const CXXDeleteExpr *>(E);
2044 assert((CE !=
nullptr) ^ (D !=
nullptr));
2045 assert(CE ==
nullptr || CE->arg_begin() == CE->arg_end());
2051 ASTContext &Context = getContext();
2052 bool VectorDeletingDtorsEnabled =
2056 const CGFunctionInfo *FInfo =
2062 bool IsArrayDelete = D && D->isArrayForm() && VectorDeletingDtorsEnabled;
2063 bool IsGlobalDelete = D && D->isGlobalDelete() &&
2066 llvm::Value *ImplicitParam =
2067 CGF.
Builder.getInt32((IsDeleting ? 1 : 0) | (IsGlobalDelete ? 4 : 0) |
2068 (IsArrayDelete ? 2 : 0));
2072 ThisTy = CE->getObjectType();
2074 ThisTy = D->getDestroyedType();
2078 ThisTy = ATy->getElementType();
2080 This = adjustThisArgumentForVirtualFunctionCall(CGF, GD, This,
true);
2083 ImplicitParam, Context.
IntTy, CE, CallOrInvoke);
2087const VBTableGlobals &
2088MicrosoftCXXABI::enumerateVBTables(
const CXXRecordDecl *RD) {
2091 auto [Entry, Added] = VBTablesMap.try_emplace(RD);
2092 VBTableGlobals &VBGlobals = Entry->second;
2097 VBGlobals.VBTables = &Context.enumerateVBTables(RD);
2102 for (VPtrInfoVector::const_iterator I = VBGlobals.VBTables->begin(),
2103 E = VBGlobals.VBTables->end();
2105 VBGlobals.Globals.push_back(getAddrOfVBTable(**I, RD,
Linkage));
2112MicrosoftCXXABI::EmitVirtualMemPtrThunk(
const CXXMethodDecl *MD,
2113 const MethodVFTableLocation &ML) {
2115 "can't form pointers to ctors or virtual dtors");
2118 SmallString<256> ThunkName;
2119 llvm::raw_svector_ostream
Out(ThunkName);
2120 getMangleContext().mangleVirtualMemPtrThunk(MD, ML, Out);
2123 if (llvm::GlobalValue *GV = CGM.
getModule().getNamedValue(ThunkName))
2127 const CGFunctionInfo &FnInfo =
2130 llvm::Function *ThunkFn =
2131 llvm::Function::Create(ThunkTy, llvm::Function::ExternalLinkage,
2133 assert(ThunkFn->getName() == ThunkName &&
"name was uniqued!");
2136 ? llvm::GlobalValue::LinkOnceODRLinkage
2137 : llvm::GlobalValue::InternalLinkage);
2139 ThunkFn->setComdat(CGM.
getModule().getOrInsertComdat(ThunkFn->getName()));
2148 ThunkFn->addFnAttr(
"thunk");
2151 ThunkFn->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::None);
2154 CodeGenFunction CGF(CGM);
2155 CGF.
CurGD = GlobalDecl(MD);
2160 FunctionArgList FunctionArgs;
2161 buildThisParam(CGF, FunctionArgs);
2165 FunctionArgs, MD->
getLocation(), SourceLocation());
2168 setCXXABIThisValue(CGF, loadIncomingCXXThis(CGF));
2173 llvm::Value *VTable =
2176 llvm::Value *VFuncPtr = CGF.
Builder.CreateConstInBoundsGEP1_64(
2177 ThunkPtrTy, VTable, ML.
Index,
"vfn");
2186void MicrosoftCXXABI::emitVirtualInheritanceTables(
const CXXRecordDecl *RD) {
2187 const VBTableGlobals &VBGlobals = enumerateVBTables(RD);
2188 for (
unsigned I = 0, E = VBGlobals.VBTables->size(); I != E; ++I) {
2189 const std::unique_ptr<VPtrInfo>& VBT = (*VBGlobals.VBTables)[I];
2190 llvm::GlobalVariable *GV = VBGlobals.Globals[I];
2191 if (GV->isDeclaration())
2192 emitVBTableDefinition(*VBT, RD, GV);
2196llvm::GlobalVariable *
2197MicrosoftCXXABI::getAddrOfVBTable(
const VPtrInfo &VBT,
const CXXRecordDecl *RD,
2198 llvm::GlobalVariable::LinkageTypes
Linkage) {
2199 SmallString<256> OutName;
2200 llvm::raw_svector_ostream
Out(OutName);
2201 getMangleContext().mangleCXXVBTable(RD, VBT.
MangledPath, Out);
2202 StringRef Name = OutName.str();
2204 llvm::ArrayType *VBTableType =
2207 assert(!CGM.
getModule().getNamedGlobal(Name) &&
2208 "vbtable with this name already exists: mangling bug?");
2209 CharUnits Alignment =
2213 GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
2215 if (RD->
hasAttr<DLLImportAttr>())
2216 GV->setDLLStorageClass(llvm::GlobalValue::DLLImportStorageClass);
2217 else if (RD->
hasAttr<DLLExportAttr>())
2218 GV->setDLLStorageClass(llvm::GlobalValue::DLLExportStorageClass);
2220 if (!GV->hasExternalLinkage())
2221 emitVBTableDefinition(VBT, RD, GV);
2226void MicrosoftCXXABI::emitVBTableDefinition(
const VPtrInfo &VBT,
2227 const CXXRecordDecl *RD,
2228 llvm::GlobalVariable *GV)
const {
2232 "should only emit vbtables for classes with vbtables");
2234 const ASTRecordLayout &BaseLayout =
2236 const ASTRecordLayout &DerivedLayout = getContext().getASTRecordLayout(RD);
2238 SmallVector<llvm::Constant *, 4> Offsets(1 + ObjectWithVPtr->
getNumVBases(),
2247 for (
const auto &I : ObjectWithVPtr->
vbases()) {
2248 const CXXRecordDecl *VBase = I.getType()->getAsCXXRecordDecl();
2255 CompleteVBPtrOffset +=
2257 Offset -= CompleteVBPtrOffset;
2259 unsigned VBIndex = Context.getVBTableIndex(ObjectWithVPtr, VBase);
2260 assert(Offsets[VBIndex] ==
nullptr &&
"The same vbindex seen twice?");
2265 assert(Offsets.size() ==
2267 llvm::ArrayType *VBTableType =
2268 llvm::ArrayType::get(CGM.
IntTy, Offsets.size());
2269 llvm::Constant *
Init = llvm::ConstantArray::get(VBTableType, Offsets);
2270 GV->setInitializer(
Init);
2272 if (RD->
hasAttr<DLLImportAttr>())
2273 GV->setLinkage(llvm::GlobalVariable::AvailableExternallyLinkage);
2276llvm::Value *MicrosoftCXXABI::performThisAdjustment(
2277 CodeGenFunction &CGF, Address This,
2278 const CXXRecordDecl * ,
const ThunkInfo &TI) {
2279 const ThisAdjustment &TA = TI.
This;
2281 return This.emitRawPointer(CGF);
2287 V =
This.emitRawPointer(CGF);
2297 CGF.
Builder.CreateNeg(VtorDisp));
2310 llvm::Value *VBaseOffset = GetVBaseOffsetFromVBPtr(
2329llvm::Value *MicrosoftCXXABI::performReturnAdjustment(
2330 CodeGenFunction &CGF, Address Ret,
2331 const CXXRecordDecl * ,
const ReturnAdjustment &RA) {
2334 return Ret.emitRawPointer(CGF);
2338 llvm::Value *
V =
Ret.emitRawPointer(CGF);
2343 llvm::Value *VBaseOffset =
2355bool MicrosoftCXXABI::requiresArrayCookie(
const CXXDeleteExpr *
expr,
2356 QualType elementType) {
2362bool MicrosoftCXXABI::requiresArrayCookie(
const CXXNewExpr *
expr) {
2365 return expr->getAllocatedType().isDestructedType();
2368CharUnits MicrosoftCXXABI::getArrayCookieSizeImpl(QualType
type) {
2371 ASTContext &Ctx = getContext();
2376llvm::Value *MicrosoftCXXABI::readArrayCookieImpl(CodeGenFunction &CGF,
2378 CharUnits cookieSize) {
2383Address MicrosoftCXXABI::InitializeArrayCookie(CodeGenFunction &CGF,
2385 llvm::Value *numElements,
2386 const CXXNewExpr *
expr,
2387 QualType elementType) {
2388 assert(requiresArrayCookie(
expr));
2391 CharUnits cookieSize = getArrayCookieSizeImpl(elementType);
2406 llvm::FunctionCallee Dtor,
2407 llvm::Constant *
Addr) {
2412 llvm::FunctionType *TLRegDtorTy = llvm::FunctionType::get(
2413 CGF.
IntTy, DtorStub->getType(),
false);
2416 TLRegDtorTy,
"__tlregdtor", llvm::AttributeList(),
true);
2417 if (llvm::Function *TLRegDtorFn =
2418 dyn_cast<llvm::Function>(TLRegDtor.getCallee()))
2419 TLRegDtorFn->setDoesNotThrow();
2424void MicrosoftCXXABI::registerGlobalDtor(CodeGenFunction &CGF,
const VarDecl &D,
2425 llvm::FunctionCallee Dtor,
2426 llvm::Constant *
Addr) {
2441void MicrosoftCXXABI::EmitThreadLocalInitFuncs(
2442 CodeGenModule &CGM, ArrayRef<const VarDecl *> CXXThreadLocals,
2443 ArrayRef<llvm::Function *> CXXThreadLocalInits,
2444 ArrayRef<const VarDecl *> CXXThreadLocalInitVars) {
2445 if (CXXThreadLocalInits.empty())
2450 ?
"/include:___dyn_tls_init@12"
2451 :
"/include:__dyn_tls_init");
2456 auto AddToXDU = [&CGM](llvm::Function *InitFunc) {
2457 llvm::GlobalVariable *InitFuncPtr =
new llvm::GlobalVariable(
2458 CGM.
getModule(), InitFunc->getType(),
true,
2459 llvm::GlobalVariable::InternalLinkage, InitFunc,
2460 Twine(InitFunc->getName(),
"$initializer$"));
2461 InitFuncPtr->setSection(
".CRT$XDU");
2468 std::vector<llvm::Function *> NonComdatInits;
2469 for (
size_t I = 0, E = CXXThreadLocalInitVars.size(); I != E; ++I) {
2472 llvm::Function *F = CXXThreadLocalInits[I];
2475 if (llvm::Comdat *
C = GV->getComdat())
2476 AddToXDU(F)->setComdat(
C);
2478 NonComdatInits.push_back(F);
2481 if (!NonComdatInits.empty()) {
2482 llvm::FunctionType *FTy =
2483 llvm::FunctionType::get(CGM.
VoidTy,
false);
2486 SourceLocation(),
true);
2487 CodeGenFunction(CGM).GenerateCXXGlobalInitFunc(InitFunc, NonComdatInits);
2499 llvm::Constant *TlsGuardConstant =
2503 TlsGuard->setThreadLocal(
true);
2511 llvm::FunctionType *FTy =
2512 llvm::FunctionType::get(llvm::Type::getVoidTy(CGM.
getLLVMContext()), {},
2515 FTy,
"__dyn_tls_on_demand_init",
2517 llvm::AttributeList::FunctionIndex,
2518 llvm::Attribute::NoUnwind),
2523 llvm::BasicBlock *DynInitBB,
2524 llvm::BasicBlock *ContinueBB) {
2525 llvm::LoadInst *TlsGuardValue =
2527 llvm::Value *CmpResult =
2529 CGF.
Builder.CreateCondBr(CmpResult, DynInitBB, ContinueBB);
2533 llvm::GlobalValue *TlsGuard,
2534 llvm::BasicBlock *ContinueBB) {
2536 llvm::Function *InitializerFunction =
2538 llvm::CallInst *CallVal = CGF.
Builder.CreateCall(InitializerFunction);
2539 CallVal->setCallingConv(InitializerFunction->getCallingConv());
2541 CGF.
Builder.CreateBr(ContinueBB);
2545 llvm::BasicBlock *DynInitBB =
2547 llvm::BasicBlock *ContinueBB =
2553 CGF.
Builder.SetInsertPoint(DynInitBB);
2555 CGF.
Builder.SetInsertPoint(ContinueBB);
2558LValue MicrosoftCXXABI::EmitThreadLocalVarDeclLValue(CodeGenFunction &CGF,
2560 QualType LValType) {
2578 AlignmentSource::Decl)
2584 StringRef VarName(
"_Init_thread_epoch");
2586 if (
auto *GV = CGM.
getModule().getNamedGlobal(VarName))
2588 auto *GV =
new llvm::GlobalVariable(
2590 false, llvm::GlobalVariable::ExternalLinkage,
2592 nullptr, llvm::GlobalVariable::GeneralDynamicTLSModel);
2598 llvm::FunctionType *FTy =
2599 llvm::FunctionType::get(llvm::Type::getVoidTy(CGM.
getLLVMContext()),
2602 FTy,
"_Init_thread_header",
2604 llvm::AttributeList::FunctionIndex,
2605 llvm::Attribute::NoUnwind),
2610 llvm::FunctionType *FTy =
2611 llvm::FunctionType::get(llvm::Type::getVoidTy(CGM.
getLLVMContext()),
2614 FTy,
"_Init_thread_footer",
2616 llvm::AttributeList::FunctionIndex,
2617 llvm::Attribute::NoUnwind),
2622 llvm::FunctionType *FTy =
2623 llvm::FunctionType::get(llvm::Type::getVoidTy(CGM.
getLLVMContext()),
2626 FTy,
"_Init_thread_abort",
2628 llvm::AttributeList::FunctionIndex,
2629 llvm::Attribute::NoUnwind),
2634struct ResetGuardBit final : EHScopeStack::Cleanup {
2637 ResetGuardBit(Address Guard,
unsigned GuardNum)
2638 : Guard(Guard), GuardNum(GuardNum) {}
2640 void Emit(CodeGenFunction &CGF, Flags flags)
override {
2643 CGBuilderTy &Builder = CGF.
Builder;
2644 llvm::LoadInst *LI = Builder.CreateLoad(Guard);
2645 llvm::ConstantInt *Mask =
2646 llvm::ConstantInt::getSigned(CGF.
IntTy, ~(1ULL << GuardNum));
2647 Builder.CreateStore(Builder.CreateAnd(LI, Mask), Guard);
2651struct CallInitThreadAbort final : EHScopeStack::Cleanup {
2653 CallInitThreadAbort(RawAddress Guard) : Guard(Guard.getPointer()) {}
2655 void Emit(CodeGenFunction &CGF, Flags flags)
override {
2662void MicrosoftCXXABI::EmitGuardedInit(CodeGenFunction &CGF,
const VarDecl &D,
2663 llvm::GlobalVariable *GV,
2667 assert(GV->hasWeakLinkage() || GV->hasLinkOnceLinkage());
2669 llvm::Function *F = CGF.
CurFn;
2670 F->setLinkage(llvm::GlobalValue::LinkOnceODRLinkage);
2671 F->setComdat(CGM.
getModule().getOrInsertComdat(F->getName()));
2677 bool ThreadsafeStatic = getContext().getLangOpts().ThreadsafeStatics;
2681 bool HasPerVariableGuard = ThreadsafeStatic && !ThreadlocalStatic;
2683 CGBuilderTy &Builder = CGF.
Builder;
2684 llvm::IntegerType *GuardTy = CGF.
Int32Ty;
2685 llvm::ConstantInt *
Zero = llvm::ConstantInt::get(GuardTy, 0);
2689 GuardInfo *GI =
nullptr;
2690 if (ThreadlocalStatic)
2692 else if (!ThreadsafeStatic)
2695 llvm::GlobalVariable *GuardVar = GI ? GI->Guard :
nullptr;
2700 GuardNum = getContext().getStaticLocalNumber(&D);
2701 assert(GuardNum > 0);
2703 }
else if (HasPerVariableGuard) {
2707 GuardNum = GI->BitIndex++;
2710 if (!HasPerVariableGuard && GuardNum >= 32) {
2712 ErrorUnsupportedABI(CGF,
"more than 32 guarded initializations");
2719 SmallString<256> GuardName;
2721 llvm::raw_svector_ostream
Out(GuardName);
2722 if (HasPerVariableGuard)
2723 getMangleContext().mangleThreadSafeStaticGuardVariable(&D, GuardNum,
2726 getMangleContext().mangleStaticGuardVariable(&D, Out);
2732 new llvm::GlobalVariable(CGM.
getModule(), GuardTy,
false,
2733 GV->getLinkage(),
Zero, GuardName.str());
2734 GuardVar->setVisibility(GV->getVisibility());
2735 GuardVar->setDLLStorageClass(GV->getDLLStorageClass());
2736 GuardVar->setAlignment(GuardAlign.
getAsAlign());
2737 if (GuardVar->isWeakForLinker())
2738 GuardVar->setComdat(
2739 CGM.
getModule().getOrInsertComdat(GuardVar->getName()));
2742 if (GI && !HasPerVariableGuard)
2743 GI->Guard = GuardVar;
2746 ConstantAddress GuardAddr(GuardVar, GuardTy, GuardAlign);
2748 assert(GuardVar->getLinkage() == GV->getLinkage() &&
2749 "static local from the same function had different linkage");
2751 if (!HasPerVariableGuard) {
2759 llvm::ConstantInt *Bit = llvm::ConstantInt::get(GuardTy, 1ULL << GuardNum);
2760 llvm::LoadInst *LI = Builder.CreateLoad(GuardAddr);
2761 llvm::Value *NeedsInit =
2762 Builder.CreateICmpEQ(Builder.CreateAnd(LI, Bit),
Zero);
2766 CodeGenFunction::GuardKind::VariableGuard, &D);
2771 Builder.CreateStore(Builder.CreateOr(LI, Bit), GuardAddr);
2775 Builder.CreateBr(EndBlock);
2793 llvm::LoadInst *FirstGuardLoad = Builder.CreateLoad(GuardAddr);
2794 FirstGuardLoad->setOrdering(llvm::AtomicOrdering::Unordered);
2795 llvm::LoadInst *InitThreadEpoch =
2797 llvm::Value *IsUninitialized =
2798 Builder.CreateICmpSGT(FirstGuardLoad, InitThreadEpoch);
2802 CodeGenFunction::GuardKind::VariableGuard, &D);
2808 GuardAddr.getPointer());
2809 llvm::LoadInst *SecondGuardLoad = Builder.CreateLoad(GuardAddr);
2810 SecondGuardLoad->setOrdering(llvm::AtomicOrdering::Unordered);
2811 llvm::Value *ShouldDoInit =
2812 Builder.CreateICmpEQ(SecondGuardLoad, getAllOnesInt());
2814 Builder.CreateCondBr(ShouldDoInit, InitBlock, EndBlock);
2822 GuardAddr.getPointer());
2823 Builder.CreateBr(EndBlock);
2829bool MicrosoftCXXABI::isZeroInitializable(
const MemberPointerType *MPT) {
2845MicrosoftCXXABI::ConvertMemberPointerType(
const MemberPointerType *MPT) {
2848 llvm::SmallVector<llvm::Type *, 4> fields;
2852 fields.push_back(CGM.
IntTy);
2856 fields.push_back(CGM.
IntTy);
2858 fields.push_back(CGM.
IntTy);
2860 fields.push_back(CGM.
IntTy);
2862 if (fields.size() == 1)
2867void MicrosoftCXXABI::
2868GetNullMemberPointerFields(
const MemberPointerType *MPT,
2869 llvm::SmallVectorImpl<llvm::Constant *> &fields) {
2870 assert(fields.empty());
2875 fields.push_back(llvm::Constant::getNullValue(CGM.
VoidPtrTy));
2878 fields.push_back(getZeroInt());
2880 fields.push_back(getAllOnesInt());
2885 fields.push_back(getZeroInt());
2887 fields.push_back(getZeroInt());
2889 fields.push_back(getAllOnesInt());
2893MicrosoftCXXABI::EmitNullMemberPointer(
const MemberPointerType *MPT) {
2894 llvm::SmallVector<llvm::Constant *, 4> fields;
2895 GetNullMemberPointerFields(MPT, fields);
2896 if (fields.size() == 1)
2898 llvm::Constant *Res = llvm::ConstantStruct::getAnon(fields);
2899 assert(Res->getType() == ConvertMemberPointerType(MPT));
2904MicrosoftCXXABI::EmitFullMemberPointer(llvm::Constant *FirstField,
2905 bool IsMemberFunction,
2906 const CXXRecordDecl *RD,
2907 CharUnits NonVirtualBaseAdjustment,
2908 unsigned VBTableIndex) {
2916 llvm::SmallVector<llvm::Constant *, 4> fields;
2917 fields.push_back(FirstField);
2920 fields.push_back(llvm::ConstantInt::getSigned(
2926 Offs = getContext().getASTRecordLayout(RD).getVBPtrOffset();
2932 fields.push_back(llvm::ConstantInt::get(CGM.
IntTy, VBTableIndex));
2934 return llvm::ConstantStruct::getAnon(fields);
2938MicrosoftCXXABI::EmitMemberDataPointer(
const MemberPointerType *MPT,
2943llvm::Constant *MicrosoftCXXABI::EmitMemberDataPointer(
const CXXRecordDecl *RD,
2946 MSInheritanceModel::Virtual)
2947 offset -= getContext().getOffsetOfBaseWithVBPtr(RD);
2948 llvm::Constant *FirstField =
2950 return EmitFullMemberPointer(FirstField,
false, RD,
2954llvm::Constant *MicrosoftCXXABI::EmitMemberPointer(
const APValue &MP,
2956 const MemberPointerType *DstTy = MPType->
castAs<MemberPointerType>();
2959 return EmitNullMemberPointer(DstTy);
2961 ASTContext &Ctx = getContext();
2965 if (
const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(MPD)) {
2966 C = EmitMemberFunctionPointer(MD);
2974 const FieldDecl *FD = dyn_cast<FieldDecl>(MPD);
2979 C = EmitMemberDataPointer(RD, FieldOffset);
2982 if (!MemberPointerPath.empty()) {
2984 const MemberPointerType *SrcTy =
2986 std::nullopt, SrcRD)
2987 ->
castAs<MemberPointerType>();
2990 SmallVector<const CXXBaseSpecifier *, 4> DerivedToBasePath;
2991 const CXXRecordDecl *PrevRD = SrcRD;
2992 for (
const CXXRecordDecl *PathElem : MemberPointerPath) {
2993 const CXXRecordDecl *
Base =
nullptr;
2994 const CXXRecordDecl *Derived =
nullptr;
2995 if (DerivedMember) {
3002 for (
const CXXBaseSpecifier &BS : Derived->
bases())
3003 if (BS.getType()->getAsCXXRecordDecl()->getCanonicalDecl() ==
3004 Base->getCanonicalDecl())
3005 DerivedToBasePath.push_back(&BS);
3008 assert(DerivedToBasePath.size() == MemberPointerPath.size());
3010 CastKind CK = DerivedMember ? CK_DerivedToBaseMemberPointer
3011 : CK_BaseToDerivedMemberPointer;
3012 C = EmitMemberPointerConversion(SrcTy, DstTy, CK, DerivedToBasePath.begin(),
3013 DerivedToBasePath.end(),
C);
3019MicrosoftCXXABI::EmitMemberFunctionPointer(
const CXXMethodDecl *MD) {
3020 assert(MD->
isInstance() &&
"Member function must not be static!");
3024 CodeGenTypes &Types = CGM.
getTypes();
3026 unsigned VBTableIndex = 0;
3027 llvm::Constant *FirstField;
3028 const FunctionProtoType *FPT = MD->
getType()->
castAs<FunctionProtoType>();
3043 MethodVFTableLocation ML = VTableContext.getMethodVFTableLocation(MD);
3044 FirstField = EmitVirtualMemPtrThunk(MD, ML);
3048 VBTableIndex = VTableContext.getVBTableIndex(RD, ML.
VBase) * 4;
3051 if (VBTableIndex == 0 &&
3053 MSInheritanceModel::Virtual)
3054 NonVirtualBaseAdjustment -= getContext().getOffsetOfBaseWithVBPtr(RD);
3057 return EmitFullMemberPointer(FirstField,
true, RD,
3058 NonVirtualBaseAdjustment, VBTableIndex);
3065MicrosoftCXXABI::EmitMemberPointerComparison(CodeGenFunction &CGF,
3068 const MemberPointerType *MPT,
3070 CGBuilderTy &Builder = CGF.
Builder;
3073 llvm::ICmpInst::Predicate Eq;
3074 llvm::Instruction::BinaryOps
And,
Or;
3076 Eq = llvm::ICmpInst::ICMP_NE;
3077 And = llvm::Instruction::Or;
3078 Or = llvm::Instruction::And;
3080 Eq = llvm::ICmpInst::ICMP_EQ;
3081 And = llvm::Instruction::And;
3082 Or = llvm::Instruction::Or;
3091 return Builder.CreateICmp(Eq, L, R);
3094 llvm::Value *L0 = Builder.CreateExtractValue(L, 0,
"lhs.0");
3095 llvm::Value *R0 = Builder.CreateExtractValue(R, 0,
"rhs.0");
3096 llvm::Value *Cmp0 = Builder.CreateICmp(Eq, L0, R0,
"memptr.cmp.first");
3099 llvm::Value *Res =
nullptr;
3101 for (
unsigned I = 1, E = LType->getNumElements(); I != E; ++I) {
3102 llvm::Value *LF = Builder.CreateExtractValue(L, I);
3103 llvm::Value *RF = Builder.CreateExtractValue(R, I);
3104 llvm::Value *
Cmp = Builder.CreateICmp(Eq, LF, RF,
"memptr.cmp.rest");
3106 Res = Builder.CreateBinOp(
And, Res,
Cmp);
3114 llvm::Value *
Zero = llvm::Constant::getNullValue(L0->getType());
3115 llvm::Value *IsZero = Builder.CreateICmp(Eq, L0,
Zero,
"memptr.cmp.iszero");
3116 Res = Builder.CreateBinOp(
Or, Res, IsZero);
3121 return Builder.CreateBinOp(
And, Res, Cmp0,
"memptr.cmp");
3125MicrosoftCXXABI::EmitMemberPointerIsNotNull(CodeGenFunction &CGF,
3126 llvm::Value *MemPtr,
3127 const MemberPointerType *MPT) {
3128 CGBuilderTy &Builder = CGF.
Builder;
3129 llvm::SmallVector<llvm::Constant *, 4> fields;
3132 fields.push_back(llvm::Constant::getNullValue(CGM.
VoidPtrTy));
3134 GetNullMemberPointerFields(MPT, fields);
3135 assert(!fields.empty());
3136 llvm::Value *FirstField = MemPtr;
3137 if (MemPtr->getType()->isStructTy())
3138 FirstField = Builder.CreateExtractValue(MemPtr, 0);
3139 llvm::Value *Res = Builder.CreateICmpNE(FirstField, fields[0],
"memptr.cmp0");
3147 for (
int I = 1, E = fields.size(); I < E; ++I) {
3148 llvm::Value *
Field = Builder.CreateExtractValue(MemPtr, I);
3149 llvm::Value *
Next = Builder.CreateICmpNE(Field, fields[I],
"memptr.cmp");
3150 Res = Builder.CreateOr(Res,
Next,
"memptr.tobool");
3155bool MicrosoftCXXABI::MemberPointerConstantIsNull(
const MemberPointerType *MPT,
3156 llvm::Constant *Val) {
3159 llvm::Constant *FirstField = Val->getType()->isStructTy() ?
3160 Val->getAggregateElement(0U) : Val;
3161 return FirstField->isNullValue();
3166 if (isZeroInitializable(MPT) && Val->isNullValue())
3171 llvm::SmallVector<llvm::Constant *, 4> Fields;
3172 GetNullMemberPointerFields(MPT, Fields);
3173 if (Fields.size() == 1) {
3174 assert(Val->getType()->isIntegerTy());
3175 return Val == Fields[0];
3179 for (I = 0, E = Fields.size(); I != E; ++I) {
3180 if (Val->getAggregateElement(I) != Fields[I])
3187MicrosoftCXXABI::GetVBaseOffsetFromVBPtr(CodeGenFunction &CGF,
3189 llvm::Value *VBPtrOffset,
3190 llvm::Value *VBTableOffset,
3191 llvm::Value **VBPtrOut) {
3192 CGBuilderTy &Builder = CGF.
Builder;
3194 llvm::Value *VBPtr = Builder.CreateInBoundsGEP(
3195 CGM.
Int8Ty,
This.emitRawPointer(CGF), VBPtrOffset,
"vbptr");
3199 CharUnits VBPtrAlign;
3200 if (
auto CI = dyn_cast<llvm::ConstantInt>(VBPtrOffset)) {
3201 VBPtrAlign =
This.getAlignment().alignmentAtOffset(
3207 llvm::Value *VBTable =
3208 Builder.CreateAlignedLoad(CGM.
DefaultPtrTy, VBPtr, VBPtrAlign,
"vbtable");
3211 llvm::Value *VBTableIndex = Builder.CreateAShr(
3212 VBTableOffset, llvm::ConstantInt::get(VBTableOffset->getType(), 2),
3216 llvm::Value *VBaseOffs =
3217 Builder.CreateInBoundsGEP(CGM.
Int32Ty, VBTable, VBTableIndex);
3218 return Builder.CreateAlignedLoad(CGM.
Int32Ty, VBaseOffs,
3224llvm::Value *MicrosoftCXXABI::AdjustVirtualBase(
3225 CodeGenFunction &CGF,
const Expr *E,
const CXXRecordDecl *RD,
3226 Address Base, llvm::Value *VBTableOffset, llvm::Value *VBPtrOffset) {
3227 CGBuilderTy &Builder = CGF.
Builder;
3229 llvm::BasicBlock *OriginalBB =
nullptr;
3230 llvm::BasicBlock *SkipAdjustBB =
nullptr;
3231 llvm::BasicBlock *VBaseAdjustBB =
nullptr;
3238 OriginalBB = Builder.GetInsertBlock();
3241 llvm::Value *IsVirtual =
3242 Builder.CreateICmpNE(VBTableOffset, getZeroInt(),
3244 Builder.CreateCondBr(IsVirtual, VBaseAdjustBB, SkipAdjustBB);
3257 offs = getContext().getASTRecordLayout(RD).getVBPtrOffset();
3260 llvm::Value *VBPtr =
nullptr;
3261 llvm::Value *VBaseOffs =
3262 GetVBaseOffsetFromVBPtr(CGF, Base, VBPtrOffset, VBTableOffset, &VBPtr);
3263 llvm::Value *AdjustedBase =
3264 Builder.CreateInBoundsGEP(CGM.
Int8Ty, VBPtr, VBaseOffs);
3267 if (VBaseAdjustBB) {
3268 Builder.CreateBr(SkipAdjustBB);
3270 llvm::PHINode *Phi = Builder.CreatePHI(CGM.
Int8PtrTy, 2,
"memptr.base");
3271 Phi->addIncoming(
Base.emitRawPointer(CGF), OriginalBB);
3272 Phi->addIncoming(AdjustedBase, VBaseAdjustBB);
3275 return AdjustedBase;
3278llvm::Value *MicrosoftCXXABI::EmitMemberDataPointerAddress(
3279 CodeGenFunction &CGF,
const Expr *E, Address Base, llvm::Value *MemPtr,
3280 const MemberPointerType *MPT,
bool IsInBounds) {
3282 CGBuilderTy &Builder = CGF.
Builder;
3288 llvm::Value *FieldOffset = MemPtr;
3289 llvm::Value *VirtualBaseAdjustmentOffset =
nullptr;
3290 llvm::Value *VBPtrOffset =
nullptr;
3291 if (MemPtr->getType()->isStructTy()) {
3294 FieldOffset = Builder.CreateExtractValue(MemPtr, I++);
3296 VBPtrOffset = Builder.CreateExtractValue(MemPtr, I++);
3298 VirtualBaseAdjustmentOffset = Builder.CreateExtractValue(MemPtr, I++);
3302 if (VirtualBaseAdjustmentOffset) {
3303 Addr = AdjustVirtualBase(CGF, E, RD, Base, VirtualBaseAdjustmentOffset,
3310 return Builder.CreateGEP(CGF.
Int8Ty,
Addr, FieldOffset,
"memptr.offset",
3311 IsInBounds ? llvm::GEPNoWrapFlags::inBounds()
3312 : llvm::GEPNoWrapFlags::none());
3316MicrosoftCXXABI::EmitMemberPointerConversion(CodeGenFunction &CGF,
3319 assert(E->
getCastKind() == CK_DerivedToBaseMemberPointer ||
3320 E->
getCastKind() == CK_BaseToDerivedMemberPointer ||
3329 const MemberPointerType *SrcTy =
3331 const MemberPointerType *DstTy = E->
getType()->
castAs<MemberPointerType>();
3335 bool IsReinterpret = E->
getCastKind() == CK_ReinterpretMemberPointer;
3336 if (IsReinterpret && IsFunc)
3340 CXXRecordDecl *DstRD = DstTy->getMostRecentCXXRecordDecl();
3341 if (IsReinterpret &&
3345 CGBuilderTy &Builder = CGF.
Builder;
3348 llvm::Value *
IsNotNull = EmitMemberPointerIsNotNull(CGF, Src, SrcTy);
3349 llvm::Constant *DstNull = EmitNullMemberPointer(DstTy);
3353 if (IsReinterpret) {
3356 assert(Src->getType() == DstNull->getType());
3357 return Builder.CreateSelect(
IsNotNull, Src, DstNull);
3360 llvm::BasicBlock *OriginalBB = Builder.GetInsertBlock();
3363 Builder.CreateCondBr(
IsNotNull, ConvertBB, ContinueBB);
3366 llvm::Value *Dst = EmitNonNullMemberPointerConversion(
3370 Builder.CreateBr(ContinueBB);
3374 llvm::PHINode *Phi = Builder.CreatePHI(DstNull->getType(), 2,
"memptr.converted");
3375 Phi->addIncoming(DstNull, OriginalBB);
3376 Phi->addIncoming(Dst, ConvertBB);
3380llvm::Value *MicrosoftCXXABI::EmitNonNullMemberPointerConversion(
3381 const MemberPointerType *SrcTy,
const MemberPointerType *DstTy,
CastKind CK,
3384 CGBuilderTy &Builder) {
3393 llvm::Value *FirstField = Src;
3394 llvm::Value *NonVirtualBaseAdjustment = getZeroInt();
3395 llvm::Value *VirtualBaseAdjustmentOffset = getZeroInt();
3396 llvm::Value *VBPtrOffset = getZeroInt();
3400 FirstField = Builder.CreateExtractValue(Src, I++);
3402 NonVirtualBaseAdjustment = Builder.CreateExtractValue(Src, I++);
3404 VBPtrOffset = Builder.CreateExtractValue(Src, I++);
3406 VirtualBaseAdjustmentOffset = Builder.CreateExtractValue(Src, I++);
3409 bool IsDerivedToBase = (CK == CK_DerivedToBaseMemberPointer);
3410 const MemberPointerType *DerivedTy = IsDerivedToBase ? SrcTy : DstTy;
3415 llvm::Value *&NVAdjustField = IsFunc ? NonVirtualBaseAdjustment : FirstField;
3422 llvm::Value *SrcVBIndexEqZero =
3423 Builder.CreateICmpEQ(VirtualBaseAdjustmentOffset, getZeroInt());
3424 if (SrcInheritance == MSInheritanceModel::Virtual) {
3425 if (int64_t SrcOffsetToFirstVBase =
3426 getContext().getOffsetOfBaseWithVBPtr(SrcRD).getQuantity()) {
3427 llvm::Value *UndoSrcAdjustment = Builder.CreateSelect(
3429 llvm::ConstantInt::get(CGM.
IntTy, SrcOffsetToFirstVBase),
3431 NVAdjustField = Builder.CreateNSWAdd(NVAdjustField, UndoSrcAdjustment);
3442 llvm::Constant *BaseClassOffset = llvm::ConstantInt::get(
3447 llvm::Value *NVDisp;
3448 if (IsDerivedToBase)
3449 NVDisp = Builder.CreateNSWSub(NVAdjustField, BaseClassOffset,
"adj");
3451 NVDisp = Builder.CreateNSWAdd(NVAdjustField, BaseClassOffset,
"adj");
3453 NVAdjustField = Builder.CreateSelect(SrcVBIndexEqZero, NVDisp, getZeroInt());
3457 llvm::Value *DstVBIndexEqZero = SrcVBIndexEqZero;
3460 if (llvm::GlobalVariable *VDispMap =
3461 getAddrOfVirtualDisplacementMap(SrcRD, DstRD)) {
3462 llvm::Value *VBIndex = Builder.CreateExactUDiv(
3463 VirtualBaseAdjustmentOffset, llvm::ConstantInt::get(CGM.
IntTy, 4));
3465 llvm::Constant *Mapping = VDispMap->getInitializer();
3466 VirtualBaseAdjustmentOffset =
3469 llvm::Value *Idxs[] = {getZeroInt(), VBIndex};
3470 VirtualBaseAdjustmentOffset = Builder.CreateAlignedLoad(
3471 CGM.
IntTy, Builder.CreateInBoundsGEP(VDispMap->getValueType(),
3477 Builder.CreateICmpEQ(VirtualBaseAdjustmentOffset, getZeroInt());
3484 llvm::Value *DstVBPtrOffset = llvm::ConstantInt::getSigned(
3486 getContext().getASTRecordLayout(DstRD).getVBPtrOffset().getQuantity());
3488 Builder.CreateSelect(DstVBIndexEqZero, getZeroInt(), DstVBPtrOffset);
3494 if (DstInheritance == MSInheritanceModel::Virtual) {
3495 if (int64_t DstOffsetToFirstVBase =
3496 getContext().getOffsetOfBaseWithVBPtr(DstRD).getQuantity()) {
3497 llvm::Value *DoDstAdjustment = Builder.CreateSelect(
3499 llvm::ConstantInt::get(CGM.
IntTy, DstOffsetToFirstVBase),
3501 NVAdjustField = Builder.CreateNSWSub(NVAdjustField, DoDstAdjustment);
3510 Dst = llvm::PoisonValue::get(ConvertMemberPointerType(DstTy));
3512 Dst = Builder.CreateInsertValue(Dst, FirstField, Idx++);
3514 Dst = Builder.CreateInsertValue(Dst, NonVirtualBaseAdjustment, Idx++);
3516 Dst = Builder.CreateInsertValue(Dst, VBPtrOffset, Idx++);
3518 Dst = Builder.CreateInsertValue(Dst, VirtualBaseAdjustmentOffset, Idx++);
3524MicrosoftCXXABI::EmitMemberPointerConversion(
const CastExpr *E,
3525 llvm::Constant *Src) {
3526 const MemberPointerType *SrcTy =
3528 const MemberPointerType *DstTy = E->
getType()->
castAs<MemberPointerType>();
3532 return EmitMemberPointerConversion(SrcTy, DstTy, CK, E->
path_begin(),
3536llvm::Constant *MicrosoftCXXABI::EmitMemberPointerConversion(
3537 const MemberPointerType *SrcTy,
const MemberPointerType *DstTy,
CastKind CK,
3540 assert(CK == CK_DerivedToBaseMemberPointer ||
3541 CK == CK_BaseToDerivedMemberPointer ||
3542 CK == CK_ReinterpretMemberPointer);
3545 if (MemberPointerConstantIsNull(SrcTy, Src))
3546 return EmitNullMemberPointer(DstTy);
3551 if (CK == CK_ReinterpretMemberPointer)
3556 SrcTy, DstTy, CK, PathBegin, PathEnd, Src, Builder));
3561CGCallee MicrosoftCXXABI::EmitLoadOfMemberFunctionPointer(
3562 CodeGenFunction &CGF,
const Expr *E, Address This,
3563 llvm::Value *&ThisPtrForCall, llvm::Value *MemPtr,
3564 const MemberPointerType *MPT) {
3566 const FunctionProtoType *FPT =
3569 CGBuilderTy &Builder = CGF.
Builder;
3575 llvm::Value *FunctionPointer = MemPtr;
3576 llvm::Value *NonVirtualBaseAdjustment =
nullptr;
3577 llvm::Value *VirtualBaseAdjustmentOffset =
nullptr;
3578 llvm::Value *VBPtrOffset =
nullptr;
3579 if (MemPtr->getType()->isStructTy()) {
3582 FunctionPointer = Builder.CreateExtractValue(MemPtr, I++);
3584 NonVirtualBaseAdjustment = Builder.CreateExtractValue(MemPtr, I++);
3586 VBPtrOffset = Builder.CreateExtractValue(MemPtr, I++);
3588 VirtualBaseAdjustmentOffset = Builder.CreateExtractValue(MemPtr, I++);
3591 if (VirtualBaseAdjustmentOffset) {
3592 ThisPtrForCall = AdjustVirtualBase(CGF, E, RD, This,
3593 VirtualBaseAdjustmentOffset, VBPtrOffset);
3595 ThisPtrForCall =
This.emitRawPointer(CGF);
3598 if (NonVirtualBaseAdjustment)
3599 ThisPtrForCall = Builder.CreateInBoundsGEP(CGF.
Int8Ty, ThisPtrForCall,
3600 NonVirtualBaseAdjustment);
3602 CGCallee
Callee(FPT, FunctionPointer);
3607 return new MicrosoftCXXABI(CGM);
3641 StringRef MangledName(
"??_7type_info@@6B@");
3642 if (
auto VTable = CGM.
getModule().getNamedGlobal(MangledName))
3646 llvm::GlobalVariable::ExternalLinkage,
3647 nullptr, MangledName);
3660 IsPrivateOnPath = 1 | 8,
3664 HasHierarchyDescriptor = 64
3666 MSRTTIClass(
const CXXRecordDecl *RD) : RD(RD) {}
3668 const CXXBaseSpecifier *Specifier);
3670 MSRTTIClass *getFirstChild() {
return this + 1; }
3671 static MSRTTIClass *getNextChild(MSRTTIClass *Child) {
3672 return Child + 1 + Child->NumBases;
3675 const CXXRecordDecl *RD, *VirtualRoot;
3676 uint32_t Flags, NumBases, OffsetInVBase;
3680uint32_t MSRTTIClass::initialize(
const MSRTTIClass *Parent,
3681 const CXXBaseSpecifier *Specifier) {
3682 Flags = HasHierarchyDescriptor;
3684 VirtualRoot =
nullptr;
3688 Flags |= IsPrivate | IsPrivateOnPath;
3694 if (Parent->Flags & IsPrivateOnPath)
3695 Flags |= IsPrivateOnPath;
3696 VirtualRoot = Parent->VirtualRoot;
3697 OffsetInVBase = Parent->OffsetInVBase + RD->getASTContext()
3698 .getASTRecordLayout(Parent->RD).getBaseClassOffset(RD).getQuantity();
3702 MSRTTIClass *Child = getFirstChild();
3703 for (
const CXXBaseSpecifier &Base : RD->bases()) {
3704 NumBases += Child->initialize(
this, &Base) + 1;
3705 Child = getNextChild(Child);
3710static llvm::GlobalValue::LinkageTypes getLinkageForRTTI(QualType Ty) {
3712 case Linkage::Invalid:
3713 llvm_unreachable(
"Linkage hasn't been computed!");
3716 case Linkage::Internal:
3717 case Linkage::UniqueExternal:
3718 return llvm::GlobalValue::InternalLinkage;
3720 case Linkage::VisibleNone:
3721 case Linkage::Module:
3722 case Linkage::External:
3723 return llvm::GlobalValue::LinkOnceODRLinkage;
3725 llvm_unreachable(
"Invalid linkage!");
3731struct MSRTTIBuilder {
3733 HasBranchingHierarchy = 1,
3734 HasVirtualBranchingHierarchy = 2,
3735 HasAmbiguousBases = 4
3738 MSRTTIBuilder(MicrosoftCXXABI &ABI,
const CXXRecordDecl *RD)
3739 : CGM(ABI.CGM), Context(CGM.getContext()),
3740 VMContext(CGM.getLLVMContext()),
Module(CGM.getModule()), RD(RD),
3741 Linkage(getLinkageForRTTI(CGM.getContext().getCanonicalTagType(RD))),
3744 llvm::GlobalVariable *getBaseClassDescriptor(
const MSRTTIClass &Classes);
3745 llvm::GlobalVariable *
3746 getBaseClassArray(SmallVectorImpl<MSRTTIClass> &Classes);
3747 llvm::GlobalVariable *getClassHierarchyDescriptor();
3748 llvm::GlobalVariable *getCompleteObjectLocator(
const VPtrInfo &Info);
3751 ASTContext &Context;
3752 llvm::LLVMContext &VMContext;
3754 const CXXRecordDecl *RD;
3755 llvm::GlobalVariable::LinkageTypes
Linkage;
3756 MicrosoftCXXABI &ABI;
3765 Classes.push_back(MSRTTIClass(RD));
3776 for (MSRTTIClass *Class = &Classes.front(); Class <= &Classes.back();) {
3777 if ((Class->Flags & MSRTTIClass::IsVirtual) &&
3778 !VirtualBases.insert(Class->RD).second) {
3779 Class = MSRTTIClass::getNextChild(Class);
3782 if (!UniqueBases.insert(Class->RD).second)
3783 AmbiguousBases.insert(Class->RD);
3786 if (AmbiguousBases.empty())
3788 for (MSRTTIClass &Class : Classes)
3789 if (AmbiguousBases.count(Class.RD))
3790 Class.Flags |= MSRTTIClass::IsAmbiguous;
3793llvm::GlobalVariable *MSRTTIBuilder::getClassHierarchyDescriptor() {
3794 SmallString<256> MangledName;
3796 llvm::raw_svector_ostream
Out(MangledName);
3797 ABI.getMangleContext().mangleCXXRTTIClassHierarchyDescriptor(RD, Out);
3801 if (
auto CHD =
Module.getNamedGlobal(MangledName))
3805 SmallVector<MSRTTIClass, 8> Classes;
3807 Classes.front().initialize(
nullptr,
nullptr);
3810 for (
const MSRTTIClass &
Class : Classes) {
3811 if (
Class.RD->getNumBases() > 1)
3812 Flags |= HasBranchingHierarchy;
3815 if (
Class.Flags & MSRTTIClass::IsAmbiguous)
3816 Flags |= HasAmbiguousBases;
3818 if ((Flags & HasBranchingHierarchy) && RD->getNumVBases() != 0)
3819 Flags |= HasVirtualBranchingHierarchy;
3822 llvm::Value *GEPIndices[] = {llvm::ConstantInt::get(CGM.
IntTy, 0),
3823 llvm::ConstantInt::get(CGM.
IntTy, 0)};
3826 auto Type = ABI.getClassHierarchyDescriptorType();
3830 if (CHD->isWeakForLinker())
3831 CHD->setComdat(CGM.
getModule().getOrInsertComdat(CHD->getName()));
3833 auto *Bases = getBaseClassArray(Classes);
3836 llvm::Constant *Fields[] = {
3837 llvm::ConstantInt::get(CGM.
IntTy, 0),
3838 llvm::ConstantInt::get(CGM.
IntTy, Flags),
3839 llvm::ConstantInt::get(CGM.
IntTy, Classes.size()),
3840 ABI.getImageRelativeConstant(llvm::ConstantExpr::getInBoundsGetElementPtr(
3841 Bases->getValueType(), Bases,
3842 llvm::ArrayRef<llvm::Value *>(GEPIndices))),
3844 CHD->setInitializer(llvm::ConstantStruct::get(
Type, Fields));
3848llvm::GlobalVariable *
3849MSRTTIBuilder::getBaseClassArray(SmallVectorImpl<MSRTTIClass> &Classes) {
3850 SmallString<256> MangledName;
3852 llvm::raw_svector_ostream
Out(MangledName);
3853 ABI.getMangleContext().mangleCXXRTTIBaseClassArray(RD, Out);
3861 llvm::Type *PtrType = ABI.getImageRelativeType(CGM.
DefaultPtrTy);
3862 auto *ArrType = llvm::ArrayType::get(PtrType, Classes.size() + 1);
3864 new llvm::GlobalVariable(
Module, ArrType,
3866 nullptr, MangledName);
3867 if (BCA->isWeakForLinker())
3868 BCA->setComdat(CGM.
getModule().getOrInsertComdat(BCA->getName()));
3871 SmallVector<llvm::Constant *, 8> BaseClassArrayData;
3872 for (MSRTTIClass &
Class : Classes)
3873 BaseClassArrayData.push_back(
3874 ABI.getImageRelativeConstant(getBaseClassDescriptor(
Class)));
3875 BaseClassArrayData.push_back(llvm::Constant::getNullValue(PtrType));
3876 BCA->setInitializer(llvm::ConstantArray::get(ArrType, BaseClassArrayData));
3880llvm::GlobalVariable *
3881MSRTTIBuilder::getBaseClassDescriptor(
const MSRTTIClass &
Class) {
3886 if (
Class.VirtualRoot) {
3888 OffsetInVBTable = VTableContext.getVBTableIndex(RD,
Class.VirtualRoot) * 4;
3892 SmallString<256> MangledName;
3894 llvm::raw_svector_ostream
Out(MangledName);
3895 ABI.getMangleContext().mangleCXXRTTIBaseClassDescriptor(
3896 Class.RD,
Class.OffsetInVBase, VBPtrOffset, OffsetInVBTable,
3901 if (
auto BCD =
Module.getNamedGlobal(MangledName))
3905 auto Type = ABI.getBaseClassDescriptorType();
3908 nullptr, MangledName);
3909 if (BCD->isWeakForLinker())
3910 BCD->setComdat(CGM.
getModule().getOrInsertComdat(BCD->getName()));
3913 llvm::Constant *Fields[] = {
3914 ABI.getImageRelativeConstant(
3916 llvm::ConstantInt::get(CGM.
IntTy,
Class.NumBases),
3917 llvm::ConstantInt::get(CGM.
IntTy,
Class.OffsetInVBase),
3918 llvm::ConstantInt::getSigned(CGM.
IntTy, VBPtrOffset),
3919 llvm::ConstantInt::get(CGM.
IntTy, OffsetInVBTable),
3920 llvm::ConstantInt::get(CGM.
IntTy,
Class.Flags),
3921 ABI.getImageRelativeConstant(
3922 MSRTTIBuilder(ABI,
Class.RD).getClassHierarchyDescriptor()),
3924 BCD->setInitializer(llvm::ConstantStruct::get(
Type, Fields));
3928llvm::GlobalVariable *
3929MSRTTIBuilder::getCompleteObjectLocator(
const VPtrInfo &Info) {
3930 SmallString<256> MangledName;
3932 llvm::raw_svector_ostream
Out(MangledName);
3933 ABI.getMangleContext().mangleCXXRTTICompleteObjectLocator(RD, Info.
MangledPath, Out);
3937 if (
auto COL =
Module.getNamedGlobal(MangledName))
3942 int VFPtrOffset = 0;
3948 ->second.hasVtorDisp())
3952 llvm::StructType *
Type = ABI.getCompleteObjectLocatorType();
3954 nullptr, MangledName);
3957 llvm::Constant *Fields[] = {
3958 llvm::ConstantInt::get(CGM.
IntTy, ABI.isImageRelative()),
3959 llvm::ConstantInt::get(CGM.
IntTy, OffsetToTop),
3960 llvm::ConstantInt::get(CGM.
IntTy, VFPtrOffset),
3961 ABI.getImageRelativeConstant(
3963 ABI.getImageRelativeConstant(getClassHierarchyDescriptor()),
3964 ABI.getImageRelativeConstant(COL),
3966 llvm::ArrayRef<llvm::Constant *> FieldsRef(Fields);
3967 if (!ABI.isImageRelative())
3968 FieldsRef = FieldsRef.drop_back();
3969 COL->setInitializer(llvm::ConstantStruct::get(
Type, FieldsRef));
3970 if (COL->isWeakForLinker())
3971 COL->setComdat(CGM.
getModule().getOrInsertComdat(COL->getName()));
3976 bool &IsConst,
bool &IsVolatile,
3977 bool &IsUnaligned) {
3978 T = Context.getExceptionObjectType(T);
3987 IsUnaligned =
false;
3989 if (!PointeeType.
isNull()) {
3999 MPTy->getQualifier(),
4000 MPTy->getMostRecentCXXRecordDecl());
4004 if (T->isPointerType())
4011MicrosoftCXXABI::getAddrOfCXXCatchHandlerType(QualType
Type,
4012 QualType CatchHandlerType) {
4016 bool IsConst, IsVolatile, IsUnaligned;
4032 return CatchTypeInfo{getAddrOfRTTIDescriptor(
Type)->stripPointerCasts(),
4040llvm::Constant *MicrosoftCXXABI::getAddrOfRTTIDescriptor(QualType
Type) {
4041 SmallString<256> MangledName;
4043 llvm::raw_svector_ostream
Out(MangledName);
4044 getMangleContext().mangleCXXRTTI(
Type, Out);
4048 if (llvm::GlobalVariable *GV = CGM.
getModule().getNamedGlobal(MangledName))
4055 SmallString<256> TypeInfoString;
4057 llvm::raw_svector_ostream
Out(TypeInfoString);
4058 getMangleContext().mangleCXXRTTIName(
Type, Out);
4062 llvm::Constant *Fields[] = {
4064 llvm::ConstantPointerNull::get(CGM.
Int8PtrTy),
4065 llvm::ConstantDataArray::getString(CGM.
getLLVMContext(), TypeInfoString)};
4066 llvm::StructType *TypeDescriptorType =
4067 getTypeDescriptorType(TypeInfoString);
4068 auto *Var =
new llvm::GlobalVariable(
4069 CGM.
getModule(), TypeDescriptorType,
false,
4070 getLinkageForRTTI(
Type),
4071 llvm::ConstantStruct::get(TypeDescriptorType, Fields),
4073 if (Var->isWeakForLinker())
4074 Var->setComdat(CGM.
getModule().getOrInsertComdat(Var->getName()));
4079llvm::GlobalVariable *
4080MicrosoftCXXABI::getMSCompleteObjectLocator(
const CXXRecordDecl *RD,
4081 const VPtrInfo &Info) {
4082 return MSRTTIBuilder(*
this, RD).getCompleteObjectLocator(Info);
4085void MicrosoftCXXABI::emitCXXStructor(GlobalDecl GD) {
4086 if (
auto *ctor = dyn_cast<CXXConstructorDecl>(GD.
getDecl())) {
4088 llvm::Function *
Fn =
4100 dtor->getParent()->getNumVBases() == 0)
4123 if (
Fn->isWeakForLinker())
4124 Fn->setComdat(CGM.
getModule().getOrInsertComdat(
Fn->getName()));
4128MicrosoftCXXABI::getAddrOfCXXCtorClosure(
const CXXConstructorDecl *CD,
4133 SmallString<256> ThunkName;
4134 llvm::raw_svector_ostream
Out(ThunkName);
4135 getMangleContext().mangleName(GlobalDecl(CD, CT), Out);
4138 if (llvm::GlobalValue *GV = CGM.
getModule().getNamedValue(ThunkName))
4144 const CXXRecordDecl *RD = CD->
getParent();
4145 CanQualType RecordTy = getContext().getCanonicalTagType(RD);
4146 llvm::Function *ThunkFn = llvm::Function::Create(
4147 ThunkTy, getLinkageForRTTI(RecordTy), ThunkName.str(), &CGM.
getModule());
4148 ThunkFn->setCallingConv(
static_cast<llvm::CallingConv::ID
>(
4150 if (ThunkFn->isWeakForLinker())
4151 ThunkFn->setComdat(CGM.
getModule().getOrInsertComdat(ThunkFn->getName()));
4155 CodeGenFunction CGF(CGM);
4159 FunctionArgList FunctionArgs;
4162 buildThisParam(CGF, FunctionArgs);
4167 getContext(),
nullptr, SourceLocation(),
4168 &getContext().Idents.get(
"src"),
4169 getContext().getLValueReferenceType(RecordTy,
4171 ImplicitParamKind::Other);
4173 FunctionArgs.push_back(SrcParam);
4178 auto *IsMostDerived =
4180 &getContext().Idents.get(
"is_most_derived"),
4181 getContext().IntTy, ImplicitParamKind::Other);
4184 FunctionArgs.push_back(IsMostDerived);
4189 FunctionArgs, CD->
getLocation(), SourceLocation());
4192 setCXXABIThisValue(CGF, loadIncomingCXXThis(CGF));
4193 llvm::Value *
This = getThisValue(CGF);
4195 llvm::Value *SrcVal =
4209 SmallVector<const Stmt *, 4> ArgVec;
4210 ArrayRef<ParmVarDecl *> params = CD->
parameters().drop_front(IsCopy ? 1 : 0);
4211 for (
const ParmVarDecl *PD : params) {
4212 assert(PD->hasDefaultArg() &&
"ctor closure lacks default args");
4213 ArgVec.push_back(PD->getDefaultArg());
4216 CodeGenFunction::RunCleanupsScope Cleanups(CGF);
4218 const auto *FPT = CD->
getType()->
castAs<FunctionProtoType>();
4219 CGF.
EmitCallArgs(Args, FPT, llvm::ArrayRef(ArgVec), CD, IsCopy ? 1 : 0);
4222 AddedStructorArgCounts ExtraArgs =
4227 llvm::Constant *CalleePtr =
4232 Args, CD,
Ctor_Complete, ExtraArgs.Prefix, ExtraArgs.Suffix);
4233 CGF.
EmitCall(CalleeInfo, Callee, ReturnValueSlot(), Args);
4235 Cleanups.ForceCleanup();
4244llvm::Constant *MicrosoftCXXABI::getCatchableType(QualType T,
4246 int32_t VBPtrOffset,
4251 const CXXConstructorDecl *CD =
4258 uint32_t Size = getContext().getTypeSizeInChars(T).getQuantity();
4259 SmallString<256> MangledName;
4261 llvm::raw_svector_ostream
Out(MangledName);
4262 getMangleContext().mangleCXXCatchableType(T, CD, CT, Size, NVOffset,
4263 VBPtrOffset, VBIndex, Out);
4265 if (llvm::GlobalVariable *GV = CGM.
getModule().getNamedGlobal(MangledName))
4266 return getImageRelativeConstant(GV);
4270 llvm::Constant *TD = getImageRelativeConstant(getAddrOfRTTIDescriptor(T));
4274 llvm::Constant *CopyCtor;
4281 CopyCtor = llvm::Constant::getNullValue(CGM.
Int8PtrTy);
4283 CopyCtor = getImageRelativeConstant(CopyCtor);
4285 bool IsScalar = !RD;
4286 bool HasVirtualBases =
false;
4287 bool IsStdBadAlloc =
false;
4288 QualType PointeeType = T;
4302 if (HasVirtualBases)
4307 llvm::Constant *Fields[] = {
4308 llvm::ConstantInt::get(CGM.
IntTy, Flags),
4310 llvm::ConstantInt::get(CGM.
IntTy, NVOffset),
4311 llvm::ConstantInt::getSigned(CGM.
IntTy, VBPtrOffset),
4312 llvm::ConstantInt::get(CGM.
IntTy, VBIndex),
4313 llvm::ConstantInt::get(CGM.
IntTy, Size),
4316 llvm::StructType *CTType = getCatchableTypeType();
4317 auto *GV =
new llvm::GlobalVariable(
4318 CGM.
getModule(), CTType,
true, getLinkageForRTTI(T),
4319 llvm::ConstantStruct::get(CTType, Fields), MangledName);
4320 GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
4321 GV->setSection(
".xdata");
4322 if (GV->isWeakForLinker())
4323 GV->setComdat(CGM.
getModule().getOrInsertComdat(GV->getName()));
4324 return getImageRelativeConstant(GV);
4327llvm::GlobalVariable *MicrosoftCXXABI::getCatchableTypeArray(QualType T) {
4331 llvm::GlobalVariable *&CTA = CatchableTypeArrays[T];
4338 llvm::SmallSetVector<llvm::Constant *, 2> CatchableTypes;
4348 const CXXRecordDecl *MostDerivedClass =
nullptr;
4356 if (MostDerivedClass) {
4357 const ASTContext &Context = getContext();
4358 const ASTRecordLayout &MostDerivedLayout =
4361 SmallVector<MSRTTIClass, 8> Classes;
4363 Classes.front().initialize(
nullptr,
nullptr);
4365 for (
const MSRTTIClass &
Class : Classes) {
4368 (MSRTTIClass::IsPrivateOnPath | MSRTTIClass::IsAmbiguous))
4373 if (
Class.VirtualRoot) {
4384 CatchableTypes.insert(getCatchableType(RTTITy,
Class.OffsetInVBase,
4385 VBPtrOffset, OffsetInVBTable));
4393 CatchableTypes.insert(getCatchableType(T));
4406 CatchableTypes.insert(getCatchableType(getContext().VoidPtrTy));
4417 CatchableTypes.insert(getCatchableType(getContext().VoidPtrTy));
4419 uint32_t NumEntries = CatchableTypes.size();
4420 llvm::Type *CTType = getImageRelativeType(CGM.
DefaultPtrTy);
4421 llvm::ArrayType *AT = llvm::ArrayType::get(CTType, NumEntries);
4422 llvm::StructType *CTAType = getCatchableTypeArrayType(NumEntries);
4423 llvm::Constant *Fields[] = {
4424 llvm::ConstantInt::get(CGM.
IntTy, NumEntries),
4425 llvm::ConstantArray::get(
4426 AT, llvm::ArrayRef(CatchableTypes.begin(),
4427 CatchableTypes.end()))
4429 SmallString<256> MangledName;
4431 llvm::raw_svector_ostream
Out(MangledName);
4432 getMangleContext().mangleCXXCatchableTypeArray(T, NumEntries, Out);
4434 CTA =
new llvm::GlobalVariable(
4435 CGM.
getModule(), CTAType,
true, getLinkageForRTTI(T),
4436 llvm::ConstantStruct::get(CTAType, Fields), MangledName);
4437 CTA->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
4438 CTA->setSection(
".xdata");
4439 if (CTA->isWeakForLinker())
4440 CTA->setComdat(CGM.
getModule().getOrInsertComdat(CTA->getName()));
4444llvm::GlobalVariable *MicrosoftCXXABI::getThrowInfo(QualType T) {
4445 bool IsConst, IsVolatile, IsUnaligned;
4450 llvm::GlobalVariable *CTA = getCatchableTypeArray(T);
4457 ->getLimitedValue();
4459 SmallString<256> MangledName;
4461 llvm::raw_svector_ostream
Out(MangledName);
4462 getMangleContext().mangleCXXThrowInfo(T, IsConst, IsVolatile, IsUnaligned,
4468 if (llvm::GlobalVariable *GV = CGM.
getModule().getNamedGlobal(MangledName))
4484 llvm::Constant *CleanupFn = llvm::Constant::getNullValue(CGM.
Int8PtrTy);
4487 if (!DtorD->isTrivial())
4490 llvm::Constant *ForwardCompat =
4491 getImageRelativeConstant(llvm::Constant::getNullValue(CGM.
Int8PtrTy));
4492 llvm::Constant *PointerToCatchableTypes = getImageRelativeConstant(CTA);
4493 llvm::StructType *TIType = getThrowInfoType();
4494 llvm::Constant *Fields[] = {
4495 llvm::ConstantInt::get(CGM.
IntTy, Flags),
4496 getImageRelativeConstant(CleanupFn),
4498 PointerToCatchableTypes
4500 auto *GV =
new llvm::GlobalVariable(
4501 CGM.
getModule(), TIType,
true, getLinkageForRTTI(T),
4502 llvm::ConstantStruct::get(TIType, Fields), MangledName.str());
4503 GV->setUnnamedAddr(llvm::GlobalValue::UnnamedAddr::Global);
4504 GV->setSection(
".xdata");
4505 if (GV->isWeakForLinker())
4506 GV->setComdat(CGM.
getModule().getOrInsertComdat(GV->getName()));
4510void MicrosoftCXXABI::emitThrow(CodeGenFunction &CGF,
const CXXThrowExpr *E) {
4512 assert(SubExpr &&
"SubExpr cannot be null");
4513 QualType ThrowType = SubExpr->
getType();
4522 llvm::GlobalVariable *TI = getThrowInfo(ThrowType);
4529std::pair<llvm::Value *, const CXXRecordDecl *>
4530MicrosoftCXXABI::LoadVTablePtr(CodeGenFunction &CGF, Address This,
4531 const CXXRecordDecl *RD) {
4533 std::tie(This, std::ignore, RD) = performBaseAdjustment(CGF, This, T);
4537bool MicrosoftCXXABI::isPermittedToBeHomogeneousAggregate(
4538 const CXXRecordDecl *RD)
const {
4568 for (
const CXXBaseSpecifier &B : RD->
bases()) {
4569 if (
const CXXRecordDecl *FRD = B.getType()->getAsCXXRecordDecl()) {
4570 if (!isPermittedToBeHomogeneousAggregate(FRD))
static Address emitDynamicCastToVoid(CIRGenFunction &cgf, mlir::Location loc, QualType srcRecordTy, Address src)
static mlir::Value emitExactDynamicCast(CIRGenItaniumCXXABI &abi, CIRGenFunction &cgf, mlir::Location loc, QualType srcRecordTy, QualType destRecordTy, cir::PointerType destCIRTy, bool isRefCast, Address src)
static RValue performReturnAdjustment(CIRGenFunction &cgf, QualType resultType, RValue rv, const ThunkInfo &thunk)
static llvm::FunctionCallee getThrowFn(CodeGenModule &CGM)
static void emitTlsGuardCheck(CodeGenFunction &CGF, llvm::GlobalValue *TlsGuard, llvm::BasicBlock *DynInitBB, llvm::BasicBlock *ContinueBB)
static llvm::GlobalVariable * getTypeInfoVTable(CodeGenModule &CGM)
static bool hasDefaultCXXMethodCC(ASTContext &Context, const CXXMethodDecl *MD)
static bool isTrivialForMSVC(const CXXRecordDecl *RD, QualType Ty, CodeGenModule &CGM)
static llvm::FunctionCallee getInitThreadAbortFn(CodeGenModule &CGM)
static llvm::FunctionCallee getInitThreadHeaderFn(CodeGenModule &CGM)
static llvm::GlobalValue * getTlsGuardVar(CodeGenModule &CGM)
static QualType decomposeTypeForEH(ASTContext &Context, QualType T, bool &IsConst, bool &IsVolatile, bool &IsUnaligned)
static llvm::CallBase * emitRTtypeidCall(CodeGenFunction &CGF, llvm::Value *Argument)
static llvm::FunctionCallee getDynTlsOnDemandInitFn(CodeGenModule &CGM)
static void emitDynamicTlsInitializationCall(CodeGenFunction &CGF, llvm::GlobalValue *TlsGuard, llvm::BasicBlock *ContinueBB)
static void detectAmbiguousBases(SmallVectorImpl< MSRTTIClass > &Classes)
Find ambiguity among base classes.
static void emitDynamicTlsInitialization(CodeGenFunction &CGF)
static void serializeClassHierarchy(SmallVectorImpl< MSRTTIClass > &Classes, const CXXRecordDecl *RD)
Recursively serializes a class hierarchy in pre-order depth first order.
static llvm::FunctionCallee getInitThreadFooterFn(CodeGenModule &CGM)
static bool isDeletingDtor(GlobalDecl GD)
static void emitGlobalDtorWithTLRegDtor(CodeGenFunction &CGF, const VarDecl &VD, llvm::FunctionCallee Dtor, llvm::Constant *Addr)
static ConstantAddress getInitThreadEpochPtr(CodeGenModule &CGM)
static void mangleVFTableName(MicrosoftMangleContext &MangleContext, const CXXRecordDecl *RD, const VPtrInfo &VFPtr, SmallString< 256 > &Name)
Defines the C++ Decl subclasses, other than those for templates (found in DeclTemplate....
Result
Implement __builtin_bit_cast and related operations.
bool isMemberPointerToDerivedMember() const
const ValueDecl * getMemberPointerDecl() const
ArrayRef< const CXXRecordDecl * > getMemberPointerPath() const
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
CharUnits getTypeAlignInChars(QualType T) const
Return the ABI-specified alignment of a (complete) type T, in characters.
uint64_t getFieldOffset(const ValueDecl *FD) const
Get the offset of a FieldDecl or IndirectFieldDecl, in bits.
const ASTRecordLayout & getASTRecordLayout(const RecordDecl *D) const
Get or compute information about the layout of the specified record (struct/union/class) D,...
QualType getPointerType(QualType T) const
Return the uniqued reference to the type for a pointer to the specified type.
const LangOptions & getLangOpts() const
CharUnits getDeclAlign(const Decl *D, bool ForAlignof=false) const
Return a conservative estimate of the alignment of the specified decl D.
const ArrayType * getAsArrayType(QualType T) const
Type Query functions.
CharUnits getTypeSizeInChars(QualType T) const
Return the size of the specified (complete) type T, in characters.
QualType getMemberPointerType(QualType T, NestedNameSpecifier Qualifier, const CXXRecordDecl *Cls) const
Return the uniqued reference to the type for a member pointer to the specified type in the specified ...
const CXXConstructorDecl * getCopyConstructorForExceptionObject(CXXRecordDecl *RD)
QualType getSizeType() const
Return the unique type for "size_t" (C99 7.17), defined in <stddef.h>.
const TargetInfo & getTargetInfo() const
CharUnits toCharUnitsFromBits(int64_t BitSize) const
Convert a size in bits to a size in characters.
CanQualType getCanonicalTagType(const TagDecl *TD) const
unsigned getTargetAddressSpace(LangAS AS) const
void recordMemberDataPointerEvaluation(const ValueDecl *VD)
llvm::DenseMap< const CXXRecordDecl *, VBaseInfo > VBaseOffsetsMapTy
CharUnits getVBPtrOffset() const
getVBPtrOffset - Get the offset for virtual base table pointer.
CharUnits getBaseClassOffset(const CXXRecordDecl *Base) const
getBaseClassOffset - Get the offset, in chars, for the given base class.
CharUnits getVBaseClassOffset(const CXXRecordDecl *VBase) const
getVBaseClassOffset - Get the offset, in chars, for the given base class.
const VBaseOffsetsMapTy & getVBaseOffsetsMap() const
bool hasExtendableVFPtr() const
hasVFPtr - Does this class have a virtual function table pointer that can be extended by a derived cl...
Represents a base class of a C++ class.
VarDecl * getExceptionDecl() const
bool isDefaultConstructor() const
Whether this constructor is a default constructor (C++ [class.ctor]p5), which can be used to default-...
FunctionDecl * getOperatorDelete() const
bool isGlobalDelete() const
Represents a static or instance method of a struct/union/class.
const CXXRecordDecl * getParent() const
Return the parent of this method declaration, which is the class in which this method is defined.
QualType getThisType() const
Return the type of the this pointer.
Represents a C++ struct/union/class.
bool hasNonTrivialCopyAssignment() const
Determine whether this class has a non-trivial copy assignment operator (C++ [class....
CXXRecordDecl * getMostRecentDecl()
bool hasPrivateFields() const
bool hasProtectedFields() const
bool hasNonTrivialDestructor() const
Determine whether this class has a non-trivial destructor (C++ [class.dtor]p3)
bool isPolymorphic() const
Whether this class is polymorphic (C++ [class.virtual]), which means that the class contains or inher...
unsigned getNumBases() const
Retrieves the number of base classes of this class.
base_class_range vbases()
MSInheritanceModel getMSInheritanceModel() const
Returns the inheritance model used for this record.
bool nullFieldOffsetIsZero() const
In the Microsoft C++ ABI, use zero for the field offset of a null data member pointer if we can guara...
bool hasDefinition() const
bool isEmpty() const
Determine whether this is an empty class in the sense of (C++11 [meta.unary.prop]).
CXXDestructorDecl * getDestructor() const
Returns the destructor decl for this class.
bool hasNonTrivialDefaultConstructor() const
Determine whether this class has a non-trivial default constructor (C++11 [class.ctor]p5).
bool isVirtuallyDerivedFrom(const CXXRecordDecl *Base) const
Determine whether this class is virtually derived from the class Base.
bool needsImplicitCopyAssignment() const
Determine whether this class needs an implicit copy assignment operator to be lazily declared.
bool hasSimpleCopyAssignment() const
true if we know for sure that this class has a single, accessible, unambiguous copy assignment operat...
unsigned getNumVBases() const
Retrieves the number of virtual base classes of this class.
const Expr * getSubExpr() const
path_iterator path_begin()
CastKind getCastKind() const
const CXXBaseSpecifier *const * path_const_iterator
CharUnits - This is an opaque type for sizes expressed in character units.
bool isNegative() const
isNegative - Test whether the quantity is less than zero.
bool isPositive() const
isPositive - Test whether the quantity is greater than zero.
bool isZero() const
isZero - Test whether the quantity equals zero.
llvm::Align getAsAlign() const
getAsAlign - Returns Quantity as a valid llvm::Align, Beware llvm::Align assumes power of two 8-bit b...
QuantityType getQuantity() const
getQuantity - Get the raw integer representation of this quantity.
static CharUnits One()
One - Construct a CharUnits quantity of one.
static CharUnits fromQuantity(QuantityType Quantity)
fromQuantity - Construct a CharUnits quantity from a raw integer type.
static CharUnits Zero()
Zero - Construct a CharUnits quantity of zero.
bool hasProfileIRInstr() const
Check if IR level profile instrumentation is on.
static ABIArgInfo getIndirect(CharUnits Alignment, unsigned AddrSpace, bool ByVal=true, bool Realign=false, llvm::Type *Padding=nullptr)
void setSRetAfterThis(bool AfterThis)
bool isHomogeneousAggregate(QualType Ty, const Type *&Base, uint64_t &Members) const
isHomogeneousAggregate - Return true if a type is an ELFv2 homogeneous aggregate.
Like RawAddress, an abstract representation of an aligned address, but the pointer contained in this ...
llvm::Value * emitRawPointer(CodeGenFunction &CGF) const
Return the pointer contained in this class after authenticating it and adding offset to it if necessa...
Address withElementType(llvm::Type *ElemTy) const
Return address with different element type, but same pointer and alignment.
static ApplyDebugLocation CreateArtificial(CodeGenFunction &CGF)
Apply TemporaryLocation if it is valid.
static ApplyDebugLocation CreateEmpty(CodeGenFunction &CGF)
Set the IRBuilder to not attach debug locations.
llvm::StoreInst * CreateStore(llvm::Value *Val, Address Addr, bool IsVolatile=false)
Address CreateConstInBoundsByteGEP(Address Addr, CharUnits Offset, const llvm::Twine &Name="")
Given a pointer to i8, adjust it by a given constant offset.
Address CreateConstInBoundsGEP2_32(Address Addr, unsigned Idx0, unsigned Idx1, const llvm::Twine &Name="")
Address CreateGEP(CodeGenFunction &CGF, Address Addr, llvm::Value *Index, const llvm::Twine &Name="")
llvm::LoadInst * CreateLoad(Address Addr, const llvm::Twine &Name="")
Address CreateConstByteGEP(Address Addr, CharUnits Offset, const llvm::Twine &Name="")
llvm::LoadInst * CreateAlignedLoad(llvm::Type *Ty, llvm::Value *Addr, CharUnits Align, const llvm::Twine &Name="")
Address CreateInBoundsGEP(Address Addr, ArrayRef< llvm::Value * > IdxList, llvm::Type *ElementType, CharUnits Align, const Twine &Name="")
Implements C++ ABI-specific code generation functions.
RecordArgABI
Specify how one should pass an argument of a record type.
MangleContext & getMangleContext()
Gets the mangle context.
static CGCallee forVirtual(const CallExpr *CE, GlobalDecl MD, Address Addr, llvm::FunctionType *FTy)
static CGCallee forDirect(llvm::Constant *functionPtr, const CGCalleeInfo &abstractInfo=CGCalleeInfo())
bool isInstanceMethod() const
ABIArgInfo & getReturnInfo()
CanQualType getReturnType() const
unsigned getEffectiveCallingConvention() const
getEffectiveCallingConvention - Return the actual calling convention to use, which may depend on the ...
void add(RValue rvalue, QualType type)
CodeGenFunction - This class organizes the per-function state that is used while generating LLVM code...
llvm::Value * GetVTablePtr(Address This, llvm::Type *VTableTy, const CXXRecordDecl *VTableClass, VTableAuthMode AuthMode=VTableAuthMode::Authenticate)
GetVTablePtr - Return the Value of the vtable pointer member pointed to by This.
LValue EmitLoadOfReferenceLValue(LValue RefLVal)
GlobalDecl CurGD
CurGD - The GlobalDecl for the current function being compiled.
llvm::Constant * createAtExitStub(const VarDecl &VD, llvm::FunctionCallee Dtor, llvm::Constant *Addr)
Create a stub function, suitable for being passed to atexit, which passes the given address to the gi...
void EmitMustTailThunk(GlobalDecl GD, llvm::Value *AdjustedThisPtr, llvm::FunctionCallee Callee)
Emit a musttail call for a thunk with a potentially adjusted this pointer.
void EmitNoreturnRuntimeCallOrInvoke(llvm::FunctionCallee callee, ArrayRef< llvm::Value * > args)
Emits a call or invoke to the given noreturn runtime function.
llvm::CallBase * EmitRuntimeCallOrInvoke(llvm::FunctionCallee callee, ArrayRef< llvm::Value * > args, const Twine &name="")
Emits a call or invoke instruction to the given runtime function.
bool CurFuncIsThunk
In C++, whether we are code generating a thunk.
void registerGlobalDtorWithAtExit(const VarDecl &D, llvm::FunctionCallee fn, llvm::Constant *addr)
Call atexit() with a function that passes the given argument to the given function.
llvm::Value * getAsNaturalPointerTo(Address Addr, QualType PointeeType)
llvm::BasicBlock * createBasicBlock(const Twine &name="", llvm::Function *parent=nullptr, llvm::BasicBlock *before=nullptr)
createBasicBlock - Create an LLVM basic block.
AutoVarEmission EmitAutoVarAlloca(const VarDecl &var)
EmitAutoVarAlloca - Emit the alloca and debug information for a local variable.
void EmitCXXDestructorCall(const CXXDestructorDecl *D, CXXDtorType Type, bool ForVirtualBase, bool Delegating, Address This, QualType ThisTy)
const Decl * CurCodeDecl
CurCodeDecl - This is the inner-most code context, which includes blocks.
void EmitCXXGlobalVarDeclInit(const VarDecl &D, llvm::GlobalVariable *GV, bool PerformInit)
EmitCXXGlobalVarDeclInit - Create the initializer for a C++ variable with global storage.
void StartFunction(GlobalDecl GD, QualType RetTy, llvm::Function *Fn, const CGFunctionInfo &FnInfo, const FunctionArgList &Args, SourceLocation Loc=SourceLocation(), SourceLocation StartLoc=SourceLocation())
Emit code for the start of a function.
void EmitCXXGuardedInitBranch(llvm::Value *NeedsInit, llvm::BasicBlock *InitBlock, llvm::BasicBlock *NoInitBlock, GuardKind Kind, const VarDecl *D)
Emit a branch to select whether or not to perform guarded initialization.
RValue EmitCall(const CGFunctionInfo &CallInfo, const CGCallee &Callee, ReturnValueSlot ReturnValue, const CallArgList &Args, llvm::CallBase **CallOrInvoke, bool IsMustTail, SourceLocation Loc, bool IsVirtualFunctionPointerThunk=false)
EmitCall - Generate a call of the given function, expecting the given result type,...
void EmitTypeMetadataCodeForVCall(const CXXRecordDecl *RD, llvm::Value *VTable, SourceLocation Loc)
If whole-program virtual table optimization is enabled, emit an assumption that VTable is a member of...
llvm::CallInst * EmitNounwindRuntimeCall(llvm::FunctionCallee callee, const Twine &name="")
ASTContext & getContext() const
const Decl * CurFuncDecl
CurFuncDecl - Holds the Decl for the current outermost non-closure context.
void EmitAutoVarCleanups(const AutoVarEmission &emission)
void EmitAnyExprToMem(const Expr *E, Address Location, Qualifiers Quals, bool IsInitializer)
EmitAnyExprToMem - Emits the code necessary to evaluate an arbitrary expression into the given memory...
llvm::CallInst * EmitRuntimeCall(llvm::FunctionCallee callee, const Twine &name="")
void EmitDeleteCall(const FunctionDecl *DeleteFD, llvm::Value *Ptr, QualType DeleteTy, llvm::Value *NumElements=nullptr, CharUnits CookieSize=CharUnits())
CodeGenTypes & getTypes() const
RawAddress CreateMemTemp(QualType T, const Twine &Name="tmp", RawAddress *Alloca=nullptr)
CreateMemTemp - Create a temporary memory object of the given type, with appropriate alignmen and cas...
void EmitCallArgs(CallArgList &Args, PrototypeWrapper Prototype, llvm::iterator_range< CallExpr::const_arg_iterator > ArgRange, AbstractCallee AC=AbstractCallee(), unsigned ParamsToSkip=0, EvaluationOrder Order=EvaluationOrder::Default)
EmitCallArgs - Emit call arguments for a function.
LValue MakeAddrLValue(Address Addr, QualType T, AlignmentSource Source=AlignmentSource::Type)
void FinishFunction(SourceLocation EndLoc=SourceLocation())
FinishFunction - Complete IR generation of the current function.
Address GetAddrOfLocalVar(const VarDecl *VD)
GetAddrOfLocalVar - Return the address of a local variable.
llvm::Value * EmitVTableTypeCheckedLoad(const CXXRecordDecl *RD, llvm::Value *VTable, llvm::Type *VTableTy, uint64_t VTableByteOffset)
Emit a type checked load from the given vtable.
Address ReturnValue
ReturnValue - The temporary alloca to hold the return value.
llvm::Instruction * CurrentFuncletPad
bool ShouldEmitVTableTypeCheckedLoad(const CXXRecordDecl *RD)
Returns whether we should perform a type checked load when loading a virtual function for virtual cal...
void PopCleanupBlock(bool FallThroughIsBranchThrough=false, bool ForDeactivation=false)
PopCleanupBlock - Will pop the cleanup entry on the stack and process all branch fixups.
void EmitBlock(llvm::BasicBlock *BB, bool IsFinished=false)
EmitBlock - Emit the given block.
This class organizes the cross-function state that is used while generating LLVM code.
void setGVProperties(llvm::GlobalValue *GV, GlobalDecl GD) const
Set visibility, dllimport/dllexport and dso_local.
void AddCXXDtorEntry(llvm::FunctionCallee DtorFn, llvm::Constant *Object)
Add a destructor and object to add to the C++ global destructor function.
void AddVTableTypeMetadata(llvm::GlobalVariable *VTable, CharUnits Offset, const CXXRecordDecl *RD)
Create and attach type metadata for the given vtable.
void setDSOLocal(llvm::GlobalValue *GV) const
llvm::GlobalObject::VCallVisibility GetVCallVisibilityLevel(const CXXRecordDecl *RD, llvm::DenseSet< const CXXRecordDecl * > &Visited)
Returns the vcall visibility of the given type.
llvm::Module & getModule() const
llvm::FunctionCallee CreateRuntimeFunction(llvm::FunctionType *Ty, StringRef Name, llvm::AttributeList ExtraAttrs=llvm::AttributeList(), bool Local=false, bool AssumeConvergent=false)
Create or return a runtime function declaration with the specified type and name.
CodeGenVTables & getVTables()
bool classNeedsVectorDestructor(const CXXRecordDecl *RD)
Check that class need vector deleting destructor body.
llvm::Constant * GetAddrOfRTTIDescriptor(QualType Ty, bool ForEH=false)
Get the address of the RTTI descriptor for the given type.
llvm::Constant * GetAddrOfFunction(GlobalDecl GD, llvm::Type *Ty=nullptr, bool ForVTable=false, bool DontDefer=false, ForDefinition_t IsForDefinition=NotForDefinition)
Return the address of the given function.
const ABIInfo & getABIInfo()
DiagnosticsEngine & getDiags() const
llvm::Constant * getAddrOfCXXStructor(GlobalDecl GD, const CGFunctionInfo *FnInfo=nullptr, llvm::FunctionType *FnType=nullptr, bool DontDefer=false, ForDefinition_t IsForDefinition=NotForDefinition)
Return the address of the constructor/destructor of the given type.
llvm::GlobalValue::LinkageTypes getLLVMLinkageForDeclarator(const DeclaratorDecl *D, GVALinkage Linkage)
Returns LLVM linkage for a declarator.
const LangOptions & getLangOpts() const
CodeGenTypes & getTypes()
const TargetInfo & getTarget() const
void EmitGlobal(GlobalDecl D)
Emit code for a single global function or var decl.
void addUsedGlobal(llvm::GlobalValue *GV)
Add a global to a list to be added to the llvm.used metadata.
void AppendLinkerOptions(StringRef Opts)
Appends Opts to the "llvm.linker.options" metadata value.
bool TryEmitBaseDestructorAsAlias(const CXXDestructorDecl *D)
Try to emit a base destructor as an alias to its primary base-class destructor.
CharUnits computeNonVirtualBaseClassOffset(const CXXRecordDecl *DerivedClass, CastExpr::path_const_iterator Start, CastExpr::path_const_iterator End)
CharUnits getVBaseAlignment(CharUnits DerivedAlign, const CXXRecordDecl *Derived, const CXXRecordDecl *VBase)
Returns the assumed alignment of a virtual base of a class.
void EmitDefinitionAsAlias(GlobalDecl Alias, GlobalDecl Target)
Emit a definition as a global alias for another definition, unconditionally.
llvm::Function * codegenCXXStructor(GlobalDecl GD)
llvm::Constant * CreateRuntimeVariable(llvm::Type *Ty, StringRef Name)
Create a new runtime global variable with the specified type and name.
void setTLSMode(llvm::GlobalValue *GV, const VarDecl &D) const
Set the TLS mode for the given LLVM GlobalValue for the thread-local variable declaration D.
ASTContext & getContext() const
llvm::Constant * GetAddrOfGlobalVar(const VarDecl *D, llvm::Type *Ty=nullptr, ForDefinition_t IsForDefinition=NotForDefinition)
Return the llvm::Constant for the address of the given global variable.
MicrosoftVTableContext & getMicrosoftVTableContext()
const TargetCodeGenInfo & getTargetCodeGenInfo()
const CodeGenOptions & getCodeGenOpts() const
StringRef getMangledName(GlobalDecl GD)
llvm::GlobalVariable * CreateOrReplaceCXXRuntimeVariable(StringRef Name, llvm::Type *Ty, llvm::GlobalValue::LinkageTypes Linkage, llvm::Align Alignment)
Will return a global variable of the given type.
llvm::LLVMContext & getLLVMContext()
llvm::GlobalValue * GetGlobalValue(StringRef Ref)
void maybeSetTrivialComdat(const Decl &D, llvm::GlobalObject &GO)
void setDLLImportDLLExport(llvm::GlobalValue *GV, GlobalDecl D) const
llvm::GlobalVariable::LinkageTypes getVTableLinkage(const CXXRecordDecl *RD)
Return the appropriate linkage for the vtable, VTT, and type information of the given class.
void SetLLVMFunctionAttributes(GlobalDecl GD, const CGFunctionInfo &Info, llvm::Function *F, bool IsThunk)
Set the LLVM function attributes (sext, zext, etc).
void addDeferredVTable(const CXXRecordDecl *RD)
void SetLLVMFunctionAttributesForDefinition(const Decl *D, llvm::Function *F)
Set the LLVM function attributes which only apply to a function definition.
llvm::Function * CreateGlobalInitOrCleanUpFunction(llvm::FunctionType *ty, const Twine &name, const CGFunctionInfo &FI, SourceLocation Loc=SourceLocation(), bool TLS=false, llvm::GlobalVariable::LinkageTypes Linkage=llvm::GlobalVariable::InternalLinkage)
const CGFunctionInfo & arrangeCXXMethodDeclaration(const CXXMethodDecl *MD)
C++ methods have some special rules and also have implicit parameters.
llvm::FunctionType * GetFunctionType(const CGFunctionInfo &Info)
GetFunctionType - Get the LLVM function type for.
bool isFuncTypeConvertible(const FunctionType *FT)
isFuncTypeConvertible - Utility to check whether a function type can be converted to an LLVM type (i....
llvm::Type * ConvertTypeForMem(QualType T)
ConvertTypeForMem - Convert type T into a llvm::Type.
const CGFunctionInfo & arrangeUnprototypedMustTailThunk(const CXXMethodDecl *MD)
Arrange a thunk that takes 'this' as the first parameter followed by varargs.
const CGFunctionInfo & arrangeCXXConstructorCall(const CallArgList &Args, const CXXConstructorDecl *D, CXXCtorType CtorKind, unsigned ExtraPrefixArgs, unsigned ExtraSuffixArgs, bool PassProtoArgs=true)
Arrange a call to a C++ method, passing the given arguments.
const CGFunctionInfo & arrangeCXXStructorDeclaration(GlobalDecl GD)
const CGFunctionInfo & arrangeMSCtorClosure(const CXXConstructorDecl *CD, CXXCtorType CT)
const CGFunctionInfo & arrangeNullaryFunction()
A nullary function is a freestanding function of type 'void ()'.
void createVTableInitializer(ConstantStructBuilder &builder, const VTableLayout &layout, llvm::Constant *rtti, bool vtableHasLocalLinkage)
Add vtable components for the given vtable layout to the given global initializer.
A specialization of Address that requires the address to be an LLVM Constant.
static RValue get(llvm::Value *V)
llvm::Value * getScalarVal() const
getScalarVal() - Return the Value* of this scalar value.
virtual LangAS getSRetAddrSpace(const CXXRecordDecl *RD) const
Get the address space for an indirect (sret) return of the given type.
DeclContext * getParent()
getParent - Returns the containing DeclContext.
decl_range decls() const
decls_begin/decls_end - Iterate over the declarations stored in this context.
Decl - This represents one declaration (or definition), e.g.
bool isInStdNamespace() const
SourceLocation getLocation() const
DeclContext * getDeclContext()
DiagnosticBuilder Report(SourceLocation Loc, unsigned DiagID)
Issue the message to the client.
SourceLocation getExprLoc() const LLVM_READONLY
getExprLoc - Return the preferred location for the arrow when diagnosing a problem with a generic exp...
const RecordDecl * getParent() const
Returns the parent of this field declaration, which is the struct in which this field is defined.
ArrayRef< ParmVarDecl * > parameters() const
unsigned getNumParams() const
Return the number of parameters this function must have based on its FunctionType.
bool isDefined(const FunctionDecl *&Definition, bool CheckForPendingFriendDefinition=false) const
Returns true if the function has a definition that does not need to be instantiated.
Represents a prototype with parameter type info, e.g.
bool isVariadic() const
Whether this function prototype is variadic.
GlobalDecl - represents a global declaration.
GlobalDecl getWithCtorType(CXXCtorType Type)
GlobalDecl getWithDtorType(CXXDtorType Type)
CXXDtorType getDtorType() const
const Decl * getDecl() const
IdentifierInfo & get(StringRef Name)
Return the identifier token info for the specified named identifier.
static ImplicitParamDecl * Create(ASTContext &C, DeclContext *DC, SourceLocation IdLoc, const IdentifierInfo *Id, QualType T, ImplicitParamKind ParamKind)
Create implicit parameter.
bool isExplicitDefaultVisibilityExportMapping() const
bool isAllDefaultVisibilityExportMapping() const
MangleContext - Context for tracking state which persists across multiple calls to the C++ name mangl...
A pointer to member type per C++ 8.3.3 - Pointers to members.
CXXRecordDecl * getMostRecentCXXRecordDecl() const
Note: this can trigger extra deserialization when external AST sources are used.
QualType getPointeeType() const
bool isMemberFunctionPointer() const
Returns true if the member type (i.e.
bool isMemberDataPointer() const
Returns true if the member type (i.e.
unsigned getVBTableIndex(const CXXRecordDecl *Derived, const CXXRecordDecl *VBase)
Returns the index of VBase in the vbtable of Derived.
MethodVFTableLocation getMethodVFTableLocation(GlobalDecl GD)
const VPtrInfoVector & getVFPtrOffsets(const CXXRecordDecl *RD)
const VTableLayout & getVFTableLayout(const CXXRecordDecl *RD, CharUnits VFPtrOffset)
IdentifierInfo * getIdentifier() const
Get the identifier that names this declaration, if there is one.
DeclarationName getDeclName() const
Get the actual, stored name of the declaration, which may be a special name.
bool isExternallyVisible() const
A (possibly-)qualified type.
bool isVolatileQualified() const
Determine whether this type is volatile-qualified.
bool isNull() const
Return true if this QualType doesn't point to a type yet.
Qualifiers getQualifiers() const
Retrieve the set of qualifiers applied to this type.
QualType getUnqualifiedType() const
Retrieve the unqualified variant of the given type, removing as little sugar as possible.
bool isConstQualified() const
Determine whether this type is const-qualified.
DestructionKind isDestructedType() const
Returns a nonzero value if objects of this type require non-trivial work to clean up after.
bool hasUnaligned() const
bool canPassInRegisters() const
Determine whether this class can be passed in registers.
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
const llvm::Triple & getTriple() const
Returns the target triple of the primary target.
virtual bool emitVectorDeletingDtors(const LangOptions &) const
Controls whether to emit MSVC vector deleting destructors.
uint64_t getPointerWidth(LangAS AddrSpace) const
Return the width of pointers on this target, for the specified address space.
virtual bool callGlobalDeleteInDeletingDtor(const LangOptions &) const
Controls whether global operator delete is called by the deleting destructor or at the point where de...
The base class of the type hierarchy.
CXXRecordDecl * getAsCXXRecordDecl() const
Retrieves the CXXRecordDecl that this type refers to, either because the type is a RecordType or beca...
bool isPointerType() const
const T * castAs() const
Member-template castAs<specific type>.
bool isReferenceType() const
QualType getPointeeType() const
If this is a pointer, ObjC object pointer, or block pointer, this returns the respective pointee.
bool isObjectType() const
Determine whether this type is an object type.
Linkage getLinkage() const
Determine the linkage of this type.
bool isNullPtrType() const
ArrayRef< VTableComponent > vtable_components() const
Represents a variable declaration or definition.
TLSKind getTLSKind() const
bool isNoDestroy(const ASTContext &) const
Is destruction of this variable entirely suppressed?
bool isStaticLocal() const
Returns true if a variable with function scope is a static local variable.
llvm::Value * getCXXDestructorImplicitParam(CodeGenModule &CGM, llvm::BasicBlock *InsertBlock, llvm::BasicBlock::iterator InsertPoint, const CXXDestructorDecl *D, CXXDtorType Type, bool ForVirtualBase, bool Delegating)
CGCXXABI::RecordArgABI getRecordArgABI(const RecordType *RT, CGCXXABI &CXXABI)
bool classifyReturnType(const CGCXXABI &CXXABI, CGFunctionInfo &FI, const ABIInfo &Info)
@ NormalCleanup
Denotes a cleanup that should run when a scope is exited using normal control flow (falling off the e...
@ EHCleanup
Denotes a cleanup that should run when a scope is exited using exceptional control flow (a throw stat...
CGCXXABI * CreateMicrosoftCXXABI(CodeGenModule &CGM)
Creates a Microsoft-family ABI.
const internal::VariadicAllOfMatcher< Type > type
Matches Types in the clang AST.
const internal::VariadicDynCastAllOfMatcher< Stmt, Expr > expr
Matches expressions.
constexpr Variable var(Literal L)
Returns the variable of L.
bool This(InterpState &S, CodePtr OpPC)
@ Address
A pointer to a ValueDecl.
PRESERVE_NONE bool Ret(InterpState &S, CodePtr &PC)
The JSON file list parser is used to communicate input to InstallAPI.
CanQual< Type > CanQualType
Represents a canonical, potentially-qualified type.
CXXCtorType
C++ constructor types.
@ Ctor_Base
Base object ctor.
@ Ctor_DefaultClosure
Default closure variant of a ctor.
@ Ctor_CopyingClosure
Copying closure variant of a ctor.
@ Ctor_Complete
Complete object ctor.
bool isa(CodeGen::Address addr)
GVALinkage
A more specific kind of linkage than enum Linkage.
void initialize(TemplateInstantiationCallbackPtrs &Callbacks, const Sema &TheSema)
bool inheritanceModelHasNVOffsetField(bool IsMemberFunction, MSInheritanceModel Inheritance)
bool inheritanceModelHasOnlyOneField(bool IsMemberFunction, MSInheritanceModel Inheritance)
nullptr
This class represents a compute construct, representing a 'Kind' of ‘parallel’, 'serial',...
bool inheritanceModelHasVBPtrOffsetField(MSInheritanceModel Inheritance)
bool inheritanceModelHasVBTableOffsetField(MSInheritanceModel Inheritance)
Linkage
Describes the different kinds of linkage (C++ [basic.link], C99 6.2.2) that an entity may have.
@ Module
Module linkage, which indicates that the entity can be referred to from other translation units withi...
@ Template
We are parsing a template declaration.
SmallVector< std::unique_ptr< VPtrInfo >, 2 > VPtrInfoVector
CXXDtorType
C++ destructor types.
@ Dtor_VectorDeleting
Vector deleting dtor.
@ Dtor_Comdat
The COMDAT used for dtors.
@ Dtor_Unified
GCC-style unified dtor.
@ Dtor_Base
Base object dtor.
@ Dtor_Complete
Complete object dtor.
@ Dtor_Deleting
Deleting dtor.
@ Type
The name was classified as a type.
LangAS
Defines the address space values used by the address space qualifier of QualType.
CastKind
CastKind - The kind of operation required for a conversion.
MSInheritanceModel
Assigned inheritance model for a class in the MS C++ ABI.
CallingConv
CallingConv - Specifies the calling convention that a function uses.
U cast(CodeGen::Address addr)
@ Class
The "class" keyword introduces the elaborated-type-specifier.
@ Implicit
An implicit conversion.
const CXXRecordDecl * NearestVBase
llvm::PointerType * VoidPtrTy
llvm::PointerType * Int8PtrPtrTy
CharUnits getIntAlign() const
llvm::IntegerType * Int8Ty
i8, i16, i32, and i64
CharUnits getIntSize() const
llvm::IntegerType * SizeTy
llvm::IntegerType * Int32Ty
llvm::IntegerType * IntPtrTy
llvm::IntegerType * IntTy
int
llvm::PointerType * Int8PtrTy
llvm::IntegerType * PtrDiffTy
CharUnits getPointerAlign() const
llvm::PointerType * DefaultPtrTy
const CXXRecordDecl * VBase
If nonnull, holds the last vbase which contains the vfptr that the method definition is adjusted to.
CharUnits VFPtrOffset
This is the offset of the vfptr from the start of the last vbase, or the complete type if there are n...
uint64_t Index
Method's index in the vftable.
union clang::ReturnAdjustment::VirtualAdjustment Virtual
int64_t NonVirtual
The non-virtual adjustment from the derived object to its nearest virtual base.
union clang::ThisAdjustment::VirtualAdjustment Virtual
int64_t NonVirtual
The non-virtual adjustment from the derived object to its nearest virtual base.
ThisAdjustment This
The this pointer adjustment.
Holds information about the inheritance path to a virtual base or function table pointer.
CharUnits NonVirtualOffset
IntroducingObject is at this offset from its containing complete object or virtual base.
CharUnits FullOffsetInMDC
Static offset from the top of the most derived class to this vfptr, including any virtual base offset...
const CXXRecordDecl * getVBaseWithVPtr() const
The vptr is stored inside the non-virtual component of this virtual base.
const CXXRecordDecl * IntroducingObject
This is the class that introduced the vptr by declaring new virtual methods or virtual bases.
BasePath MangledPath
The bases from the inheritance path that got used to mangle the vbtable name.
BasePath PathToIntroducingObject
This holds the base classes path from the complete type to the first base with the given vfptr offset...
const CXXRecordDecl * ObjectWithVPtr
This is the most derived class that has this vptr at offset zero.
uint32_t VBPtrOffset
The offset (in bytes) of the vbptr, relative to the beginning of the derived class.
struct clang::ReturnAdjustment::VirtualAdjustment::@167242364125115315334113104006210160165266060257 Microsoft
uint32_t VBIndex
Index of the virtual base in the vbtable.
int32_t VtordispOffset
The offset of the vtordisp (in bytes), relative to the ECX.
struct clang::ThisAdjustment::VirtualAdjustment::@312251255113040203233347230177110330127151157305 Microsoft
int32_t VBOffsetOffset
The offset (in bytes) of the vbase offset in the vbtable.
int32_t VBPtrOffset
The offset of the vbptr of the derived class (in bytes), relative to the ECX after vtordisp adjustmen...