/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
D | FormatUtil.cpp | 102 std::string llvm::pdb::formatChunkKind(DebugSubsectionKind Kind, in formatChunkKind() 106 RETURN_CASE(DebugSubsectionKind, None, "none"); in formatChunkKind() 107 RETURN_CASE(DebugSubsectionKind, Symbols, "symbols"); in formatChunkKind() 108 RETURN_CASE(DebugSubsectionKind, Lines, "lines"); in formatChunkKind() 109 RETURN_CASE(DebugSubsectionKind, StringTable, "strings"); in formatChunkKind() 110 RETURN_CASE(DebugSubsectionKind, FileChecksums, "checksums"); in formatChunkKind() 111 RETURN_CASE(DebugSubsectionKind, FrameData, "frames"); in formatChunkKind() 112 RETURN_CASE(DebugSubsectionKind, InlineeLines, "inlinee lines"); in formatChunkKind() 113 RETURN_CASE(DebugSubsectionKind, CrossScopeImports, "xmi"); in formatChunkKind() 114 RETURN_CASE(DebugSubsectionKind, CrossScopeExports, "xme"); in formatChunkKind() [all …]
|
D | YAMLOutputStyle.cpp | 166 static opts::ModuleSubsection convertSubsectionKind(DebugSubsectionKind K) { in convertSubsectionKind() 168 case DebugSubsectionKind::CrossScopeExports: in convertSubsectionKind() 170 case DebugSubsectionKind::CrossScopeImports: in convertSubsectionKind() 172 case DebugSubsectionKind::FileChecksums: in convertSubsectionKind() 174 case DebugSubsectionKind::InlineeLines: in convertSubsectionKind() 176 case DebugSubsectionKind::Lines: in convertSubsectionKind() 178 case DebugSubsectionKind::Symbols: in convertSubsectionKind() 180 case DebugSubsectionKind::StringTable: in convertSubsectionKind() 182 case DebugSubsectionKind::FrameData: in convertSubsectionKind()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/ |
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()
|
D | EnumTables.cpp | 211 CV_ENUM_CLASS_ENT(DebugSubsectionKind, None), 212 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols), 213 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Lines), 214 CV_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable), 215 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums), 216 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData), 217 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines), 218 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeImports), 219 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeExports), 220 CV_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines), [all …]
|
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()
|
D | DebugSymbolRVASubsection.cpp | 21 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef() 28 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
|
D | StringsAndChecksums.cpp | 35 assert(SR.kind() == DebugSubsectionKind::StringTable); in initializeStrings() 74 assert(FCR.kind() == DebugSubsectionKind::FileChecksums); in initializeChecksums()
|
D | DebugStringTableSubsection.cpp | 24 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsectionRef() 46 : DebugSubsection(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsection()
|
D | DebugInlineeLinesSubsection.cpp | 44 : DebugSubsectionRef(DebugSubsectionKind::InlineeLines) {} in DebugInlineeLinesSubsectionRef() 64 : DebugSubsection(DebugSubsectionKind::InlineeLines), Checksums(Checksums), in DebugInlineeLinesSubsection()
|
D | DebugLinesSubsection.cpp | 55 : DebugSubsectionRef(DebugSubsectionKind::Lines) {} in DebugLinesSubsectionRef() 74 : DebugSubsection(DebugSubsectionKind::Lines), Checksums(Checksums) {} in DebugLinesSubsection()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/ |
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;
|
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()
|
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()
|
D | DebugFrameDataSubsection.h | 23 : DebugSubsectionRef(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsectionRef() 25 return S->kind() == DebugSubsectionKind::FrameData; in classof() 43 : DebugSubsection(DebugSubsectionKind::FrameData) {} in DebugFrameDataSubsection() 45 return S->kind() == DebugSubsectionKind::FrameData; in classof()
|
D | DebugSubsectionRecord.h | 39 DebugSubsectionRecord(DebugSubsectionKind Kind, BinaryStreamRef Data, 46 DebugSubsectionKind kind() const; 51 DebugSubsectionKind Kind = DebugSubsectionKind::None;
|
D | DebugCrossImpSubsection.h | 54 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeImports) {} 57 return S->kind() == DebugSubsectionKind::CrossScopeImports; 74 : DebugSubsection(DebugSubsectionKind::CrossScopeImports), 78 return S->kind() == DebugSubsectionKind::CrossScopeImports;
|
D | DebugChecksumsSubsection.h | 56 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {} 59 return S->kind() == DebugSubsectionKind::FileChecksums; 81 return S->kind() == DebugSubsectionKind::FileChecksums;
|
D | DebugSymbolRVASubsection.h | 34 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof() 51 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof()
|
D | DebugStringTableSubsection.h | 37 return S->kind() == DebugSubsectionKind::StringTable; in classof() 62 return S->kind() == DebugSubsectionKind::StringTable; in classof()
|
D | StringsAndChecksums.h | 45 if (R.kind() == DebugSubsectionKind::FileChecksums) { in initialize() 49 if (R.kind() == DebugSubsectionKind::StringTable && !Strings) { in initialize()
|
D | DebugInlineeLinesSubsection.h | 70 return S->kind() == DebugSubsectionKind::InlineeLines; 95 return S->kind() == DebugSubsectionKind::InlineeLines;
|
D | DebugLinesSubsection.h | 89 return S->kind() == DebugSubsectionKind::Lines; in classof() 121 return S->kind() == DebugSubsectionKind::Lines; in classof()
|
D | DebugUnknownSubsection.h | 21 DebugUnknownSubsectionRef(DebugSubsectionKind Kind, BinaryStreamRef Data) in DebugUnknownSubsectionRef()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
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() 122 YAMLLinesSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Lines) {} in YAMLLinesSubsection() 138 : YAMLSubsectionBase(DebugSubsectionKind::InlineeLines) {} in YAMLInlineeLinesSubsection() 154 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeExports) {} in YAMLCrossModuleExportsSubsection() 168 : YAMLSubsectionBase(DebugSubsectionKind::CrossScopeImports) {} in YAMLCrossModuleImportsSubsection() 182 YAMLSymbolsSubsection() : YAMLSubsectionBase(DebugSubsectionKind::Symbols) {} in YAMLSymbolsSubsection() 196 : YAMLSubsectionBase(DebugSubsectionKind::StringTable) {} in YAMLStringTableSubsection() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/ |
D | COFFDumper.cpp | 537 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols), 538 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, Lines), 539 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable), 540 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums), 541 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData), 542 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines), 543 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeImports), 544 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeExports), 545 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines), 546 LLVM_READOBJ_ENUM_CLASS_ENT(DebugSubsectionKind, FuncMDTokenMap), [all …]
|