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