Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp167 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 DEnumTables.cpp355 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 DTypeDumpVisitor.cpp71 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 DCodeViewYAMLTypes.cpp57 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 DTypeRecord.h288 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 DCodeView.h336 enum class PointerKind : uint8_t { enum
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DOSLog.h43 PointerKind, enumerator
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp1887 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 DOSLog.cpp43 return OSLogBufferItem::PointerKind; in getKind()
/openbsd-src/gnu/llvm/llvm/docs/PDB/
H A DCodeViewTypes.rst86 enum class PointerKind : uint8_t {
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaType.cpp4414 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 DSemaDeclAttr.cpp5609 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 DSema.h257 uint8_t PointerKind; member