Home
last modified time | relevance | path

Searched refs:OMPForDirective (Results 1 – 13 of 13) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmtOpenMP.cpp122 OMPForDirective *
123 OMPForDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
127 unsigned Size = llvm::alignTo(sizeof(OMPForDirective), alignof(OMPClause *)); in Create()
131 OMPForDirective *Dir = in Create()
132 new (Mem) OMPForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
160 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
164 unsigned Size = llvm::alignTo(sizeof(OMPForDirective), alignof(OMPClause *)); in CreateEmpty()
168 return new (Mem) OMPForDirective(CollapsedNum, NumClauses); in CreateEmpty()
H A DStmtProfile.cpp781 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
H A DStmtPrinter.cpp652 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmtOpenMP.h1104 class OMPForDirective : public OMPLoopDirective {
1117 OMPForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForDirective() function
1128 explicit OMPForDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPForDirective() function
1148 static OMPForDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1161 static OMPForDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
H A DRecursiveASTVisitor.h2645 DEF_TRAVERSE_STMT(OMPForDirective,
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DStmtNodes.td209 def OMPForDirective : DStmt<OMPLoopDirective>;
/freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/
H A DASTReaderStmt.cpp1997 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
2838 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
H A DASTWriterStmt.cpp1960 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGStmt.cpp200 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
H A DCodeGenFunction.h3111 void EmitOMPForDirective(const OMPForDirective &S);
H A DCGStmtOpenMP.cpp2470 void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { in EmitOMPForDirective()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DTreeTransform.h7781 TreeTransform<Derived>::TransformOMPForDirective(OMPForDirective *D) { in TransformOMPForDirective()
H A DSemaOpenMP.cpp5836 return OMPForDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForDirective()