Lines Matching defs:arithmetic_op

1095 void GraphBuilder::arithmetic_op(ValueType* type, Bytecodes::Code code, ValueStack* state_before) {
1181 arithmetic_op(intType, Bytecodes::_iadd);
2766 case Bytecodes::_iadd : arithmetic_op(intType , code); break;
2767 case Bytecodes::_ladd : arithmetic_op(longType , code); break;
2768 case Bytecodes::_fadd : arithmetic_op(floatType , code); break;
2769 case Bytecodes::_dadd : arithmetic_op(doubleType, code); break;
2770 case Bytecodes::_isub : arithmetic_op(intType , code); break;
2771 case Bytecodes::_lsub : arithmetic_op(longType , code); break;
2772 case Bytecodes::_fsub : arithmetic_op(floatType , code); break;
2773 case Bytecodes::_dsub : arithmetic_op(doubleType, code); break;
2774 case Bytecodes::_imul : arithmetic_op(intType , code); break;
2775 case Bytecodes::_lmul : arithmetic_op(longType , code); break;
2776 case Bytecodes::_fmul : arithmetic_op(floatType , code); break;
2777 case Bytecodes::_dmul : arithmetic_op(doubleType, code); break;
2778 case Bytecodes::_idiv : arithmetic_op(intType , code, copy_state_for_exception()); break;
2779 case Bytecodes::_ldiv : arithmetic_op(longType , code, copy_state_for_exception()); break;
2780 case Bytecodes::_fdiv : arithmetic_op(floatType , code); break;
2781 case Bytecodes::_ddiv : arithmetic_op(doubleType, code); break;
2782 case Bytecodes::_irem : arithmetic_op(intType , code, copy_state_for_exception()); break;
2783 case Bytecodes::_lrem : arithmetic_op(longType , code, copy_state_for_exception()); break;
2784 case Bytecodes::_frem : arithmetic_op(floatType , code); break;
2785 case Bytecodes::_drem : arithmetic_op(doubleType, code); break;