15 references to PointerSize
ILCompiler.ReadyToRun (15)
JitInterface\CorInfoImpl.ReadyToRun.cs (3)
3330
private int SizeOfPInvokeTransitionFrame => ReadyToRunRuntimeConstants.READYTORUN_PInvokeTransitionFrameSizeInPointerUnits *
PointerSize
;
3336
return ReadyToRunRuntimeConstants.READYTORUN_ReversePInvokeTransitionFrameSizeInPointerUnits_X86 *
PointerSize
;
3338
return ReadyToRunRuntimeConstants.READYTORUN_ReversePInvokeTransitionFrameSizeInPointerUnits_Universal *
PointerSize
;
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (12)
2449
Debug.Assert(field.Offset.AsInt %
PointerSize
== 0);
2450
byte* fieldGcPtrs = gcPtrs + field.Offset.AsInt /
PointerSize
;
2466
int totalLayoutSize = type.GetElementSize().AsInt /
PointerSize
;
2467
int elementLayoutSize = fieldType.GetElementSize().AsInt /
PointerSize
;
2489
new Span<byte>(gcPtrs, (int)((size +
PointerSize
- 1) /
PointerSize
)).Clear();
3446
int pointerSize = this.
PointerSize
;
3550
Debug.Assert(objRefsSize == (dataSize + (nuint)(
PointerSize
- 1)) / (nuint)
PointerSize
);
3551
GCPointerMapBuilder gcMapBuilder = new GCPointerMapBuilder((int)dataSize,
PointerSize
);
3556
gcMapBuilder.MarkGCPointer(i *
PointerSize
);
4294
CorInfoReloc.DIRECT =>
PointerSize
== 8 ? RelocType.IMAGE_REL_BASED_DIR64 : RelocType.IMAGE_REL_BASED_HIGHLOW,