String compileID = mm.getCompiledAttribute(ATTR_COMPILE_ID);
String compileKind = mm.getCompiledAttribute(ATTR_COMPILE_KIND);
if (compileID != null && (compileKind == null || !OSR.equals(compileKind)))
{
long value = Long.valueOf(mm.getCompiledAttribute(ATTR_COMPILE_ID));
topList.add(new MemberScore(mm, value));
}
}
}, new String[] { "Order", MEMBER });
TopListWrapper tlCompilationOrderOSR = new TopListWrapper("Compilation Order (OSR)", new AbstractTopListVisitable(
parent.getJITDataModel(), false)
{
@Override
public void visit(IMetaMember mm)
{
String compileID = mm.getCompiledAttribute(ATTR_COMPILE_ID);
String compileKind = mm.getCompiledAttribute(ATTR_COMPILE_KIND);
if (compileID != null && compileKind != null && OSR.equals(compileKind))
{
long value = Long.valueOf(mm.getCompiledAttribute(ATTR_COMPILE_ID));
topList.add(new MemberScore(mm, value));
}
}
}, new String[] { "Order", MEMBER });
final Map<String, TopListWrapper> attrMap = new HashMap<>();