Home
last modified time | relevance | path

Searched refs:DebugH (Results 1 – 6 of 6) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypeHashing.cpp30 io.mapRequired("Version", DebugH.Version); in mapping()
31 io.mapRequired("HashAlgorithm", DebugH.HashAlgorithm); in mapping()
32 io.mapOptional("HashValues", DebugH.Hashes); in mapping()
49 assert(DebugH.size() >= 8); in fromDebugH()
50 assert((DebugH.size() - 8) % 8 == 0); in fromDebugH()
52 BinaryStreamReader Reader(DebugH, llvm::support::little); in fromDebugH()
69 uint32_t Size = 8 + 8 * DebugH.Hashes.size(); in toDebugH()
74 cantFail(Writer.writeInteger(DebugH.Magic)); in toDebugH()
75 cantFail(Writer.writeInteger(DebugH.Version)); in toDebugH()
76 cantFail(Writer.writeInteger(DebugH.HashAlgorithm)); in toDebugH()
[all …]
H A DCOFFEmitter.cpp247 if (S.DebugH.hasValue() && S.SectionData.binary_size() == 0) in layoutCOFF()
248 S.SectionData = CodeViewYAML::toDebugH(*S.DebugH, CP.Allocator); in layoutCOFF()
H A DCOFFYAML.cpp579 IO.mapOptional("GlobalHashes", Sec.DebugH); in mapping()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLTypeHashing.h49 DebugHSection fromDebugH(ArrayRef<uint8_t> DebugH);
50 ArrayRef<uint8_t> toDebugH(const DebugHSection &DebugH,
H A DCOFFYAML.h76 Optional<CodeViewYAML::DebugHSection> DebugH; member
/netbsd/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp193 NewYAMLSection.DebugH = CodeViewYAML::fromDebugH(sectionData); in dumpSections()