/external/swiftshader/third_party/llvm-16.0/llvm/lib/DebugInfo/PDB/Native/ |
D | FormatUtil.cpp | 50 std::string llvm::pdb::formatChunkKind(DebugSubsectionKind Kind, in formatChunkKind() 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, CrossScopeExports, "xme"); in formatChunkKind() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
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()
|
D | DebugSubsectionRecord.cpp | 25 DebugSubsectionRecord::DebugSubsectionRecord(DebugSubsectionKind Kind, in DebugSubsectionRecord() 38 DebugSubsectionKind Kind = in initialize() 39 static_cast<DebugSubsectionKind>(uint32_t(Header->Kind)); in initialize() 51 DebugSubsectionKind DebugSubsectionRecord::kind() const { return Kind; } in kind()
|
D | EnumTables.cpp | 224 CV_ENUM_CLASS_ENT(DebugSubsectionKind, None), 225 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols), 226 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Lines), 227 CV_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable), 228 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums), 229 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData), 230 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines), 231 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeImports), 232 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeExports), 233 CV_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines), [all …]
|
D | DebugSymbolRVASubsection.cpp | 20 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef() 27 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
|
/external/swiftshader/third_party/llvm-16.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 | 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()
|
D | EnumTables.cpp | 235 CV_ENUM_CLASS_ENT(DebugSubsectionKind, None), 236 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Symbols), 237 CV_ENUM_CLASS_ENT(DebugSubsectionKind, Lines), 238 CV_ENUM_CLASS_ENT(DebugSubsectionKind, StringTable), 239 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FileChecksums), 240 CV_ENUM_CLASS_ENT(DebugSubsectionKind, FrameData), 241 CV_ENUM_CLASS_ENT(DebugSubsectionKind, InlineeLines), 242 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeImports), 243 CV_ENUM_CLASS_ENT(DebugSubsectionKind, CrossScopeExports), 244 CV_ENUM_CLASS_ENT(DebugSubsectionKind, ILLines), [all …]
|
D | DebugSymbolRVASubsection.cpp | 20 : DebugSubsectionRef(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsectionRef() 27 : DebugSubsection(DebugSubsectionKind::CoffSymbolRVA) {} in DebugSymbolRVASubsection()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
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;
|
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()
|
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()
|
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()
|
D | DebugSubsectionRecord.h | 38 DebugSubsectionRecord(DebugSubsectionKind Kind, BinaryStreamRef Data, 45 DebugSubsectionKind kind() const; 50 DebugSubsectionKind Kind = DebugSubsectionKind::None;
|
D | DebugCrossImpSubsection.h | 53 : DebugSubsectionRef(DebugSubsectionKind::CrossScopeImports) {} 56 return S->kind() == DebugSubsectionKind::CrossScopeImports; 73 : DebugSubsection(DebugSubsectionKind::CrossScopeImports), 77 return S->kind() == DebugSubsectionKind::CrossScopeImports;
|
D | DebugChecksumsSubsection.h | 55 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {} 58 return S->kind() == DebugSubsectionKind::FileChecksums; 80 return S->kind() == DebugSubsectionKind::FileChecksums;
|
D | DebugSymbolRVASubsection.h | 33 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof() 50 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof()
|
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/CodeView/ |
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;
|
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()
|
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 | DebugSubsectionRecord.h | 38 DebugSubsectionRecord(DebugSubsectionKind Kind, BinaryStreamRef Data); 43 DebugSubsectionKind kind() const; 47 DebugSubsectionKind Kind = DebugSubsectionKind::None;
|
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()
|
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 | 57 : DebugSubsectionRef(DebugSubsectionKind::FileChecksums) {} 60 return S->kind() == DebugSubsectionKind::FileChecksums; 82 return S->kind() == DebugSubsectionKind::FileChecksums;
|
D | DebugSymbolRVASubsection.h | 33 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof() 50 return S->kind() == DebugSubsectionKind::CoffSymbolRVA; in classof()
|