Lines Matching defs:op2

594       LIR_Op2* op2 = (LIR_Op2*)op;
595 assert(op2->_tmp2->is_illegal() && op2->_tmp3->is_illegal() &&
596 op2->_tmp4->is_illegal() && op2->_tmp5->is_illegal(), "not used");
598 if (op2->_info) do_info(op2->_info);
599 if (op2->_opr1->is_valid()) do_input(op2->_opr1);
600 if (op2->_opr2->is_valid()) do_input(op2->_opr2);
601 if (op2->_tmp1->is_valid()) do_temp(op2->_tmp1);
602 if (op2->_result->is_valid()) do_output(op2->_result);
607 if (op2->_opr1->is_valid()) do_temp(op2->_opr1);
608 if (op2->_opr2->is_valid()) do_temp(op2->_opr2);
619 LIR_Op2* op2 = (LIR_Op2*)op;
621 assert(op2->_info == NULL && op2->_tmp1->is_illegal() && op2->_tmp2->is_illegal() &&
622 op2->_tmp3->is_illegal() && op2->_tmp4->is_illegal() && op2->_tmp5->is_illegal(), "not used");
623 assert(op2->_opr1->is_valid() && op2->_opr2->is_valid() && op2->_result->is_valid(), "used");
625 do_input(op2->_opr1);
626 do_input(op2->_opr2);
627 do_temp(op2->_opr2);
628 do_output(op2->_result);
640 LIR_Op2* op2 = (LIR_Op2*)op;
642 assert(op2->_info == NULL, "not used");
643 assert(op2->_opr1->is_valid(), "used");
644 assert(op2->_opr2->is_valid(), "used");
645 assert(op2->_result->is_valid(), "used");
646 assert(op2->_tmp2->is_illegal() && op2->_tmp3->is_illegal() &&
647 op2->_tmp4->is_illegal() && op2->_tmp5->is_illegal(), "not used");
649 do_input(op2->_opr1); do_temp(op2->_opr1);
650 do_input(op2->_opr2); do_temp(op2->_opr2);
651 if (op2->_tmp1->is_valid()) do_temp(op2->_tmp1);
652 do_output(op2->_result);
659 LIR_Op2* op2 = (LIR_Op2*)op;
661 if (op2->_info) do_info(op2->_info);
662 if (op2->_opr1->is_valid()) do_temp(op2->_opr1);
663 if (op2->_opr2->is_valid()) do_input(op2->_opr2); // exception object is input parameter
664 assert(op2->_result->is_illegal(), "no result");
665 assert(op2->_tmp2->is_illegal() && op2->_tmp3->is_illegal() &&
666 op2->_tmp4->is_illegal() && op2->_tmp5->is_illegal(), "not used");