Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
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 …]
/freebsd/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());
/freebsd/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()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h1827 MSInheritanceModel getMSInheritanceModel() const;
1830 MSInheritanceModel calculateInheritanceModel() const;
/freebsd/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()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h4567 MSInheritanceModel SemanticSpelling);
4618 MSInheritanceModel Model);