4 instantiations of CoffRelocation
ILCompiler.ReadyToRun (4)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (4)
294
coffRelocations.Add(new
CoffRelocation
{ VirtualAddress = (uint)(relocationList.Count + 1) });
302
coffRelocations.Add(new
CoffRelocation
324
coffRelocations.Add(new
CoffRelocation
347
coffRelocations.Add(new
CoffRelocation
5 references to CoffRelocation
ILCompiler.ReadyToRun (5)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (5)
50
protected sealed record SectionDefinition(CoffSectionHeader Header, Stream Stream, List<
CoffRelocation
> Relocations, Utf8String ComdatName, Utf8String SymbolName);
159
_sections.Add(new SectionDefinition(sectionHeader, sectionStream, new List<
CoffRelocation
>(), comdatName, symbolName));
282
List<
CoffRelocation
> coffRelocations = _sections[sectionIndex].Relocations;
409
dataOffset += (uint)(section.Relocations.Count *
CoffRelocation
.Size);
457
foreach (
var
relocation in section.Relocations)