1 implementation of GCInfo
ILCompiler.RyuJit (1)
Compiler\DependencyAnalysis\MethodCodeNode.cs (1)
118
public byte[]
GCInfo
=> _gcInfo;
13 references to GCInfo
ILCompiler.Compiler (13)
Compiler\MethodBodyDeduplicator.cs (3)
81
hashCode.AddBytes(nodeWithCodeInfo.
GCInfo
);
167
if (!AreSame(o1codeinfo.
GCInfo
, o2codeinfo.
GCInfo
))
Compiler\MstatObjectDumper.cs (1)
74
codeInfo.
GCInfo
.Length));
Compiler\ObjectWriter\CoffObjectWriter.Aot.cs (2)
151
if (nodeWithCodeInfo.
GCInfo
is not null)
153
xdataSectionWriter.Write(nodeWithCodeInfo.
GCInfo
);
Compiler\ObjectWriter\UnixObjectWriter.Aot.cs (5)
110
if (nodeWithCodeInfo.
GCInfo
is not null)
112
lsdaSectionWriter.Write(nodeWithCodeInfo.
GCInfo
);
127
ReadOnlySpan<byte> xGc = x.
GCInfo
;
128
ReadOnlySpan<byte> yGc = y.
GCInfo
;
141
hash.AddBytes(obj.
GCInfo
);
Compiler\XmlObjectDumper.cs (2)
65
_writer.WriteAttributeString("Length", nodeWithCodeInfo.
GCInfo
.Length.ToStringInvariant());
66
_writer.WriteAttributeString("Hash", HashData(nodeWithCodeInfo.
GCInfo
));