Home
last modified time | relevance | path

Searched refs:OMPParallelDirective (Results 1 – 14 of 14) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp256 OMPParallelDirective *OMPParallelDirective::Create( in Create()
260 auto *Dir = createDirective<OMPParallelDirective>( in Create()
267 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
270 return createEmptyDirective<OMPParallelDirective>(C, NumClauses, in CreateEmpty()
H A DStmtProfile.cpp906 void StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { in VisitOMPParallelDirective()
H A DStmtPrinter.cpp657 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { in VisitOMPParallelDirective()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h611 class OMPParallelDirective : public OMPExecutableDirective {
622 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc) in OMPParallelDirective() function
628 explicit OMPParallelDirective() in OMPParallelDirective() function
651 static OMPParallelDirective *
661 static OMPParallelDirective *CreateEmpty(const ASTContext &C,
669 return const_cast<OMPParallelDirective *>(this)->getTaskReductionRefExpr(); in getTaskReductionRefExpr()
H A DRecursiveASTVisitor.h2845 DEF_TRAVERSE_STMT(OMPParallelDirective,
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td224 def OMPParallelDirective : StmtNode<OMPExecutableDirective>;
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2310 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
3188 OMPParallelDirective::CreateEmpty(Context, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2208 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp203 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp1318 TaskRedRef = cast<OMPParallelDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit()
1696 void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) { in EmitOMPParallelDirective()
H A DCodeGenFunction.h3441 void EmitOMPParallelDirective(const OMPParallelDirective &S);
H A DCGOpenMPRuntime.cpp1261 if (const auto *OPD = dyn_cast<OMPParallelDirective>(&D)) in emitParallelOrTeamsOutlinedFunction()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8509 TreeTransform<Derived>::TransformOMPParallelDirective(OMPParallelDirective *D) { in TransformOMPParallelDirective()
H A DSemaOpenMP.cpp7136 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPParallelDirective()