Home
last modified time | relevance | path

Searched refs:OMPLoopDirective (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DStmtNodes.td227 def OMPLoopDirective : StmtNode<OMPLoopBasedDirective, 1>;
229 def OMPSimdDirective : StmtNode<OMPLoopDirective>;
236 def OMPForDirective : StmtNode<OMPLoopDirective>;
237 def OMPForSimdDirective : StmtNode<OMPLoopDirective>;
243 def OMPParallelForDirective : StmtNode<OMPLoopDirective>;
244 def OMPParallelForSimdDirective : StmtNode<OMPLoopDirective>;
268 def OMPTaskLoopDirective : StmtNode<OMPLoopDirective>;
269 def OMPTaskLoopSimdDirective : StmtNode<OMPLoopDirective>;
270 def OMPMasterTaskLoopDirective : StmtNode<OMPLoopDirective>;
271 def OMPMasterTaskLoopSimdDirective : StmtNode<OMPLoopDirective>;
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h1004 class OMPLoopDirective : public OMPLoopBasedDirective {
1139 OMPLoopDirective(StmtClass SC, OpenMPDirectiveKind Kind, in OMPLoopDirective() function
1469 return const_cast<OMPLoopDirective *>(this)->getBody(); in getBody()
1475 return const_cast<OMPLoopDirective *>(this)->getCounters(); in counters()
1481 return const_cast<OMPLoopDirective *>(this)->getPrivateCounters(); in private_counters()
1487 return const_cast<OMPLoopDirective *>(this)->getInits(); in inits()
1493 return const_cast<OMPLoopDirective *>(this)->getUpdates(); in updates()
1499 return const_cast<OMPLoopDirective *>(this)->getFinals(); in finals()
1505 return const_cast<OMPLoopDirective *>(this)->getDependentCounters(); in dependent_counters()
1511 return const_cast<OMPLoopDirective *>(this)->getDependentInits(); in dependent_inits()
[all …]
H A DRecursiveASTVisitor.h500 bool TraverseOMPLoopDirective(OMPLoopDirective *S);
3068 RecursiveASTVisitor<Derived>::TraverseOMPLoopDirective(OMPLoopDirective *S) {
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h47 class OMPLoopDirective; variable
249 NontemporalDeclsRAII(CodeGenModule &CGM, const OMPLoopDirective &S);
657 const OMPLoopDirective &D)>
1164 const OMPLoopDirective &D,
1387 const OMPLoopDirective &D)>
1493 virtual void emitDoacrossInit(CodeGenFunction &CGF, const OMPLoopDirective &D,
1526 const OMPLoopDirective &S, OpenMPDistScheduleClauseKind &ScheduleKind, in getDefaultDistScheduleAndChunk()
1532 const OMPLoopDirective &S, OpenMPScheduleClauseKind &ScheduleKind,
2022 const OMPLoopDirective &D, llvm::Function *TaskFunction,
2193 const OMPLoopDirective &D)>
[all …]
H A DCGOpenMPRuntimeGPU.h316 const OMPLoopDirective &S, OpenMPDistScheduleClauseKind &ScheduleKind,
321 const OMPLoopDirective &S, OpenMPScheduleClauseKind &ScheduleKind,
H A DCGStmtOpenMP.cpp151 if (auto *LD = dyn_cast<OMPLoopDirective>(&S)) { in emitPreInitStmt()
1111 const auto *LoopDirective = cast<OMPLoopDirective>(&D); in EmitOMPLastprivateClauseInit()
1199 if (const auto *LoopDirective = dyn_cast<OMPLoopDirective>(&D)) { in EmitOMPLastprivateClauseFinal()
1944 NextLoop = OMPLoopDirective::tryToFindNextInnerLoop( in emitBody()
1953 void CodeGenFunction::EmitOMPLoopBody(const OMPLoopDirective &D, in EmitOMPLoopBody()
2216 bool CodeGenFunction::EmitOMPLinearClauseInit(const OMPLoopDirective &D) { in EmitOMPLinearClauseInit()
2255 const OMPLoopDirective &D, in EmitOMPLinearClauseFinal()
2328 const OMPLoopDirective &S, CodeGenFunction::OMPPrivateScope &LoopScope) { in EmitOMPPrivateLoopCounters()
2369 static void emitPreCond(CodeGenFunction &CGF, const OMPLoopDirective &S, in emitPreCond()
2408 const OMPLoopDirective &D, CodeGenFunction::OMPPrivateScope &PrivateScope) { in EmitOMPLinearClause()
[all …]
H A DCodeGenFunction.h317 typedef llvm::function_ref<void(CodeGenFunction &, const OMPLoopDirective &,
3793 void EmitOMPLinearClause(const OMPLoopDirective &D,
3799 const OMPLoopDirective &D,
3824 bool EmitOMPLinearClauseInit(const OMPLoopDirective &D);
3898 void EmitOMPTaskLoopBasedDirective(const OMPLoopDirective &S);
3941 void EmitOMPParallelGenericLoopDirective(const OMPLoopDirective &S);
4031 void EmitOMPPrivateLoopCounters(const OMPLoopDirective &S,
4035 void EmitOMPLoopBody(const OMPLoopDirective &D, JumpDest LoopExit);
4040 bool EmitOMPWorksharingLoop(const OMPLoopDirective &S, Expr *EUB,
4045 void EmitOMPDistributeLoop(const OMPLoopDirective &S,
[all …]
H A DCGOpenMPRuntimeGPU.cpp1937 cast<OMPLoopDirective>(D).getLowerBoundVariable()->getExprLoc()); in createParallelDataSharingWrapper()
1947 cast<OMPLoopDirective>(D).getUpperBoundVariable()->getExprLoc()); in createParallelDataSharingWrapper()
2117 CodeGenFunction &CGF, const OMPLoopDirective &S, in getDefaultDistScheduleAndChunk()
2134 CodeGenFunction &CGF, const OMPLoopDirective &S, in getDefaultScheduleAndChunk()
H A DCGOpenMPRuntime.cpp2304 CodeGenFunction &CGF, const OMPLoopDirective &S, in getDefaultScheduleAndChunk()
4602 const OMPLoopDirective &D, in emitTaskLoopCall()
9438 const OMPLoopDirective &D)> in emitTargetNumIterationsCall()
9450 const auto *LD = cast<OMPLoopDirective>(TD); in emitTargetNumIterationsCall()
9636 const OMPLoopDirective &D)> in emitTargetCallKernelLaunch()
9766 const OMPLoopDirective &D)> in emitTargetCall()
11205 const OMPLoopDirective &D, in emitDoacrossInit()
11497 CodeGenModule &CGM, const OMPLoopDirective &S) in NontemporalDeclsRAII()
12188 CodeGenFunction &CGF, SourceLocation Loc, const OMPLoopDirective &D, in emitTaskLoopCall()
12259 const OMPLoopDirective &D)> in emitTargetCall()
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp72 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 DStmtProfile.cpp987 void StmtProfiler::VisitOMPLoopDirective(const OMPLoopDirective *S) { in VisitOMPLoopDirective()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriterStmt.cpp2425 void ASTStmtWriter::VisitOMPLoopDirective(OMPLoopDirective *D) { in VisitOMPLoopDirective()
H A DASTReaderStmt.cpp2422 void ASTStmtReader::VisitOMPLoopDirective(OMPLoopDirective *D) { in VisitOMPLoopDirective()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp10665 OMPLoopDirective::HelperExprs B; in ActOnOpenMPGenericLoopDirective()
10694 OMPLoopDirective::HelperExprs B; in ActOnOpenMPTeamsGenericLoopDirective()
10728 OMPLoopDirective::HelperExprs B; in ActOnOpenMPTargetTeamsGenericLoopDirective()
10761 OMPLoopDirective::HelperExprs B; in ActOnOpenMPParallelGenericLoopDirective()
10793 OMPLoopDirective::HelperExprs B; in ActOnOpenMPTargetParallelGenericLoopDirective()