12 references to CompilationResult
ILCompiler.ReadyToRun (12)
JitInterface\CorInfoImpl.ReadyToRun.cs (6)
718partial void DetermineIfCompilationShouldBeRetried(ref CompilationResult result) 747result = CompilationResult.CompilationRetryRequested; 753if ((_ilBodiesNeeded != null) || InfiniteCompileStress.Enabled || result == CompilationResult.CompilationRetryRequested) 756result = CompilationResult.CompilationRetryRequested; 883var compilationResult = CompileMethodInternal(methodCodeNodeNeedingCode, methodIL); 886if (compilationResult == CompilationResult.CompilationRetryRequested && logger.IsVerbose)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (6)
324private CompilationResult CompileMethodInternal(IMethodNode methodCodeNodeNeedingCode, MethodIL methodIL) 431CompilationResult compilationCompleteBehavior = CompilationResult.CompilationComplete; 433if (compilationCompleteBehavior == CompilationResult.CompilationRetryRequested) 440return CompilationResult.CompilationComplete; 443partial void DetermineIfCompilationShouldBeRetried(ref CompilationResult result);