Home
last modified time | relevance | path

Searched refs:MSInheritanceModel (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/clang/include/clang/AST/
H A DCXXInheritance.h365 inheritanceModelHasVBPtrOffsetField(MSInheritanceModel Inheritance) { in inheritanceModelHasVBPtrOffsetField()
366 return Inheritance == MSInheritanceModel::Unspecified; in inheritanceModelHasVBPtrOffsetField()
372 MSInheritanceModel Inheritance) { in inheritanceModelHasNVOffsetField()
373 return IsMemberFunction && Inheritance >= MSInheritanceModel::Multiple; in inheritanceModelHasNVOffsetField()
377 inheritanceModelHasVBTableOffsetField(MSInheritanceModel Inheritance) { in inheritanceModelHasVBTableOffsetField()
378 return Inheritance >= MSInheritanceModel::Virtual; in inheritanceModelHasVBTableOffsetField()
382 MSInheritanceModel Inheritance) { in inheritanceModelHasOnlyOneField()
384 return Inheritance <= MSInheritanceModel::Single; in inheritanceModelHasOnlyOneField()
385 return Inheritance <= MSInheritanceModel::Multiple; in inheritanceModelHasOnlyOneField()
H A DDeclCXX.h1769 MSInheritanceModel getMSInheritanceModel() const;
1772 MSInheritanceModel calculateInheritanceModel() const;
/llvm-project-15.0.7/clang/lib/AST/
H A DMicrosoftCXXABI.cpp224 MSInheritanceModel CXXRecordDecl::calculateInheritanceModel() const { in calculateInheritanceModel()
226 return MSInheritanceModel::Unspecified; in calculateInheritanceModel()
228 return MSInheritanceModel::Virtual; in calculateInheritanceModel()
230 return MSInheritanceModel::Multiple; in calculateInheritanceModel()
231 return MSInheritanceModel::Single; in calculateInheritanceModel()
234 MSInheritanceModel CXXRecordDecl::getMSInheritanceModel() const { in getMSInheritanceModel()
284 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in getMSMemberPointerSlots()
H A DMicrosoftMangle.cpp673 MSInheritanceModel IM = RD->getMSInheritanceModel(); in mangleMemberDataPointer()
682 if (IM == MSInheritanceModel::Virtual) in mangleMemberDataPointer()
692 case MSInheritanceModel::Single: Code = '0'; break; in mangleMemberDataPointer()
693 case MSInheritanceModel::Multiple: Code = '0'; break; in mangleMemberDataPointer()
694 case MSInheritanceModel::Virtual: Code = 'F'; break; in mangleMemberDataPointer()
695 case MSInheritanceModel::Unspecified: Code = 'G'; break; in mangleMemberDataPointer()
720 MSInheritanceModel IM = RD->getMSInheritanceModel(); in mangleMemberFunctionPointer()
724 case MSInheritanceModel::Single: Code = '1'; break; in mangleMemberFunctionPointer()
725 case MSInheritanceModel::Multiple: Code = 'H'; break; in mangleMemberFunctionPointer()
758 if (IM == MSInheritanceModel::Single) { in mangleMemberFunctionPointer()
[all …]
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DSpecifiers.h371 enum class MSInheritanceModel { enum
H A DAttr.td3591 MSInheritanceModel getInheritanceModel() const {
3592 // The spelling enum should agree with MSInheritanceModel.
3593 return MSInheritanceModel(getSemanticSpelling());
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp2756 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in isZeroInitializable()
2764 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in ConvertMemberPointerType()
2789 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in GetNullMemberPointerFields()
2826 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in EmitFullMemberPointer()
2863 MSInheritanceModel::Virtual) in EmitMemberDataPointer()
2969 MSInheritanceModel::Virtual) in EmitMemberFunctionPointer()
3005 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in EmitMemberPointerComparison()
3210 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in EmitMemberDataPointerAddress()
3356 if (SrcInheritance == MSInheritanceModel::Virtual) { in EmitNonNullMemberPointerConversion()
3426 if (DstInheritance == MSInheritanceModel::Virtual) { in EmitNonNullMemberPointerConversion()
[all …]
H A DCGDebugInfo.cpp3137 case MSInheritanceModel::Single: in CreateType()
3140 case MSInheritanceModel::Multiple: in CreateType()
3143 case MSInheritanceModel::Virtual: in CreateType()
3146 case MSInheritanceModel::Unspecified: in CreateType()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaType.cpp8768 MSInheritanceModel IM; in assignInheritanceModel()
8776 IM = MSInheritanceModel::Single; in assignInheritanceModel()
8779 IM = MSInheritanceModel::Multiple; in assignInheritanceModel()
8782 IM = MSInheritanceModel::Unspecified; in assignInheritanceModel()
H A DSemaDeclAttr.cpp4419 MSInheritanceModel ExplicitModel) { in checkMSInheritanceAttrOnDefinition()
4428 if (ExplicitModel == MSInheritanceModel::Unspecified) in checkMSInheritanceAttrOnDefinition()
6941 D, AL, /*BestCase=*/true, (MSInheritanceModel)AL.getSemanticSpelling()); in handleMSInheritanceAttr()
7707 MSInheritanceModel Model) { in mergeMSInheritanceAttr()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h3552 MSInheritanceModel Model);
4587 MSInheritanceModel SemanticSpelling);