1 instantiation of BlobNode
ILCompiler.Compiler (1)
Compiler\DependencyAnalysis\NodeFactory.cs (1)
272return new BlobNode(key.Name, ObjectNodeSection.ReadOnlyDataSection, key.Data, key.Alignment);
5 references to BlobNode
ILCompiler.Compiler (5)
Compiler\DependencyAnalysis\BlobNode.cs (1)
47return _name.CompareTo(((BlobNode)other)._name);
Compiler\DependencyAnalysis\NodeFactory.cs (3)
270_readOnlyDataBlobs = new NodeCache<ReadOnlyDataBlobKey, BlobNode>(key => 941private NodeCache<ReadOnlyDataBlobKey, BlobNode> _readOnlyDataBlobs; 943public BlobNode ReadOnlyDataBlob(Utf8String name, byte[] blobData, int alignment)
Compiler\RootingServiceProvider.cs (1)
146var blob = _factory.ReadOnlyDataBlob(Utf8String.Concat("__readonlydata_"u8, exportName.AsSpan()), data, alignment);