2 instantiations of DelegateTargetVirtualMethodNode
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\NodeFactory.cs (2)
366
return new
DelegateTargetVirtualMethodNode
(method, reflected: true);
371
return new
DelegateTargetVirtualMethodNode
(method, reflected: false);
7 references to DelegateTargetVirtualMethodNode
ILCompiler.Compiler (7)
Compiler\DependencyAnalysis\NodeFactory.cs (6)
364
_reflectedDelegateTargetMethods = new NodeCache<MethodDesc,
DelegateTargetVirtualMethodNode
>(method =>
369
_delegateTargetMethods = new NodeCache<MethodDesc,
DelegateTargetVirtualMethodNode
>(method =>
1225
private NodeCache<MethodDesc,
DelegateTargetVirtualMethodNode
> _reflectedDelegateTargetMethods;
1226
public
DelegateTargetVirtualMethodNode
ReflectedDelegateTargetVirtualMethod(MethodDesc method)
1231
private NodeCache<MethodDesc,
DelegateTargetVirtualMethodNode
> _delegateTargetMethods;
1232
public
DelegateTargetVirtualMethodNode
DelegateTargetVirtualMethod(MethodDesc method)
Compiler\UsageBasedMetadataManager.cs (1)
609
DelegateTargetVirtualMethodNode
targetVirtualMethod = factory.ReflectedDelegateTargetVirtualMethod(target.GetCanonMethodTarget(CanonicalFormKind.Specific));