Home
last modified time | relevance | path

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

/external/llvm-project/llvm/lib/ObjectYAML/
DDWARFYAML.cpp261 IO &IO, DWARFYAML::AddrTableEntry &AddrTable) { in mapping() argument
262 IO.mapOptional("Format", AddrTable.Format, dwarf::DWARF32); in mapping()
263 IO.mapOptional("Length", AddrTable.Length); in mapping()
264 IO.mapRequired("Version", AddrTable.Version); in mapping()
265 IO.mapOptional("AddressSize", AddrTable.AddrSize); in mapping()
266 IO.mapOptional("SegmentSelectorSize", AddrTable.SegSelectorSize, 0); in mapping()
267 IO.mapOptional("Entries", AddrTable.SegAddrPairs); in mapping()
/external/llvm-project/llvm/tools/obj2yaml/
Ddwarf2yaml.cpp51 DWARFDebugAddrTable AddrTable; in dumpDebugAddr() local
60 if (Error Err = AddrTable.extractV5(AddrData, &Offset, /*CUAddrSize=*/0, in dumpDebugAddr()
64 for (uint64_t Addr : AddrTable.getAddressEntries()) { in dumpDebugAddr()
72 AddrTables.back().Format = AddrTable.getFormat(); in dumpDebugAddr()
73 AddrTables.back().Length = AddrTable.getLength(); in dumpDebugAddr()
74 AddrTables.back().Version = AddrTable.getVersion(); in dumpDebugAddr()
75 AddrTables.back().AddrSize = AddrTable.getAddressSize(); in dumpDebugAddr()
76 AddrTables.back().SegSelectorSize = AddrTable.getSegmentSelectorSize(); in dumpDebugAddr()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp248 DWARFDebugAddrTable AddrTable; in dumpAddrSection() local
250 if (Error Err = AddrTable.extract(AddrData, &Offset, Version, AddrSize, in dumpAddrSection()
255 if (!AddrTable.hasValidLength()) in dumpAddrSection()
257 Offset = TableOffset + AddrTable.getLength(); in dumpAddrSection()
259 AddrTable.dump(OS, DumpOpts); in dumpAddrSection()
/external/llvm-project/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp222 DWARFDebugAddrTable AddrTable; in dumpAddrSection() local
224 if (Error Err = AddrTable.extract(AddrData, &Offset, Version, AddrSize, in dumpAddrSection()
229 if (auto TableLength = AddrTable.getFullLength()) { in dumpAddrSection()
235 AddrTable.dump(OS, DumpOpts); in dumpAddrSection()
/external/llvm-project/llvm/include/llvm/ObjectYAML/
DDWARFYAML.h375 static void mapping(IO &IO, DWARFYAML::AddrTableEntry &AddrTable); in LLVM_YAML_IS_SEQUENCE_VECTOR()