< prev index next >

src/hotspot/share/runtime/globals.hpp

Print this page




2136           constraint(OnStackReplacePercentageConstraintFunc, AfterErgo)     \
2137                                                                             \
2138   product(intx, InterpreterProfilePercentage, 33,                           \
2139           "NON_TIERED number of method invocations/branches (expressed as " \
2140           "% of CompileThreshold) before profiling in the interpreter")     \
2141           range(0, 100)                                                     \
2142                                                                             \
2143   develop(intx, DesiredMethodLimit,  8000,                                  \
2144           "The desired maximum method size (in bytecodes) after inlining")  \
2145                                                                             \
2146   develop(intx, HugeMethodLimit,  8000,                                     \
2147           "Don't compile methods larger than this if "                      \
2148           "+DontCompileHugeMethods")                                        \
2149                                                                             \
2150   /* Properties for Java libraries  */                                      \
2151                                                                             \
2152   product(uint64_t, MaxDirectMemorySize, 0,                                 \
2153           "Maximum total size of NIO direct-buffer allocations")            \
2154           range(0, max_jlong)                                               \
2155                                                                             \
2156   product(bool, ClassForNameDeferLinking, false,                            \
2157           "Revert to not linking in Class.forName()")                       \
2158                                                                             \
2159   /* Flags used for temporary code during development  */                   \
2160                                                                             \
2161   diagnostic(bool, UseNewCode, false,                                       \
2162           "Testing Only: Use the new version while testing")                \
2163                                                                             \
2164   diagnostic(bool, UseNewCode2, false,                                      \
2165           "Testing Only: Use the new version while testing")                \
2166                                                                             \
2167   diagnostic(bool, UseNewCode3, false,                                      \
2168           "Testing Only: Use the new version while testing")                \
2169                                                                             \
2170   /* flags for performance data collection */                               \
2171                                                                             \
2172   product(bool, UsePerfData, true,                                          \
2173           "Flag to disable jvmstat instrumentation for performance testing "\
2174           "and problem isolation purposes")                                 \
2175                                                                             \
2176   product(bool, PerfDataSaveToFile, false,                                  \
2177           "Save PerfData memory to hsperfdata_<pid> file on exit")          \
2178                                                                             \




2136           constraint(OnStackReplacePercentageConstraintFunc, AfterErgo)     \
2137                                                                             \
2138   product(intx, InterpreterProfilePercentage, 33,                           \
2139           "NON_TIERED number of method invocations/branches (expressed as " \
2140           "% of CompileThreshold) before profiling in the interpreter")     \
2141           range(0, 100)                                                     \
2142                                                                             \
2143   develop(intx, DesiredMethodLimit,  8000,                                  \
2144           "The desired maximum method size (in bytecodes) after inlining")  \
2145                                                                             \
2146   develop(intx, HugeMethodLimit,  8000,                                     \
2147           "Don't compile methods larger than this if "                      \
2148           "+DontCompileHugeMethods")                                        \
2149                                                                             \
2150   /* Properties for Java libraries  */                                      \
2151                                                                             \
2152   product(uint64_t, MaxDirectMemorySize, 0,                                 \
2153           "Maximum total size of NIO direct-buffer allocations")            \
2154           range(0, max_jlong)                                               \
2155                                                                             \



2156   /* Flags used for temporary code during development  */                   \
2157                                                                             \
2158   diagnostic(bool, UseNewCode, false,                                       \
2159           "Testing Only: Use the new version while testing")                \
2160                                                                             \
2161   diagnostic(bool, UseNewCode2, false,                                      \
2162           "Testing Only: Use the new version while testing")                \
2163                                                                             \
2164   diagnostic(bool, UseNewCode3, false,                                      \
2165           "Testing Only: Use the new version while testing")                \
2166                                                                             \
2167   /* flags for performance data collection */                               \
2168                                                                             \
2169   product(bool, UsePerfData, true,                                          \
2170           "Flag to disable jvmstat instrumentation for performance testing "\
2171           "and problem isolation purposes")                                 \
2172                                                                             \
2173   product(bool, PerfDataSaveToFile, false,                                  \
2174           "Save PerfData memory to hsperfdata_<pid> file on exit")          \
2175                                                                             \


< prev index next >