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