< prev index next >

src/hotspot/share/gc/epsilon/epsilon_globals.hpp

Print this page
rev 57357 : Epsilon, Sliding Mark-Compact

@@ -90,8 +90,18 @@
           range(1, max_intx)                                                \
                                                                             \
   experimental(size_t, EpsilonMinHeapExpand, 128 * M,                       \
           "Min expansion step for heap. Larger value improves performance " \
           "at the potential expense of memory waste.")                      \
-          range(1, max_intx)
+          range(1, max_intx)                                                \
+                                                                            \
+  experimental(bool, EpsilonSlidingGC, false,                               \
+          "Actually does sliding mark-compact GC.")                         \
+                                                                            \
+  experimental(bool, EpsilonUncommit, false,                                \
+          "Uncommits all unneeded memory after GC.")                        \
+                                                                            \
+  experimental(bool, EpsilonVerify, false,                                  \
+          "Does the additional GC verification step.")                      \
+                                                                            \
 
 #endif // SHARE_GC_EPSILON_EPSILON_GLOBALS_HPP
< prev index next >