Lines Matching refs:Output
797 // Handle fixed output operand.
798 if (first != NULL && first->Output() != NULL) {
799 LUnallocated* first_output = LUnallocated::cast(first->Output());
859 // Handle "output same as input" for second instruction.
860 if (second != NULL && second->Output() != NULL) {
861 LUnallocated* second_output = LUnallocated::cast(second->Output());
880 // instruction will include the output operand (whose value at the
941 LOperand* output = instr->Output();
942 if (output != NULL) {
943 if (output->IsUnallocated()) {
944 live->Remove(LUnallocated::cast(output)->virtual_register());
946 Define(curr_position, output, NULL);
951 if (output == NULL || !output->IsRegister() ||
952 output->index() != i) {
963 if (output == NULL || !output->IsDoubleRegister() ||
964 output->index() != i) {
1262 // All phi output operands are killed by this block.