Home
last modified time | relevance | path

Searched refs:OMPSectionsDirective (Results 1 – 13 of 13) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h1803 class OMPSectionsDirective : public OMPExecutableDirective {
1815 OMPSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPSectionsDirective() function
1821 explicit OMPSectionsDirective() in OMPSectionsDirective() function
1844 static OMPSectionsDirective *
1855 static OMPSectionsDirective *CreateEmpty(const ASTContext &C,
1863 return const_cast<OMPSectionsDirective *>(this)->getTaskReductionRefExpr(); in getTaskReductionRefExpr()
H A DRecursiveASTVisitor.h2977 DEF_TRAVERSE_STMT(OMPSectionsDirective,
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp496 OMPSectionsDirective *OMPSectionsDirective::Create( in Create()
500 auto *Dir = createDirective<OMPSectionsDirective>(C, Clauses, AssociatedStmt, in Create()
508 OMPSectionsDirective *OMPSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
511 return createEmptyDirective<OMPSectionsDirective>(C, NumClauses, in CreateEmpty()
H A DStmtProfile.cpp994 void StmtProfiler::VisitOMPSectionsDirective(const OMPSectionsDirective *S) { in VisitOMPSectionsDirective()
H A DStmtPrinter.cpp773 void StmtPrinter::VisitOMPSectionsDirective(OMPSectionsDirective *Node) { in VisitOMPSectionsDirective()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td233 def OMPSectionsDirective : StmtNode<OMPExecutableDirective>;
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2427 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
3421 S = OMPSectionsDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2412 void ASTStmtWriter::VisitOMPSectionsDirective(OMPSectionsDirective *D) { in VisitOMPSectionsDirective()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp228 EmitOMPSectionsDirective(cast<OMPSectionsDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp1304 TaskRedRef = cast<OMPSectionsDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit()
4104 if (auto *OSD = dyn_cast<OMPSectionsDirective>(&S)) in EmitSections()
4122 void CodeGenFunction::EmitOMPSectionsDirective(const OMPSectionsDirective &S) { in EmitOMPSectionsDirective()
H A DCodeGenFunction.h3599 void EmitOMPSectionsDirective(const OMPSectionsDirective &S);
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8959 TreeTransform<Derived>::TransformOMPSectionsDirective(OMPSectionsDirective *D) { in TransformOMPSectionsDirective()
H A DSemaOpenMP.cpp10665 return OMPSectionsDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPSectionsDirective()