4 instantiations of CoffRelocation
ILCompiler.ReadyToRun (4)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (4)
294coffRelocations.Add(new CoffRelocation { VirtualAddress = (uint)(relocationList.Count + 1) }); 302coffRelocations.Add(new CoffRelocation 324coffRelocations.Add(new CoffRelocation 347coffRelocations.Add(new CoffRelocation
5 references to CoffRelocation
ILCompiler.ReadyToRun (5)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (5)
50protected 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)); 282List<CoffRelocation> coffRelocations = _sections[sectionIndex].Relocations; 409dataOffset += (uint)(section.Relocations.Count * CoffRelocation.Size); 457foreach (var relocation in section.Relocations)