1 implementation of RequiresAlign8
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\RuntimeTypeSystem_1.cs (1)
764
public bool
RequiresAlign8
(TypeHandle typeHandle) => !typeHandle.IsMethodTable() ? false : _methodTables[typeHandle.Address].Flags.RequiresAlign8;
2 references to RequiresAlign8
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\CallingConvention\CdacTypeHandle.cs (1)
110
return !_typeHandle.IsNull && Rts.
RequiresAlign8
(_typeHandle);
Microsoft.Diagnostics.DataContractReader.Legacy (1)
Dbi\DacDbiImpl.cs (1)
2064
*pResult = rts.
RequiresAlign8
(th) ? Interop.BOOL.TRUE : Interop.BOOL.FALSE;