Searched refs:arithmetic_op (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp1073 void GraphBuilder::arithmetic_op(ValueType* type, Bytecodes::Code code, ValueStack* state_before) { function in class:GraphBuilder
1159 arithmetic_op(intType, Bytecodes::_iadd);
2586 case Bytecodes::_iadd : arithmetic_op(intType , code); break;
2587 case Bytecodes::_ladd : arithmetic_op(longType , code); break;
2588 case Bytecodes::_fadd : arithmetic_op(floatType , code); break;
2589 case Bytecodes::_dadd : arithmetic_op(doubleType, code); break;
2590 case Bytecodes::_isub : arithmetic_op(intType , code); break;
2591 case Bytecodes::_lsub : arithmetic_op(longType , code); break;
2592 case Bytecodes::_fsub : arithmetic_op(floatType , code); break;
2593 case Bytecodes::_dsub : arithmetic_op(doubleTyp
[all...]
H A Dc1_GraphBuilder.hpp233 void arithmetic_op(ValueType* type, Bytecodes::Code code, ValueStack* state_before = NULL);
H A Dc1_LIRGenerator.cpp505 void LIRGenerator::arithmetic_op(Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, bool is_strictfp, LIR_Opr tmp_op, CodeEmitInfo* info) { function in class:LIRGenerator
582 arithmetic_op(code, result, left, right, false, tmp);
587 arithmetic_op(code, result, left, right, false, LIR_OprFact::illegalOpr, info);
592 arithmetic_op(code, result, left, right, is_strictfp, tmp);
H A Dc1_LIRGenerator.hpp303 void arithmetic_op(Bytecodes::Code code, LIR_Opr result, LIR_Opr left, LIR_Opr right, bool is_strictfp, LIR_Opr tmp, CodeEmitInfo* info = NULL);

Completed in 54 milliseconds