Searched defs:cur_input (Results 1 - 2 of 2) sorted by relevance

/external/v8/src/crankshaft/
H A Dlithium-allocator.cc822 LUnallocated* cur_input = LUnallocated::cast(it.Current()); local
823 if (cur_input->HasFixedPolicy()) {
824 LUnallocated* input_copy = cur_input->CopyUnconstrained(
826 bool is_tagged = HasTaggedValue(cur_input->virtual_register());
827 AllocateFixed(cur_input, gap_index + 1, is_tagged);
828 AddConstraintsGapMove(gap_index, input_copy, cur_input);
829 } else if (cur_input->HasWritableRegisterPolicy()) {
832 DCHECK(!cur_input->IsUsedAtStart());
834 LUnallocated* input_copy = cur_input->CopyUnconstrained(
838 cur_input
856 LUnallocated* cur_input = LUnallocated::cast(second->FirstInput()); local
[all...]
/external/v8/src/compiler/
H A Dregister-allocator.cc1760 UnallocatedOperand* cur_input = UnallocatedOperand::cast(input); local
1761 if (cur_input->HasFixedPolicy()) {
1762 int input_vreg = cur_input->virtual_register();
1765 AllocateFixed(cur_input, instr_index, is_tagged);
1766 data()->AddGapMove(instr_index, Instruction::END, input_copy, *cur_input);
1776 UnallocatedOperand* cur_input = local
1779 int input_vreg = cur_input->virtual_register();
1781 cur_input->set_virtual_register(second_output->virtual_register());
1783 input_copy, *cur_input);

Completed in 126 milliseconds