17 references to Method
ILCompiler.ReadyToRun (17)
Compiler\DependencyAnalysis\ReadyToRun\MethodFixupSignature.cs (16)
57
MethodDesc canonMethod =
Method
.GetCanonMethodTarget(CanonicalFormKind.Specific);
59
!
Method
.IsAbstract &&
60
!
Method
.HasInstantiation &&
79
Method
.IsVirtual &&
80
Method
.HasInstantiation &&
81
!
Method
.IsFinal &&
82
!
Method
.IsGenericMethodDefinition &&
83
!
Method
.OwningType.IsGenericDefinition &&
84
(
Method
.OwningType.IsInterface || !
Method
.OwningType.IsSealed()))
88
if (HasNonCanonicalInstantiationArguments(canonMethod) && !factory.CanBeInGenericCycle(
Method
))
91
list.Add(factory.GVMDependencies(
Method
), "Virtual dispatch dependency");
99
Method
.IsVirtual &&
100
!
Method
.HasInstantiation &&
101
!
Method
.IsFinal &&
102
!
Method
.OwningType.IsGenericDefinition)
Compiler\DependencyAnalysis\ReadyToRun\WasmImportThunkPortableEntrypoint.cs (1)
85
MethodDesc method = ((MethodFixupSignature)(_import.Signature)).
Method
;