Searched defs:opt (Results 1 - 7 of 7) sorted by relevance

/art/test/405-optimizing-long-allocator/src/
H A DMain.java17 // Note that $opt$ is a marker for the optimizing compiler to ensure
23 expectEquals(4, $opt$TestLostCopy());
24 expectEquals(-10, $opt$TestTwoLive());
25 expectEquals(-20, $opt$TestThreeLive());
26 expectEquals(5, $opt$TestFourLive());
27 expectEquals(10, $opt$TestMultipleLive());
28 expectEquals(1, $opt$TestWithBreakAndContinue());
29 expectEquals(-15, $opt$testSpillInIf(5, 6, 7));
30 expectEquals(-567, $opt$TestAgressiveLive1(1, 2, 3, 4, 5, 6, 7));
31 expectEquals(-77, $opt
[all...]
/art/test/402-optimizing-control-flow/src/
H A DMain.java17 // Note that $opt$ is a marker for the optimizing compiler to ensure
29 int result = $opt$testIfEq1(42);
32 result = $opt$testIfEq2(42);
35 result = $opt$testWhileLoop(42);
38 result = $opt$testDoWhileLoop(42);
41 result = $opt$testForLoop(42);
44 result = $opt$testIfWithLocal(5);
48 static int $opt$testIfEq1(int a) {
56 static int $opt$testIfEq2(int a) {
64 static int $opt
[all...]
/art/test/401-optimizing-compiler/src/
H A DMain.java17 // Note that $opt$ is a marker for the optimizing compiler to ensure
24 $opt$TestInvokeStatic();
30 $opt$TestInvokeNew();
32 int result = $opt$TestInvokeIntParameter(42);
38 $opt$TestInvokeObjectParameter(new Object());
41 Object b = $opt$TestInvokeObjectParameter(a);
46 result = $opt$TestInvokeWith2Parameters(10, 9);
51 result = $opt$TestInvokeWith3Parameters(10, 9, 1);
56 result = $opt$TestInvokeWith5Parameters(10000, 1000, 100, 10, 1);
61 result = $opt
[all...]
/art/test/403-optimizing-long/src/
H A DMain.java17 // Note that $opt$ is a marker for the optimizing compiler to ensure
28 long l = $opt$ReturnLong();
32 l = $opt$TakeOneLong1(42);
35 l = $opt$TakeOneLong2(0, 42);
38 l = $opt$TakeOneLong3(0, 1, 42);
41 l = $opt$TakeOneLong4(0, 1, 2, 42);
44 l = $opt$AddTwoLongs(42, 41);
47 l = $opt$SubTwoLongs(42, 41);
50 l = $opt$MakeCallsWithLongs1();
53 l = $opt
[all...]
/art/test/404-optimizing-allocator/src/
H A DMain.java17 // Note that $opt$reg$ is a marker for the optimizing compiler to ensure
23 expectEquals(4, $opt$reg$TestLostCopy());
24 expectEquals(-10, $opt$reg$TestTwoLive());
25 expectEquals(-20, $opt$reg$TestThreeLive());
26 expectEquals(5, $opt$reg$TestFourLive());
27 expectEquals(10, $opt$reg$TestMultipleLive());
28 expectEquals(1, $opt$reg$TestWithBreakAndContinue());
29 expectEquals(-15, $opt$reg$testSpillInIf(5, 6, 7));
30 expectEquals(-567, $opt$reg$TestAgressiveLive1(1, 2, 3, 4, 5, 6, 7));
31 expectEquals(-77, $opt
[all...]
/art/test/407-arrays/src/
H A DMain.java21 $opt$testReads(new boolean[1], new byte[1], new char[1], new short[1],
23 $opt$testWrites(new boolean[2], new byte[2], new char[2], new short[2],
32 static void $opt$testReads(boolean[] bools, byte[] bytes, char[] chars, short[] shorts,
56 static void $opt$testWrites(boolean[] bools, byte[] bytes, char[] chars, short[] shorts,
101 $opt$doArrayLoad(array, index);
111 $opt$doArrayStore(array, index);
120 public static void $opt$doArrayLoad(boolean[] array, int index) {
124 public static void $opt$doArrayStore(boolean[] array, int index) {
/art/test/406-fields/src/
H A DMain.java21 $opt$testAll();
24 static void $opt$testAll() {

Completed in 2659 milliseconds