Lines Matching refs:next
160 int next = 0; in InferTypeAndSize() local
163 changed |= SetCore(uses[next]); in InferTypeAndSize()
166 changed |= SetRef(uses[next]); in InferTypeAndSize()
169 reg_location_[uses[next]].wide = true; in InferTypeAndSize()
170 reg_location_[uses[next + 1]].wide = true; in InferTypeAndSize()
171 reg_location_[uses[next + 1]].high_word = true; in InferTypeAndSize()
172 DCHECK_EQ(SRegToVReg(uses[next])+1, in InferTypeAndSize()
173 SRegToVReg(uses[next + 1])); in InferTypeAndSize()
174 next += 2; in InferTypeAndSize()
176 type_mismatch |= reg_location_[uses[next]].wide; in InferTypeAndSize()
177 next++; in InferTypeAndSize()
182 changed |= SetCore(uses[next]); in InferTypeAndSize()
185 changed |= SetRef(uses[next]); in InferTypeAndSize()
188 reg_location_[uses[next]].wide = true; in InferTypeAndSize()
189 reg_location_[uses[next + 1]].wide = true; in InferTypeAndSize()
190 reg_location_[uses[next + 1]].high_word = true; in InferTypeAndSize()
191 DCHECK_EQ(SRegToVReg(uses[next])+1, in InferTypeAndSize()
192 SRegToVReg(uses[next + 1])); in InferTypeAndSize()
193 next += 2; in InferTypeAndSize()
195 type_mismatch |= reg_location_[uses[next]].wide; in InferTypeAndSize()
196 next++; in InferTypeAndSize()
201 changed |= SetCore(uses[next]); in InferTypeAndSize()
204 changed |= SetRef(uses[next]); in InferTypeAndSize()
207 reg_location_[uses[next]].wide = true; in InferTypeAndSize()
208 reg_location_[uses[next + 1]].wide = true; in InferTypeAndSize()
209 reg_location_[uses[next + 1]].high_word = true; in InferTypeAndSize()
210 DCHECK_EQ(SRegToVReg(uses[next])+1, in InferTypeAndSize()
211 SRegToVReg(uses[next + 1])); in InferTypeAndSize()
213 type_mismatch |= reg_location_[uses[next]].wide; in InferTypeAndSize()
258 DCHECK_EQ(next, 0); in InferTypeAndSize()
281 reg_location_[uses[next]].defined = true; in InferTypeAndSize()
282 reg_location_[uses[next]].ref = true; in InferTypeAndSize()
283 type_mismatch |= reg_location_[uses[next]].wide; in InferTypeAndSize()
284 next++; in InferTypeAndSize()
288 for (int i = next; i < num_uses;) { in InferTypeAndSize()