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)
848return $"{Target} ({RelocType}, 0x{Offset:X})";
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\ObjectWriter.cs (5)
485if ((reloc.RelocType is RelocType.IMAGE_REL_BASED_DIR64 && _nodeFactory.Target.PointerSize == 8) || 486(reloc.RelocType is RelocType.IMAGE_REL_BASED_HIGHLOW && _nodeFactory.Target.PointerSize == 4)) 511RelocType fileReloc = Relocation.GetFileRelocationType(reloc.RelocType); 564if (reloc.RelocType == RelocType.IMAGE_REL_FILE_CHECKSUM_CALLBACK) 578reloc.RelocType,
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\WasmInstructions.cs (1)
301buffer[i] = new Relocation(r.RelocType, r.Offset + offset, r.Target);