comparison 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
comparison
equal deleted inserted replaced
1405:a197210cb4ae 1406:35069ca331f2
31 #define NOT_TIERED(x) 31 #define NOT_TIERED(x)
32 #endif 32 #endif
33 33
34 #define C1_FLAGS(develop, develop_pd, product, product_pd, notproduct) \ 34 #define C1_FLAGS(develop, develop_pd, product, product_pd, notproduct) \
35 \ 35 \
36 product(bool, UseC1X, true, \
37 "Use C1X instead of C1") \
38 product(intx, TraceC1X, 0, \
39 "Trace level for C1X") \
36 /* Printing */ \ 40 /* Printing */ \
37 notproduct(bool, PrintC1Statistics, false, \ 41 notproduct(bool, PrintC1Statistics, false, \
38 "Print Compiler1 statistics" ) \ 42 "Print Compiler1 statistics" ) \
39 \ 43 \
40 notproduct(bool, PrintInitialBlockList, false, \ 44 notproduct(bool, PrintInitialBlockList, false, \