Lines Matching defs:NewAtom
21 void MCModule::map(MCAtom *NewAtom) {
22 uint64_t Begin = NewAtom->Begin;
24 assert(Begin <= NewAtom->End && "Creating MCAtom with endpoints reversed?");
29 assert((I == atom_end() || (*I)->getBeginAddr() > NewAtom->End)
33 Atoms.insert(I, NewAtom);
37 MCTextAtom *NewAtom = new MCTextAtom(this, Begin, End);
38 map(NewAtom);
39 return NewAtom;
43 MCDataAtom *NewAtom = new MCDataAtom(this, Begin, End);
44 map(NewAtom);
45 return NewAtom;