Home
last modified time | relevance | path

Searched refs:CoroutineBodyStmt (Results 1 – 21 of 21) sorted by relevance

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DStmtCXX.cpp86 CoroutineBodyStmt *CoroutineBodyStmt::Create( in Create()
87 const ASTContext &C, CoroutineBodyStmt::CtorArgs const &Args) { in Create()
89 CoroutineBodyStmt::FirstParamMove + Args.ParamMoves.size()); in Create()
91 void *Mem = C.Allocate(Size, alignof(CoroutineBodyStmt)); in Create()
92 return new (Mem) CoroutineBodyStmt(Args); in Create()
95 CoroutineBodyStmt *CoroutineBodyStmt::Create(const ASTContext &C, EmptyShell, in Create()
98 CoroutineBodyStmt::FirstParamMove + NumParams); in Create()
100 void *Mem = C.Allocate(Size, alignof(CoroutineBodyStmt)); in Create()
101 auto *Result = new (Mem) CoroutineBodyStmt(CtorArgs()); in Create()
109 CoroutineBodyStmt::CoroutineBodyStmt(CoroutineBodyStmt::CtorArgs const &Args) in CoroutineBodyStmt() function in CoroutineBodyStmt
[all …]
H A DExprCXX.cpp1275 if (const auto *CoroBody = dyn_cast<CoroutineBodyStmt>(Body)) in getCompoundStmtBody()
H A DStmtProfile.cpp2206 void StmtProfiler::VisitCoroutineBodyStmt(const CoroutineBodyStmt *S) { in VisitCoroutineBodyStmt()
H A DStmtPrinter.cpp2544 void StmtPrinter::VisitCoroutineBodyStmt(CoroutineBodyStmt *S) { in VisitCoroutineBodyStmt()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmtCXX.h317 class CoroutineBodyStmt final
319 private llvm::TrailingObjects<CoroutineBodyStmt, Stmt *> {
363 CoroutineBodyStmt(CtorArgs const& Args);
366 static CoroutineBodyStmt *Create(const ASTContext &C, CtorArgs const &Args);
367 static CoroutineBodyStmt *Create(const ASTContext &C, EmptyShell,
H A DRecursiveASTVisitor.h2867 DEF_TRAVERSE_STMT(CoroutineBodyStmt, {
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DCoroutineStmtBuilder.h24 class CoroutineStmtBuilder : public CoroutineBodyStmt::CtorArgs {
H A DSemaCoroutine.cpp1106 if (isa<CoroutineBodyStmt>(Body)) { in CheckCompletedCoroutineBody()
1139 Body = CoroutineBodyStmt::Create(Context, Builder); in CheckCompletedCoroutineBody()
1837 StmtResult Sema::BuildCoroutineBodyStmt(CoroutineBodyStmt::CtorArgs Args) { in BuildCoroutineBodyStmt()
1838 CoroutineBodyStmt *Res = CoroutineBodyStmt::Create(Context, Args); in BuildCoroutineBodyStmt()
H A DSemaLambda.cpp1962 !isa<CoroutineBodyStmt>(CallOperator->getBody()) && in BuildLambdaExpr()
H A DAnalysisBasedWarnings.cpp652 if (const auto *CBody = dyn_cast<CoroutineBodyStmt>(Body)) in CheckFallThroughForBody()
H A DTreeTransform.h1556 StmtResult RebuildCoroutineBodyStmt(CoroutineBodyStmt::CtorArgs Args) { in RebuildCoroutineBodyStmt()
7946 TreeTransform<Derived>::TransformCoroutineBodyStmt(CoroutineBodyStmt *S) { in TransformCoroutineBodyStmt()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGCoroutine.cpp469 const CoroutineBodyStmt &S, Stmt *Body) { in emitBodyAndFallthrough()
477 void CodeGenFunction::EmitCoroutineBody(const CoroutineBodyStmt &S) { in EmitCoroutineBody()
H A DCodeGenFunction.cpp1418 if (isa<CoroutineBodyStmt>(Body)) in GenerateCode()
1431 if (Body && isa_and_nonnull<CoroutineBodyStmt>(Body)) in GenerateCode()
H A DCoverageMappingGen.cpp1027 void VisitCoroutineBodyStmt(const CoroutineBodyStmt *S) { in VisitCoroutineBodyStmt()
H A DCGStmt.cpp160 EmitCoroutineBody(cast<CoroutineBodyStmt>(*S)); in EmitStmt()
H A DCodeGenFunction.h3265 void EmitCoroutineBody(const CoroutineBodyStmt &S);
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DStmtNodes.td54 def CoroutineBodyStmt : StmtNode<Stmt>;
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp97 if (auto *CoroBody = dyn_cast_or_null<CoroutineBodyStmt>(Body)) in getBody()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTReaderStmt.cpp458 void ASTStmtReader::VisitCoroutineBodyStmt(CoroutineBodyStmt *S) { in VisitCoroutineBodyStmt()
464 i < CoroutineBodyStmt::SubStmt::FirstParamMove + S->NumParams; ++i) in VisitCoroutineBodyStmt()
4040 S = CoroutineBodyStmt::Create(Context, Empty, NumParams); in ReadStmtFromStream()
H A DASTWriterStmt.cpp357 void ASTStmtWriter::VisitCoroutineBodyStmt(CoroutineBodyStmt *CoroStmt) { in VisitCoroutineBodyStmt()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h117 class CoroutineBodyStmt; variable
10904 StmtResult BuildCoroutineBodyStmt(CoroutineBodyStmt::CtorArgs);