1 write to RelocType
ILCompiler.ReadyToRun (1)
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\Relocation.cs (1)
605RelocType = relocType;
7 references to RelocType
ILCompiler.ReadyToRun (7)
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\Relocation.cs (1)
849return $"{Target} ({RelocType}, 0x{Offset:X})";
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\ObjectWriter.cs (5)
482if ((reloc.RelocType is RelocType.IMAGE_REL_BASED_DIR64 && _nodeFactory.Target.PointerSize == 8) || 483(reloc.RelocType is RelocType.IMAGE_REL_BASED_HIGHLOW && _nodeFactory.Target.PointerSize == 4)) 508RelocType fileReloc = Relocation.GetFileRelocationType(reloc.RelocType); 561if (reloc.RelocType == RelocType.IMAGE_REL_FILE_CHECKSUM_CALLBACK) 575reloc.RelocType,
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\WasmInstructions.cs (1)
301buffer[i] = new Relocation(r.RelocType, r.Offset + offset, r.Target);