src/share/vm/runtime/globals.hpp

changeset 4267
bd7a7ce2e264
parent 4246
ec204374e626
child 4280
80e866b1d053
     1.1 --- a/src/share/vm/runtime/globals.hpp	Fri Nov 09 08:36:17 2012 -0800
     1.2 +++ b/src/share/vm/runtime/globals.hpp	Mon Nov 12 14:03:53 2012 -0800
     1.3 @@ -3189,6 +3189,26 @@
     1.4    product(ccstrlist, CompileCommand, "",                                    \
     1.5            "Prepend to .hotspot_compiler; e.g. log,java/lang/String.<init>") \
     1.6                                                                              \
     1.7 +  develop(bool, ReplayCompiles, false,                                      \
     1.8 +          "Enable replay of compilations from ReplayDataFile")              \
     1.9 +                                                                            \
    1.10 +  develop(ccstr, ReplayDataFile, "replay.txt",                              \
    1.11 +          "file containing compilation replay information")                 \
    1.12 +                                                                            \
    1.13 +  develop(intx, ReplaySuppressInitializers, 2,                              \
    1.14 +          "Controls handling of class initialization during replay"         \
    1.15 +          "0 - don't do anything special"                                   \
    1.16 +          "1 - treat all class initializers as empty"                       \
    1.17 +          "2 - treat class initializers for application classes as empty"   \
    1.18 +          "3 - allow all class initializers to run during bootstrap but"    \
    1.19 +          "    pretend they are empty after starting replay")               \
    1.20 +                                                                            \
    1.21 +  develop(bool, ReplayIgnoreInitErrors, false,                              \
    1.22 +          "Ignore exceptions thrown during initialization for replay")      \
    1.23 +                                                                            \
    1.24 +  develop(bool, DumpReplayDataOnError, true,                                \
    1.25 +          "record replay data for crashing compiler threads")               \
    1.26 +                                                                            \
    1.27    product(bool, CICompilerCountPerCPU, false,                               \
    1.28            "1 compiler thread for log(N CPUs)")                              \
    1.29                                                                              \

mercurial