| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeIndex.cpp | 20 SimpleTypeKind Kind; 27 {"void*", SimpleTypeKind::Void}, 29 {"HRESULT*", SimpleTypeKind::HResult}, 36 {"__int8*", SimpleTypeKind::SByte}, 40 {"__int16*", SimpleTypeKind::Int16}, 42 {"long*", SimpleTypeKind::Int32Long}, 44 {"int*", SimpleTypeKind::Int32}, 48 {"__int64*", SimpleTypeKind::Int64}, 52 {"__half*", SimpleTypeKind::Float16}, 53 {"float*", SimpleTypeKind::Float32}, [all …]
|
| H A D | TypeStreamMerger.cpp | 204 const TypeIndex TypeStreamMerger::Untranslated(SimpleTypeKind::NotTranslated);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | NativeTypeEnum.cpp | 209 case SimpleTypeKind::Int128: in getBuiltinType() 211 case SimpleTypeKind::Int16: in getBuiltinType() 213 case SimpleTypeKind::Int32: in getBuiltinType() 215 case SimpleTypeKind::Int64: in getBuiltinType() 218 case SimpleTypeKind::UInt128: in getBuiltinType() 220 case SimpleTypeKind::UInt16: in getBuiltinType() 222 case SimpleTypeKind::UInt32: in getBuiltinType() 224 case SimpleTypeKind::UInt64: in getBuiltinType() 227 case SimpleTypeKind::HResult: in getBuiltinType() 236 case SimpleTypeKind::Float16: 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}, 51 {codeview::SimpleTypeKind::Int16Short, PDB_BuiltinType::Int, 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}, 57 {codeview::SimpleTypeKind::Int64Quad, PDB_BuiltinType::Int, 8}, 65 {codeview::SimpleTypeKind::Float32, PDB_BuiltinType::Float, 4}, 66 {codeview::SimpleTypeKind::Float64, PDB_BuiltinType::Float, 8}, [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbUtil.cpp | 695 case SimpleTypeKind::Byte: in GetCompilerTypeForSimpleKind() 701 case SimpleTypeKind::SByte: in GetCompilerTypeForSimpleKind() 724 case SimpleTypeKind::Int64: in GetCompilerTypeForSimpleKind() 727 case SimpleTypeKind::Int32: in GetCompilerTypeForSimpleKind() 729 case SimpleTypeKind::Int16: in GetCompilerTypeForSimpleKind() 747 case SimpleTypeKind::Void: in GetCompilerTypeForSimpleKind() 771 case SimpleTypeKind::Int64: in GetTypeSizeForSimpleKind() 778 case SimpleTypeKind::Int32: in GetTypeSizeForSimpleKind() 787 case SimpleTypeKind::Int16: in GetTypeSizeForSimpleKind() 794 case SimpleTypeKind::Byte: in GetTypeSizeForSimpleKind() [all …]
|
| H A D | DWARFLocationExpression.cpp | 55 case SimpleTypeKind::Int128: in IsSimpleTypeSignedInteger() 56 case SimpleTypeKind::Int64: in IsSimpleTypeSignedInteger() 57 case SimpleTypeKind::Int64Quad: in IsSimpleTypeSignedInteger() 58 case SimpleTypeKind::Int32: in IsSimpleTypeSignedInteger() 60 case SimpleTypeKind::Int16: in IsSimpleTypeSignedInteger() 62 case SimpleTypeKind::Float128: in IsSimpleTypeSignedInteger() 63 case SimpleTypeKind::Float80: in IsSimpleTypeSignedInteger() 64 case SimpleTypeKind::Float64: in IsSimpleTypeSignedInteger() 65 case SimpleTypeKind::Float32: in IsSimpleTypeSignedInteger() 66 case SimpleTypeKind::Float16: in IsSimpleTypeSignedInteger() [all …]
|
| H A D | SymbolFileNativePDB.cpp | 161 case SimpleTypeKind::Byte: in GetSimpleTypeName() 167 case SimpleTypeKind::SByte: in GetSimpleTypeName() 178 case SimpleTypeKind::Float80: in GetSimpleTypeName() 186 case SimpleTypeKind::Int128: in GetSimpleTypeName() 188 case SimpleTypeKind::Int64: in GetSimpleTypeName() 191 case SimpleTypeKind::Int32: in GetSimpleTypeName() 193 case SimpleTypeKind::Int16: in GetSimpleTypeName() 197 case SimpleTypeKind::UInt64: in GetSimpleTypeName() 202 case SimpleTypeKind::UInt32: in GetSimpleTypeName() 204 case SimpleTypeKind::UInt16: in GetSimpleTypeName() [all …]
|
| H A D | PdbUtil.h | 147 size_t GetTypeSizeForSimpleKind(llvm::codeview::SimpleTypeKind kind); 149 GetCompilerTypeForSimpleKind(llvm::codeview::SimpleTypeKind kind);
|
| H A D | PdbAstBuilder.cpp | 706 if (ti.getSimpleKind() == SimpleTypeKind::NotTranslated) in CreateSimpleType()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeIndex.h | 26 enum class SimpleTypeKind : uint32_t { enum 105 explicit TypeIndex(SimpleTypeKind Kind) in TypeIndex() 107 TypeIndex(SimpleTypeKind Kind, SimpleTypeMode Mode) in TypeIndex() 135 SimpleTypeKind getSimpleKind() const { in getSimpleKind() 164 return TypeIndex(SimpleTypeKind::SignedCharacter); in SignedCharacter() 170 return TypeIndex(SimpleTypeKind::NarrowCharacter); in NarrowCharacter() 173 return TypeIndex(SimpleTypeKind::WideCharacter); in WideCharacter() 176 return TypeIndex(SimpleTypeKind::Int16Short); in Int16Short() 179 return TypeIndex(SimpleTypeKind::UInt16Short); in UInt16Short() 185 return TypeIndex(SimpleTypeKind::UInt32Long); in UInt32Long() [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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | CodeViewDebug.cpp | 1594 return TypeIndex(SimpleTypeKind::HResult); in lowerTypeAlias() 1661 SimpleTypeKind STK = SimpleTypeKind::None; in lowerTypeBasic() 1686 case 2: STK = SimpleTypeKind::Float16; break; in lowerTypeBasic() 1720 STK = SimpleTypeKind::SignedCharacter; in lowerTypeBasic() 1724 STK = SimpleTypeKind::UnsignedCharacter; in lowerTypeBasic() 1732 STK = SimpleTypeKind::Int32Long; in lowerTypeBasic() 1734 STK = SimpleTypeKind::UInt32Long; in lowerTypeBasic() 1735 if (STK == SimpleTypeKind::UInt16Short && in lowerTypeBasic() 1737 STK = SimpleTypeKind::WideCharacter; in lowerTypeBasic() 1738 if ((STK == SimpleTypeKind::SignedCharacter || in lowerTypeBasic() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lld/COFF/ |
| H A D | DebugTypes.cpp | 258 ti = TypeIndex(SimpleTypeKind::NotTranslated); in remapRecord() 1088 source->indexMapStorage[i] = TypeIndex(SimpleTypeKind::NotTranslated); in mergeTypesWithGHash()
|
| H A D | PDB.cpp | 377 TypeIndex newType = TypeIndex(SimpleTypeKind::NotTranslated); in translateIdSymbols() 391 if (newType == TypeIndex(SimpleTypeKind::NotTranslated)) { in translateIdSymbols()
|