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.cpp304 IO &IO, DWARFYAML::AddrTableEntry &AddrTable) { in mapping() argument
305 IO.mapOptional("Format", AddrTable.Format, dwarf::DWARF32); in mapping()
306 IO.mapOptional("Length", AddrTable.Length); in mapping()
307 IO.mapRequired("Version", AddrTable.Version); in mapping()
308 IO.mapOptional("AddressSize", AddrTable.AddrSize); in mapping()
309 IO.mapOptional("SegmentSelectorSize", AddrTable.SegSelectorSize, 0); in mapping()
310 IO.mapOptional("Entries", AddrTable.SegAddrPairs); in mapping()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp904 DWARFDebugAddrTable AddrTable; in dumpAddrSection() local
906 if (Error Err = AddrTable.extract(AddrData, &Offset, Version, AddrSize, in dumpAddrSection()
911 if (auto TableLength = AddrTable.getFullLength()) { in dumpAddrSection()
917 AddrTable.dump(OS, DumpOpts); in dumpAddrSection()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h421 LLVM_ABI static void mapping(IO &IO, DWARFYAML::AddrTableEntry &AddrTable); in LLVM_YAML_IS_SEQUENCE_VECTOR()