src/share/vm/runtime/globals.hpp

changeset 6503
a9becfeecd1b
parent 6492
1174c8abbdb6
parent 6220
7b9127b17b7a
child 6506
f040cf9fc9c0
     1.1 --- a/src/share/vm/runtime/globals.hpp	Thu Jan 16 14:25:51 2014 +0100
     1.2 +++ b/src/share/vm/runtime/globals.hpp	Wed Jan 22 17:42:23 2014 -0800
     1.3 @@ -2551,6 +2551,9 @@
     1.4    develop(bool, PrintMethodFlushing, false,                                 \
     1.5            "Print the nmethods being flushed")                               \
     1.6                                                                              \
     1.7 +  diagnostic(bool, PrintMethodFlushingStatistics, false,                    \
     1.8 +          "print statistics about method flushing")                         \
     1.9 +                                                                            \
    1.10    develop(bool, UseRelocIndex, false,                                       \
    1.11            "Use an index to speed random access to relocations")             \
    1.12                                                                              \
    1.13 @@ -3332,21 +3335,21 @@
    1.14    develop(intx, CIStart, 0,                                                 \
    1.15            "The id of the first compilation to permit")                      \
    1.16                                                                              \
    1.17 -  develop(intx, CIStop,    -1,                                              \
    1.18 +  develop(intx, CIStop, max_jint,                                           \
    1.19            "The id of the last compilation to permit")                       \
    1.20                                                                              \
    1.21 -  develop(intx, CIStartOSR,     0,                                          \
    1.22 +  develop(intx, CIStartOSR, 0,                                              \
    1.23            "The id of the first osr compilation to permit "                  \
    1.24            "(CICountOSR must be on)")                                        \
    1.25                                                                              \
    1.26 -  develop(intx, CIStopOSR,    -1,                                           \
    1.27 +  develop(intx, CIStopOSR, max_jint,                                        \
    1.28            "The id of the last osr compilation to permit "                   \
    1.29            "(CICountOSR must be on)")                                        \
    1.30                                                                              \
    1.31 -  develop(intx, CIBreakAtOSR,    -1,                                        \
    1.32 +  develop(intx, CIBreakAtOSR, -1,                                           \
    1.33            "The id of osr compilation to break at")                          \
    1.34                                                                              \
    1.35 -  develop(intx, CIBreakAt,    -1,                                           \
    1.36 +  develop(intx, CIBreakAt, -1,                                              \
    1.37            "The id of compilation to break at")                              \
    1.38                                                                              \
    1.39    product(ccstrlist, CompileOnly, "",                                       \
    1.40 @@ -3365,6 +3368,10 @@
    1.41            "File containing compilation replay information"                  \
    1.42            "[default: ./replay_pid%p.log] (%p replaced with pid)")           \
    1.43                                                                              \
    1.44 +   product(ccstr, InlineDataFile, NULL,                                     \
    1.45 +          "File containing inlining replay information"                     \
    1.46 +          "[default: ./inline_pid%p.log] (%p replaced with pid)")           \
    1.47 +                                                                            \
    1.48    develop(intx, ReplaySuppressInitializers, 2,                              \
    1.49            "Control handling of class initialization during replay: "        \
    1.50            "0 - don't do anything special; "                                 \

mercurial