Searched refs:NumForLoops (Results 1 – 4 of 4) sorted by relevance
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 1093 Stmt *NumForLoops = nullptr; variable 1096 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops() 1108 LParenLoc(LParenLoc), NumForLoops(Num) {} in OMPCollapseClause() 1122 Expr *getNumForLoops() const { return cast_or_null<Expr>(NumForLoops); } in getNumForLoops() 1124 child_range children() { return child_range(&NumForLoops, &NumForLoops + 1); } in children() 1127 return const_child_range(&NumForLoops, &NumForLoops + 1); in children() 1776 Stmt *NumForLoops = nullptr; variable 1791 LParenLoc(LParenLoc), NumForLoops(Num), NumberOfLoops(NumLoops) {} in OMPOrderedClause() 1799 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops() 1837 child_range children() { return child_range(&NumForLoops, &NumForLoops + 1); } in children() [all …]
|
| /llvm-project-15.0.7/polly/lib/CodeGen/ |
| H A D | IslAst.cpp | 90 STATISTIC(NumForLoops, "Number of for-loops"); 465 NumForLoops++; in walkAstForStatistics()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 16388 OMPClause *Sema::ActOnOpenMPCollapseClause(Expr *NumForLoops, in ActOnOpenMPCollapseClause() argument 16398 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_collapse); in ActOnOpenMPCollapseClause() 16408 Expr *NumForLoops) { in ActOnOpenMPOrderedClause() argument 16414 if (NumForLoops && LParenLoc.isValid()) { in ActOnOpenMPOrderedClause() 16416 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_ordered); in ActOnOpenMPOrderedClause() 16419 NumForLoops = NumForLoopsResult.get(); in ActOnOpenMPOrderedClause() 16421 NumForLoops = nullptr; in ActOnOpenMPOrderedClause() 16424 Context, NumForLoops, NumForLoops ? DSAStack->getAssociatedLoops() : 0, in ActOnOpenMPOrderedClause() 16426 DSAStack->setOrderedRegion(/*IsOrdered=*/true, NumForLoops, Clause); in ActOnOpenMPOrderedClause()
|
| /llvm-project-15.0.7/clang/include/clang/Sema/ |
| H A D | Sema.h | 11433 OMPClause *ActOnOpenMPCollapseClause(Expr *NumForLoops, 11441 Expr *NumForLoops = nullptr);
|