Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp288 IO &IO, DWARFYAML::AddrTableEntry &AddrTable) { in mapping() argument
289 IO.mapOptional("Format", AddrTable.Format, dwarf::DWARF32); in mapping()
290 IO.mapOptional("Length", AddrTable.Length); in mapping()
291 IO.mapRequired("Version", AddrTable.Version); in mapping()
292 IO.mapOptional("AddressSize", AddrTable.AddrSize); in mapping()
293 IO.mapOptional("SegmentSelectorSize", AddrTable.SegSelectorSize, 0); in mapping()
294 IO.mapOptional("Entries", AddrTable.SegAddrPairs); in mapping()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp908 DWARFDebugAddrTable AddrTable; in dumpAddrSection() local
910 if (Error Err = AddrTable.extract(AddrData, &Offset, Version, AddrSize, in dumpAddrSection()
915 if (auto TableLength = AddrTable.getFullLength()) { in dumpAddrSection()
921 AddrTable.dump(OS, DumpOpts); in dumpAddrSection()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h415 static void mapping(IO &IO, DWARFYAML::AddrTableEntry &AddrTable); in LLVM_YAML_IS_SEQUENCE_VECTOR()