Searched refs:num_opnds (Results 1 - 10 of 10) sorted by relevance
| /openjdk7/hotspot/src/share/vm/opto/ |
| H A D | machnode.cpp | 157 uint no = num_opnds(); 167 uint no = num_opnds(); 168 if( no != n.num_opnds() ) return 0; 189 uint numopnds = num_opnds(); // Virtual call for number of operands 225 int oper_idx = num_opnds(); 380 assert(operand < num_opnds(), "oob"); 455 uint cnt = num_opnds();
|
| H A D | matcher.hpp | 56 uint ReduceInst_Interior(State *s, int rule, Node *&mem, MachNode *mach, uint num_opnds);
|
| H A D | matcher.cpp | 1766 uint Matcher::ReduceInst_Interior( State *s, int rule, Node *&mem, MachNode *mach, uint num_opnds ) { 1801 mach->_opnds[num_opnds++] = newstate->MachOperGenerator( opnd_class_instance, C ); 1808 num_opnds = ReduceInst_Interior( newstate, newrule, mem, mach, num_opnds ); 1812 mach->_opnds[num_opnds++] = s->MachOperGenerator( _reduceOp[catch_op], C ); 1819 assert( mach->_opnds[num_opnds-1], "" ); 1821 return num_opnds;
|
| H A D | ifg.cpp | 383 // Check that mach->num_opnds() == 3 to ensure instruction is 388 // Checking req() and num_opnds() does NOT distinguish addI_cout from addI_cout_imm 389 if( (op == Op_AddI && mach->req() == 3 && mach->num_opnds() == 3) &&
|
| H A D | machnode.hpp | 219 uint num_opnds() const { return _num_opnds; } function in class:MachNode
|
| H A D | node.cpp | 510 if (this->is_Mach() && (nopnds = this->as_Mach()->num_opnds()) > 0) {
|
| /openjdk7/hotspot/src/share/vm/adlc/ |
| H A D | formssel.cpp | 791 uint InstructForm::num_opnds() { function in class:InstructForm 792 int num_opnds = _components.num_operands(); local 803 return num_opnds; 812 for (i = 1; i < num_opnds(); ++i) { 1186 if( def_oper == NameList::Not_in_list && instr->num_opnds() == num_opnds()) { 1323 int nopnds = num_opnds(); 1398 int cur_num_opnds = num_opnds(); 2974 int num_opnds = num_operands(); local 2983 ++num_opnds; [all...] |
| H A D | output_c.cpp | 986 fprintf(fp_cpp, " uint n = m->num_opnds();\n"); 1500 unsigned numo = node->num_opnds() + 1524 if (i < node->num_opnds()) { 1533 for( i = 1; i < node->num_opnds(); i++ ) { 1552 for( i = 0; i < node->num_opnds(); i++ ) { 1629 exp_pos += node->num_opnds(); 1634 cnt, new_pos, exp_pos-node->num_opnds(), opid); 1769 uint cur_num_opnds = node->num_opnds(); 2945 fprintf(fp_cpp, " int nopnds = num_opnds();\n"); 2946 fprintf(fp_cpp, " assert( node->num_opnds() [all...] |
| H A D | output_h.cpp | 1510 fprintf(fp," MachOper *_opnd_array[%d];\n", instr->num_opnds() ); 1677 fprintf(fp," _num_opnds = %d; _opnds = _opnd_array; ", instr->num_opnds()); 1768 instr->num_opnds() != instr->num_unique_opnds() ) {
|
| H A D | formssel.hpp | 201 virtual uint num_opnds(); // Count of num_opnds for MachNode class
|
Completed in 101 milliseconds