src/share/vm/compiler/compileBroker.hpp

Wed, 15 Feb 2012 10:12:55 -0800

author
never
date
Wed, 15 Feb 2012 10:12:55 -0800
changeset 3571
09d00c18e323
parent 3499
aa3d708d67c4
child 3900
d2a62e0f25eb
permissions
-rw-r--r--

7145537: minor tweaks to LogEvents
Reviewed-by: kvn, twisti

duke@435 1 /*
never@3499 2 * Copyright (c) 1999, 2012, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
duke@435 7 * published by the Free Software Foundation.
duke@435 8 *
duke@435 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 13 * accompanied this code).
duke@435 14 *
duke@435 15 * You should have received a copy of the GNU General Public License version
duke@435 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 18 *
trims@1907 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 20 * or visit www.oracle.com if you need additional information or have any
trims@1907 21 * questions.
duke@435 22 *
duke@435 23 */
duke@435 24
stefank@2314 25 #ifndef SHARE_VM_COMPILER_COMPILEBROKER_HPP
stefank@2314 26 #define SHARE_VM_COMPILER_COMPILEBROKER_HPP
stefank@2314 27
stefank@2314 28 #include "ci/compilerInterface.hpp"
stefank@2314 29 #include "compiler/abstractCompiler.hpp"
stefank@2314 30 #include "runtime/perfData.hpp"
stefank@2314 31
duke@435 32 class nmethod;
duke@435 33 class nmethodLocker;
duke@435 34
duke@435 35 // CompileTask
duke@435 36 //
duke@435 37 // An entry in the compile queue. It represents a pending or current
duke@435 38 // compilation.
duke@435 39 class CompileTask : public CHeapObj {
never@3138 40 friend class VMStructs;
never@3138 41
duke@435 42 private:
duke@435 43 Monitor* _lock;
duke@435 44 uint _compile_id;
duke@435 45 jobject _method;
duke@435 46 int _osr_bci;
duke@435 47 bool _is_complete;
duke@435 48 bool _is_success;
duke@435 49 bool _is_blocking;
duke@435 50 int _comp_level;
duke@435 51 int _num_inlined_bytecodes;
duke@435 52 nmethodLocker* _code_handle; // holder of eventual result
iveresov@2138 53 CompileTask* _next, *_prev;
duke@435 54
duke@435 55 // Fields used for logging why the compilation was initiated:
duke@435 56 jlong _time_queued; // in units of os::elapsed_counter()
duke@435 57 jobject _hot_method; // which method actually triggered this task
duke@435 58 int _hot_count; // information about its invocation counter
duke@435 59 const char* _comment; // more info about the task
duke@435 60
duke@435 61 public:
duke@435 62 CompileTask() {
duke@435 63 _lock = new Monitor(Mutex::nonleaf+2, "CompileTaskLock");
duke@435 64 }
duke@435 65
duke@435 66 void initialize(int compile_id, methodHandle method, int osr_bci, int comp_level,
duke@435 67 methodHandle hot_method, int hot_count, const char* comment,
duke@435 68 bool is_blocking);
duke@435 69
duke@435 70 void free();
duke@435 71
duke@435 72 int compile_id() const { return _compile_id; }
duke@435 73 jobject method_handle() const { return _method; }
duke@435 74 int osr_bci() const { return _osr_bci; }
duke@435 75 bool is_complete() const { return _is_complete; }
duke@435 76 bool is_blocking() const { return _is_blocking; }
duke@435 77 bool is_success() const { return _is_success; }
duke@435 78
duke@435 79 nmethodLocker* code_handle() const { return _code_handle; }
duke@435 80 void set_code_handle(nmethodLocker* l) { _code_handle = l; }
duke@435 81 nmethod* code() const; // _code_handle->code()
duke@435 82 void set_code(nmethod* nm); // _code_handle->set_code(nm)
duke@435 83
duke@435 84 Monitor* lock() const { return _lock; }
duke@435 85
duke@435 86 void mark_complete() { _is_complete = true; }
duke@435 87 void mark_success() { _is_success = true; }
duke@435 88
duke@435 89 int comp_level() { return _comp_level;}
duke@435 90 void set_comp_level(int comp_level) { _comp_level = comp_level;}
duke@435 91
duke@435 92 int num_inlined_bytecodes() const { return _num_inlined_bytecodes; }
duke@435 93 void set_num_inlined_bytecodes(int n) { _num_inlined_bytecodes = n; }
duke@435 94
duke@435 95 CompileTask* next() const { return _next; }
duke@435 96 void set_next(CompileTask* next) { _next = next; }
iveresov@2138 97 CompileTask* prev() const { return _prev; }
iveresov@2138 98 void set_prev(CompileTask* prev) { _prev = prev; }
duke@435 99
twisti@2687 100 private:
never@3499 101 static void print_compilation_impl(outputStream* st, methodOop method, int compile_id, int comp_level,
never@3499 102 bool is_osr_method = false, int osr_bci = -1, bool is_blocking = false,
never@3499 103 const char* msg = NULL, bool short_form = false);
twisti@2687 104
twisti@2687 105 public:
never@3499 106 void print_compilation(outputStream* st = tty, bool short_form = false);
twisti@2687 107 static void print_compilation(outputStream* st, const nmethod* nm, const char* msg = NULL) {
never@3499 108 print_compilation_impl(st, nm->method(), nm->compile_id(), nm->comp_level(),
never@3499 109 nm->is_osr_method(), nm->is_osr_method() ? nm->osr_entry_bci() : -1, /*is_blocking*/ false,
never@3499 110 msg);
twisti@2687 111 }
twisti@2687 112
twisti@2687 113 static void print_inlining(outputStream* st, ciMethod* method, int inline_level, int bci, const char* msg = NULL);
twisti@2687 114 static void print_inlining(ciMethod* method, int inline_level, int bci, const char* msg = NULL) {
twisti@2687 115 print_inlining(tty, method, inline_level, bci, msg);
twisti@2687 116 }
twisti@2687 117
twisti@2687 118 static void print_inline_indent(int inline_level, outputStream* st = tty);
twisti@2687 119
duke@435 120 void print();
duke@435 121 void print_line();
twisti@2687 122 void print_line_on_error(outputStream* st, char* buf, int buflen);
iveresov@2138 123
duke@435 124 void log_task(xmlStream* log);
duke@435 125 void log_task_queued();
duke@435 126 void log_task_start(CompileLog* log);
duke@435 127 void log_task_done(CompileLog* log);
duke@435 128 };
duke@435 129
duke@435 130 // CompilerCounters
duke@435 131 //
duke@435 132 // Per Compiler Performance Counters.
duke@435 133 //
duke@435 134 class CompilerCounters : public CHeapObj {
duke@435 135
duke@435 136 public:
duke@435 137 enum {
duke@435 138 cmname_buffer_length = 160
duke@435 139 };
duke@435 140
duke@435 141 private:
duke@435 142
duke@435 143 char _current_method[cmname_buffer_length];
duke@435 144 PerfStringVariable* _perf_current_method;
duke@435 145
duke@435 146 int _compile_type;
duke@435 147 PerfVariable* _perf_compile_type;
duke@435 148
duke@435 149 PerfCounter* _perf_time;
duke@435 150 PerfCounter* _perf_compiles;
duke@435 151
duke@435 152 public:
duke@435 153 CompilerCounters(const char* name, int instance, TRAPS);
duke@435 154
duke@435 155 // these methods should be called in a thread safe context
duke@435 156
duke@435 157 void set_current_method(const char* method) {
duke@435 158 strncpy(_current_method, method, (size_t)cmname_buffer_length);
duke@435 159 if (UsePerfData) _perf_current_method->set_value(method);
duke@435 160 }
duke@435 161
duke@435 162 char* current_method() { return _current_method; }
duke@435 163
duke@435 164 void set_compile_type(int compile_type) {
duke@435 165 _compile_type = compile_type;
duke@435 166 if (UsePerfData) _perf_compile_type->set_value((jlong)compile_type);
duke@435 167 }
duke@435 168
duke@435 169 int compile_type() { return _compile_type; }
duke@435 170
duke@435 171 PerfCounter* time_counter() { return _perf_time; }
duke@435 172 PerfCounter* compile_counter() { return _perf_compiles; }
duke@435 173 };
duke@435 174
duke@435 175 // CompileQueue
duke@435 176 //
duke@435 177 // A list of CompileTasks.
duke@435 178 class CompileQueue : public CHeapObj {
duke@435 179 private:
duke@435 180 const char* _name;
duke@435 181 Monitor* _lock;
duke@435 182
duke@435 183 CompileTask* _first;
duke@435 184 CompileTask* _last;
duke@435 185
iveresov@2138 186 int _size;
duke@435 187 public:
duke@435 188 CompileQueue(const char* name, Monitor* lock) {
duke@435 189 _name = name;
duke@435 190 _lock = lock;
duke@435 191 _first = NULL;
duke@435 192 _last = NULL;
iveresov@2138 193 _size = 0;
duke@435 194 }
duke@435 195
duke@435 196 const char* name() const { return _name; }
duke@435 197 Monitor* lock() const { return _lock; }
duke@435 198
duke@435 199 void add(CompileTask* task);
iveresov@2138 200 void remove(CompileTask* task);
iveresov@2138 201 CompileTask* first() { return _first; }
iveresov@2138 202 CompileTask* last() { return _last; }
duke@435 203
duke@435 204 CompileTask* get();
duke@435 205
duke@435 206 bool is_empty() const { return _first == NULL; }
iveresov@2138 207 int size() const { return _size; }
duke@435 208
duke@435 209 void print();
duke@435 210 };
duke@435 211
iveresov@2138 212 // CompileTaskWrapper
iveresov@2138 213 //
iveresov@2138 214 // Assign this task to the current thread. Deallocate the task
iveresov@2138 215 // when the compilation is complete.
iveresov@2138 216 class CompileTaskWrapper : StackObj {
iveresov@2138 217 public:
iveresov@2138 218 CompileTaskWrapper(CompileTask* task);
iveresov@2138 219 ~CompileTaskWrapper();
iveresov@2138 220 };
iveresov@2138 221
duke@435 222
duke@435 223 // Compilation
duke@435 224 //
duke@435 225 // The broker for all compilation requests.
duke@435 226 class CompileBroker: AllStatic {
duke@435 227 friend class Threads;
duke@435 228 friend class CompileTaskWrapper;
duke@435 229
duke@435 230 public:
duke@435 231 enum {
duke@435 232 name_buffer_length = 100
duke@435 233 };
duke@435 234
duke@435 235 // Compile type Information for print_last_compile() and CompilerCounters
duke@435 236 enum { no_compile, normal_compile, osr_compile, native_compile };
duke@435 237
duke@435 238 private:
duke@435 239 static bool _initialized;
duke@435 240 static volatile bool _should_block;
duke@435 241
kvn@1637 242 // This flag can be used to stop compilation or turn it back on
kvn@1637 243 static volatile jint _should_compile_new_jobs;
kvn@1637 244
duke@435 245 // The installed compiler(s)
duke@435 246 static AbstractCompiler* _compilers[2];
duke@435 247
duke@435 248 // These counters are used for assigning id's to each compilation
duke@435 249 static uint _compilation_id;
duke@435 250 static uint _osr_compilation_id;
duke@435 251 static uint _native_compilation_id;
duke@435 252
duke@435 253 static int _last_compile_type;
duke@435 254 static int _last_compile_level;
duke@435 255 static char _last_method_compiled[name_buffer_length];
duke@435 256
iveresov@2138 257 static CompileQueue* _c2_method_queue;
iveresov@2138 258 static CompileQueue* _c1_method_queue;
duke@435 259 static CompileTask* _task_free_list;
duke@435 260
duke@435 261 static GrowableArray<CompilerThread*>* _method_threads;
duke@435 262
duke@435 263 // performance counters
duke@435 264 static PerfCounter* _perf_total_compilation;
duke@435 265 static PerfCounter* _perf_native_compilation;
duke@435 266 static PerfCounter* _perf_osr_compilation;
duke@435 267 static PerfCounter* _perf_standard_compilation;
duke@435 268
duke@435 269 static PerfCounter* _perf_total_bailout_count;
duke@435 270 static PerfCounter* _perf_total_invalidated_count;
duke@435 271 static PerfCounter* _perf_total_compile_count;
duke@435 272 static PerfCounter* _perf_total_native_compile_count;
duke@435 273 static PerfCounter* _perf_total_osr_compile_count;
duke@435 274 static PerfCounter* _perf_total_standard_compile_count;
duke@435 275
duke@435 276 static PerfCounter* _perf_sum_osr_bytes_compiled;
duke@435 277 static PerfCounter* _perf_sum_standard_bytes_compiled;
duke@435 278 static PerfCounter* _perf_sum_nmethod_size;
duke@435 279 static PerfCounter* _perf_sum_nmethod_code_size;
duke@435 280
duke@435 281 static PerfStringVariable* _perf_last_method;
duke@435 282 static PerfStringVariable* _perf_last_failed_method;
duke@435 283 static PerfStringVariable* _perf_last_invalidated_method;
duke@435 284 static PerfVariable* _perf_last_compile_type;
duke@435 285 static PerfVariable* _perf_last_compile_size;
duke@435 286 static PerfVariable* _perf_last_failed_type;
duke@435 287 static PerfVariable* _perf_last_invalidated_type;
duke@435 288
duke@435 289 // Timers and counters for generating statistics
duke@435 290 static elapsedTimer _t_total_compilation;
duke@435 291 static elapsedTimer _t_osr_compilation;
duke@435 292 static elapsedTimer _t_standard_compilation;
duke@435 293
duke@435 294 static int _total_bailout_count;
duke@435 295 static int _total_invalidated_count;
duke@435 296 static int _total_compile_count;
duke@435 297 static int _total_native_compile_count;
duke@435 298 static int _total_osr_compile_count;
duke@435 299 static int _total_standard_compile_count;
duke@435 300
duke@435 301 static int _sum_osr_bytes_compiled;
duke@435 302 static int _sum_standard_bytes_compiled;
duke@435 303 static int _sum_nmethod_size;
duke@435 304 static int _sum_nmethod_code_size;
duke@435 305
duke@435 306 static CompilerThread* make_compiler_thread(const char* name, CompileQueue* queue, CompilerCounters* counters, TRAPS);
iveresov@2138 307 static void init_compiler_threads(int c1_compiler_count, int c2_compiler_count);
duke@435 308 static bool compilation_is_complete (methodHandle method, int osr_bci, int comp_level);
duke@435 309 static bool compilation_is_prohibited(methodHandle method, int osr_bci, int comp_level);
duke@435 310 static uint assign_compile_id (methodHandle method, int osr_bci);
duke@435 311 static bool is_compile_blocking (methodHandle method, int osr_bci);
duke@435 312 static void preload_classes (methodHandle method, TRAPS);
duke@435 313
duke@435 314 static CompileTask* create_compile_task(CompileQueue* queue,
duke@435 315 int compile_id,
duke@435 316 methodHandle method,
duke@435 317 int osr_bci,
duke@435 318 int comp_level,
duke@435 319 methodHandle hot_method,
duke@435 320 int hot_count,
duke@435 321 const char* comment,
duke@435 322 bool blocking);
duke@435 323 static CompileTask* allocate_task();
duke@435 324 static void free_task(CompileTask* task);
duke@435 325 static void wait_for_completion(CompileTask* task);
duke@435 326
duke@435 327 static void invoke_compiler_on_method(CompileTask* task);
duke@435 328 static void set_last_compile(CompilerThread *thread, methodHandle method, bool is_osr, int comp_level);
duke@435 329 static void push_jni_handle_block();
duke@435 330 static void pop_jni_handle_block();
duke@435 331 static bool check_break_at(methodHandle method, int compile_id, bool is_osr);
duke@435 332 static void collect_statistics(CompilerThread* thread, elapsedTimer time, CompileTask* task);
duke@435 333
duke@435 334 static void compile_method_base(methodHandle method,
duke@435 335 int osr_bci,
duke@435 336 int comp_level,
duke@435 337 methodHandle hot_method,
duke@435 338 int hot_count,
duke@435 339 const char* comment,
iveresov@3452 340 Thread* thread);
iveresov@2138 341 static CompileQueue* compile_queue(int comp_level) {
iveresov@2138 342 if (is_c2_compile(comp_level)) return _c2_method_queue;
iveresov@2138 343 if (is_c1_compile(comp_level)) return _c1_method_queue;
iveresov@2138 344 return NULL;
iveresov@2138 345 }
duke@435 346 public:
duke@435 347 enum {
duke@435 348 // The entry bci used for non-OSR compilations.
duke@435 349 standard_entry_bci = InvocationEntryBci
duke@435 350 };
duke@435 351
iveresov@2138 352 static AbstractCompiler* compiler(int comp_level) {
iveresov@2138 353 if (is_c2_compile(comp_level)) return _compilers[1]; // C2
iveresov@2138 354 if (is_c1_compile(comp_level)) return _compilers[0]; // C1
iveresov@2138 355 return NULL;
duke@435 356 }
duke@435 357
iveresov@2138 358 static bool compilation_is_in_queue(methodHandle method, int osr_bci);
iveresov@2138 359 static int queue_size(int comp_level) {
iveresov@2138 360 CompileQueue *q = compile_queue(comp_level);
iveresov@2138 361 return q != NULL ? q->size() : 0;
iveresov@2138 362 }
duke@435 363 static void compilation_init();
duke@435 364 static void init_compiler_thread_log();
iveresov@2138 365 static nmethod* compile_method(methodHandle method,
iveresov@2138 366 int osr_bci,
iveresov@2138 367 int comp_level,
iveresov@2138 368 methodHandle hot_method,
iveresov@2138 369 int hot_count,
iveresov@3452 370 const char* comment, Thread* thread);
duke@435 371
duke@435 372 static void compiler_thread_loop();
duke@435 373
kvn@1637 374 static uint get_compilation_id() { return _compilation_id; }
duke@435 375 static bool is_idle();
duke@435 376
duke@435 377 // Set _should_block.
duke@435 378 // Call this from the VM, with Threads_lock held and a safepoint requested.
duke@435 379 static void set_should_block();
duke@435 380
duke@435 381 // Call this from the compiler at convenient points, to poll for _should_block.
duke@435 382 static void maybe_block();
duke@435 383
kvn@1637 384 enum {
kvn@1637 385 // Flags for toggling compiler activity
kvn@1637 386 stop_compilation = 0,
kvn@1637 387 run_compilation = 1
kvn@1637 388 };
kvn@1637 389
kvn@1637 390 static bool should_compile_new_jobs() { return UseCompiler && (_should_compile_new_jobs == run_compilation); }
kvn@1637 391 static bool set_should_compile_new_jobs(jint new_state) {
kvn@1637 392 // Return success if the current caller set it
kvn@1637 393 jint old = Atomic::cmpxchg(new_state, &_should_compile_new_jobs, 1-new_state);
kvn@1637 394 return (old == (1-new_state));
kvn@1637 395 }
kvn@1637 396 static void handle_full_code_cache();
kvn@1637 397
duke@435 398 // Return total compilation ticks
duke@435 399 static jlong total_compilation_ticks() {
duke@435 400 return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0;
duke@435 401 }
duke@435 402
duke@435 403 // Print a detailed accounting of compilation time
duke@435 404 static void print_times();
duke@435 405
duke@435 406 // Debugging output for failure
duke@435 407 static void print_last_compile();
duke@435 408
duke@435 409 static void print_compiler_threads_on(outputStream* st);
duke@435 410 };
stefank@2314 411
stefank@2314 412 #endif // SHARE_VM_COMPILER_COMPILEBROKER_HPP

mercurial