Skip to content

Commit 9faab40

Browse files
author
Igor Veresov
committedAug 11, 2021
8272330: C2: Cleanup profile counter scaling
Reviewed-by: kvn
1 parent 75a0642 commit 9faab40

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed
 

‎src/hotspot/share/ci/ciMethod.cpp

+7-8
Original file line numberDiff line numberDiff line change
@@ -880,17 +880,16 @@ ciKlass* ciMethod::get_declared_method_holder_at_bci(int bci) {
880880
// invocation counts in methods.
881881
int ciMethod::scale_count(int count, float prof_factor) {
882882
if (count > 0 && method_data() != NULL) {
883-
int counter_life;
883+
int counter_life = method_data()->invocation_count();
884884
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) {
892889
count = (int)((double)count * prof_factor * method_life / counter_life + 0.5);
893890
count = (count > 0) ? count : 1;
891+
} else {
892+
count = 1;
894893
}
895894
}
896895
return count;

0 commit comments

Comments
 (0)
Please sign in to comment.