comparison src/share/vm/compiler/abstractCompiler.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 a61af66fc99e
children 2d26b0046e0d
comparison
equal deleted inserted replaced
1405:a197210cb4ae 1406:35069ca331f2
57 bool is_c1 () { return false; } 57 bool is_c1 () { return false; }
58 bool is_c2 () { return true; } 58 bool is_c2 () { return true; }
59 #endif // COMPILER2 59 #endif // COMPILER2
60 #endif // TIERED 60 #endif // TIERED
61 61
62 // Customization
63 virtual bool needs_stubs () = 0;
64
65 void mark_initialized() { _is_initialized = true; } 62 void mark_initialized() { _is_initialized = true; }
66 bool is_initialized() { return _is_initialized; } 63 bool is_initialized() { return _is_initialized; }
67 64
68 virtual void initialize() = 0; 65 virtual void initialize() = 0;
69 66