Skip to content

Commit 6df0117

Browse files
sarannatmhaessig
authored andcommitted
8356779: IGV: dump the index of the SafePointNode containing the current JVMS during parsing
Reviewed-by: epeter, chagedorn, qamai
1 parent faebec6 commit 6df0117

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hotspot/share/opto/parse2.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2779,7 +2779,7 @@ void Parse::do_one_bytecode() {
27792779
if (C->should_print_igv(perBytecode)) {
27802780
IdealGraphPrinter* printer = C->igv_printer();
27812781
char buffer[256];
2782-
jio_snprintf(buffer, sizeof(buffer), "Bytecode %d: %s", bci(), Bytecodes::name(bc()));
2782+
jio_snprintf(buffer, sizeof(buffer), "Bytecode %d: %s, map: %d", bci(), Bytecodes::name(bc()), map() == nullptr ? -1 : map()->_idx);
27832783
bool old = printer->traverse_outs();
27842784
printer->set_traverse_outs(true);
27852785
printer->print_graph(buffer);

0 commit comments

Comments
 (0)