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