Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/mobile
Path: blob/master/src/hotspot/share/compiler/compileBroker.hpp
40930 views
1
/*
2
* Copyright (c) 1999, 2021, 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 "compiler/compilerThread.hpp"
33
#include "runtime/atomic.hpp"
34
#include "runtime/perfDataTypes.hpp"
35
#include "utilities/stack.hpp"
36
#if INCLUDE_JVMCI
37
#include "jvmci/jvmciCompiler.hpp"
38
#endif
39
40
class nmethod;
41
class nmethodLocker;
42
43
// CompilerCounters
44
//
45
// Per Compiler Performance Counters.
46
//
47
class CompilerCounters : public CHeapObj<mtCompiler> {
48
49
public:
50
enum {
51
cmname_buffer_length = 160
52
};
53
54
private:
55
56
char _current_method[cmname_buffer_length];
57
int _compile_type;
58
59
public:
60
CompilerCounters();
61
62
// these methods should be called in a thread safe context
63
64
void set_current_method(const char* method) {
65
strncpy(_current_method, method, (size_t)cmname_buffer_length-1);
66
_current_method[cmname_buffer_length-1] = '\0';
67
}
68
69
char* current_method() { return _current_method; }
70
71
void set_compile_type(int compile_type) {
72
_compile_type = compile_type;
73
}
74
75
int compile_type() { return _compile_type; }
76
77
};
78
79
// CompileQueue
80
//
81
// A list of CompileTasks.
82
class CompileQueue : public CHeapObj<mtCompiler> {
83
private:
84
const char* _name;
85
86
CompileTask* _first;
87
CompileTask* _last;
88
89
CompileTask* _first_stale;
90
91
int _size;
92
93
void purge_stale_tasks();
94
public:
95
CompileQueue(const char* name) {
96
_name = name;
97
_first = NULL;
98
_last = NULL;
99
_size = 0;
100
_first_stale = NULL;
101
}
102
103
const char* name() const { return _name; }
104
105
void add(CompileTask* task);
106
void remove(CompileTask* task);
107
void remove_and_mark_stale(CompileTask* task);
108
CompileTask* first() { return _first; }
109
CompileTask* last() { return _last; }
110
111
CompileTask* get();
112
113
bool is_empty() const { return _first == NULL; }
114
int size() const { return _size; }
115
116
117
// Redefine Classes support
118
void mark_on_stack();
119
void free_all();
120
void print_tty();
121
void print(outputStream* st = tty);
122
123
~CompileQueue() {
124
assert (is_empty(), " Compile Queue must be empty");
125
}
126
};
127
128
// CompileTaskWrapper
129
//
130
// Assign this task to the current thread. Deallocate the task
131
// when the compilation is complete.
132
class CompileTaskWrapper : StackObj {
133
public:
134
CompileTaskWrapper(CompileTask* task);
135
~CompileTaskWrapper();
136
};
137
138
// Compilation
139
//
140
// The broker for all compilation requests.
141
class CompileBroker: AllStatic {
142
friend class Threads;
143
friend class CompileTaskWrapper;
144
145
public:
146
enum {
147
name_buffer_length = 100
148
};
149
150
// Compile type Information for print_last_compile() and CompilerCounters
151
enum { no_compile, normal_compile, osr_compile, native_compile };
152
static int assign_compile_id (const methodHandle& method, int osr_bci);
153
154
155
private:
156
static bool _initialized;
157
static volatile bool _should_block;
158
159
// This flag can be used to stop compilation or turn it back on
160
static volatile jint _should_compile_new_jobs;
161
162
// The installed compiler(s)
163
static AbstractCompiler* _compilers[2];
164
165
// The maximum numbers of compiler threads to be determined during startup.
166
static int _c1_count, _c2_count;
167
168
// An array of compiler thread Java objects
169
static jobject *_compiler1_objects, *_compiler2_objects;
170
171
// An array of compiler logs
172
static CompileLog **_compiler1_logs, **_compiler2_logs;
173
174
// These counters are used for assigning id's to each compilation
175
static volatile jint _compilation_id;
176
static volatile jint _osr_compilation_id;
177
178
static CompileQueue* _c2_compile_queue;
179
static CompileQueue* _c1_compile_queue;
180
181
// performance counters
182
static PerfCounter* _perf_total_compilation;
183
static PerfCounter* _perf_native_compilation;
184
static PerfCounter* _perf_osr_compilation;
185
static PerfCounter* _perf_standard_compilation;
186
187
static PerfCounter* _perf_total_bailout_count;
188
static PerfCounter* _perf_total_invalidated_count;
189
static PerfCounter* _perf_total_compile_count;
190
static PerfCounter* _perf_total_native_compile_count;
191
static PerfCounter* _perf_total_osr_compile_count;
192
static PerfCounter* _perf_total_standard_compile_count;
193
194
static PerfCounter* _perf_sum_osr_bytes_compiled;
195
static PerfCounter* _perf_sum_standard_bytes_compiled;
196
static PerfCounter* _perf_sum_nmethod_size;
197
static PerfCounter* _perf_sum_nmethod_code_size;
198
199
static PerfStringVariable* _perf_last_method;
200
static PerfStringVariable* _perf_last_failed_method;
201
static PerfStringVariable* _perf_last_invalidated_method;
202
static PerfVariable* _perf_last_compile_type;
203
static PerfVariable* _perf_last_compile_size;
204
static PerfVariable* _perf_last_failed_type;
205
static PerfVariable* _perf_last_invalidated_type;
206
207
// Timers and counters for generating statistics
208
static elapsedTimer _t_total_compilation;
209
static elapsedTimer _t_osr_compilation;
210
static elapsedTimer _t_standard_compilation;
211
static elapsedTimer _t_invalidated_compilation;
212
static elapsedTimer _t_bailedout_compilation;
213
214
static int _total_compile_count;
215
static int _total_bailout_count;
216
static int _total_invalidated_count;
217
static int _total_native_compile_count;
218
static int _total_osr_compile_count;
219
static int _total_standard_compile_count;
220
static int _total_compiler_stopped_count;
221
static int _total_compiler_restarted_count;
222
static int _sum_osr_bytes_compiled;
223
static int _sum_standard_bytes_compiled;
224
static int _sum_nmethod_size;
225
static int _sum_nmethod_code_size;
226
static long _peak_compilation_time;
227
228
static CompilerStatistics _stats_per_level[];
229
230
static volatile int _print_compilation_warning;
231
232
enum ThreadType {
233
compiler_t,
234
sweeper_t,
235
deoptimizer_t
236
};
237
238
static Handle create_thread_oop(const char* name, TRAPS);
239
static JavaThread* make_thread(ThreadType type, jobject thread_oop, CompileQueue* queue, AbstractCompiler* comp, JavaThread* THREAD);
240
static void init_compiler_sweeper_threads();
241
static void possibly_add_compiler_threads(JavaThread* THREAD);
242
static bool compilation_is_prohibited(const methodHandle& method, int osr_bci, int comp_level, bool excluded);
243
244
static CompileTask* create_compile_task(CompileQueue* queue,
245
int compile_id,
246
const methodHandle& method,
247
int osr_bci,
248
int comp_level,
249
const methodHandle& hot_method,
250
int hot_count,
251
CompileTask::CompileReason compile_reason,
252
bool blocking);
253
static void wait_for_completion(CompileTask* task);
254
#if INCLUDE_JVMCI
255
static bool wait_for_jvmci_completion(JVMCICompiler* comp, CompileTask* task, JavaThread* thread);
256
#endif
257
258
static void invoke_compiler_on_method(CompileTask* task);
259
static void post_compile(CompilerThread* thread, CompileTask* task, bool success, ciEnv* ci_env,
260
int compilable, const char* failure_reason);
261
static void update_compile_perf_data(CompilerThread *thread, const methodHandle& method, bool is_osr);
262
263
static void push_jni_handle_block();
264
static void pop_jni_handle_block();
265
static void collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task);
266
267
static void compile_method_base(const methodHandle& method,
268
int osr_bci,
269
int comp_level,
270
const methodHandle& hot_method,
271
int hot_count,
272
CompileTask::CompileReason compile_reason,
273
bool blocking,
274
Thread* thread);
275
276
static CompileQueue* compile_queue(int comp_level);
277
static bool init_compiler_runtime();
278
static void shutdown_compiler_runtime(AbstractCompiler* comp, CompilerThread* thread);
279
280
public:
281
enum {
282
// The entry bci used for non-OSR compilations.
283
standard_entry_bci = InvocationEntryBci
284
};
285
286
static AbstractCompiler* compiler(int comp_level) {
287
if (is_c2_compile(comp_level)) return _compilers[1]; // C2
288
if (is_c1_compile(comp_level)) return _compilers[0]; // C1
289
return NULL;
290
}
291
292
static bool compilation_is_complete(const methodHandle& method, int osr_bci, int comp_level);
293
static bool compilation_is_in_queue(const methodHandle& method);
294
static void print_compile_queues(outputStream* st);
295
static int queue_size(int comp_level) {
296
CompileQueue *q = compile_queue(comp_level);
297
return q != NULL ? q->size() : 0;
298
}
299
static void compilation_init_phase1(JavaThread* THREAD);
300
static void compilation_init_phase2();
301
static void init_compiler_thread_log();
302
static nmethod* compile_method(const methodHandle& method,
303
int osr_bci,
304
int comp_level,
305
const methodHandle& hot_method,
306
int hot_count,
307
CompileTask::CompileReason compile_reason,
308
TRAPS);
309
310
static nmethod* compile_method(const methodHandle& method,
311
int osr_bci,
312
int comp_level,
313
const methodHandle& hot_method,
314
int hot_count,
315
CompileTask::CompileReason compile_reason,
316
DirectiveSet* directive,
317
TRAPS);
318
319
// Acquire any needed locks and assign a compile id
320
static uint assign_compile_id_unlocked(Thread* thread, const methodHandle& method, int osr_bci);
321
322
static void compiler_thread_loop();
323
static uint get_compilation_id() { return _compilation_id; }
324
325
// Set _should_block.
326
// Call this from the VM, with Threads_lock held and a safepoint requested.
327
static void set_should_block();
328
329
// Call this from the compiler at convenient points, to poll for _should_block.
330
static void maybe_block();
331
332
enum CompilerActivity {
333
// Flags for toggling compiler activity
334
stop_compilation = 0,
335
run_compilation = 1,
336
shutdown_compilation = 2
337
};
338
339
static jint get_compilation_activity_mode() { return _should_compile_new_jobs; }
340
static bool should_compile_new_jobs() { return UseCompiler && (_should_compile_new_jobs == run_compilation); }
341
static bool set_should_compile_new_jobs(jint new_state) {
342
// Return success if the current caller set it
343
jint old = Atomic::cmpxchg(&_should_compile_new_jobs, 1-new_state, new_state);
344
bool success = (old == (1-new_state));
345
if (success) {
346
if (new_state == run_compilation) {
347
_total_compiler_restarted_count++;
348
} else {
349
_total_compiler_stopped_count++;
350
}
351
}
352
return success;
353
}
354
355
static void disable_compilation_forever() {
356
UseCompiler = false;
357
AlwaysCompileLoopMethods = false;
358
Atomic::xchg(&_should_compile_new_jobs, jint(shutdown_compilation));
359
}
360
361
static bool is_compilation_disabled_forever() {
362
return _should_compile_new_jobs == shutdown_compilation;
363
}
364
static void handle_full_code_cache(int code_blob_type);
365
// Ensures that warning is only printed once.
366
static bool should_print_compiler_warning() {
367
jint old = Atomic::cmpxchg(&_print_compilation_warning, 0, 1);
368
return old == 0;
369
}
370
// Return total compilation ticks
371
static jlong total_compilation_ticks();
372
373
// Redefine Classes support
374
static void mark_on_stack();
375
376
// Print curent compilation time stats for a given compiler
377
static void print_times(const char* name, CompilerStatistics* stats);
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
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
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
398
static AbstractCompiler* compiler1() { return _compilers[0]; }
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
405
static int get_total_compile_count() { return _total_compile_count; }
406
static int get_total_bailout_count() { return _total_bailout_count; }
407
static int get_total_invalidated_count() { return _total_invalidated_count; }
408
static int get_total_native_compile_count() { return _total_native_compile_count; }
409
static int get_total_osr_compile_count() { return _total_osr_compile_count; }
410
static int get_total_standard_compile_count() { return _total_standard_compile_count; }
411
static int get_total_compiler_stopped_count() { return _total_compiler_stopped_count; }
412
static int get_total_compiler_restarted_count() { return _total_compiler_restarted_count; }
413
static int get_sum_osr_bytes_compiled() { return _sum_osr_bytes_compiled; }
414
static int get_sum_standard_bytes_compiled() { return _sum_standard_bytes_compiled; }
415
static int get_sum_nmethod_size() { return _sum_nmethod_size;}
416
static int get_sum_nmethod_code_size() { return _sum_nmethod_code_size; }
417
static long get_peak_compilation_time() { return _peak_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
430