4 references to IsAsyncThunk
ILCompiler.Compiler (3)
Compiler\StackTraceEmissionPolicy.cs (1)
44|| (method is Internal.IL.Stubs.ILStubMethod) || method.IsAsyncThunk()) // see MethodDesc::IsDiagnosticsHidden() in src/coreclr/vm/method.inl
parent\parent\Common\Compiler\AsyncMethodVariant.cs (1)
171return (method.IsAsyncThunk() && !method.SupportsAsyncVersionCodegen()) || method is AsyncResumptionStub;
parent\parent\Common\Compiler\MethodExtensions.cs (1)
210public static bool SupportsAsyncVersionCodegen(this MethodDesc method) => method.IsAsyncVariant() && method.IsAsyncThunk() && !method.IsReturnDroppingAsyncThunk();
ILCompiler.RyuJit (1)
parent\parent\Common\JitInterface\CorInfoImpl.cs (1)
1727variantIsThunk = method.IsAsyncThunk();