1 write to m_asTAddr
System.Private.CoreLib (1)
src\System\Runtime\CompilerServices\RuntimeHelpers.CoreCLR.cs (1)
1079
m_asTAddr
= tAddr;
13 references to m_asTAddr
System.Private.CoreLib (13)
src\System\Runtime\CompilerServices\RuntimeHelpers.CoreCLR.cs (13)
1085
public bool IsNull =>
m_asTAddr
is null;
1094
get => ((nint)
m_asTAddr
& 2) != 0;
1106
return (MethodTable*)
m_asTAddr
;
1118
return (TypeDesc*)((nint)
m_asTAddr
& ~2); // Drop the second lowest bit.
1127
public static bool AreSameType(TypeHandle left, TypeHandle right) => left.
m_asTAddr
== right.
m_asTAddr
;
1129
public int GetCorElementType() => GetCorElementType(
m_asTAddr
);
1163
if (srcTH.
m_asTAddr
== destTH.
m_asTAddr
)
1169
return CastCache.TryGet(CastHelpers.s_table!, (nuint)srcTH.
m_asTAddr
, (nuint)destTH.
m_asTAddr
);
1182
return CanCastTo_NoCacheLookup(srcTH.
m_asTAddr
, destTH.
m_asTAddr
) != Interop.BOOL.FALSE;