src/share/vm/compiler/compileBroker.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/compiler/compileBroker.hpp	Mon Apr 14 10:01:23 2014
--- new/src/share/vm/compiler/compileBroker.hpp	Mon Apr 14 10:01:22 2014

*** 417,432 **** --- 417,434 ---- } static bool is_compilation_disabled_forever() { return _should_compile_new_jobs == shutdown_compilaton; } static void handle_full_code_cache(); + + static void handle_full_code_cache(int code_blob_type); // Ensures that warning is only printed once. static bool should_print_compiler_warning() { jint old = Atomic::cmpxchg(1, &_print_compilation_warning, 0); return old == 0; } + // Return total compilation ticks static jlong total_compilation_ticks() { return _perf_total_compilation != NULL ? _perf_total_compilation->get_value() : 0; }

src/share/vm/compiler/compileBroker.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File