--- old/src/hotspot/share/gc/shared/gc_globals.hpp 2018-04-26 19:34:15.134046710 +0200 +++ new/src/hotspot/share/gc/shared/gc_globals.hpp 2018-04-26 19:34:14.921940711 +0200 @@ -29,6 +29,7 @@ #include "utilities/macros.hpp" #if INCLUDE_ALL_GCS #include "gc/cms/cms_globals.hpp" +#include "gc/epsilon/epsilon_globals.hpp" #include "gc/g1/g1_globals.hpp" #include "gc/parallel/parallel_globals.hpp" #endif @@ -64,6 +65,22 @@ constraint, \ writeable)) \ \ + ALL_GCS_ONLY(GC_EPSILON_FLAGS( \ + develop, \ + develop_pd, \ + product, \ + product_pd, \ + diagnostic, \ + diagnostic_pd, \ + experimental, \ + notproduct, \ + manageable, \ + product_rw, \ + lp64_product, \ + range, \ + constraint, \ + writeable)) \ + \ ALL_GCS_ONLY(GC_G1_FLAGS( \ develop, \ develop_pd, \ @@ -129,6 +146,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) \