Home
last modified time | relevance | path

Searched refs:PointerToMemberRepresentation (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypePointer.cpp159 PointerToMemberRepresentation P1, in isInheritanceKind()
160 PointerToMemberRepresentation P2) { in isInheritanceKind()
169 PointerToMemberRepresentation::SingleInheritanceData, in isSingleInheritance()
170 PointerToMemberRepresentation::SingleInheritanceFunction); in isSingleInheritance()
178 PointerToMemberRepresentation::MultipleInheritanceData, in isMultipleInheritance()
179 PointerToMemberRepresentation::MultipleInheritanceFunction); in isMultipleInheritance()
187 PointerToMemberRepresentation::VirtualInheritanceData, in isVirtualInheritance()
188 PointerToMemberRepresentation::VirtualInheritanceFunction); in isVirtualInheritance()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
H A DEnumTables.cpp376 CV_ENUM_CLASS_ENT(PointerToMemberRepresentation, Unknown),
377 CV_ENUM_CLASS_ENT(PointerToMemberRepresentation, SingleInheritanceData),
378 CV_ENUM_CLASS_ENT(PointerToMemberRepresentation, MultipleInheritanceData),
379 CV_ENUM_CLASS_ENT(PointerToMemberRepresentation, VirtualInheritanceData),
380 CV_ENUM_CLASS_ENT(PointerToMemberRepresentation, GeneralData),
381 CV_ENUM_CLASS_ENT(PointerToMemberRepresentation, SingleInheritanceFunction),
382 CV_ENUM_CLASS_ENT(PointerToMemberRepresentation,
384 CV_ENUM_CLASS_ENT(PointerToMemberRepresentation,
386 CV_ENUM_CLASS_ENT(PointerToMemberRepresentation, GeneralFunction),
H A DTypeDumpVisitor.cpp94 ENUM_ENTRY(PointerToMemberRepresentation, Unknown),
95 ENUM_ENTRY(PointerToMemberRepresentation, SingleInheritanceData),
96 ENUM_ENTRY(PointerToMemberRepresentation, MultipleInheritanceData),
97 ENUM_ENTRY(PointerToMemberRepresentation, VirtualInheritanceData),
98 ENUM_ENTRY(PointerToMemberRepresentation, GeneralData),
99 ENUM_ENTRY(PointerToMemberRepresentation, SingleInheritanceFunction),
100 ENUM_ENTRY(PointerToMemberRepresentation, MultipleInheritanceFunction),
101 ENUM_ENTRY(PointerToMemberRepresentation, VirtualInheritanceFunction),
102 ENUM_ENTRY(PointerToMemberRepresentation, GeneralFunction),
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp54 LLVM_YAML_DECLARE_ENUM_TRAITS(PointerToMemberRepresentation)
205 void ScalarEnumerationTraits<PointerToMemberRepresentation>::enumeration( in enumeration()
206 IO &IO, PointerToMemberRepresentation &Value) { in enumeration()
207 IO.enumCase(Value, "Unknown", PointerToMemberRepresentation::Unknown); in enumeration()
209 PointerToMemberRepresentation::SingleInheritanceData); in enumeration()
211 PointerToMemberRepresentation::MultipleInheritanceData); in enumeration()
213 PointerToMemberRepresentation::VirtualInheritanceData); in enumeration()
214 IO.enumCase(Value, "GeneralData", PointerToMemberRepresentation::GeneralData); in enumeration()
216 PointerToMemberRepresentation::SingleInheritanceFunction); in enumeration()
218 PointerToMemberRepresentation::MultipleInheritanceFunction); in enumeration()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp1784 static PointerToMemberRepresentation
1792 return SizeInBytes == 0 ? PointerToMemberRepresentation::Unknown in translatePtrToMemberRep()
1793 : PointerToMemberRepresentation::GeneralFunction; in translatePtrToMemberRep()
1795 return PointerToMemberRepresentation::SingleInheritanceFunction; in translatePtrToMemberRep()
1797 return PointerToMemberRepresentation::MultipleInheritanceFunction; in translatePtrToMemberRep()
1799 return PointerToMemberRepresentation::VirtualInheritanceFunction; in translatePtrToMemberRep()
1804 return SizeInBytes == 0 ? PointerToMemberRepresentation::Unknown in translatePtrToMemberRep()
1805 : PointerToMemberRepresentation::GeneralData; in translatePtrToMemberRep()
1807 return PointerToMemberRepresentation::SingleInheritanceData; in translatePtrToMemberRep()
1809 return PointerToMemberRepresentation::MultipleInheritanceData; in translatePtrToMemberRep()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h105 PointerToMemberRepresentation Representation) in MemberPointerInfo()
109 PointerToMemberRepresentation getRepresentation() const { in getRepresentation()
114 PointerToMemberRepresentation Representation;
H A DCodeView.h371 enum class PointerToMemberRepresentation : uint16_t { enum