8075270: Print locals & stack slots location for PcDescs

Reviewed-by: kvn, jrose
This commit is contained in:
Vladimir Ivanov 2015-03-20 11:41:34 -07:00
parent 9755168fe2
commit e53337224d
2 changed files with 15 additions and 16 deletions

View file

@ -54,12 +54,7 @@ void PcDesc::print(nmethod* code) {
for (ScopeDesc* sd = code->scope_desc_at(real_pc(code));
sd != NULL;
sd = sd->sender()) {
tty->print(" ");
sd->method()->print_short_name(tty);
tty->print(" @%d", sd->bci());
if (sd->should_reexecute())
tty->print(" reexecute=true");
tty->cr();
sd->print_on(tty);
}
#endif
}