1 instantiation of SerializedFrozenObjectKey
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
1535
return _frozenObjectNodes.GetOrAdd(new
SerializedFrozenObjectKey
(owningType, allocationSiteId, data));
6 references to SerializedFrozenObjectKey
ILCompiler.Compiler (6)
Compiler\DependencyAnalysis\NodeFactory.cs (6)
438
_frozenObjectNodes = new NodeCache<
SerializedFrozenObjectKey
, SerializedFrozenObjectNode>(key =>
1531
private NodeCache<
SerializedFrozenObjectKey
, SerializedFrozenObjectNode> _frozenObjectNodes;
1804
protected struct SerializedFrozenObjectKey : IEquatable<
SerializedFrozenObjectKey
>
1818
public override bool Equals(object obj) => obj is
SerializedFrozenObjectKey
&& Equals((
SerializedFrozenObjectKey
)obj);
1819
public bool Equals(
SerializedFrozenObjectKey
other) => OwnerType == other.OwnerType && AllocationSiteId == other.AllocationSiteId;