| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| H A D | StmtNodes.td | 222 def OMPLoopDirective : StmtNode<OMPLoopBasedDirective, 1>; 224 def OMPSimdDirective : StmtNode<OMPLoopDirective>; 226 def OMPForDirective : StmtNode<OMPLoopDirective>; 227 def OMPForSimdDirective : StmtNode<OMPLoopDirective>; 233 def OMPParallelForDirective : StmtNode<OMPLoopDirective>; 234 def OMPParallelForSimdDirective : StmtNode<OMPLoopDirective>; 257 def OMPTaskLoopDirective : StmtNode<OMPLoopDirective>; 258 def OMPTaskLoopSimdDirective : StmtNode<OMPLoopDirective>; 259 def OMPMasterTaskLoopDirective : StmtNode<OMPLoopDirective>; 260 def OMPMasterTaskLoopSimdDirective : StmtNode<OMPLoopDirective>; [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| H A D | StmtOpenMP.h | 927 class OMPLoopDirective : public OMPLoopBasedDirective { 1062 OMPLoopDirective(StmtClass SC, OpenMPDirectiveKind Kind, in OMPLoopDirective() function 1376 return const_cast<OMPLoopDirective *>(this)->getBody(); in getBody() 1382 return const_cast<OMPLoopDirective *>(this)->getCounters(); in counters() 1388 return const_cast<OMPLoopDirective *>(this)->getPrivateCounters(); in private_counters() 1394 return const_cast<OMPLoopDirective *>(this)->getInits(); in inits() 1400 return const_cast<OMPLoopDirective *>(this)->getUpdates(); in updates() 1406 return const_cast<OMPLoopDirective *>(this)->getFinals(); in finals() 1412 return const_cast<OMPLoopDirective *>(this)->getDependentCounters(); in dependent_counters() 1418 return const_cast<OMPLoopDirective *>(this)->getDependentInits(); in dependent_inits() [all …]
|
| H A D | RecursiveASTVisitor.h | 496 bool TraverseOMPLoopDirective(OMPLoopDirective *S); 2815 RecursiveASTVisitor<Derived>::TraverseOMPLoopDirective(OMPLoopDirective *S) {
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGOpenMPRuntime.h | 48 class OMPLoopDirective; variable 244 NontemporalDeclsRAII(CodeGenModule &CGM, const OMPLoopDirective &S); 877 const OMPLoopDirective &D)> 1364 const OMPLoopDirective &D, 1575 const OMPLoopDirective &D)> 1731 virtual void emitDoacrossInit(CodeGenFunction &CGF, const OMPLoopDirective &D, 1759 const OMPLoopDirective &S, OpenMPDistScheduleClauseKind &ScheduleKind, in getDefaultDistScheduleAndChunk() 1765 const OMPLoopDirective &S, OpenMPScheduleClauseKind &ScheduleKind, 2245 const OMPLoopDirective &D, llvm::Function *TaskFunction, 2415 const OMPLoopDirective &D)> [all …]
|
| H A D | CGOpenMPRuntimeGPU.h | 385 const OMPLoopDirective &S, OpenMPDistScheduleClauseKind &ScheduleKind, 390 const OMPLoopDirective &S, OpenMPScheduleClauseKind &ScheduleKind,
|
| H A D | CGStmtOpenMP.cpp | 139 if (auto *LD = dyn_cast<OMPLoopDirective>(&S)) { in emitPreInitStmt() 1045 const auto *LoopDirective = cast<OMPLoopDirective>(&D); in EmitOMPLastprivateClauseInit() 1138 if (const auto *LoopDirective = dyn_cast<OMPLoopDirective>(&D)) { in EmitOMPLastprivateClauseFinal() 1838 NextLoop = OMPLoopDirective::tryToFindNextInnerLoop( in emitBody() 1847 void CodeGenFunction::EmitOMPLoopBody(const OMPLoopDirective &D, in EmitOMPLoopBody() 2091 bool CodeGenFunction::EmitOMPLinearClauseInit(const OMPLoopDirective &D) { in EmitOMPLinearClauseInit() 2129 const OMPLoopDirective &D, in EmitOMPLinearClauseFinal() 2202 const OMPLoopDirective &S, CodeGenFunction::OMPPrivateScope &LoopScope) { in EmitOMPPrivateLoopCounters() 2250 static void emitPreCond(CodeGenFunction &CGF, const OMPLoopDirective &S, in emitPreCond() 2289 const OMPLoopDirective &D, CodeGenFunction::OMPPrivateScope &PrivateScope) { in EmitOMPLinearClause() [all …]
|
| H A D | CodeGenFunction.h | 295 typedef llvm::function_ref<void(CodeGenFunction &, const OMPLoopDirective &, 3382 void EmitOMPLinearClause(const OMPLoopDirective &D, 3388 const OMPLoopDirective &D, 3413 bool EmitOMPLinearClauseInit(const OMPLoopDirective &D); 3478 void EmitOMPTaskLoopBasedDirective(const OMPLoopDirective &S); 3584 void EmitOMPPrivateLoopCounters(const OMPLoopDirective &S, 3588 void EmitOMPLoopBody(const OMPLoopDirective &D, JumpDest LoopExit); 3593 bool EmitOMPWorksharingLoop(const OMPLoopDirective &S, Expr *EUB, 3598 void EmitOMPDistributeLoop(const OMPLoopDirective &S, 3602 void EmitOMPSimdInit(const OMPLoopDirective &D, bool IsMonotonic = false); [all …]
|
| H A D | CGOpenMPRuntimeGPU.cpp | 4109 cast<OMPLoopDirective>(D).getLowerBoundVariable()->getExprLoc()); in createParallelDataSharingWrapper() 4119 cast<OMPLoopDirective>(D).getUpperBoundVariable()->getExprLoc()); in createParallelDataSharingWrapper() 4301 CodeGenFunction &CGF, const OMPLoopDirective &S, in getDefaultDistScheduleAndChunk() 4318 CodeGenFunction &CGF, const OMPLoopDirective &S, in getDefaultScheduleAndChunk()
|
| H A D | CGOpenMPRuntime.cpp | 2547 CodeGenFunction &CGF, const OMPLoopDirective &S, in getDefaultScheduleAndChunk() 5227 const OMPLoopDirective &D, in emitTaskLoopCall() 10011 const OMPLoopDirective &D)> in emitTargetNumIterationsCall() 10020 const auto *LD = cast<OMPLoopDirective>(TD); in emitTargetNumIterationsCall() 10040 const OMPLoopDirective &D)> in emitTargetCall() 11827 const OMPLoopDirective &D, in emitDoacrossInit() 12075 CodeGenModule &CGM, const OMPLoopDirective &S) in NontemporalDeclsRAII() 12758 CodeGenFunction &CGF, SourceLocation Loc, const OMPLoopDirective &D, in emitTaskLoopCall() 12828 const OMPLoopDirective &D)> in emitTargetCall() 12873 const OMPLoopDirective &D, in emitDoacrossInit()
|
| /netbsd-src/external/apache2/llvm/dist/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() 177 Stmt *OMPLoopDirective::getBody() { in getBody() 187 void OMPLoopDirective::setCounters(ArrayRef<Expr *> A) { in setCounters() 193 void OMPLoopDirective::setPrivateCounters(ArrayRef<Expr *> A) { in setPrivateCounters() 200 void OMPLoopDirective::setInits(ArrayRef<Expr *> A) { in setInits() 206 void OMPLoopDirective::setUpdates(ArrayRef<Expr *> A) { in setUpdates() 212 void OMPLoopDirective::setFinals(ArrayRef<Expr *> A) { in setFinals() 218 void OMPLoopDirective::setDependentCounters(ArrayRef<Expr *> A) { in setDependentCounters() 225 void OMPLoopDirective::setDependentInits(ArrayRef<Expr *> A) { in setDependentInits() [all …]
|
| H A D | StmtProfile.cpp | 895 void StmtProfiler::VisitOMPLoopDirective(const OMPLoopDirective *S) { in VisitOMPLoopDirective()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTWriterStmt.cpp | 2193 void ASTStmtWriter::VisitOMPLoopDirective(OMPLoopDirective *D) { in VisitOMPLoopDirective()
|
| H A D | ASTReaderStmt.cpp | 2296 void ASTStmtReader::VisitOMPLoopDirective(OMPLoopDirective *D) { in VisitOMPLoopDirective()
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/ |
| H A D | CIndex.cpp | 2044 void VisitOMPLoopDirective(const OMPLoopDirective *D); 2883 void EnqueueVisitor::VisitOMPLoopDirective(const OMPLoopDirective *D) { in VisitOMPLoopDirective()
|