src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File bug_8003424.4 Sdiff src/share/vm/runtime

src/share/vm/runtime/globals.hpp

Print this page




3019                                                                             \
3020   product(uintx, TLABWasteIncrement,    4,                                  \
3021           "Increment allowed waste at slow allocation")                     \
3022                                                                             \
3023   product(uintx, SurvivorRatio, 8,                                          \
3024           "Ratio of eden/survivor space size")                              \
3025                                                                             \
3026   product(uintx, NewRatio, 2,                                               \
3027           "Ratio of new/old generation sizes")                              \
3028                                                                             \
3029   product_pd(uintx, NewSizeThreadIncrease,                                  \
3030           "Additional size added to desired new generation size per "       \
3031           "non-daemon thread (in bytes)")                                   \
3032                                                                             \
3033   product_pd(uintx, MetaspaceSize,                                          \
3034           "Initial size of Metaspaces (in bytes)")                          \
3035                                                                             \
3036   product(uintx, MaxMetaspaceSize, max_uintx,                               \
3037           "Maximum size of Metaspaces (in bytes)")                          \
3038                                                                             \
3039   product(uintx, ClassMetaspaceSize, 2*M,                                   \
3040           "Maximum size of InstanceKlass area in Metaspace used for "       \
3041           "UseCompressedKlassPointers")                                     \
3042                                                                             \
3043   product(uintx, MinHeapFreeRatio,    40,                                   \
3044           "Min percentage of heap free after GC to avoid expansion")        \
3045                                                                             \
3046   product(uintx, MaxHeapFreeRatio,    70,                                   \
3047           "Max percentage of heap free after GC to avoid shrinking")        \
3048                                                                             \
3049   product(intx, SoftRefLRUPolicyMSPerMB, 1000,                              \
3050           "Number of milliseconds per MB of free space in the heap")        \
3051                                                                             \
3052   product(uintx, MinHeapDeltaBytes, ScaleForWordSize(128*K),                \
3053           "Min change in heap space due to GC (in bytes)")                  \
3054                                                                             \
3055   product(uintx, MinMetaspaceExpansion, ScaleForWordSize(256*K),            \
3056           "Min expansion of Metaspace (in bytes)")                          \
3057                                                                             \
3058   product(uintx, MinMetaspaceFreeRatio,    40,                              \
3059           "Min percentage of Metaspace free after GC to avoid expansion")   \




3019                                                                             \
3020   product(uintx, TLABWasteIncrement,    4,                                  \
3021           "Increment allowed waste at slow allocation")                     \
3022                                                                             \
3023   product(uintx, SurvivorRatio, 8,                                          \
3024           "Ratio of eden/survivor space size")                              \
3025                                                                             \
3026   product(uintx, NewRatio, 2,                                               \
3027           "Ratio of new/old generation sizes")                              \
3028                                                                             \
3029   product_pd(uintx, NewSizeThreadIncrease,                                  \
3030           "Additional size added to desired new generation size per "       \
3031           "non-daemon thread (in bytes)")                                   \
3032                                                                             \
3033   product_pd(uintx, MetaspaceSize,                                          \
3034           "Initial size of Metaspaces (in bytes)")                          \
3035                                                                             \
3036   product(uintx, MaxMetaspaceSize, max_uintx,                               \
3037           "Maximum size of Metaspaces (in bytes)")                          \
3038                                                                             \
3039   product(uintx, ClassMetaspaceSize, 1*G,                                   \
3040           "Maximum size of InstanceKlass area in Metaspace used for "       \
3041           "UseCompressedKlassPointers")                                     \
3042                                                                             \
3043   product(uintx, MinHeapFreeRatio,    40,                                   \
3044           "Min percentage of heap free after GC to avoid expansion")        \
3045                                                                             \
3046   product(uintx, MaxHeapFreeRatio,    70,                                   \
3047           "Max percentage of heap free after GC to avoid shrinking")        \
3048                                                                             \
3049   product(intx, SoftRefLRUPolicyMSPerMB, 1000,                              \
3050           "Number of milliseconds per MB of free space in the heap")        \
3051                                                                             \
3052   product(uintx, MinHeapDeltaBytes, ScaleForWordSize(128*K),                \
3053           "Min change in heap space due to GC (in bytes)")                  \
3054                                                                             \
3055   product(uintx, MinMetaspaceExpansion, ScaleForWordSize(256*K),            \
3056           "Min expansion of Metaspace (in bytes)")                          \
3057                                                                             \
3058   product(uintx, MinMetaspaceFreeRatio,    40,                              \
3059           "Min percentage of Metaspace free after GC to avoid expansion")   \


src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File