Lines Matching refs:j
36 TestClass(int i, int j) { in TestClass() argument
38 this.j = j; in TestClass()
41 int j; field in TestClass
56 int j; field in TestClass2
147 obj2.j = 2; in test1()
148 return obj1.i + obj2.j; in test1()
164 obj.j = 1; in test2()
165 obj.j = 1; in test2()
166 return obj.j; in test2()
201 obj1.j = 2; in test3()
204 obj2.j = 4; in test3()
205 return obj.i + obj1.j + obj2.i + obj2.j; in test3()
290 obj1.j = 2; in test6()
292 obj2.j = 2; in test6()
294 return obj1.j + obj2.j; in test6()
490 return obj.i + obj.j; in test16()
508 obj.j = 1; in test17()
934 obj.j = 2; in test30()
973 obj.j = obj.i; in test31()
1006 case 2: obj.j = 1; break; in test32()
1111 obj.j = 5; in test35()
1523 obj.j = 42; in testStoreStore()
1525 obj.j = 43; in testStoreStore()
1542 obj.j = 42; in testStoreStore2()
1544 obj.j = 44; in testStoreStore2()
1564 obj.j = 42; // redundant since it's overwritten in both branches below. in testStoreStore3()
1566 obj.j = 43; in testStoreStore3()
1568 obj.j = 44; in testStoreStore3()
1614 int j = obj2.j; in testStoreStore6() local
1616 return j; in testStoreStore6()
1684 obj.j = 42; in testStoreStoreWithDeoptimize()
1686 obj.j = 43; in testStoreStoreWithDeoptimize()
1878 res = obj.j + 2; in testExitMerge2()
2248 obj.j = i; in testLoop2()
2319 obj.j = n; in testLoop5()
2323 obj.i = obj.j; in testLoop5()
2324 obj.j = tmp; in testLoop5()
2355 obj.j = n; in testLoop6()
2359 obj.i = obj.j; in testLoop6()
2360 obj.j = tmp; in testLoop6()
2392 obj.i = obj.j; in testLoop7()
2393 obj.j = tmp; in testLoop7()
2433 obj.i = obj.j; in testLoop8()
2434 obj.j = tmp; in testLoop8()
2531 obj.j = 2; // Use write side effects to stop GVN from eliminating the load below. in testLoop10()
2707 obj.j = 2; // Use write side effects to stop GVN from eliminating the load below. in testLoop14()
2713 obj.j = 3; // Use write side effects to stop GVN from eliminating the load below. in testLoop14()
2818 obj.j = 2; // Unrelated. in testLoop17()
2942 obj.j = 0; // Use write side effects to stop GVN from eliminating the load below. in testLoop21()
2943 obj.j = obj.i; in testLoop21()
2977 obj.j = 0; // Use write side effects to stop GVN from eliminating the load below. in testLoop22()
2978 obj.j = obj.i; in testLoop22()
3386 obj.j += zero + unknown; in testLoop33()
3388 return obj.j; in testLoop33()
3598 for (int j = i + 1; j < n; ++j) { in testNestedLoop1()
3637 obj.j = 2; in testNestedLoop2()
3639 int tmp = obj.j; in testNestedLoop2()
3640 for (int j = i + 1; j < n; ++j) { in testNestedLoop2()
3681 obj.j = 2; in testNestedLoop3()
3682 for (int j = i + 1; j < n; ++j) { in testNestedLoop3()
3685 obj.i = obj.j; in testNestedLoop3()
3719 for (int j = i + 1; j < n; ++j) { in testNestedLoop4()
3756 for (int j = i + 1; j < n; ++j) { in testNestedLoop5()
3757 obj.j = 3; // Unrelated. in testNestedLoop5()
3797 obj.j = 2; in testNestedLoop6()
3799 for (int j = i + 1; j < n; ++j) { in testNestedLoop6()
3800 int tmp = obj.j; in testNestedLoop6()
3831 for (int j = i + 1; j < n; ++j) { in testNestedLoop7()
3832 obj.i = a0[j]; in testNestedLoop7()
3867 for (int j = i + 1; j < n; ++j) { in testNestedLoop8()
4359 assertIntEquals(testStoreStore().j, 43); in main()
4368 assertIntEquals(testclass2.j, 44); in main()
4372 assertIntEquals(testclass2.j, 43); in main()
4375 assertIntEquals(testclass2.j, 44); in main()
4384 testclass2.j = 88; in main()