hotspot/src/share/vm/c1/c1_Compiler.hpp
changeset 20707 b3b658c6d1f8
parent 17623 6295813086d0
child 22234 da823d78ad65
--- a/hotspot/src/share/vm/c1/c1_Compiler.hpp	Fri Oct 11 10:14:02 2013 -0700
+++ b/hotspot/src/share/vm/c1/c1_Compiler.hpp	Thu Oct 10 15:44:12 2013 +0200
@@ -30,11 +30,9 @@
 // There is one instance of the Compiler per CompilerThread.
 
 class Compiler: public AbstractCompiler {
-
  private:
-
- // Tracks whether runtime has been initialized
- static volatile int _runtimes;
+  static void init_c1_runtime();
+  BufferBlob* init_buffer_blob();
 
  public:
   // Creation
@@ -46,19 +44,12 @@
 
   virtual bool is_c1()                           { return true; };
 
-  BufferBlob* get_buffer_blob(ciEnv* env);
-
   // Missing feature tests
   virtual bool supports_native()                 { return true; }
   virtual bool supports_osr   ()                 { return true; }
 
-  // Customization
-  virtual bool needs_adapters         ()         { return false; }
-  virtual bool needs_stubs            ()         { return false; }
-
   // Initialization
   virtual void initialize();
-  static  void initialize_all();
 
   // Compilation entry point for methods
   virtual void compile_method(ciEnv* env, ciMethod* target, int entry_bci);