--- old/src/share/vm/compiler/compileBroker.hpp 2014-04-14 10:01:23.791015790 +0200 +++ new/src/share/vm/compiler/compileBroker.hpp 2014-04-14 10:01:22.891015756 +0200 @@ -419,12 +419,14 @@ 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;