Searched refs:SimpleTypeKind (Results 1 – 8 of 8) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeIndex.cpp | 20 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 …]
|
| H A D | TypeStreamMerger.cpp | 204 const TypeIndex TypeStreamMerger::Untranslated(SimpleTypeKind::NotTranslated);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeTypeEnum.cpp | 193 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 …]
|
| H A D | SymbolCache.cpp | 44 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 …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeIndex.h | 26 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 …]
|
| H A D | GlobalTypeTableBuilder.h | 88 Result.first->getSecond() = TypeIndex(SimpleTypeKind::NotTranslated); in insertRecordAs() 89 return TypeIndex(SimpleTypeKind::NotTranslated); in insertRecordAs() 93 (uint32_t)SimpleTypeKind::NotTranslated); in insertRecordAs()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.cpp | 1592 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 …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/docs/PDB/ |
| H A D | TpiStream.rst | 122 enum class SimpleTypeKind : uint32_t {
|