/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
H A D | FormatUtil.cpp | 50 std::string llvm::pdb::formatChunkKind(DebugSubsectionKind Kind, 54 RETURN_CASE(DebugSubsectionKind, None, "none"); in formatChunkKind() 55 RETURN_CASE(DebugSubsectionKind, Symbols, "symbols"); in formatChunkKind() 56 RETURN_CASE(DebugSubsectionKind, Lines, "lines"); in formatChunkKind() 57 RETURN_CASE(DebugSubsectionKind, StringTable, "strings"); in formatChunkKind() 58 RETURN_CASE(DebugSubsectionKind, FileChecksums, "checksums"); in formatChunkKind() 59 RETURN_CASE(DebugSubsectionKind, FrameData, "frames"); in formatChunkKind() 60 RETURN_CASE(DebugSubsectionKind, InlineeLines, "inlinee lines"); in formatChunkKind() 61 RETURN_CASE(DebugSubsectionKind, CrossScopeImports, "xmi"); in formatChunkKind() 62 RETURN_CASE(DebugSubsectionKind, CrossScopeExport in formatChunkKind() [all...] |
/llvm-project/llvm/lib/DebugInfo/CodeView/ |
H A D | DebugSubsectionVisitor.cpp | 33 case DebugSubsectionKind::Lines: { in visitDebugSubsection() 40 case DebugSubsectionKind::FileChecksums: { in visitDebugSubsection() 47 case DebugSubsectionKind::InlineeLines: { in visitDebugSubsection() 53 case DebugSubsectionKind::CrossScopeExports: { in visitDebugSubsection() 59 case DebugSubsectionKind::CrossScopeImports: { in visitDebugSubsection() 65 case DebugSubsectionKind::Symbols: { in visitDebugSubsection() 71 case DebugSubsectionKind::StringTable: { in visitDebugSubsection() 77 case DebugSubsectionKind::FrameData: { in visitDebugSubsection() 83 case DebugSubsectionKind::CoffSymbolRVA: { in visitDebugSubsection()
|
H A D | DebugSubsectionRecord.cpp | 24 DebugSubsectionRecord::DebugSubsectionRecord(DebugSubsectionKind Kind, in DebugSubsectionRecord() 35 DebugSubsectionKind Kind = in initialize() 36 static_cast<DebugSubsectionKind>(uint32_t(Header->Kind)); in initialize() 47 DebugSubsectionKind DebugSubsectionRecord::kind() const { return Kind; } in kind()
|
H A D | EnumTables.cpp | 239 CV_ENUM_CLASS_ENT(DebugSubsectionKind, None), 240 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols), 241 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Lines), 242 CV_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable), 243 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums), 244 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData), 245 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines), 246 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeImports), 247 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeExports), 248 CV_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines), [all …]
|
H A D | DebugSymbolRVASubsection.cpp | 20 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef() 27 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
|
H A D | StringsAndChecksums.cpp | 33 assert(SR.kind() == DebugSubsectionKind::StringTable); in initializeStrings() 72 assert(FCR.kind() == DebugSubsectionKind::FileChecksums); in initializeChecksums()
|
H A D | DebugStringTableSubsection.cpp | 22 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsectionRef() 44 : DebugSubsection(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsection()
|
H A D | DebugInlineeLinesSubsection.cpp | 44 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef() 64 : DebugSubsection(DebugSubsectionKind::InlineeLines), Checksums(Checksums), in DebugInlineeLinesSubsection()
|
H A D | DebugLinesSubsection.cpp | 54 : DebugSubsectionRef(DebugSubsectionKind::Lines) {} in DebugLinesSubsectionRef() 73 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {} in DebugLinesSubsection()
|
/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | DebugSubsection.h | 23 explicit DebugSubsectionRef(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsectionRef() 28 DebugSubsectionKind kind() const { return Kind; } in kind() 31 DebugSubsectionKind Kind; 36 explicit DebugSubsection(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsection() 41 DebugSubsectionKind kind() const { return Kind; } in kind() 47 DebugSubsectionKind Kind;
|
H A D | DebugSymbolsSubsection.h | 21 : DebugSubsectionRef(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsectionRef() 24 return S->kind() == DebugSubsectionKind::Symbols; in classof() 38 DebugSymbolsSubsection() : DebugSubsection(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsection() 40 return S->kind() == DebugSubsectionKind::Symbols; in classof()
|
H A D | DebugCrossExSubsection.h | 31 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsectionRef() 34 return S->kind() == DebugSubsectionKind::CrossScopeExports; in classof() 50 : DebugSubsection(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsection() 53 return S->kind() == DebugSubsectionKind::CrossScopeExports; in classof()
|
H A D | DebugSubsectionRecord.h | 38 DebugSubsectionRecord(DebugSubsectionKind Kind, BinaryStreamRef Data); 43 DebugSubsectionKind kind() const; 47 DebugSubsectionKind Kind = DebugSubsectionKind::None;
|
H A D | DebugFrameDataSubsection.h | 27 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef() 29 return S->kind() == DebugSubsectionKind::FrameData; in classof() 48 : DebugSubsection(DebugSubsectionKind::FrameData), in DebugFrameDataSubsection() 51 return S->kind() == DebugSubsectionKind::FrameData; in classof()
|
H A D | DebugCrossImpSubsection.h | 54 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeImports) {} 57 return S->kind() == DebugSubsectionKind::CrossScopeImports; 74 : DebugSubsection(DebugSubsectionKind::CrossScopeImports), 78 return S->kind() == DebugSubsectionKind::CrossScopeImports;
|
H A D | DebugChecksumsSubsection.h | 57 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {} 60 return S->kind() == DebugSubsectionKind::FileChecksums; 82 return S->kind() == DebugSubsectionKind::FileChecksums;
|
H A D | DebugSymbolRVASubsection.h | 33 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof() 50 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof()
|
H A D | DebugStringTableSubsection.h | 36 return S->kind() == DebugSubsectionKind::StringTable; in classof() 61 return S->kind() == DebugSubsectionKind::StringTable; in classof()
|
H A D | StringsAndChecksums.h | 46 if (R.kind() == DebugSubsectionKind::FileChecksums) { in initialize() 50 if (R.kind() == DebugSubsectionKind::StringTable && !Strings) { in initialize()
|
H A D | DebugInlineeLinesSubsection.h | 68 return S->kind() == DebugSubsectionKind::InlineeLines; 98 return S->kind() == DebugSubsectionKind::InlineeLines;
|
H A D | DebugLinesSubsection.h | 89 return S->kind() == DebugSubsectionKind::Lines; in classof() 121 return S->kind() == DebugSubsectionKind::Lines; in classof()
|
/llvm-project/llvm/tools/llvm-pdbutil/ |
H A D | YAMLOutputStyle.cpp | 171 static opts::ModuleSubsection convertSubsectionKind(DebugSubsectionKind K) { in convertSubsectionKind() 173 case DebugSubsectionKind::CrossScopeExports: in convertSubsectionKind() 175 case DebugSubsectionKind::CrossScopeImports: in convertSubsectionKind() 177 case DebugSubsectionKind::FileChecksums: in convertSubsectionKind() 179 case DebugSubsectionKind::InlineeLines: in convertSubsectionKind() 181 case DebugSubsectionKind::Lines: in convertSubsectionKind() 183 case DebugSubsectionKind::Symbols: in convertSubsectionKind() 185 case DebugSubsectionKind::StringTable: in convertSubsectionKind() 187 case DebugSubsectionKind::FrameData: in convertSubsectionKind()
|
/llvm-project/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLDebugSections.cpp | 67 LLVM_YAML_DECLARE_ENUM_TRAITS(DebugSubsectionKind) 86 explicit YAMLSubsectionBase(DebugSubsectionKind Kind) : Kind(Kind) {} 94 DebugSubsectionKind Kind; 105 : YAMLSubsectionBase(DebugSubsectionKind::FileChecksums) {} 119 YAMLLinesSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Lines) {} 135 : YAMLSubsectionBase(DebugSubsectionKind::InlineeLines) {} 151 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeExports) {} 165 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeImports) {} 179 YAMLSymbolsSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Symbols) {} 193 : YAMLSubsectionBase(DebugSubsectionKind [all...] |
/llvm-project/lld/COFF/ |
H A D | PDB.cpp | 668 if (ss.kind() != DebugSubsectionKind::Symbols) in writeAllModuleSymbolRecords() 780 case DebugSubsectionKind::StringTable: { in handleDebugS() 786 case DebugSubsectionKind::FileChecksums: in handleDebugS() 791 case DebugSubsectionKind::Lines: in handleDebugS() 792 case DebugSubsectionKind::InlineeLines: in handleDebugS() 795 case DebugSubsectionKind::FrameData: in handleDebugS() 798 case DebugSubsectionKind::Symbols: in handleDebugS() 804 case DebugSubsectionKind::CrossScopeImports: in handleDebugS() 805 case DebugSubsectionKind::CrossScopeExports: in handleDebugS() 810 case DebugSubsectionKind in handleDebugS() [all...] |
/llvm-project/llvm/tools/llvm-readobj/ |
H A D | COFFDumper.cpp | 556 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols), 557 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Lines), 558 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable), 559 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums), 560 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData), 561 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines), 562 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeImports), 563 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeExports), 564 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines), 565 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FuncMDTokenMa [all...] |