< prev index next >

src/share/vm/runtime/globals.hpp

Print this page
rev 8615 : CMSParallelFullGC: Parallel version of CMS Full GC.

@@ -1901,10 +1901,26 @@
                                                                             \
   product(bool, CMSPrintEdenSurvivorChunks, false,                          \
           "Print the eden and the survivor chunks used for the parallel "   \
           "initial mark or remark of the eden/survivor spaces")             \
                                                                             \
+  product(bool, CMSParallelFullGC, false,                                   \
+         "Use parallel full GC under CMS.")                                 \
+                                                                            \
+  develop(bool, ShareCMSMarkBitMapWithParallelFullGC, true,                 \
+         "Share the underlying mark bit map memory between the "            \
+         "concurrent GC and the parallel STW full GC under CMS. If false, " \
+         "the parallel STW full GC allocates its own bit map. Effective "   \
+         "when +CMSParallelFullGC. ")                                       \
+                                                                            \
+  develop(uintx, CMSParallelFullGCHeapRegionSize, 1 * M,                    \
+          "The size of the heap region which is the unit of "               \
+          "parallelism under CMSParallelFullGC.")                           \
+                                                                            \
+  diagnostic(bool, LogCMSParallelFullGC, false,                             \
+          "Log activities related to CMSParallelFullGC.")                   \
+                                                                            \
   product(bool, CMSConcurrentMTEnabled, true,                               \
           "Whether multi-threaded concurrent work enabled "                 \
           "(effective only if ParNewGC)")                                   \
                                                                             \
   product(bool, CMSPrecleaningEnabled, true,                                \
< prev index next >