Skip to content

Commit 12700cb

Browse files
committedJan 6, 2025
8346264: "Total compile time" counter should include time spent in failing/bailout compiles
Reviewed-by: kvn, mli
1 parent dd81f8d commit 12700cb

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed
 

‎src/hotspot/share/compiler/compileBroker.cpp

+5-6
Original file line numberDiff line numberDiff line change
@@ -2532,6 +2532,11 @@ void CompileBroker::collect_statistics(CompilerThread* thread, elapsedTimer time
25322532
// C1 and C2 counters are counting both successful and unsuccessful compiles
25332533
_t_total_compilation.add(time);
25342534

2535+
// Update compilation times. Used by the implementation of JFR CompilerStatistics
2536+
// and java.lang.management.CompilationMXBean.
2537+
_perf_total_compilation->inc(time.ticks());
2538+
_peak_compilation_time = MAX2(time.milliseconds(), _peak_compilation_time);
2539+
25352540
if (!success) {
25362541
_total_bailout_count++;
25372542
if (UsePerfData) {
@@ -2550,12 +2555,6 @@ void CompileBroker::collect_statistics(CompilerThread* thread, elapsedTimer time
25502555
_t_invalidated_compilation.add(time);
25512556
} else {
25522557
// Compilation succeeded
2553-
2554-
// update compilation ticks - used by the implementation of
2555-
// java.lang.management.CompilationMXBean
2556-
_perf_total_compilation->inc(time.ticks());
2557-
_peak_compilation_time = time.milliseconds() > _peak_compilation_time ? time.milliseconds() : _peak_compilation_time;
2558-
25592558
if (CITime) {
25602559
int bytes_compiled = method->code_size() + task->num_inlined_bytecodes();
25612560
if (is_osr) {

0 commit comments

Comments
 (0)
Please sign in to comment.