Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
DTypeIndex.cpp20 SimpleTypeKind Kind;
27 {"void*", SimpleTypeKind::Void},
28 {"<not translated>*", SimpleTypeKind::NotTranslated},
29 {"HRESULT*", SimpleTypeKind::HResult},
30 {"signed char*", SimpleTypeKind::SignedCharacter},
31 {"unsigned char*", SimpleTypeKind::UnsignedCharacter},
32 {"char*", SimpleTypeKind::NarrowCharacter},
33 {"wchar_t*", SimpleTypeKind::WideCharacter},
34 {"char16_t*", SimpleTypeKind::Character16},
35 {"char32_t*", SimpleTypeKind::Character32},
[all …]
DTypeStreamMerger.cpp204 const TypeIndex TypeStreamMerger::Untranslated(SimpleTypeKind::NotTranslated);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
DNativeTypeEnum.cpp193 case SimpleTypeKind::Boolean128: in getBuiltinType()
194 case SimpleTypeKind::Boolean64: in getBuiltinType()
195 case SimpleTypeKind::Boolean32: in getBuiltinType()
196 case SimpleTypeKind::Boolean16: in getBuiltinType()
197 case SimpleTypeKind::Boolean8: in getBuiltinType()
199 case SimpleTypeKind::NarrowCharacter: in getBuiltinType()
200 case SimpleTypeKind::UnsignedCharacter: in getBuiltinType()
201 case SimpleTypeKind::SignedCharacter: in getBuiltinType()
203 case SimpleTypeKind::WideCharacter: in getBuiltinType()
205 case SimpleTypeKind::Character16: in getBuiltinType()
[all …]
DSymbolCache.cpp44 codeview::SimpleTypeKind Kind;
48 {codeview::SimpleTypeKind::None, PDB_BuiltinType::None, 0},
49 {codeview::SimpleTypeKind::Void, PDB_BuiltinType::Void, 0},
50 {codeview::SimpleTypeKind::HResult, PDB_BuiltinType::HResult, 4},
51 {codeview::SimpleTypeKind::Int16Short, PDB_BuiltinType::Int, 2},
52 {codeview::SimpleTypeKind::UInt16Short, PDB_BuiltinType::UInt, 2},
53 {codeview::SimpleTypeKind::Int32, PDB_BuiltinType::Int, 4},
54 {codeview::SimpleTypeKind::UInt32, PDB_BuiltinType::UInt, 4},
55 {codeview::SimpleTypeKind::Int32Long, PDB_BuiltinType::Int, 4},
56 {codeview::SimpleTypeKind::UInt32Long, PDB_BuiltinType::UInt, 4},
[all …]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
DPdbUtil.cpp687 lldb_private::npdb::GetCompilerTypeForSimpleKind(SimpleTypeKind kind) { in GetCompilerTypeForSimpleKind()
689 case SimpleTypeKind::Boolean128: in GetCompilerTypeForSimpleKind()
690 case SimpleTypeKind::Boolean16: in GetCompilerTypeForSimpleKind()
691 case SimpleTypeKind::Boolean32: in GetCompilerTypeForSimpleKind()
692 case SimpleTypeKind::Boolean64: in GetCompilerTypeForSimpleKind()
693 case SimpleTypeKind::Boolean8: in GetCompilerTypeForSimpleKind()
695 case SimpleTypeKind::Byte: in GetCompilerTypeForSimpleKind()
696 case SimpleTypeKind::UnsignedCharacter: in GetCompilerTypeForSimpleKind()
698 case SimpleTypeKind::NarrowCharacter: in GetCompilerTypeForSimpleKind()
700 case SimpleTypeKind::SignedCharacter: in GetCompilerTypeForSimpleKind()
[all …]
DDWARFLocationExpression.cpp53 static bool IsSimpleTypeSignedInteger(SimpleTypeKind kind) { in IsSimpleTypeSignedInteger()
55 case SimpleTypeKind::Int128: in IsSimpleTypeSignedInteger()
56 case SimpleTypeKind::Int64: in IsSimpleTypeSignedInteger()
57 case SimpleTypeKind::Int64Quad: in IsSimpleTypeSignedInteger()
58 case SimpleTypeKind::Int32: in IsSimpleTypeSignedInteger()
59 case SimpleTypeKind::Int32Long: in IsSimpleTypeSignedInteger()
60 case SimpleTypeKind::Int16: in IsSimpleTypeSignedInteger()
61 case SimpleTypeKind::Int16Short: in IsSimpleTypeSignedInteger()
62 case SimpleTypeKind::Float128: in IsSimpleTypeSignedInteger()
63 case SimpleTypeKind::Float80: in IsSimpleTypeSignedInteger()
[all …]
DSymbolFileNativePDB.cpp153 static llvm::StringRef GetSimpleTypeName(SimpleTypeKind kind) { in GetSimpleTypeName()
155 case SimpleTypeKind::Boolean128: in GetSimpleTypeName()
156 case SimpleTypeKind::Boolean16: in GetSimpleTypeName()
157 case SimpleTypeKind::Boolean32: in GetSimpleTypeName()
158 case SimpleTypeKind::Boolean64: in GetSimpleTypeName()
159 case SimpleTypeKind::Boolean8: in GetSimpleTypeName()
161 case SimpleTypeKind::Byte: in GetSimpleTypeName()
162 case SimpleTypeKind::UnsignedCharacter: in GetSimpleTypeName()
164 case SimpleTypeKind::NarrowCharacter: in GetSimpleTypeName()
166 case SimpleTypeKind::SignedCharacter: in GetSimpleTypeName()
[all …]
DPdbUtil.h147 size_t GetTypeSizeForSimpleKind(llvm::codeview::SimpleTypeKind kind);
149 GetCompilerTypeForSimpleKind(llvm::codeview::SimpleTypeKind kind);
DPdbAstBuilder.cpp706 if (ti.getSimpleKind() == SimpleTypeKind::NotTranslated) in CreateSimpleType()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
DTypeIndex.h26 enum class SimpleTypeKind : uint32_t { enum
103 TypeIndex() : Index(static_cast<uint32_t>(SimpleTypeKind::None)) {} in TypeIndex()
105 explicit TypeIndex(SimpleTypeKind Kind) in TypeIndex()
107 TypeIndex(SimpleTypeKind Kind, SimpleTypeMode Mode) in TypeIndex()
135 SimpleTypeKind getSimpleKind() const { in getSimpleKind()
137 return static_cast<SimpleTypeKind>(Index & SimpleKindMask); in getSimpleKind()
147 static TypeIndex None() { return TypeIndex(SimpleTypeKind::None); } in None()
148 static TypeIndex Void() { return TypeIndex(SimpleTypeKind::Void); } in Void()
150 return TypeIndex(SimpleTypeKind::Void, SimpleTypeMode::NearPointer32); in VoidPointer32()
153 return TypeIndex(SimpleTypeKind::Void, SimpleTypeMode::NearPointer64); in VoidPointer64()
[all …]
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-12-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DCodeViewDebug.cpp1592 if (UnderlyingTypeIndex == TypeIndex(SimpleTypeKind::Int32Long) && in lowerTypeAlias()
1594 return TypeIndex(SimpleTypeKind::HResult); in lowerTypeAlias()
1595 if (UnderlyingTypeIndex == TypeIndex(SimpleTypeKind::UInt16Short) && in lowerTypeAlias()
1597 return TypeIndex(SimpleTypeKind::WideCharacter); in lowerTypeAlias()
1607 ? TypeIndex(SimpleTypeKind::UInt64Quad) in lowerTypeArray()
1608 : TypeIndex(SimpleTypeKind::UInt32Long); in lowerTypeArray()
1661 SimpleTypeKind STK = SimpleTypeKind::None; in lowerTypeBasic()
1668 case 1: STK = SimpleTypeKind::Boolean8; break; in lowerTypeBasic()
1669 case 2: STK = SimpleTypeKind::Boolean16; break; in lowerTypeBasic()
1670 case 4: STK = SimpleTypeKind::Boolean32; break; in lowerTypeBasic()
[all …]
/freebsd-12-stable/contrib/llvm-project/lld/COFF/
DDebugTypes.cpp258 ti = TypeIndex(SimpleTypeKind::NotTranslated); in remapRecord()
1088 source->indexMapStorage[i] = TypeIndex(SimpleTypeKind::NotTranslated); in mergeTypesWithGHash()
DPDB.cpp377 TypeIndex newType = TypeIndex(SimpleTypeKind::NotTranslated); in translateIdSymbols()
391 if (newType == TypeIndex(SimpleTypeKind::NotTranslated)) { in translateIdSymbols()