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

src/share/vm/compiler/compileBroker.hpp

Print this page

        

*** 417,432 **** } static bool is_compilation_disabled_forever() { return _should_compile_new_jobs == shutdown_compilaton; } ! static void handle_full_code_cache(); // 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; } --- 417,434 ---- } static bool is_compilation_disabled_forever() { return _should_compile_new_jobs == shutdown_compilaton; } ! ! 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