Home
last modified time | relevance | path

Searched refs:NumForLoops (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaOpenMP.h914 OMPClause *ActOnOpenMPCollapseClause(Expr *NumForLoops,
922 Expr *NumForLoops = nullptr);
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h2137 Stmt *NumForLoops = nullptr; variable
2152 LParenLoc(LParenLoc), NumForLoops(Num), NumberOfLoops(NumLoops) {} in OMPOrderedClause()
2160 void setNumForLoops(Expr *Num) { NumForLoops = Num; } in setNumForLoops()
2185 Expr *getNumForLoops() const { return cast_or_null<Expr>(NumForLoops); } in getNumForLoops()
2198 child_range children() { return child_range(&NumForLoops, &NumForLoops + 1); } in children()
2201 return const_child_range(&NumForLoops, &NumForLoops + 1); in children()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp16169 OMPClause *SemaOpenMP::ActOnOpenMPCollapseClause(Expr *NumForLoops, in ActOnOpenMPCollapseClause() argument
16179 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_collapse); in ActOnOpenMPCollapseClause()
16189 Expr *NumForLoops) { in ActOnOpenMPOrderedClause() argument
16195 if (NumForLoops && LParenLoc.isValid()) { in ActOnOpenMPOrderedClause()
16197 VerifyPositiveIntegerConstantInClause(NumForLoops, OMPC_ordered); in ActOnOpenMPOrderedClause()
16200 NumForLoops = NumForLoopsResult.get(); in ActOnOpenMPOrderedClause()
16202 NumForLoops = nullptr; in ActOnOpenMPOrderedClause()
16205 OMPOrderedClause::Create(getASTContext(), NumForLoops, in ActOnOpenMPOrderedClause()
16206 NumForLoops ? DSAStack->getAssociatedLoops() : 0, in ActOnOpenMPOrderedClause()
16208 DSAStack->setOrderedRegion(/*IsOrdered=*/true, NumForLoops, Clause); in ActOnOpenMPOrderedClause()