Home
last modified time | relevance | path

Searched refs:CodeViewYAML (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLTypes.h33 namespace CodeViewYAML {
66 LLVM_YAML_DECLARE_MAPPING_TRAITS(CodeViewYAML::LeafRecord)
67 LLVM_YAML_DECLARE_MAPPING_TRAITS(CodeViewYAML::MemberRecord)
69 LLVM_YAML_IS_SEQUENCE_VECTOR(CodeViewYAML::LeafRecord)
70 LLVM_YAML_IS_SEQUENCE_VECTOR(CodeViewYAML::MemberRecord)
H A DCodeViewYAMLTypeHashing.h29 namespace CodeViewYAML {
57 LLVM_YAML_DECLARE_MAPPING_TRAITS(CodeViewYAML::DebugHSection)
58 LLVM_YAML_DECLARE_SCALAR_TRAITS(CodeViewYAML::GlobalHash, QuotingType::None)
59 LLVM_YAML_IS_SEQUENCE_VECTOR(CodeViewYAML::GlobalHash)
H A DCodeViewYAMLSymbols.h25 namespace CodeViewYAML {
47 LLVM_YAML_DECLARE_MAPPING_TRAITS(CodeViewYAML::SymbolRecord)
48 LLVM_YAML_IS_SEQUENCE_VECTOR(CodeViewYAML::SymbolRecord)
H A DCodeViewYAMLDebugSections.h38 namespace CodeViewYAML {
135 LLVM_YAML_DECLARE_MAPPING_TRAITS(CodeViewYAML::YAMLDebugSubsection)
137 LLVM_YAML_IS_SEQUENCE_VECTOR(CodeViewYAML::YAMLDebugSubsection)
H A DCOFFYAML.h84 std::vector<CodeViewYAML::YAMLDebugSubsection> DebugS;
85 std::vector<CodeViewYAML::LeafRecord> DebugT;
86 std::vector<CodeViewYAML::LeafRecord> DebugP;
87 std::optional<CodeViewYAML::DebugHSection> DebugH;
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPdbYaml.h63 std::vector<CodeViewYAML::SymbolRecord> Symbols;
70 std::vector<CodeViewYAML::YAMLDebugSubsection> Subsections;
89 std::vector<CodeViewYAML::LeafRecord> Records;
93 std::vector<CodeViewYAML::SymbolRecord> PubSyms;
H A DYAMLOutputStyle.cpp266 CodeViewYAML::YAMLDebugSubsection::fromCodeViewSubection(SC, SS); in dumpDbiStream()
279 auto ES = CodeViewYAML::SymbolRecord::fromCodeViewSymbol(Sym); in dumpDbiStream()
303 auto ExpectedRecord = CodeViewYAML::LeafRecord::fromCodeViewRecord(Record); in dumpTpiStream()
330 auto ExpectedRecord = CodeViewYAML::LeafRecord::fromCodeViewRecord(Record); in dumpIpiStream()
366 auto ES = CodeViewYAML::SymbolRecord::fromCodeViewSymbol(*Sym); in dumpPublics()
H A Dllvm-pdbutil.cpp857 CodeViewYAML::initializeStringsAndChecksums(MI.Subsections, Strings); in yamlToPdb()
859 auto CodeViewSubsections = ExitOnErr(CodeViewYAML::toCodeViewSubsectionList( in yamlToPdb()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypeHashing.cpp21 using namespace llvm::CodeViewYAML;
46 DebugHSection llvm::CodeViewYAML::fromDebugH(ArrayRef<uint8_t> DebugH) { in fromDebugH()
65 ArrayRef<uint8_t> llvm::CodeViewYAML::toDebugH(const DebugHSection &DebugH, in toDebugH()
H A DCodeViewYAMLSymbols.cpp39 using namespace llvm::CodeViewYAML;
40 using namespace llvm::CodeViewYAML::detail;
239 namespace CodeViewYAML { namespace
617 CVSymbol CodeViewYAML::SymbolRecord::toCodeViewSymbol( in toCodeViewSymbol()
633 static inline Expected<CodeViewYAML::SymbolRecord>
635 CodeViewYAML::SymbolRecord Result; in fromCodeViewSymbolImpl()
644 Expected<CodeViewYAML::SymbolRecord>
645 CodeViewYAML::SymbolRecord::fromCodeViewSymbol(CVSymbol Symbol) { in fromCodeViewSymbol()
661 CodeViewYAML::SymbolRecord &Obj) { in mapSymbolRecordImpl()
668 void MappingTraits<CodeViewYAML::SymbolRecord>::mapping( in mapping()
[all …]
H A DCodeViewYAMLDebugSections.cpp51 using namespace llvm::CodeViewYAML;
52 using namespace llvm::CodeViewYAML::detail;
82 namespace CodeViewYAML { namespace
188 std::vector<CodeViewYAML::SymbolRecord> Symbols;
674 auto S = CodeViewYAML::SymbolRecord::fromCodeViewSymbol(Sym); in fromCodeViewSubsection()
743 llvm::CodeViewYAML::toCodeViewSubsectionList( in toCodeViewSubsectionList()
897 llvm::CodeViewYAML::fromDebugS(ArrayRef<uint8_t> Data, in fromDebugS()
918 void llvm::CodeViewYAML::initializeStringsAndChecksums( in initializeStringsAndChecksums()
H A DCOFFEmitter.cpp163 toDebugS(ArrayRef<CodeViewYAML::YAMLDebugSubsection> Subsections, in toDebugS()
168 Err(CodeViewYAML::toCodeViewSubsectionList(Allocator, Subsections, SC)); in toDebugS()
206 CodeViewYAML::initializeStringsAndChecksums(S.DebugS, in layoutCOFF()
226 S.SectionData = CodeViewYAML::toDebugT(S.DebugT, CP.Allocator, S.Name); in layoutCOFF()
229 S.SectionData = CodeViewYAML::toDebugT(S.DebugP, CP.Allocator, S.Name); in layoutCOFF()
232 S.SectionData = CodeViewYAML::toDebugH(*S.DebugH, CP.Allocator); in layoutCOFF()
H A DCodeViewYAMLTypes.cpp42 using namespace llvm::CodeViewYAML;
43 using namespace llvm::CodeViewYAML::detail;
75 namespace CodeViewYAML { namespace
397 namespace CodeViewYAML { namespace
519 namespace CodeViewYAML { namespace
785 llvm::CodeViewYAML::fromDebugT(ArrayRef<uint8_t> DebugTorP, in fromDebugT()
805 ArrayRef<uint8_t> llvm::CodeViewYAML::toDebugT(ArrayRef<LeafRecord> Leafs, in toDebugT()