/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/ |
H A D | FormatUtil.cpp | 101 std::string llvm::pdb::formatChunkKind(DebugSubsectionKind Kind, in formatChunkKind() 105 RETURN_CASE(DebugSubsectionKind, None, "none"); in formatChunkKind() 106 RETURN_CASE(DebugSubsectionKind, Symbols, "symbols"); in formatChunkKind() 107 RETURN_CASE(DebugSubsectionKind, Lines, "lines"); in formatChunkKind() 108 RETURN_CASE(DebugSubsectionKind, StringTable, "strings"); in formatChunkKind() 109 RETURN_CASE(DebugSubsectionKind, FileChecksums, "checksums"); in formatChunkKind() 110 RETURN_CASE(DebugSubsectionKind, FrameData, "frames"); in formatChunkKind() 111 RETURN_CASE(DebugSubsectionKind, InlineeLines, "inlinee lines"); in formatChunkKind() 112 RETURN_CASE(DebugSubsectionKind, CrossScopeImports, "xmi"); in formatChunkKind() 113 RETURN_CASE(DebugSubsectionKind, CrossScopeExports, "xme"); in formatChunkKind() [all …]
|
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()
|
/netbsd-src/external/apache2/llvm/dist/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 | EnumTables.cpp | 232 CV_ENUM_CLASS_ENT(DebugSubsectionKind, None), 233 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols), 234 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Lines), 235 CV_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable), 236 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums), 237 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData), 238 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines), 239 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeImports), 240 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeExports), 241 CV_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines), [all …]
|
H A D | DebugSubsectionRecord.cpp | 25 DebugSubsectionRecord::DebugSubsectionRecord(DebugSubsectionKind Kind, in DebugSubsectionRecord() 36 DebugSubsectionKind Kind = in initialize() 37 static_cast<DebugSubsectionKind>(uint32_t(Header->Kind)); in initialize() 48 DebugSubsectionKind DebugSubsectionRecord::kind() const { return Kind; } in kind()
|
H A D | DebugSymbolRVASubsection.cpp | 20 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef() 27 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
|
H A D | StringsAndChecksums.cpp | 34 assert(SR.kind() == DebugSubsectionKind::StringTable); in initializeStrings() 73 assert(FCR.kind() == DebugSubsectionKind::FileChecksums); in initializeChecksums()
|
H A D | DebugStringTableSubsection.cpp | 23 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsectionRef() 45 : DebugSubsection(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsection()
|
H A D | DebugInlineeLinesSubsection.cpp | 43 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef() 63 : 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()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | DebugSubsection.h | 21 explicit DebugSubsectionRef(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsectionRef() 26 DebugSubsectionKind kind() const { return Kind; } in kind() 29 DebugSubsectionKind Kind; 34 explicit DebugSubsection(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsection() 39 DebugSubsectionKind kind() const { return Kind; } in kind() 45 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 | 30 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsectionRef() 33 return S->kind() == DebugSubsectionKind::CrossScopeExports; in classof() 49 : DebugSubsection(DebugSubsectionKind::CrossScopeExports) {} in DebugCrossModuleExportsSubsection() 52 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 | 23 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef() 25 return S->kind() == DebugSubsectionKind::FrameData; in classof() 44 : DebugSubsection(DebugSubsectionKind::FrameData), in DebugFrameDataSubsection() 47 return S->kind() == DebugSubsectionKind::FrameData; in classof()
|
H A D | DebugCrossImpSubsection.h | 53 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeImports) {} 56 return S->kind() == DebugSubsectionKind::CrossScopeImports; 73 : DebugSubsection(DebugSubsectionKind::CrossScopeImports), 77 return S->kind() == DebugSubsectionKind::CrossScopeImports;
|
H A D | DebugChecksumsSubsection.h | 55 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {} 58 return S->kind() == DebugSubsectionKind::FileChecksums; 80 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 | 44 if (R.kind() == DebugSubsectionKind::FileChecksums) { in initialize() 48 if (R.kind() == DebugSubsectionKind::StringTable && !Strings) { in initialize()
|
H A D | DebugInlineeLinesSubsection.h | 69 return S->kind() == DebugSubsectionKind::InlineeLines; 99 return S->kind() == DebugSubsectionKind::InlineeLines;
|
H A D | DebugLinesSubsection.h | 88 return S->kind() == DebugSubsectionKind::Lines; in classof() 120 return S->kind() == DebugSubsectionKind::Lines; in classof()
|
H A D | DebugUnknownSubsection.h | 20 DebugUnknownSubsectionRef(DebugSubsectionKind Kind, BinaryStreamRef Data) in DebugUnknownSubsectionRef()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
H A D | CodeViewYAMLDebugSections.cpp | 69 LLVM_YAML_DECLARE_ENUM_TRAITS(DebugSubsectionKind) 88 explicit YAMLSubsectionBase(DebugSubsectionKind Kind) : Kind(Kind) {} in YAMLSubsectionBase() 96 DebugSubsectionKind Kind; 107 : YAMLSubsectionBase(DebugSubsectionKind::FileChecksums) {} in YAMLChecksumsSubsection() 121 YAMLLinesSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Lines) {} in YAMLLinesSubsection() 137 : YAMLSubsectionBase(DebugSubsectionKind::InlineeLines) {} in YAMLInlineeLinesSubsection() 153 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeExports) {} in YAMLCrossModuleExportsSubsection() 167 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeImports) {} in YAMLCrossModuleImportsSubsection() 181 YAMLSymbolsSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Symbols) {} in YAMLSymbolsSubsection() 195 : YAMLSubsectionBase(DebugSubsectionKind::StringTable) {} in YAMLStringTableSubsection() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
H A D | COFFDumper.cpp | 552 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols), 553 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Lines), 554 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable), 555 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums), 556 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData), 557 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines), 558 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeImports), 559 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeExports), 560 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines), 561 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FuncMDTokenMap), [all …]
|