| /openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/ |
| H A D | MinimalTypeDumper.cpp | 167 static std::string pointerKind(PointerKind Kind) { in pointerKind() 169 RETURN_CASE(PointerKind, Near16, "ptr16"); in pointerKind() 170 RETURN_CASE(PointerKind, Far16, "far ptr16"); in pointerKind() 171 RETURN_CASE(PointerKind, Huge16, "huge ptr16"); in pointerKind() 172 RETURN_CASE(PointerKind, BasedOnSegment, "segment based"); in pointerKind() 173 RETURN_CASE(PointerKind, BasedOnValue, "value based"); in pointerKind() 174 RETURN_CASE(PointerKind, BasedOnSegmentValue, "segment value based"); in pointerKind() 175 RETURN_CASE(PointerKind, BasedOnAddress, "address based"); in pointerKind() 176 RETURN_CASE(PointerKind, BasedOnSegmentAddress, "segment address based"); in pointerKind() 177 RETURN_CASE(PointerKind, BasedOnType, "type based"); in pointerKind() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/CodeView/ |
| H A D | EnumTables.cpp | 355 CV_ENUM_CLASS_ENT(PointerKind, Near16), 356 CV_ENUM_CLASS_ENT(PointerKind, Far16), 357 CV_ENUM_CLASS_ENT(PointerKind, Huge16), 358 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSegment), 359 CV_ENUM_CLASS_ENT(PointerKind, BasedOnValue), 360 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSegmentValue), 361 CV_ENUM_CLASS_ENT(PointerKind, BasedOnAddress), 362 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSegmentAddress), 363 CV_ENUM_CLASS_ENT(PointerKind, BasedOnType), 364 CV_ENUM_CLASS_ENT(PointerKind, BasedOnSelf), [all …]
|
| H A D | TypeDumpVisitor.cpp | 71 ENUM_ENTRY(PointerKind, Near16), 72 ENUM_ENTRY(PointerKind, Far16), 73 ENUM_ENTRY(PointerKind, Huge16), 74 ENUM_ENTRY(PointerKind, BasedOnSegment), 75 ENUM_ENTRY(PointerKind, BasedOnValue), 76 ENUM_ENTRY(PointerKind, BasedOnSegmentValue), 77 ENUM_ENTRY(PointerKind, BasedOnAddress), 78 ENUM_ENTRY(PointerKind, BasedOnSegmentAddress), 79 ENUM_ENTRY(PointerKind, BasedOnType), 80 ENUM_ENTRY(PointerKind, BasedOnSelf), [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLTypes.cpp | 57 LLVM_YAML_DECLARE_ENUM_TRAITS(PointerKind) 264 void ScalarEnumerationTraits<PointerKind>::enumeration(IO &IO, in enumeration() 265 PointerKind &Kind) { in enumeration() 266 IO.enumCase(Kind, "Near16", PointerKind::Near16); in enumeration() 267 IO.enumCase(Kind, "Far16", PointerKind::Far16); in enumeration() 268 IO.enumCase(Kind, "Huge16", PointerKind::Huge16); in enumeration() 269 IO.enumCase(Kind, "BasedOnSegment", PointerKind::BasedOnSegment); in enumeration() 270 IO.enumCase(Kind, "BasedOnValue", PointerKind::BasedOnValue); in enumeration() 271 IO.enumCase(Kind, "BasedOnSegmentValue", PointerKind::BasedOnSegmentValue); in enumeration() 272 IO.enumCase(Kind, "BasedOnAddress", PointerKind::BasedOnAddress); in enumeration() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeRecord.h | 288 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord() 293 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord() 300 PointerKind getPointerKind() const { in getPointerKind() 301 return static_cast<PointerKind>((Attrs >> PointerKindShift) & in getPointerKind() 352 void setAttrs(PointerKind PK, PointerMode PM, PointerOptions PO, in setAttrs() 358 static uint32_t calcAttrs(PointerKind PK, PointerMode PM, PointerOptions PO, in calcAttrs()
|
| H A D | CodeView.h | 336 enum class PointerKind : uint8_t { enum
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | OSLog.h | 43 PointerKind, enumerator
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.cpp | 1887 PointerKind PK = in lowerTypePointer() 1888 Ty->getSizeInBits() == 64 ? PointerKind::Near64 : PointerKind::Near32; in lowerTypePointer() 1950 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64 in lowerTypeMemberPointer() 1951 : PointerKind::Near32; in lowerTypeMemberPointer() 2638 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64 in getVBPTypeIndex() 2639 : PointerKind::Near32; in getVBPTypeIndex() 2694 getPointerSizeInBytes() == 8 ? PointerKind::Near64 in getTypeIndexForReferenceTo() 2695 : PointerKind::Near32, in getTypeIndexForReferenceTo()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | OSLog.cpp | 43 return OSLogBufferItem::PointerKind; in getKind()
|
| /openbsd-src/gnu/llvm/llvm/docs/PDB/ |
| H A D | CodeViewTypes.rst | 86 enum class PointerKind : uint8_t {
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaType.cpp | 4414 SimplePointerKind PointerKind, in emitNullabilityConsistencyWarning() argument 4419 if (PointerKind == SimplePointerKind::Array) { in emitNullabilityConsistencyWarning() 4423 << static_cast<unsigned>(PointerKind); in emitNullabilityConsistencyWarning() 4433 Diag << static_cast<unsigned>(PointerKind); in emitNullabilityConsistencyWarning() 4471 fileNullability.PointerKind = static_cast<unsigned>(pointerKind); in checkNullabilityConsistency() 4503 auto kind = static_cast<SimplePointerKind>(fileNullability.PointerKind); in recordNullabilitySeen()
|
| H A D | SemaDeclAttr.cpp | 5609 IdentifierInfo *PointerKind = AL.getArgAsIdent(0)->Ident; in handleTypeTagForDatatypeAttr() local 5615 S.Context, AL, PointerKind, MatchingCTypeLoc, AL.getLayoutCompatible(), in handleTypeTagForDatatypeAttr()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | Sema.h | 257 uint8_t PointerKind; member
|