--- old/src/share/vm/compiler/compileBroker.cpp 2014-09-17 11:04:49.292217603 +0200 +++ new/src/share/vm/compiler/compileBroker.cpp 2014-09-17 11:04:49.180217598 +0200 @@ -1779,22 +1779,6 @@ 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 --- old/src/share/vm/c1/c1_globals.hpp 2014-09-17 11:04:49.304217603 +0200 +++ new/src/share/vm/c1/c1_globals.hpp 2014-09-17 11:04:49.196217599 +0200 @@ -287,9 +287,6 @@ develop(bool, InstallMethods, true, \ "Install methods at the end of successful compilations") \ \ - product(intx, CompilationRepeat, 0, \ - "Number of times to recompile method before returning result") \ - \ develop(intx, NMethodSizeLimit, (64*K)*wordSize, \ "Maximum size of a compiled method.") \ \