Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/
H A 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()
170 RETURN_CASE(PointerKind, BasedOnValue, "value based"); in pointerKind()
174 RETURN_CASE(PointerKind, BasedOnType, "type based"); in pointerKind()
175 RETURN_CASE(PointerKind, BasedOnSelf, "self based"); in pointerKind()
176 RETURN_CASE(PointerKind, Near32, "ptr32"); in pointerKind()
177 RETURN_CASE(PointerKind, Far32, "far ptr32"); in pointerKind()
178 RETURN_CASE(PointerKind, Near64, "ptr64"); in pointerKind()
[all …]
/freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/
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),
77 ENUM_ENTRY(PointerKind, BasedOnAddress),
79 ENUM_ENTRY(PointerKind, BasedOnType),
80 ENUM_ENTRY(PointerKind, BasedOnSelf),
81 ENUM_ENTRY(PointerKind, Near32),
82 ENUM_ENTRY(PointerKind, Far32),
[all …]
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp58 LLVM_YAML_DECLARE_ENUM_TRAITS(PointerKind)
260 void ScalarEnumerationTraits<PointerKind>::enumeration(IO &IO, in enumeration()
262 IO.enumCase(Kind, "Near16", PointerKind::Near16); in enumeration()
263 IO.enumCase(Kind, "Far16", PointerKind::Far16); in enumeration()
264 IO.enumCase(Kind, "Huge16", PointerKind::Huge16); in enumeration()
270 PointerKind::BasedOnSegmentAddress); in enumeration()
271 IO.enumCase(Kind, "BasedOnType", PointerKind::BasedOnType); in enumeration()
272 IO.enumCase(Kind, "BasedOnSelf", PointerKind::BasedOnSelf); in enumeration()
273 IO.enumCase(Kind, "Near32", PointerKind::Near32); in enumeration()
274 IO.enumCase(Kind, "Far32", PointerKind::Far32); in enumeration()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeRecord.h294 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord()
299 PointerRecord(TypeIndex ReferentType, PointerKind PK, PointerMode PM, in PointerRecord()
306 PointerKind getPointerKind() const { in getPointerKind()
307 return static_cast<PointerKind>((Attrs >> PointerKindShift) & in getPointerKind()
358 void setAttrs(PointerKind PK, PointerMode PM, PointerOptions PO, in setAttrs()
364 static uint32_t calcAttrs(PointerKind PK, PointerMode PM, PointerOptions PO, in calcAttrs()
H A DCodeView.h328 enum class PointerKind : uint8_t { enum
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DOSLog.h44 PointerKind, enumerator
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp1652 PointerKind PK = in lowerTypePointer()
1653 Ty->getSizeInBits() == 64 ? PointerKind::Near64 : PointerKind::Near32; in lowerTypePointer()
1713 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64 in lowerTypeMemberPointer()
1714 : PointerKind::Near32; in lowerTypeMemberPointer()
2380 PointerKind PK = getPointerSizeInBytes() == 8 ? PointerKind::Near64 in getVBPTypeIndex()
2381 : PointerKind::Near32; in getVBPTypeIndex()
2440 getPointerSizeInBytes() == 8 ? PointerKind::Near64 in getTypeIndexForReferenceTo()
2441 : PointerKind::Near32, in getTypeIndexForReferenceTo()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DOSLog.cpp42 return OSLogBufferItem::PointerKind; in getKind()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaType.cpp3770 SimplePointerKind PointerKind, in emitNullabilityConsistencyWarning() argument
3775 if (PointerKind == SimplePointerKind::Array) { in emitNullabilityConsistencyWarning()
3779 << static_cast<unsigned>(PointerKind); in emitNullabilityConsistencyWarning()
3789 Diag << static_cast<unsigned>(PointerKind); in emitNullabilityConsistencyWarning()
3827 fileNullability.PointerKind = static_cast<unsigned>(pointerKind); in checkNullabilityConsistency()
3859 auto kind = static_cast<SimplePointerKind>(fileNullability.PointerKind); in recordNullabilitySeen()
H A DSemaDeclAttr.cpp4749 IdentifierInfo *PointerKind = AL.getArgAsIdent(0)->Ident; in handleTypeTagForDatatypeAttr() local
4755 TypeTagForDatatypeAttr(AL.getRange(), S.Context, PointerKind, in handleTypeTagForDatatypeAttr()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Sema/
H A DSema.h241 uint8_t PointerKind; member