src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File hotspot Sdiff src/share/vm/runtime

src/share/vm/runtime/globals.hpp

Print this page
rev 29185 : Review changes


3661           "Compile if number of method invocations crosses this "           \
3662           "threshold")                                                      \
3663           range(0, max_jint)                                                \
3664                                                                             \
3665   product(intx, Tier3MinInvocationThreshold, 100,                           \
3666           "Minimum invocation to compile at tier 3")                        \
3667           range(0, max_jint)                                                \
3668                                                                             \
3669   product(intx, Tier3CompileThreshold, 2000,                                \
3670           "Threshold at which tier 3 compilation is invoked (invocation "   \
3671           "minimum must be satisfied)")                                     \
3672           range(0, max_jint)                                                \
3673                                                                             \
3674   product(intx, Tier3BackEdgeThreshold,  60000,                             \
3675           "Back edge threshold at which tier 3 OSR compilation is invoked") \
3676           range(0, max_jint)                                                \
3677                                                                             \
3678   product(intx, Tier3AOTInvocationThreshold, 10000,                         \
3679           "Compile if number of method invocations crosses this "           \
3680           "threshold if coming from AOT")                                   \

3681                                                                             \
3682   product(intx, Tier3AOTMinInvocationThreshold, 1000,                       \
3683           "Minimum invocation to compile at tier 3 if coming from AOT")     \

3684                                                                             \
3685   product(intx, Tier3AOTCompileThreshold, 15000,                            \
3686           "Threshold at which tier 3 compilation is invoked (invocation "   \
3687           "minimum must be satisfied) if coming from AOT")                  \

3688                                                                             \
3689   product(intx, Tier3AOTBackEdgeThreshold,  120000,                         \
3690           "Back edge threshold at which tier 3 OSR compilation is invoked " \
3691           "if coming from AOT")                                             \

3692                                                                             \
3693   product(intx, Tier4InvocationThreshold, 5000,                             \
3694           "Compile if number of method invocations crosses this "           \
3695           "threshold")                                                      \
3696           range(0, max_jint)                                                \
3697                                                                             \
3698   product(intx, Tier4MinInvocationThreshold, 600,                           \
3699           "Minimum invocation to compile at tier 4")                        \
3700           range(0, max_jint)                                                \
3701                                                                             \
3702   product(intx, Tier4CompileThreshold, 15000,                               \
3703           "Threshold at which tier 4 compilation is invoked (invocation "   \
3704           "minimum must be satisfied")                                      \
3705           range(0, max_jint)                                                \
3706                                                                             \
3707   product(intx, Tier4BackEdgeThreshold, 40000,                              \
3708           "Back edge threshold at which tier 4 OSR compilation is invoked") \
3709           range(0, max_jint)                                                \
3710                                                                             \
3711   product(intx, Tier3DelayOn, 5,                                            \




3661           "Compile if number of method invocations crosses this "           \
3662           "threshold")                                                      \
3663           range(0, max_jint)                                                \
3664                                                                             \
3665   product(intx, Tier3MinInvocationThreshold, 100,                           \
3666           "Minimum invocation to compile at tier 3")                        \
3667           range(0, max_jint)                                                \
3668                                                                             \
3669   product(intx, Tier3CompileThreshold, 2000,                                \
3670           "Threshold at which tier 3 compilation is invoked (invocation "   \
3671           "minimum must be satisfied)")                                     \
3672           range(0, max_jint)                                                \
3673                                                                             \
3674   product(intx, Tier3BackEdgeThreshold,  60000,                             \
3675           "Back edge threshold at which tier 3 OSR compilation is invoked") \
3676           range(0, max_jint)                                                \
3677                                                                             \
3678   product(intx, Tier3AOTInvocationThreshold, 10000,                         \
3679           "Compile if number of method invocations crosses this "           \
3680           "threshold if coming from AOT")                                   \
3681           range(0, max_jint)                                                \
3682                                                                             \
3683   product(intx, Tier3AOTMinInvocationThreshold, 1000,                       \
3684           "Minimum invocation to compile at tier 3 if coming from AOT")     \
3685           range(0, max_jint)                                                \
3686                                                                             \
3687   product(intx, Tier3AOTCompileThreshold, 15000,                            \
3688           "Threshold at which tier 3 compilation is invoked (invocation "   \
3689           "minimum must be satisfied) if coming from AOT")                  \
3690           range(0, max_jint)                                                \
3691                                                                             \
3692   product(intx, Tier3AOTBackEdgeThreshold,  120000,                         \
3693           "Back edge threshold at which tier 3 OSR compilation is invoked " \
3694           "if coming from AOT")                                             \
3695           range(0, max_jint)                                                \
3696                                                                             \
3697   product(intx, Tier4InvocationThreshold, 5000,                             \
3698           "Compile if number of method invocations crosses this "           \
3699           "threshold")                                                      \
3700           range(0, max_jint)                                                \
3701                                                                             \
3702   product(intx, Tier4MinInvocationThreshold, 600,                           \
3703           "Minimum invocation to compile at tier 4")                        \
3704           range(0, max_jint)                                                \
3705                                                                             \
3706   product(intx, Tier4CompileThreshold, 15000,                               \
3707           "Threshold at which tier 4 compilation is invoked (invocation "   \
3708           "minimum must be satisfied")                                      \
3709           range(0, max_jint)                                                \
3710                                                                             \
3711   product(intx, Tier4BackEdgeThreshold, 40000,                              \
3712           "Back edge threshold at which tier 4 OSR compilation is invoked") \
3713           range(0, max_jint)                                                \
3714                                                                             \
3715   product(intx, Tier3DelayOn, 5,                                            \


src/share/vm/runtime/globals.hpp
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File