Searched refs:PointerKind (Results 1 – 6 of 6) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | EnumTables.cpp | 344 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 …]
|
D | TypeDumpVisitor.cpp | 70 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 …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLTypes.cpp | 57 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 …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | TypeRecord.h | 293 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()
|
D | CodeView.h | 331 enum class PointerKind : uint8_t { enum
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/ |
D | CodeViewDebug.cpp | 1711 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()
|