comparison src/share/vm/c1x/c1x_Compiler.hpp @ 1414:e1a275dbc8cd

Executing a+b with C1X on HotSpot ;-) !
author Thomas Wuerthinger <thomas.wuerthinger@gmail.com>
date Tue, 18 May 2010 21:53:05 +0200
parents 1ecc8f0aad00
children 55ac38887415
comparison
equal deleted inserted replaced
1413:1ecc8f0aad00 1414:e1a275dbc8cd
22 * 22 *
23 */ 23 */
24 24
25 class C1XCompiler : public AbstractCompiler { 25 class C1XCompiler : public AbstractCompiler {
26 26
27 private:
28
29 boolean _initialized;
30
27 public: 31 public:
32
33 C1XCompiler() { _initialized = false; }
28 34
29 virtual const char* name() { return "C1X"; } 35 virtual const char* name() { return "C1X"; }
30 36
31 // Native / OSR not supported 37 // Native / OSR not supported
32 virtual bool supports_native() { return false; } 38 virtual bool supports_native() { return false; }