Home
last modified time | relevance | path

Searched refs:SimpleTypeKind (Results 1 – 15 of 15) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndex.cpp20 SimpleTypeKind Kind;
27 {"void*", SimpleTypeKind::Void},
29 {"HRESULT*", SimpleTypeKind::HResult},
37 {"__int8*", SimpleTypeKind::SByte},
41 {"__int16*", SimpleTypeKind::Int16},
43 {"long*", SimpleTypeKind::Int32Long},
45 {"int*", SimpleTypeKind::Int32},
49 {"__int64*", SimpleTypeKind::Int64},
53 {"__half*", SimpleTypeKind::Float16},
54 {"float*", SimpleTypeKind::Float32},
[all …]
H A DTypeRecordHelpers.cpp76 case SimpleTypeKind::None: in getSizeInBytesForTypeIndex()
77 case SimpleTypeKind::Void: in getSizeInBytesForTypeIndex()
81 case SimpleTypeKind::SByte: in getSizeInBytesForTypeIndex()
82 case SimpleTypeKind::Byte: in getSizeInBytesForTypeIndex()
88 case SimpleTypeKind::Int16: in getSizeInBytesForTypeIndex()
89 case SimpleTypeKind::UInt16: in getSizeInBytesForTypeIndex()
93 case SimpleTypeKind::Int32: in getSizeInBytesForTypeIndex()
94 case SimpleTypeKind::UInt32: in getSizeInBytesForTypeIndex()
98 case SimpleTypeKind::Int64: in getSizeInBytesForTypeIndex()
99 case SimpleTypeKind::UInt64: in getSizeInBytesForTypeIndex()
[all …]
H A DTypeStreamMerger.cpp205 const TypeIndex TypeStreamMerger::Untranslated(SimpleTypeKind::NotTranslated);
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeEnum.cpp214 case SimpleTypeKind::Int128: in getBuiltinType()
216 case SimpleTypeKind::Int16: in getBuiltinType()
218 case SimpleTypeKind::Int32: in getBuiltinType()
220 case SimpleTypeKind::Int64: in getBuiltinType()
223 case SimpleTypeKind::UInt128: in getBuiltinType()
225 case SimpleTypeKind::UInt16: in getBuiltinType()
227 case SimpleTypeKind::UInt32: in getBuiltinType()
229 case SimpleTypeKind::UInt64: in getBuiltinType()
232 case SimpleTypeKind::HResult: in getBuiltinType()
241 case SimpleTypeKind::Float16: in getBuiltinType()
[all …]
H A DSymbolCache.cpp48 codeview::SimpleTypeKind Kind;
52 {codeview::SimpleTypeKind::None, PDB_BuiltinType::None, 0},
53 {codeview::SimpleTypeKind::Void, PDB_BuiltinType::Void, 0},
55 {codeview::SimpleTypeKind::Int16Short, PDB_BuiltinType::Int, 2},
57 {codeview::SimpleTypeKind::Int32, PDB_BuiltinType::Int, 4},
58 {codeview::SimpleTypeKind::UInt32, PDB_BuiltinType::UInt, 4},
59 {codeview::SimpleTypeKind::Int32Long, PDB_BuiltinType::Int, 4},
61 {codeview::SimpleTypeKind::Int64Quad, PDB_BuiltinType::Int, 8},
70 {codeview::SimpleTypeKind::Float32, PDB_BuiltinType::Float, 4},
71 {codeview::SimpleTypeKind::Float64, PDB_BuiltinType::Float, 8},
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeIndex.h26 enum class SimpleTypeKind : uint32_t { enum
106 explicit TypeIndex(SimpleTypeKind Kind) in TypeIndex()
108 TypeIndex(SimpleTypeKind Kind, SimpleTypeMode Mode) in TypeIndex()
136 SimpleTypeKind getSimpleKind() const { in getSimpleKind()
165 return TypeIndex(SimpleTypeKind::SignedCharacter); in SignedCharacter()
171 return TypeIndex(SimpleTypeKind::NarrowCharacter); in NarrowCharacter()
174 return TypeIndex(SimpleTypeKind::WideCharacter); in WideCharacter()
177 return TypeIndex(SimpleTypeKind::Int16Short); in Int16Short()
180 return TypeIndex(SimpleTypeKind::UInt16Short); in UInt16Short()
186 return TypeIndex(SimpleTypeKind::UInt32Long); in UInt32Long()
[all …]
H A DGlobalTypeTableBuilder.h88 Result.first->getSecond() = TypeIndex(SimpleTypeKind::NotTranslated); in insertRecordAs()
89 return TypeIndex(SimpleTypeKind::NotTranslated); in insertRecordAs()
93 (uint32_t)SimpleTypeKind::NotTranslated); in insertRecordAs()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.cpp930 case SimpleTypeKind::Byte: in GetCompilerTypeForSimpleKind()
936 case SimpleTypeKind::SByte: in GetCompilerTypeForSimpleKind()
961 case SimpleTypeKind::Int64: in GetCompilerTypeForSimpleKind()
964 case SimpleTypeKind::Int32: in GetCompilerTypeForSimpleKind()
966 case SimpleTypeKind::Int16: in GetCompilerTypeForSimpleKind()
984 case SimpleTypeKind::Void: in GetCompilerTypeForSimpleKind()
1008 case SimpleTypeKind::Int64: in GetTypeSizeForSimpleKind()
1015 case SimpleTypeKind::Int32: in GetTypeSizeForSimpleKind()
1024 case SimpleTypeKind::Int16: in GetTypeSizeForSimpleKind()
1031 case SimpleTypeKind::Byte: in GetTypeSizeForSimpleKind()
[all …]
H A DDWARFLocationExpression.cpp56 case SimpleTypeKind::Int128: in IsSimpleTypeSignedInteger()
57 case SimpleTypeKind::Int64: in IsSimpleTypeSignedInteger()
58 case SimpleTypeKind::Int64Quad: in IsSimpleTypeSignedInteger()
59 case SimpleTypeKind::Int32: in IsSimpleTypeSignedInteger()
61 case SimpleTypeKind::Int16: in IsSimpleTypeSignedInteger()
63 case SimpleTypeKind::Float128: in IsSimpleTypeSignedInteger()
64 case SimpleTypeKind::Float80: in IsSimpleTypeSignedInteger()
65 case SimpleTypeKind::Float64: in IsSimpleTypeSignedInteger()
66 case SimpleTypeKind::Float32: in IsSimpleTypeSignedInteger()
67 case SimpleTypeKind::Float16: in IsSimpleTypeSignedInteger()
[all …]
H A DSymbolFileNativePDB.cpp161 case SimpleTypeKind::Byte: in GetSimpleTypeName()
167 case SimpleTypeKind::SByte: in GetSimpleTypeName()
180 case SimpleTypeKind::Float80: in GetSimpleTypeName()
188 case SimpleTypeKind::Int128: in GetSimpleTypeName()
190 case SimpleTypeKind::Int64: in GetSimpleTypeName()
193 case SimpleTypeKind::Int32: in GetSimpleTypeName()
195 case SimpleTypeKind::Int16: in GetSimpleTypeName()
199 case SimpleTypeKind::UInt64: in GetSimpleTypeName()
204 case SimpleTypeKind::UInt32: in GetSimpleTypeName()
206 case SimpleTypeKind::UInt16: in GetSimpleTypeName()
[all …]
H A DPdbUtil.h146 size_t GetTypeSizeForSimpleKind(llvm::codeview::SimpleTypeKind kind);
148 GetCompilerTypeForSimpleKind(llvm::codeview::SimpleTypeKind kind);
H A DPdbAstBuilder.cpp507 if (ti.getSimpleKind() == SimpleTypeKind::NotTranslated) in CreateSimpleType()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp1719 return TypeIndex(SimpleTypeKind::HResult); in lowerTypeAlias()
1812 SimpleTypeKind STK = SimpleTypeKind::None; in lowerTypeBasic()
1874 STK = SimpleTypeKind::SignedCharacter; in lowerTypeBasic()
1878 STK = SimpleTypeKind::UnsignedCharacter; in lowerTypeBasic()
1888 if (STK == SimpleTypeKind::Int32 && in lowerTypeBasic()
1890 STK = SimpleTypeKind::Int32Long; in lowerTypeBasic()
1893 STK = SimpleTypeKind::UInt32Long; in lowerTypeBasic()
1894 if (STK == SimpleTypeKind::UInt16Short && in lowerTypeBasic()
1896 STK = SimpleTypeKind::WideCharacter; in lowerTypeBasic()
1897 if ((STK == SimpleTypeKind::SignedCharacter || in lowerTypeBasic()
[all …]
/freebsd-14.2/contrib/llvm-project/lld/COFF/
H A DDebugTypes.cpp249 ti = TypeIndex(SimpleTypeKind::NotTranslated); in remapRecord()
1111 source->indexMapStorage[i] = TypeIndex(SimpleTypeKind::NotTranslated); in mergeTypesWithGHash()
H A DPDB.cpp372 TypeIndex newType = TypeIndex(SimpleTypeKind::NotTranslated); in translateIdSymbols()
386 if (newType == TypeIndex(SimpleTypeKind::NotTranslated)) { in translateIdSymbols()