comparison src/share/vm/compiler/compileBroker.cpp @ 16180:404d2e86488a

CIPrintCompilerName: compiler name should be printed on supplied stream
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 24 Jun 2014 13:12:26 +0200
parents 237508bd73b9
children 518a221dbbde
comparison
equal deleted inserted replaced
16179:05397227b8d4 16180:404d2e86488a
381 const char* msg, bool short_form) { 381 const char* msg, bool short_form) {
382 if (!short_form) { 382 if (!short_form) {
383 st->print("%7d ", (int) st->time_stamp().milliseconds()); // print timestamp 383 st->print("%7d ", (int) st->time_stamp().milliseconds()); // print timestamp
384 } 384 }
385 // print compiler name if requested 385 // print compiler name if requested
386 if (CIPrintCompilerName) tty->print("%s:", CompileBroker::compiler_name(comp_level)); 386 if (CIPrintCompilerName) st->print("%s:", CompileBroker::compiler_name(comp_level));
387 st->print("%4d ", compile_id); // print compilation number 387 st->print("%4d ", compile_id); // print compilation number
388 388
389 // For unloaded methods the transition to zombie occurs after the 389 // For unloaded methods the transition to zombie occurs after the
390 // method is cleared so it's impossible to report accurate 390 // method is cleared so it's impossible to report accurate
391 // information for that case. 391 // information for that case.