changeset 4322:49b33f8fcad7

IdealGraphVisualizer: call analysis filter: mark leaf nodes light gray, cutoff nodes red
author Peter Hofer <peter.hofer@jku.at>
date Wed, 25 Jan 2012 18:32:03 +0100
parents e02b67e39aa3
children df5547057954
files src/share/tools/IdealGraphVisualizer/Graal/src/com/sun/hotspot/igv/graal/filters/callgraph.filter
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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", "<init>.*", yellow);
 colorize("name", "<clinit>.*", pink);
-colorize("leaf", "1", red);
+colorize("leaf", "1", lightGray);
+colorize("cutoff", "1", red);