Lines Matching refs:hasJitCompiledEntrypoint
33 assertFalse(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testCompilationUseAndCollection()
36 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testCompilationUseAndCollection()
56 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testGcWithCallThroughStubOnStack()
73 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testSingleInvocationTriggersRecompilation()
80 assertFalse(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testMixedFramesOnStack()
102 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testMixedFramesOnStackStage3()
112 assertFalse(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testStubCanBeCollected()
115 assertFalse(hasJitCompiledEntrypoint(Main.class, "callThrough")); in testStubCanBeCollected()
125 assertTrue(hasJitCompiledEntrypoint(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
130 assertFalse(hasJitCompiledEntrypoint(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
136 while (!hasJitCompiledEntrypoint(Main.class, "callThrough")) { in ensureCompiledCallThroughEntrypoint()
180 public native static boolean hasJitCompiledEntrypoint(Class<?> cls, String methodName); in hasJitCompiledEntrypoint() method in Main