comparison src/share/vm/runtime/globals.hpp @ 13389:438fe38c63c8

Merge
author mgronlun
date Fri, 15 Nov 2013 21:39:27 +0100
parents cdf20166ec45 e74074c34312
children 02f27ecb4f3a 6c583aa36bc9 49a31fd8b93d 1174c8abbdb6
comparison
equal deleted inserted replaced
13388:5280822ddfcd 13389:438fe38c63c8
2952 "maximum number of nested calls that are inlined") \ 2952 "maximum number of nested calls that are inlined") \
2953 \ 2953 \
2954 product(intx, MaxRecursiveInlineLevel, 1, \ 2954 product(intx, MaxRecursiveInlineLevel, 1, \
2955 "maximum number of nested recursive calls that are inlined") \ 2955 "maximum number of nested recursive calls that are inlined") \
2956 \ 2956 \
2957 develop(intx, MaxForceInlineLevel, 100, \
2958 "maximum number of nested @ForceInline calls that are inlined") \
2959 \
2957 product_pd(intx, InlineSmallCode, \ 2960 product_pd(intx, InlineSmallCode, \
2958 "Only inline already compiled methods if their code size is " \ 2961 "Only inline already compiled methods if their code size is " \
2959 "less than this") \ 2962 "less than this") \
2960 \ 2963 \
2961 product(intx, MaxInlineSize, 35, \ 2964 product(intx, MaxInlineSize, 35, \
3016 notproduct(intx, DeoptimizeALotInterval, 5, \ 3019 notproduct(intx, DeoptimizeALotInterval, 5, \
3017 "Number of exits until DeoptimizeALot kicks in") \ 3020 "Number of exits until DeoptimizeALot kicks in") \
3018 \ 3021 \
3019 notproduct(intx, ZombieALotInterval, 5, \ 3022 notproduct(intx, ZombieALotInterval, 5, \
3020 "Number of exits until ZombieALot kicks in") \ 3023 "Number of exits until ZombieALot kicks in") \
3021 \
3022 develop(bool, StressNonEntrant, false, \
3023 "Mark nmethods non-entrant at registration") \
3024 \ 3024 \
3025 diagnostic(intx, MallocVerifyInterval, 0, \ 3025 diagnostic(intx, MallocVerifyInterval, 0, \
3026 "If non-zero, verify C heap after every N calls to " \ 3026 "If non-zero, verify C heap after every N calls to " \
3027 "malloc/realloc/free") \ 3027 "malloc/realloc/free") \
3028 \ 3028 \
3287 \ 3287 \
3288 notproduct(bool, ExitOnFullCodeCache, false, \ 3288 notproduct(bool, ExitOnFullCodeCache, false, \
3289 "Exit the VM if we fill the code cache") \ 3289 "Exit the VM if we fill the code cache") \
3290 \ 3290 \
3291 product(bool, UseCodeCacheFlushing, true, \ 3291 product(bool, UseCodeCacheFlushing, true, \
3292 "Attempt to clean the code cache before shutting off compiler") \ 3292 "Remove cold/old nmethods from the code cache") \
3293 \ 3293 \
3294 /* interpreter debugging */ \ 3294 /* interpreter debugging */ \
3295 develop(intx, BinarySwitchThreshold, 5, \ 3295 develop(intx, BinarySwitchThreshold, 5, \
3296 "Minimal number of lookupswitch entries for rewriting to binary " \ 3296 "Minimal number of lookupswitch entries for rewriting to binary " \
3297 "switch") \ 3297 "switch") \