diff src/share/vm/c1/c1_globals.hpp @ 1406:35069ca331f2

Hooked C1XCompiler class into the system. Two new flags: -XX:+UseC1X makes sure that the C1X compiler is used instead of C1 -XX:TraceC1X=0 sets the trace level for C1X (value between 0=no output and 5=verbose)
author Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
date Tue, 11 May 2010 18:19:17 +0200
parents b4776199210f
children 55ac38887415
line wrap: on
line diff
--- a/src/share/vm/c1/c1_globals.hpp	Tue May 11 14:46:49 2010 +0200
+++ b/src/share/vm/c1/c1_globals.hpp	Tue May 11 18:19:17 2010 +0200
@@ -33,6 +33,10 @@
 
 #define C1_FLAGS(develop, develop_pd, product, product_pd, notproduct)      \
                                                                             \
+  product(bool, UseC1X, true,						                        \
+          "Use C1X instead of C1")                                          \
+  product(intx, TraceC1X, 0,						                        \
+          "Trace level for C1X")                                            \
   /* Printing */                                                            \
   notproduct(bool, PrintC1Statistics, false,                                \
           "Print Compiler1 statistics" )                                    \