Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp57 OMPParallelDirective *OMPParallelDirective::Create( in Create()
61 llvm::alignTo(sizeof(OMPParallelDirective), alignof(OMPClause *)); in Create()
64 OMPParallelDirective *Dir = in Create()
65 new (Mem) OMPParallelDirective(StartLoc, EndLoc, Clauses.size()); in Create()
72 OMPParallelDirective *OMPParallelDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
76 llvm::alignTo(sizeof(OMPParallelDirective), alignof(OMPClause *)); in CreateEmpty()
79 return new (Mem) OMPParallelDirective(NumClauses); in CreateEmpty()
H A DStmtProfile.cpp773 void StmtProfiler::VisitOMPParallelDirective(const OMPParallelDirective *S) { in VisitOMPParallelDirective()
H A DStmtPrinter.cpp642 void StmtPrinter::VisitOMPParallelDirective(OMPParallelDirective *Node) { in VisitOMPParallelDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h276 class OMPParallelDirective : public OMPExecutableDirective {
286 OMPParallelDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelDirective() function
296 explicit OMPParallelDirective(unsigned NumClauses) in OMPParallelDirective() function
315 static OMPParallelDirective *
324 static OMPParallelDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2639 DEF_TRAVERSE_STMT(OMPParallelDirective,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td207 def OMPParallelDirective : DStmt<OMPExecutableDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp1985 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
2822 OMPParallelDirective::CreateEmpty(Context, in ReadStmtFromStream()
H A DASTWriterStmt.cpp1947 void ASTStmtWriter::VisitOMPParallelDirective(OMPParallelDirective *D) { in VisitOMPParallelDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp194 EmitOMPParallelDirective(cast<OMPParallelDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3109 void EmitOMPParallelDirective(const OMPParallelDirective &S);
H A DCGStmtOpenMP.cpp1271 void CodeGenFunction::EmitOMPParallelDirective(const OMPParallelDirective &S) { in EmitOMPParallelDirective()
H A DCGOpenMPRuntime.cpp1351 if (const auto *OPD = dyn_cast<OMPParallelDirective>(&D)) in emitParallelOrTeamsOutlinedFunction()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h7759 TreeTransform<Derived>::TransformOMPParallelDirective(OMPParallelDirective *D) { in TransformOMPParallelDirective()
H A DSemaOpenMP.cpp3945 return OMPParallelDirective::Create(Context, StartLoc, EndLoc, Clauses, AStmt, in ActOnOpenMPParallelDirective()