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

/openjdk7/hotspot/src/share/vm/adlc/
H A Dformsopt.cpp700 void PeepReplace::add_operand( int inst_num, char *inst_operand ) { argument
702 _operand_inst_num.addName((char*) (intptr_t) inst_num);
714 int inst_num = (int) (intptr_t) _operand_inst_num.iter(); local
717 void PeepReplace::next_operand(int &inst_num, const char* &inst_operand) { argument
719 inst_num = (int) (intptr_t) _operand_inst_num.iter();
H A Dformsopt.hpp521 void add_operand( int inst_num, char *inst_operand );
526 void next_operand(int &inst_num, const char * &inst_operand );
543 PeepChild(int inst_num, char *inst_op, char *inst_name) argument
544 : _inst_num(inst_num), _inst_op(inst_op), _inst_name(inst_name) {};
H A Dadlparse.cpp2690 int inst_num = get_int(); local
2705 replace->add_operand( inst_num, inst_op );
H A Doutput_c.cpp1345 int inst_num; local
1350 for( preplace->next_operand( inst_num, op_name );
1352 preplace->next_operand( inst_num, op_name ) ) {
1354 inst_form = globals[pmatch->instruction_name(inst_num)]->is_instruction();
1373 inst_num, unmatched_edge);
1378 fprintf(fp, " root->_bottom_type = inst%d->bottom_type();\n", inst_num);
1381 fprintf(fp, " ra_->add_reference(root, inst%d);\n", inst_num);
1382 fprintf(fp, " ra_->set_oop (root, ra_->is_oop(inst%d));\n", inst_num);
1383 fprintf(fp, " ra_->set_pair(root->_idx, ra_->get_reg_second(inst%d), ra_->get_reg_first(inst%d));\n", inst_num, inst_num);
[all...]

Completed in 54 milliseconds