src/share/vm/runtime/globals.hpp

changeset 6485
da862781b584
parent 6472
2b8e28fdf503
parent 6106
e74074c34312
child 6490
41b780b43b74
     1.1 --- a/src/share/vm/runtime/globals.hpp	Wed Nov 20 11:08:09 2013 -0800
     1.2 +++ b/src/share/vm/runtime/globals.hpp	Thu Nov 21 12:30:35 2013 -0800
     1.3 @@ -2973,6 +2973,9 @@
     1.4    product(intx, MaxRecursiveInlineLevel, 1,                                 \
     1.5            "maximum number of nested recursive calls that are inlined")      \
     1.6                                                                              \
     1.7 +  develop(intx, MaxForceInlineLevel, 100,                                   \
     1.8 +          "maximum number of nested @ForceInline calls that are inlined")   \
     1.9 +                                                                            \
    1.10    product_pd(intx, InlineSmallCode,                                         \
    1.11            "Only inline already compiled methods if their code size is "     \
    1.12            "less than this")                                                 \
    1.13 @@ -3038,9 +3041,6 @@
    1.14    notproduct(intx, ZombieALotInterval,     5,                               \
    1.15            "Number of exits until ZombieALot kicks in")                      \
    1.16                                                                              \
    1.17 -  develop(bool, StressNonEntrant, false,                                    \
    1.18 -          "Mark nmethods non-entrant at registration")                      \
    1.19 -                                                                            \
    1.20    diagnostic(intx, MallocVerifyInterval,     0,                             \
    1.21            "If non-zero, verify C heap after every N calls to "              \
    1.22            "malloc/realloc/free")                                            \
    1.23 @@ -3309,7 +3309,7 @@
    1.24            "Exit the VM if we fill the code cache")                          \
    1.25                                                                              \
    1.26    product(bool, UseCodeCacheFlushing, true,                                 \
    1.27 -          "Attempt to clean the code cache before shutting off compiler")   \
    1.28 +          "Remove cold/old nmethods from the code cache")                   \
    1.29                                                                              \
    1.30    /* interpreter debugging */                                               \
    1.31    develop(intx, BinarySwitchThreshold, 5,                                   \

mercurial