Implemented interface member:
property
Method
ILCompiler.DependencyAnalysis.IMethodNode.Method
17 references to Method
ILCompiler.RyuJit (17)
Compiler\DependencyAnalysis\MethodCodeNode.cs (5)
107public bool IsSpecialUnboxingThunk => ((CompilerTypeSystemContext)Method.Context).IsSpecialUnboxingThunk(_method); 113MethodDesc nonUnboxingMethod = ((CompilerTypeSystemContext)Method.Context).GetTargetOfSpecialUnboxingThunk(_method); 340public MethodDesc Method => _node.Method; 348sb.AppendLine(_node.Method.ToString()); 352_node.Method.Context.Target.Architecture,
Compiler\RyuJitCompilation.cs (3)
140MethodDesc method = methodCodeNodeNeedingCode.Method; 181Logger.LogMessage($"Compiling {methodCodeNodeNeedingCode.Method}..."); 196MethodDesc method = methodCodeNodeNeedingCode.Method;
src\runtime\src\coreclr\tools\aot\ILCompiler.ReadyToRun\Compiler\FileLayoutOptimizer.cs (6)
163methods.MergeSortAllowDuplicates((MethodWithGCInfo left, MethodWithGCInfo right) => (_profileData[left.Method] != null).CompareTo(_profileData[right.Method] != null)); 244var profileData = _profileData[method.Method]; 333mdToIndex.Add(method.Method, index); 341MethodProfileData data = _profileData[method.Method]; 350graphNodes[mdToIndex[method.Method]].IncreaseEdge(graphNodes[otherIndex], count);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (3)
372throw new CodeGenerationFailedException(_methodCodeNode.Method, _lastException.SourceException); 404throw new CodeGenerationFailedException(_methodCodeNode.Method); 630return _methodCodeNode.Method;