| /art/test/427-bitwise/src/ |
| D | Main.java | 86 static int $opt$And(int a, int b) { in $opt$And() 90 static int $opt$AndLit8(int a) { in $opt$AndLit8() 94 static int $opt$AndLit16(int a) { in $opt$AndLit16() 98 static long $opt$And(long a, long b) { in $opt$And() 102 static long $opt$AndLit8(long a) { in $opt$AndLit8() 106 static long $opt$AndLit16(long a) { in $opt$AndLit16() 148 static int $opt$Or(int a, int b) { in $opt$Or() 152 static int $opt$OrLit8(int a) { in $opt$OrLit8() 156 static int $opt$OrLit16(int a) { in $opt$OrLit16() 160 static long $opt$Or(long a, long b) { in $opt$Or() [all …]
|
| /art/test/422-type-conversion/src/ |
| D | Main.java | 632 static long $opt$noinline$ByteToLong(byte a) { if (doThrow) throw new Error(); return (long)a; } in $opt$noinline$ByteToLong() 633 static long $opt$noinline$ShortToLong(short a) { if (doThrow) throw new Error(); return (long)a; } in $opt$noinline$ShortToLong() 634 static long $opt$noinline$IntToLong(int a) { if (doThrow) throw new Error(); return (long)a; } in $opt$noinline$IntToLong() 635 static long $opt$noinline$CharToLong(int a) { if (doThrow) throw new Error(); return (long)a; } in $opt$noinline$CharToLong() 638 …static float $opt$noinline$ByteToFloat(byte a) { if (doThrow) throw new Error(); return (float)a; } in $opt$noinline$ByteToFloat() 639 …static float $opt$noinline$ShortToFloat(short a) { if (doThrow) throw new Error(); return (float)a… in $opt$noinline$ShortToFloat() 640 static float $opt$noinline$IntToFloat(int a) { if (doThrow) throw new Error(); return (float)a; } in $opt$noinline$IntToFloat() 641 …static float $opt$noinline$CharToFloat(char a) { if (doThrow) throw new Error(); return (float)a; } in $opt$noinline$CharToFloat() 644 …static double $opt$noinline$ByteToDouble(byte a) { if (doThrow) throw new Error(); return (double)… in $opt$noinline$ByteToDouble() 645 …static double $opt$noinline$ShortToDouble(short a) { if (doThrow) throw new Error(); return (doubl… in $opt$noinline$ShortToDouble() [all …]
|
| /art/test/432-optimizing-cmp/src/ |
| D | Main.java | 125 static boolean $opt$eq(float a, float b) { in $opt$eq() 129 static boolean $opt$eq(double a, double b) { in $opt$eq() 133 static boolean $opt$lt(long a, long b) { in $opt$lt() 137 static boolean $opt$lt(float a, float b) { in $opt$lt() 141 static boolean $opt$lt(double a, double b) { in $opt$lt() 145 static boolean $opt$gt(long a, long b) { in $opt$gt() 149 static boolean $opt$gt(float a, float b) { in $opt$gt() 153 static boolean $opt$gt(double a, double b) { in $opt$gt() 159 private static int smaliCmpLong(long a, long b) throws Exception { in smaliCmpLong() 166 private static int smaliCmpGtFloat(float a, float b) throws Exception { in smaliCmpGtFloat() [all …]
|
| /art/test/451-regression-add-float/src/ |
| D | Main.java | 27 public static int add3(int a) { in add3() 31 public static long add3(long a) { in add3() 35 public static float add3(float a) { in add3() 39 public static double add3(double a) { in add3() 43 public static void assertEqual(int a, int b) { in assertEqual() 49 public static void assertEqual(long a, long b) { in assertEqual() 55 public static void assertEqual(float a, float b) { in assertEqual() 64 public static void assertEqual(double a, double b) { in assertEqual()
|
| /art/test/410-floats/src/ |
| D | Main.java | 20 float[] a = new float[2]; in main() local 57 public static float returnFloat(float[] a) { in returnFloat() 65 public static double returnDouble(double[] a) { in returnDouble() 69 public static float takeAFloat(float a) { in takeAFloat() 73 public static double takeADouble(double a) { in takeADouble() 77 public static double takeThreeDouble(double a, double b, double c) { in takeThreeDouble() 81 public static float takeThreeFloat(float a, float b, float c) { in takeThreeFloat() 85 public static float invokeTakeAFloat(float a) { in invokeTakeAFloat() 89 public static double invokeTakeADouble(double a) { in invokeTakeADouble() 93 public static double invokeTakeThreeDouble(double a, double b, double c) { in invokeTakeThreeDouble() [all …]
|
| /art/test/436-rem-float/src/ |
| D | Main.java | 218 static float $opt$Rem(float a, float b) { in $opt$Rem() 222 static float $opt$RemConst(float a) { in $opt$RemConst() 226 static double $opt$Rem(double a, double b) { in $opt$Rem() 230 static double $opt$RemConst(double a) { in $opt$RemConst() 234 public static void expectApproxEquals(float a, float b) { in expectApproxEquals() 243 public static void expectApproxEquals(double a, double b) { in expectApproxEquals() 252 public static void expectNaN(float a) { in expectNaN() 258 public static void expectNaN(double a) { in expectNaN()
|
| /art/runtime/entrypoints/quick/ |
| D | quick_math_entrypoints.cc | 26 int CmplFloat(float a, float b) { in CmplFloat() 37 int CmpgFloat(float a, float b) { in CmpgFloat() 48 int CmpgDouble(double a, double b) { in CmpgDouble() 59 int CmplDouble(double a, double b) { in CmplDouble() 74 extern "C" int64_t artLmul(int64_t a, int64_t b) { in artLmul() 78 extern "C" int64_t artLdiv(int64_t a, int64_t b) { in artLdiv() 82 extern "C" int64_t artLmod(int64_t a, int64_t b) { in artLmod()
|
| /art/test/417-optimizing-arith-div/src/ |
| D | Main.java | 45 public static void expectApproxEquals(float a, float b) { in expectApproxEquals() 54 public static void expectApproxEquals(double a, double b) { in expectApproxEquals() 63 public static void expectNaN(float a) { in expectNaN() 69 public static void expectNaN(double a) { in expectNaN() 222 static int $opt$Div(int a, int b) { in $opt$Div() 226 static int $opt$DivZero(int a) { in $opt$DivZero() 231 static int $opt$DivConst(int a) { in $opt$DivConst() 235 static long $opt$DivConst(long a) { in $opt$DivConst() 239 static long $opt$Div(long a, long b) { in $opt$Div() 243 static long $opt$DivZero(long a) { in $opt$DivZero() [all …]
|
| /art/test/105-invoke/src/ |
| D | Main.java | 19 int virI_I(int a) { in virI_I() 23 int virI_II(int a, int b) { in virI_II() 27 int virI_III(int a, int b, int c) { in virI_III() 31 int virI_IIII(int a, int b, int c, int d) { in virI_IIII() 35 int virI_IIIII(int a, int b, int c, int d, int e) { in virI_IIIII() 39 int virI_IIIIII(int a, int b, int c, int d, int e, int f) { in virI_IIIIII() 43 static int statI_I(int a) { in statI_I() 47 static int statI_II(int a, int b) { in statI_II() 51 static int statI_III(int a, int b, int c) { in statI_III() 55 static int statI_IIII(int a, int b, int c, int d) { in statI_IIII() [all …]
|
| /art/test/402-optimizing-control-flow/src/ |
| D | Main.java | 48 static int $opt$testIfEq1(int a) { in $opt$testIfEq1() 56 static int $opt$testIfEq2(int a) { in $opt$testIfEq2() 64 static int $opt$testWhileLoop(int a) { in $opt$testWhileLoop() 69 static int $opt$testDoWhileLoop(int a) { in $opt$testDoWhileLoop() 75 static int $opt$testForLoop(int a) { in $opt$testForLoop() 80 static int $opt$testIfWithLocal(int a) { in $opt$testIfWithLocal()
|
| /art/test/565-checker-doublenegbitwise/src/ |
| D | Main.java | 60 public static int $opt$noinline$andToOr(int a, int b) { in $opt$noinline$andToOr() 97 public static boolean $opt$noinline$booleanAndToOr(boolean a, boolean b) { in $opt$noinline$booleanAndToOr() 128 public static long $opt$noinline$orToAnd(long a, long b) { in $opt$noinline$orToAnd() 165 public static boolean $opt$noinline$booleanOrToAnd(boolean a, boolean b) { in $opt$noinline$booleanOrToAnd() 205 public static int $opt$noinline$regressInputsAway(int a, int b) { in $opt$noinline$regressInputsAway() 236 public static int $opt$noinline$notXorToXor(int a, int b) { in $opt$noinline$notXorToXor() 268 public static boolean $opt$noinline$booleanNotXorToXor(boolean a, boolean b) { in $opt$noinline$booleanNotXorToXor() 302 public static int $opt$noinline$notMultipleUses(int a, int b) { in $opt$noinline$notMultipleUses()
|
| /art/test/549-checker-types-merge/src/ |
| D | Main.java | 51 private Object testMergeClasses(boolean cond, ClassExtendsA a, ClassExtendsB b) { in testMergeClasses() 59 private Object testMergeClasses(boolean cond, ClassExtendsA a, ClassSuper b) { in testMergeClasses() 67 private Object testMergeClasses(boolean cond, ClassSuper a, ClassSuper b) { in testMergeClasses() 75 private Object testMergeClasses(boolean cond, ClassOtherSuper a, ClassSuper b) { in testMergeClasses() 83 …private Object testMergeClassWithInterface(boolean cond, ClassImplementsInterfaceA a, InterfaceSup… in testMergeClassWithInterface() 91 private Object testMergeClassWithInterface(boolean cond, ClassSuper a, InterfaceSuper b) { in testMergeClassWithInterface() 99 private Object testMergeInterfaces(boolean cond, InterfaceExtendsA a, InterfaceSuper b) { in testMergeInterfaces() 107 private Object testMergeInterfaces(boolean cond, InterfaceSuper a, InterfaceSuper b) { in testMergeInterfaces() 115 private Object testMergeInterfaces(boolean cond, InterfaceExtendsA a, InterfaceExtendsB b) { in testMergeInterfaces() 123 private Object testMergeInterfaces(boolean cond, InterfaceSuper a, InterfaceOtherSuper b) { in testMergeInterfaces()
|
| /art/test/514-shifts/src/ |
| D | Main.java | 28 int a = myField; in testIntShiftLeft() local 39 int a = myField; in testIntShiftRight() local 50 int a = myField; in testIntUnsignedShiftRight() local 61 long a = myLongField; in testLongShiftLeft() local 74 long a = myLongField; in testLongShiftRight() local 87 long a = myLongField; in testLongUnsignedShiftRight() local
|
| /art/test/414-optimizing-arith-sub/src/ |
| D | Main.java | 45 public static void expectApproxEquals(float a, float b) { in expectApproxEquals() 53 public static void expectApproxEquals(double a, double b) { in expectApproxEquals() 61 public static void expectNaN(float a) { in expectNaN() 67 public static void expectNaN(double a) { in expectNaN() 154 static int $opt$Sub(int a, int b) { in $opt$Sub() 158 static long $opt$Sub(long a, long b) { in $opt$Sub() 162 static float $opt$Sub(float a, float b) { in $opt$Sub() 166 static double $opt$Sub(double a, double b) { in $opt$Sub()
|
| /art/test/551-checker-shifter-operand/src/ |
| D | Main.java | 124 public static int $opt$noinline$sameInput(int a) { in $opt$noinline$sameInput() 183 static void $opt$noinline$testAnd(long a, long b) { in $opt$noinline$testAnd() 198 static void $opt$noinline$testOr(int a, int b) { in $opt$noinline$testOr() 213 static void $opt$noinline$testXor(long a, long b) { in $opt$noinline$testXor() 228 static void $opt$noinline$testNeg(int a) { in $opt$noinline$testNeg() 249 public static void $opt$validateExtendByteInt1(int a, byte b) { in $opt$validateExtendByteInt1() 259 public static void $opt$validateExtendByteInt2(int a, byte b) { in $opt$validateExtendByteInt2() 278 public static void $opt$validateExtendByteLong(long a, byte b) { in $opt$validateExtendByteLong() 291 public static void $opt$validateExtendByte(long a, byte b) { in $opt$validateExtendByte() 304 public static void $opt$validateExtendCharInt1(int a, char b) { in $opt$validateExtendCharInt1() [all …]
|
| /art/test/411-optimizing-arith-mul/src/ |
| D | Main.java | 45 public static void expectApproxEquals(float a, float b, float maxDelta) { in expectApproxEquals() 54 public static void expectApproxEquals(double a, double b, double maxDelta) { in expectApproxEquals() 63 public static void expectNaN(float a) { in expectNaN() 69 public static void expectNaN(double a) { in expectNaN() 166 static int $opt$Mul(int a, int b) { in $opt$Mul() 170 static long $opt$Mul(long a, long b) { in $opt$Mul() 174 static float $opt$Mul(float a, float b) { in $opt$Mul() 178 static double $opt$Mul(double a, double b) { in $opt$Mul()
|
| /art/test/NonStaticLeafMethods/ |
| D | NonStaticLeafMethods.java | 28 int sum(int a, int b) { in sum() 31 int sum(int a, int b, int c) { in sum() 34 int sum(int a, int b, int c, int d) { in sum() 37 int sum(int a, int b, int c, int d, int e) { in sum() 43 double sum(double a, double b) { in sum() 46 double sum(double a, double b, double c) { in sum() 49 double sum(double a, double b, double c, double d) { in sum() 52 double sum(double a, double b, double c, double d, double e) { in sum()
|
| /art/test/StaticLeafMethods/ |
| D | StaticLeafMethods.java | 26 static int sum(int a, int b) { in sum() 29 static int sum(int a, int b, int c) { in sum() 32 static int sum(int a, int b, int c, int d) { in sum() 35 static int sum(int a, int b, int c, int d, int e) { in sum() 41 static double sum(double a, double b) { in sum() 44 static double sum(double a, double b, double c) { in sum() 47 static double sum(double a, double b, double c, double d) { in sum() 50 static double sum(double a, double b, double c, double d, double e) { in sum()
|
| /art/test/477-checker-bound-type/src/ |
| D | Main.java | 22 public static Object boundTypeForIf(Object a) { in boundTypeForIf() 32 public static Object boundTypeForInstanceOf(Object a) { in boundTypeForInstanceOf() 42 public static Object noBoundTypeForIf(Object a) { in noBoundTypeForIf() 52 public static Object noBoundTypeForInstanceOf(Object a) { in noBoundTypeForInstanceOf()
|
| /art/test/428-optimizing-arith-rem/src/ |
| D | Main.java | 94 static int $opt$Rem(int a, int b) { in $opt$Rem() 98 static int $opt$RemZero(int a) { in $opt$RemZero() 103 static int $opt$RemConst(int a) { in $opt$RemConst() 107 static long $opt$RemConst(long a) { in $opt$RemConst() 111 static long $opt$Rem(long a, long b) { in $opt$Rem() 115 static long $opt$RemZero(long a) { in $opt$RemZero()
|
| /art/tools/ahat/src/ |
| D | Sort.java | 42 public int compare(Instance a, Instance b) { in compare() 55 public int compare(Instance a, Instance b) { in compare() 78 public int compare(Instance a, Instance b) { in compare() 99 public int compare(T a, T b) { in compare() 137 public int compare(Site a, Site b) { in compare() 150 public int compare(Site.ObjectsInfo a, Site.ObjectsInfo b) { in compare() 162 public int compare(Site.ObjectsInfo a, Site.ObjectsInfo b) { in compare() 174 public int compare(Site.ObjectsInfo a, Site.ObjectsInfo b) { in compare() 189 public int compare(InstanceUtils.NativeAllocation a, InstanceUtils.NativeAllocation b) { in compare() 202 public int compare(InstanceUtils.NativeAllocation a, InstanceUtils.NativeAllocation b) { in compare()
|
| /art/test/403-optimizing-long/src/ |
| D | Main.java | 88 static long $opt$TakeOneLong2(int a, long l) { in $opt$TakeOneLong2() 92 static long $opt$TakeOneLong3(int a, int b, long l) { in $opt$TakeOneLong3() 96 static long $opt$TakeOneLong4(int a, int b, int c, long l) { in $opt$TakeOneLong4() 100 static long $opt$TakeOneLong5(int a, int b, int c,int d, long l) { in $opt$TakeOneLong5() 104 static long $opt$AddTwoLongs(long a, long b) { in $opt$AddTwoLongs() 108 static long $opt$AddThreeLongs(long a, long b, long c) { in $opt$AddThreeLongs() 112 static long $opt$SubTwoLongs(long a, long b) { in $opt$SubTwoLongs()
|
| /art/test/437-inline/src/ |
| D | Main.java | 68 public static int $opt$inline$returnParameter(int a) { in $opt$inline$returnParameter() 72 public static int $opt$inline$returnAdd(int a, int b) { in $opt$inline$returnAdd() 76 public static int $opt$inline$returnSub(int a, int b) { in $opt$inline$returnSub() 84 public static long $opt$inline$returnWideParameter(long a) { in $opt$inline$returnWideParameter() 100 public static void $opt$inline$returnVoidWithOneParameter(int a) { in $opt$inline$returnVoidWithOneParameter()
|
| /art/test/404-optimizing-allocator/src/ |
| D | Main.java | 35 int a = 0; in $opt$reg$TestLostCopy() local 45 int a = 0; in $opt$reg$TestTwoLive() local 55 int a = 0; in $opt$reg$TestThreeLive() local 67 int a = 0; in $opt$reg$TestFourLive() local 81 int a = 0; in $opt$reg$TestMultipleLive() local 101 int a = 0; in $opt$reg$TestWithBreakAndContinue() local 116 public static int $opt$reg$testSpillInIf(int a, int b, int c) { in $opt$reg$testSpillInIf() 129 public static int $opt$reg$TestAgressiveLive1(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive1() 150 public static int $opt$reg$TestAgressiveLive2(int a, int b, int c, int d, int e, int f, int g) { in $opt$reg$TestAgressiveLive2()
|
| /art/test/405-optimizing-long-allocator/src/ |
| D | Main.java | 41 long a = 0; in $opt$TestLostCopy() local 51 long a = 0; in $opt$TestTwoLive() local 61 long a = 0; in $opt$TestThreeLive() local 73 long a = 0; in $opt$TestFourLive() local 87 long a = 0; in $opt$TestMultipleLive() local 107 long a = 0; in $opt$TestWithBreakAndContinue() local 122 public static long $opt$testSpillInIf(long a, long b, long c) { in $opt$testSpillInIf() 135 …public static long $opt$TestAgressiveLive1(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive1() 156 …public static long $opt$TestAgressiveLive2(long a, long b, long c, long d, long e, long f, long g)… in $opt$TestAgressiveLive2()
|