1 instantiation of DispatchCellKey
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
881
return _interfaceDispatchCells.GetOrAdd(new
DispatchCellKey
(method, callSite));
6 references to DispatchCellKey
ILCompiler.Compiler (6)
Compiler\DependencyAnalysis\NodeFactory.cs (6)
453
_interfaceDispatchCells = new NodeCache<
DispatchCellKey
, InterfaceDispatchCellNode>(callSiteCell =>
877
private NodeCache<
DispatchCellKey
, InterfaceDispatchCellNode> _interfaceDispatchCells;
1761
protected struct DispatchCellKey : IEquatable<
DispatchCellKey
>
1772
public bool Equals(
DispatchCellKey
other) => Target == other.Target && CallsiteId == other.CallsiteId;
1773
public override bool Equals(object obj) => obj is
DispatchCellKey
&& Equals((
DispatchCellKey
)obj);