mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
8075270: Print locals & stack slots location for PcDescs
Reviewed-by: kvn, jrose
This commit is contained in:
parent
9755168fe2
commit
e53337224d
2 changed files with 15 additions and 16 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue