1 write to Offset
ILCompiler.ReadyToRun (1)
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\Relocation.cs (1)
606Offset = offset;
14 references to Offset
ILCompiler.ReadyToRun (14)
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\Relocation.cs (1)
848return $"{Target} ({RelocType}, 0x{Offset:X})";
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\ObjectWriter.cs (4)
489Debug.Assert(reloc.Offset % _nodeFactory.Target.PointerSize == 0); 576blockToRelocate.Offset + reloc.Offset, 577blockToRelocate.Data.AsSpan(reloc.Offset), 692var checksumOffset = (long)_outputSectionLayout[block.SectionIndex].FilePosition + block.Offset + reloc.Offset;
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\WasmInstructions.cs (1)
301buffer[i] = new Relocation(r.RelocType, r.Offset + offset, r.Target);
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (8)
446Array.Sort(relocs, (x, y) => (x.Offset - y.Offset)); 483Array.Sort(relocs2, (x, y) => (x.Offset - y.Offset)); 600Array.Sort(relocs, (x, y) => (x.Offset - y.Offset)); 617Array.Sort(relocs, (x, y) => (x.Offset - y.Offset));