src/hotspot/share/gc/epsilon/epsilon_globals.hpp
branchepsilon-gc-branch
changeset 55979 669f8c047c9c
parent 55767 8e22715afabc
child 56350 56014b46de69
equal deleted inserted replaced
55976:be6a0c9587da 55979:669f8c047c9c
    42                  product_rw, \
    42                  product_rw, \
    43                  range, \
    43                  range, \
    44                  constraint, \
    44                  constraint, \
    45                  writeable) \
    45                  writeable) \
    46                                                                             \
    46                                                                             \
       
    47   experimental(size_t, EpsilonPrintHeapStep, 100,                           \
       
    48           "Print heap occupancy stats with this number of steps. "          \
       
    49           "0 turns the printing off. ")                                     \
       
    50           range(0, max_intx)                                                \
       
    51                                                                             \
       
    52   experimental(size_t, EpsilonUpdateCountersStep, 1 * M,                    \
       
    53           "Update heap heap occupancy counters after allocating this much " \
       
    54           "memory. Higher values would make allocations faster at "         \
       
    55           "the expense of lower resolution in heap counters. ")             \
       
    56           range(1, max_intx)                                                \
       
    57                                                                             \
    47   experimental(size_t, EpsilonMaxTLABSize, 4 * M,                           \
    58   experimental(size_t, EpsilonMaxTLABSize, 4 * M,                           \
    48           "Max TLAB size to use with Epsilon GC. Larger value improves "    \
    59           "Max TLAB size to use with Epsilon GC. Larger value improves "    \
    49           "performance at the expense of per-thread memory waste. This "    \
    60           "performance at the expense of per-thread memory waste. This "    \
    50           "asks TLAB machinery to cap TLAB sizes at this value")            \
    61           "asks TLAB machinery to cap TLAB sizes at this value")            \
    51           range(1, max_intx)                                                \
    62           range(1, max_intx)                                                \