| /src/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 227 def OMPLoopDirective : StmtNode<OMPLoopBasedDirective, 1>; 229 def OMPSimdDirective : StmtNode<OMPLoopDirective>; 235 def OMPForDirective : StmtNode<OMPLoopDirective>; 236 def OMPForSimdDirective : StmtNode<OMPLoopDirective>; 242 def OMPParallelForDirective : StmtNode<OMPLoopDirective>; 243 def OMPParallelForSimdDirective : StmtNode<OMPLoopDirective>; 267 def OMPTaskLoopDirective : StmtNode<OMPLoopDirective>; 268 def OMPTaskLoopSimdDirective : StmtNode<OMPLoopDirective>; 269 def OMPMasterTaskLoopDirective : StmtNode<OMPLoopDirective>; 270 def OMPMasterTaskLoopSimdDirective : StmtNode<OMPLoopDirective>; [all …]
|
| /src/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtOpenMP.h | 1019 class OMPLoopDirective : public OMPLoopBasedDirective { 1154 OMPLoopDirective(StmtClass SC, OpenMPDirectiveKind Kind, in OMPLoopDirective() function 1484 return const_cast<OMPLoopDirective *>(this)->getBody(); in getBody() 1490 return const_cast<OMPLoopDirective *>(this)->getCounters(); in counters() 1496 return const_cast<OMPLoopDirective *>(this)->getPrivateCounters(); in private_counters() 1502 return const_cast<OMPLoopDirective *>(this)->getInits(); in inits() 1508 return const_cast<OMPLoopDirective *>(this)->getUpdates(); in updates() 1514 return const_cast<OMPLoopDirective *>(this)->getFinals(); in finals() 1520 return const_cast<OMPLoopDirective *>(this)->getDependentCounters(); in dependent_counters() 1526 return const_cast<OMPLoopDirective *>(this)->getDependentInits(); in dependent_inits() [all …]
|
| H A D | RecursiveASTVisitor.h | 498 bool TraverseOMPLoopDirective(OMPLoopDirective *S); 3016 RecursiveASTVisitor<Derived>::TraverseOMPLoopDirective(OMPLoopDirective *S) {
|
| /src/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.h | 47 class OMPLoopDirective; variable 248 NontemporalDeclsRAII(CodeGenModule &CGM, const OMPLoopDirective &S); 675 const OMPLoopDirective &D)> 1182 const OMPLoopDirective &D, 1393 const OMPLoopDirective &D)> 1499 virtual void emitDoacrossInit(CodeGenFunction &CGF, const OMPLoopDirective &D, 1532 const OMPLoopDirective &S, OpenMPDistScheduleClauseKind &ScheduleKind, in getDefaultDistScheduleAndChunk() 1538 const OMPLoopDirective &S, OpenMPScheduleClauseKind &ScheduleKind, 2028 const OMPLoopDirective &D, llvm::Function *TaskFunction, 2199 const OMPLoopDirective &D)> [all …]
|
| H A D | CGOpenMPRuntimeGPU.h | 315 const OMPLoopDirective &S, OpenMPDistScheduleClauseKind &ScheduleKind, 320 const OMPLoopDirective &S, OpenMPScheduleClauseKind &ScheduleKind,
|
| H A D | CGStmtOpenMP.cpp | 147 if (auto *LD = dyn_cast<OMPLoopDirective>(&S)) { in emitPreInitStmt() 1072 const auto *LoopDirective = cast<OMPLoopDirective>(&D); in EmitOMPLastprivateClauseInit() 1161 if (const auto *LoopDirective = dyn_cast<OMPLoopDirective>(&D)) { in EmitOMPLastprivateClauseFinal() 1900 NextLoop = OMPLoopDirective::tryToFindNextInnerLoop( in emitBody() 1909 void CodeGenFunction::EmitOMPLoopBody(const OMPLoopDirective &D, in EmitOMPLoopBody() 2169 bool CodeGenFunction::EmitOMPLinearClauseInit(const OMPLoopDirective &D) { in EmitOMPLinearClauseInit() 2208 const OMPLoopDirective &D, in EmitOMPLinearClauseFinal() 2281 const OMPLoopDirective &S, CodeGenFunction::OMPPrivateScope &LoopScope) { in EmitOMPPrivateLoopCounters() 2322 static void emitPreCond(CodeGenFunction &CGF, const OMPLoopDirective &S, in emitPreCond() 2361 const OMPLoopDirective &D, CodeGenFunction::OMPPrivateScope &PrivateScope) { in EmitOMPLinearClause() [all …]
|
| H A D | CodeGenFunction.h | 325 typedef llvm::function_ref<void(CodeGenFunction &, const OMPLoopDirective &, 3755 void EmitOMPLinearClause(const OMPLoopDirective &D, 3761 const OMPLoopDirective &D, 3786 bool EmitOMPLinearClauseInit(const OMPLoopDirective &D); 3860 void EmitOMPTaskLoopBasedDirective(const OMPLoopDirective &S); 3896 void EmitOMPParallelGenericLoopDirective(const OMPLoopDirective &S); 3985 void EmitOMPPrivateLoopCounters(const OMPLoopDirective &S, 3989 void EmitOMPLoopBody(const OMPLoopDirective &D, JumpDest LoopExit); 3994 bool EmitOMPWorksharingLoop(const OMPLoopDirective &S, Expr *EUB, 3999 void EmitOMPDistributeLoop(const OMPLoopDirective &S, [all …]
|
| H A D | CGOpenMPRuntimeGPU.cpp | 1938 cast<OMPLoopDirective>(D).getLowerBoundVariable()->getExprLoc()); in createParallelDataSharingWrapper() 1948 cast<OMPLoopDirective>(D).getUpperBoundVariable()->getExprLoc()); in createParallelDataSharingWrapper() 2120 CodeGenFunction &CGF, const OMPLoopDirective &S, in getDefaultDistScheduleAndChunk() 2137 CodeGenFunction &CGF, const OMPLoopDirective &S, in getDefaultScheduleAndChunk()
|
| H A D | CGOpenMPRuntime.cpp | 2328 CodeGenFunction &CGF, const OMPLoopDirective &S, in getDefaultScheduleAndChunk() 4634 const OMPLoopDirective &D, in emitTaskLoopCall() 9420 const OMPLoopDirective &D)> in emitTargetNumIterationsCall() 9432 const auto *LD = cast<OMPLoopDirective>(TD); in emitTargetNumIterationsCall() 9497 const OMPLoopDirective &D)> in emitTargetCallKernelLaunch() 9694 const OMPLoopDirective &D)> in emitTargetCall() 11138 const OMPLoopDirective &D, in emitDoacrossInit() 11430 CodeGenModule &CGM, const OMPLoopDirective &S) in NontemporalDeclsRAII() 12123 CodeGenFunction &CGF, SourceLocation Loc, const OMPLoopDirective &D, in emitTaskLoopCall() 12194 const OMPLoopDirective &D)> in emitTargetCall() [all …]
|
| /src/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtOpenMP.cpp | 72 if (auto *LD = dyn_cast<OMPLoopDirective>(this)) in getStructuredBlock() 98 (isa<OMPLoopBasedDirective>(S) && !isa<OMPLoopDirective>(S))) { in tryToFindNextInnerLoop() 202 Stmt *OMPLoopDirective::getBody() { in getBody() 212 void OMPLoopDirective::setCounters(ArrayRef<Expr *> A) { in setCounters() 218 void OMPLoopDirective::setPrivateCounters(ArrayRef<Expr *> A) { in setPrivateCounters() 225 void OMPLoopDirective::setInits(ArrayRef<Expr *> A) { in setInits() 231 void OMPLoopDirective::setUpdates(ArrayRef<Expr *> A) { in setUpdates() 237 void OMPLoopDirective::setFinals(ArrayRef<Expr *> A) { in setFinals() 243 void OMPLoopDirective::setDependentCounters(ArrayRef<Expr *> A) { in setDependentCounters() 250 void OMPLoopDirective::setDependentInits(ArrayRef<Expr *> A) { in setDependentInits() [all …]
|
| H A D | StmtProfile.cpp | 959 void StmtProfiler::VisitOMPLoopDirective(const OMPLoopDirective *S) { in VisitOMPLoopDirective()
|
| /src/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterStmt.cpp | 2401 void ASTStmtWriter::VisitOMPLoopDirective(OMPLoopDirective *D) { in VisitOMPLoopDirective()
|
| H A D | ASTReaderStmt.cpp | 2403 void ASTStmtReader::VisitOMPLoopDirective(OMPLoopDirective *D) { in VisitOMPLoopDirective()
|
| /src/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaOpenMP.cpp | 10600 OMPLoopDirective::HelperExprs B; in ActOnOpenMPGenericLoopDirective() 10629 OMPLoopDirective::HelperExprs B; in ActOnOpenMPTeamsGenericLoopDirective() 10663 OMPLoopDirective::HelperExprs B; in ActOnOpenMPTargetTeamsGenericLoopDirective() 10696 OMPLoopDirective::HelperExprs B; in ActOnOpenMPParallelGenericLoopDirective() 10728 OMPLoopDirective::HelperExprs B; in ActOnOpenMPTargetParallelGenericLoopDirective()
|