Lines Matching refs:Output
801 // Handle fixed output operand.
802 if (first != NULL && first->Output() != NULL) {
803 LUnallocated* first_output = LUnallocated::cast(first->Output());
861 // Handle "output same as input" for second instruction.
862 if (second != NULL && second->Output() != NULL) {
863 LUnallocated* second_output = LUnallocated::cast(second->Output());
882 // instruction will include the output operand (whose value at the
943 LOperand* output = instr->Output();
944 if (output != NULL) {
945 if (output->IsUnallocated()) live->Remove(output->VirtualRegister());
946 Define(curr_position, output, NULL);
951 if (output == NULL || !output->IsRegister() ||
952 output->index() != i) {
962 if (output == NULL || !output->IsDoubleRegister() ||
963 output->index() != i) {
1232 // All phi output operands are killed by this block.