/dalvik/dx/tests/078-dex-local-variable-table/ |
D | Blort.class | ... ] arr
public static int test06 (int)
int y
int y
int x
public static void test07 (boolean ... |
D | Blort.java | 49 int y = 1; in test06() local 50 return y; in test06() 52 int y = 2; in test06() local 53 return y; in test06() 59 boolean y = x; in test07() 64 byte y = x; in test08() 69 char y = x; in test09() local 74 double y = x; in test10() local 79 float y = x; in test11() local 84 int y = x; in test12() local [all …]
|
D | expected.txt | 130 0008: +local v1 y int 134 000b: -local v1 y int 137 000d: +local restart v1 y int 153 0003: +local v1 y boolean 169 0003: +local v1 y byte 185 0003: +local v1 y char 201 0003: +local v2 y double 217 0003: +local v1 y float 233 0003: +local v1 y int 249 0003: +local v2 y long [all …]
|
/dalvik/dx/tests/086-ssa-edge-split/ |
D | Blort.java | 26 int y = 1; in edgeSplitPredTest() local 31 y++; in edgeSplitPredTest() 33 return y; in edgeSplitPredTest() 62 int y = 0; in edgeSplitSuccessor() local 65 case 1: y++; in edgeSplitSuccessor() 67 case 2: y++; in edgeSplitSuccessor() 69 case 3: y++; in edgeSplitSuccessor() 72 return y; in edgeSplitSuccessor()
|
/dalvik/opcode-gen/ |
D | bytecode.txt | 58 # y 92 op 01 move 12x y none continue 93 op 02 move/from16 22x y none continue 94 op 03 move/16 32x y none continue 95 op 04 move-wide 12x y none continue 96 op 05 move-wide/from16 22x y none continue 97 op 06 move-wide/16 32x y none continue 98 op 07 move-object 12x y none continue 99 op 08 move-object/from16 22x y none continue 100 op 09 move-object/16 32x y none continue [all …]
|
/dalvik/docs/ |
D | porting-proto.c.txt | 38 s4 iadd32(s4 x, s4 y) { return x + y; } 39 s8 iadd64(s8 x, s8 y) { return x + y; } 40 float fadd32(float x, float y) { return x + y; } 41 double fadd64(double x, double y) { return x + y; } 43 s4 isub32(s4 x, s4 y) { return x - y; } 44 s8 isub64(s8 x, s8 y) { return x - y; } 45 float fsub32(float x, float y) { return x - y; } 46 double fsub64(double x, double y) { return x - y; } 50 s4 imul32(s4 x, s4 y) { return x * y; } 51 s8 imul64(s8 x, s8 y) { return x * y; } [all …]
|
/dalvik/dx/tests/047-dex-wide-args/ |
D | Blort.java | 19 public static long test1(int w, long x, int y, long z) { in test1() argument 20 return w + x + y + z; in test1() 23 public static long test2(long w, int x, long y, int z) { in test2() argument 24 return w + x + y + z; in test2()
|
/dalvik/dx/tests/004-cp-bottom-up/ |
D | small-class.txt | 18 01 0007 "x/y/Zzz" # 0006: utf8["x/y/Zzz"] 20 0c 0005 0006 # 0008: nat[blort:x/y/Zzz] 22 09 0003 0008 # 000a: field[Small.blort:x/y/Zzz]
|
D | expected.txt | 14 0006: utf8{"x/y/Zzz"} 16 0008: nat{blort:x/y/Zzz} 18 000a: field{Small.blort:x/y/Zzz}
|
/dalvik/dx/tests/005-cp-top-down/ |
D | small-class.txt | 20 09 0011 000c # 000a: field[Small.blort:x/y/Zzz] 22 0c 000f 000e # 000c: nat[blort:x/y/Zzz] 24 01 0007 "x/y/Zzz" # 000e: utf8["x/y/Zzz"]
|
D | expected.txt | 16 000a: field{Small.blort:x/y/Zzz} 18 000c: nat{blort:x/y/Zzz} 20 000e: utf8{"x/y/Zzz"}
|
/dalvik/dx/tests/097-dex-branch-offset-zero/ |
D | Blort.java | 27 public void test3(int x, int y) { in test3() argument 28 while (x < y) /*empty*/ ; in test3()
|
D | Blort.class | ... void test3 (int, int)
int x
int y |
/dalvik/dx/tests/137-dexmerger-dex38/src/invokecustom/ |
D | InvokeCustom.java | 67 public static int targetMethodTest5(int x, int y, int total) { in targetMethodTest5() argument 68 int calculated = x + y; in targetMethodTest5() 69 System.out.println("targetMethodTest5 " + x + " + " + y + " = " + calculated); in targetMethodTest5() 76 public static long targetMethodTest6(long x, long y, long total) { in targetMethodTest6() argument 77 long calculated = x + y; in targetMethodTest6() 78 System.out.println("targetMethodTest6 " + x + " + " + y + " = " + calculated); in targetMethodTest6() 85 public static double targetMethodTest7(float x, float y, double product) { in targetMethodTest7() argument 86 double calculated = x * y; in targetMethodTest7() 87 System.out.println("targetMethodTest7 " + x + " * " + y + " = " + calculated); in targetMethodTest7()
|
D | TestGenerator.java | 343 double y = -x; in generateMethodTest7() local 345 mv.visitLdcInsn((float) y); in generateMethodTest7() 346 mv.visitLdcInsn(x * y); in generateMethodTest7()
|
/dalvik/dx/tests/056-dex-call-interface/ |
D | Blort.java | 23 int y = (int) z.zorch4(); in test() local 24 return x + y; in test()
|
/dalvik/dx/tests/135-invoke-custom/src/invokecustom/ |
D | InvokeCustom.java | 71 public static int targetMethodTest5(int x, int y, int total) { in targetMethodTest5() argument 72 int calculated = x + y; in targetMethodTest5() 73 System.out.println("targetMethodTest5 " + x + " + " + y + " = " + calculated); in targetMethodTest5() 80 public static long targetMethodTest6(long x, long y, long total) { in targetMethodTest6() argument 81 long calculated = x + y; in targetMethodTest6() 82 System.out.println("targetMethodTest6 " + x + " + " + y + " = " + calculated); in targetMethodTest6() 89 public static double targetMethodTest7(float x, float y, double product) { in targetMethodTest7() argument 90 double calculated = x * y; in targetMethodTest7() 91 System.out.println("targetMethodTest7 " + x + " * " + y + " = " + calculated); in targetMethodTest7()
|
D | TestGenerator.java | 259 double y = -x; in generateMethodTest7() local 261 mv.visitLdcInsn((float) y); in generateMethodTest7() 262 mv.visitLdcInsn(x * y); in generateMethodTest7()
|
/dalvik/dx/tests/132-invoke-polymorphic/ |
D | TestInvokePolymorphic.java | 62 public static void testInvokeVoidReturn3IntArguments(MethodHandle mh, int x, int y, int z) in testInvokeVoidReturn3IntArguments() argument 64 mh.invoke( x, y, z); in testInvokeVoidReturn3IntArguments() 67 public static void testInvokeExactVoidReturn3IntArguments(MethodHandle mh, int x, int y, int z) in testInvokeExactVoidReturn3IntArguments() argument 69 mh.invokeExact(x, y, z); in testInvokeExactVoidReturn3IntArguments()
|
D | TestInvokePolymorphic.class | ... .lang.invoke.MethodHandle mh
int x
int y
int z
public static void testInvokeExactVoidReturn3IntArguments (java.lang ... |
D | expected.txt | 137 |[36] "y" 601 | parameter y v2 729 | parameter y v2 1102 0009e2: 7900 |"y" 1197 000a2d: 37 |parameter y v2 1259 000a5f: 37 |parameter y v2
|
/dalvik/dx/tests/062-dex-synch-method/ |
D | Blort.java | 27 public synchronized int testInstance3(int x, int y, int z) { in testInstance3() argument 55 public static synchronized int testStatic3(int x, int y, int z) { in testStatic3() argument
|
/dalvik/dx/tests/024-code-bytecode/ |
D | expected.txt | 22 0010: utf8{"x/y/Zzz"} 24 0012: nat{blort:x/y/Zzz} 26 0014: field{Small.blort:x/y/Zzz} 246 014e: getstatic field{Small.blort:x/y/Zzz} 247 0151: putstatic field{Small.blort:x/y/Zzz} 248 0154: getfield field{Small.blort:x/y/Zzz} 249 0157: putfield field{Small.blort:x/y/Zzz}
|
D | small-class.txt | 26 01 0007 "x/y/Zzz" # 0010: utf8["x/y/Zzz"] 28 0c 000f 0010 # 0012: nat[blort:x/y/Zzz] 30 09 0001 0012 # 0014: field[Small.blort:x/y/Zzz]
|
/dalvik/dx/tests/032-bb-live-code/ |
D | blort.j | 179 ldc_w "y"
|