Package org.adoptopenjdk.jitwatch.toplist

Examples of org.adoptopenjdk.jitwatch.toplist.CompiledAttributeTopListVisitable


    });

    int width = 800;
    int height = 480;

    TopListWrapper tlLargestNative = new TopListWrapper("Largest Native Methods", new CompiledAttributeTopListVisitable(
        parent.getJITDataModel(), ATTR_NMSIZE, true), new String[] { "Bytes", MEMBER });
    TopListWrapper tlInlineFailReasons = new TopListWrapper("Inlining Failure Reasons", new InliningFailReasonTopListVisitable(
        parent.getJITDataModel(), true), new String[] { "Count", "Reason" });
    TopListWrapper tlIntrinsics = new TopListWrapper("Most-used Intrinsics", new MostUsedIntrinsicsTopListVisitable(
        parent.getJITDataModel(), true), new String[] { "Count", "Intrinsic" });
    TopListWrapper tlLargestBytecode = new TopListWrapper("Largest Bytecode Methods", new CompiledAttributeTopListVisitable(
        parent.getJITDataModel(), ATTR_BYTES, true), new String[] { "Bytes", MEMBER });
    TopListWrapper tlSlowestCompilation = new TopListWrapper("Slowest Compilation Times",
        new CompiledAttributeTopListVisitable(parent.getJITDataModel(), ATTR_COMPILE_MILLIS, true), new String[] {
            "Milliseconds",
            MEMBER });
    TopListWrapper tlMostDecompiled = new TopListWrapper("Most Decompiled Methods", new CompiledAttributeTopListVisitable(
        parent.getJITDataModel(), ATTR_DECOMPILES, true), new String[] { "Decompiles", MEMBER });
    TopListWrapper tlCompilationOrder = new TopListWrapper("Compilation Order", new AbstractTopListVisitable(
        parent.getJITDataModel(), false)
    {
      @Override
View Full Code Here

TOP

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

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.