comparison src/share/vm/code/nmethod.cpp @ 7112:60bef2672469

changed System.err output to TTY to avoid that DaCapo benchmarks fail digest validation
author Christian Haeubl <haeubl@ssw.jku.at>
date Fri, 30 Nov 2012 10:40:07 +0100
parents 97d0eae99568
children 1baf7f1e3f23
comparison
equal deleted inserted replaced
7111:e0fcf7802786 7112:60bef2672469
1447 } else { 1447 } else {
1448 assert(state == not_entrant, "other cases may need to be handled differently"); 1448 assert(state == not_entrant, "other cases may need to be handled differently");
1449 } 1449 }
1450 1450
1451 if (TraceCreateZombies) { 1451 if (TraceCreateZombies) {
1452 tty->print_cr("nmethod <" INTPTR_FORMAT "> code made %s", this, (state == not_entrant) ? "not entrant" : "zombie"); 1452 ResourceMark m;
1453 tty->print_cr("nmethod <" INTPTR_FORMAT "> %s code made %s", this, this->method()->name_and_sig_as_C_string(), (state == not_entrant) ? "not entrant" : "zombie");
1453 } 1454 }
1454 1455
1455 // Make sweeper aware that there is a zombie method that needs to be removed 1456 // Make sweeper aware that there is a zombie method that needs to be removed
1456 NMethodSweeper::notify(this); 1457 NMethodSweeper::notify(this);
1457 1458