Searched defs:left_op (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/adlc/
H A Dformsopt.cpp647 PeepConstraint::PeepConstraint(int left_inst, char* left_op, char* relation, argument
649 : _left_inst(left_inst), _left_op(left_op), _relation(relation),
H A Dadlparse.cpp2582 char *left_op = get_ident_dup(); local
2607 PeepConstraint *constraint = new PeepConstraint( left_inst, left_op,
H A Doutput_c.cpp1163 const char *left_op = pconstraint->_left_op; local
1169 int left_op_index = inst_left->operand_position(left_op, Component::USE);
1171 left_op_index = inst_left->operand_position(left_op, Component::DEF);
1173 left_op_index = inst_left->operand_position(left_op, Component::USE_DEF);
1216 // left_index, left_op_base, left_op_index, left_op,
1233 left_index, left_op_index, left_index, left_reg_index, left_index, left_op );
1256 left_index, left_op_index, left_index, left_op );
1267 left_index, left_op_index, left_index, left_index, left_op_index, left_index, left_op );
1273 left_index, left_op_index, left_index, left_index, left_op_index, left_index, left_op );
1279 left_index, left_op_index, left_index, left_op );
4149 const Form *left_op = _globalNames[left->_opType]->is_operand(); local
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.cpp507 LIR_Opr left_op = left; local
510 if (TwoOperandLIRForm && left_op != result_op) {
512 __ move(left_op, result_op);
513 left_op = result_op;
520 case Bytecodes::_iadd: __ add(left_op, right_op, result_op); break;
522 case Bytecodes::_lmul: __ mul(left_op, right_op, result_op); break;
527 __ mul_strictfp(left_op, right_op, result_op, tmp_op); break;
529 __ mul(left_op, right_op, result_op); break;
542 __ shift_left(left_op, exact_log2(c), result_op);
545 did_strength_reduce = strength_reduce_multiply(left_op,
616 logic_op(Bytecodes::Code code, LIR_Opr result_op, LIR_Opr left_op, LIR_Opr right_op) argument
[all...]

Completed in 57 milliseconds