Lines Matching refs:next
83 for (mir = bb->first_mir_insn; mir != NULL; mir = mir->next) {
106 int next = 0;
109 changed |= SetCore(ssa_rep->uses[next], true);
112 changed |= SetRef(ssa_rep->uses[next], true);
115 reg_location_[ssa_rep->uses[next]].wide = true;
116 reg_location_[ssa_rep->uses[next + 1]].wide = true;
117 reg_location_[ssa_rep->uses[next + 1]].high_word = true;
118 DCHECK_EQ(SRegToVReg(ssa_rep->uses[next])+1,
119 SRegToVReg(ssa_rep->uses[next + 1]));
120 next += 2;
122 next++;
127 changed |= SetCore(ssa_rep->uses[next], true);
130 changed |= SetRef(ssa_rep->uses[next], true);
133 reg_location_[ssa_rep->uses[next]].wide = true;
134 reg_location_[ssa_rep->uses[next + 1]].wide = true;
135 reg_location_[ssa_rep->uses[next + 1]].high_word = true;
136 DCHECK_EQ(SRegToVReg(ssa_rep->uses[next])+1,
137 SRegToVReg(ssa_rep->uses[next + 1]));
138 next += 2;
140 next++;
145 changed |= SetCore(ssa_rep->uses[next], true);
148 changed |= SetRef(ssa_rep->uses[next], true);
151 reg_location_[ssa_rep->uses[next]].wide = true;
152 reg_location_[ssa_rep->uses[next + 1]].wide = true;
153 reg_location_[ssa_rep->uses[next + 1]].high_word = true;
154 DCHECK_EQ(SRegToVReg(ssa_rep->uses[next])+1,
155 SRegToVReg(ssa_rep->uses[next + 1]));
197 DCHECK_EQ(next, 0);
220 reg_location_[ssa_rep->uses[next]].defined = true;
221 reg_location_[ssa_rep->uses[next]].ref = true;
222 next++;
226 for (int i = next; i < num_uses;) {
449 for (BasicBlock* bb = iter.Next(false); bb != NULL; bb = iter.Next(change)) {