1 instantiation of DispatchCellKey
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
886
return _dispatchCells.GetOrAdd(new
DispatchCellKey
(method, callSite));
6 references to DispatchCellKey
ILCompiler.Compiler (6)
Compiler\DependencyAnalysis\NodeFactory.cs (6)
458
_dispatchCells = new NodeCache<
DispatchCellKey
, DispatchCellNode>(callSiteCell =>
882
private NodeCache<
DispatchCellKey
, DispatchCellNode> _dispatchCells;
1772
protected struct DispatchCellKey : IEquatable<
DispatchCellKey
>
1783
public bool Equals(
DispatchCellKey
other) => Target == other.Target && CallsiteId == other.CallsiteId;
1784
public override bool Equals(object obj) => obj is
DispatchCellKey
&& Equals((
DispatchCellKey
)obj);