comparison src/share/vm/runtime/globals.hpp @ 1211:c1f1137b3575

Merge
author twisti
date Thu, 04 Feb 2010 03:34:05 -0800
parents f3345b7b01b4 74c848d437ab
children 1c72304f1885 8911d8c0596f
comparison
equal deleted inserted replaced
1196:f3345b7b01b4 1211:c1f1137b3575
740 "Print additional statistics per compilation") \ 740 "Print additional statistics per compilation") \
741 \ 741 \
742 diagnostic(bool, PrintAdapterHandlers, false, \ 742 diagnostic(bool, PrintAdapterHandlers, false, \
743 "Print code generated for i2c/c2i adapters") \ 743 "Print code generated for i2c/c2i adapters") \
744 \ 744 \
745 develop(bool, VerifyAdapterSharing, false, \
746 "Verify that the code for shared adapters is the equivalent") \
747 \
745 diagnostic(bool, PrintAssembly, false, \ 748 diagnostic(bool, PrintAssembly, false, \
746 "Print assembly code (using external disassembler.so)") \ 749 "Print assembly code (using external disassembler.so)") \
747 \ 750 \
748 diagnostic(ccstr, PrintAssemblyOptions, NULL, \ 751 diagnostic(ccstr, PrintAssemblyOptions, NULL, \
749 "Options string passed to disassembler.so") \ 752 "Options string passed to disassembler.so") \
2862 "number of return bci's to record in ret profile") \ 2865 "number of return bci's to record in ret profile") \
2863 \ 2866 \
2864 product(intx, PerMethodRecompilationCutoff, 400, \ 2867 product(intx, PerMethodRecompilationCutoff, 400, \
2865 "After recompiling N times, stay in the interpreter (-1=>'Inf')") \ 2868 "After recompiling N times, stay in the interpreter (-1=>'Inf')") \
2866 \ 2869 \
2867 product(intx, PerBytecodeRecompilationCutoff, 100, \ 2870 product(intx, PerBytecodeRecompilationCutoff, 200, \
2868 "Per-BCI limit on repeated recompilation (-1=>'Inf')") \ 2871 "Per-BCI limit on repeated recompilation (-1=>'Inf')") \
2869 \ 2872 \
2870 product(intx, PerMethodTrapLimit, 100, \ 2873 product(intx, PerMethodTrapLimit, 100, \
2871 "Limit on traps (of one kind) in a method (includes inlines)") \ 2874 "Limit on traps (of one kind) in a method (includes inlines)") \
2872 \ 2875 \
3114 develop_pd(uintx, CodeCacheMinBlockLength, \ 3117 develop_pd(uintx, CodeCacheMinBlockLength, \
3115 "Minimum number of segments in a code cache block.") \ 3118 "Minimum number of segments in a code cache block.") \
3116 \ 3119 \
3117 notproduct(bool, ExitOnFullCodeCache, false, \ 3120 notproduct(bool, ExitOnFullCodeCache, false, \
3118 "Exit the VM if we fill the code cache.") \ 3121 "Exit the VM if we fill the code cache.") \
3122 \
3123 product(bool, UseCodeCacheFlushing, false, \
3124 "Attempt to clean the code cache before shutting off compiler") \
3125 \
3126 product(intx, MinCodeCacheFlushingInterval, 30, \
3127 "Min number of seconds between code cache cleaning sessions") \
3128 \
3129 product(uintx, CodeCacheFlushingMinimumFreeSpace, 1500*K, \
3130 "When less than X space left, start code cache cleaning") \
3119 \ 3131 \
3120 /* interpreter debugging */ \ 3132 /* interpreter debugging */ \
3121 develop(intx, BinarySwitchThreshold, 5, \ 3133 develop(intx, BinarySwitchThreshold, 5, \
3122 "Minimal number of lookupswitch entries for rewriting to binary " \ 3134 "Minimal number of lookupswitch entries for rewriting to binary " \
3123 "switch") \ 3135 "switch") \