< prev index next >

src/share/vm/runtime/globals.hpp

Print this page




2195   product(uintx, YoungGenerationSizeSupplement, 80,                         \
2196           "Supplement to YoungedGenerationSizeIncrement used at startup")   \
2197           range(0, 100)                                                     \
2198                                                                             \
2199   product(uintx, YoungGenerationSizeSupplementDecay, 8,                     \
2200           "Decay factor to YoungedGenerationSizeSupplement")                \
2201           range(1, max_uintx)                                               \
2202                                                                             \
2203   product(uintx, TenuredGenerationSizeIncrement, 20,                        \
2204           "Adaptive size percentage change in tenured generation")          \
2205           range(0, 100)                                                     \
2206                                                                             \
2207   product(uintx, TenuredGenerationSizeSupplement, 80,                       \
2208           "Supplement to TenuredGenerationSizeIncrement used at startup")   \
2209           range(0, 100)                                                     \
2210                                                                             \
2211   product(uintx, TenuredGenerationSizeSupplementDecay, 2,                   \
2212           "Decay factor to TenuredGenerationSizeIncrement")                 \
2213           range(1, max_uintx)                                               \
2214                                                                             \
2215   product(uintx, MaxGCPauseMillis, max_uintx,                               \
2216           "Adaptive size policy maximum GC pause time goal in millisecond, "\
2217           "or (G1 Only) the maximum GC time per MMU time slice")            \
2218           range(1, max_uintx)                                               \
2219           constraint(MaxGCPauseMillisConstraintFunc,AfterMemoryInit)        \
2220                                                                             \
2221   product(uintx, GCPauseIntervalMillis, 0,                                  \
2222           "Time slice for MMU specification")                               \
2223           constraint(GCPauseIntervalMillisConstraintFunc,AfterMemoryInit)   \
2224                                                                             \
2225   product(uintx, MaxGCMinorPauseMillis, max_uintx,                          \
2226           "Adaptive size policy maximum GC minor pause time goal "          \
2227           "in millisecond")                                                 \
2228           range(0, max_uintx)                                               \
2229                                                                             \
2230   product(uintx, GCTimeRatio, 99,                                           \
2231           "Adaptive size policy application time to GC time ratio")         \
2232           range(0, max_juint)                                               \
2233                                                                             \
2234   product(uintx, AdaptiveSizeDecrementScaleFactor, 4,                       \
2235           "Adaptive size scale down factor for shrinking")                  \
2236           range(1, max_uintx)                                               \
2237                                                                             \
2238   product(bool, UseAdaptiveSizeDecayMajorGCCost, true,                      \




2195   product(uintx, YoungGenerationSizeSupplement, 80,                         \
2196           "Supplement to YoungedGenerationSizeIncrement used at startup")   \
2197           range(0, 100)                                                     \
2198                                                                             \
2199   product(uintx, YoungGenerationSizeSupplementDecay, 8,                     \
2200           "Decay factor to YoungedGenerationSizeSupplement")                \
2201           range(1, max_uintx)                                               \
2202                                                                             \
2203   product(uintx, TenuredGenerationSizeIncrement, 20,                        \
2204           "Adaptive size percentage change in tenured generation")          \
2205           range(0, 100)                                                     \
2206                                                                             \
2207   product(uintx, TenuredGenerationSizeSupplement, 80,                       \
2208           "Supplement to TenuredGenerationSizeIncrement used at startup")   \
2209           range(0, 100)                                                     \
2210                                                                             \
2211   product(uintx, TenuredGenerationSizeSupplementDecay, 2,                   \
2212           "Decay factor to TenuredGenerationSizeIncrement")                 \
2213           range(1, max_uintx)                                               \
2214                                                                             \
2215   product(uintx, MaxGCPauseMillis, max_uintx - 1,                           \
2216           "Adaptive size policy maximum GC pause time goal in millisecond, "\
2217           "or (G1 Only) the maximum GC time per MMU time slice")            \
2218           range(1, max_uintx - 1)                                           \
2219           constraint(MaxGCPauseMillisConstraintFunc,AfterMemoryInit)        \
2220                                                                             \
2221   product(uintx, GCPauseIntervalMillis, 0,                                  \
2222           "Time slice for MMU specification")                               \
2223           constraint(GCPauseIntervalMillisConstraintFunc,AfterMemoryInit)   \
2224                                                                             \
2225   product(uintx, MaxGCMinorPauseMillis, max_uintx,                          \
2226           "Adaptive size policy maximum GC minor pause time goal "          \
2227           "in millisecond")                                                 \
2228           range(0, max_uintx)                                               \
2229                                                                             \
2230   product(uintx, GCTimeRatio, 99,                                           \
2231           "Adaptive size policy application time to GC time ratio")         \
2232           range(0, max_juint)                                               \
2233                                                                             \
2234   product(uintx, AdaptiveSizeDecrementScaleFactor, 4,                       \
2235           "Adaptive size scale down factor for shrinking")                  \
2236           range(1, max_uintx)                                               \
2237                                                                             \
2238   product(bool, UseAdaptiveSizeDecayMajorGCCost, true,                      \


< prev index next >