Home
last modified time | relevance | path

Searched refs:CoroutineSuspends (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h221 std::pair<Stmt *, Stmt *> CoroutineSuspends; variable
524 assert((!value || CoroutineSuspends.first == nullptr) &&
530 return !NeedsCoroutineSuspends && CoroutineSuspends.first == nullptr; in hasInvalidCoroutineSuspends()
535 assert(CoroutineSuspends.first == nullptr && "suspend points already set"); in setCoroutineSuspends()
537 CoroutineSuspends.first = Initial; in setCoroutineSuspends()
538 CoroutineSuspends.second = Final; in setCoroutineSuspends()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DScopeInfo.cpp49 CoroutineSuspends.first = nullptr; in Clear()
50 CoroutineSuspends.second = nullptr; in Clear()
H A DSemaCoroutine.cpp1300 this->InitialSuspend = cast<Expr>(Fn.CoroutineSuspends.first); in makeInitialAndFinalSuspend()
1301 this->FinalSuspend = cast<Expr>(Fn.CoroutineSuspends.second); in makeInitialAndFinalSuspend()
H A DTreeTransform.h8102 ScopeInfo->CoroutineSuspends.first == nullptr && in TransformCoroutineBodyStmt()
8103 ScopeInfo->CoroutineSuspends.second == nullptr && in TransformCoroutineBodyStmt()