HomeSort by relevance Sort by last modified time
    Searched defs:Atoms (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/MC/
MCModule.h 39 /// \brief Atoms in this module, sorted by begin address.
40 /// FIXME: This doesn't handle overlapping atoms (which happen when a basic
43 AtomListTy Atoms;
49 /// enables the owning MCModule to keep track of its atoms.
67 MCModule() : Atoms() { }
85 const_atom_iterator atom_begin() const { return Atoms.begin(); }
86 atom_iterator atom_begin() { return Atoms.begin(); }
87 const_atom_iterator atom_end() const { return Atoms.end(); }
88 atom_iterator atom_end() { return Atoms.end(); }
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.h 117 // is as a list of atoms (atom_count) where each atom contains a type
120 // used to describe the offset for all forms in the list of atoms.
126 // atom_count Atoms
169 SmallVector<Atom, 1> Atoms;
172 : die_offset_base(offset), Atoms(AtomList.begin(), AtomList.end()) { }
177 for (size_t i = 0; i < Atoms.size(); i++)
178 Atoms[i].print(O);
DwarfDebug.cpp     [all...]

Completed in 39 milliseconds