Skip to content

Commit 6c61bc1

Browse files
committedSep 22, 2023
8316514: Better diagnostic header for VtableStub
Reviewed-by: thartmann, kvn
1 parent c90d631 commit 6c61bc1

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

‎src/hotspot/share/code/vtableStubs.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -230,8 +230,9 @@ address VtableStubs::find_stub(bool is_vtable_stub, int vtable_index) {
230230

231231
enter(is_vtable_stub, vtable_index, s);
232232
if (PrintAdapterHandlers) {
233-
tty->print_cr("Decoding VtableStub %s[%d]@" INTX_FORMAT,
234-
is_vtable_stub? "vtbl": "itbl", vtable_index, p2i(VtableStub::receiver_location()));
233+
tty->print_cr("Decoding VtableStub %s[%d]@" PTR_FORMAT " [" PTR_FORMAT ", " PTR_FORMAT "] (" SIZE_FORMAT " bytes)",
234+
is_vtable_stub? "vtbl": "itbl", vtable_index, p2i(VtableStub::receiver_location()),
235+
p2i(s->code_begin()), p2i(s->code_end()), pointer_delta(s->code_end(), s->code_begin(), 1));
235236
Disassembler::decode(s->code_begin(), s->code_end());
236237
}
237238
// Notify JVMTI about this stub. The event will be recorded by the enclosing

0 commit comments

Comments
 (0)
Please sign in to comment.