Searched refs:testObj (Results 1 – 11 of 11) sorted by relevance
/art/test/1956-pop-frame-jit-calling/src/ |
D | Main.java | 40 super(run_class_load_tests, (testObj) -> { in Main() 43 ensureMethodJitCompiled(testObj.getCallingMethod()); in Main()
|
/art/test/1955-pop-frame-jit-called/src/ |
D | Main.java | 40 super(run_class_load_tests, (testObj) -> { in Main() 43 ensureMethodJitCompiled(testObj.getCalledMethod()); in Main()
|
/art/test/1954-pop-frame-jit/src/ |
D | Main.java | 40 super(run_class_load_tests, (testObj) -> { in Main() 45 for (Method m : testObj.getClass().getMethods()) { in Main()
|
/art/test/1970-force-early-return-long/src/art/ |
D | Test1970.java | 85 public void runTestOn(Supplier<TestRunnable> testObj, ThreadRunnable su, ThreadRunnable cl) 87 runTestOn(testObj, makeSuspend(su, cl)); 153 public final TestRunnable testObj; 157 this.testObj = obj; 168 TestRunnable normal_run = Id(normal_config.testObj); 183 TestRunnable testObj = Id(force_return_config.testObj); 185 System.out.println("Single call with force-early-return on " + testObj); 201 testObj.run(); 237 System.out.println("result for " + testObj + " is " + testObj.getReturnValue());
|
/art/test/1968-force-early-return/src/art/ |
D | Test1968.java | 112 public void runTestOn(Supplier<TestRunnable> testObj, ThreadRunnable su, ThreadRunnable cl) 114 runTestOn(testObj, makeSuspend(su, cl)); 180 public final TestRunnable testObj; 184 this.testObj = obj; 195 TestRunnable normal_run = Id(normal_config.testObj); 210 TestRunnable testObj = Id(force_return_config.testObj); 212 System.out.println("Single call with force-early-return on " + testObj); 228 testObj.run(); 236 preTest.accept(testObj); 267 System.out.println("result for " + testObj + " is " + testObj.getReturnValue());
|
/art/test/1969-force-early-return-void/src/art/ |
D | Test1969.java | 78 public void runTestOn(Supplier<Runnable> testObj, ThreadRunnable su, ThreadRunnable cl) 80 runTestOn(testObj, makeSuspend(su, cl)); 142 public final Runnable testObj; 146 this.testObj = obj; 157 Runnable normal_run = Id(normal_config.testObj); 171 Runnable testObj = Id(force_return_config.testObj); 173 System.out.println("Single call with force-early-return on " + testObj); 189 testObj.run(); 225 System.out.println("result for " + testObj + " on " + thr.getName());
|
/art/test/1955-pop-frame-jit-called/src/art/ |
D | Test1953.java | 67 public void runTestOn(TestRunnable testObj, ThreadRunnable su, ThreadRunnable cl) throws 69 runTestOn(testObj, makeSuspend(su, cl)); 83 public void runTestOn(TestRunnable testObj, TestSuspender su) throws Exception { 84 System.out.println("Single call with PopFrame on " + testObj + " base-call-count: " + 85 testObj.getBaseCallCount()); 96 Thread thr = new Thread(() -> { await.run(); testObj.run(); }); 103 preTest.accept(testObj); 133 System.out.println("result is " + testObj + " base-call count: " + testObj.getBaseCallCount());
|
/art/test/1954-pop-frame-jit/src/art/ |
D | Test1953.java | 67 public void runTestOn(TestRunnable testObj, ThreadRunnable su, ThreadRunnable cl) throws 69 runTestOn(testObj, makeSuspend(su, cl)); 83 public void runTestOn(TestRunnable testObj, TestSuspender su) throws Exception { 84 System.out.println("Single call with PopFrame on " + testObj + " base-call-count: " + 85 testObj.getBaseCallCount()); 96 Thread thr = new Thread(() -> { await.run(); testObj.run(); }); 103 preTest.accept(testObj); 133 System.out.println("result is " + testObj + " base-call count: " + testObj.getBaseCallCount());
|
/art/test/1953-pop-frame/src/art/ |
D | Test1953.java | 67 public void runTestOn(TestRunnable testObj, ThreadRunnable su, ThreadRunnable cl) throws 69 runTestOn(testObj, makeSuspend(su, cl)); 83 public void runTestOn(TestRunnable testObj, TestSuspender su) throws Exception { 84 System.out.println("Single call with PopFrame on " + testObj + " base-call-count: " + 85 testObj.getBaseCallCount()); 96 Thread thr = new Thread(() -> { await.run(); testObj.run(); }); 103 preTest.accept(testObj); 133 System.out.println("result is " + testObj + " base-call count: " + testObj.getBaseCallCount());
|
/art/test/1956-pop-frame-jit-calling/src/art/ |
D | Test1953.java | 67 public void runTestOn(TestRunnable testObj, ThreadRunnable su, ThreadRunnable cl) throws 69 runTestOn(testObj, makeSuspend(su, cl)); 83 public void runTestOn(TestRunnable testObj, TestSuspender su) throws Exception { 84 System.out.println("Single call with PopFrame on " + testObj + " base-call-count: " + 85 testObj.getBaseCallCount()); 96 Thread thr = new Thread(() -> { await.run(); testObj.run(); }); 103 preTest.accept(testObj); 133 System.out.println("result is " + testObj + " base-call count: " + testObj.getBaseCallCount());
|
/art/test/049-show-object/src/ |
D | Main.java | 39 Main testObj = new Main(); in main() local
|