Searched refs:num_edges (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/opto/
H A Dmachnode.cpp198 uint num_edges = _opnds[1]->num_edges(); // leaves for first operand local
199 while( idx >= skipped+num_edges ) {
200 skipped += num_edges;
203 num_edges = _opnds[opcnt]->num_edges(); // leaves for next operand
381 if( _opnds[operand]->num_edges() == 0 ) return -1;
385 uint num_edges = _opnds[opcnt]->num_edges(); // leaves for operand local
386 skipped += num_edges;
[all...]
H A Dmachnode.hpp68 virtual uint num_edges() const { return 1; } function in class:MachOper
865 virtual uint num_edges() const { return 0; } function in class:labelOper
899 virtual uint num_edges() const { return 0; } function in class:methodOper
H A Dnode.cpp255 void DUIterator_Last::verify_step(uint num_edges) { argument
256 assert((int)num_edges > 0, "need non-zero edge count for loop progress");
257 _outcnt -= num_edges;
258 _del_tick += num_edges;
H A DphaseX.cpp1265 uint num_edges = 0; local
1269 ++num_edges;
1277 i -= num_edges; // we deleted 1 or more copies of this edge
H A Dnode.hpp1153 // imax, but not i, multiple times: "--i, imax -= num_edges".
1215 // for (DUIterator_Last imin, i = x->last_outs(imin); i >= imin; i -= num_edges) {
1227 void verify_step(uint num_edges);
/openjdk7/hotspot/src/share/vm/adlc/
H A Doutput_h.cpp1170 uint num_edges = oper->num_edges(_globalNames); local
1171 if( num_edges != 1 ) { // Use MachOper::num_edges() {return 1;}
1172 fprintf(fp," virtual uint num_edges() const { return %d; }\n",
1173 num_edges );
1175 if( num_edges > 0 ) {
1632 fprintf(fp," + opnd_array(%d)->num_edges()",i-1);
H A Doutput_c.cpp991 fprintf(fp_cpp, " j += m->_opnds[k]->num_edges();\n");
1113 // Build mapping for register indices, num_edges to input
1144 // Build mapping from num_edges to local variables
1531 // Build mapping from num_edges to local variables
1534 fprintf(fp," unsigned num%d = opnd_array(%d)->num_edges();\n",i,i);
1772 // Build mapping from num_edges to local variables
1775 fprintf(fp," unsigned num%d = opnd_array(%d)->num_edges();",i,i);
2668 uint num_edges = oper.num_edges(globals); local
2669 if( num_edges !
[all...]
H A Dformssel.hpp601 virtual uint num_edges(FormDict &globals) const;
H A Dformssel.cpp1412 fprintf(fp," unsigned %sidx%d = %sidx%d + opnd_array(%d)->num_edges();",
1415 fprintf(fp," unsigned %sidx%d = %sidx%d + %s_opnds[%d]->num_edges();",
2092 uint OperandForm::num_edges(FormDict &globals) const { function in class:OperandForm
2111 return oper->num_edges(globals);

Completed in 91 milliseconds