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