annotate visualizer/Graal/src/com/sun/hotspot/igv/graal/filters/color.filter @ 11954:905c26108117

removed warning
author Doug Simon <doug.simon@oracle.com>
date Thu, 10 Oct 2013 12:05:39 +0200
parents 6a7b16cc142d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4512
015fb895586b Moved visualizer to new directory.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
1 colorize("name", ".*", white);
5304
6a7b16cc142d Update the coloring filter for IGV
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 4615
diff changeset
2 colorize("name", "Begin|EndNode|LoopBegin|LoopEnd|LoopExit|Return", orange);
6a7b16cc142d Update the coloring filter for IGV
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 4615
diff changeset
3 colorize("name", "Phi.*|ValueProxy", magenta);
4512
015fb895586b Moved visualizer to new directory.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
4 colorize("name", "FrameState@.*", new java.awt.Color(0.5, 0.8, 1.0));
4615
9418a31c3757 Update visualiser's color filter
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 4512
diff changeset
5 colorize("name", "If|Merge", pink);
4512
015fb895586b Moved visualizer to new directory.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
6 colorize("name", "const.*", new java.awt.Color(0.7, 0.7, 0.7));
015fb895586b Moved visualizer to new directory.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
7 colorize("name", "Local", new java.awt.Color(0.85, 0.85, 0.85));
4615
9418a31c3757 Update visualiser's color filter
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 4512
diff changeset
8 colorize("name", "\\+|-|\\*|/|&|\\||<<|>>|>>>", cyan);
4512
015fb895586b Moved visualizer to new directory.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
9 colorize("name", "Comp .*", yellow);
5304
6a7b16cc142d Update the coloring filter for IGV
Gilles Duboscq <duboscq@ssw.jku.at>
parents: 4615
diff changeset
10 colorize("name", "Virtual.*", green);
4512
015fb895586b Moved visualizer to new directory.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
11
015fb895586b Moved visualizer to new directory.
Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
parents:
diff changeset
12 colorize("notInOwnBlock", "true", red);