Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp433 OMPParallelSectionsDirective *OMPParallelSectionsDirective::Create( in Create()
437 llvm::alignTo(sizeof(OMPParallelSectionsDirective), alignof(OMPClause *)); in Create()
440 OMPParallelSectionsDirective *Dir = in Create()
441 new (Mem) OMPParallelSectionsDirective(StartLoc, EndLoc, Clauses.size()); in Create()
448 OMPParallelSectionsDirective *
449 OMPParallelSectionsDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
452 llvm::alignTo(sizeof(OMPParallelSectionsDirective), alignof(OMPClause *)); in CreateEmpty()
455 return new (Mem) OMPParallelSectionsDirective(NumClauses); in CreateEmpty()
H A DStmtProfile.cpp821 const OMPParallelSectionsDirective *S) { in VisitOMPParallelSectionsDirective()
H A DStmtPrinter.cpp704 OMPParallelSectionsDirective *Node) { in VisitOMPParallelSectionsDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h1700 class OMPParallelSectionsDirective : public OMPExecutableDirective {
1712 OMPParallelSectionsDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelSectionsDirective() function
1723 explicit OMPParallelSectionsDirective(unsigned NumClauses) in OMPParallelSectionsDirective() function
1742 static OMPParallelSectionsDirective *
1752 static OMPParallelSectionsDirective *
H A DRecursiveASTVisitor.h2674 DEF_TRAVERSE_STMT(OMPParallelSectionsDirective,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td218 def OMPParallelSectionsDirective : DStmt<OMPExecutableDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp2051 OMPParallelSectionsDirective *D) { in VisitOMPParallelSectionsDirective()
2891 S = OMPParallelSectionsDirective::CreateEmpty( in ReadStmtFromStream()
H A DASTWriterStmt.cpp2020 OMPParallelSectionsDirective *D) { in VisitOMPParallelSectionsDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp227 EmitOMPParallelSectionsDirective(cast<OMPParallelSectionsDirective>(*S)); in EmitStmt()
H A DCGStmtOpenMP.cpp2644 else if (auto *OPSD = dyn_cast<OMPParallelSectionsDirective>(&S)) in EmitSections()
2773 const OMPParallelSectionsDirective &S) { in EmitOMPParallelSectionsDirective()
H A DCodeGenFunction.h3120 void EmitOMPParallelSectionsDirective(const OMPParallelSectionsDirective &S);
H A DCGOpenMPRuntime.cpp1353 else if (const auto *OPSD = dyn_cast<OMPParallelSectionsDirective>(&D)) in emitParallelOrTeamsOutlinedFunction()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h7879 OMPParallelSectionsDirective *D) { in TransformOMPParallelSectionsDirective()
H A DSemaOpenMP.cpp6157 return OMPParallelSectionsDirective::Create( in ActOnOpenMPParallelSectionsDirective()