Lines Matching refs:Atom
27 struct Atom { struct
31 static raw_ostream &operator<<(raw_ostream &OS, const Atom &A) { in operator <<()
39 static Atom formatAtom(unsigned Atom) { return {Atom}; } in formatAtom() argument
95 for (auto Atom : getAtomsDesc()) { in validateForms() local
96 DWARFFormValue FormValue(Atom.second); in validateForms()
97 switch (Atom.first) { in validateForms()
119 for (auto Atom : getAtomsDesc()) { in readAtoms() local
120 DWARFFormValue FormValue(Atom.second); in readAtoms()
122 switch (Atom.first) { in readAtoms()
184 for (auto &Atom : AtomForms) { in dumpName() local
186 if (Atom.extractValue(AccelSection, DataOffset, FormParams)) { in dumpName()
187 Atom.dump(W.getOStream()); in dumpName()
188 if (Optional<uint64_t> Val = Atom.getAsUnsignedConstant()) { in dumpName()
216 for (const auto &Atom : HdrData.Atoms) { in dump() local
218 W.startLine() << "Type: " << formatAtom(Atom.first) << '\n'; in dump()
219 W.startLine() << "Form: " << formatv("{0}", Atom.second) << '\n'; in dump()
220 AtomForms.push_back(DWARFFormValue(Atom.second)); in dump()
262 for (const auto &Atom : HdrData.Atoms) in Entry() local
263 Values.push_back(DWARFFormValue(Atom.second)); in Entry()
271 for (auto &Atom : Values) in extract() local
272 Atom.extractValue(AccelTable.AccelSection, Offset, FormParams); in extract()
276 AppleAcceleratorTable::Entry::lookup(HeaderData::AtomType Atom) const { in lookup()
280 if (std::get<0>(Tuple).first == Atom) in lookup()