view visualizer/Graal/src/com/sun/hotspot/igv/graal/filters/beginend.filter @ 7912:06ecee106195

added unit tests for bytecode and machine code disassembly
author Doug Simon <doug.simon@oracle.com>
date Sat, 02 Mar 2013 09:53:47 +0400
parents 015fb895586b
children
line wrap: on
line source

var f = new CombineFilter("Combine Filter");
f.addRule(new CombineFilter.CombineRule(new Properties.RegexpPropertyMatcher("class", ".*"), new Properties.RegexpPropertyMatcher("class", "BeginNode"), false, "shortName"));
f.addRule(new CombineFilter.CombineRule(new Properties.RegexpPropertyMatcher("class", "EndNode"), new Properties.RegexpPropertyMatcher("class", ".*"), true, "shortName"));
f.apply(graph);