16 references to PointerSize
ILCompiler.ReadyToRun (16)
JitInterface\CorInfoImpl.ReadyToRun.cs (4)
480
private uint OffsetOfDelegateFirstTarget => (uint)(3 *
PointerSize
); // Delegate._methodPtr
3300
private int SizeOfPInvokeTransitionFrame => ReadyToRunRuntimeConstants.READYTORUN_PInvokeTransitionFrameSizeInPointerUnits *
PointerSize
;
3306
return ReadyToRunRuntimeConstants.READYTORUN_ReversePInvokeTransitionFrameSizeInPointerUnits_X86 *
PointerSize
;
3308
return ReadyToRunRuntimeConstants.READYTORUN_ReversePInvokeTransitionFrameSizeInPointerUnits_Universal *
PointerSize
;
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (12)
2451
Debug.Assert(field.Offset.AsInt %
PointerSize
== 0);
2452
byte* fieldGcPtrs = gcPtrs + field.Offset.AsInt /
PointerSize
;
2468
int totalLayoutSize = type.GetElementSize().AsInt /
PointerSize
;
2469
int elementLayoutSize = fieldType.GetElementSize().AsInt /
PointerSize
;
2491
new Span<byte>(gcPtrs, (int)((size +
PointerSize
- 1) /
PointerSize
)).Clear();
3448
int pointerSize = this.
PointerSize
;
3497
Debug.Assert(objRefsSize == (dataSize + (nuint)(
PointerSize
- 1)) / (nuint)
PointerSize
);
3498
GCPointerMapBuilder gcMapBuilder = new GCPointerMapBuilder((int)dataSize,
PointerSize
);
3503
gcMapBuilder.MarkGCPointer(i *
PointerSize
);
4241
CorInfoReloc.DIRECT =>
PointerSize
== 8 ? RelocType.IMAGE_REL_BASED_DIR64 : RelocType.IMAGE_REL_BASED_HIGHLOW,