# HG changeset patch # User Peter Hofer # Date 1327512723 -3600 # Node ID 49b33f8fcad7cf9be5bc99359bdfcb57811ec9d1 # Parent e02b67e39aa339a55f71b2d5601429cdc147d54f IdealGraphVisualizer: call analysis filter: mark leaf nodes light gray, cutoff nodes red diff -r e02b67e39aa3 -r 49b33f8fcad7 src/share/tools/IdealGraphVisualizer/Graal/src/com/sun/hotspot/igv/graal/filters/callgraph.filter --- a/src/share/tools/IdealGraphVisualizer/Graal/src/com/sun/hotspot/igv/graal/filters/callgraph.filter Wed Jan 25 14:15:17 2012 +0100 +++ b/src/share/tools/IdealGraphVisualizer/Graal/src/com/sun/hotspot/igv/graal/filters/callgraph.filter Wed Jan 25 18:32:03 2012 +0100 @@ -1,3 +1,4 @@ colorize("name", ".*", yellow); colorize("name", ".*", pink); -colorize("leaf", "1", red); +colorize("leaf", "1", lightGray); +colorize("cutoff", "1", red);