Searched refs:CodeViewYAML (Results 1 – 14 of 14) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/ |
D | CodeViewYAMLTypes.h | 33 namespace CodeViewYAML { 65 LLVM_YAML_DECLARE_MAPPING_TRAITS(CodeViewYAML::LeafRecord) 66 LLVM_YAML_DECLARE_MAPPING_TRAITS(CodeViewYAML::MemberRecord) 68 LLVM_YAML_IS_SEQUENCE_VECTOR(CodeViewYAML::LeafRecord) 69 LLVM_YAML_IS_SEQUENCE_VECTOR(CodeViewYAML::MemberRecord)
|
D | CodeViewYAMLTypeHashing.h | 30 namespace CodeViewYAML { 58 LLVM_YAML_DECLARE_MAPPING_TRAITS(CodeViewYAML::DebugHSection) 59 LLVM_YAML_DECLARE_SCALAR_TRAITS(CodeViewYAML::GlobalHash, QuotingType::None) 60 LLVM_YAML_IS_SEQUENCE_VECTOR(CodeViewYAML::GlobalHash)
|
D | CodeViewYAMLSymbols.h | 25 namespace CodeViewYAML { 46 LLVM_YAML_DECLARE_MAPPING_TRAITS(CodeViewYAML::SymbolRecord) 47 LLVM_YAML_IS_SEQUENCE_VECTOR(CodeViewYAML::SymbolRecord)
|
D | CodeViewYAMLDebugSections.h | 38 namespace CodeViewYAML { 136 LLVM_YAML_DECLARE_MAPPING_TRAITS(CodeViewYAML::YAMLDebugSubsection) 138 LLVM_YAML_IS_SEQUENCE_VECTOR(CodeViewYAML::YAMLDebugSubsection)
|
D | COFFYAML.h | 68 std::vector<CodeViewYAML::YAMLDebugSubsection> DebugS; 69 std::vector<CodeViewYAML::LeafRecord> DebugT; 70 std::vector<CodeViewYAML::LeafRecord> DebugP; 71 Optional<CodeViewYAML::DebugHSection> DebugH;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLTypeHashing.cpp | 24 using namespace llvm::CodeViewYAML; 49 DebugHSection llvm::CodeViewYAML::fromDebugH(ArrayRef<uint8_t> DebugH) { in fromDebugH() 68 ArrayRef<uint8_t> llvm::CodeViewYAML::toDebugH(const DebugHSection &DebugH, in toDebugH()
|
D | CodeViewYAMLSymbols.cpp | 38 using namespace llvm::CodeViewYAML; 39 using namespace llvm::CodeViewYAML::detail; 203 namespace CodeViewYAML { namespace 561 CVSymbol CodeViewYAML::SymbolRecord::toCodeViewSymbol( in toCodeViewSymbol() 577 static inline Expected<CodeViewYAML::SymbolRecord> 579 CodeViewYAML::SymbolRecord Result; in fromCodeViewSymbolImpl() 588 Expected<CodeViewYAML::SymbolRecord> 589 CodeViewYAML::SymbolRecord::fromCodeViewSymbol(CVSymbol Symbol) { in fromCodeViewSymbol() 605 CodeViewYAML::SymbolRecord &Obj) { in mapSymbolRecordImpl() 612 void MappingTraits<CodeViewYAML::SymbolRecord>::mapping( in mapping() [all …]
|
D | CodeViewYAMLDebugSections.cpp | 54 using namespace llvm::CodeViewYAML; 55 using namespace llvm::CodeViewYAML::detail; 85 namespace CodeViewYAML { namespace 191 std::vector<CodeViewYAML::SymbolRecord> Symbols; 677 auto S = CodeViewYAML::SymbolRecord::fromCodeViewSymbol(Sym); in fromCodeViewSubsection() 748 llvm::CodeViewYAML::toCodeViewSubsectionList( in toCodeViewSubsectionList() 902 llvm::CodeViewYAML::fromDebugS(ArrayRef<uint8_t> Data, in fromDebugS() 923 void llvm::CodeViewYAML::initializeStringsAndChecksums( in initializeStringsAndChecksums()
|
D | CodeViewYAMLTypes.cpp | 43 using namespace llvm::CodeViewYAML; 44 using namespace llvm::CodeViewYAML::detail; 76 namespace CodeViewYAML { namespace 392 namespace CodeViewYAML { namespace 511 namespace CodeViewYAML { namespace 777 llvm::CodeViewYAML::fromDebugT(ArrayRef<uint8_t> DebugTorP, in fromDebugT() 797 ArrayRef<uint8_t> llvm::CodeViewYAML::toDebugT(ArrayRef<LeafRecord> Leafs, in toDebugT()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/ |
D | PdbYaml.h | 67 std::vector<CodeViewYAML::SymbolRecord> Symbols; 74 std::vector<CodeViewYAML::YAMLDebugSubsection> Subsections; 92 std::vector<CodeViewYAML::LeafRecord> Records;
|
D | YAMLOutputStyle.cpp | 252 CodeViewYAML::YAMLDebugSubsection::fromCodeViewSubection(SC, SS); in dumpDbiStream() 265 auto ES = CodeViewYAML::SymbolRecord::fromCodeViewSymbol(Sym); in dumpDbiStream() 289 auto ExpectedRecord = CodeViewYAML::LeafRecord::fromCodeViewRecord(Record); in dumpTpiStream() 316 auto ExpectedRecord = CodeViewYAML::LeafRecord::fromCodeViewRecord(Record); in dumpIpiStream()
|
D | llvm-pdbutil.cpp | 756 CodeViewYAML::initializeStringsAndChecksums(MI.Subsections, Strings); in yamlToPdb() 758 auto CodeViewSubsections = ExitOnErr(CodeViewYAML::toCodeViewSubsectionList( in yamlToPdb()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/ |
D | coff2yaml.cpp | 172 NewYAMLSection.DebugS = CodeViewYAML::fromDebugS(sectionData, SC); in dumpSections() 174 NewYAMLSection.DebugT = CodeViewYAML::fromDebugT(sectionData, in dumpSections() 177 NewYAMLSection.DebugP = CodeViewYAML::fromDebugT(sectionData, in dumpSections() 180 NewYAMLSection.DebugH = CodeViewYAML::fromDebugH(sectionData); in dumpSections()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/ |
D | yaml2coff.cpp | 173 toDebugS(ArrayRef<CodeViewYAML::YAMLDebugSubsection> Subsections, in toDebugS() 178 Err(CodeViewYAML::toCodeViewSubsectionList(Allocator, Subsections, SC)); in toDebugS() 216 CodeViewYAML::initializeStringsAndChecksums(S.DebugS, in layoutCOFF() 236 S.SectionData = CodeViewYAML::toDebugT(S.DebugT, CP.Allocator, S.Name); in layoutCOFF() 239 S.SectionData = CodeViewYAML::toDebugT(S.DebugP, CP.Allocator, S.Name); in layoutCOFF() 242 S.SectionData = CodeViewYAML::toDebugH(*S.DebugH, CP.Allocator); in layoutCOFF()
|