Home | History | Annotate | Download | only in MCAnalysis

Lines Matching refs:NewAtom

26 void MCModule::map(MCAtom *NewAtom) {
27 uint64_t Begin = NewAtom->Begin;
29 assert(Begin <= NewAtom->End && "Creating MCAtom with endpoints reversed?");
34 assert((I == atom_end() || (*I)->getBeginAddr() > NewAtom->End)
38 Atoms.insert(I, NewAtom);
42 MCTextAtom *NewAtom = new MCTextAtom(this, Begin, End);
43 map(NewAtom);
44 return NewAtom;
48 MCDataAtom *NewAtom = new MCDataAtom(this, Begin, End);
49 map(NewAtom);
50 return NewAtom;