| /freebsd-12.1/contrib/llvm/tools/llvm-pdbutil/ |
| H A D | FormatUtil.cpp | 106 RETURN_CASE(DebugSubsectionKind, None, "none"); in formatChunkKind() 107 RETURN_CASE(DebugSubsectionKind, Symbols, "symbols"); in formatChunkKind() 108 RETURN_CASE(DebugSubsectionKind, Lines, "lines"); in formatChunkKind() 118 RETURN_CASE(DebugSubsectionKind, MergedAssemblyInput, in formatChunkKind() 124 RETURN_CASE(DebugSubsectionKind, None, "none"); in formatChunkKind() 131 RETURN_CASE(DebugSubsectionKind, CrossScopeImports, in formatChunkKind() 133 RETURN_CASE(DebugSubsectionKind, CrossScopeExports, in formatChunkKind() 136 RETURN_CASE(DebugSubsectionKind, FuncMDTokenMap, in formatChunkKind() 138 RETURN_CASE(DebugSubsectionKind, TypeMDTokenMap, in formatChunkKind() 140 RETURN_CASE(DebugSubsectionKind, MergedAssemblyInput, in formatChunkKind() [all …]
|
| H A D | YAMLOutputStyle.cpp | 172 static opts::ModuleSubsection convertSubsectionKind(DebugSubsectionKind K) { in convertSubsectionKind() 174 case DebugSubsectionKind::CrossScopeExports: in convertSubsectionKind() 176 case DebugSubsectionKind::CrossScopeImports: in convertSubsectionKind() 178 case DebugSubsectionKind::FileChecksums: in convertSubsectionKind() 180 case DebugSubsectionKind::InlineeLines: in convertSubsectionKind() 182 case DebugSubsectionKind::Lines: in convertSubsectionKind() 184 case DebugSubsectionKind::Symbols: in convertSubsectionKind() 186 case DebugSubsectionKind::StringTable: in convertSubsectionKind() 188 case DebugSubsectionKind::FrameData: in convertSubsectionKind()
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/CodeView/ |
| H A D | DebugSubsectionVisitor.cpp | 34 case DebugSubsectionKind::Lines: { in visitDebugSubsection() 41 case DebugSubsectionKind::FileChecksums: { in visitDebugSubsection() 48 case DebugSubsectionKind::InlineeLines: { in visitDebugSubsection() 54 case DebugSubsectionKind::CrossScopeExports: { in visitDebugSubsection() 60 case DebugSubsectionKind::CrossScopeImports: { in visitDebugSubsection() 66 case DebugSubsectionKind::Symbols: { in visitDebugSubsection() 72 case DebugSubsectionKind::StringTable: { in visitDebugSubsection() 78 case DebugSubsectionKind::FrameData: { in visitDebugSubsection() 84 case DebugSubsectionKind::CoffSymbolRVA: { in visitDebugSubsection()
|
| H A D | EnumTables.cpp | 213 CV_ENUM_CLASS_ENT(DebugSubsectionKind, None), 214 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols), 215 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Lines), 216 CV_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable), 217 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums), 218 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData), 219 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines), 222 CV_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines), 223 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FuncMDTokenMap), 224 CV_ENUM_CLASS_ENT(DebugSubsectionKind, TypeMDTokenMap), [all …]
|
| H A D | DebugSubsectionRecord.cpp | 26 DebugSubsectionRecord::DebugSubsectionRecord(DebugSubsectionKind Kind, in DebugSubsectionRecord() 39 DebugSubsectionKind Kind = in initialize() 40 static_cast<DebugSubsectionKind>(uint32_t(Header->Kind)); in initialize() 52 DebugSubsectionKind DebugSubsectionRecord::kind() const { return Kind; } in kind()
|
| H A D | DebugSymbolRVASubsection.cpp | 21 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef() 28 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
|
| H A D | StringsAndChecksums.cpp | 35 assert(SR.kind() == DebugSubsectionKind::StringTable); in initializeStrings() 74 assert(FCR.kind() == DebugSubsectionKind::FileChecksums); in initializeChecksums()
|
| H A D | DebugStringTableSubsection.cpp | 24 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsectionRef() 46 : 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 | 55 : DebugSubsectionRef(DebugSubsectionKind::Lines) {} in DebugLinesSubsectionRef() 74 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {} in DebugLinesSubsection()
|
| /freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | DebugSubsection.h | 22 explicit DebugSubsectionRef(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsectionRef() 27 DebugSubsectionKind kind() const { return Kind; } in kind() 30 DebugSubsectionKind Kind; 35 explicit DebugSubsection(DebugSubsectionKind Kind) : Kind(Kind) {} in DebugSubsection() 40 DebugSubsectionKind kind() const { return Kind; } in kind() 46 DebugSubsectionKind Kind;
|
| H A D | DebugSymbolsSubsection.h | 22 : DebugSubsectionRef(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsectionRef() 25 return S->kind() == DebugSubsectionKind::Symbols; in classof() 39 DebugSymbolsSubsection() : DebugSubsection(DebugSubsectionKind::Symbols) {} in DebugSymbolsSubsection() 41 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 | DebugFrameDataSubsection.h | 24 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef() 26 return S->kind() == DebugSubsectionKind::FrameData; in classof() 45 : DebugSubsection(DebugSubsectionKind::FrameData), in DebugFrameDataSubsection() 48 return S->kind() == DebugSubsectionKind::FrameData; in classof()
|
| H A D | DebugSubsectionRecord.h | 39 DebugSubsectionRecord(DebugSubsectionKind Kind, BinaryStreamRef Data, 46 DebugSubsectionKind kind() const; 51 DebugSubsectionKind Kind = DebugSubsectionKind::None;
|
| 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 | 56 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {} 59 return S->kind() == DebugSubsectionKind::FileChecksums; 81 return S->kind() == DebugSubsectionKind::FileChecksums;
|
| H A D | DebugSymbolRVASubsection.h | 34 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof() 51 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof()
|
| H A D | DebugStringTableSubsection.h | 37 return S->kind() == DebugSubsectionKind::StringTable; in classof() 62 return S->kind() == DebugSubsectionKind::StringTable; in classof()
|
| H A D | StringsAndChecksums.h | 45 if (R.kind() == DebugSubsectionKind::FileChecksums) { in initialize() 49 if (R.kind() == DebugSubsectionKind::StringTable && !Strings) { in initialize()
|
| H A D | DebugInlineeLinesSubsection.h | 70 return S->kind() == DebugSubsectionKind::InlineeLines; 95 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()
|
| H A D | DebugUnknownSubsection.h | 21 DebugUnknownSubsectionRef(DebugSubsectionKind Kind, BinaryStreamRef Data) in DebugUnknownSubsectionRef()
|
| /freebsd-12.1/contrib/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLDebugSections.cpp | 70 LLVM_YAML_DECLARE_ENUM_TRAITS(DebugSubsectionKind) 89 explicit YAMLSubsectionBase(DebugSubsectionKind Kind) : Kind(Kind) {} in YAMLSubsectionBase() 97 DebugSubsectionKind Kind; 108 : YAMLSubsectionBase(DebugSubsectionKind::FileChecksums) {} in YAMLChecksumsSubsection() 138 : YAMLSubsectionBase(DebugSubsectionKind::InlineeLines) {} in YAMLInlineeLinesSubsection() 154 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeExports) {} in YAMLCrossModuleExportsSubsection() 168 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeImports) {} in YAMLCrossModuleImportsSubsection() 196 : YAMLSubsectionBase(DebugSubsectionKind::StringTable) {} in YAMLStringTableSubsection() 210 : YAMLSubsectionBase(DebugSubsectionKind::FrameData) {} in YAMLFrameDataSubsection() 225 : YAMLSubsectionBase(DebugSubsectionKind::CoffSymbolRVA) {} in YAMLCoffSymbolRVASubsection() [all …]
|
| /freebsd-12.1/contrib/llvm/tools/llvm-readobj/ |
| H A D | COFFDumper.cpp | 543 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols), 544 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Lines), 936 switch (DebugSubsectionKind(SubType)) { in initializeFileAndStringTables() 937 case DebugSubsectionKind::FileChecksums: in initializeFileAndStringTables() 940 case DebugSubsectionKind::StringTable: in initializeFileAndStringTables() 1006 switch (DebugSubsectionKind(SubType)) { in printCodeViewSymbolSection() 1007 case DebugSubsectionKind::Symbols: in printCodeViewSymbolSection() 1011 case DebugSubsectionKind::InlineeLines: in printCodeViewSymbolSection() 1015 case DebugSubsectionKind::FileChecksums: in printCodeViewSymbolSection() 1019 case DebugSubsectionKind::Lines: { in printCodeViewSymbolSection() [all …]
|