1 instantiation of GCStaticsNode
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
224return new GCStaticsNode(type, PreinitializationManager);
8 references to GCStaticsNode
ILCompiler.Compiler (8)
Compiler\DependencyAnalysis\ExternSymbolsImportedNodeProvider.cs (1)
20return new ExternDataSymbolNode(GCStaticsNode.GetMangledName(type, factory.NameMangler));
Compiler\DependencyAnalysis\GCStaticsNode.cs (1)
136return comparer.Compare(_type, ((GCStaticsNode)other)._type);
Compiler\DependencyAnalysis\NodeFactory.cs (4)
235Debug.Assert(gcStaticsNode is GCStaticsNode); 236return GCStaticsRegion.NewNode((GCStaticsNode)gcStaticsNode); 1638public ArrayOfEmbeddedPointersNode<GCStaticsNode> GCStaticsRegion = new ArrayOfEmbeddedPointersNode<GCStaticsNode>(
Compiler\DependencyAnalysis\ThreadStaticsNode.cs (1)
13/// Represents the thread static region of a given type. This is very similar to <see cref="GCStaticsNode"/>,
Compiler\MetadataManager.cs (1)
289if (obj is GCStaticsNode gcStaticsNode)