comparison src/share/vm/compiler/compileBroker.cpp @ 7998:6a51fc70a15e

8006613: adding reason to made_not_compilable Reviewed-by: kvn, vlivanov Contributed-by: Igor Ignatyev <igor.ignatyev@oracle.com>
author vlivanov
date Tue, 05 Feb 2013 08:25:51 -0800
parents eab4f9ed602c
children 5fc51c1ecdeb b7c2c5b2572c
comparison
equal deleted inserted replaced
7997:8bd61471a109 7998:6a51fc70a15e
1396 method->is_native() ? "generation of native wrapper" : "compile", 1396 method->is_native() ? "generation of native wrapper" : "compile",
1397 (method->is_static() ? " static" : "")); 1397 (method->is_static() ? " static" : ""));
1398 method->print_short_name(tty); 1398 method->print_short_name(tty);
1399 tty->cr(); 1399 tty->cr();
1400 } 1400 }
1401 method->set_not_compilable_quietly(); 1401 method->set_not_compilable(CompLevel_all, !quietly, "excluded by CompilerOracle");
1402 } 1402 }
1403 1403
1404 return false; 1404 return false;
1405 } 1405 }
1406 1406