Home | History | Annotate | Download | only in MC

Lines Matching refs:Atom

32   // Insert the new atom to the list.
48 // remap - Update the interval mapping for an atom.
49 void MCModule::remap(MCAtom *Atom, uint64_t NewBegin, uint64_t NewEnd) {
52 Atom->Begin, AtomComp);
53 assert(I != atom_end() && "Atom offset not found in module!");
54 assert(*I == Atom && "Previous atom mapping was invalid!");
60 Atoms.insert(NewI, Atom);
62 // Update the atom internal bounds.
63 Atom->Begin = NewBegin;
64 Atom->End = NewEnd;