Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h224 std::pair<Stmt *, Stmt *> CoroutineSuspends; variable
535 assert((!value || CoroutineSuspends.first == nullptr) &&
541 return !NeedsCoroutineSuspends && CoroutineSuspends.first == nullptr; in hasInvalidCoroutineSuspends()
546 assert(CoroutineSuspends.first == nullptr && "suspend points already set"); in setCoroutineSuspends()
548 CoroutineSuspends.first = Initial; in setCoroutineSuspends()
549 CoroutineSuspends.second = Final; in setCoroutineSuspends()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DScopeInfo.cpp50 CoroutineSuspends.first = nullptr; in Clear()
51 CoroutineSuspends.second = nullptr; in Clear()
H A DSemaCoroutine.cpp1210 this->InitialSuspend = cast<Expr>(Fn.CoroutineSuspends.first); in makeInitialAndFinalSuspend()
1211 this->FinalSuspend = cast<Expr>(Fn.CoroutineSuspends.second); in makeInitialAndFinalSuspend()
H A DTreeTransform.h8397 ScopeInfo->CoroutineSuspends.first == nullptr && in TransformCoroutineBodyStmt()
8398 ScopeInfo->CoroutineSuspends.second == nullptr && in TransformCoroutineBodyStmt()