Searched refs:OMPParallelDirective (Results 1 - 13 of 13) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp163 OMPParallelDirective *OMPParallelDirective::Create(
167 llvm::alignTo(sizeof(OMPParallelDirective), alignof(OMPClause *));
170 OMPParallelDirective *Dir =
171 new (Mem) OMPParallelDirective(StartLoc, EndLoc, Clauses.size());
178 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C,
182 llvm::alignTo(sizeof(OMPParallelDirective), alignof(OMPClause *));
185 return new (Mem) OMPParallelDirective(NumClauses);
H A DStmtProfile.cpp795 void StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) {
H A DStmtPrinter.cpp656 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h357 class OMPParallelDirective : public OMPExecutableDirective { class in namespace:clang
367 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, function in class:clang::OMPParallelDirective
378 explicit OMPParallelDirective(unsigned NumClauses) function in class:clang::OMPParallelDirective
397 static OMPParallelDirective *
406 static OMPParallelDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2780 DEF_TRAVERSE_STMT(OMPParallelDirective,
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp2228 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) {
3071 OMPParallelDirective::CreateEmpty(Context,
H A DASTWriterStmt.cpp2131 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp193 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S));
H A DCodeGenFunction.h3133 void EmitOMPParallelDirective(const OMPParallelDirective &S);
H A DCGStmtOpenMP.cpp1337 void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) {
H A DCGOpenMPRuntime.cpp1495 if (const auto *OPD = dyn_cast<OMPParallelDirective>(&D))
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8047 TreeTransform<Derived>::TransformOMPParallelDirective(OMPParallelDirective *D) {
H A DSemaOpenMP.cpp5607 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt,

Completed in 422 milliseconds