26 references to IMAGE_REL_BASED_HIGHLOW
ILCompiler.ReadyToRun (26)
Compiler\DependencyAnalysis\ReadyToRun\DelayLoadHelperImport.cs (1)
90
factory.Target.PointerSize == 4 ? RelocType.
IMAGE_REL_BASED_HIGHLOW
: RelocType.IMAGE_REL_BASED_DIR64, factory.Target.CodeDelta);
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\ObjectDataBuilder.cs (2)
275
case RelocType.
IMAGE_REL_BASED_HIGHLOW
:
324
EmitReloc(symbol, (_target.PointerSize == 8) ? RelocType.IMAGE_REL_BASED_DIR64 : RelocType.
IMAGE_REL_BASED_HIGHLOW
, delta);
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\Relocation.cs (4)
616
case RelocType.
IMAGE_REL_BASED_HIGHLOW
:
705
RelocType.
IMAGE_REL_BASED_HIGHLOW
=> 4,
746
case RelocType.
IMAGE_REL_BASED_HIGHLOW
:
830
case RelocType.
IMAGE_REL_BASED_HIGHLOW
:
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\Target_X86\X86Emitter.cs (4)
41
Builder.EmitReloc(symbol, RelocType.
IMAGE_REL_BASED_HIGHLOW
);
73
Builder.EmitReloc(symbol, RelocType.
IMAGE_REL_BASED_HIGHLOW
);
144
Builder.EmitReloc(node, RelocType.
IMAGE_REL_BASED_HIGHLOW
);
166
Builder.EmitReloc(node, RelocType.
IMAGE_REL_BASED_HIGHLOW
, delta);
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (3)
310
IMAGE_REL_BASED_HIGHLOW
=> IMAGE_REL_I386_DIR32,
332
IMAGE_REL_BASED_HIGHLOW
=> IMAGE_REL_AMD64_ADDR32,
355
IMAGE_REL_BASED_HIGHLOW
=> IMAGE_REL_ARM64_ADDR32,
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\ElfObjectWriter.cs (6)
410
IMAGE_REL_BASED_HIGHLOW
=> R_386_32,
437
IMAGE_REL_BASED_HIGHLOW
=> R_X86_64_32,
467
IMAGE_REL_BASED_HIGHLOW
=> R_ARM_ABS32,
505
IMAGE_REL_BASED_HIGHLOW
=> R_AARCH64_ABS32,
541
IMAGE_REL_BASED_HIGHLOW
=> R_LARCH_32,
578
IMAGE_REL_BASED_HIGHLOW
=> R_RISCV_32,
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\MachObjectWriter.cs (2)
432
if (relocType is IMAGE_REL_BASED_DIR64 or
IMAGE_REL_BASED_HIGHLOW
&&
443
case
IMAGE_REL_BASED_HIGHLOW
:
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\ObjectWriter.cs (1)
486
(reloc.RelocType is RelocType.
IMAGE_REL_BASED_HIGHLOW
&& _nodeFactory.Target.PointerSize == 4))
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\PEObjectWriter.cs (1)
904
case RelocType.
IMAGE_REL_BASED_HIGHLOW
:
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\WasmObjectWriter.cs (1)
906
case RelocType.
IMAGE_REL_BASED_HIGHLOW
:
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (1)
4243
CorInfoReloc.DIRECT => PointerSize == 8 ? RelocType.IMAGE_REL_BASED_DIR64 : RelocType.
IMAGE_REL_BASED_HIGHLOW
,