Lines Matching refs:obj
130 static int test2(TestClass obj) { in test2() argument
131 obj.j = 1; in test2()
132 obj.j = 1; in test2()
133 return obj.j; in test2()
159 static int test3(TestClass obj) { in test3() argument
162 obj.next = obj2; // Make obj2 a non-singleton. in test3()
164 obj.i = 1; in test3()
169 return obj.i + obj1.j + obj2.i + obj2.j; in test3()
206 static int test7(TestClass obj) { in test7() argument
207 obj.i = 1; in test7()
209 return obj.i; in test7()
227 TestClass obj = new TestClass(); in test8() local
228 obj.i = 1; in test8()
230 return obj.i; in test8()
246 static int test9(TestClass obj) { in test9() argument
249 obj.next = obj2; in test9()
265 static int test11(TestClass obj) { in test11() argument
266 obj.i = 1; in test11()
269 sum += obj.i; in test11()
363 TestClass obj = new TestClass(1, 2); in test16() local
364 return obj.i + obj.j; in test16()
381 TestClass obj = new TestClass(); in test17() local
382 obj.j = 1; in test17()
383 return obj.i; in test17()
395 static int test18(TestClass obj) { in test18() argument
396 obj.k = 1; in test18()
397 return obj.k; in test18()
425 TestClass obj = new TestClass(); in test20() local
426 obj.i = 0; in test20()
427 return obj; in test20()
448 TestClass obj = new TestClass(); in test21() local
450 obj.str = "abc"; in test21()
453 obj.str = "def"; in test21()
455 System.out.print(obj0.str.substring(0, 0) + obj.str.substring(0, 0)); in test21()
563 TestClass obj = new TestClass(); in $noinline$testHSelect() local
565 obj.i = 0xdead; in $noinline$testHSelect()
567 obj2 = obj; in $noinline$testHSelect()
645 TestClass2 obj = new TestClass2(); in testStoreStore() local
646 obj.i = 41; in testStoreStore()
647 obj.j = 42; in testStoreStore()
648 obj.i = 41; in testStoreStore()
649 obj.j = 43; in testStoreStore()
650 return obj; in testStoreStore()
664 private static void testStoreStore2(TestClass2 obj) { in testStoreStore2() argument
665 obj.i = 41; in testStoreStore2()
666 obj.j = 42; in testStoreStore2()
667 obj.i = 43; in testStoreStore2()
668 obj.j = 44; in testStoreStore2()
683 private static void testStoreStore3(TestClass2 obj, boolean flag) { in testStoreStore3() argument
684 obj.i = 41; in testStoreStore3()
685 obj.j = 42; // redundant since it's overwritten in both branches below. in testStoreStore3()
687 obj.j = 43; in testStoreStore3()
689 obj.j = 44; in testStoreStore3()
769 private static void testThrow(TestClass2 obj, Exception e) throws Exception { in testThrow() argument
770 obj.i = 55; in testThrow()
803 TestClass2 obj = new TestClass2(); in testStoreStoreWithDeoptimize() local
804 obj.i = 41; in testStoreStoreWithDeoptimize()
805 obj.j = 42; in testStoreStoreWithDeoptimize()
806 obj.i = 41; in testStoreStoreWithDeoptimize()
807 obj.j = 43; in testStoreStoreWithDeoptimize()
966 TestClass obj = new TestClass(); in testExitMerge() local
968 obj.i = 1; in testExitMerge()
969 return obj.i + 1; in testExitMerge()
971 obj.i = 2; in testExitMerge()
988 TestClass obj = new TestClass(); in testExitMerge2() local
991 obj.i = 1; in testExitMerge2()
992 res = obj.i + 1; in testExitMerge2()
994 obj.i = 2; in testExitMerge2()
995 res = obj.j + 2; in testExitMerge2()
1012 Object obj = array[0]; in testStoreSameValue() local
1013 array[1] = obj; // store the same value as the defaut value. in testStoreSameValue()