Home
last modified time | relevance | path

Searched refs:PubNames (Results 1 – 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
HDDWARFDebugPubTable.cpp25 DWARFDataExtractor PubNames(Obj, Sec, LittleEndian, 0); in DWARFDebugPubTable() local
27 while (PubNames.isValidOffset(Offset)) { in DWARFDebugPubTable()
31 SetData.Length = PubNames.getU32(&Offset); in DWARFDebugPubTable()
32 SetData.Version = PubNames.getU16(&Offset); in DWARFDebugPubTable()
33 SetData.Offset = PubNames.getRelocatedValue(4, &Offset); in DWARFDebugPubTable()
34 SetData.Size = PubNames.getU32(&Offset); in DWARFDebugPubTable()
37 uint32_t DieRef = PubNames.getU32(&Offset); in DWARFDebugPubTable()
40 uint8_t IndexEntryValue = GnuStyle ? PubNames.getU8(&Offset) : 0; in DWARFDebugPubTable()
41 StringRef Name = PubNames.getCStrRef(&Offset); in DWARFDebugPubTable()
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
HDDWARFYAML.cpp31 if (!DWARF.PubNames.Entries.empty() || !IO.outputting()) in mapping()
32 IO.mapOptional("debug_pubnames", DWARF.PubNames); in mapping()
HDMachOEmitter.cpp285 DWARFYAML::EmitPubSection(OS, Obj.DWARF.PubNames, in writeSectionData()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
HDDWARFYAML.h148 PubSection PubNames; member