src/share/vm/opto/c2compiler.hpp

Print this page

        

*** 26,53 **** #define SHARE_VM_OPTO_C2COMPILER_HPP #include "compiler/abstractCompiler.hpp" class C2Compiler : public AbstractCompiler { ! private: ! ! static void initialize_runtime(); public: // Name const char *name() { return "C2"; } - static volatile int _runtimes; - #ifdef TIERED virtual bool is_c2() { return true; }; #endif // TIERED - // Customization - bool needs_adapters () { return true; } - bool needs_stubs () { return true; } - void initialize(); // Compilation entry point for methods void compile_method(ciEnv* env, ciMethod* target, --- 26,46 ---- #define SHARE_VM_OPTO_C2COMPILER_HPP #include "compiler/abstractCompiler.hpp" class C2Compiler : public AbstractCompiler { ! private: ! static bool init_c2_runtime(); public: // Name const char *name() { return "C2"; } #ifdef TIERED virtual bool is_c2() { return true; }; #endif // TIERED void initialize(); // Compilation entry point for methods void compile_method(ciEnv* env, ciMethod* target,