1 instantiation of SerializedFrozenObjectKey
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
1555
return _frozenObjectNodes.GetOrAdd(new
SerializedFrozenObjectKey
(owningType, allocationSiteId, data));
6 references to SerializedFrozenObjectKey
ILCompiler.Compiler (6)
Compiler\DependencyAnalysis\NodeFactory.cs (6)
444
_frozenObjectNodes = new NodeCache<
SerializedFrozenObjectKey
, SerializedFrozenObjectNode>(key =>
1551
private NodeCache<
SerializedFrozenObjectKey
, SerializedFrozenObjectNode> _frozenObjectNodes;
1827
protected struct SerializedFrozenObjectKey : IEquatable<
SerializedFrozenObjectKey
>
1841
public override bool Equals(object obj) => obj is
SerializedFrozenObjectKey
&& Equals((
SerializedFrozenObjectKey
)obj);
1842
public bool Equals(
SerializedFrozenObjectKey
other) => OwnerType == other.OwnerType && AllocationSiteId == other.AllocationSiteId;