Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypeHashing.cpp29 void MappingTraits<DebugHSection>::mapping(IO &io, DebugHSection &DebugH) { in mapping() argument
30 io.mapRequired("Version", DebugH.Version); in mapping()
31 io.mapRequired("HashAlgorithm", DebugH.HashAlgorithm); in mapping()
32 io.mapOptional("HashValues", DebugH.Hashes); in mapping()
48 DebugHSection llvm::CodeViewYAML::fromDebugH(ArrayRef<uint8_t> DebugH) { in fromDebugH() argument
49 assert(DebugH.size() >= 8); in fromDebugH()
50 assert((DebugH.size() - 8) % 8 == 0); in fromDebugH()
52 BinaryStreamReader Reader(DebugH, llvm::endianness::little); in fromDebugH()
67 ArrayRef<uint8_t> llvm::CodeViewYAML::toDebugH(const DebugHSection &DebugH, in toDebugH() argument
69 uint32_t Size = 8 + 8 * DebugH.Hashes.size(); in toDebugH()
[all …]
H A DCOFFEmitter.cpp237 if (S.DebugH && S.SectionData.binary_size() == 0) in layoutCOFF()
238 S.SectionData = CodeViewYAML::toDebugH(*S.DebugH, CP.Allocator); in layoutCOFF()
H A DCOFFYAML.cpp683 IO.mapOptional("GlobalHashes", Sec.DebugH); in mapping()
/freebsd-src/contrib/llvm-project/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.h87 std::optional<CodeViewYAML::DebugHSection> DebugH; member