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