# HG changeset patch # User jiefu # Date 1551463203 28800 # Node ID b31780c0c4c94e9e8bb0fc219c78832d44c5319c # Parent c9f2b71057c1c8b1f50ea296c34f0fb5ffabdf4a 8219919: RuntimeStub name lost with PrintFrameConverterAssembly Reviewed-by: kvn diff -r c9f2b71057c1 -r b31780c0c4c9 src/hotspot/share/opto/output.cpp --- a/src/hotspot/share/opto/output.cpp Fri Mar 01 09:42:04 2019 -0800 +++ b/src/hotspot/share/opto/output.cpp Fri Mar 01 10:00:03 2019 -0800 @@ -1556,6 +1556,8 @@ } if (method() != NULL) { method()->print_metadata(); + } else if (stub_name() != NULL) { + tty->print_cr("Generating RuntimeStub - %s", stub_name()); } dump_asm(node_offsets, node_offset_limit); if (xtty != NULL) {