Home | History | Annotate | Download | only in src

Lines Matching defs:it

59     // print as code offset, if it seems reasonable
104 RelocIterator* it = NULL;
106 it = new RelocIterator(converter.code());
129 } else if (it != NULL && !it->done() && it->rinfo()->pc() == pc &&
130 it->rinfo()->rmode() == RelocInfo::INTERNAL_REFERENCE) {
149 if (it != NULL) {
150 while (!it->done() && it->rinfo()->pc() < pc) {
151 if (RelocInfo::IsComment(it->rinfo()->rmode())) {
153 comments.Add(reinterpret_cast<const char*>(it->rinfo()->data()));
156 pcs.Add(it->rinfo()->pc());
157 rmodes.Add(it->rinfo()->rmode());
158 datas.Add(it->rinfo()->data());
160 it->next();
285 if (it != NULL) {
286 for ( ; !it->done(); it->next()) {
287 if (RelocInfo::IsComment(it->rinfo()->rmode())) {
289 reinterpret_cast<const char*>(it->rinfo()->data()));
295 delete it;
312 // If there might be a back edge table, stop before reaching it.