Lines Matching refs:next
165 // Get the next D-register (Liftoff only uses the even S-registers).
166 int next = fp_allocator_.NextSlot(2) / 2;
168 return next < fp_count_ && fp_regs_[next].code() < 16;
171 int next = fp_allocator_.NextSlot(2) / 2;
172 return next < fp_count_;
175 int next = fp_allocator_.NextSlot(4) / 2;
176 return next < fp_count_ - 1; // 2 D-registers are required.
205 int next = fp_allocator_.Allocate(2) / 2;
206 return fp_regs_[next].code();
209 int next = fp_allocator_.Allocate(4) / 2;
210 int d_reg_code = fp_regs_[next].code();
211 // Check that result and the next D-register pair.
213 DCHECK_EQ(d_reg_code + 1, fp_regs_[next + 1].code());