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