Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp259 IO &IO, DWARFYAML::AddrTableEntry &AddrTable) { in mapping() argument
260 IO.mapOptional("Format", AddrTable.Format, dwarf::DWARF32); in mapping()
261 IO.mapOptional("Length", AddrTable.Length); in mapping()
262 IO.mapRequired("Version", AddrTable.Version); in mapping()
263 IO.mapOptional("AddressSize", AddrTable.AddrSize); in mapping()
264 IO.mapOptional("SegmentSelectorSize", AddrTable.SegSelectorSize, 0); in mapping()
265 IO.mapOptional("Entries", AddrTable.SegAddrPairs); in mapping()
/freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp907 DWARFDebugAddrTable AddrTable; in dumpAddrSection() local
909 if (Error Err = AddrTable.extract(AddrData, &Offset, Version, AddrSize, in dumpAddrSection()
914 if (auto TableLength = AddrTable.getFullLength()) { in dumpAddrSection()
920 AddrTable.dump(OS, DumpOpts); in dumpAddrSection()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h376 static void mapping(IO &IO, DWARFYAML::AddrTableEntry &AddrTable); in LLVM_YAML_IS_SEQUENCE_VECTOR()