Searched refs:cur_input (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/crankshaft/ |
D | lithium-allocator.cc | 821 LUnallocated* cur_input = LUnallocated::cast(it.Current()); in MeetConstraintsBetween() local 822 if (cur_input->HasFixedPolicy()) { in MeetConstraintsBetween() 823 LUnallocated* input_copy = cur_input->CopyUnconstrained( in MeetConstraintsBetween() 825 bool is_tagged = HasTaggedValue(cur_input->virtual_register()); in MeetConstraintsBetween() 826 AllocateFixed(cur_input, gap_index + 1, is_tagged); in MeetConstraintsBetween() 827 AddConstraintsGapMove(gap_index, input_copy, cur_input); in MeetConstraintsBetween() 828 } else if (cur_input->HasWritableRegisterPolicy()) { in MeetConstraintsBetween() 831 DCHECK(!cur_input->IsUsedAtStart()); in MeetConstraintsBetween() 833 LUnallocated* input_copy = cur_input->CopyUnconstrained( in MeetConstraintsBetween() 837 cur_input->set_virtual_register(vreg); in MeetConstraintsBetween() [all …]
|
/external/v8/src/compiler/ |
D | register-allocator.cc | 1756 UnallocatedOperand* cur_input = UnallocatedOperand::cast(input); in MeetConstraintsBefore() local 1757 if (cur_input->HasFixedPolicy()) { in MeetConstraintsBefore() 1758 int input_vreg = cur_input->virtual_register(); in MeetConstraintsBefore() 1761 AllocateFixed(cur_input, instr_index, is_tagged); in MeetConstraintsBefore() 1762 data()->AddGapMove(instr_index, Instruction::END, input_copy, *cur_input); in MeetConstraintsBefore() 1772 UnallocatedOperand* cur_input = in MeetConstraintsBefore() local 1775 int input_vreg = cur_input->virtual_register(); in MeetConstraintsBefore() 1777 cur_input->set_virtual_register(second_output->virtual_register()); in MeetConstraintsBefore() 1779 input_copy, *cur_input); in MeetConstraintsBefore()
|