Home
last modified time | relevance | path

Searched refs:NumTeams (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.h207 void emitNumTeamsClause(CodeGenFunction &CGF, const Expr *NumTeams,
H A DCGOpenMPRuntime.cpp6641 const Expr *NumTeams = in getNumTeamsExprForTargetDirective() local
6647 return NumTeams; in getNumTeamsExprForTargetDirective()
6670 const Expr *NumTeams = in getNumTeamsExprForTargetDirective() local
6672 if (NumTeams->isIntegerConstantExpr(CGF.getContext())) in getNumTeamsExprForTargetDirective()
6675 return NumTeams; in getNumTeamsExprForTargetDirective()
6759 if (NumTeams != nullptr) { in emitNumTeamsForTargetDirective()
6767 llvm::Value *NumTeamsVal = CGF.EmitScalarExpr(NumTeams, in emitNumTeamsForTargetDirective()
6778 llvm::Value *NumTeamsVal = CGF.EmitScalarExpr(NumTeams, in emitNumTeamsForTargetDirective()
10317 if (NumTeams) { in emitTargetCall()
10337 NumTeams, in emitTargetCall()
[all …]
H A DCGOpenMPRuntime.h1650 virtual void emitNumTeamsClause(CodeGenFunction &CGF, const Expr *NumTeams,
2471 void emitNumTeamsClause(CodeGenFunction &CGF, const Expr *NumTeams,
H A DCGOpenMPRuntimeGPU.cpp1222 const Expr *NumTeams, in emitNumTeamsClause() argument
H A DCGStmtOpenMP.cpp6056 const Expr *NumTeams = NT ? NT->getNumTeams() : nullptr; in emitCommonOMPTeamsDirective() local
6059 CGF.CGM.getOpenMPRuntime().emitNumTeamsClause(CGF, NumTeams, ThreadLimit, in emitCommonOMPTeamsDirective()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h5842 Stmt *NumTeams = nullptr; variable
5847 void setNumTeams(Expr *E) { NumTeams = E; } in setNumTeams()
5863 OMPClauseWithPreInit(this), LParenLoc(LParenLoc), NumTeams(E) { in OMPNumTeamsClause()
5880 Expr *getNumTeams() { return cast<Expr>(NumTeams); } in getNumTeams()
5883 Expr *getNumTeams() const { return cast<Expr>(NumTeams); } in getNumTeams()
5885 child_range children() { return child_range(&NumTeams, &NumTeams + 1); } in children()
5888 return const_child_range(&NumTeams, &NumTeams + 1); in children()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h1955 OMPClause *RebuildOMPNumTeamsClause(Expr *NumTeams, SourceLocation StartLoc, in RebuildOMPNumTeamsClause() argument
1958 return getSema().ActOnOpenMPNumTeamsClause(NumTeams, StartLoc, LParenLoc, in RebuildOMPNumTeamsClause()
H A DSemaOpenMP.cpp20058 OMPClause *Sema::ActOnOpenMPNumTeamsClause(Expr *NumTeams, in ActOnOpenMPNumTeamsClause() argument
20062 Expr *ValExpr = NumTeams; in ActOnOpenMPNumTeamsClause()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11255 OMPClause *ActOnOpenMPNumTeamsClause(Expr *NumTeams, SourceLocation StartLoc,