Home
last modified time | relevance | path

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

12

/external/clang/lib/AST/
DStmtOpenMP.cpp124 OMPForDirective *
125 OMPForDirective::Create(const ASTContext &C, SourceLocation StartLoc, in Create()
130 llvm::alignTo(sizeof(OMPForDirective), llvm::alignOf<OMPClause *>()); in Create()
134 OMPForDirective *Dir = in Create()
135 new (Mem) OMPForDirective(StartLoc, EndLoc, CollapsedNum, Clauses.size()); in Create()
165 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
170 llvm::alignTo(sizeof(OMPForDirective), llvm::alignOf<OMPClause *>()); in CreateEmpty()
174 return new (Mem) OMPForDirective(CollapsedNum, NumClauses); in CreateEmpty()
DStmtProfile.cpp565 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
DStmtPrinter.cpp1000 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
/external/clang/include/clang/AST/
DStmtOpenMP.h854 class OMPForDirective : public OMPLoopDirective {
867 OMPForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForDirective() function
878 explicit OMPForDirective(unsigned CollapsedNum, unsigned NumClauses) in OMPForDirective() function
898 static OMPForDirective *Create(const ASTContext &C, SourceLocation StartLoc,
911 static OMPForDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
DRecursiveASTVisitor.h2469 DEF_TRAVERSE_STMT(OMPForDirective,
/external/llvm-project/clang/lib/AST/
DStmtOpenMP.cpp249 OMPForDirective *OMPForDirective::Create( in Create()
253 auto *Dir = createDirective<OMPForDirective>( in Create()
285 OMPForDirective *OMPForDirective::CreateEmpty(const ASTContext &C, in CreateEmpty()
289 return createEmptyDirective<OMPForDirective>( in CreateEmpty()
DStmtProfile.cpp862 void StmtProfiler::VisitOMPForDirective(const OMPForDirective *S) { in VisitOMPForDirective()
DStmtPrinter.cpp663 void StmtPrinter::VisitOMPForDirective(OMPForDirective *Node) { in VisitOMPForDirective()
/external/llvm-project/clang/include/clang/AST/
DStmtOpenMP.h1239 class OMPForDirective : public OMPLoopDirective {
1251 OMPForDirective(SourceLocation StartLoc, SourceLocation EndLoc, in OMPForDirective() function
1260 explicit OMPForDirective(unsigned CollapsedNum) in OMPForDirective() function
1287 static OMPForDirective *Create(const ASTContext &C, SourceLocation StartLoc,
1300 static OMPForDirective *CreateEmpty(const ASTContext &C, unsigned NumClauses,
1309 return const_cast<OMPForDirective *>(this)->getTaskReductionRefExpr(); in getTaskReductionRefExpr()
DRecursiveASTVisitor.h2788 DEF_TRAVERSE_STMT(OMPForDirective,
/external/clang/include/clang/Basic/
DStmtNodes.td200 def OMPForDirective : DStmt<OMPLoopDirective>;
/external/llvm-project/clang/include/clang/Basic/
DStmtNodes.td223 def OMPForDirective : StmtNode<OMPLoopDirective>;
/external/clang/lib/CodeGen/
DCGStmt.cpp191 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
DCodeGenFunction.h2469 void EmitOMPForDirective(const OMPForDirective &S);
DCGStmtOpenMP.cpp2109 void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { in EmitOMPForDirective()
/external/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp2299 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
3151 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
DASTWriterStmt.cpp2197 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp2552 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
3274 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, in ReadStmtFromStream()
DASTWriterStmt.cpp2234 void ASTStmtWriter::VisitOMPForDirective(OMPForDirective *D) { in VisitOMPForDirective()
/external/llvm-project/clang/lib/CodeGen/
DCGStmt.cpp204 EmitOMPForDirective(cast<OMPForDirective>(*S)); in EmitStmt()
DCGStmtOpenMP.cpp1290 TaskRedRef = cast<OMPForDirective>(D).getTaskReductionRefExpr(); in EmitOMPReductionClauseInit()
3352 void CodeGenFunction::EmitOMPForDirective(const OMPForDirective &S) { in EmitOMPForDirective()
DCodeGenFunction.h3392 void EmitOMPForDirective(const OMPForDirective &S);
/external/clang/tools/libclang/
DCIndex.cpp1940 void VisitOMPForDirective(const OMPForDirective *D);
2604 void EnqueueVisitor::VisitOMPForDirective(const OMPForDirective *D) { in VisitOMPForDirective()
/external/llvm-project/clang/tools/libclang/
DCIndex.cpp2044 void VisitOMPForDirective(const OMPForDirective *D);
2856 void EnqueueVisitor::VisitOMPForDirective(const OMPForDirective *D) { in VisitOMPForDirective()
/external/clang/lib/Sema/
DSemaOpenMP.cpp5539 return OMPForDirective::Create(Context, StartLoc, EndLoc, NestedLoopCount, in ActOnOpenMPForDirective()

12