# HG changeset patch # User never # Date 1265250784 28800 # Node ID 0fce83e8dc0e9fdf52e657d316518ef30943ec62 # Parent e8443c7be117a20909a86b21a0f614efaf505fb7# Parent cef333a48af65ab8f168511680e26806d86f6933 Merge diff -r e8443c7be117 -r 0fce83e8dc0e src/share/vm/compiler/compileBroker.cpp --- a/src/share/vm/compiler/compileBroker.cpp Wed Feb 03 15:56:37 2010 -0800 +++ b/src/share/vm/compiler/compileBroker.cpp Wed Feb 03 18:33:04 2010 -0800 @@ -1,5 +1,5 @@ /* - * Copyright 1999-2009 Sun Microsystems, Inc. All Rights Reserved. + * Copyright 1999-2010 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -1132,7 +1132,7 @@ // the specified level if (is_native && (!CICompileNatives || !compiler(comp_level)->supports_native())) { - method->set_not_compilable(); + method->set_not_compilable_quietly(); return true; } @@ -1156,7 +1156,7 @@ method->print_short_name(tty); tty->cr(); } - method->set_not_compilable(); + method->set_not_compilable_quietly(); } return false; @@ -1189,7 +1189,7 @@ } // Method was not in the appropriate compilation range. - method->set_not_compilable(); + method->set_not_compilable_quietly(); return 0; } @@ -1590,10 +1590,10 @@ if (is_osr) { method->set_not_osr_compilable(); } else { - method->set_not_compilable(); + method->set_not_compilable_quietly(); } } else if (compilable == ciEnv::MethodCompilable_not_at_tier) { - method->set_not_compilable(task->comp_level()); + method->set_not_compilable_quietly(task->comp_level()); } // Note that the queued_for_compilation bits are cleared without diff -r e8443c7be117 -r 0fce83e8dc0e src/share/vm/oops/methodOop.cpp --- a/src/share/vm/oops/methodOop.cpp Wed Feb 03 15:56:37 2010 -0800 +++ b/src/share/vm/oops/methodOop.cpp Wed Feb 03 18:33:04 2010 -0800 @@ -587,8 +587,8 @@ } // call this when compiler finds that this method is not compilable -void methodOopDesc::set_not_compilable(int comp_level) { - if (PrintCompilation) { +void methodOopDesc::set_not_compilable(int comp_level, bool report) { + if (PrintCompilation && report) { ttyLocker ttyl; tty->print("made not compilable "); this->print_short_name(tty); diff -r e8443c7be117 -r 0fce83e8dc0e src/share/vm/oops/methodOop.hpp --- a/src/share/vm/oops/methodOop.hpp Wed Feb 03 15:56:37 2010 -0800 +++ b/src/share/vm/oops/methodOop.hpp Wed Feb 03 18:33:04 2010 -0800 @@ -596,7 +596,10 @@ // whether it is not compilable for another reason like having a // breakpoint set in it. bool is_not_compilable(int comp_level = CompLevel_highest_tier) const; - void set_not_compilable(int comp_level = CompLevel_highest_tier); + void set_not_compilable(int comp_level = CompLevel_highest_tier, bool report = true); + void set_not_compilable_quietly(int comp_level = CompLevel_highest_tier) { + set_not_compilable(comp_level, false); + } bool is_not_osr_compilable() const { return is_not_compilable() || access_flags().is_not_osr_compilable(); } void set_not_osr_compilable() { _access_flags.set_not_osr_compilable(); }