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

/openjdk7/hotspot/src/share/vm/opto/
H A Dcfgnode.hpp335 float _fcnt; // Frequency counter member in class:IfNode
337 : MultiBranchNode(2), _prob(p), _fcnt(fcnt) {
H A Difnode.cpp290 IfNode *iff_c = new (igvn->C) IfNode(region_c,b_c,iff->_prob,iff->_fcnt);
295 IfNode *iff_x = new (igvn->C) IfNode(region_x,b_x,iff->_prob, iff->_fcnt);
1072 st->print("P=%f, C=%f",_prob,_fcnt);
1109 iff = new (phase->C) IfNode( iff->in(0), b, 1.0-iff->_prob, iff->_fcnt);
H A DloopTransform.cpp124 back->in(0)->as_If()->_fcnt != COUNT_UNKNOWN &&
134 float loop_back_cnt = back_if->_fcnt * back_if->_prob;
142 if( iff->_fcnt != COUNT_UNKNOWN && iff->_prob != PROB_UNKNOWN ) {
148 float exit_cnt = iff->_fcnt * exit_prob;
2061 if( !phase->is_member( this, ex ) && iff->_fcnt == COUNT_UNKNOWN ) {
H A Dmachnode.cpp565 st->print("P=%f, C=%f",_prob, _fcnt);
H A Dmachnode.hpp598 float _fcnt; // Frequency counter member in class:MachIfNode
H A Dcfgnode.cpp664 IfNode *iff = (IfNode*)gvn->register_new_node_with_optimizer(new (phase->C) IfNode( top_if->in(0), boo, PROB_UNLIKELY_MAG(5), top_if->_fcnt ));
670 iff = (IfNode*)gvn->register_new_node_with_optimizer(new (phase->C) IfNode( ifF, boo, PROB_UNLIKELY_MAG(5), bot_if->_fcnt ));
H A Dloopopts.cpp1682 IfNode* new_if = new (C)IfNode(proj2, bol, iff->_prob, iff->_fcnt);
1737 IfNode* dum_if = new (C)IfNode(reg, short_circuit_if(NULL, proj), iff->_prob, iff->_fcnt);
H A Dloopnode.cpp719 Node *lex = _igvn.register_new_node_with_optimizer(new (C) CountedLoopEndNode( iff->in(0), test, cl_prob, iff->as_If()->_fcnt ));
1344 if( iff->_fcnt != COUNT_UNKNOWN ) // Have a valid count?
1346 return ((nop == Op_IfTrue) ? iff->_prob : 1.0f - iff->_prob) * iff->_fcnt;
/openjdk7/hotspot/src/share/vm/runtime/
H A DvmStructs.cpp1135 c2_nonstatic_field(MachIfNode, _fcnt, jfloat) \

Completed in 342 milliseconds