Searched refs:NumForLoops (Results 1 – 7 of 7) sorted by relevance
/external/clang/include/clang/AST/ |
D | OpenMPClause.h | 507 Stmt *NumForLoops; variable 510 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops() 523 NumForLoops(Num) {} in OMPCollapseClause() 529 LParenLoc(SourceLocation()), NumForLoops(nullptr) {} in OMPCollapseClause() 537 Expr *getNumForLoops() const { return cast_or_null<Expr>(NumForLoops); } in getNumForLoops() 543 child_range children() { return child_range(&NumForLoops, &NumForLoops + 1); } in children() 883 Stmt *NumForLoops; variable 886 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops() 899 NumForLoops(Num) {} in OMPOrderedClause() 905 LParenLoc(SourceLocation()), NumForLoops(nullptr) {} in OMPOrderedClause() [all …]
|
/external/llvm-project/clang/include/clang/AST/ |
D | OpenMPClause.h | 815 Stmt *NumForLoops = nullptr; variable 818 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops() 830 LParenLoc(LParenLoc), NumForLoops(Num) {} in OMPCollapseClause() 844 Expr *getNumForLoops() const { return cast_or_null<Expr>(NumForLoops); } in getNumForLoops() 846 child_range children() { return child_range(&NumForLoops, &NumForLoops + 1); } in children() 849 return const_child_range(&NumForLoops, &NumForLoops + 1); in children() 1498 Stmt *NumForLoops = nullptr; variable 1513 LParenLoc(LParenLoc), NumForLoops(Num), NumberOfLoops(NumLoops) {} in OMPOrderedClause() 1521 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops() 1546 Expr *getNumForLoops() const { return cast_or_null<Expr>(NumForLoops); } in getNumForLoops() [all …]
|
/external/llvm-project/polly/lib/CodeGen/ |
D | IslAst.cpp | 93 STATISTIC(NumForLoops, "Number of for-loops"); 481 NumForLoops++; in walkAstForStatistics()
|
/external/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 7515 OMPClause *Sema::ActOnOpenMPCollapseClause(Expr *NumForLoops, in ActOnOpenMPCollapseClause() argument 7525 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_collapse); in ActOnOpenMPCollapseClause() 7535 Expr *NumForLoops) { in ActOnOpenMPOrderedClause() argument 7541 if (NumForLoops && LParenLoc.isValid()) { in ActOnOpenMPOrderedClause() 7543 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_ordered); in ActOnOpenMPOrderedClause() 7546 NumForLoops = NumForLoopsResult.get(); in ActOnOpenMPOrderedClause() 7548 NumForLoops = nullptr; in ActOnOpenMPOrderedClause() 7549 DSAStack->setOrderedRegion(/*IsOrdered=*/true, NumForLoops); in ActOnOpenMPOrderedClause() 7551 OMPOrderedClause(NumForLoops, StartLoc, LParenLoc, EndLoc); in ActOnOpenMPOrderedClause()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaOpenMP.cpp | 12939 OMPClause *Sema::ActOnOpenMPCollapseClause(Expr *NumForLoops, in ActOnOpenMPCollapseClause() argument 12949 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_collapse); in ActOnOpenMPCollapseClause() 12959 Expr *NumForLoops) { in ActOnOpenMPOrderedClause() argument 12965 if (NumForLoops && LParenLoc.isValid()) { in ActOnOpenMPOrderedClause() 12967 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_ordered); in ActOnOpenMPOrderedClause() 12970 NumForLoops = NumForLoopsResult.get(); in ActOnOpenMPOrderedClause() 12972 NumForLoops = nullptr; in ActOnOpenMPOrderedClause() 12975 Context, NumForLoops, NumForLoops ? DSAStack->getAssociatedLoops() : 0, in ActOnOpenMPOrderedClause() 12977 DSAStack->setOrderedRegion(/*IsOrdered=*/true, NumForLoops, Clause); in ActOnOpenMPOrderedClause()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 8280 OMPClause *ActOnOpenMPCollapseClause(Expr *NumForLoops, 8288 Expr *NumForLoops = nullptr);
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 10708 OMPClause *ActOnOpenMPCollapseClause(Expr *NumForLoops, 10716 Expr *NumForLoops = nullptr);
|