1 write to Offset
ILCompiler.ReadyToRun (1)
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\Relocation.cs (1)
607Offset = offset;
14 references to Offset
ILCompiler.ReadyToRun (14)
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\Relocation.cs (1)
853return $"{Target} ({RelocType}, 0x{Offset:X})";
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\ObjectWriter.cs (4)
486Debug.Assert(reloc.Offset % _nodeFactory.Target.PointerSize == 0); 573blockToRelocate.Offset + reloc.Offset, 574blockToRelocate.Data.AsSpan(reloc.Offset), 695var 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)
448Array.Sort(relocs, (x, y) => (x.Offset - y.Offset)); 485Array.Sort(relocs2, (x, y) => (x.Offset - y.Offset)); 602Array.Sort(relocs, (x, y) => (x.Offset - y.Offset)); 619Array.Sort(relocs, (x, y) => (x.Offset - y.Offset));