Home
last modified time | relevance | path

Searched refs:PointerKind (Results 1 – 25 of 29) sorted by relevance

12

/external/llvm-project/llvm/tools/llvm-pdbutil/
DMinimalTypeDumper.cpp164 static std::string pointerKind(PointerKind Kind) { in pointerKind()
166 RETURN_CASE(PointerKind, Near16, "ptr16"); in pointerKind()
167 RETURN_CASE(PointerKind, Far16, "far ptr16"); in pointerKind()
168 RETURN_CASE(PointerKind, Huge16, "huge ptr16"); in pointerKind()
169 RETURN_CASE(PointerKind, BasedOnSegment, "segment based"); in pointerKind()
170 RETURN_CASE(PointerKind, BasedOnValue, "value based"); in pointerKind()
171 RETURN_CASE(PointerKind, BasedOnSegmentValue, "segment value based"); in pointerKind()
172 RETURN_CASE(PointerKind, BasedOnAddress, "address based"); in pointerKind()
173 RETURN_CASE(PointerKind, BasedOnSegmentAddress, "segment address based"); in pointerKind()
174 RETURN_CASE(PointerKind, BasedOnType, "type based"); in pointerKind()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DEnumTables.cpp344 CV_ENUM_CLASS_ENT(PointerKind, Near16),
345 CV_ENUM_CLASS_ENT(PointerKind, Far16),
346 CV_ENUM_CLASS_ENT(PointerKind, Huge16),
347 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSegment),
348 CV_ENUM_CLASS_ENT(PointerKind, BasedOnValue),
349 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSegmentValue),
350 CV_ENUM_CLASS_ENT(PointerKind, BasedOnAddress),
351 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSegmentAddress),
352 CV_ENUM_CLASS_ENT(PointerKind, BasedOnType),
353 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSelf),
[all …]
DTypeDumpVisitor.cpp70 ENUM_ENTRY(PointerKind, Near16),
71 ENUM_ENTRY(PointerKind, Far16),
72 ENUM_ENTRY(PointerKind, Huge16),
73 ENUM_ENTRY(PointerKind, BasedOnSegment),
74 ENUM_ENTRY(PointerKind, BasedOnValue),
75 ENUM_ENTRY(PointerKind, BasedOnSegmentValue),
76 ENUM_ENTRY(PointerKind, BasedOnAddress),
77 ENUM_ENTRY(PointerKind, BasedOnSegmentAddress),
78 ENUM_ENTRY(PointerKind, BasedOnType),
79 ENUM_ENTRY(PointerKind, BasedOnSelf),
[all …]
/external/llvm-project/llvm/lib/DebugInfo/CodeView/
DEnumTables.cpp352 CV_ENUM_CLASS_ENT(PointerKind, Near16),
353 CV_ENUM_CLASS_ENT(PointerKind, Far16),
354 CV_ENUM_CLASS_ENT(PointerKind, Huge16),
355 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSegment),
356 CV_ENUM_CLASS_ENT(PointerKind, BasedOnValue),
357 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSegmentValue),
358 CV_ENUM_CLASS_ENT(PointerKind, BasedOnAddress),
359 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSegmentAddress),
360 CV_ENUM_CLASS_ENT(PointerKind, BasedOnType),
361 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSelf),
[all …]
DTypeDumpVisitor.cpp70 ENUM_ENTRY(PointerKind, Near16),
71 ENUM_ENTRY(PointerKind, Far16),
72 ENUM_ENTRY(PointerKind, Huge16),
73 ENUM_ENTRY(PointerKind, BasedOnSegment),
74 ENUM_ENTRY(PointerKind, BasedOnValue),
75 ENUM_ENTRY(PointerKind, BasedOnSegmentValue),
76 ENUM_ENTRY(PointerKind, BasedOnAddress),
77 ENUM_ENTRY(PointerKind, BasedOnSegmentAddress),
78 ENUM_ENTRY(PointerKind, BasedOnType),
79 ENUM_ENTRY(PointerKind, BasedOnSelf),
[all …]
/external/llvm/lib/DebugInfo/CodeView/
DTypeDumper.cpp116 ENUM_ENTRY(PointerKind, Near16),
117 ENUM_ENTRY(PointerKind, Far16),
118 ENUM_ENTRY(PointerKind, Huge16),
119 ENUM_ENTRY(PointerKind, BasedOnSegment),
120 ENUM_ENTRY(PointerKind, BasedOnValue),
121 ENUM_ENTRY(PointerKind, BasedOnSegmentValue),
122 ENUM_ENTRY(PointerKind, BasedOnAddress),
123 ENUM_ENTRY(PointerKind, BasedOnSegmentAddress),
124 ENUM_ENTRY(PointerKind, BasedOnType),
125 ENUM_ENTRY(PointerKind, BasedOnSelf),
[all …]
DTypeRecord.cpp90 PointerKind PtrKind = L->getPtrKind(); in deserialize()
/external/llvm-project/llvm/lib/ObjectYAML/
DCodeViewYAMLTypes.cpp57 LLVM_YAML_DECLARE_ENUM_TRAITS(PointerKind)
259 void ScalarEnumerationTraits<PointerKind>::enumeration(IO &IO, in enumeration()
260 PointerKind &Kind) { in enumeration()
261 IO.enumCase(Kind, "Near16", PointerKind::Near16); in enumeration()
262 IO.enumCase(Kind, "Far16", PointerKind::Far16); in enumeration()
263 IO.enumCase(Kind, "Huge16", PointerKind::Huge16); in enumeration()
264 IO.enumCase(Kind, "BasedOnSegment", PointerKind::BasedOnSegment); in enumeration()
265 IO.enumCase(Kind, "BasedOnValue", PointerKind::BasedOnValue); in enumeration()
266 IO.enumCase(Kind, "BasedOnSegmentValue", PointerKind::BasedOnSegmentValue); in enumeration()
267 IO.enumCase(Kind, "BasedOnAddress", PointerKind::BasedOnAddress); in enumeration()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCodeViewYAMLTypes.cpp57 LLVM_YAML_DECLARE_ENUM_TRAITS(PointerKind)
259 void ScalarEnumerationTraits<PointerKind>::enumeration(IO &IO, in enumeration()
260 PointerKind &Kind) { in enumeration()
261 IO.enumCase(Kind, "Near16", PointerKind::Near16); in enumeration()
262 IO.enumCase(Kind, "Far16", PointerKind::Far16); in enumeration()
263 IO.enumCase(Kind, "Huge16", PointerKind::Huge16); in enumeration()
264 IO.enumCase(Kind, "BasedOnSegment", PointerKind::BasedOnSegment); in enumeration()
265 IO.enumCase(Kind, "BasedOnValue", PointerKind::BasedOnValue); in enumeration()
266 IO.enumCase(Kind, "BasedOnSegmentValue", PointerKind::BasedOnSegmentValue); in enumeration()
267 IO.enumCase(Kind, "BasedOnAddress", PointerKind::BasedOnAddress); in enumeration()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h293 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord()
298 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord()
305 PointerKind getPointerKind() const { in getPointerKind()
306 return static_cast<PointerKind>((Attrs >> PointerKindShift) & in getPointerKind()
357 void setAttrs(PointerKind PK, PointerMode PM, PointerOptions PO, in setAttrs()
363 static uint32_t calcAttrs(PointerKind PK, PointerMode PM, PointerOptions PO, in calcAttrs()
DCodeView.h331 enum class PointerKind : uint8_t { enum
/external/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h300 PointerRecord(TypeIndex ReferentType, PointerKind Kind, PointerMode Mode, in PointerRecord()
305 PointerRecord(TypeIndex ReferentType, PointerKind Kind, PointerMode Mode, in PointerRecord()
320 PointerKind getPointerKind() const { return PtrKind; } in getPointerKind()
349 PointerKind getPtrKind() const { in getPtrKind()
350 return PointerKind(Attrs & PointerKindMask); in getPtrKind()
375 PointerKind PtrKind;
DCodeView.h310 enum class PointerKind : uint8_t { enum
/external/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DTypeRecord.h287 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord()
292 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord()
299 PointerKind getPointerKind() const { in getPointerKind()
300 return static_cast<PointerKind>((Attrs >> PointerKindShift) & in getPointerKind()
351 void setAttrs(PointerKind PK, PointerMode PM, PointerOptions PO, in setAttrs()
357 static uint32_t calcAttrs(PointerKind PK, PointerMode PM, PointerOptions PO, in calcAttrs()
DCodeView.h331 enum class PointerKind : uint8_t { enum
/external/llvm-project/clang/include/clang/AST/
DOSLog.h43 PointerKind, enumerator
/external/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp1156 PointerKind PK = in lowerTypePointer()
1157 Ty->getSizeInBits() == 64 ? PointerKind::Near64 : PointerKind::Near32; in lowerTypePointer()
1216 PointerKind PK = Asm->MAI->getPointerSize() == 8 ? PointerKind::Near64 in lowerTypeMemberPointer()
1217 : PointerKind::Near32; in lowerTypeMemberPointer()
1732 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64 in getVBPTypeIndex()
1733 : PointerKind::Near32; in getVBPTypeIndex()
/external/llvm-project/llvm/unittests/DebugInfo/CodeView/
DTypeHashingTest.cpp21 PR.setAttrs(PointerKind::Near32, PointerMode::Pointer, PointerOptions::None, in createPointerRecord()
DTypeIndexDiscoveryTest.cpp231 static PointerRecord Pointer(TypeIndex(44), PointerKind::Near32,
234 TypeIndex(45), PointerKind::Near32, PointerMode::PointerToDataMember,
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp1711 PointerKind PK = in lowerTypePointer()
1712 Ty->getSizeInBits() == 64 ? PointerKind::Near64 : PointerKind::Near32; in lowerTypePointer()
1772 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64 in lowerTypeMemberPointer()
1773 : PointerKind::Near32; in lowerTypeMemberPointer()
2447 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64 in getVBPTypeIndex()
2448 : PointerKind::Near32; in getVBPTypeIndex()
2503 getPointerSizeInBytes() == 8 ? PointerKind::Near64 in getTypeIndexForReferenceTo()
2504 : PointerKind::Near32, in getTypeIndexForReferenceTo()
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp1731 PointerKind PK = in lowerTypePointer()
1732 Ty->getSizeInBits() == 64 ? PointerKind::Near64 : PointerKind::Near32; in lowerTypePointer()
1794 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64 in lowerTypeMemberPointer()
1795 : PointerKind::Near32; in lowerTypeMemberPointer()
2477 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64 in getVBPTypeIndex()
2478 : PointerKind::Near32; in getVBPTypeIndex()
2533 getPointerSizeInBytes() == 8 ? PointerKind::Near64 in getTypeIndexForReferenceTo()
2534 : PointerKind::Near32, in getTypeIndexForReferenceTo()
/external/llvm-project/clang/lib/AST/
DOSLog.cpp42 return OSLogBufferItem::PointerKind; in getKind()
/external/llvm-project/llvm/docs/PDB/
DCodeViewTypes.rst86 enum class PointerKind : uint8_t {
/external/llvm-project/clang/lib/Sema/
DSemaType.cpp4196 SimplePointerKind PointerKind, in emitNullabilityConsistencyWarning() argument
4201 if (PointerKind == SimplePointerKind::Array) { in emitNullabilityConsistencyWarning()
4205 << static_cast<unsigned>(PointerKind); in emitNullabilityConsistencyWarning()
4215 Diag << static_cast<unsigned>(PointerKind); in emitNullabilityConsistencyWarning()
4253 fileNullability.PointerKind = static_cast<unsigned>(pointerKind); in checkNullabilityConsistency()
4285 auto kind = static_cast<SimplePointerKind>(fileNullability.PointerKind); in recordNullabilitySeen()
/external/clang/lib/Sema/
DSemaType.cpp3476 fileNullability.PointerKind = static_cast<unsigned>(pointerKind); in checkNullabilityConsistency()
3576 << static_cast<unsigned>(fileNullability.PointerKind); in GetFullTypeForDeclarator()
5825 << static_cast<unsigned>(fileNullability.PointerKind); in checkNullabilityTypeSpecifier()

12