src/share/vm/compiler/compileBroker.cpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File
*** old/src/share/vm/compiler/compileBroker.cpp	Wed Sep 17 11:04:49 2014
--- new/src/share/vm/compiler/compileBroker.cpp	Wed Sep 17 11:04:49 2014

*** 1777,1802 **** --- 1777,1786 ---- // Never compile a method if breakpoints are present in it if (method()->number_of_breakpoints() == 0) { // Compile the method. if ((UseCompiler || AlwaysCompileLoopMethods) && CompileBroker::should_compile_new_jobs()) { #ifdef COMPILER1 // Allow repeating compilations for the purpose of benchmarking // compile speed. This is not useful for customers. if (CompilationRepeat != 0) { int compile_count = CompilationRepeat; while (compile_count > 0) { invoke_compiler_on_method(task); nmethod* nm = method->code(); if (nm != NULL) { nm->make_zombie(); method->clear_code(); } compile_count--; } } #endif /* COMPILER1 */ invoke_compiler_on_method(task); } else { // After compilation is disabled, remove remaining methods from queue method->clear_queued_for_compilation(); task->set_failure_reason("compilation is disabled");

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