Home
last modified time | relevance | path

Searched refs:v3 (Results 1 – 16 of 16) sorted by relevance

/art/test/467-regalloc-pair/smali/
DTestCase.smali27 move v3, v2
33 move v0, v3
35 const/4 v3, 6
36 if-ge v1, v3, :label2
37 const/16 v3, 8
38 shl-long/2addr v4, v3
39 add-int/lit8 v3, v0, 1
48 move v0, v3
51 add-int/lit8 v3, v0, 1
/art/test/800-smali/smali/
Db_22331663.smali17 new-instance v3, Ljava/lang/RuntimeException;
18 invoke-direct {v3}, Ljava/lang/RuntimeException;-><init>()V
19 throw v3
25 new-instance v3, Ljava/lang/RuntimeException;
26 invoke-direct {v3}, Ljava/lang/RuntimeException;-><init>()V
27 throw v3
Db_22080519.smali13 aget-object v3, v2, v1
20 move-exception v3
21 throw v3
Dmove_exc.smali22 move-exception v3
23 throw v3
Db_17790197.smali15 add-float v3, v0, v1
Db_20224106.smali14 invoke-interface {v2, v3}, Ljava/net/DatagramSocket;->checkPort(I)V
Db_23201502.smali20 int-to-double v2, v2 # Definitely make v2+v3 double.
/art/compiler/utils/
Dswap_space_test.cc56 SwapVector<int32_t> v3(alloc); in SwapTest() local
57 v3.reserve(500000); in SwapTest()
59 v3.push_back(i); in SwapTest()
67 EXPECT_EQ(i, v3[i]); in SwapTest()
/art/test/459-dead-phi/smali/
DEquivalentPhi.smali30 move v3, v2
32 move v3, v0
33 # v3 will be a phi with (int, int) as input.
36 # for v3 with float type, which in turn will lead to creating
40 return v3
/art/runtime/
Ddex_instruction_visitor_test.cc58 CountVisitor v3; in TEST() local
60 v3.Visit(c3, sizeof(c3)); in TEST()
61 EXPECT_EQ(3, v3.count_); in TEST()
/art/test/432-optimizing-cmp/smali/
Dcmp.smali7 cmp-long v0, v1, v3
25 cmpg-double v0, v1, v3
31 cmpl-double v0, v1, v3
/art/test/435-new-instance/smali/
Dinstance.smali28 # invoke-direct {v3}, LTestInterface;-><init>()V
36 # invoke-direct {v3}, LTestClass;-><init>()V
44 # invoke-direct {v3}, Lpck/ProtectedClass;-><init>()V
52 # invoke-direct {v3}, LUnknownClass;-><init>()V
/art/test/412-new-array/smali/
Dfilled_new_array.smali7 filled-new-array {v1, v2, v3}, [I
28 filled-new-array/range {v1 .. v3}, [I
/art/test/134-reg-promotion/smali/
DTest.smali51 move-result-object v3
52 if-nez v3, :skip
/art/test/457-regs/smali/
DPhiLiveness.smali23 move v2, v3
35 move v2, v3
/art/test/083-compiler-regressions/src/
DMain.java993 int v3 = B16177324Values.values[0]; // Should throw NPE. in b16177324Test() local
995 System.out.println("Unexpectedly retrieved all values: " + v1 + ", " + v2 + ", " + v3); in b16177324Test()