Searched refs:shift_op (Results 1 - 10 of 10) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRAssembler.hpp182 void shift_op(LIR_Code code, LIR_Opr left, LIR_Opr count, LIR_Opr dest, LIR_Opr tmp);
183 void shift_op(LIR_Code code, LIR_Opr left, jint count, LIR_Opr dest);
H A Dc1_GraphBuilder.hpp235 void shift_op(ValueType* type, Bytecodes::Code code);
H A Dc1_LIRAssembler.cpp721 shift_op(op->code(), op->in_opr1(), op->in_opr2()->as_constant_ptr()->as_jint(), op->result_opr());
723 shift_op(op->code(), op->in_opr1(), op->in_opr2(), op->result_opr(), op->tmp1_opr());
H A Dc1_GraphBuilder.cpp1093 void GraphBuilder::shift_op(ValueType* type, Bytecodes::Code code) { function in class:GraphBuilder
2610 case Bytecodes::_ishl : shift_op(intType , code); break;
2611 case Bytecodes::_lshl : shift_op(longType, code); break;
2612 case Bytecodes::_ishr : shift_op(intType , code); break;
2613 case Bytecodes::_lshr : shift_op(longType, code); break;
2614 case Bytecodes::_iushr : shift_op(intType , code); break;
2615 case Bytecodes::_lushr : shift_op(longType, code); break;
H A Dc1_LIRGenerator.hpp320 void shift_op (Bytecodes::Code code, LIR_Opr dst_reg, LIR_Opr value, LIR_Opr count, LIR_Opr tmp);
H A Dc1_LIRGenerator.cpp596 void LIRGenerator::shift_op(Bytecodes::Code code, LIR_Opr result_op, LIR_Opr value, LIR_Opr count, LIR_Opr tmp) { function in class:LIRGenerator
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_LIRGenerator_sparc.cpp611 shift_op(x->op(), reg, value.result(), count.result(), LIR_OprFact::illegalOpr);
H A Dc1_LIRAssembler_sparc.cpp2393 void LIR_Assembler::shift_op(LIR_Code code, LIR_Opr left, LIR_Opr count, LIR_Opr dest, LIR_Opr tmp) { function in class:LIR_Assembler
2431 void LIR_Assembler::shift_op(LIR_Code code, LIR_Opr left, jint count, LIR_Opr dest) { function in class:LIR_Assembler
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LIRGenerator_x86.cpp674 shift_op(x->op(), reg, value.result(), count.result(), LIR_OprFact::illegalOpr);
H A Dc1_LIRAssembler_x86.cpp2948 void LIR_Assembler::shift_op(LIR_Code code, LIR_Opr left, LIR_Opr count, LIR_Opr dest, LIR_Opr tmp) { function in class:LIR_Assembler
2994 void LIR_Assembler::shift_op(LIR_Code code, LIR_Opr left, jint count, LIR_Opr dest) { function in class:LIR_Assembler

Completed in 3626 milliseconds