annotate src/share/vm/compiler/compileBroker.hpp @ 23408:f84a5ac3be22

make JVMCI JDK immutable and sharable among different JVMCI clients minimize diff to jvmci-9, including adding support for EnableJVMCI (default is true in jvmci-8)
author Doug Simon <doug.simon@oracle.com>
date Mon, 30 May 2016 22:56:59 +0200
parents 3ef45d0a6d77
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
2 * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 *
a61af66fc99e Initial load
duke
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
a61af66fc99e Initial load
duke
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
a61af66fc99e Initial load
duke
parents:
diff changeset
7 * published by the Free Software Foundation.
a61af66fc99e Initial load
duke
parents:
diff changeset
8 *
a61af66fc99e Initial load
duke
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
a61af66fc99e Initial load
duke
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
a61af66fc99e Initial load
duke
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
a61af66fc99e Initial load
duke
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
a61af66fc99e Initial load
duke
parents:
diff changeset
13 * accompanied this code).
a61af66fc99e Initial load
duke
parents:
diff changeset
14 *
a61af66fc99e Initial load
duke
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
a61af66fc99e Initial load
duke
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
a61af66fc99e Initial load
duke
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
a61af66fc99e Initial load
duke
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1489
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1489
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1489
diff changeset
21 * questions.
0
a61af66fc99e Initial load
duke
parents:
diff changeset
22 *
a61af66fc99e Initial load
duke
parents:
diff changeset
23 */
a61af66fc99e Initial load
duke
parents:
diff changeset
24
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
25 #ifndef SHARE_VM_COMPILER_COMPILEBROKER_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
26 #define SHARE_VM_COMPILER_COMPILEBROKER_HPP
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
27
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
28 #include "ci/compilerInterface.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
29 #include "compiler/abstractCompiler.hpp"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
30 #include "runtime/perfData.hpp"
15463
a20be10ad437 made Graal work with the HotSpot compiler queue and compiler threads, enabled by -XX:-UseGraalCompilationQueue
Doug Simon <doug.simon@oracle.com>
parents: 14909
diff changeset
31 #include "trace/tracing.hpp"
23303
633cf7bea01d thread waiting for blocking JVMCI compilation should not wait on compiler queue forever (JDK-8148507) [part 2]
Doug Simon <doug.simon@oracle.com>
parents: 23302
diff changeset
32 #if INCLUDE_JVMCI
633cf7bea01d thread waiting for blocking JVMCI compilation should not wait on compiler queue forever (JDK-8148507) [part 2]
Doug Simon <doug.simon@oracle.com>
parents: 23302
diff changeset
33 #include "jvmci/jvmciCompiler.hpp"
633cf7bea01d thread waiting for blocking JVMCI compilation should not wait on compiler queue forever (JDK-8148507) [part 2]
Doug Simon <doug.simon@oracle.com>
parents: 23302
diff changeset
34 #endif
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
35
0
a61af66fc99e Initial load
duke
parents:
diff changeset
36 class nmethod;
a61af66fc99e Initial load
duke
parents:
diff changeset
37 class nmethodLocker;
a61af66fc99e Initial load
duke
parents:
diff changeset
38
a61af66fc99e Initial load
duke
parents:
diff changeset
39 // CompileTask
a61af66fc99e Initial load
duke
parents:
diff changeset
40 //
a61af66fc99e Initial load
duke
parents:
diff changeset
41 // An entry in the compile queue. It represents a pending or current
a61af66fc99e Initial load
duke
parents:
diff changeset
42 // compilation.
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4872
diff changeset
43 class CompileTask : public CHeapObj<mtCompiler> {
3939
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 2405
diff changeset
44 friend class VMStructs;
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 2405
diff changeset
45
0
a61af66fc99e Initial load
duke
parents:
diff changeset
46 private:
20588
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
47 static CompileTask* _task_free_list;
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
48 #ifdef ASSERT
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
49 static int _num_allocated_tasks;
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
50 #endif
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
51
0
a61af66fc99e Initial load
duke
parents:
diff changeset
52 Monitor* _lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 uint _compile_id;
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
54 Method* _method;
7185
90273fc0a981 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 6800
diff changeset
55 jobject _method_holder;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
56 int _osr_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
57 bool _is_complete;
a61af66fc99e Initial load
duke
parents:
diff changeset
58 bool _is_success;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 bool _is_blocking;
23404
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23303
diff changeset
60 #if INCLUDE_JVMCI
22719
44bc739eae23 fixed logic deciding who frees the CompileTask for a JVMCI blocking compilation
Doug Simon <doug.simon@oracle.com>
parents: 22298
diff changeset
61 bool _has_waiter;
22762
9d78d44d3aac improved JVMCI support for blocking compilation (GRAAL-1387)
Doug Simon <doug.simon@oracle.com>
parents: 22719
diff changeset
62 // Compiler thread for a blocking JVMCI compilation
9d78d44d3aac improved JVMCI support for blocking compilation (GRAAL-1387)
Doug Simon <doug.simon@oracle.com>
parents: 22719
diff changeset
63 CompilerThread* _jvmci_compiler_thread;
22719
44bc739eae23 fixed logic deciding who frees the CompileTask for a JVMCI blocking compilation
Doug Simon <doug.simon@oracle.com>
parents: 22298
diff changeset
64 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
65 int _comp_level;
a61af66fc99e Initial load
duke
parents:
diff changeset
66 int _num_inlined_bytecodes;
a61af66fc99e Initial load
duke
parents:
diff changeset
67 nmethodLocker* _code_handle; // holder of eventual result
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
68 CompileTask* _next, *_prev;
20588
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
69 bool _is_free;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
70 // Fields used for logging why the compilation was initiated:
a61af66fc99e Initial load
duke
parents:
diff changeset
71 jlong _time_queued; // in units of os::elapsed_counter()
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
72 Method* _hot_method; // which method actually triggered this task
7185
90273fc0a981 8000662: NPG: nashorn ant clean test262 out-of-memory with Java heap
coleenp
parents: 6800
diff changeset
73 jobject _hot_method_holder;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
74 int _hot_count; // information about its invocation counter
a61af66fc99e Initial load
duke
parents:
diff changeset
75 const char* _comment; // more info about the task
20469
dd89808e49ba 8049530: Provide descriptive failure reason for compilation tasks removed for the queue
vlivanov
parents: 20465
diff changeset
76 const char* _failure_reason;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
77
a61af66fc99e Initial load
duke
parents:
diff changeset
78 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
79 CompileTask() {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 _lock = new Monitor(Mutex::nonleaf+2, "CompileTaskLock");
a61af66fc99e Initial load
duke
parents:
diff changeset
81 }
a61af66fc99e Initial load
duke
parents:
diff changeset
82
a61af66fc99e Initial load
duke
parents:
diff changeset
83 void initialize(int compile_id, methodHandle method, int osr_bci, int comp_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
84 methodHandle hot_method, int hot_count, const char* comment,
a61af66fc99e Initial load
duke
parents:
diff changeset
85 bool is_blocking);
a61af66fc99e Initial load
duke
parents:
diff changeset
86
20588
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
87 static CompileTask* allocate();
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
88 static void free(CompileTask* task);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 int compile_id() const { return _compile_id; }
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
91 Method* method() const { return _method; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
92 int osr_bci() const { return _osr_bci; }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 bool is_complete() const { return _is_complete; }
a61af66fc99e Initial load
duke
parents:
diff changeset
94 bool is_blocking() const { return _is_blocking; }
a61af66fc99e Initial load
duke
parents:
diff changeset
95 bool is_success() const { return _is_success; }
23404
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23303
diff changeset
96 #if INCLUDE_JVMCI
22719
44bc739eae23 fixed logic deciding who frees the CompileTask for a JVMCI blocking compilation
Doug Simon <doug.simon@oracle.com>
parents: 22298
diff changeset
97 bool has_waiter() const { return _has_waiter; }
44bc739eae23 fixed logic deciding who frees the CompileTask for a JVMCI blocking compilation
Doug Simon <doug.simon@oracle.com>
parents: 22298
diff changeset
98 void clear_waiter() { _has_waiter = false; }
22762
9d78d44d3aac improved JVMCI support for blocking compilation (GRAAL-1387)
Doug Simon <doug.simon@oracle.com>
parents: 22719
diff changeset
99 CompilerThread* jvmci_compiler_thread() const { return _jvmci_compiler_thread; }
9d78d44d3aac improved JVMCI support for blocking compilation (GRAAL-1387)
Doug Simon <doug.simon@oracle.com>
parents: 22719
diff changeset
100 void set_jvmci_compiler_thread(CompilerThread* t) {
9d78d44d3aac improved JVMCI support for blocking compilation (GRAAL-1387)
Doug Simon <doug.simon@oracle.com>
parents: 22719
diff changeset
101 assert(is_blocking(), "must be");
9d78d44d3aac improved JVMCI support for blocking compilation (GRAAL-1387)
Doug Simon <doug.simon@oracle.com>
parents: 22719
diff changeset
102 assert((t == NULL) != (_jvmci_compiler_thread == NULL), "must be");
9d78d44d3aac improved JVMCI support for blocking compilation (GRAAL-1387)
Doug Simon <doug.simon@oracle.com>
parents: 22719
diff changeset
103 _jvmci_compiler_thread = t;
9d78d44d3aac improved JVMCI support for blocking compilation (GRAAL-1387)
Doug Simon <doug.simon@oracle.com>
parents: 22719
diff changeset
104 }
22719
44bc739eae23 fixed logic deciding who frees the CompileTask for a JVMCI blocking compilation
Doug Simon <doug.simon@oracle.com>
parents: 22298
diff changeset
105 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
106
a61af66fc99e Initial load
duke
parents:
diff changeset
107 nmethodLocker* code_handle() const { return _code_handle; }
a61af66fc99e Initial load
duke
parents:
diff changeset
108 void set_code_handle(nmethodLocker* l) { _code_handle = l; }
a61af66fc99e Initial load
duke
parents:
diff changeset
109 nmethod* code() const; // _code_handle->code()
a61af66fc99e Initial load
duke
parents:
diff changeset
110 void set_code(nmethod* nm); // _code_handle->set_code(nm)
a61af66fc99e Initial load
duke
parents:
diff changeset
111
a61af66fc99e Initial load
duke
parents:
diff changeset
112 Monitor* lock() const { return _lock; }
a61af66fc99e Initial load
duke
parents:
diff changeset
113
a61af66fc99e Initial load
duke
parents:
diff changeset
114 void mark_complete() { _is_complete = true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
115 void mark_success() { _is_success = true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
116
a61af66fc99e Initial load
duke
parents:
diff changeset
117 int comp_level() { return _comp_level;}
a61af66fc99e Initial load
duke
parents:
diff changeset
118 void set_comp_level(int comp_level) { _comp_level = comp_level;}
a61af66fc99e Initial load
duke
parents:
diff changeset
119
a61af66fc99e Initial load
duke
parents:
diff changeset
120 int num_inlined_bytecodes() const { return _num_inlined_bytecodes; }
a61af66fc99e Initial load
duke
parents:
diff changeset
121 void set_num_inlined_bytecodes(int n) { _num_inlined_bytecodes = n; }
a61af66fc99e Initial load
duke
parents:
diff changeset
122
a61af66fc99e Initial load
duke
parents:
diff changeset
123 CompileTask* next() const { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
124 void set_next(CompileTask* next) { _next = next; }
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
125 CompileTask* prev() const { return _prev; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
126 void set_prev(CompileTask* prev) { _prev = prev; }
20588
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
127 bool is_free() const { return _is_free; }
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
128 void set_is_free(bool val) { _is_free = val; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
129
2405
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
130 private:
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
131 static void print_compilation_impl(outputStream* st, Method* method, int compile_id, int comp_level,
4872
aa3d708d67c4 7141200: log some interesting information in ring buffers for crashes
never
parents: 4825
diff changeset
132 bool is_osr_method = false, int osr_bci = -1, bool is_blocking = false,
aa3d708d67c4 7141200: log some interesting information in ring buffers for crashes
never
parents: 4825
diff changeset
133 const char* msg = NULL, bool short_form = false);
2405
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
134
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
135 public:
6800
9191895df19d 7200001: failed C1 OSR compile doesn't get recompiled with C2
twisti
parents: 6725
diff changeset
136 void print_compilation(outputStream* st = tty, const char* msg = NULL, bool short_form = false);
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 6197
diff changeset
137 static void print_compilation(outputStream* st, const nmethod* nm, const char* msg = NULL, bool short_form = false) {
4872
aa3d708d67c4 7141200: log some interesting information in ring buffers for crashes
never
parents: 4825
diff changeset
138 print_compilation_impl(st, nm->method(), nm->compile_id(), nm->comp_level(),
aa3d708d67c4 7141200: log some interesting information in ring buffers for crashes
never
parents: 4825
diff changeset
139 nm->is_osr_method(), nm->is_osr_method() ? nm->osr_entry_bci() : -1, /*is_blocking*/ false,
6266
1d7922586cf6 7023639: JSR 292 method handle invocation needs a fast path for compiled code
twisti
parents: 6197
diff changeset
140 msg, short_form);
2405
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
141 }
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
142
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
143 static void print_inlining(outputStream* st, ciMethod* method, int inline_level, int bci, const char* msg = NULL);
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
144 static void print_inlining(ciMethod* method, int inline_level, int bci, const char* msg = NULL) {
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
145 print_inlining(tty, method, inline_level, bci, msg);
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
146 }
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
147
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
148 // Redefine Classes support
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
149 void mark_on_stack();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
150
2405
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
151 static void print_inline_indent(int inline_level, outputStream* st = tty);
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
152
0
a61af66fc99e Initial load
duke
parents:
diff changeset
153 void print();
a61af66fc99e Initial load
duke
parents:
diff changeset
154 void print_line();
2405
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
155 void print_line_on_error(outputStream* st, char* buf, int buflen);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
156
0
a61af66fc99e Initial load
duke
parents:
diff changeset
157 void log_task(xmlStream* log);
a61af66fc99e Initial load
duke
parents:
diff changeset
158 void log_task_queued();
19943
5119e7f07d93 Log dequeue of methods from CompileQueue
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 18041
diff changeset
159 void log_task_dequeued(const char* comment);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
160 void log_task_start(CompileLog* log);
a61af66fc99e Initial load
duke
parents:
diff changeset
161 void log_task_done(CompileLog* log);
20469
dd89808e49ba 8049530: Provide descriptive failure reason for compilation tasks removed for the queue
vlivanov
parents: 20465
diff changeset
162
dd89808e49ba 8049530: Provide descriptive failure reason for compilation tasks removed for the queue
vlivanov
parents: 20465
diff changeset
163 void set_failure_reason(const char* reason) {
dd89808e49ba 8049530: Provide descriptive failure reason for compilation tasks removed for the queue
vlivanov
parents: 20465
diff changeset
164 _failure_reason = reason;
dd89808e49ba 8049530: Provide descriptive failure reason for compilation tasks removed for the queue
vlivanov
parents: 20465
diff changeset
165 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
166 };
a61af66fc99e Initial load
duke
parents:
diff changeset
167
a61af66fc99e Initial load
duke
parents:
diff changeset
168 // CompilerCounters
a61af66fc99e Initial load
duke
parents:
diff changeset
169 //
a61af66fc99e Initial load
duke
parents:
diff changeset
170 // Per Compiler Performance Counters.
a61af66fc99e Initial load
duke
parents:
diff changeset
171 //
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4872
diff changeset
172 class CompilerCounters : public CHeapObj<mtCompiler> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
173
a61af66fc99e Initial load
duke
parents:
diff changeset
174 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
175 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
176 cmname_buffer_length = 160
a61af66fc99e Initial load
duke
parents:
diff changeset
177 };
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
180
a61af66fc99e Initial load
duke
parents:
diff changeset
181 char _current_method[cmname_buffer_length];
a61af66fc99e Initial load
duke
parents:
diff changeset
182 PerfStringVariable* _perf_current_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
183
a61af66fc99e Initial load
duke
parents:
diff changeset
184 int _compile_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
185 PerfVariable* _perf_compile_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
186
a61af66fc99e Initial load
duke
parents:
diff changeset
187 PerfCounter* _perf_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 PerfCounter* _perf_compiles;
a61af66fc99e Initial load
duke
parents:
diff changeset
189
a61af66fc99e Initial load
duke
parents:
diff changeset
190 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
191 CompilerCounters(const char* name, int instance, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
192
a61af66fc99e Initial load
duke
parents:
diff changeset
193 // these methods should be called in a thread safe context
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 void set_current_method(const char* method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
196 strncpy(_current_method, method, (size_t)cmname_buffer_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
197 if (UsePerfData) _perf_current_method->set_value(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
198 }
a61af66fc99e Initial load
duke
parents:
diff changeset
199
a61af66fc99e Initial load
duke
parents:
diff changeset
200 char* current_method() { return _current_method; }
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 void set_compile_type(int compile_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
203 _compile_type = compile_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
204 if (UsePerfData) _perf_compile_type->set_value((jlong)compile_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
205 }
a61af66fc99e Initial load
duke
parents:
diff changeset
206
a61af66fc99e Initial load
duke
parents:
diff changeset
207 int compile_type() { return _compile_type; }
a61af66fc99e Initial load
duke
parents:
diff changeset
208
a61af66fc99e Initial load
duke
parents:
diff changeset
209 PerfCounter* time_counter() { return _perf_time; }
a61af66fc99e Initial load
duke
parents:
diff changeset
210 PerfCounter* compile_counter() { return _perf_compiles; }
a61af66fc99e Initial load
duke
parents:
diff changeset
211 };
a61af66fc99e Initial load
duke
parents:
diff changeset
212
a61af66fc99e Initial load
duke
parents:
diff changeset
213 // CompileQueue
a61af66fc99e Initial load
duke
parents:
diff changeset
214 //
a61af66fc99e Initial load
duke
parents:
diff changeset
215 // A list of CompileTasks.
6197
d2a62e0f25eb 6995781: Native Memory Tracking (Phase 1)
zgu
parents: 4872
diff changeset
216 class CompileQueue : public CHeapObj<mtCompiler> {
0
a61af66fc99e Initial load
duke
parents:
diff changeset
217 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
218 const char* _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
219 Monitor* _lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
220
a61af66fc99e Initial load
duke
parents:
diff changeset
221 CompileTask* _first;
a61af66fc99e Initial load
duke
parents:
diff changeset
222 CompileTask* _last;
a61af66fc99e Initial load
duke
parents:
diff changeset
223
20465
7301840ea20e 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 14236
diff changeset
224 CompileTask* _first_stale;
7301840ea20e 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 14236
diff changeset
225
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
226 int _size;
20465
7301840ea20e 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 14236
diff changeset
227
7301840ea20e 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 14236
diff changeset
228 void purge_stale_tasks();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
229 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
230 CompileQueue(const char* name, Monitor* lock) {
a61af66fc99e Initial load
duke
parents:
diff changeset
231 _name = name;
a61af66fc99e Initial load
duke
parents:
diff changeset
232 _lock = lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
233 _first = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
234 _last = NULL;
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
235 _size = 0;
20465
7301840ea20e 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 14236
diff changeset
236 _first_stale = NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
237 }
a61af66fc99e Initial load
duke
parents:
diff changeset
238
a61af66fc99e Initial load
duke
parents:
diff changeset
239 const char* name() const { return _name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
240 Monitor* lock() const { return _lock; }
a61af66fc99e Initial load
duke
parents:
diff changeset
241
a61af66fc99e Initial load
duke
parents:
diff changeset
242 void add(CompileTask* task);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
243 void remove(CompileTask* task);
20465
7301840ea20e 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 14236
diff changeset
244 void remove_and_mark_stale(CompileTask* task);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
245 CompileTask* first() { return _first; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
246 CompileTask* last() { return _last; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
247
a61af66fc99e Initial load
duke
parents:
diff changeset
248 CompileTask* get();
a61af66fc99e Initial load
duke
parents:
diff changeset
249
a61af66fc99e Initial load
duke
parents:
diff changeset
250 bool is_empty() const { return _first == NULL; }
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
251 int size() const { return _size; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
252
20465
7301840ea20e 8023461: Thread holding lock at safepoint that vm can block on: MethodCompileQueue_lock
vlivanov
parents: 14236
diff changeset
253
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
254 // Redefine Classes support
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
255 void mark_on_stack();
20588
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
256 void free_all();
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
257 NOT_PRODUCT (void print();)
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
258
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
259 ~CompileQueue() {
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
260 assert (is_empty(), " Compile Queue must be empty");
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
261 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
262 };
a61af66fc99e Initial load
duke
parents:
diff changeset
263
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
264 // CompileTaskWrapper
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
265 //
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
266 // Assign this task to the current thread. Deallocate the task
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
267 // when the compilation is complete.
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
268 class CompileTaskWrapper : StackObj {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
269 public:
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
270 CompileTaskWrapper(CompileTask* task);
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
271 ~CompileTaskWrapper();
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
272 };
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
273
0
a61af66fc99e Initial load
duke
parents:
diff changeset
274
a61af66fc99e Initial load
duke
parents:
diff changeset
275 // Compilation
a61af66fc99e Initial load
duke
parents:
diff changeset
276 //
a61af66fc99e Initial load
duke
parents:
diff changeset
277 // The broker for all compilation requests.
a61af66fc99e Initial load
duke
parents:
diff changeset
278 class CompileBroker: AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
279 friend class Threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
280 friend class CompileTaskWrapper;
a61af66fc99e Initial load
duke
parents:
diff changeset
281
a61af66fc99e Initial load
duke
parents:
diff changeset
282 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
283 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
284 name_buffer_length = 100
a61af66fc99e Initial load
duke
parents:
diff changeset
285 };
a61af66fc99e Initial load
duke
parents:
diff changeset
286
a61af66fc99e Initial load
duke
parents:
diff changeset
287 // Compile type Information for print_last_compile() and CompilerCounters
a61af66fc99e Initial load
duke
parents:
diff changeset
288 enum { no_compile, normal_compile, osr_compile, native_compile };
14236
7c0122ed05fb 8022494: Make compilation IDs sequential
anoll
parents: 13074
diff changeset
289 static int assign_compile_id (methodHandle method, int osr_bci);
7c0122ed05fb 8022494: Make compilation IDs sequential
anoll
parents: 13074
diff changeset
290
0
a61af66fc99e Initial load
duke
parents:
diff changeset
291
a61af66fc99e Initial load
duke
parents:
diff changeset
292 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
293 static bool _initialized;
a61af66fc99e Initial load
duke
parents:
diff changeset
294 static volatile bool _should_block;
a61af66fc99e Initial load
duke
parents:
diff changeset
295
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
296 // This flag can be used to stop compilation or turn it back on
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
297 static volatile jint _should_compile_new_jobs;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
298
0
a61af66fc99e Initial load
duke
parents:
diff changeset
299 // The installed compiler(s)
a61af66fc99e Initial load
duke
parents:
diff changeset
300 static AbstractCompiler* _compilers[2];
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 // These counters are used for assigning id's to each compilation
14236
7c0122ed05fb 8022494: Make compilation IDs sequential
anoll
parents: 13074
diff changeset
303 static volatile jint _compilation_id;
7c0122ed05fb 8022494: Make compilation IDs sequential
anoll
parents: 13074
diff changeset
304 static volatile jint _osr_compilation_id;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
305
a61af66fc99e Initial load
duke
parents:
diff changeset
306 static int _last_compile_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
307 static int _last_compile_level;
a61af66fc99e Initial load
duke
parents:
diff changeset
308 static char _last_method_compiled[name_buffer_length];
a61af66fc99e Initial load
duke
parents:
diff changeset
309
20588
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
310 static CompileQueue* _c2_compile_queue;
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
311 static CompileQueue* _c1_compile_queue;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
312
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
313 static GrowableArray<CompilerThread*>* _compiler_threads;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
314
a61af66fc99e Initial load
duke
parents:
diff changeset
315 // performance counters
a61af66fc99e Initial load
duke
parents:
diff changeset
316 static PerfCounter* _perf_total_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
317 static PerfCounter* _perf_native_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
318 static PerfCounter* _perf_osr_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
319 static PerfCounter* _perf_standard_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
320
a61af66fc99e Initial load
duke
parents:
diff changeset
321 static PerfCounter* _perf_total_bailout_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
322 static PerfCounter* _perf_total_invalidated_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
323 static PerfCounter* _perf_total_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
324 static PerfCounter* _perf_total_native_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
325 static PerfCounter* _perf_total_osr_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
326 static PerfCounter* _perf_total_standard_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
327
a61af66fc99e Initial load
duke
parents:
diff changeset
328 static PerfCounter* _perf_sum_osr_bytes_compiled;
a61af66fc99e Initial load
duke
parents:
diff changeset
329 static PerfCounter* _perf_sum_standard_bytes_compiled;
a61af66fc99e Initial load
duke
parents:
diff changeset
330 static PerfCounter* _perf_sum_nmethod_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
331 static PerfCounter* _perf_sum_nmethod_code_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
332
a61af66fc99e Initial load
duke
parents:
diff changeset
333 static PerfStringVariable* _perf_last_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
334 static PerfStringVariable* _perf_last_failed_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
335 static PerfStringVariable* _perf_last_invalidated_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
336 static PerfVariable* _perf_last_compile_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
337 static PerfVariable* _perf_last_compile_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
338 static PerfVariable* _perf_last_failed_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
339 static PerfVariable* _perf_last_invalidated_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
340
a61af66fc99e Initial load
duke
parents:
diff changeset
341 // Timers and counters for generating statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
342 static elapsedTimer _t_total_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
343 static elapsedTimer _t_osr_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
344 static elapsedTimer _t_standard_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
345
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
346 static int _total_compile_count;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
347 static int _total_bailout_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
348 static int _total_invalidated_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
349 static int _total_native_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
350 static int _total_osr_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
351 static int _total_standard_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
352 static int _sum_osr_bytes_compiled;
a61af66fc99e Initial load
duke
parents:
diff changeset
353 static int _sum_standard_bytes_compiled;
a61af66fc99e Initial load
duke
parents:
diff changeset
354 static int _sum_nmethod_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
355 static int _sum_nmethod_code_size;
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
356 static long _peak_compilation_time;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
357
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12880
diff changeset
358 static volatile jint _print_compilation_warning;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12880
diff changeset
359
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
360 static CompilerThread* make_compiler_thread(const char* name, CompileQueue* queue, CompilerCounters* counters, AbstractCompiler* comp, TRAPS);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
361 static void init_compiler_threads(int c1_compiler_count, int c2_compiler_count);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
362 static bool compilation_is_complete (methodHandle method, int osr_bci, int comp_level);
a61af66fc99e Initial load
duke
parents:
diff changeset
363 static bool compilation_is_prohibited(methodHandle method, int osr_bci, int comp_level);
20588
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
364 static bool is_compile_blocking ();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
365 static void preload_classes (methodHandle method, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
366
a61af66fc99e Initial load
duke
parents:
diff changeset
367 static CompileTask* create_compile_task(CompileQueue* queue,
a61af66fc99e Initial load
duke
parents:
diff changeset
368 int compile_id,
a61af66fc99e Initial load
duke
parents:
diff changeset
369 methodHandle method,
a61af66fc99e Initial load
duke
parents:
diff changeset
370 int osr_bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
371 int comp_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
372 methodHandle hot_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
373 int hot_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
374 const char* comment,
a61af66fc99e Initial load
duke
parents:
diff changeset
375 bool blocking);
a61af66fc99e Initial load
duke
parents:
diff changeset
376 static void wait_for_completion(CompileTask* task);
23404
3ef45d0a6d77 Remove jvmci VM configuration, and backport UseJVMCICompiler flag.
Roland Schatz <roland.schatz@oracle.com>
parents: 23303
diff changeset
377 #if INCLUDE_JVMCI
23303
633cf7bea01d thread waiting for blocking JVMCI compilation should not wait on compiler queue forever (JDK-8148507) [part 2]
Doug Simon <doug.simon@oracle.com>
parents: 23302
diff changeset
378 static bool wait_for_jvmci_completion(JVMCICompiler* comp, CompileTask* task, JavaThread* thread);
22762
9d78d44d3aac improved JVMCI support for blocking compilation (GRAAL-1387)
Doug Simon <doug.simon@oracle.com>
parents: 22719
diff changeset
379 #endif
0
a61af66fc99e Initial load
duke
parents:
diff changeset
380
a61af66fc99e Initial load
duke
parents:
diff changeset
381 static void invoke_compiler_on_method(CompileTask* task);
15463
a20be10ad437 made Graal work with the HotSpot compiler queue and compiler threads, enabled by -XX:-UseGraalCompilationQueue
Doug Simon <doug.simon@oracle.com>
parents: 14909
diff changeset
382 static void post_compile(CompilerThread* thread, CompileTask* task, EventCompilation& event, bool success, ciEnv* ci_env);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
383 static void set_last_compile(CompilerThread *thread, methodHandle method, bool is_osr, int comp_level);
a61af66fc99e Initial load
duke
parents:
diff changeset
384 static void push_jni_handle_block();
a61af66fc99e Initial load
duke
parents:
diff changeset
385 static void pop_jni_handle_block();
a61af66fc99e Initial load
duke
parents:
diff changeset
386 static bool check_break_at(methodHandle method, int compile_id, bool is_osr);
a61af66fc99e Initial load
duke
parents:
diff changeset
387 static void collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task);
a61af66fc99e Initial load
duke
parents:
diff changeset
388
a61af66fc99e Initial load
duke
parents:
diff changeset
389 static void compile_method_base(methodHandle method,
a61af66fc99e Initial load
duke
parents:
diff changeset
390 int osr_bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
391 int comp_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
392 methodHandle hot_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
393 int hot_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
394 const char* comment,
4825
20334ed5ed3c 7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents: 3939
diff changeset
395 Thread* thread);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
396 static CompileQueue* compile_queue(int comp_level) {
20588
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
397 if (is_c2_compile(comp_level)) return _c2_compile_queue;
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
398 if (is_c1_compile(comp_level)) return _c1_compile_queue;
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
399 return NULL;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
400 }
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
401 static bool init_compiler_runtime();
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
402 static void shutdown_compiler_runtime(AbstractCompiler* comp, CompilerThread* thread);
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
403
0
a61af66fc99e Initial load
duke
parents:
diff changeset
404 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
405 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
406 // The entry bci used for non-OSR compilations.
a61af66fc99e Initial load
duke
parents:
diff changeset
407 standard_entry_bci = InvocationEntryBci
a61af66fc99e Initial load
duke
parents:
diff changeset
408 };
a61af66fc99e Initial load
duke
parents:
diff changeset
409
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
410 static AbstractCompiler* compiler(int comp_level) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
411 if (is_c2_compile(comp_level)) return _compilers[1]; // C2
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
412 if (is_c1_compile(comp_level)) return _compilers[0]; // C1
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
413 return NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
414 }
a61af66fc99e Initial load
duke
parents:
diff changeset
415
20588
41dcdd636080 8040798: compiler/startup/SmallCodeCacheStartup.java timed out in RT_Baseline
anoll
parents: 20469
diff changeset
416 static bool compilation_is_in_queue(methodHandle method);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
417 static int queue_size(int comp_level) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
418 CompileQueue *q = compile_queue(comp_level);
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
419 return q != NULL ? q->size() : 0;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
420 }
23296
f41d4011035d reduced delta against jvmci-9
Doug Simon <doug.simon@oracle.com>
parents: 23295
diff changeset
421 static void compilation_init(TRAPS);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
422 static void init_compiler_thread_log();
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
423 static nmethod* compile_method(methodHandle method,
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
424 int osr_bci,
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
425 int comp_level,
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
426 methodHandle hot_method,
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
427 int hot_count,
4825
20334ed5ed3c 7131259: compile_method and CompilationPolicy::event shouldn't be declared TRAPS
iveresov
parents: 3939
diff changeset
428 const char* comment, Thread* thread);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
429
13969
fe034af88233 Acquire proper locks before calling assign_compile_id
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13630
diff changeset
430 // Acquire any needed locks and assign a compile id
fe034af88233 Acquire proper locks before calling assign_compile_id
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13630
diff changeset
431 static uint assign_compile_id_unlocked(Thread* thread, methodHandle method, int osr_bci);
13630
b1838411e896 Use compile ids assigned by hotspot
Tom Rodriguez <tom.rodriguez@oracle.com>
parents: 13364
diff changeset
432
0
a61af66fc99e Initial load
duke
parents:
diff changeset
433 static void compiler_thread_loop();
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
434 static uint get_compilation_id() { return _compilation_id; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
435
a61af66fc99e Initial load
duke
parents:
diff changeset
436 // Set _should_block.
a61af66fc99e Initial load
duke
parents:
diff changeset
437 // Call this from the VM, with Threads_lock held and a safepoint requested.
a61af66fc99e Initial load
duke
parents:
diff changeset
438 static void set_should_block();
a61af66fc99e Initial load
duke
parents:
diff changeset
439
a61af66fc99e Initial load
duke
parents:
diff changeset
440 // Call this from the compiler at convenient points, to poll for _should_block.
a61af66fc99e Initial load
duke
parents:
diff changeset
441 static void maybe_block();
a61af66fc99e Initial load
duke
parents:
diff changeset
442
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
443 enum {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
444 // Flags for toggling compiler activity
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
445 stop_compilation = 0,
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
446 run_compilation = 1,
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
447 shutdown_compilaton = 2
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
448 };
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
449
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
450 static bool should_compile_new_jobs() { return UseCompiler && (_should_compile_new_jobs == run_compilation); }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
451 static bool set_should_compile_new_jobs(jint new_state) {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
452 // Return success if the current caller set it
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
453 jint old = Atomic::cmpxchg(new_state, &_should_compile_new_jobs, 1-new_state);
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
454 return (old == (1-new_state));
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
455 }
12880
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
456
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
457 static void disable_compilation_forever() {
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
458 UseCompiler = false;
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
459 AlwaysCompileLoopMethods = false;
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
460 Atomic::xchg(shutdown_compilaton, &_should_compile_new_jobs);
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
461 }
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
462
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
463 static bool is_compilation_disabled_forever() {
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
464 return _should_compile_new_jobs == shutdown_compilaton;
469216acdb28 8023014: CodeSweeperSweepNoFlushTest.java fails with HS crash
anoll
parents: 10405
diff changeset
465 }
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
466 static void handle_full_code_cache();
13074
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12880
diff changeset
467 // Ensures that warning is only printed once.
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12880
diff changeset
468 static bool should_print_compiler_warning() {
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12880
diff changeset
469 jint old = Atomic::cmpxchg(1, &_print_compilation_warning, 0);
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12880
diff changeset
470 return old == 0;
78da3894b86f 8027593: performance drop with constrained codecache starting with hs25 b111
anoll
parents: 12880
diff changeset
471 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
472 // Return total compilation ticks
a61af66fc99e Initial load
duke
parents:
diff changeset
473 static jlong total_compilation_ticks() {
a61af66fc99e Initial load
duke
parents:
diff changeset
474 return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
475 }
a61af66fc99e Initial load
duke
parents:
diff changeset
476
6725
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
477 // Redefine Classes support
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
478 static void mark_on_stack();
da91efe96a93 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 6266
diff changeset
479
22298
c28cb37b2e1d Rename JVMCI to INCLUDE_JVMCI.
twisti
parents: 21559
diff changeset
480 #if INCLUDE_JVMCI
16006
66a9286203a2 decoupled Graal runtime initialization and Graal compilation queue initialization
Doug Simon <doug.simon@oracle.com>
parents: 15463
diff changeset
481 // Print curent compilation time stats for a given compiler
66a9286203a2 decoupled Graal runtime initialization and Graal compilation queue initialization
Doug Simon <doug.simon@oracle.com>
parents: 15463
diff changeset
482 static void print_times(AbstractCompiler* comp);
66a9286203a2 decoupled Graal runtime initialization and Graal compilation queue initialization
Doug Simon <doug.simon@oracle.com>
parents: 15463
diff changeset
483 #endif
66a9286203a2 decoupled Graal runtime initialization and Graal compilation queue initialization
Doug Simon <doug.simon@oracle.com>
parents: 15463
diff changeset
484
0
a61af66fc99e Initial load
duke
parents:
diff changeset
485 // Print a detailed accounting of compilation time
13364
5a4293f24642 added -G:PrintCompRate option for periodically printing out the current compilation rate
Doug Simon <doug.simon@oracle.com>
parents: 13086
diff changeset
486 static void print_times(bool per_compiler = true, bool aggregate = true);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
487
a61af66fc99e Initial load
duke
parents:
diff changeset
488 // Debugging output for failure
a61af66fc99e Initial load
duke
parents:
diff changeset
489 static void print_last_compile();
a61af66fc99e Initial load
duke
parents:
diff changeset
490
a61af66fc99e Initial load
duke
parents:
diff changeset
491 static void print_compiler_threads_on(outputStream* st);
8771
75a28f465a12 8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents: 7185
diff changeset
492
75a28f465a12 8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents: 7185
diff changeset
493 // compiler name for debugging
75a28f465a12 8008663: [parfait] Null pointer deference in hotspot/src/share/vm/compiler/compileBroker.cpp
morris
parents: 7185
diff changeset
494 static const char* compiler_name(int comp_level);
10405
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
495
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
496 static int get_total_compile_count() { return _total_compile_count; }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
497 static int get_total_bailout_count() { return _total_bailout_count; }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
498 static int get_total_invalidated_count() { return _total_invalidated_count; }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
499 static int get_total_native_compile_count() { return _total_native_compile_count; }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
500 static int get_total_osr_compile_count() { return _total_osr_compile_count; }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
501 static int get_total_standard_compile_count() { return _total_standard_compile_count; }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
502 static int get_sum_osr_bytes_compiled() { return _sum_osr_bytes_compiled; }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
503 static int get_sum_standard_bytes_compiled() { return _sum_standard_bytes_compiled; }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
504 static int get_sum_nmethod_size() { return _sum_nmethod_size;}
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
505 static int get_sum_nmethod_code_size() { return _sum_nmethod_code_size; }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
506 static long get_peak_compilation_time() { return _peak_compilation_time; }
f2110083203d 8005849: JEP 167: Event-Based JVM Tracing
sla
parents: 8771
diff changeset
507 static long get_total_compilation_time() { return _t_total_compilation.milliseconds(); }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
508 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
509
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
510 #endif // SHARE_VM_COMPILER_COMPILEBROKER_HPP