8036673: G1: Abort weak reference processing if mark stack overflows
authorpliden
Mon, 17 Mar 2014 15:18:45 +0100
changeset 23463 8a9ab140068a
parent 23462 390b23dd6f5d
child 23464 ae470a2efd44
8036673: G1: Abort weak reference processing if mark stack overflows Reviewed-by: brutisso, tschatzl
hotspot/src/share/vm/gc_implementation/g1/concurrentMark.cpp
--- a/hotspot/src/share/vm/gc_implementation/g1/concurrentMark.cpp	Mon Mar 17 15:18:38 2014 +0100
+++ b/hotspot/src/share/vm/gc_implementation/g1/concurrentMark.cpp	Mon Mar 17 15:18:45 2014 +0100
@@ -2529,6 +2529,11 @@
     assert(!rp->discovery_enabled(), "Post condition");
   }
 
+  if (has_overflown()) {
+    // We can not trust g1_is_alive if the marking stack overflowed
+    return;
+  }
+
   g1h->unlink_string_and_symbol_table(&g1_is_alive,
                                       /* process_strings */ false, // currently strings are always roots
                                       /* process_symbols */ true);