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

src/share/vm/runtime/globals.hpp

Print this page




2571                                                                             \
2572   develop(bool, TraceLivenessGen, false,                                    \
2573           "Trace the generation of liveness analysis information")          \
2574                                                                             \
2575   notproduct(bool, TraceLivenessQuery, false,                               \
2576           "Trace queries of liveness analysis information")                 \
2577                                                                             \
2578   notproduct(bool, CollectIndexSetStatistics, false,                        \
2579           "Collect information about IndexSets")                            \
2580                                                                             \
2581   develop(bool, UseLoopSafepoints, true,                                    \
2582           "Generate Safepoint nodes in every loop")                         \
2583                                                                             \
2584   develop(intx, FastAllocateSizeLimit, 128*K,                               \
2585           /* Note:  This value is zero mod 1<<13 for a cheap sparc set. */  \
2586           "Inline allocations larger than this in doublewords must go slow")\
2587                                                                             \
2588   product(bool, AggressiveOpts, false,                                      \
2589           "Enable aggressive optimizations - see arguments.cpp")            \
2590                                                                             \
2591   product(bool, UseStringCache, false,                                      \
2592           "Enable String cache capabilities on String.java")                \
2593                                                                             \
2594   /* statistics */                                                          \
2595   develop(bool, CountCompiledCalls, false,                                  \
2596           "counts method invocations")                                      \
2597                                                                             \
2598   notproduct(bool, CountRuntimeCalls, false,                                \
2599           "counts VM runtime calls")                                        \
2600                                                                             \
2601   develop(bool, CountJNICalls, false,                                       \
2602           "counts jni method invocations")                                  \
2603                                                                             \
2604   notproduct(bool, CountJVMCalls, false,                                    \
2605           "counts jvm method invocations")                                  \
2606                                                                             \
2607   notproduct(bool, CountRemovableExceptions, false,                         \
2608           "count exceptions that could be replaced by branches due to "     \
2609           "inlining")                                                       \
2610                                                                             \
2611   notproduct(bool, ICMissHistogram, false,                                  \
2612           "produce histogram of IC misses")                                 \
2613                                                                             \




2571                                                                             \
2572   develop(bool, TraceLivenessGen, false,                                    \
2573           "Trace the generation of liveness analysis information")          \
2574                                                                             \
2575   notproduct(bool, TraceLivenessQuery, false,                               \
2576           "Trace queries of liveness analysis information")                 \
2577                                                                             \
2578   notproduct(bool, CollectIndexSetStatistics, false,                        \
2579           "Collect information about IndexSets")                            \
2580                                                                             \
2581   develop(bool, UseLoopSafepoints, true,                                    \
2582           "Generate Safepoint nodes in every loop")                         \
2583                                                                             \
2584   develop(intx, FastAllocateSizeLimit, 128*K,                               \
2585           /* Note:  This value is zero mod 1<<13 for a cheap sparc set. */  \
2586           "Inline allocations larger than this in doublewords must go slow")\
2587                                                                             \
2588   product(bool, AggressiveOpts, false,                                      \
2589           "Enable aggressive optimizations - see arguments.cpp")            \
2590                                                                             \



2591   /* statistics */                                                          \
2592   develop(bool, CountCompiledCalls, false,                                  \
2593           "counts method invocations")                                      \
2594                                                                             \
2595   notproduct(bool, CountRuntimeCalls, false,                                \
2596           "counts VM runtime calls")                                        \
2597                                                                             \
2598   develop(bool, CountJNICalls, false,                                       \
2599           "counts jni method invocations")                                  \
2600                                                                             \
2601   notproduct(bool, CountJVMCalls, false,                                    \
2602           "counts jvm method invocations")                                  \
2603                                                                             \
2604   notproduct(bool, CountRemovableExceptions, false,                         \
2605           "count exceptions that could be replaced by branches due to "     \
2606           "inlining")                                                       \
2607                                                                             \
2608   notproduct(bool, ICMissHistogram, false,                                  \
2609           "produce histogram of IC misses")                                 \
2610                                                                             \


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