src/hotspot/share/runtime/compilationPolicy.hpp
changeset 53194 c4a64760b1b0
parent 53193 184c51e48260
child 53244 9807daeb47c4
--- a/src/hotspot/share/runtime/compilationPolicy.hpp	Tue Jan 08 11:23:19 2019 +0100
+++ b/src/hotspot/share/runtime/compilationPolicy.hpp	Tue Jan 08 16:09:54 2019 +0100
@@ -40,10 +40,6 @@
 
 class CompilationPolicy : public CHeapObj<mtCompiler> {
   static CompilationPolicy* _policy;
-  // Accumulated time
-  static elapsedTimer       _accumulated_time;
-
-  static bool               _in_vm_startup;
 
   // m must be compiled before executing it
   static bool must_be_compiled(const methodHandle& m, int comp_level = CompLevel_all);
@@ -63,9 +59,6 @@
 
   static CompileTask* select_task_helper(CompileQueue* compile_queue);
 
-  // Profiling
-  elapsedTimer* accumulated_time() { return &_accumulated_time; }
-  void print_time() PRODUCT_RETURN;
   // Return initial compile level that is used with Xcomp
   virtual CompLevel initial_compile_level() = 0;
   virtual int compiler_count(CompLevel comp_level) = 0;