Home
last modified time | relevance | path

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

/src/contrib/llvm-project/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.h1827 MSInheritanceModel getMSInheritanceModel() const;
1830 MSInheritanceModel calculateInheritanceModel() const;
/src/contrib/llvm-project/clang/lib/AST/
H A DMicrosoftCXXABI.cpp222 MSInheritanceModel CXXRecordDecl::calculateInheritanceModel() const { in calculateInheritanceModel()
224 return MSInheritanceModel::Unspecified; in calculateInheritanceModel()
226 return MSInheritanceModel::Virtual; in calculateInheritanceModel()
228 return MSInheritanceModel::Multiple; in calculateInheritanceModel()
229 return MSInheritanceModel::Single; in calculateInheritanceModel()
232 MSInheritanceModel CXXRecordDecl::getMSInheritanceModel() const { in getMSInheritanceModel()
282 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in getMSMemberPointerSlots()
H A DMicrosoftMangle.cpp694 MSInheritanceModel IM = RD->getMSInheritanceModel(); in mangleMemberDataPointer()
703 if (IM == MSInheritanceModel::Virtual) in mangleMemberDataPointer()
713 case MSInheritanceModel::Single: Code = '0'; break; in mangleMemberDataPointer()
714 case MSInheritanceModel::Multiple: Code = '0'; break; in mangleMemberDataPointer()
715 case MSInheritanceModel::Virtual: Code = 'F'; break; in mangleMemberDataPointer()
716 case MSInheritanceModel::Unspecified: Code = 'G'; break; in mangleMemberDataPointer()
745 MSInheritanceModel IM = RD->getMSInheritanceModel(); in mangleMemberDataPointerInClassNTTP()
750 if (IM != MSInheritanceModel::Single && IM != MSInheritanceModel::Multiple) in mangleMemberDataPointerInClassNTTP()
779 MSInheritanceModel IM = RD->getMSInheritanceModel(); in mangleMemberFunctionPointer()
783 case MSInheritanceModel::Single: Code = '1'; break; in mangleMemberFunctionPointer()
[all …]
/src/contrib/llvm-project/clang/include/clang/Basic/
H A DSpecifiers.h389 enum class MSInheritanceModel { enum
H A DAttr.td4079 MSInheritanceModel getInheritanceModel() const {
4080 // The spelling enum should agree with MSInheritanceModel.
4081 return MSInheritanceModel(getSemanticSpelling());
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp2791 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in isZeroInitializable()
2799 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in ConvertMemberPointerType()
2824 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in GetNullMemberPointerFields()
2861 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in EmitFullMemberPointer()
2898 MSInheritanceModel::Virtual) in EmitMemberDataPointer()
3004 MSInheritanceModel::Virtual) in EmitMemberFunctionPointer()
3039 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in EmitMemberPointerComparison()
3238 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in EmitMemberDataPointerAddress()
3340 MSInheritanceModel SrcInheritance = SrcRD->getMSInheritanceModel(); in EmitNonNullMemberPointerConversion()
3341 MSInheritanceModel DstInheritance = DstRD->getMSInheritanceModel(); in EmitNonNullMemberPointerConversion()
[all …]
H A DCGDebugInfo.cpp3425 case MSInheritanceModel::Single: in CreateType()
3428 case MSInheritanceModel::Multiple: in CreateType()
3431 case MSInheritanceModel::Virtual: in CreateType()
3434 case MSInheritanceModel::Unspecified: in CreateType()
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp4182 MSInheritanceModel ExplicitModel) { in checkMSInheritanceAttrOnDefinition()
4191 if (ExplicitModel == MSInheritanceModel::Unspecified) in checkMSInheritanceAttrOnDefinition()
5406 D, AL, /*BestCase=*/true, (MSInheritanceModel)AL.getSemanticSpelling()); in handleMSInheritanceAttr()
5619 MSInheritanceModel Model) { in mergeMSInheritanceAttr()
H A DSemaType.cpp9034 MSInheritanceModel IM; in assignInheritanceModel()
9042 IM = MSInheritanceModel::Single; in assignInheritanceModel()
9045 IM = MSInheritanceModel::Multiple; in assignInheritanceModel()
9048 IM = MSInheritanceModel::Unspecified; in assignInheritanceModel()
/src/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4567 MSInheritanceModel SemanticSpelling);
4618 MSInheritanceModel Model);