16 references to IsAsyncCall
ILCompiler.Compiler (10)
Compiler\CompilerTypeSystemContext.BoxedTypes.cs (2)
425if (_targetMethod.IsAsyncCall()) 491if (_targetMethod.IsAsyncCall())
Compiler\CompilerTypeSystemContext.InterfaceThunks.cs (1)
260if (_targetMethod.IsAsyncCall())
Compiler\StackTraceEmissionPolicy.cs (1)
49return (method.GetTypicalMethodDefinition() is Internal.TypeSystem.Ecma.EcmaMethod || (method.IsAsync && method.IsAsyncCall()))
IL\ILImporter.Scanner.cs (3)
561if (opcode is ILOpcode.call or ILOpcode.callvirt && _canonMethod.IsAsyncCall()) 589if (!_asyncDependenciesReported && _canonMethod.IsAsyncCall() && method.IsAsyncCall())
src\runtime\src\coreclr\tools\Common\Compiler\DependencyAnalysis\INodeWithTypeSignature.cs (1)
19bool INodeWithTypeSignature.IsAsyncCall => Method.IsAsyncCall();
src\runtime\src\coreclr\tools\Common\JitInterface\WasmLowering.cs (1)
567if (method.IsAsyncCall())
src\runtime\src\coreclr\tools\Common\TypeSystem\IL\Stubs\AsyncResumptionStub.cs (1)
24Debug.Assert(targetMethod.IsAsyncCall());
ILCompiler.RyuJit (6)
src\runtime\src\coreclr\tools\Common\JitInterface\CorInfoImpl.cs (6)
881if (method.IsAsyncCall()) 1378if (calleeMethod.IsAsyncCall() && !MethodBeingCompiled.IsAsyncCall()) 4889if (this.MethodBeingCompiled.IsAsyncCall() 4891|| (_compilation.TypeSystemContext.IsSpecialUnboxingThunk(this.MethodBeingCompiled) && _compilation.TypeSystemContext.GetTargetOfSpecialUnboxingThunk(this.MethodBeingCompiled).IsAsyncCall()) 4892|| (_compilation.TypeSystemContext.IsDefaultInterfaceMethodImplementationInstantiationThunk(this.MethodBeingCompiled) && _compilation.TypeSystemContext.GetTargetOfDefaultInterfaceMethodImplementationInstantiationThunk(this.MethodBeingCompiled).IsAsyncCall())