--- old/src/hotspot/share/gc/shared/gc_globals.hpp 2018-05-31 19:29:29.445371288 +0200 +++ new/src/hotspot/share/gc/shared/gc_globals.hpp 2018-05-31 19:29:29.177371375 +0200 @@ -29,6 +29,9 @@ #if INCLUDE_CMSGC #include "gc/cms/cms_globals.hpp" #endif +#if INCLUDE_EPSILONGC +#include "gc/epsilon/epsilon_globals.hpp" +#endif #if INCLUDE_G1GC #include "gc/g1/g1_globals.hpp" #endif @@ -70,6 +73,22 @@ constraint, \ writeable)) \ \ + EPSILONGC_ONLY(GC_EPSILON_FLAGS( \ + develop, \ + develop_pd, \ + product, \ + product_pd, \ + diagnostic, \ + diagnostic_pd, \ + experimental, \ + notproduct, \ + manageable, \ + product_rw, \ + lp64_product, \ + range, \ + constraint, \ + writeable)) \ + \ G1GC_ONLY(GC_G1_FLAGS( \ develop, \ develop_pd, \ @@ -135,6 +154,9 @@ product(bool, UseParallelOldGC, false, \ "Use the Parallel Old garbage collector") \ \ + experimental(bool, UseEpsilonGC, false, \ + "Use the Epsilon (no-op) garbage collector") \ + \ product(uint, ParallelGCThreads, 0, \ "Number of parallel threads parallel gc will use") \ constraint(ParallelGCThreadsConstraintFunc,AfterErgo) \