comparison src/share/vm/runtime/globals.hpp @ 14435:da862781b584

Merge
author kvn
date Thu, 21 Nov 2013 12:30:35 -0800
parents 2b8e28fdf503 e74074c34312
children 41b780b43b74
comparison
equal deleted inserted replaced
14434:318d0622a6d7 14435:da862781b584
2971 "maximum number of nested calls that are inlined") \ 2971 "maximum number of nested calls that are inlined") \
2972 \ 2972 \
2973 product(intx, MaxRecursiveInlineLevel, 1, \ 2973 product(intx, MaxRecursiveInlineLevel, 1, \
2974 "maximum number of nested recursive calls that are inlined") \ 2974 "maximum number of nested recursive calls that are inlined") \
2975 \ 2975 \
2976 develop(intx, MaxForceInlineLevel, 100, \
2977 "maximum number of nested @ForceInline calls that are inlined") \
2978 \
2976 product_pd(intx, InlineSmallCode, \ 2979 product_pd(intx, InlineSmallCode, \
2977 "Only inline already compiled methods if their code size is " \ 2980 "Only inline already compiled methods if their code size is " \
2978 "less than this") \ 2981 "less than this") \
2979 \ 2982 \
2980 product(intx, MaxInlineSize, 35, \ 2983 product(intx, MaxInlineSize, 35, \
3035 notproduct(intx, DeoptimizeALotInterval, 5, \ 3038 notproduct(intx, DeoptimizeALotInterval, 5, \
3036 "Number of exits until DeoptimizeALot kicks in") \ 3039 "Number of exits until DeoptimizeALot kicks in") \
3037 \ 3040 \
3038 notproduct(intx, ZombieALotInterval, 5, \ 3041 notproduct(intx, ZombieALotInterval, 5, \
3039 "Number of exits until ZombieALot kicks in") \ 3042 "Number of exits until ZombieALot kicks in") \
3040 \
3041 develop(bool, StressNonEntrant, false, \
3042 "Mark nmethods non-entrant at registration") \
3043 \ 3043 \
3044 diagnostic(intx, MallocVerifyInterval, 0, \ 3044 diagnostic(intx, MallocVerifyInterval, 0, \
3045 "If non-zero, verify C heap after every N calls to " \ 3045 "If non-zero, verify C heap after every N calls to " \
3046 "malloc/realloc/free") \ 3046 "malloc/realloc/free") \
3047 \ 3047 \
3307 \ 3307 \
3308 notproduct(bool, ExitOnFullCodeCache, false, \ 3308 notproduct(bool, ExitOnFullCodeCache, false, \
3309 "Exit the VM if we fill the code cache") \ 3309 "Exit the VM if we fill the code cache") \
3310 \ 3310 \
3311 product(bool, UseCodeCacheFlushing, true, \ 3311 product(bool, UseCodeCacheFlushing, true, \
3312 "Attempt to clean the code cache before shutting off compiler") \ 3312 "Remove cold/old nmethods from the code cache") \
3313 \ 3313 \
3314 /* interpreter debugging */ \ 3314 /* interpreter debugging */ \
3315 develop(intx, BinarySwitchThreshold, 5, \ 3315 develop(intx, BinarySwitchThreshold, 5, \
3316 "Minimal number of lookupswitch entries for rewriting to binary " \ 3316 "Minimal number of lookupswitch entries for rewriting to binary " \
3317 "switch") \ 3317 "switch") \