Searched refs:OMPForDirective (Results 1 – 13 of 13) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | StmtOpenMP.cpp | 122 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 D | StmtProfile.cpp | 781 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
|
| H A D | StmtPrinter.cpp | 652 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/ |
| H A D | StmtOpenMP.h | 1104 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 D | RecursiveASTVisitor.h | 2645 DEF_TRAVERSE_STMT(OMPForDirective,
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 209 def OMPForDirective : DStmt<OMPLoopDirective>;
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Serialization/ |
| H A D | ASTReaderStmt.cpp | 1997 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective() 2838 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
|
| H A D | ASTWriterStmt.cpp | 1960 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/ |
| H A D | CGStmt.cpp | 200 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
|
| H A D | CodeGenFunction.h | 3111 void EmitOMPForDirective(const OMPForDirective &S);
|
| H A D | CGStmtOpenMP.cpp | 2470 void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { in EmitOMPForDirective()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/ |
| H A D | TreeTransform.h | 7781 TreeTransform<Derived>::TransformOMPForDirective(OMPForDirective *D) { in TransformOMPForDirective()
|
| H A D | SemaOpenMP.cpp | 5836 return OMPForDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForDirective()
|