4 references to CORINFO_CALLCONV_HASTHIS
ILCompiler.Compiler (3)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoTypes.cs (3)
124
private bool hasThis() { return ((callConv & CorInfoCallConv.
CORINFO_CALLCONV_HASTHIS
) != 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)
902
if (!signature.IsStatic) sig->callConv |= CorInfoCallConv.
CORINFO_CALLCONV_HASTHIS
;