Package org.adoptopenjdk.jitwatch.toplist

Examples of org.adoptopenjdk.jitwatch.toplist.MemberScore


        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<>();
View Full Code Here

TOP

Related Classes of org.adoptopenjdk.jitwatch.toplist.MemberScore

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.