Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DHashedNameToDIE.h25 enum AtomType : uint16_t { enum
73 AtomType type;
86 bool ContainsAtom(AtomType atom_type) const;
90 void AppendAtom(AtomType type, dw_form_t form);
H A DHashedNameToDIE.cpp146 bool DWARFMappedHash::Prologue::ContainsAtom(AtomType atom_type) const { in ContainsAtom()
155 void DWARFMappedHash::Prologue::AppendAtom(AtomType type, dw_form_t form) { in AppendAtom()
227 AtomType type = (AtomType)data.GetU16(&offset); in Read()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h96 using AtomType = uint16_t; member
100 SmallVector<std::pair<AtomType, Form>, 3> Atoms;
137 Optional<DWARFFormValue> lookup(HeaderData::AtomType Atom) const;
192 ArrayRef<std::pair<HeaderData::AtomType, HeaderData::Form>> getAtomsDesc();
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp73 uint16_t AtomType = AccelSection.getU16(&Offset); in extract() local
75 HdrData.Atoms.push_back(std::make_pair(AtomType, AtomForm)); in extract()
89 ArrayRef<std::pair<AppleAcceleratorTable::HeaderData::AtomType,
277 AppleAcceleratorTable::Entry::lookup(HeaderData::AtomType Atom) const { in lookup()