8135067: Preparatory refactorings for compiler control

Extract CompileTask and clean up

Reviewed-by: roland
This commit is contained in:
Nils Eliasson 2015-09-04 12:47:57 +02:00
parent d7b8032741
commit 559bf7ef6e
15 changed files with 553 additions and 499 deletions

View file

@ -4212,7 +4212,7 @@ void GraphBuilder::print_inlining(ciMethod* callee, const char* msg, bool succes
if (!PrintInlining && !compilation()->method()->has_option("PrintInlining")) {
return;
}
CompileTask::print_inlining(callee, scope()->level(), bci(), msg);
CompileTask::print_inlining_tty(callee, scope()->level(), bci(), msg);
if (success && CIPrintMethodCodes) {
callee->print_codes();
}