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

src/share/vm/runtime/globals.hpp

Print this page




2937                                                                             \
2938   develop(uintx, TotalHandleAllocationLimit, 1024,                          \
2939           "Threshold for total handle allocation when "                     \
2940           "+TraceHandleAllocation is used")                                 \
2941                                                                             \
2942   develop(intx, StackPrintLimit, 100,                                       \
2943           "number of stack frames to print in VM-level stack dump")         \
2944                                                                             \
2945   notproduct(intx, MaxElementPrintSize, 256,                                \
2946           "maximum number of elements to print")                            \
2947                                                                             \
2948   notproduct(intx, MaxSubklassPrintSize, 4,                                 \
2949           "maximum number of subklasses to print when printing klass")      \
2950                                                                             \
2951   product(intx, MaxInlineLevel, 9,                                          \
2952           "maximum number of nested calls that are inlined")                \
2953                                                                             \
2954   product(intx, MaxRecursiveInlineLevel, 1,                                 \
2955           "maximum number of nested recursive calls that are inlined")      \
2956                                                                             \



2957   product_pd(intx, InlineSmallCode,                                         \
2958           "Only inline already compiled methods if their code size is "     \
2959           "less than this")                                                 \
2960                                                                             \
2961   product(intx, MaxInlineSize, 35,                                          \
2962           "The maximum bytecode size of a method to be inlined")            \
2963                                                                             \
2964   product_pd(intx, FreqInlineSize,                                          \
2965           "The maximum bytecode size of a frequent method to be inlined")   \
2966                                                                             \
2967   product(intx, MaxTrivialSize, 6,                                          \
2968           "The maximum bytecode size of a trivial method to be inlined")    \
2969                                                                             \
2970   product(intx, MinInliningThreshold, 250,                                  \
2971           "The minimum invocation count a method needs to have to be "      \
2972           "inlined")                                                        \
2973                                                                             \
2974   develop(intx, MethodHistogramCutoff, 100,                                 \
2975           "The cutoff value for method invocation histogram (+CountCalls)") \
2976                                                                             \




2937                                                                             \
2938   develop(uintx, TotalHandleAllocationLimit, 1024,                          \
2939           "Threshold for total handle allocation when "                     \
2940           "+TraceHandleAllocation is used")                                 \
2941                                                                             \
2942   develop(intx, StackPrintLimit, 100,                                       \
2943           "number of stack frames to print in VM-level stack dump")         \
2944                                                                             \
2945   notproduct(intx, MaxElementPrintSize, 256,                                \
2946           "maximum number of elements to print")                            \
2947                                                                             \
2948   notproduct(intx, MaxSubklassPrintSize, 4,                                 \
2949           "maximum number of subklasses to print when printing klass")      \
2950                                                                             \
2951   product(intx, MaxInlineLevel, 9,                                          \
2952           "maximum number of nested calls that are inlined")                \
2953                                                                             \
2954   product(intx, MaxRecursiveInlineLevel, 1,                                 \
2955           "maximum number of nested recursive calls that are inlined")      \
2956                                                                             \
2957   develop(intx, MaxForceInlineLevel, 100,                                   \
2958           "maximum number of nested @ForceInline calls that are inlined")   \
2959                                                                             \
2960   product_pd(intx, InlineSmallCode,                                         \
2961           "Only inline already compiled methods if their code size is "     \
2962           "less than this")                                                 \
2963                                                                             \
2964   product(intx, MaxInlineSize, 35,                                          \
2965           "The maximum bytecode size of a method to be inlined")            \
2966                                                                             \
2967   product_pd(intx, FreqInlineSize,                                          \
2968           "The maximum bytecode size of a frequent method to be inlined")   \
2969                                                                             \
2970   product(intx, MaxTrivialSize, 6,                                          \
2971           "The maximum bytecode size of a trivial method to be inlined")    \
2972                                                                             \
2973   product(intx, MinInliningThreshold, 250,                                  \
2974           "The minimum invocation count a method needs to have to be "      \
2975           "inlined")                                                        \
2976                                                                             \
2977   develop(intx, MethodHistogramCutoff, 100,                                 \
2978           "The cutoff value for method invocation histogram (+CountCalls)") \
2979                                                                             \


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