23 references to IMAGE_REL_BASED_DIR64
ILCompiler.ReadyToRun (23)
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)
284
case RelocType.
IMAGE_REL_BASED_DIR64
:
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)
629
case RelocType.
IMAGE_REL_BASED_DIR64
:
704
RelocType.
IMAGE_REL_BASED_DIR64
=> 8,
755
case RelocType.
IMAGE_REL_BASED_DIR64
:
831
case RelocType.
IMAGE_REL_BASED_DIR64
:
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\CoffObjectWriter.cs (2)
333
IMAGE_REL_BASED_DIR64
=> IMAGE_REL_AMD64_ADDR64,
356
IMAGE_REL_BASED_DIR64
=> IMAGE_REL_ARM64_ADDR64,
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\ElfObjectWriter.cs (4)
438
IMAGE_REL_BASED_DIR64
=> R_X86_64_64,
504
IMAGE_REL_BASED_DIR64
=> R_AARCH64_ABS64,
540
IMAGE_REL_BASED_DIR64
=> R_LARCH_64,
577
IMAGE_REL_BASED_DIR64
=> R_RISCV_64,
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\MachObjectWriter.cs (5)
432
if (relocType is
IMAGE_REL_BASED_DIR64
or IMAGE_REL_BASED_HIGHLOW &&
440
case
IMAGE_REL_BASED_DIR64
:
455
Debug.Assert(relocType ==
IMAGE_REL_BASED_DIR64
);
645
if (symbolicRelocation.Type ==
IMAGE_REL_BASED_DIR64
)
808
else if (symbolicRelocation.Type ==
IMAGE_REL_BASED_DIR64
)
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\ObjectWriter.cs (1)
485
if ((reloc.RelocType is RelocType.
IMAGE_REL_BASED_DIR64
&& _nodeFactory.Target.PointerSize == 8) ||
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\PEObjectWriter.cs (1)
903
case RelocType.
IMAGE_REL_BASED_DIR64
:
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\SectionWriter.cs (1)
82
int size = relocType == RelocType.
IMAGE_REL_BASED_DIR64
? sizeof(ulong) : sizeof(uint);
src\runtime\src\coreclr\tools\Common\Compiler\ObjectWriter\WasmObjectWriter.cs (1)
905
case RelocType.
IMAGE_REL_BASED_DIR64
:
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,