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