src/hotspot/share/gc/epsilon/epsilon_globals.hpp
branchepsilon-gc-branch
changeset 55979 669f8c047c9c
parent 55767 8e22715afabc
child 56350 56014b46de69
--- a/src/hotspot/share/gc/epsilon/epsilon_globals.hpp	Thu Dec 07 13:23:41 2017 +0100
+++ b/src/hotspot/share/gc/epsilon/epsilon_globals.hpp	Fri Dec 08 13:45:22 2017 +0100
@@ -44,6 +44,17 @@
                  constraint, \
                  writeable) \
                                                                             \
+  experimental(size_t, EpsilonPrintHeapStep, 100,                           \
+          "Print heap occupancy stats with this number of steps. "          \
+          "0 turns the printing off. ")                                     \
+          range(0, max_intx)                                                \
+                                                                            \
+  experimental(size_t, EpsilonUpdateCountersStep, 1 * M,                    \
+          "Update heap heap occupancy counters after allocating this much " \
+          "memory. Higher values would make allocations faster at "         \
+          "the expense of lower resolution in heap counters. ")             \
+          range(1, max_intx)                                                \
+                                                                            \
   experimental(size_t, EpsilonMaxTLABSize, 4 * M,                           \
           "Max TLAB size to use with Epsilon GC. Larger value improves "    \
           "performance at the expense of per-thread memory waste. This "    \