mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
Merge
This commit is contained in:
commit
82ce2c602b
56 changed files with 1496 additions and 440 deletions
|
@ -742,6 +742,9 @@ class CommandLineFlags {
|
|||
diagnostic(bool, PrintAdapterHandlers, false, \
|
||||
"Print code generated for i2c/c2i adapters") \
|
||||
\
|
||||
develop(bool, VerifyAdapterSharing, false, \
|
||||
"Verify that the code for shared adapters is the equivalent") \
|
||||
\
|
||||
diagnostic(bool, PrintAssembly, false, \
|
||||
"Print assembly code (using external disassembler.so)") \
|
||||
\
|
||||
|
@ -2864,7 +2867,7 @@ class CommandLineFlags {
|
|||
product(intx, PerMethodRecompilationCutoff, 400, \
|
||||
"After recompiling N times, stay in the interpreter (-1=>'Inf')") \
|
||||
\
|
||||
product(intx, PerBytecodeRecompilationCutoff, 100, \
|
||||
product(intx, PerBytecodeRecompilationCutoff, 200, \
|
||||
"Per-BCI limit on repeated recompilation (-1=>'Inf')") \
|
||||
\
|
||||
product(intx, PerMethodTrapLimit, 100, \
|
||||
|
@ -3117,6 +3120,15 @@ class CommandLineFlags {
|
|||
notproduct(bool, ExitOnFullCodeCache, false, \
|
||||
"Exit the VM if we fill the code cache.") \
|
||||
\
|
||||
product(bool, UseCodeCacheFlushing, false, \
|
||||
"Attempt to clean the code cache before shutting off compiler") \
|
||||
\
|
||||
product(intx, MinCodeCacheFlushingInterval, 30, \
|
||||
"Min number of seconds between code cache cleaning sessions") \
|
||||
\
|
||||
product(uintx, CodeCacheFlushingMinimumFreeSpace, 1500*K, \
|
||||
"When less than X space left, start code cache cleaning") \
|
||||
\
|
||||
/* interpreter debugging */ \
|
||||
develop(intx, BinarySwitchThreshold, 5, \
|
||||
"Minimal number of lookupswitch entries for rewriting to binary " \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue