3 references to CORINFO_CALLCONV_EXPLICITTHIS
ILCompiler.Compiler (2)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoTypes.cs (2)
125
private bool hasExplicitThis() { return ((callConv & CorInfoCallConv.
CORINFO_CALLCONV_EXPLICITTHIS
) != 0); }
126
private bool hasImplicitThis() { return ((callConv & (CorInfoCallConv.CORINFO_CALLCONV_HASTHIS | CorInfoCallConv.
CORINFO_CALLCONV_EXPLICITTHIS
)) == CorInfoCallConv.CORINFO_CALLCONV_HASTHIS); }
ILCompiler.RyuJit (1)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (1)
903
if (signature.IsExplicitThis) sig->callConv |= CorInfoCallConv.
CORINFO_CALLCONV_EXPLICITTHIS
;