12 references to CompilationResult
ILCompiler.ReadyToRun (12)
JitInterface\CorInfoImpl.ReadyToRun.cs (6)
712partial void DetermineIfCompilationShouldBeRetried(ref CompilationResult result) 741result = CompilationResult.CompilationRetryRequested; 747if ((_ilBodiesNeeded != null) || InfiniteCompileStress.Enabled || result == CompilationResult.CompilationRetryRequested) 750result = CompilationResult.CompilationRetryRequested; 877var compilationResult = CompileMethodInternal(methodCodeNodeNeedingCode, methodIL); 880if (compilationResult == CompilationResult.CompilationRetryRequested && logger.IsVerbose)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (6)
322private CompilationResult CompileMethodInternal(IMethodNode methodCodeNodeNeedingCode, MethodIL methodIL) 429CompilationResult compilationCompleteBehavior = CompilationResult.CompilationComplete; 431if (compilationCompleteBehavior == CompilationResult.CompilationRetryRequested) 438return CompilationResult.CompilationComplete; 441partial void DetermineIfCompilationShouldBeRetried(ref CompilationResult result);