Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/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.h1745 MSInheritanceModel getMSInheritanceModel() const;
1748 MSInheritanceModel calculateInheritanceModel() const;
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DMicrosoftCXXABI.cpp188 MSInheritanceModel CXXRecordDecl::calculateInheritanceModel() const { in calculateInheritanceModel()
190 return MSInheritanceModel::Unspecified; in calculateInheritanceModel()
192 return MSInheritanceModel::Virtual; in calculateInheritanceModel()
194 return MSInheritanceModel::Multiple; in calculateInheritanceModel()
195 return MSInheritanceModel::Single; in calculateInheritanceModel()
198 MSInheritanceModel CXXRecordDecl::getMSInheritanceModel() const { in getMSInheritanceModel()
248 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in getMSMemberPointerSlots()
H A DMicrosoftMangle.cpp656 MSInheritanceModel IM = RD->getMSInheritanceModel(); in mangleMemberDataPointer()
665 if (IM == MSInheritanceModel::Virtual) in mangleMemberDataPointer()
675 case MSInheritanceModel::Single: Code = '0'; break; in mangleMemberDataPointer()
676 case MSInheritanceModel::Multiple: Code = '0'; break; in mangleMemberDataPointer()
677 case MSInheritanceModel::Virtual: Code = 'F'; break; in mangleMemberDataPointer()
678 case MSInheritanceModel::Unspecified: Code = 'G'; break; in mangleMemberDataPointer()
703 MSInheritanceModel IM = RD->getMSInheritanceModel(); in mangleMemberFunctionPointer()
707 case MSInheritanceModel::Single: Code = '1'; break; in mangleMemberFunctionPointer()
708 case MSInheritanceModel::Multiple: Code = 'H'; break; in mangleMemberFunctionPointer()
741 if (IM == MSInheritanceModel::Single) { in mangleMemberFunctionPointer()
[all …]
/netbsd/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DSpecifiers.h352 enum class MSInheritanceModel { enum
H A DAttr.td3423 MSInheritanceModel getInheritanceModel() const {
3424 // The spelling enum should agree with MSInheritanceModel.
3425 return MSInheritanceModel(getSemanticSpelling());
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp2663 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in isZeroInitializable()
2671 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in ConvertMemberPointerType()
2696 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in GetNullMemberPointerFields()
2733 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in EmitFullMemberPointer()
2770 MSInheritanceModel::Virtual) in EmitMemberDataPointer()
2876 MSInheritanceModel::Virtual) in EmitMemberFunctionPointer()
2912 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in EmitMemberPointerComparison()
3117 MSInheritanceModel Inheritance = RD->getMSInheritanceModel(); in EmitMemberDataPointerAddress()
3263 if (SrcInheritance == MSInheritanceModel::Virtual) { in EmitNonNullMemberPointerConversion()
3333 if (DstInheritance == MSInheritanceModel::Virtual) { in EmitNonNullMemberPointerConversion()
[all …]
H A DCGDebugInfo.cpp3007 case MSInheritanceModel::Single: in CreateType()
3010 case MSInheritanceModel::Multiple: in CreateType()
3013 case MSInheritanceModel::Virtual: in CreateType()
3016 case MSInheritanceModel::Unspecified: in CreateType()
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaType.cpp8504 MSInheritanceModel IM; in assignInheritanceModel()
8512 IM = MSInheritanceModel::Single; in assignInheritanceModel()
8515 IM = MSInheritanceModel::Multiple; in assignInheritanceModel()
8518 IM = MSInheritanceModel::Unspecified; in assignInheritanceModel()
H A DSemaDeclAttr.cpp4043 MSInheritanceModel ExplicitModel) { in checkMSInheritanceAttrOnDefinition()
4052 if (ExplicitModel == MSInheritanceModel::Unspecified) in checkMSInheritanceAttrOnDefinition()
6395 D, AL, /*BestCase=*/true, (MSInheritanceModel)AL.getSemanticSpelling()); in handleMSInheritanceAttr()
7137 MSInheritanceModel Model) { in mergeMSInheritanceAttr()
/netbsd/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DSema.h3308 MSInheritanceModel Model);
4294 MSInheritanceModel SemanticSpelling);