Searched refs:DebugH (Results 1 – 6 of 6) sorted by relevance
30 void MappingTraits<DebugHSection>::mapping(IO &io, DebugHSection &DebugH) { in mapping() argument31 io.mapRequired("Version", DebugH.Version); in mapping()32 io.mapRequired("HashAlgorithm", DebugH.HashAlgorithm); in mapping()33 io.mapOptional("HashValues", DebugH.Hashes); in mapping()49 DebugHSection llvm::CodeViewYAML::fromDebugH(ArrayRef<uint8_t> DebugH) { in fromDebugH() argument50 assert(DebugH.size() >= 8); in fromDebugH()51 assert((DebugH.size() - 8) % 8 == 0); in fromDebugH()53 BinaryStreamReader Reader(DebugH, llvm::support::little); in fromDebugH()68 ArrayRef<uint8_t> llvm::CodeViewYAML::toDebugH(const DebugHSection &DebugH, in toDebugH() argument70 uint32_t Size = 8 + 8 * DebugH.Hashes.size(); in toDebugH()[all …]
576 IO.mapOptional("GlobalHashes", Sec.DebugH); in mapping()
50 DebugHSection fromDebugH(ArrayRef<uint8_t> DebugH);51 ArrayRef<uint8_t> toDebugH(const DebugHSection &DebugH,
71 Optional<CodeViewYAML::DebugHSection> DebugH; member
241 if (S.DebugH.hasValue() && S.SectionData.binary_size() == 0) in layoutCOFF()242 S.SectionData = CodeViewYAML::toDebugH(*S.DebugH, CP.Allocator); in layoutCOFF()
180 NewYAMLSection.DebugH = CodeViewYAML::fromDebugH(sectionData); in dumpSections()