comparison src/share/vm/runtime/globals.hpp @ 8035:f64ffbf81af5

8006432: Ratio flags should be unsigned Summary: Flags changed to be of uintx type Reviewed-by: johnc, tamao
author jwilhelm
date Thu, 07 Feb 2013 15:51:25 +0100
parents bce1ac447f6b
children a83cd101fd62
comparison
equal deleted inserted replaced
8034:bce1ac447f6b 8035:f64ffbf81af5
1800 "Enable parallel reference processing whenever possible") \ 1800 "Enable parallel reference processing whenever possible") \
1801 \ 1801 \
1802 product(bool, ParallelRefProcBalancingEnabled, true, \ 1802 product(bool, ParallelRefProcBalancingEnabled, true, \
1803 "Enable balancing of reference processing queues") \ 1803 "Enable balancing of reference processing queues") \
1804 \ 1804 \
1805 product(intx, CMSTriggerRatio, 80, \ 1805 product(uintx, CMSTriggerRatio, 80, \
1806 "Percentage of MinHeapFreeRatio in CMS generation that is " \ 1806 "Percentage of MinHeapFreeRatio in CMS generation that is " \
1807 "allocated before a CMS collection cycle commences") \ 1807 "allocated before a CMS collection cycle commences") \
1808 \ 1808 \
1809 product(uintx, CMSBootstrapOccupancy, 50, \ 1809 product(uintx, CMSBootstrapOccupancy, 50, \
1810 "Percentage CMS generation occupancy at which to " \ 1810 "Percentage CMS generation occupancy at which to " \
2975 "Max TLAB waste at a refill (internal fragmentation)") \ 2975 "Max TLAB waste at a refill (internal fragmentation)") \
2976 \ 2976 \
2977 product(uintx, TLABWasteIncrement, 4, \ 2977 product(uintx, TLABWasteIncrement, 4, \
2978 "Increment allowed waste at slow allocation") \ 2978 "Increment allowed waste at slow allocation") \
2979 \ 2979 \
2980 product(intx, SurvivorRatio, 8, \ 2980 product(uintx, SurvivorRatio, 8, \
2981 "Ratio of eden/survivor space size") \ 2981 "Ratio of eden/survivor space size") \
2982 \ 2982 \
2983 product(intx, NewRatio, 2, \ 2983 product(uintx, NewRatio, 2, \
2984 "Ratio of new/old generation sizes") \ 2984 "Ratio of new/old generation sizes") \
2985 \ 2985 \
2986 product_pd(uintx, NewSizeThreadIncrease, \ 2986 product_pd(uintx, NewSizeThreadIncrease, \
2987 "Additional size added to desired new generation size per " \ 2987 "Additional size added to desired new generation size per " \
2988 "non-daemon thread (in bytes)") \ 2988 "non-daemon thread (in bytes)") \
3029 "Maximum value for tenuring threshold") \ 3029 "Maximum value for tenuring threshold") \
3030 \ 3030 \
3031 product(uintx, InitialTenuringThreshold, 7, \ 3031 product(uintx, InitialTenuringThreshold, 7, \
3032 "Initial value for tenuring threshold") \ 3032 "Initial value for tenuring threshold") \
3033 \ 3033 \
3034 product(intx, TargetSurvivorRatio, 50, \ 3034 product(uintx, TargetSurvivorRatio, 50, \
3035 "Desired percentage of survivor space used after scavenge") \ 3035 "Desired percentage of survivor space used after scavenge") \
3036 \ 3036 \
3037 product(uintx, MarkSweepDeadRatio, 5, \ 3037 product(uintx, MarkSweepDeadRatio, 5, \
3038 "Percentage (0-100) of the old gen allowed as dead wood." \ 3038 "Percentage (0-100) of the old gen allowed as dead wood." \
3039 "Serial mark sweep treats this as both the min and max value." \ 3039 "Serial mark sweep treats this as both the min and max value." \