comparison src/share/vm/runtime/globals.hpp @ 11079:738e04fb1232

8014972: Crash with specific values for -XX:InitialCodeCacheSize=500K -XX:ReservedCodeCacheSize=500k Summary: Introduce a minimum code cache size that guarantees that the VM can startup. Reviewed-by: kvn, twisti
author anoll
date Tue, 02 Jul 2013 07:51:31 +0200
parents f2110083203d
children b800986664f4
comparison
equal deleted inserted replaced
11078:2b3fe74309b6 11079:738e04fb1232
3158 "Align inner loops to zero relative to this modulus") \ 3158 "Align inner loops to zero relative to this modulus") \
3159 \ 3159 \
3160 product_pd(uintx, InitialCodeCacheSize, \ 3160 product_pd(uintx, InitialCodeCacheSize, \
3161 "Initial code cache size (in bytes)") \ 3161 "Initial code cache size (in bytes)") \
3162 \ 3162 \
3163 develop_pd(uintx, CodeCacheMinimumUseSpace, \
3164 "Minimum code cache size (in bytes) required to start VM.") \
3165 \
3163 product_pd(uintx, ReservedCodeCacheSize, \ 3166 product_pd(uintx, ReservedCodeCacheSize, \
3164 "Reserved code cache size (in bytes) - maximum code cache size") \ 3167 "Reserved code cache size (in bytes) - maximum code cache size") \
3165 \ 3168 \
3166 product(uintx, CodeCacheMinimumFreeSpace, 500*K, \ 3169 product(uintx, CodeCacheMinimumFreeSpace, 500*K, \
3167 "When less than X space left, we stop compiling.") \ 3170 "When less than X space left, we stop compiling.") \