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

/openjdk7/hotspot/src/share/vm/opto/
H A DcallGenerator.cpp569 CallGenerator* if_hit, float hit_prob)
572 // The call profile data may predict the hit_prob as extreme as 0 or 1.
574 if (hit_prob > PROB_MAX) hit_prob = PROB_MAX;
575 if (hit_prob < PROB_MIN) hit_prob = PROB_MIN;
580 _hit_prob = hit_prob;
594 float hit_prob) {
595 return new PredictedCallGenerator(predicted_receiver, if_missed, if_hit, hit_prob);
567 PredictedCallGenerator(ciKlass* predicted_receiver, CallGenerator* if_missed, CallGenerator* if_hit, float hit_prob) argument
591 for_predicted_call(ciKlass* predicted_receiver, CallGenerator* if_missed, CallGenerator* if_hit, float hit_prob) argument

Completed in 113 milliseconds