annotate src/share/vm/compiler/compileBroker.hpp @ 4155:394404b2d9bd

Removed strict requirement for GRAAL environment variable. It only needs to be set now if the graal directory is not in the directory hierarchy of GraalVM JDK.
author Doug Simon <doug.simon@oracle.com>
date Wed, 21 Dec 2011 11:25:27 +0100
parents 716a2c5c0656
children 33df1aeaebbf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
2405
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
2 * Copyright (c) 1999, 2011, 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"
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
31
0
a61af66fc99e Initial load
duke
parents:
diff changeset
32 class nmethod;
a61af66fc99e Initial load
duke
parents:
diff changeset
33 class nmethodLocker;
a61af66fc99e Initial load
duke
parents:
diff changeset
34
a61af66fc99e Initial load
duke
parents:
diff changeset
35 // CompileTask
a61af66fc99e Initial load
duke
parents:
diff changeset
36 //
a61af66fc99e Initial load
duke
parents:
diff changeset
37 // An entry in the compile queue. It represents a pending or current
a61af66fc99e Initial load
duke
parents:
diff changeset
38 // compilation.
a61af66fc99e Initial load
duke
parents:
diff changeset
39 class CompileTask : public CHeapObj {
3939
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 2405
diff changeset
40 friend class VMStructs;
f6f3bb0ee072 7088955: add C2 IR support to the SA
never
parents: 2405
diff changeset
41
0
a61af66fc99e Initial load
duke
parents:
diff changeset
42 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
43 Monitor* _lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
44 uint _compile_id;
a61af66fc99e Initial load
duke
parents:
diff changeset
45 jobject _method;
a61af66fc99e Initial load
duke
parents:
diff changeset
46 int _osr_bci;
a61af66fc99e Initial load
duke
parents:
diff changeset
47 bool _is_complete;
a61af66fc99e Initial load
duke
parents:
diff changeset
48 bool _is_success;
a61af66fc99e Initial load
duke
parents:
diff changeset
49 bool _is_blocking;
a61af66fc99e Initial load
duke
parents:
diff changeset
50 int _comp_level;
a61af66fc99e Initial load
duke
parents:
diff changeset
51 int _num_inlined_bytecodes;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 nmethodLocker* _code_handle; // holder of eventual result
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
53 CompileTask* _next, *_prev;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
54
a61af66fc99e Initial load
duke
parents:
diff changeset
55 // Fields used for logging why the compilation was initiated:
a61af66fc99e Initial load
duke
parents:
diff changeset
56 jlong _time_queued; // in units of os::elapsed_counter()
a61af66fc99e Initial load
duke
parents:
diff changeset
57 jobject _hot_method; // which method actually triggered this task
a61af66fc99e Initial load
duke
parents:
diff changeset
58 int _hot_count; // information about its invocation counter
a61af66fc99e Initial load
duke
parents:
diff changeset
59 const char* _comment; // more info about the task
a61af66fc99e Initial load
duke
parents:
diff changeset
60
a61af66fc99e Initial load
duke
parents:
diff changeset
61 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
62 CompileTask() {
a61af66fc99e Initial load
duke
parents:
diff changeset
63 _lock = new Monitor(Mutex::nonleaf+2, "CompileTaskLock");
a61af66fc99e Initial load
duke
parents:
diff changeset
64 }
a61af66fc99e Initial load
duke
parents:
diff changeset
65
a61af66fc99e Initial load
duke
parents:
diff changeset
66 void initialize(int compile_id, methodHandle method, int osr_bci, int comp_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
67 methodHandle hot_method, int hot_count, const char* comment,
a61af66fc99e Initial load
duke
parents:
diff changeset
68 bool is_blocking);
a61af66fc99e Initial load
duke
parents:
diff changeset
69
a61af66fc99e Initial load
duke
parents:
diff changeset
70 void free();
a61af66fc99e Initial load
duke
parents:
diff changeset
71
a61af66fc99e Initial load
duke
parents:
diff changeset
72 int compile_id() const { return _compile_id; }
a61af66fc99e Initial load
duke
parents:
diff changeset
73 jobject method_handle() const { return _method; }
a61af66fc99e Initial load
duke
parents:
diff changeset
74 int osr_bci() const { return _osr_bci; }
a61af66fc99e Initial load
duke
parents:
diff changeset
75 bool is_complete() const { return _is_complete; }
a61af66fc99e Initial load
duke
parents:
diff changeset
76 bool is_blocking() const { return _is_blocking; }
a61af66fc99e Initial load
duke
parents:
diff changeset
77 bool is_success() const { return _is_success; }
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 nmethodLocker* code_handle() const { return _code_handle; }
a61af66fc99e Initial load
duke
parents:
diff changeset
80 void set_code_handle(nmethodLocker* l) { _code_handle = l; }
a61af66fc99e Initial load
duke
parents:
diff changeset
81 nmethod* code() const; // _code_handle->code()
a61af66fc99e Initial load
duke
parents:
diff changeset
82 void set_code(nmethod* nm); // _code_handle->set_code(nm)
a61af66fc99e Initial load
duke
parents:
diff changeset
83
a61af66fc99e Initial load
duke
parents:
diff changeset
84 Monitor* lock() const { return _lock; }
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 void mark_complete() { _is_complete = true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
87 void mark_success() { _is_success = true; }
a61af66fc99e Initial load
duke
parents:
diff changeset
88
a61af66fc99e Initial load
duke
parents:
diff changeset
89 int comp_level() { return _comp_level;}
a61af66fc99e Initial load
duke
parents:
diff changeset
90 void set_comp_level(int comp_level) { _comp_level = comp_level;}
a61af66fc99e Initial load
duke
parents:
diff changeset
91
a61af66fc99e Initial load
duke
parents:
diff changeset
92 int num_inlined_bytecodes() const { return _num_inlined_bytecodes; }
a61af66fc99e Initial load
duke
parents:
diff changeset
93 void set_num_inlined_bytecodes(int n) { _num_inlined_bytecodes = n; }
a61af66fc99e Initial load
duke
parents:
diff changeset
94
a61af66fc99e Initial load
duke
parents:
diff changeset
95 CompileTask* next() const { return _next; }
a61af66fc99e Initial load
duke
parents:
diff changeset
96 void set_next(CompileTask* next) { _next = next; }
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
97 CompileTask* prev() const { return _prev; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
98 void set_prev(CompileTask* prev) { _prev = prev; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
99
2405
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
100 private:
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
101 static void print_compilation_impl(outputStream* st, methodOop method, int compile_id, int comp_level, bool is_osr_method = false, int osr_bci = -1, bool is_blocking = false, const char* msg = NULL);
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
102
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
103 public:
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
104 void print_compilation(outputStream* st = tty);
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
105 static void print_compilation(outputStream* st, const nmethod* nm, const char* msg = NULL) {
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
106 print_compilation_impl(st, nm->method(), nm->compile_id(), nm->comp_level(), nm->is_osr_method(), nm->is_osr_method() ? nm->osr_entry_bci() : -1, /*is_blocking*/ false, msg);
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
107 }
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
108
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
109 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
110 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
111 print_inlining(tty, method, inline_level, bci, msg);
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
112 }
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
113
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
114 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
115
0
a61af66fc99e Initial load
duke
parents:
diff changeset
116 void print();
a61af66fc99e Initial load
duke
parents:
diff changeset
117 void print_line();
2405
3d58a4983660 7022998: JSR 292 recursive method handle calls inline themselves infinitely
twisti
parents: 1972
diff changeset
118 void print_line_on_error(outputStream* st, char* buf, int buflen);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
119
0
a61af66fc99e Initial load
duke
parents:
diff changeset
120 void log_task(xmlStream* log);
a61af66fc99e Initial load
duke
parents:
diff changeset
121 void log_task_queued();
a61af66fc99e Initial load
duke
parents:
diff changeset
122 void log_task_start(CompileLog* log);
a61af66fc99e Initial load
duke
parents:
diff changeset
123 void log_task_done(CompileLog* log);
a61af66fc99e Initial load
duke
parents:
diff changeset
124 };
a61af66fc99e Initial load
duke
parents:
diff changeset
125
a61af66fc99e Initial load
duke
parents:
diff changeset
126 // CompilerCounters
a61af66fc99e Initial load
duke
parents:
diff changeset
127 //
a61af66fc99e Initial load
duke
parents:
diff changeset
128 // Per Compiler Performance Counters.
a61af66fc99e Initial load
duke
parents:
diff changeset
129 //
a61af66fc99e Initial load
duke
parents:
diff changeset
130 class CompilerCounters : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
131
a61af66fc99e Initial load
duke
parents:
diff changeset
132 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
133 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
134 cmname_buffer_length = 160
a61af66fc99e Initial load
duke
parents:
diff changeset
135 };
a61af66fc99e Initial load
duke
parents:
diff changeset
136
a61af66fc99e Initial load
duke
parents:
diff changeset
137 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
138
a61af66fc99e Initial load
duke
parents:
diff changeset
139 char _current_method[cmname_buffer_length];
a61af66fc99e Initial load
duke
parents:
diff changeset
140 PerfStringVariable* _perf_current_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
141
a61af66fc99e Initial load
duke
parents:
diff changeset
142 int _compile_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
143 PerfVariable* _perf_compile_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
144
a61af66fc99e Initial load
duke
parents:
diff changeset
145 PerfCounter* _perf_time;
a61af66fc99e Initial load
duke
parents:
diff changeset
146 PerfCounter* _perf_compiles;
a61af66fc99e Initial load
duke
parents:
diff changeset
147
a61af66fc99e Initial load
duke
parents:
diff changeset
148 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
149 CompilerCounters(const char* name, int instance, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
150
a61af66fc99e Initial load
duke
parents:
diff changeset
151 // these methods should be called in a thread safe context
a61af66fc99e Initial load
duke
parents:
diff changeset
152
a61af66fc99e Initial load
duke
parents:
diff changeset
153 void set_current_method(const char* method) {
a61af66fc99e Initial load
duke
parents:
diff changeset
154 strncpy(_current_method, method, (size_t)cmname_buffer_length);
a61af66fc99e Initial load
duke
parents:
diff changeset
155 if (UsePerfData) _perf_current_method->set_value(method);
a61af66fc99e Initial load
duke
parents:
diff changeset
156 }
a61af66fc99e Initial load
duke
parents:
diff changeset
157
a61af66fc99e Initial load
duke
parents:
diff changeset
158 char* current_method() { return _current_method; }
a61af66fc99e Initial load
duke
parents:
diff changeset
159
a61af66fc99e Initial load
duke
parents:
diff changeset
160 void set_compile_type(int compile_type) {
a61af66fc99e Initial load
duke
parents:
diff changeset
161 _compile_type = compile_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
162 if (UsePerfData) _perf_compile_type->set_value((jlong)compile_type);
a61af66fc99e Initial load
duke
parents:
diff changeset
163 }
a61af66fc99e Initial load
duke
parents:
diff changeset
164
a61af66fc99e Initial load
duke
parents:
diff changeset
165 int compile_type() { return _compile_type; }
a61af66fc99e Initial load
duke
parents:
diff changeset
166
a61af66fc99e Initial load
duke
parents:
diff changeset
167 PerfCounter* time_counter() { return _perf_time; }
a61af66fc99e Initial load
duke
parents:
diff changeset
168 PerfCounter* compile_counter() { return _perf_compiles; }
a61af66fc99e Initial load
duke
parents:
diff changeset
169 };
a61af66fc99e Initial load
duke
parents:
diff changeset
170
a61af66fc99e Initial load
duke
parents:
diff changeset
171 // CompileQueue
a61af66fc99e Initial load
duke
parents:
diff changeset
172 //
a61af66fc99e Initial load
duke
parents:
diff changeset
173 // A list of CompileTasks.
a61af66fc99e Initial load
duke
parents:
diff changeset
174 class CompileQueue : public CHeapObj {
a61af66fc99e Initial load
duke
parents:
diff changeset
175 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
176 const char* _name;
a61af66fc99e Initial load
duke
parents:
diff changeset
177 Monitor* _lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
178
a61af66fc99e Initial load
duke
parents:
diff changeset
179 CompileTask* _first;
a61af66fc99e Initial load
duke
parents:
diff changeset
180 CompileTask* _last;
a61af66fc99e Initial load
duke
parents:
diff changeset
181
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
182 int _size;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
183 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
184 CompileQueue(const char* name, Monitor* lock) {
a61af66fc99e Initial load
duke
parents:
diff changeset
185 _name = name;
a61af66fc99e Initial load
duke
parents:
diff changeset
186 _lock = lock;
a61af66fc99e Initial load
duke
parents:
diff changeset
187 _first = NULL;
a61af66fc99e Initial load
duke
parents:
diff changeset
188 _last = NULL;
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
189 _size = 0;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
190 }
a61af66fc99e Initial load
duke
parents:
diff changeset
191
a61af66fc99e Initial load
duke
parents:
diff changeset
192 const char* name() const { return _name; }
a61af66fc99e Initial load
duke
parents:
diff changeset
193 Monitor* lock() const { return _lock; }
a61af66fc99e Initial load
duke
parents:
diff changeset
194
a61af66fc99e Initial load
duke
parents:
diff changeset
195 void add(CompileTask* task);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
196 void remove(CompileTask* task);
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
197 CompileTask* first() { return _first; }
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
198 CompileTask* last() { return _last; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
199
4139
feb590a8497f remove pollJavaQueue and related functionality, minimize diff against HotSpot in the compileBroker.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents: 4137
diff changeset
200 CompileTask* get();
0
a61af66fc99e Initial load
duke
parents:
diff changeset
201
a61af66fc99e Initial load
duke
parents:
diff changeset
202 bool is_empty() const { return _first == NULL; }
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
203 int size() const { return _size; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
204
a61af66fc99e Initial load
duke
parents:
diff changeset
205 void print();
a61af66fc99e Initial load
duke
parents:
diff changeset
206 };
a61af66fc99e Initial load
duke
parents:
diff changeset
207
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
208 // CompileTaskWrapper
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
209 //
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
210 // Assign this task to the current thread. Deallocate the task
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
211 // when the compilation is complete.
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
212 class CompileTaskWrapper : StackObj {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
213 public:
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
214 CompileTaskWrapper(CompileTask* task);
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
215 ~CompileTaskWrapper();
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
216 };
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
217
0
a61af66fc99e Initial load
duke
parents:
diff changeset
218
a61af66fc99e Initial load
duke
parents:
diff changeset
219 // Compilation
a61af66fc99e Initial load
duke
parents:
diff changeset
220 //
a61af66fc99e Initial load
duke
parents:
diff changeset
221 // The broker for all compilation requests.
a61af66fc99e Initial load
duke
parents:
diff changeset
222 class CompileBroker: AllStatic {
a61af66fc99e Initial load
duke
parents:
diff changeset
223 friend class Threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
224 friend class CompileTaskWrapper;
a61af66fc99e Initial load
duke
parents:
diff changeset
225
a61af66fc99e Initial load
duke
parents:
diff changeset
226 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
227 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
228 name_buffer_length = 100
a61af66fc99e Initial load
duke
parents:
diff changeset
229 };
a61af66fc99e Initial load
duke
parents:
diff changeset
230
a61af66fc99e Initial load
duke
parents:
diff changeset
231 // Compile type Information for print_last_compile() and CompilerCounters
a61af66fc99e Initial load
duke
parents:
diff changeset
232 enum { no_compile, normal_compile, osr_compile, native_compile };
a61af66fc99e Initial load
duke
parents:
diff changeset
233
a61af66fc99e Initial load
duke
parents:
diff changeset
234 private:
a61af66fc99e Initial load
duke
parents:
diff changeset
235 static bool _initialized;
a61af66fc99e Initial load
duke
parents:
diff changeset
236 static volatile bool _should_block;
a61af66fc99e Initial load
duke
parents:
diff changeset
237
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
238 // 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
239 static volatile jint _should_compile_new_jobs;
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
240
0
a61af66fc99e Initial load
duke
parents:
diff changeset
241 // The installed compiler(s)
a61af66fc99e Initial load
duke
parents:
diff changeset
242 static AbstractCompiler* _compilers[2];
a61af66fc99e Initial load
duke
parents:
diff changeset
243
a61af66fc99e Initial load
duke
parents:
diff changeset
244 // These counters are used for assigning id's to each compilation
a61af66fc99e Initial load
duke
parents:
diff changeset
245 static uint _compilation_id;
a61af66fc99e Initial load
duke
parents:
diff changeset
246 static uint _osr_compilation_id;
a61af66fc99e Initial load
duke
parents:
diff changeset
247 static uint _native_compilation_id;
a61af66fc99e Initial load
duke
parents:
diff changeset
248
a61af66fc99e Initial load
duke
parents:
diff changeset
249 static int _last_compile_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
250 static int _last_compile_level;
a61af66fc99e Initial load
duke
parents:
diff changeset
251 static char _last_method_compiled[name_buffer_length];
a61af66fc99e Initial load
duke
parents:
diff changeset
252
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
253 static CompileQueue* _c2_method_queue;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
254 static CompileQueue* _c1_method_queue;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
255 static CompileTask* _task_free_list;
a61af66fc99e Initial load
duke
parents:
diff changeset
256
a61af66fc99e Initial load
duke
parents:
diff changeset
257 static GrowableArray<CompilerThread*>* _method_threads;
a61af66fc99e Initial load
duke
parents:
diff changeset
258
a61af66fc99e Initial load
duke
parents:
diff changeset
259 // performance counters
a61af66fc99e Initial load
duke
parents:
diff changeset
260 static PerfCounter* _perf_total_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
261 static PerfCounter* _perf_native_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
262 static PerfCounter* _perf_osr_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
263 static PerfCounter* _perf_standard_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
264
a61af66fc99e Initial load
duke
parents:
diff changeset
265 static PerfCounter* _perf_total_bailout_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
266 static PerfCounter* _perf_total_invalidated_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
267 static PerfCounter* _perf_total_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
268 static PerfCounter* _perf_total_native_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
269 static PerfCounter* _perf_total_osr_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
270 static PerfCounter* _perf_total_standard_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
271
a61af66fc99e Initial load
duke
parents:
diff changeset
272 static PerfCounter* _perf_sum_osr_bytes_compiled;
a61af66fc99e Initial load
duke
parents:
diff changeset
273 static PerfCounter* _perf_sum_standard_bytes_compiled;
a61af66fc99e Initial load
duke
parents:
diff changeset
274 static PerfCounter* _perf_sum_nmethod_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
275 static PerfCounter* _perf_sum_nmethod_code_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
276
a61af66fc99e Initial load
duke
parents:
diff changeset
277 static PerfStringVariable* _perf_last_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
278 static PerfStringVariable* _perf_last_failed_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
279 static PerfStringVariable* _perf_last_invalidated_method;
a61af66fc99e Initial load
duke
parents:
diff changeset
280 static PerfVariable* _perf_last_compile_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
281 static PerfVariable* _perf_last_compile_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
282 static PerfVariable* _perf_last_failed_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
283 static PerfVariable* _perf_last_invalidated_type;
a61af66fc99e Initial load
duke
parents:
diff changeset
284
a61af66fc99e Initial load
duke
parents:
diff changeset
285 // Timers and counters for generating statistics
a61af66fc99e Initial load
duke
parents:
diff changeset
286 static elapsedTimer _t_total_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
287 static elapsedTimer _t_osr_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
288 static elapsedTimer _t_standard_compilation;
a61af66fc99e Initial load
duke
parents:
diff changeset
289
a61af66fc99e Initial load
duke
parents:
diff changeset
290 static int _total_bailout_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
291 static int _total_invalidated_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
292 static int _total_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
293 static int _total_native_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
294 static int _total_osr_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
295 static int _total_standard_compile_count;
a61af66fc99e Initial load
duke
parents:
diff changeset
296
a61af66fc99e Initial load
duke
parents:
diff changeset
297 static int _sum_osr_bytes_compiled;
a61af66fc99e Initial load
duke
parents:
diff changeset
298 static int _sum_standard_bytes_compiled;
a61af66fc99e Initial load
duke
parents:
diff changeset
299 static int _sum_nmethod_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
300 static int _sum_nmethod_code_size;
a61af66fc99e Initial load
duke
parents:
diff changeset
301
a61af66fc99e Initial load
duke
parents:
diff changeset
302 static CompilerThread* make_compiler_thread(const char* name, CompileQueue* queue, CompilerCounters* counters, TRAPS);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
303 static void init_compiler_threads(int c1_compiler_count, int c2_compiler_count);
0
a61af66fc99e Initial load
duke
parents:
diff changeset
304 static bool compilation_is_complete (methodHandle method, int osr_bci, int comp_level);
a61af66fc99e Initial load
duke
parents:
diff changeset
305 static bool compilation_is_prohibited(methodHandle method, int osr_bci, int comp_level);
a61af66fc99e Initial load
duke
parents:
diff changeset
306 static uint assign_compile_id (methodHandle method, int osr_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
307 static bool is_compile_blocking (methodHandle method, int osr_bci);
a61af66fc99e Initial load
duke
parents:
diff changeset
308 static void preload_classes (methodHandle method, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
309
a61af66fc99e Initial load
duke
parents:
diff changeset
310 static CompileTask* create_compile_task(CompileQueue* queue,
a61af66fc99e Initial load
duke
parents:
diff changeset
311 int compile_id,
a61af66fc99e Initial load
duke
parents:
diff changeset
312 methodHandle method,
a61af66fc99e Initial load
duke
parents:
diff changeset
313 int osr_bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
314 int comp_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
315 methodHandle hot_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
316 int hot_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
317 const char* comment,
a61af66fc99e Initial load
duke
parents:
diff changeset
318 bool blocking);
a61af66fc99e Initial load
duke
parents:
diff changeset
319 static CompileTask* allocate_task();
a61af66fc99e Initial load
duke
parents:
diff changeset
320 static void free_task(CompileTask* task);
a61af66fc99e Initial load
duke
parents:
diff changeset
321 static void wait_for_completion(CompileTask* task);
a61af66fc99e Initial load
duke
parents:
diff changeset
322
a61af66fc99e Initial load
duke
parents:
diff changeset
323 static void invoke_compiler_on_method(CompileTask* task);
a61af66fc99e Initial load
duke
parents:
diff changeset
324 static void set_last_compile(CompilerThread *thread, methodHandle method, bool is_osr, int comp_level);
a61af66fc99e Initial load
duke
parents:
diff changeset
325 static void push_jni_handle_block();
a61af66fc99e Initial load
duke
parents:
diff changeset
326 static void pop_jni_handle_block();
a61af66fc99e Initial load
duke
parents:
diff changeset
327 static bool check_break_at(methodHandle method, int compile_id, bool is_osr);
a61af66fc99e Initial load
duke
parents:
diff changeset
328 static void collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task);
a61af66fc99e Initial load
duke
parents:
diff changeset
329
a61af66fc99e Initial load
duke
parents:
diff changeset
330 static void compile_method_base(methodHandle method,
a61af66fc99e Initial load
duke
parents:
diff changeset
331 int osr_bci,
a61af66fc99e Initial load
duke
parents:
diff changeset
332 int comp_level,
a61af66fc99e Initial load
duke
parents:
diff changeset
333 methodHandle hot_method,
a61af66fc99e Initial load
duke
parents:
diff changeset
334 int hot_count,
a61af66fc99e Initial load
duke
parents:
diff changeset
335 const char* comment,
a61af66fc99e Initial load
duke
parents:
diff changeset
336 TRAPS);
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
337 static CompileQueue* compile_queue(int comp_level) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
338 if (is_c2_compile(comp_level)) return _c2_method_queue;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
339 if (is_c1_compile(comp_level)) return _c1_method_queue;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
340 return NULL;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
341 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
342 public:
a61af66fc99e Initial load
duke
parents:
diff changeset
343 enum {
a61af66fc99e Initial load
duke
parents:
diff changeset
344 // The entry bci used for non-OSR compilations.
a61af66fc99e Initial load
duke
parents:
diff changeset
345 standard_entry_bci = InvocationEntryBci
a61af66fc99e Initial load
duke
parents:
diff changeset
346 };
a61af66fc99e Initial load
duke
parents:
diff changeset
347
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
348 static AbstractCompiler* compiler(int comp_level) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
349 if (is_c2_compile(comp_level)) return _compilers[1]; // C2
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
350 if (is_c1_compile(comp_level)) return _compilers[0]; // C1
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
351 return NULL;
0
a61af66fc99e Initial load
duke
parents:
diff changeset
352 }
a61af66fc99e Initial load
duke
parents:
diff changeset
353
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
354 static bool compilation_is_in_queue(methodHandle method, int osr_bci);
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
355 static int queue_size(int comp_level) {
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
356 CompileQueue *q = compile_queue(comp_level);
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
357 return q != NULL ? q->size() : 0;
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
358 }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
359 static void compilation_init();
a61af66fc99e Initial load
duke
parents:
diff changeset
360 static void init_compiler_thread_log();
1783
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
361 static nmethod* compile_method(methodHandle method,
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
362 int osr_bci,
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
363 int comp_level,
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
364 methodHandle hot_method,
d5d065957597 6953144: Tiered compilation
iveresov
parents: 1552
diff changeset
365 int hot_count,
0
a61af66fc99e Initial load
duke
parents:
diff changeset
366 const char* comment, TRAPS);
a61af66fc99e Initial load
duke
parents:
diff changeset
367
a61af66fc99e Initial load
duke
parents:
diff changeset
368 static void compiler_thread_loop();
a61af66fc99e Initial load
duke
parents:
diff changeset
369
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
370 static uint get_compilation_id() { return _compilation_id; }
0
a61af66fc99e Initial load
duke
parents:
diff changeset
371 static bool is_idle();
a61af66fc99e Initial load
duke
parents:
diff changeset
372
a61af66fc99e Initial load
duke
parents:
diff changeset
373 // Set _should_block.
a61af66fc99e Initial load
duke
parents:
diff changeset
374 // Call this from the VM, with Threads_lock held and a safepoint requested.
a61af66fc99e Initial load
duke
parents:
diff changeset
375 static void set_should_block();
a61af66fc99e Initial load
duke
parents:
diff changeset
376
a61af66fc99e Initial load
duke
parents:
diff changeset
377 // Call this from the compiler at convenient points, to poll for _should_block.
a61af66fc99e Initial load
duke
parents:
diff changeset
378 static void maybe_block();
a61af66fc99e Initial load
duke
parents:
diff changeset
379
1202
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
380 enum {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
381 // Flags for toggling compiler activity
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
382 stop_compilation = 0,
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
383 run_compilation = 1
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
384 };
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
385
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
386 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
387 static bool set_should_compile_new_jobs(jint new_state) {
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
388 // Return success if the current caller set it
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
389 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
390 return (old == (1-new_state));
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
391 }
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
392 static void handle_full_code_cache();
5f24d0319e54 4360113: Evict nmethods when code cache gets full
kvn
parents: 0
diff changeset
393
0
a61af66fc99e Initial load
duke
parents:
diff changeset
394 // Return total compilation ticks
a61af66fc99e Initial load
duke
parents:
diff changeset
395 static jlong total_compilation_ticks() {
a61af66fc99e Initial load
duke
parents:
diff changeset
396 return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
397 }
a61af66fc99e Initial load
duke
parents:
diff changeset
398
a61af66fc99e Initial load
duke
parents:
diff changeset
399 // Print a detailed accounting of compilation time
a61af66fc99e Initial load
duke
parents:
diff changeset
400 static void print_times();
a61af66fc99e Initial load
duke
parents:
diff changeset
401
a61af66fc99e Initial load
duke
parents:
diff changeset
402 // Debugging output for failure
a61af66fc99e Initial load
duke
parents:
diff changeset
403 static void print_last_compile();
a61af66fc99e Initial load
duke
parents:
diff changeset
404
a61af66fc99e Initial load
duke
parents:
diff changeset
405 static void print_compiler_threads_on(outputStream* st);
a61af66fc99e Initial load
duke
parents:
diff changeset
406 };
1972
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
407
f95d63e2154a 6989984: Use standard include model for Hospot
stefank
parents: 1783
diff changeset
408 #endif // SHARE_VM_COMPILER_COMPILEBROKER_HPP