src/share/vm/compiler/compileBroker.cpp

changeset 1643
cef333a48af6
parent 1637
5f24d0319e54
child 1735
428a9c451986
     1.1 --- a/src/share/vm/compiler/compileBroker.cpp	Wed Feb 03 12:28:30 2010 -0800
     1.2 +++ b/src/share/vm/compiler/compileBroker.cpp	Wed Feb 03 15:03:22 2010 -0800
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright 1999-2009 Sun Microsystems, Inc.  All Rights Reserved.
     1.6 + * Copyright 1999-2010 Sun Microsystems, Inc.  All Rights Reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -1132,7 +1132,7 @@
    1.11    // the specified level
    1.12    if (is_native &&
    1.13        (!CICompileNatives || !compiler(comp_level)->supports_native())) {
    1.14 -    method->set_not_compilable();
    1.15 +    method->set_not_compilable_quietly();
    1.16      return true;
    1.17    }
    1.18  
    1.19 @@ -1156,7 +1156,7 @@
    1.20        method->print_short_name(tty);
    1.21        tty->cr();
    1.22      }
    1.23 -    method->set_not_compilable();
    1.24 +    method->set_not_compilable_quietly();
    1.25    }
    1.26  
    1.27    return false;
    1.28 @@ -1189,7 +1189,7 @@
    1.29    }
    1.30  
    1.31    // Method was not in the appropriate compilation range.
    1.32 -  method->set_not_compilable();
    1.33 +  method->set_not_compilable_quietly();
    1.34    return 0;
    1.35  }
    1.36  
    1.37 @@ -1590,10 +1590,10 @@
    1.38      if (is_osr) {
    1.39        method->set_not_osr_compilable();
    1.40      } else {
    1.41 -      method->set_not_compilable();
    1.42 +      method->set_not_compilable_quietly();
    1.43      }
    1.44    } else if (compilable == ciEnv::MethodCompilable_not_at_tier) {
    1.45 -    method->set_not_compilable(task->comp_level());
    1.46 +    method->set_not_compilable_quietly(task->comp_level());
    1.47    }
    1.48  
    1.49    // Note that the queued_for_compilation bits are cleared without

mercurial