mirror of
https://github.com/JetBrains/JetBrainsRuntime.git
synced 2025-12-06 09:29:38 +01:00
8339648: ZGC: Division by zero in rule_major_allocation_rate
Reviewed-by: aboldtch, lucy, tschatzl
This commit is contained in:
@@ -488,7 +488,8 @@ static bool rule_major_allocation_rate(const ZDirectorStats& stats) {
|
||||
|
||||
// Calculate the GC cost for each reclaimed byte
|
||||
const double current_young_gc_time_per_bytes_freed = double(young_gc_time) / double(reclaimed_per_young_gc);
|
||||
const double current_old_gc_time_per_bytes_freed = double(old_gc_time) / double(reclaimed_per_old_gc);
|
||||
const double current_old_gc_time_per_bytes_freed = reclaimed_per_old_gc == 0 ? std::numeric_limits<double>::infinity()
|
||||
: (double(old_gc_time) / double(reclaimed_per_old_gc));
|
||||
|
||||
// Calculate extra time per young collection inflicted by *not* doing an
|
||||
// old collection that frees up memory in the old generation.
|
||||
|
||||
Reference in New Issue
Block a user