Skip to content

Commit b00e0da

Browse files
committed
8367728: IGV: dump node address type
Reviewed-by: mchevalier, dfenacci, chagedorn
1 parent 7e738f0 commit b00e0da

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/hotspot/share/opto/idealGraphPrinter.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -448,6 +448,11 @@ void IdealGraphPrinter::visit_node(Node* n, bool edges) {
448448
}
449449
}
450450
}
451+
if (n->adr_type() != nullptr) {
452+
stringStream adr_type_stream;
453+
n->adr_type()->dump_on(&adr_type_stream);
454+
print_prop("adr_type", adr_type_stream.freeze());
455+
}
451456

452457
if (C->cfg() != nullptr) {
453458
Block* block = C->cfg()->get_block_for_node(node);

0 commit comments

Comments
 (0)