Home
last modified time | relevance | path

Searched refs:CoroutineSuspendExpr (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DComputeDependence.h66 class CoroutineSuspendExpr; variable
150 ExprDependence computeDependence(CoroutineSuspendExpr *E);
H A DExprCXX.h4679 class CoroutineSuspendExpr : public Expr {
4703 CoroutineSuspendExpr(StmtClass SC, SourceLocation KeywordLoc, QualType Ty, in CoroutineSuspendExpr() function
4715 CoroutineSuspendExpr(StmtClass SC, EmptyShell Empty) : Expr(SC, Empty) { in CoroutineSuspendExpr() function
4764 class CoawaitExpr : public CoroutineSuspendExpr {
4771 : CoroutineSuspendExpr(CoawaitExprClass, CoawaitLoc, Operand, Ready, in CoroutineSuspendExpr() function
4778 : CoroutineSuspendExpr(CoawaitExprClass, CoawaitLoc, Ty, Operand) { in CoroutineSuspendExpr() function
4783 : CoroutineSuspendExpr(CoawaitExprClass, Empty) {} in CoawaitExpr()
4849 class CoyieldExpr : public CoroutineSuspendExpr {
4855 : CoroutineSuspendExpr(CoyieldExprClass, CoyieldLoc, Operand, Ready, in CoyieldExpr()
4858 : CoroutineSuspendExpr(CoyieldExprClass, CoyieldLoc, Ty, Operand) {} in CoyieldExpr()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td165 def CoroutineSuspendExpr : StmtNode<Expr, 1>;
166 def CoawaitExpr : StmtNode<CoroutineSuspendExpr>;
168 def CoyieldExpr : StmtNode<CoroutineSuspendExpr>;
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCoroutine.cpp176 CoroutineSuspendExpr const &S, in emitSuspendExpression()
291 const CoroutineSuspendExpr *E) { in getCoroutineSuspendExprReturnType()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DExprClassification.cpp441 return ClassifyInternal(Ctx, cast<CoroutineSuspendExpr>(E)->getResumeExpr()); in ClassifyInternal()
H A DComputeDependence.cpp350 ExprDependence clang::computeDependence(CoroutineSuspendExpr *E) { in computeDependence()
H A DExpr.cpp2494 return cast<CoroutineSuspendExpr>(this)->getResumeExpr()-> in isUnusedResultAWarning()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp372 void ASTStmtWriter::VisitCoroutineSuspendExpr(CoroutineSuspendExpr *E) { in VisitCoroutineSuspendExpr()