Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp335 OMPParallelForDirective *OMPParallelForDirective::Create( in Create()
340 llvm::alignTo(sizeof(OMPParallelForDirective), alignof(OMPClause *)); in Create()
344 OMPParallelForDirective *Dir = new (Mem) in Create()
345 OMPParallelForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
373 OMPParallelForDirective *
374 OMPParallelForDirective::CreateEmpty(const ASTContext &C, unsigned NumClauses, in CreateEmpty()
377 llvm::alignTo(sizeof(OMPParallelForDirective), alignof(OMPClause *)); in CreateEmpty()
381 return new (Mem) OMPParallelForDirective(CollapsedNum, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp811 StmtProfiler::VisitOMPParallelForDirective(const OMPParallelForDirective *S) { in VisitOMPParallelForDirective()
H A DStmtPrinter.cpp692 void StmtPrinter::VisitOMPParallelForDirective(OMPParallelForDirective *Node) { in VisitOMPParallelForDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h1552 class OMPParallelForDirective : public OMPLoopDirective {
1565 OMPParallelForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPParallelForDirective() function
1576 explicit OMPParallelForDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPParallelForDirective() function
1597 static OMPParallelForDirective *
1609 static OMPParallelForDirective *CreateEmpty(const ASTContext &C,
H A DRecursiveASTVisitor.h2668 DEF_TRAVERSE_STMT(OMPParallelForDirective,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td216 def OMPParallelForDirective : DStmt<OMPLoopDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp2040 void ASTStmtReader::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
2877 S = OMPParallelForDirective::CreateEmpty(Context, NumClauses, in ReadStmtFromStream()
H A DASTWriterStmt.cpp2007 void ASTStmtWriter::VisitOMPParallelForDirective(OMPParallelForDirective *D) { in VisitOMPParallelForDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp221 EmitOMPParallelForDirective(cast<OMPParallelForDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3118 void EmitOMPParallelForDirective(const OMPParallelForDirective &S);
H A DCGStmtOpenMP.cpp2746 const OMPParallelForDirective &S) { in EmitOMPParallelForDirective()
H A DCGOpenMPRuntime.cpp1355 else if (const auto *OPFD = dyn_cast<OMPParallelForDirective>(&D)) in emitParallelOrTeamsOutlinedFunction()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h7857 OMPParallelForDirective *D) { in TransformOMPParallelForDirective()
H A DSemaOpenMP.cpp6074 return OMPParallelForDirective::Create(Context, StartLoc, EndLoc, in ActOnOpenMPParallelForDirective()