@@ -294,18 +294,6 @@ void ShenandoahOldHeuristics::get_coalesce_and_fill_candidates(ShenandoahHeapReg
294
294
}
295
295
}
296
296
297
- bool ShenandoahOldHeuristics::should_defer_gc () {
298
- if (unprocessed_old_collection_candidates () > 0 ) {
299
- // Cannot start a new old-gen GC until previous one has finished.
300
- //
301
- // Future refinement: under certain circumstances, we might be more sophisticated about this choice.
302
- // For example, we could choose to abandon the previous old collection before it has completed evacuations,
303
- // but this would require that we coalesce and fill all garbage within unevacuated collection-set regions.
304
- return true ;
305
- }
306
- return false ;
307
- }
308
-
309
297
void ShenandoahOldHeuristics::abandon_collection_candidates () {
310
298
_old_collection_candidates = 0 ;
311
299
_next_old_collection_candidate = 0 ;
@@ -315,7 +303,12 @@ void ShenandoahOldHeuristics::abandon_collection_candidates() {
315
303
_first_coalesce_and_fill_candidate = 0 ;
316
304
}
317
305
306
+ void ShenandoahOldHeuristics::handle_promotion_failure () {
307
+ _promotion_failed = true ;
308
+ }
309
+
318
310
void ShenandoahOldHeuristics::record_cycle_start () {
311
+ _promotion_failed = false ;
319
312
_trigger_heuristic->record_cycle_start ();
320
313
}
321
314
@@ -324,9 +317,23 @@ void ShenandoahOldHeuristics::record_cycle_end() {
324
317
}
325
318
326
319
bool ShenandoahOldHeuristics::should_start_gc () {
327
- if (should_defer_gc ()) {
320
+ // Cannot start a new old-gen GC until previous one has finished.
321
+ //
322
+ // Future refinement: under certain circumstances, we might be more sophisticated about this choice.
323
+ // For example, we could choose to abandon the previous old collection before it has completed evacuations,
324
+ // but this would require that we coalesce and fill all garbage within unevacuated collection-set regions.
325
+ if (unprocessed_old_collection_candidates () > 0 ) {
328
326
return false ;
329
327
}
328
+
329
+ // If there's been a promotion failure (and we don't have regions already scheduled for evacuation),
330
+ // start a new old generation collection.
331
+ if (_promotion_failed) {
332
+ log_info (gc)(" Trigger: Promotion Failure" );
333
+ return true ;
334
+ }
335
+
336
+ // Otherwise, defer to configured heuristic for gc trigger.
330
337
return _trigger_heuristic->should_start_gc ();
331
338
}
332
339
0 commit comments