2 instantiations of DelegateTargetVirtualMethodNode
ILCompiler.Compiler (2)
Compiler\DependencyAnalysis\NodeFactory.cs (2)
360
return new
DelegateTargetVirtualMethodNode
(method, reflected: true);
365
return new
DelegateTargetVirtualMethodNode
(method, reflected: false);
7 references to DelegateTargetVirtualMethodNode
ILCompiler.Compiler (7)
Compiler\DependencyAnalysis\NodeFactory.cs (6)
358
_reflectedDelegateTargetMethods = new NodeCache<MethodDesc,
DelegateTargetVirtualMethodNode
>(method =>
363
_delegateTargetMethods = new NodeCache<MethodDesc,
DelegateTargetVirtualMethodNode
>(method =>
1232
private NodeCache<MethodDesc,
DelegateTargetVirtualMethodNode
> _reflectedDelegateTargetMethods;
1233
public
DelegateTargetVirtualMethodNode
ReflectedDelegateTargetVirtualMethod(MethodDesc method)
1238
private NodeCache<MethodDesc,
DelegateTargetVirtualMethodNode
> _delegateTargetMethods;
1239
public
DelegateTargetVirtualMethodNode
DelegateTargetVirtualMethod(MethodDesc method)
Compiler\UsageBasedMetadataManager.cs (1)
599
DelegateTargetVirtualMethodNode
targetVirtualMethod = factory.ReflectedDelegateTargetVirtualMethod(target.GetCanonMethodTarget(CanonicalFormKind.Specific));