1 /*
2  * Copyright (c) 1999, 2019, 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_COMPILER_COMPILEBROKER_HPP
26 #define SHARE_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/atomic.hpp"
33 #include "runtime/perfData.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 
set_current_method(const char * method)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 
current_method()68     char* current_method()                  { return _current_method; }
69 
set_compile_type(int compile_type)70     void set_compile_type(int compile_type) {
71       _compile_type = compile_type;
72     }
73 
compile_type()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:
CompileQueue(const char * name)94   CompileQueue(const char* name) {
95     _name = name;
96     _first = NULL;
97     _last = NULL;
98     _size = 0;
99     _first_stale = NULL;
100   }
101 
name() const102   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);
first()107   CompileTask* first()                           { return _first; }
last()108   CompileTask* last()                            { return _last;  }
109 
110   CompileTask* get();
111 
is_empty() const112   bool         is_empty() const                  { return _first == NULL; }
size() const113   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 
~CompileQueue()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   // The maximum numbers of compiler threads to be determined during startup.
165   static int _c1_count, _c2_count;
166 
167   // An array of compiler thread Java objects
168   static jobject *_compiler1_objects, *_compiler2_objects;
169 
170   // An array of compiler logs
171   static CompileLog **_compiler1_logs, **_compiler2_logs;
172 
173   // These counters are used for assigning id's to each compilation
174   static volatile jint _compilation_id;
175   static volatile jint _osr_compilation_id;
176 
177   static CompileQueue* _c2_compile_queue;
178   static CompileQueue* _c1_compile_queue;
179 
180   // performance counters
181   static PerfCounter* _perf_total_compilation;
182   static PerfCounter* _perf_native_compilation;
183   static PerfCounter* _perf_osr_compilation;
184   static PerfCounter* _perf_standard_compilation;
185 
186   static PerfCounter* _perf_total_bailout_count;
187   static PerfCounter* _perf_total_invalidated_count;
188   static PerfCounter* _perf_total_compile_count;
189   static PerfCounter* _perf_total_native_compile_count;
190   static PerfCounter* _perf_total_osr_compile_count;
191   static PerfCounter* _perf_total_standard_compile_count;
192 
193   static PerfCounter* _perf_sum_osr_bytes_compiled;
194   static PerfCounter* _perf_sum_standard_bytes_compiled;
195   static PerfCounter* _perf_sum_nmethod_size;
196   static PerfCounter* _perf_sum_nmethod_code_size;
197 
198   static PerfStringVariable* _perf_last_method;
199   static PerfStringVariable* _perf_last_failed_method;
200   static PerfStringVariable* _perf_last_invalidated_method;
201   static PerfVariable*       _perf_last_compile_type;
202   static PerfVariable*       _perf_last_compile_size;
203   static PerfVariable*       _perf_last_failed_type;
204   static PerfVariable*       _perf_last_invalidated_type;
205 
206   // Timers and counters for generating statistics
207   static elapsedTimer _t_total_compilation;
208   static elapsedTimer _t_osr_compilation;
209   static elapsedTimer _t_standard_compilation;
210   static elapsedTimer _t_invalidated_compilation;
211   static elapsedTimer _t_bailedout_compilation;
212 
213   static int _total_compile_count;
214   static int _total_bailout_count;
215   static int _total_invalidated_count;
216   static int _total_native_compile_count;
217   static int _total_osr_compile_count;
218   static int _total_standard_compile_count;
219   static int _total_compiler_stopped_count;
220   static int _total_compiler_restarted_count;
221   static int _sum_osr_bytes_compiled;
222   static int _sum_standard_bytes_compiled;
223   static int _sum_nmethod_size;
224   static int _sum_nmethod_code_size;
225   static long _peak_compilation_time;
226 
227   static volatile int _print_compilation_warning;
228 
229   static Handle create_thread_oop(const char* name, TRAPS);
230   static JavaThread* make_thread(jobject thread_oop, CompileQueue* queue, AbstractCompiler* comp, Thread* THREAD);
231   static void init_compiler_sweeper_threads();
232   static void possibly_add_compiler_threads(Thread* THREAD);
233   static bool compilation_is_prohibited(const methodHandle& method, int osr_bci, int comp_level, bool excluded);
234 
235   static CompileTask* create_compile_task(CompileQueue*       queue,
236                                           int                 compile_id,
237                                           const methodHandle& method,
238                                           int                 osr_bci,
239                                           int                 comp_level,
240                                           const methodHandle& hot_method,
241                                           int                 hot_count,
242                                           CompileTask::CompileReason compile_reason,
243                                           bool                blocking);
244   static void wait_for_completion(CompileTask* task);
245 #if INCLUDE_JVMCI
246   static bool wait_for_jvmci_completion(JVMCICompiler* comp, CompileTask* task, JavaThread* thread);
247 #endif
248 
249   static void invoke_compiler_on_method(CompileTask* task);
250   static void post_compile(CompilerThread* thread, CompileTask* task, bool success, ciEnv* ci_env,
251                            int compilable, const char* failure_reason);
252   static void update_compile_perf_data(CompilerThread *thread, const methodHandle& method, bool is_osr);
253 
254   static void push_jni_handle_block();
255   static void pop_jni_handle_block();
256   static void collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task);
257 
258   static void compile_method_base(const methodHandle& method,
259                                   int osr_bci,
260                                   int comp_level,
261                                   const methodHandle& hot_method,
262                                   int hot_count,
263                                   CompileTask::CompileReason compile_reason,
264                                   bool blocking,
265                                   Thread* thread);
266 
267   static CompileQueue* compile_queue(int comp_level);
268   static bool init_compiler_runtime();
269   static void shutdown_compiler_runtime(AbstractCompiler* comp, CompilerThread* thread);
270 
271 public:
272 
273   static DirectivesStack* dirstack();
274   static void set_dirstack(DirectivesStack* stack);
275 
276   enum {
277     // The entry bci used for non-OSR compilations.
278     standard_entry_bci = InvocationEntryBci
279   };
280 
compiler(int comp_level)281   static AbstractCompiler* compiler(int comp_level) {
282     if (is_c2_compile(comp_level)) return _compilers[1]; // C2
283     if (is_c1_compile(comp_level)) return _compilers[0]; // C1
284     return NULL;
285   }
286 
287   static bool compilation_is_complete(const methodHandle& method, int osr_bci, int comp_level);
288   static bool compilation_is_in_queue(const methodHandle& method);
289   static void print_compile_queues(outputStream* st);
290   static void print_directives(outputStream* st);
queue_size(int comp_level)291   static int queue_size(int comp_level) {
292     CompileQueue *q = compile_queue(comp_level);
293     return q != NULL ? q->size() : 0;
294   }
295   static void compilation_init_phase1(Thread* THREAD);
296   static void compilation_init_phase2();
297   static void init_compiler_thread_log();
298   static nmethod* compile_method(const methodHandle& method,
299                                  int osr_bci,
300                                  int comp_level,
301                                  const methodHandle& hot_method,
302                                  int hot_count,
303                                  CompileTask::CompileReason compile_reason,
304                                  Thread* thread);
305 
306   static nmethod* compile_method(const methodHandle& method,
307                                    int osr_bci,
308                                    int comp_level,
309                                    const methodHandle& hot_method,
310                                    int hot_count,
311                                    CompileTask::CompileReason compile_reason,
312                                    DirectiveSet* directive,
313                                    Thread* thread);
314 
315   // Acquire any needed locks and assign a compile id
316   static uint assign_compile_id_unlocked(Thread* thread, const methodHandle& method, int osr_bci);
317 
318   static void compiler_thread_loop();
get_compilation_id()319   static uint get_compilation_id() { return _compilation_id; }
320 
321   // Set _should_block.
322   // Call this from the VM, with Threads_lock held and a safepoint requested.
323   static void set_should_block();
324 
325   // Call this from the compiler at convenient points, to poll for _should_block.
326   static void maybe_block();
327 
328   enum CompilerActivity {
329     // Flags for toggling compiler activity
330     stop_compilation     = 0,
331     run_compilation      = 1,
332     shutdown_compilation = 2
333   };
334 
get_compilation_activity_mode()335   static jint get_compilation_activity_mode() { return _should_compile_new_jobs; }
should_compile_new_jobs()336   static bool should_compile_new_jobs() { return UseCompiler && (_should_compile_new_jobs == run_compilation); }
set_should_compile_new_jobs(jint new_state)337   static bool set_should_compile_new_jobs(jint new_state) {
338     // Return success if the current caller set it
339     jint old = Atomic::cmpxchg(&_should_compile_new_jobs, 1-new_state, new_state);
340     bool success = (old == (1-new_state));
341     if (success) {
342       if (new_state == run_compilation) {
343         _total_compiler_restarted_count++;
344       } else {
345         _total_compiler_stopped_count++;
346       }
347     }
348     return success;
349   }
350 
disable_compilation_forever()351   static void disable_compilation_forever() {
352     UseCompiler               = false;
353     AlwaysCompileLoopMethods  = false;
354     Atomic::xchg(&_should_compile_new_jobs, jint(shutdown_compilation));
355   }
356 
is_compilation_disabled_forever()357   static bool is_compilation_disabled_forever() {
358     return _should_compile_new_jobs == shutdown_compilation;
359   }
360   static void handle_full_code_cache(int code_blob_type);
361   // Ensures that warning is only printed once.
should_print_compiler_warning()362   static bool should_print_compiler_warning() {
363     jint old = Atomic::cmpxchg(&_print_compilation_warning, 0, 1);
364     return old == 0;
365   }
366   // Return total compilation ticks
total_compilation_ticks()367   static jlong total_compilation_ticks() {
368     return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0;
369   }
370 
371   // Redefine Classes support
372   static void mark_on_stack();
373 
374 #if INCLUDE_JVMCI
375   // Print curent compilation time stats for a given compiler
376   static void print_times(AbstractCompiler* comp);
377 #endif
378 
379   // Print a detailed accounting of compilation time
380   static void print_times(bool per_compiler = true, bool aggregate = true);
381 
382   // compiler name for debugging
383   static const char* compiler_name(int comp_level);
384 
385   // Provide access to compiler thread Java objects
compiler1_object(int idx)386   static jobject compiler1_object(int idx) {
387     assert(_compiler1_objects != NULL, "must be initialized");
388     assert(idx < _c1_count, "oob");
389     return _compiler1_objects[idx];
390   }
391 
compiler2_object(int idx)392   static jobject compiler2_object(int idx) {
393     assert(_compiler2_objects != NULL, "must be initialized");
394     assert(idx < _c2_count, "oob");
395     return _compiler2_objects[idx];
396   }
397 
compiler1()398   static AbstractCompiler* compiler1() { return _compilers[0]; }
compiler2()399   static AbstractCompiler* compiler2() { return _compilers[1]; }
400 
401   static bool can_remove(CompilerThread *ct, bool do_it);
402 
403   static CompileLog* get_log(CompilerThread* ct);
404 
get_total_compile_count()405   static int get_total_compile_count() {            return _total_compile_count; }
get_total_bailout_count()406   static int get_total_bailout_count() {            return _total_bailout_count; }
get_total_invalidated_count()407   static int get_total_invalidated_count() {        return _total_invalidated_count; }
get_total_native_compile_count()408   static int get_total_native_compile_count() {     return _total_native_compile_count; }
get_total_osr_compile_count()409   static int get_total_osr_compile_count() {        return _total_osr_compile_count; }
get_total_standard_compile_count()410   static int get_total_standard_compile_count() {   return _total_standard_compile_count; }
get_total_compiler_stopped_count()411   static int get_total_compiler_stopped_count() {   return _total_compiler_stopped_count; }
get_total_compiler_restarted_count()412   static int get_total_compiler_restarted_count() { return _total_compiler_restarted_count; }
get_sum_osr_bytes_compiled()413   static int get_sum_osr_bytes_compiled() {         return _sum_osr_bytes_compiled; }
get_sum_standard_bytes_compiled()414   static int get_sum_standard_bytes_compiled() {    return _sum_standard_bytes_compiled; }
get_sum_nmethod_size()415   static int get_sum_nmethod_size() {               return _sum_nmethod_size;}
get_sum_nmethod_code_size()416   static int get_sum_nmethod_code_size() {          return _sum_nmethod_code_size; }
get_peak_compilation_time()417   static long get_peak_compilation_time() {         return _peak_compilation_time; }
get_total_compilation_time()418   static long get_total_compilation_time() {        return _t_total_compilation.milliseconds(); }
419 
420   // Log that compilation profiling is skipped because metaspace is full.
421   static void log_metaspace_failure();
422 
423   // CodeHeap State Analytics.
424   static void print_info(outputStream *out);
425   static void print_heapinfo(outputStream *out, const char* function, size_t granularity);
426 };
427 
428 #endif // SHARE_COMPILER_COMPILEBROKER_HPP
429