File tree 1 file changed +7
-8
lines changed
1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -880,17 +880,16 @@ ciKlass* ciMethod::get_declared_method_holder_at_bci(int bci) {
880
880
// invocation counts in methods.
881
881
int ciMethod::scale_count (int count, float prof_factor) {
882
882
if (count > 0 && method_data () != NULL ) {
883
- int counter_life;
883
+ int counter_life = method_data ()-> invocation_count () ;
884
884
int method_life = interpreter_invocation_count ();
885
- // In tiered the MDO's life is measured directly, so just use the snapshotted counters
886
- counter_life = MAX2 (method_data ()->invocation_count (), method_data ()->backedge_count ());
887
-
888
- // counter_life due to backedge_counter could be > method_life
889
- if (counter_life > method_life)
890
- counter_life = method_life;
891
- if (0 < counter_life && counter_life <= method_life) {
885
+ if (method_life < counter_life) { // may happen because of the snapshot timing
886
+ method_life = counter_life;
887
+ }
888
+ if (counter_life > 0 ) {
892
889
count = (int )((double )count * prof_factor * method_life / counter_life + 0.5 );
893
890
count = (count > 0 ) ? count : 1 ;
891
+ } else {
892
+ count = 1 ;
894
893
}
895
894
}
896
895
return count;
You can’t perform that action at this time.
0 commit comments