1 instantiation of SerializedFrozenObjectKey
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
1542
return _frozenObjectNodes.GetOrAdd(new
SerializedFrozenObjectKey
(owningType, allocationSiteId, data));
6 references to SerializedFrozenObjectKey
ILCompiler.Compiler (6)
Compiler\DependencyAnalysis\NodeFactory.cs (6)
445
_frozenObjectNodes = new NodeCache<
SerializedFrozenObjectKey
, SerializedFrozenObjectNode>(key =>
1538
private NodeCache<
SerializedFrozenObjectKey
, SerializedFrozenObjectNode> _frozenObjectNodes;
1814
protected struct SerializedFrozenObjectKey : IEquatable<
SerializedFrozenObjectKey
>
1828
public override bool Equals(object obj) => obj is
SerializedFrozenObjectKey
&& Equals((
SerializedFrozenObjectKey
)obj);
1829
public bool Equals(
SerializedFrozenObjectKey
other) => OwnerType == other.OwnerType && AllocationSiteId == other.AllocationSiteId;