Package jbe

Examples of jbe.BenchMark


    return "iaload";
  }

  public static void main(String[] args) {

    BenchMark bm = new Array();

    Execute.perform(bm);
  }
View Full Code Here


    return "invoke";
  }

  public static void main(String[] args) {

    BenchMark bm = new InvokeVirtual();

    Execute.perform(bm);
  }
View Full Code Here

    return "getfield";
  }

  public static void main(String[] args) {

    BenchMark bm = new GetField();

    Execute.perform(bm);
  }
View Full Code Here

    return "ldc";
  }

  public static void main(String[] args) {

    BenchMark bm = new Ldc();

    Execute.perform(bm);
  }
View Full Code Here

    return "invokeinterface";
  }

  public static void main(String[] args) {

    BenchMark bm = new InvokeInterface();

    Execute.perform(bm);
  }
View Full Code Here

    return "if_icmplt not taken";
  }

  public static void main(String[] args) {

    BenchMark bm = new BranchNotTaken();

    Execute.perform(bm);
  }
View Full Code Here

    return "invokestatic";
  }

  public static void main(String[] args) {

    BenchMark bm = new InvokeStatic();

    Execute.perform(bm);
  }
View Full Code Here

    return "getstatic";
  }

  public static void main(String[] args) {

    BenchMark bm = new GetStatic();

    Execute.perform(bm);
  }
View Full Code Here

    return "iinc";
  }

  public static void main(String[] args) {

    BenchMark bm = new Iinc();

    Execute.perform(bm);
  }
View Full Code Here

    return "if_icmplt taken";
  }

  public static void main(String[] args) {

    BenchMark bm = new BranchTaken();

    Execute.perform(bm);
  }
View Full Code Here

TOP

Related Classes of jbe.BenchMark

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.