Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DCodeViewYAMLTypeHashing.cpp30 void MappingTraits<DebugHSection>::mapping(IO &io, DebugHSection &DebugH) { in mapping() argument
31 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() argument
50 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() argument
70 uint32_t Size = 8 + 8 * DebugH.Hashes.size(); in toDebugH()
[all …]
DCOFFYAML.cpp576 IO.mapOptional("GlobalHashes", Sec.DebugH); in mapping()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ObjectYAML/
DCodeViewYAMLTypeHashing.h50 DebugHSection fromDebugH(ArrayRef<uint8_t> DebugH);
51 ArrayRef<uint8_t> toDebugH(const DebugHSection &DebugH,
DCOFFYAML.h71 Optional<CodeViewYAML::DebugHSection> DebugH; member
/external/swiftshader/third_party/llvm-7.0/llvm/tools/yaml2obj/
Dyaml2coff.cpp241 if (S.DebugH.hasValue() && S.SectionData.binary_size() == 0) in layoutCOFF()
242 S.SectionData = CodeViewYAML::toDebugH(*S.DebugH, CP.Allocator); in layoutCOFF()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Dcoff2yaml.cpp180 NewYAMLSection.DebugH = CodeViewYAML::fromDebugH(sectionData); in dumpSections()