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