Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp622 if (ScopeInfo->CoroutinePromise) in checkCoroutineContext()
628 ScopeInfo->CoroutinePromise = S.buildCoroutinePromise(Loc); in checkCoroutineContext()
629 if (!ScopeInfo->CoroutinePromise) in checkCoroutineContext()
714 assert(ScopeInfo->CoroutinePromise); in ActOnCoroutineBodyStart()
835 auto *Promise = FSI->CoroutinePromise; in BuildUnresolvedCoawaitExpr()
890 *this, Coroutine->CoroutinePromise, CallLoc, E); in BuildResolvedCoawaitExpr()
945 *this, Coroutine->CoroutinePromise, Loc, E); in BuildCoyieldExpr()
977 VarDecl *Promise = FSI->CoroutinePromise; in BuildCoreturnStmt()
1062 if (!Fn->CoroutinePromise) in CheckCompletedCoroutineBody()
1092 !Fn.CoroutinePromise || in CoroutineStmtBuilder()
[all …]
H A DScopeInfo.cpp45 CoroutinePromise = nullptr; in Clear()
H A DAnalysisBasedWarnings.cpp677 S.Diag(Loc, DiagID) << FSI->CoroutinePromise->getType(); in CheckFallThroughForBody()
H A DTreeTransform.h7736 assert(FD && ScopeInfo && !ScopeInfo->CoroutinePromise && in TransformCoroutineBodyStmt()
7758 ScopeInfo->CoroutinePromise = Promise; in TransformCoroutineBodyStmt()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h203 VarDecl *CoroutinePromise = nullptr; variable