| /openbsd-src/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.h | 992 Value *Ident, Value *DeviceID, Value *NumTeams, 1472 int32_t NumTeams, 1525 int32_t NumTeams, int32_t NumThreads, 1544 int32_t NumTeams, int32_t NumThreads);
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntimeGPU.h | 193 void emitNumTeamsClause(CodeGenFunction &CGF, const Expr *NumTeams,
|
| H A D | CGOpenMPRuntime.h | 1432 virtual void emitNumTeamsClause(CodeGenFunction &CGF, const Expr *NumTeams, 2207 void emitNumTeamsClause(CodeGenFunction &CGF, const Expr *NumTeams,
|
| H A D | CGOpenMPRuntime.cpp | 6196 const Expr *NumTeams = in getNumTeamsExprForTargetDirective() local 6198 if (NumTeams->isIntegerConstantExpr(CGF.getContext())) in getNumTeamsExprForTargetDirective() 6200 NumTeams->getIntegerConstantExpr(CGF.getContext())) in getNumTeamsExprForTargetDirective() 6202 return NumTeams; in getNumTeamsExprForTargetDirective() 6225 const Expr *NumTeams = in getNumTeamsExprForTargetDirective() local 6227 if (NumTeams->isIntegerConstantExpr(CGF.getContext())) in getNumTeamsExprForTargetDirective() 6228 if (auto Constant = NumTeams->getIntegerConstantExpr(CGF.getContext())) in getNumTeamsExprForTargetDirective() 6230 return NumTeams; in getNumTeamsExprForTargetDirective() 6314 const Expr *NumTeams = getNumTeamsExprForTargetDirective(CGF, D, DefaultNT); in emitNumTeamsForTargetDirective() local 6315 if (NumTeams != nullptr) { in emitNumTeamsForTargetDirective() [all …]
|
| H A D | CGOpenMPRuntimeGPU.cpp | 904 const Expr *NumTeams, in emitNumTeamsClause() argument
|
| H A D | CGStmtOpenMP.cpp | 6664 const Expr *NumTeams = NT ? NT->getNumTeams() : nullptr; in emitCommonOMPTeamsDirective() local 6667 CGF.CGM.getOpenMPRuntime().emitNumTeamsClause(CGF, NumTeams, ThreadLimit, in emitCommonOMPTeamsDirective()
|
| /openbsd-src/gnu/llvm/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.cpp | 817 Value *DeviceID, Value *NumTeams, Value *NumThreads, Value *HostPtr, in emitTargetKernel() argument 832 SmallVector<Value *> OffloadingArgs{Ident, DeviceID, NumTeams, in emitTargetKernel() 3940 Function *OutlinedFn, int32_t NumTeams, int32_t NumThreads) { in setOutlinedTargetRegionFunctionAttributes() argument 3950 if (NumTeams > 0) in setOutlinedTargetRegionFunctionAttributes() 3951 OutlinedFn->addFnAttr("omp_target_num_teams", std::to_string(NumTeams)); in setOutlinedTargetRegionFunctionAttributes() 3983 FunctionGenCallback &GenerateFunctionCallback, int32_t NumTeams, in emitTargetRegionFunction() argument 4006 InfoManager, EntryInfo, OutlinedFn, EntryFnName, EntryFnIDName, NumTeams, in emitTargetRegionFunction() 4013 int32_t NumTeams, int32_t NumThreads) { in registerTargetRegionFunction() argument 4015 setOutlinedTargetRegionFunctionAttributes(OutlinedFn, NumTeams, NumThreads); in registerTargetRegionFunction()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | OpenMPClause.h | 6005 Stmt *NumTeams = nullptr; variable 6010 void setNumTeams(Expr *E) { NumTeams = E; } in setNumTeams() 6026 OMPClauseWithPreInit(this), LParenLoc(LParenLoc), NumTeams(E) { in OMPNumTeamsClause() 6043 Expr *getNumTeams() { return cast<Expr>(NumTeams); } in getNumTeams() 6046 Expr *getNumTeams() const { return cast<Expr>(NumTeams); } in getNumTeams() 6048 child_range children() { return child_range(&NumTeams, &NumTeams + 1); } in children() 6051 return const_child_range(&NumTeams, &NumTeams + 1); in children()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | TreeTransform.h | 2020 OMPClause *RebuildOMPNumTeamsClause(Expr *NumTeams, SourceLocation StartLoc, in RebuildOMPNumTeamsClause() argument 2023 return getSema().ActOnOpenMPNumTeamsClause(NumTeams, StartLoc, LParenLoc, in RebuildOMPNumTeamsClause()
|
| H A D | SemaOpenMP.cpp | 22465 OMPClause *Sema::ActOnOpenMPNumTeamsClause(Expr *NumTeams, in ActOnOpenMPNumTeamsClause() argument 22469 Expr *ValExpr = NumTeams; in ActOnOpenMPNumTeamsClause()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Sema/ |
| H A D | Sema.h | 12109 OMPClause *ActOnOpenMPNumTeamsClause(Expr *NumTeams, SourceLocation StartLoc,
|