7 writes to callConv
ILCompiler.RyuJit (7)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (7)
863sig->callConv |= CorInfoCallConv.CORINFO_CALLCONV_ASYNCCALL; 877sig->callConv |= CorInfoCallConv.CORINFO_CALLCONV_PARAMTYPE; 896sig->callConv = (CorInfoCallConv)(signature.Flags & MethodSignatureFlags.UnmanagedCallingConventionMask); 902if (!signature.IsStatic) sig->callConv |= CorInfoCallConv.CORINFO_CALLCONV_HASTHIS; 903if (signature.IsExplicitThis) sig->callConv |= CorInfoCallConv.CORINFO_CALLCONV_EXPLICITTHIS; 905if (signature.GenericParameterCount != 0) sig->callConv |= CorInfoCallConv.CORINFO_CALLCONV_GENERIC; 937sig->callConv = CorInfoCallConv.CORINFO_CALLCONV_DEFAULT;
7 references to callConv
ILCompiler.Compiler (6)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoTypes.cs (6)
123internal CorInfoCallConv getCallConv() { return (CorInfoCallConv)((callConv & CorInfoCallConv.CORINFO_CALLCONV_MASK)); } 124private bool hasThis() { return ((callConv & CorInfoCallConv.CORINFO_CALLCONV_HASTHIS) != 0); } 125private bool hasExplicitThis() { return ((callConv & CorInfoCallConv.CORINFO_CALLCONV_EXPLICITTHIS) != 0); } 126private bool hasImplicitThis() { return ((callConv & (CorInfoCallConv.CORINFO_CALLCONV_HASTHIS | CorInfoCallConv.CORINFO_CALLCONV_EXPLICITTHIS)) == CorInfoCallConv.CORINFO_CALLCONV_HASTHIS); } 129internal bool hasTypeArg() { return ((callConv & CorInfoCallConv.CORINFO_CALLCONV_PARAMTYPE) != 0); } 130internal bool isAsyncCall() { return ((callConv & CorInfoCallConv.CORINFO_CALLCONV_ASYNCCALL) != 0); }
ILCompiler.RyuJit (1)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (1)
899if (sig->callConv == CorInfoCallConv.CORINFO_CALLCONV_VARARG)