1 /*
   2  * Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 
  25 #ifndef SHARE_VM_COMPILER_COMPILEBROKER_HPP
  26 #define SHARE_VM_COMPILER_COMPILEBROKER_HPP
  27 
  28 #include "ci/compilerInterface.hpp"
  29 #include "compiler/abstractCompiler.hpp"
  30 #include "compiler/compileTask.hpp"
  31 #include "compiler/compilerDirectives.hpp"
  32 #include "runtime/perfData.hpp"
  33 #include "trace/tracing.hpp"
  34 #include "utilities/stack.hpp"
  35 #if INCLUDE_JVMCI
  36 #include "jvmci/jvmciCompiler.hpp"
  37 #endif
  38 
  39 class nmethod;
  40 class nmethodLocker;
  41 
  42 // CompilerCounters
  43 //
  44 // Per Compiler Performance Counters.
  45 //
  46 class CompilerCounters : public CHeapObj<mtCompiler> {
  47 
  48   public:
  49     enum {
  50       cmname_buffer_length = 160
  51     };
  52 
  53   private:
  54 
  55     char _current_method[cmname_buffer_length];
  56     int  _compile_type;
  57 
  58   public:
  59     CompilerCounters();
  60 
  61     // these methods should be called in a thread safe context
  62 
  63     void set_current_method(const char* method) {
  64       strncpy(_current_method, method, (size_t)cmname_buffer_length-1);
  65       _current_method[cmname_buffer_length-1] = '\0';
  66     }
  67 
  68     char* current_method()                  { return _current_method; }
  69 
  70     void set_compile_type(int compile_type) {
  71       _compile_type = compile_type;
  72     }
  73 
  74     int compile_type()                       { return _compile_type; }
  75 
  76 };
  77 
  78 // CompileQueue
  79 //
  80 // A list of CompileTasks.
  81 class CompileQueue : public CHeapObj<mtCompiler> {
  82  private:
  83   const char* _name;
  84 
  85   CompileTask* _first;
  86   CompileTask* _last;
  87 
  88   CompileTask* _first_stale;
  89 
  90   int _size;
  91 
  92   void purge_stale_tasks();
  93  public:
  94   CompileQueue(const char* name) {
  95     _name = name;
  96     _first = NULL;
  97     _last = NULL;
  98     _size = 0;
  99     _first_stale = NULL;
 100   }
 101 
 102   const char*  name() const                      { return _name; }
 103 
 104   void         add(CompileTask* task);
 105   void         remove(CompileTask* task);
 106   void         remove_and_mark_stale(CompileTask* task);
 107   CompileTask* first()                           { return _first; }
 108   CompileTask* last()                            { return _last;  }
 109 
 110   CompileTask* get();
 111 
 112   bool         is_empty() const                  { return _first == NULL; }
 113   int          size()     const                  { return _size;          }
 114 
 115 
 116   // Redefine Classes support
 117   void mark_on_stack();
 118   void free_all();
 119   void print_tty();
 120   void print(outputStream* st = tty);
 121 
 122   ~CompileQueue() {
 123     assert (is_empty(), " Compile Queue must be empty");
 124   }
 125 };
 126 
 127 // CompileTaskWrapper
 128 //
 129 // Assign this task to the current thread.  Deallocate the task
 130 // when the compilation is complete.
 131 class CompileTaskWrapper : StackObj {
 132 public:
 133   CompileTaskWrapper(CompileTask* task);
 134   ~CompileTaskWrapper();
 135 };
 136 
 137 // Compilation
 138 //
 139 // The broker for all compilation requests.
 140 class CompileBroker: AllStatic {
 141  friend class Threads;
 142  friend class CompileTaskWrapper;
 143 
 144  public:
 145   enum {
 146     name_buffer_length = 100
 147   };
 148 
 149   // Compile type Information for print_last_compile() and CompilerCounters
 150   enum { no_compile, normal_compile, osr_compile, native_compile };
 151   static int assign_compile_id (const methodHandle& method, int osr_bci);
 152 
 153 
 154  private:
 155   static bool _initialized;
 156   static volatile bool _should_block;
 157 
 158   // This flag can be used to stop compilation or turn it back on
 159   static volatile jint _should_compile_new_jobs;
 160 
 161   // The installed compiler(s)
 162   static AbstractCompiler* _compilers[2];
 163 
 164   // These counters are used for assigning id's to each compilation
 165   static volatile jint _compilation_id;
 166   static volatile jint _osr_compilation_id;
 167 
 168   static int  _last_compile_type;
 169   static int  _last_compile_level;
 170   static char _last_method_compiled[name_buffer_length];
 171 
 172   static CompileQueue* _c2_compile_queue;
 173   static CompileQueue* _c1_compile_queue;
 174 
 175   // performance counters
 176   static PerfCounter* _perf_total_compilation;
 177   static PerfCounter* _perf_native_compilation;
 178   static PerfCounter* _perf_osr_compilation;
 179   static PerfCounter* _perf_standard_compilation;
 180 
 181   static PerfCounter* _perf_total_bailout_count;
 182   static PerfCounter* _perf_total_invalidated_count;
 183   static PerfCounter* _perf_total_compile_count;
 184   static PerfCounter* _perf_total_native_compile_count;
 185   static PerfCounter* _perf_total_osr_compile_count;
 186   static PerfCounter* _perf_total_standard_compile_count;
 187 
 188   static PerfCounter* _perf_sum_osr_bytes_compiled;
 189   static PerfCounter* _perf_sum_standard_bytes_compiled;
 190   static PerfCounter* _perf_sum_nmethod_size;
 191   static PerfCounter* _perf_sum_nmethod_code_size;
 192 
 193   static PerfStringVariable* _perf_last_method;
 194   static PerfStringVariable* _perf_last_failed_method;
 195   static PerfStringVariable* _perf_last_invalidated_method;
 196   static PerfVariable*       _perf_last_compile_type;
 197   static PerfVariable*       _perf_last_compile_size;
 198   static PerfVariable*       _perf_last_failed_type;
 199   static PerfVariable*       _perf_last_invalidated_type;
 200 
 201   // Timers and counters for generating statistics
 202   static elapsedTimer _t_total_compilation;
 203   static elapsedTimer _t_osr_compilation;
 204   static elapsedTimer _t_standard_compilation;
 205   static elapsedTimer _t_invalidated_compilation;
 206   static elapsedTimer _t_bailedout_compilation;
 207 
 208   static int _total_compile_count;
 209   static int _total_bailout_count;
 210   static int _total_invalidated_count;
 211   static int _total_native_compile_count;
 212   static int _total_osr_compile_count;
 213   static int _total_standard_compile_count;
 214   static int _sum_osr_bytes_compiled;
 215   static int _sum_standard_bytes_compiled;
 216   static int _sum_nmethod_size;
 217   static int _sum_nmethod_code_size;
 218   static long _peak_compilation_time;
 219 
 220   static volatile int _print_compilation_warning;
 221 
 222   static JavaThread* make_thread(const char* name, CompileQueue* queue, CompilerCounters* counters, AbstractCompiler* comp, bool compiler_thread, TRAPS);
 223   static void init_compiler_sweeper_threads(int c1_compiler_count, int c2_compiler_count);
 224   static bool compilation_is_complete  (const methodHandle& method, int osr_bci, int comp_level);
 225   static bool compilation_is_prohibited(const methodHandle& method, int osr_bci, int comp_level, bool excluded);
 226   static void preload_classes          (const methodHandle& method, TRAPS);
 227 
 228   static CompileTask* create_compile_task(CompileQueue*       queue,
 229                                           int                 compile_id,
 230                                           const methodHandle& method,
 231                                           int                 osr_bci,
 232                                           int                 comp_level,
 233                                           const methodHandle& hot_method,
 234                                           int                 hot_count,
 235                                           CompileTask::CompileReason compile_reason,
 236                                           bool                blocking);
 237   static void wait_for_completion(CompileTask* task);
 238 #if INCLUDE_JVMCI
 239   static bool wait_for_jvmci_completion(JVMCICompiler* comp, CompileTask* task, JavaThread* thread);
 240 #endif
 241 
 242   static void invoke_compiler_on_method(CompileTask* task);
 243   static void post_compile(CompilerThread* thread, CompileTask* task, EventCompilation& event, bool success, ciEnv* ci_env);
 244   static void set_last_compile(CompilerThread *thread, const methodHandle& method, bool is_osr, int comp_level);
 245   static void push_jni_handle_block();
 246   static void pop_jni_handle_block();
 247   static void collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task);
 248 
 249   static void compile_method_base(const methodHandle& method,
 250                                   int osr_bci,
 251                                   int comp_level,
 252                                   const methodHandle& hot_method,
 253                                   int hot_count,
 254                                   CompileTask::CompileReason compile_reason,
 255                                   bool blocking,
 256                                   Thread* thread);
 257 
 258   static CompileQueue* compile_queue(int comp_level);
 259   static bool init_compiler_runtime();
 260   static void shutdown_compiler_runtime(AbstractCompiler* comp, CompilerThread* thread);
 261 
 262 public:
 263 
 264   static DirectivesStack* dirstack();
 265   static void set_dirstack(DirectivesStack* stack);
 266 
 267   enum {
 268     // The entry bci used for non-OSR compilations.
 269     standard_entry_bci = InvocationEntryBci
 270   };
 271 
 272   static AbstractCompiler* compiler(int comp_level) {
 273     if (is_c2_compile(comp_level)) return _compilers[1]; // C2
 274     if (is_c1_compile(comp_level)) return _compilers[0]; // C1
 275     return NULL;
 276   }
 277 
 278   static bool compilation_is_in_queue(const methodHandle& method);
 279   static void print_compile_queues(outputStream* st);
 280   static void print_directives(outputStream* st);
 281   static int queue_size(int comp_level) {
 282     CompileQueue *q = compile_queue(comp_level);
 283     return q != NULL ? q->size() : 0;
 284   }
 285   static void compilation_init(TRAPS);
 286   static void init_compiler_thread_log();
 287   static nmethod* compile_method(const methodHandle& method,
 288                                  int osr_bci,
 289                                  int comp_level,
 290                                  const methodHandle& hot_method,
 291                                  int hot_count,
 292                                  CompileTask::CompileReason compile_reason,
 293                                  Thread* thread);
 294 
 295   static nmethod* compile_method(const methodHandle& method,
 296                                    int osr_bci,
 297                                    int comp_level,
 298                                    const methodHandle& hot_method,
 299                                    int hot_count,
 300                                    CompileTask::CompileReason compile_reason,
 301                                    DirectiveSet* directive,
 302                                    Thread* thread);
 303 
 304   // Acquire any needed locks and assign a compile id
 305   static uint assign_compile_id_unlocked(Thread* thread, const methodHandle& method, int osr_bci);
 306 
 307   static void compiler_thread_loop();
 308   static uint get_compilation_id() { return _compilation_id; }
 309 
 310   // Set _should_block.
 311   // Call this from the VM, with Threads_lock held and a safepoint requested.
 312   static void set_should_block();
 313 
 314   // Call this from the compiler at convenient points, to poll for _should_block.
 315   static void maybe_block();
 316 
 317   enum CompilerActivity {
 318     // Flags for toggling compiler activity
 319     stop_compilation     = 0,
 320     run_compilation      = 1,
 321     shutdown_compilation = 2
 322   };
 323 
 324   static jint get_compilation_activity_mode() { return _should_compile_new_jobs; }
 325   static bool should_compile_new_jobs() { return UseCompiler && (_should_compile_new_jobs == run_compilation); }
 326   static bool set_should_compile_new_jobs(jint new_state) {
 327     // Return success if the current caller set it
 328     jint old = Atomic::cmpxchg(new_state, &_should_compile_new_jobs, 1-new_state);
 329     return (old == (1-new_state));
 330   }
 331 
 332   static void disable_compilation_forever() {
 333     UseCompiler               = false;
 334     AlwaysCompileLoopMethods  = false;
 335     Atomic::xchg(jint(shutdown_compilation), &_should_compile_new_jobs);
 336   }
 337 
 338   static bool is_compilation_disabled_forever() {
 339     return _should_compile_new_jobs == shutdown_compilation;
 340   }
 341   static void handle_full_code_cache(int code_blob_type);
 342   // Ensures that warning is only printed once.
 343   static bool should_print_compiler_warning() {
 344     jint old = Atomic::cmpxchg(1, &_print_compilation_warning, 0);
 345     return old == 0;
 346   }
 347   // Return total compilation ticks
 348   static jlong total_compilation_ticks() {
 349     return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0;
 350   }
 351 
 352   // Redefine Classes support
 353   static void mark_on_stack();
 354 
 355 #if INCLUDE_JVMCI
 356   // Print curent compilation time stats for a given compiler
 357   static void print_times(AbstractCompiler* comp);
 358 #endif
 359 
 360   // Print a detailed accounting of compilation time
 361   static void print_times(bool per_compiler = true, bool aggregate = true);
 362 
 363   // Debugging output for failure
 364   static void print_last_compile();
 365 
 366   // compiler name for debugging
 367   static const char* compiler_name(int comp_level);
 368 
 369   static int get_total_compile_count() {          return _total_compile_count; }
 370   static int get_total_bailout_count() {          return _total_bailout_count; }
 371   static int get_total_invalidated_count() {      return _total_invalidated_count; }
 372   static int get_total_native_compile_count() {   return _total_native_compile_count; }
 373   static int get_total_osr_compile_count() {      return _total_osr_compile_count; }
 374   static int get_total_standard_compile_count() { return _total_standard_compile_count; }
 375   static int get_sum_osr_bytes_compiled() {       return _sum_osr_bytes_compiled; }
 376   static int get_sum_standard_bytes_compiled() {  return _sum_standard_bytes_compiled; }
 377   static int get_sum_nmethod_size() {             return _sum_nmethod_size;}
 378   static int get_sum_nmethod_code_size() {        return _sum_nmethod_code_size; }
 379   static long get_peak_compilation_time() {       return _peak_compilation_time; }
 380   static long get_total_compilation_time() {      return _t_total_compilation.milliseconds(); }
 381 
 382   // Log that compilation profiling is skipped because metaspace is full.
 383   static void log_metaspace_failure();
 384 
 385   // 8198691: CodeHeap State Analytics.
 386   static void print_info(outputStream *out);
 387   static void print_heapinfo(outputStream *out, const char* function, const char* granularity );
 388 };
 389 
 390 #endif // SHARE_VM_COMPILER_COMPILEBROKER_HPP