14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25 #ifndef SHARE_COMPILER_COMPILETASK_HPP
26 #define SHARE_COMPILER_COMPILETASK_HPP
27
28 #include "ci/ciMethod.hpp"
29 #include "code/nmethod.hpp"
30 #include "compiler/compileLog.hpp"
31 #include "memory/allocation.hpp"
32 #include "utilities/xmlstream.hpp"
33
34 class DirectiveSet;
35
36 JVMCI_ONLY(class JVMCICompileState;)
37
38 enum class InliningResult { SUCCESS, FAILURE };
39
40 inline InliningResult inlining_result_of(bool success) {
41 return success ? InliningResult::SUCCESS : InliningResult::FAILURE;
42 }
43
44 // CompileTask
45 //
46 // An entry in the compile queue. It represents a pending or current
47 // compilation.
48
49 class CompileTask : public CHeapObj<mtCompiler> {
50 friend class VMStructs;
51 friend class JVMCIVMStructs;
52
53 public:
54 // Different reasons for a compilation
55 // The order is important - mapped to reason_names[]
56 enum CompileReason {
57 Reason_None,
58 Reason_InvocationCount, // Simple/StackWalk-policy
59 Reason_BackedgeCount, // Simple/StackWalk-policy
60 Reason_Tiered, // Tiered-policy
61 Reason_Replay, // ciReplay
62 Reason_Whitebox, // Whitebox API
63 Reason_MustBeCompiled, // Used for -Xcomp or AlwaysCompileLoopMethods (see CompilationPolicy::must_be_compiled())
64 Reason_Bootstrap, // JVMCI bootstrap
65 Reason_Count
66 };
67
68 static const char* reason_name(CompileTask::CompileReason compile_reason) {
69 static const char* reason_names[] = {
70 "no_reason",
71 "count",
72 "backedge_count",
73 "tiered",
74 "replay",
75 "whitebox",
76 "must_be_compiled",
77 "bootstrap"
78 };
79 return reason_names[compile_reason];
80 }
81
82 private:
83 static CompileTask* _task_free_list;
84 Monitor* _lock;
85 int _compile_id;
86 Method* _method;
87 jobject _method_holder;
88 int _osr_bci;
89 bool _is_complete;
90 bool _is_success;
91 bool _is_blocking;
92 CodeSection::csize_t _nm_content_size;
93 CodeSection::csize_t _nm_total_size;
94 CodeSection::csize_t _nm_insts_size;
95 DirectiveSet* _directive;
96 #if INCLUDE_JVMCI
97 bool _has_waiter;
98 // Compilation state for a blocking JVMCI compilation
99 JVMCICompileState* _blocking_jvmci_compile_state;
100 #endif
101 int _waiting_count; // See waiting_for_completion_count()
102 int _comp_level;
103 int _num_inlined_bytecodes;
104 CompileTask* _next, *_prev;
105 bool _is_free;
106 // Fields used for logging why the compilation was initiated:
107 jlong _time_queued; // time when task was enqueued
108 jlong _time_started; // time when compilation started
109 Method* _hot_method; // which method actually triggered this task
110 jobject _hot_method_holder;
111 int _hot_count; // information about its invocation counter
112 CompileReason _compile_reason; // more info about the task
113 const char* _failure_reason;
114 // Specifies if _failure_reason is on the C heap.
115 bool _failure_reason_on_C_heap;
116 size_t _arena_bytes; // peak size of temporary memory during compilation (e.g. node arenas)
117
118 public:
119 CompileTask() : _failure_reason(nullptr), _failure_reason_on_C_heap(false) {
120 // May hold MethodCompileQueue_lock
121 _lock = new Monitor(Mutex::safepoint-1, "CompileTask_lock");
122 }
123
124 void initialize(int compile_id, const methodHandle& method, int osr_bci, int comp_level,
125 const methodHandle& hot_method, int hot_count,
126 CompileTask::CompileReason compile_reason, bool is_blocking);
127
128 static CompileTask* allocate();
129 static void free(CompileTask* task);
130
131 int compile_id() const { return _compile_id; }
132 Method* method() const { return _method; }
133 Method* hot_method() const { return _hot_method; }
134 int osr_bci() const { return _osr_bci; }
135 bool is_complete() const { return _is_complete; }
136 bool is_blocking() const { return _is_blocking; }
137 bool is_success() const { return _is_success; }
138 DirectiveSet* directive() const { return _directive; }
139 CodeSection::csize_t nm_content_size() { return _nm_content_size; }
140 void set_nm_content_size(CodeSection::csize_t size) { _nm_content_size = size; }
141 CodeSection::csize_t nm_insts_size() { return _nm_insts_size; }
142 void set_nm_insts_size(CodeSection::csize_t size) { _nm_insts_size = size; }
143 CodeSection::csize_t nm_total_size() { return _nm_total_size; }
144 void set_nm_total_size(CodeSection::csize_t size) { _nm_total_size = size; }
145 bool can_become_stale() const {
146 switch (_compile_reason) {
147 case Reason_BackedgeCount:
148 case Reason_InvocationCount:
149 case Reason_Tiered:
150 return !_is_blocking;
151 default:
152 return false;
153 }
154 }
155 #if INCLUDE_JVMCI
156 bool should_wait_for_compilation() const {
157 // Wait for blocking compilation to finish.
158 switch (_compile_reason) {
159 case Reason_Replay:
160 case Reason_Whitebox:
161 case Reason_Bootstrap:
162 return _is_blocking;
163 default:
164 return false;
165 }
166 }
167
168 bool has_waiter() const { return _has_waiter; }
169 void clear_waiter() { _has_waiter = false; }
170 JVMCICompileState* blocking_jvmci_compile_state() const { return _blocking_jvmci_compile_state; }
171 void set_blocking_jvmci_compile_state(JVMCICompileState* state) {
172 _blocking_jvmci_compile_state = state;
173 }
174 #endif
175
176 Monitor* lock() const { return _lock; }
177
178 // See how many threads are waiting for this task. Must have lock to read this.
179 int waiting_for_completion_count() {
180 assert(_lock->owned_by_self(), "must have lock to use waiting_for_completion_count()");
181 return _waiting_count;
182 }
183 // Indicates that a thread is waiting for this task to complete. Must have lock to use this.
184 void inc_waiting_for_completion() {
185 assert(_lock->owned_by_self(), "must have lock to use inc_waiting_for_completion()");
186 _waiting_count++;
187 }
188 // Indicates that a thread stopped waiting for this task to complete. Must have lock to use this.
189 void dec_waiting_for_completion() {
190 assert(_lock->owned_by_self(), "must have lock to use dec_waiting_for_completion()");
191 assert(_waiting_count > 0, "waiting count is not positive");
192 _waiting_count--;
193 }
194
195 void mark_complete() { _is_complete = true; }
196 void mark_success() { _is_success = true; }
197 void mark_started(jlong time) { _time_started = time; }
198
199 int comp_level() { return _comp_level;}
200 void set_comp_level(int comp_level) { _comp_level = comp_level;}
201
202 CompileReason compile_reason() { return _compile_reason; }
203
204 AbstractCompiler* compiler() const;
205 CompileTask* select_for_compilation();
206
207 int num_inlined_bytecodes() const { return _num_inlined_bytecodes; }
208 void set_num_inlined_bytecodes(int n) { _num_inlined_bytecodes = n; }
209
210 CompileTask* next() const { return _next; }
211 void set_next(CompileTask* next) { _next = next; }
212 CompileTask* prev() const { return _prev; }
213 void set_prev(CompileTask* prev) { _prev = prev; }
214 bool is_free() const { return _is_free; }
215 void set_is_free(bool val) { _is_free = val; }
216 bool is_unloaded() const;
217
218 // RedefineClasses support
219 void metadata_do(MetadataClosure* f);
220 void mark_on_stack();
221
222 void set_arena_bytes(size_t s) { _arena_bytes = s; }
223 size_t arena_bytes() const { return _arena_bytes; }
224
225 private:
226 static void print_impl(outputStream* st, Method* method, int compile_id, int comp_level,
227 bool is_osr_method = false, int osr_bci = -1, bool is_blocking = false,
228 const char* msg = nullptr, bool short_form = false, bool cr = true,
229 jlong time_queued = 0, jlong time_started = 0);
230
231 public:
232 void print(outputStream* st = tty, const char* msg = nullptr, bool short_form = false, bool cr = true);
233 void print_ul(const char* msg = nullptr);
234 static void print(outputStream* st, const nmethod* nm, const char* msg = nullptr, bool short_form = false, bool cr = true) {
235 print_impl(st, nm->method(), nm->compile_id(), nm->comp_level(),
236 nm->is_osr_method(), nm->is_osr_method() ? nm->osr_entry_bci() : -1, /*is_blocking*/ false,
237 msg, short_form, cr);
238 }
239 static void print_ul(const nmethod* nm, const char* msg = nullptr);
240
241 /**
242 * @deprecated Please rely on Compile::inline_printer. Do not directly write inlining information to tty.
243 */
244 static void print_inline_indent(int inline_level, outputStream* st = tty);
245
246 void print_tty();
247 void print_line_on_error(outputStream* st, char* buf, int buflen);
248
249 void log_task(xmlStream* log);
250 void log_task_queued();
251 void log_task_start(CompileLog* log);
252 void log_task_done(CompileLog* log);
253
254 void set_failure_reason(const char* reason, bool on_C_heap = false) {
255 _failure_reason = reason;
256 _failure_reason_on_C_heap = on_C_heap;
257 }
|
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25 #ifndef SHARE_COMPILER_COMPILETASK_HPP
26 #define SHARE_COMPILER_COMPILETASK_HPP
27
28 #include "ci/ciMethod.hpp"
29 #include "code/nmethod.hpp"
30 #include "compiler/compileLog.hpp"
31 #include "memory/allocation.hpp"
32 #include "utilities/xmlstream.hpp"
33
34 class CompileQueue;
35 class CompileTrainingData;
36 class DirectiveSet;
37 class AOTCodeEntry;
38
39 JVMCI_ONLY(class JVMCICompileState;)
40
41 enum class InliningResult { SUCCESS, FAILURE };
42
43 inline InliningResult inlining_result_of(bool success) {
44 return success ? InliningResult::SUCCESS : InliningResult::FAILURE;
45 }
46
47 // CompileTask
48 //
49 // An entry in the compile queue. It represents a pending or current
50 // compilation.
51
52 class CompileTask : public CHeapObj<mtCompiler> {
53 friend class VMStructs;
54 friend class JVMCIVMStructs;
55
56 public:
57 // Different reasons for a compilation
58 // The order is important - mapped to reason_names[]
59 enum CompileReason {
60 Reason_None,
61 Reason_InvocationCount, // Simple/StackWalk-policy
62 Reason_BackedgeCount, // Simple/StackWalk-policy
63 Reason_Tiered, // Tiered-policy
64 Reason_Replay, // ciReplay
65 Reason_Whitebox, // Whitebox API
66 Reason_MustBeCompiled, // Used for -Xcomp or AlwaysCompileLoopMethods (see CompilationPolicy::must_be_compiled())
67 Reason_Bootstrap, // JVMCI bootstrap
68 Reason_Preload, // pre-load AOT code
69 Reason_Precompile,
70 Reason_PrecompileForPreload,
71 Reason_Count
72 };
73
74 static const char* reason_name(CompileTask::CompileReason compile_reason) {
75 static const char* reason_names[] = {
76 "no_reason",
77 "count",
78 "backedge_count",
79 "tiered",
80 "replay",
81 "whitebox",
82 "must_be_compiled",
83 "bootstrap",
84 "preload",
85 "precompile",
86 "precompile_for_preload",
87 };
88 return reason_names[compile_reason];
89 }
90
91 static bool reason_is_precompiled(CompileTask::CompileReason compile_reason) {
92 return (compile_reason == CompileTask::Reason_Precompile) ||
93 (compile_reason == CompileTask::Reason_PrecompileForPreload);
94 }
95
96 private:
97 static CompileTask* _task_free_list;
98 static int _active_tasks;
99 Monitor* _lock;
100 int _compile_id;
101 Method* _method;
102 jobject _method_holder;
103 int _osr_bci;
104 bool _is_complete;
105 bool _is_success;
106 bool _requires_online_compilation;
107 bool _is_blocking;
108 CodeSection::csize_t _nm_content_size;
109 CodeSection::csize_t _nm_total_size;
110 CodeSection::csize_t _nm_insts_size;
111 DirectiveSet* _directive;
112 AbstractCompiler* _compiler;
113 AOTCodeEntry* _aot_code_entry;
114 #if INCLUDE_JVMCI
115 bool _has_waiter;
116 // Compilation state for a blocking JVMCI compilation
117 JVMCICompileState* _blocking_jvmci_compile_state;
118 #endif
119 int _waiting_count; // See waiting_for_completion_count()
120 int _comp_level;
121 int _num_inlined_bytecodes;
122 CompileTask* _next;
123 CompileTask* _prev;
124 bool _is_free;
125 // Fields used for logging why the compilation was initiated:
126 jlong _time_created; // time when task was created
127 jlong _time_queued; // time when task was enqueued
128 jlong _time_started; // time when compilation started
129 jlong _time_finished; // time when compilation finished
130 jlong _aot_load_start;
131 jlong _aot_load_finish;
132 Method* _hot_method; // which method actually triggered this task
133 jobject _hot_method_holder;
134 int _hot_count; // information about its invocation counter
135 CompileReason _compile_reason; // more info about the task
136 const char* _failure_reason;
137 // Specifies if _failure_reason is on the C heap.
138 bool _failure_reason_on_C_heap;
139 CompileTrainingData* _training_data;
140 CompileQueue* _compile_queue;
141 size_t _arena_bytes; // peak size of temporary memory during compilation (e.g. node arenas)
142
143 public:
144 CompileTask() : _failure_reason(nullptr), _failure_reason_on_C_heap(false) {
145 // May hold MethodCompileQueue_lock
146 _lock = new Monitor(Mutex::safepoint-1, "CompileTask_lock");
147 }
148
149 void initialize(int compile_id, const methodHandle& method, int osr_bci, int comp_level,
150 const methodHandle& hot_method, int hot_count, AOTCodeEntry* aot_code_entry,
151 CompileTask::CompileReason compile_reason,
152 CompileQueue* compile_queue,
153 bool requires_online_compilation, bool is_blocking);
154
155 static CompileTask* allocate();
156 static void free(CompileTask* task);
157 static void wait_for_no_active_tasks();
158
159 int compile_id() const { return _compile_id; }
160 Method* method() const { return _method; }
161 Method* hot_method() const { return _hot_method; }
162 int osr_bci() const { return _osr_bci; }
163 bool is_complete() const { return _is_complete; }
164 bool is_blocking() const { return _is_blocking; }
165 bool is_success() const { return _is_success; }
166 bool is_aot() const { return _aot_code_entry != nullptr; }
167 void clear_aot() { _aot_code_entry = nullptr; }
168 AOTCodeEntry* aot_code_entry() { return _aot_code_entry; }
169 bool requires_online_compilation() const { return _requires_online_compilation; }
170 DirectiveSet* directive() const { return _directive; }
171 CompileReason compile_reason() const { return _compile_reason; }
172 CodeSection::csize_t nm_content_size() { return _nm_content_size; }
173 void set_nm_content_size(CodeSection::csize_t size) { _nm_content_size = size; }
174 CodeSection::csize_t nm_insts_size() { return _nm_insts_size; }
175 void set_nm_insts_size(CodeSection::csize_t size) { _nm_insts_size = size; }
176 CodeSection::csize_t nm_total_size() { return _nm_total_size; }
177 void set_nm_total_size(CodeSection::csize_t size) { _nm_total_size = size; }
178 bool preload() const { return (_compile_reason == Reason_Preload); }
179 bool can_become_stale() const {
180 switch (_compile_reason) {
181 case Reason_BackedgeCount:
182 case Reason_InvocationCount:
183 case Reason_Tiered:
184 return !_is_blocking;
185 default:
186 return false;
187 }
188 }
189 #if INCLUDE_JVMCI
190 bool should_wait_for_compilation() const {
191 // Wait for blocking compilation to finish.
192 switch (_compile_reason) {
193 case Reason_Replay:
194 case Reason_Whitebox:
195 case Reason_Bootstrap:
196 return _is_blocking;
197 default:
198 return false;
199 }
200 }
201
202 bool has_waiter() const { return _has_waiter; }
203 void clear_waiter() { _has_waiter = false; }
204 JVMCICompileState* blocking_jvmci_compile_state() const { return _blocking_jvmci_compile_state; }
205 void set_blocking_jvmci_compile_state(JVMCICompileState* state) {
206 _blocking_jvmci_compile_state = state;
207 }
208 #endif
209
210 bool is_precompiled() {
211 return reason_is_precompiled(compile_reason());
212 }
213
214 Monitor* lock() const { return _lock; }
215 CompileQueue* compile_queue() const { return _compile_queue; }
216
217 // See how many threads are waiting for this task. Must have lock to read this.
218 int waiting_for_completion_count() {
219 assert(_lock->owned_by_self(), "must have lock to use waiting_for_completion_count()");
220 return _waiting_count;
221 }
222 // Indicates that a thread is waiting for this task to complete. Must have lock to use this.
223 void inc_waiting_for_completion() {
224 assert(_lock->owned_by_self(), "must have lock to use inc_waiting_for_completion()");
225 _waiting_count++;
226 }
227 // Indicates that a thread stopped waiting for this task to complete. Must have lock to use this.
228 void dec_waiting_for_completion() {
229 assert(_lock->owned_by_self(), "must have lock to use dec_waiting_for_completion()");
230 assert(_waiting_count > 0, "waiting count is not positive");
231 _waiting_count--;
232 }
233
234 void mark_complete() { _is_complete = true; }
235 void mark_success() { _is_success = true; }
236 void mark_queued(jlong time) { _time_queued = time; }
237 void mark_started(jlong time) { _time_started = time; }
238 void mark_finished(jlong time) { _time_finished = time; }
239 void mark_aot_load_start(jlong time) { _aot_load_start = time; }
240 void mark_aot_load_finish(jlong time) { _aot_load_finish = time; }
241 int comp_level() { return _comp_level;}
242 void set_comp_level(int comp_level) { _comp_level = comp_level;}
243
244 CompileReason compile_reason() { return _compile_reason; }
245
246 AbstractCompiler* compiler() const;
247 CompileTask* select_for_compilation();
248
249 int num_inlined_bytecodes() const { return _num_inlined_bytecodes; }
250 void set_num_inlined_bytecodes(int n) { _num_inlined_bytecodes = n; }
251
252 static CompileTask* volatile* next_ptr(CompileTask& task) { return &task._next; }
253
254 CompileTask* next() const { return _next; }
255 void set_next(CompileTask* next) { _next = next; }
256 CompileTask* prev() const { return _prev; }
257 void set_prev(CompileTask* prev) { _prev = prev; }
258 bool is_free() const { return _is_free; }
259 void set_is_free(bool val) { _is_free = val; }
260 bool is_unloaded() const;
261
262 CompileTrainingData* training_data() const { return _training_data; }
263 void set_training_data(CompileTrainingData*td) { _training_data = td; }
264
265 // RedefineClasses support
266 void metadata_do(MetadataClosure* f);
267 void mark_on_stack();
268
269 void set_arena_bytes(size_t s) { _arena_bytes = s; }
270 size_t arena_bytes() const { return _arena_bytes; }
271
272 private:
273 static void print_impl(outputStream* st, Method* method, int compile_id, int comp_level,
274 bool is_osr_method = false, int osr_bci = -1, bool is_blocking = false,
275 bool is_aot = false, bool is_preload = false,
276 const char* compiler_name = nullptr,
277 const char* msg = nullptr, bool short_form = false, bool cr = true,
278 jlong time_created = 0, jlong time_queued = 0, jlong time_started = 0, jlong time_finished = 0,
279 jlong aot_load_start = 0, jlong aot_load_finish = 0);
280
281 public:
282 void print(outputStream* st = tty, const char* msg = nullptr, bool short_form = false, bool cr = true);
283 void print_ul(const char* msg = nullptr);
284 static void print(outputStream* st, const nmethod* nm, const char* msg = nullptr, bool short_form = false, bool cr = true) {
285 print_impl(st, nm->method(), nm->compile_id(), nm->comp_level(),
286 nm->is_osr_method(), nm->is_osr_method() ? nm->osr_entry_bci() : -1, /*is_blocking*/ false,
287 nm->aot_code_entry() != nullptr, nm->preloaded(),
288 nm->compiler_name(), msg, short_form, cr);
289 }
290 static void print_ul(const nmethod* nm, const char* msg = nullptr);
291
292 /**
293 * @deprecated Please rely on Compile::inline_printer. Do not directly write inlining information to tty.
294 */
295 static void print_inline_indent(int inline_level, outputStream* st = tty);
296
297 void print_tty();
298 void print_line_on_error(outputStream* st, char* buf, int buflen);
299
300 void log_task(xmlStream* log);
301 void log_task_queued();
302 void log_task_start(CompileLog* log);
303 void log_task_done(CompileLog* log);
304
305 void set_failure_reason(const char* reason, bool on_C_heap = false) {
306 _failure_reason = reason;
307 _failure_reason_on_C_heap = on_C_heap;
308 }
|