Implemented interface member:
property
Method
ILCompiler.DependencyAnalysis.IMethodNode.Method
29 references to Method
ILCompiler.ReadyToRun (29)
Compiler\DependencyAnalysis\ReadyToRun\InliningInfoNode.cs (1)
74MethodDesc inliner = methodNode.Method;
Compiler\DependencyAnalysis\ReadyToRun\InstanceEntryPointTableNode.cs (7)
40if (method.Method is AsyncResumptionStub) 87return BuildSignatureForMethodDefinedInModule(method.Method, factory); 110if (method.Method is AsyncResumptionStub) 113Debug.Assert(method.Method.HasInstantiation || method.Method.OwningType.HasInstantiation || method.Method.IsAsyncVariant()); 135vertexHashtable.Append(unchecked((uint)method.Method.GetHashCode()), entryPointVertex);
Compiler\DependencyAnalysis\ReadyToRun\MethodEntryPointTableNode.cs (2)
53Debug.Assert(method.Method is EcmaMethod); 54EcmaMethod ecmaMethod = (EcmaMethod)method.Method;
Compiler\DependencyAnalysis\ReadyToRun\ResumptionStubEntryPointSignature.cs (3)
31sb.Append(nameMangler.GetMangledMethodName(_resumptionStub.Method)); 36return comparer.Compare(_resumptionStub.Method, ((ResumptionStubEntryPointSignature)other)._resumptionStub.Method);
Compiler\DependencyAnalysis\ReadyToRunCodegenNodeFactory.cs (1)
577set.Add(compiled.Method.GetTypicalMethodDefinition());
Compiler\FileLayoutOptimizer.cs (7)
163methods.MergeSortAllowDuplicates((MethodWithGCInfo left, MethodWithGCInfo right) => (_profileData[left.Method] != null).CompareTo(_profileData[right.Method] != null)); 244var profileData = _profileData[method.Method]; 286methodMap.Add(methodWithGCInfo.Method, methodWithGCInfo); 333mdToIndex.Add(method.Method, index); 341MethodProfileData data = _profileData[method.Method]; 350graphNodes[mdToIndex[method.Method]].IncreaseEdge(graphNodes[otherIndex], count);
Compiler\ReadyToRunCodegenCompilation.cs (2)
724var method = methodCodeNodeNeedingCode.Method; 925MethodDesc method = methodCodeNodeNeedingCode.Method;
JitInterface\CorInfoImpl.ReadyToRun.cs (2)
3190EcmaMethod ecmaMethod = _methodCodeNode.Method.GetTypicalMethodDefinition() as EcmaMethod; 3197if (_methodCodeNode.Method != HandleToObject(ftnHnd))
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (4)
372throw new CodeGenerationFailedException(_methodCodeNode.Method, _lastException.SourceException); 404throw new CodeGenerationFailedException(_methodCodeNode.Method); 559_compilation.NodeFactory.DetectGenericCycles(_methodCodeNode.Method, methodNode.Method); 630return _methodCodeNode.Method;