16 references to PointerSize
ILCompiler.RyuJit (16)
JitInterface\CorInfoImpl.RyuJit.cs (4)
33
private int SizeOfReversePInvokeTransitionFrame => 2 *
PointerSize
;
2052
int size = 5 * this.
PointerSize
;
2056
size += this.
PointerSize
; // R9 (REG_SAVED_LOCALLOC_SP)
2504
pInfo->offsetOfThreadLocalStoragePointer = (uint)(11 *
PointerSize
); // Offset of ThreadLocalStoragePointer in the TEB
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (12)
2582
Debug.Assert(field.Offset.AsInt %
PointerSize
== 0);
2583
byte* fieldGcPtrs = gcPtrs + field.Offset.AsInt /
PointerSize
;
2599
int totalLayoutSize = type.GetElementSize().AsInt /
PointerSize
;
2600
int elementLayoutSize = fieldType.GetElementSize().AsInt /
PointerSize
;
2622
new Span<byte>(gcPtrs, (int)((size +
PointerSize
- 1) /
PointerSize
)).Clear();
3627
int pointerSize = this.
PointerSize
;
3842
Debug.Assert(objRefsSize == (dataSize + (nuint)(
PointerSize
- 1)) / (nuint)
PointerSize
);
3843
GCPointerMapBuilder gcMapBuilder = new GCPointerMapBuilder((int)dataSize,
PointerSize
);
3848
gcMapBuilder.MarkGCPointer(i *
PointerSize
);
4591
CorInfoReloc.DIRECT =>
PointerSize
== 8 ? RelocType.IMAGE_REL_BASED_DIR64 : RelocType.IMAGE_REL_BASED_HIGHLOW,