# HG changeset patch # User Tom Rodriguez # Date 1424919903 28800 # Node ID dcfdd60edaf1451936648670f5821b75cf6cf152 # Parent 1deff4ac56c359d3a8ce35204734d9ac81e22693 Print full ScopeDesc with PrintDebugInfo diff -r 1deff4ac56c3 -r dcfdd60edaf1 src/share/vm/code/nmethod.cpp --- a/src/share/vm/code/nmethod.cpp Wed Feb 25 19:03:26 2015 -0800 +++ b/src/share/vm/code/nmethod.cpp Wed Feb 25 19:05:03 2015 -0800 @@ -2749,7 +2749,10 @@ continue; ScopeDesc* sd = scope_desc_at(p->real_pc(this)); - sd->print_on(tty, p); + while (sd != NULL) { + sd->print_on(tty, p); + sd = sd->sender(); + } } }