Searched refs:CoroutinePromise (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaCoroutine.cpp | 596 if (ScopeInfo->CoroutinePromise) in checkCoroutineContext() 602 ScopeInfo->CoroutinePromise = S.buildCoroutinePromise(Loc); in checkCoroutineContext() 603 if (!ScopeInfo->CoroutinePromise) in checkCoroutineContext() 695 assert(ScopeInfo->CoroutinePromise); in ActOnCoroutineBodyStart() 708 ExprResult Operand = buildPromiseCall(*this, ScopeInfo->CoroutinePromise, in ActOnCoroutineBodyStart() 844 auto *Promise = FSI->CoroutinePromise; in BuildUnresolvedCoawaitExpr() 901 buildCoawaitCalls(*this, Coroutine->CoroutinePromise, CallLoc, Awaiter); in BuildResolvedCoawaitExpr() 923 *this, getCurFunction()->CoroutinePromise, Loc, "yield_value", E); in ActOnCoyieldExpr() 959 *this, Coroutine->CoroutinePromise, Loc, E); in BuildCoyieldExpr() 991 VarDecl *Promise = FSI->CoroutinePromise; in BuildCoreturnStmt() [all …]
|
H A D | ScopeInfo.cpp | 47 CoroutinePromise = nullptr; in Clear()
|
H A D | AnalysisBasedWarnings.cpp | 704 S.Diag(Loc, DiagID) << FSI->CoroutinePromise->getType(); in CheckFallThroughForBody()
|
H A D | TreeTransform.h | 8395 assert(FD && ScopeInfo && !ScopeInfo->CoroutinePromise && in TransformCoroutineBodyStmt() 8417 ScopeInfo->CoroutinePromise = Promise; in TransformCoroutineBodyStmt()
|
/freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
H A D | ScopeInfo.h | 217 VarDecl *CoroutinePromise = nullptr; variable
|