Lines Matching refs:hasJitCompiledCode
34 assertFalse(hasJitCompiledCode(Main.class, "callThrough")); in testCompilationUseAndCollection()
37 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testCompilationUseAndCollection()
64 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testGcWithCallThroughStubOnStack()
75 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testSingleInvocationTriggersRecompilation()
81 assertFalse(hasJitCompiledCode(Main.class, "callThrough")); in testMixedFramesOnStack()
85 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testMixedFramesOnStack()
110 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testStubCanBeCollected()
113 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in testStubCanBeCollected()
116 assertFalse(hasJitCompiledCode(Main.class, "callThrough")); in testStubCanBeCollected()
121 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
131 assertTrue(hasJitCompiledCode(Main.class, "callThrough")); in doJitGcsUntilFullJitGcIsScheduled()
181 public native static boolean hasJitCompiledCode(Class<?> cls, String methodName); in hasJitCompiledCode() method in Main