Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DHashedNameToDIE.h26 enum AtomType : uint16_t { enum
63 AtomType type;
76 bool ContainsAtom(AtomType atom_type) const;
80 void AppendAtom(AtomType type, dw_form_t form);
H A DHashedNameToDIE.cpp151 bool DWARFMappedHash::Prologue::ContainsAtom(AtomType atom_type) const { in ContainsAtom()
160 void DWARFMappedHash::Prologue::AppendAtom(AtomType type, dw_form_t form) { in AppendAtom()
230 AtomType type = (AtomType)data.GetU16(&offset); in Read()
/freebsd-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.h97 using AtomType = uint16_t; member
101 SmallVector<std::pair<AtomType, Form>, 3> Atoms;
138 Optional<DWARFFormValue> lookup(HeaderData::AtomType Atom) const;
186 ArrayRef<std::pair<HeaderData::AtomType, HeaderData::Form>> getAtomsDesc();
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFAcceleratorTable.cpp74 uint16_t AtomType = AccelSection.getU16(&Offset); in extract() local
76 HdrData.Atoms.push_back(std::make_pair(AtomType, AtomForm)); in extract()
90 ArrayRef<std::pair<AppleAcceleratorTable::HeaderData::AtomType,
278 AppleAcceleratorTable::Entry::lookup(HeaderData::AtomType Atom) const { in lookup()