Home | History | Annotate | Download | only in src

Lines Matching defs:instr_

241       : instr_(block->first()) {
242 next_ = Done() ? NULL : instr_->next();
245 inline bool Done() const { return instr_ == NULL; }
246 inline HInstruction* Current() { return instr_; }
248 instr_ = next_;
249 next_ = Done() ? NULL : instr_->next();
253 HInstruction* instr_;