comparison src/share/vm/runtime/deoptimization.cpp @ 13768:a7cb9f383ec4

print name and sig in TraceDeoptimization output
author Tom Rodriguez <tom.rodriguez@oracle.com>
date Wed, 22 Jan 2014 10:54:38 -0800
parents cffcb8e38c4c
children a9604b40f5e7
comparison
equal deleted inserted replaced
13749:962f06a1a387 13768:a7cb9f383ec4
1357 nmethod* nm = cvf->code(); 1357 nmethod* nm = cvf->code();
1358 1358
1359 ScopeDesc* trap_scope = cvf->scope(); 1359 ScopeDesc* trap_scope = cvf->scope();
1360 1360
1361 if (TraceDeoptimization) { 1361 if (TraceDeoptimization) {
1362 tty->print_cr(" bci=%d pc=%d, relative_pc=%d, method=%s" GRAAL_ONLY(", debug_id=%d"), trap_scope->bci(), fr.pc(), fr.pc() - nm->code_begin(), trap_scope->method()->name()->as_C_string() 1362 tty->print_cr(" bci=%d pc=%d, relative_pc=%d, method=%s" GRAAL_ONLY(", debug_id=%d"), trap_scope->bci(), fr.pc(), fr.pc() - nm->code_begin(), trap_scope->method()->name_and_sig_as_C_string()
1363 #ifdef GRAAL 1363 #ifdef GRAAL
1364 , debug_id 1364 , debug_id
1365 #endif 1365 #endif
1366 ); 1366 );
1367 } 1367 }