Skip to content

Commit e454eda

Browse files
committedJan 14, 2021
Enrich print_chunk
1 parent 2188934 commit e454eda

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎src/hotspot/share/oops/instanceStackChunkKlass.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -528,8 +528,13 @@ void InstanceStackChunkKlass::print_chunk(oop chunk, bool verbose, outputStream*
528528
st->print_cr("------ chunk frames end: " INTPTR_FORMAT, p2i(end));
529529
for (StackChunkFrameStream fs(chunk); !fs.is_done(); fs.next()) {
530530
frame f = fs.to_frame();
531-
st->print_cr("-- frame size: %d argsize: %d", f.frame_size(), f.compiled_frame_stack_argsize());
531+
st->print_cr("-- frame sp: " INTPTR_FORMAT " size: %d argsize: %d", p2i(fs.sp()), f.frame_size(), f.compiled_frame_stack_argsize());
532532
f.print_on(st);
533+
const ImmutableOopMap* oopmap = fs.oopmap();
534+
if (oopmap != NULL) {
535+
oopmap->print_on(st);
536+
st->cr();
537+
}
533538
}
534539
st->print_cr("------");
535540
} else {

0 commit comments

Comments
 (0)
Please sign in to comment.