mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 19:14:38 +02:00
6667042: PrintAssembly option does not work without special plugin
Remove old private plugin interface, simplify, rework old plugin to use unchanged Gnu sources Reviewed-by: kvn, rasbold
This commit is contained in:
parent
0530e0d854
commit
0d27a8639f
43 changed files with 1675 additions and 629 deletions
|
@ -668,16 +668,19 @@ class CommandLineFlags {
|
|||
notproduct(bool, PrintCompilation2, false, \
|
||||
"Print additional statistics per compilation") \
|
||||
\
|
||||
notproduct(bool, PrintAdapterHandlers, false, \
|
||||
diagnostic(bool, PrintAdapterHandlers, false, \
|
||||
"Print code generated for i2c/c2i adapters") \
|
||||
\
|
||||
develop(bool, PrintAssembly, false, \
|
||||
"Print assembly code") \
|
||||
diagnostic(bool, PrintAssembly, false, \
|
||||
"Print assembly code (using external disassembler.so)") \
|
||||
\
|
||||
develop(bool, PrintNMethods, false, \
|
||||
diagnostic(ccstr, PrintAssemblyOptions, false, \
|
||||
"Options string passed to disassembler.so") \
|
||||
\
|
||||
diagnostic(bool, PrintNMethods, false, \
|
||||
"Print assembly code for nmethods when generated") \
|
||||
\
|
||||
develop(bool, PrintNativeNMethods, false, \
|
||||
diagnostic(bool, PrintNativeNMethods, false, \
|
||||
"Print assembly code for native nmethods when generated") \
|
||||
\
|
||||
develop(bool, PrintDebugInfo, false, \
|
||||
|
@ -702,7 +705,7 @@ class CommandLineFlags {
|
|||
develop(bool, PrintCodeCache2, false, \
|
||||
"Print detailed info on the compiled_code cache when exiting") \
|
||||
\
|
||||
develop(bool, PrintStubCode, false, \
|
||||
diagnostic(bool, PrintStubCode, false, \
|
||||
"Print generated stub code") \
|
||||
\
|
||||
product(bool, StackTraceInThrowable, true, \
|
||||
|
@ -2250,7 +2253,7 @@ class CommandLineFlags {
|
|||
product_pd(bool, RewriteFrequentPairs, \
|
||||
"Rewrite frequently used bytecode pairs into a single bytecode") \
|
||||
\
|
||||
product(bool, PrintInterpreter, false, \
|
||||
diagnostic(bool, PrintInterpreter, false, \
|
||||
"Prints the generated interpreter code") \
|
||||
\
|
||||
product(bool, UseInterpreter, true, \
|
||||
|
@ -2300,7 +2303,7 @@ class CommandLineFlags {
|
|||
develop(bool, PrintBytecodePairHistogram, false, \
|
||||
"Print histogram of the executed bytecode pairs") \
|
||||
\
|
||||
develop(bool, PrintSignatureHandlers, false, \
|
||||
diagnostic(bool, PrintSignatureHandlers, false, \
|
||||
"Print code generated for native method signature handlers") \
|
||||
\
|
||||
develop(bool, VerifyOops, false, \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue