Home
last modified time | relevance | path

Searched refs:CoroutinePromise (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp596 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 DScopeInfo.cpp47 CoroutinePromise = nullptr; in Clear()
H A DAnalysisBasedWarnings.cpp704 S.Diag(Loc, DiagID) << FSI->CoroutinePromise->getType(); in CheckFallThroughForBody()
H A DTreeTransform.h8395 assert(FD && ScopeInfo && !ScopeInfo->CoroutinePromise && in TransformCoroutineBodyStmt()
8417 ScopeInfo->CoroutinePromise = Promise; in TransformCoroutineBodyStmt()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h217 VarDecl *CoroutinePromise = nullptr; variable