# HG changeset patch # User johnc # Date 1308158284 25200 # Node ID 5130fa1b24f1e6b6e2ef4c003976c382ef382cfa # Parent 6747fd0512e01d8d3d8b698ac7d668c5350fef84 7045751: G1: +ExplicitGCInvokesConcurrent causes excessive single region evacuation pauses Summary: When ExplicitGCInvokesConcurrent is enabled, do not perform an evacuation pause if a marking cycle is already in progress and block the requesting thread until the marking cycle completes. Reviewed-by: tonyp, ysr diff -r 6747fd0512e0 -r 5130fa1b24f1 src/share/vm/gc_implementation/g1/vm_operations_g1.cpp --- a/src/share/vm/gc_implementation/g1/vm_operations_g1.cpp Tue Jun 14 11:01:10 2011 -0700 +++ b/src/share/vm/gc_implementation/g1/vm_operations_g1.cpp Wed Jun 15 10:18:04 2011 -0700 @@ -99,6 +99,18 @@ // At this point we are supposed to start a concurrent cycle. We // will do so if one is not already in progress. bool res = g1h->g1_policy()->force_initial_mark_if_outside_cycle(); + + // The above routine returns true if we were able to force the + // next GC pause to be an initial mark; it returns false if a + // marking cycle is already in progress. + // + // If a marking cycle is already in progress just return and skip + // the pause - the requesting thread should block in doit_epilogue + // until the marking cycle is complete. + if (!res) { + assert(_word_size == 0, "ExplicitGCInvokesConcurrent shouldn't be allocating"); + return; + } } _pause_succeeded =