• Home
  • Raw
  • Download

Lines Matching refs:Main

17 public class Main {  class
20 if (isAotCompiled(Main.class, "hasJit")) { in main()
33 assertFalse(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testCompilationUseAndCollection()
34 assertFalse(hasJitCompiledCode(Main.class, "callThrough")); in testCompilationUseAndCollection()
36 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testCompilationUseAndCollection()
37 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testCompilationUseAndCollection()
40 callThrough(Main.class, "doNothing"); in testCompilationUseAndCollection()
44 callThrough(Main.class, "testGcWithCallThroughStubOnStack"); in testCompilationUseAndCollection()
56 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testGcWithCallThroughStubOnStack()
64 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testGcWithCallThroughStubOnStack()
71 callThrough(Main.class, "doNothing"); in testSingleInvocationTriggersRecompilation()
73 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testSingleInvocationTriggersRecompilation()
75 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testSingleInvocationTriggersRecompilation()
80 assertFalse(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testMixedFramesOnStack()
81 assertFalse(hasJitCompiledCode(Main.class, "callThrough")); in testMixedFramesOnStack()
82 callThrough(Main.class, "testMixedFramesOnStackStage2"); in testMixedFramesOnStack()
85 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testMixedFramesOnStack()
97 callThrough(Main.class, "testMixedFramesOnStackStage3"); in testMixedFramesOnStackStage2()
102 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testMixedFramesOnStackStage3()
110 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testStubCanBeCollected()
112 assertFalse(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testStubCanBeCollected()
113 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testStubCanBeCollected()
115 assertFalse(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testStubCanBeCollected()
116 assertFalse(hasJitCompiledCode(Main.class, "callThrough")); in testStubCanBeCollected()
121 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
125 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
126 callThrough(Main.class, "jitGc"); // JIT GC with callThrough() safely on the stack. in doJitGcsUntilFullJitGcIsScheduled()
130 assertFalse(hasJitCompiledEntrypoint(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
131 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
136 while (!hasJitCompiledEntrypoint(Main.class, "callThrough")) { in ensureCompiledCallThroughEntrypoint()
142 callThrough(Main.class, "doNothing"); in ensureCompiledCallThroughEntrypoint()