src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/runtime/globals.hpp

src/share/vm/runtime/globals.hpp

Print this page
rev 6362 : 8042298: Remove the names gen0 and gen1 from the GC code
Summary: Renamed gen0 and gen1 to young and old throughout the GC code.
Reviewed-by:

*** 1456,1467 **** product(bool, NeverTenure, false, \ "Never tenure objects in eden, may tenure on overflow " \ "(ParallelGC only)") \ \ product(bool, ScavengeBeforeFullGC, true, \ ! "Scavenge youngest generation before each full GC, " \ ! "used with UseParallelGC") \ \ develop(bool, ScavengeWithObjectsInToSpace, false, \ "Allow scavenges to occur when to-space contains objects") \ \ product(bool, UseConcMarkSweepGC, false, \ --- 1456,1466 ---- product(bool, NeverTenure, false, \ "Never tenure objects in eden, may tenure on overflow " \ "(ParallelGC only)") \ \ product(bool, ScavengeBeforeFullGC, true, \ ! "Scavenge youngest generation before each full GC.") \ \ develop(bool, ScavengeWithObjectsInToSpace, false, \ "Allow scavenges to occur when to-space contains objects") \ \ product(bool, UseConcMarkSweepGC, false, \
*** 2258,2270 **** "Ignore calls to System.gc()") \ \ notproduct(bool, CheckMemoryInitialization, false, \ "Check memory initialization") \ \ - product(bool, CollectGen0First, false, \ - "Collect youngest generation before each full GC") \ - \ diagnostic(bool, BindCMSThreadToCPU, false, \ "Bind CMS Thread to CPU if possible") \ \ diagnostic(uintx, CPUForCMSThread, 0, \ "When BindCMSThreadToCPU is true, the CPU to bind CMS thread to") \ --- 2257,2266 ----
*** 2339,2353 **** \ product(uintx, InitialBootClassLoaderMetaspaceSize, \ NOT_LP64(2200*K) LP64_ONLY(4*M), \ "Initial size of the boot class loader data metaspace") \ \ ! product(bool, TraceGen0Time, false, \ ! "Trace accumulated time for Gen 0 collection") \ \ ! product(bool, TraceGen1Time, false, \ ! "Trace accumulated time for Gen 1 collection") \ \ product(bool, PrintTenuringDistribution, false, \ "Print tenuring age information") \ \ product_rw(bool, PrintHeapAtGC, false, \ --- 2335,2349 ---- \ product(uintx, InitialBootClassLoaderMetaspaceSize, \ NOT_LP64(2200*K) LP64_ONLY(4*M), \ "Initial size of the boot class loader data metaspace") \ \ ! product(bool, TraceYoungGenTime, false, \ ! "Trace accumulated time for young collection") \ \ ! product(bool, TraceOldGenTime, false, \ ! "Trace accumulated time for old collection") \ \ product(bool, PrintTenuringDistribution, false, \ "Print tenuring age information") \ \ product_rw(bool, PrintHeapAtGC, false, \
src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File