Home
last modified time | relevance | path

Searched refs:OMPLoopBasedDirective (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DStmtNodes.td224 def OMPLoopBasedDirective : StmtNode<OMPExecutableDirective, 1>;
225 def OMPLoopDirective : StmtNode<OMPLoopBasedDirective, 1>;
228 def OMPLoopTransformationDirective : StmtNode<OMPLoopBasedDirective, 1>;
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DStmtOpenMP.cpp78 OMPLoopBasedDirective::tryToFindNextInnerLoop(Stmt *CurStmt, in tryToFindNextInnerLoop()
98 (isa<OMPLoopBasedDirective>(S) && !isa<OMPLoopDirective>(S))) { in tryToFindNextInnerLoop()
125 bool OMPLoopBasedDirective::doForAllLoops( in doForAllLoops()
173 CurStmt = OMPLoopBasedDirective::tryToFindNextInnerLoop( in doForAllLoops()
179 void OMPLoopBasedDirective::doForAllLoopsBodies( in doForAllLoopsBodies()
182 bool Res = OMPLoopBasedDirective::doForAllLoops( in doForAllLoopsBodies()
205 OMPLoopBasedDirective::doForAllLoopsBodies( in getBody()
H A DStmtProfile.cpp929 void StmtProfiler::VisitOMPLoopBasedDirective(const OMPLoopBasedDirective *S) { in VisitOMPLoopBasedDirective()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaOpenMP.cpp9530 OMPLoopBasedDirective::HelperExprs &Built) { in checkOpenMPLoop()
9573 if (!OMPLoopBasedDirective::doForAllLoops( in checkOpenMPLoop()
10284 OMPLoopBasedDirective::HelperExprs B; in ActOnOpenMPSimdDirective()
10323 OMPLoopBasedDirective::HelperExprs B; in ActOnOpenMPForDirective()
10359 OMPLoopBasedDirective::HelperExprs B; in ActOnOpenMPForSimdDirective()
10882 OMPLoopBasedDirective::HelperExprs B; in ActOnOpenMPParallelForDirective()
10926 OMPLoopBasedDirective::HelperExprs B; in ActOnOpenMPParallelForSimdDirective()
13062 OMPLoopBasedDirective::HelperExprs B; in ActOnOpenMPTargetParallelForDirective()
13356 OMPLoopBasedDirective::HelperExprs B; in ActOnOpenMPTaskLoopDirective()
13394 OMPLoopBasedDirective::HelperExprs B; in ActOnOpenMPTaskLoopSimdDirective()
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DStmtOpenMP.h683 class OMPLoopBasedDirective : public OMPExecutableDirective {
698 OMPLoopBasedDirective(StmtClass SC, OpenMPDirectiveKind Kind, in OMPLoopBasedDirective() function
960 class OMPLoopTransformationDirective : public OMPLoopBasedDirective {
972 : OMPLoopBasedDirective(SC, Kind, StartLoc, EndLoc, NumAssociatedLoops) {} in OMPLoopTransformationDirective()
1003 class OMPLoopDirective : public OMPLoopBasedDirective {
1141 : OMPLoopBasedDirective(SC, Kind, StartLoc, EndLoc, CollapsedNum) {} in OMPLoopDirective()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp140 void emitPreInitStmt(CodeGenFunction &CGF, const OMPLoopBasedDirective &S) { in emitPreInitStmt()
169 (void)OMPLoopBasedDirective::doForAllLoops( in emitPreInitStmt()
197 OMPLoopScope(CodeGenFunction &CGF, const OMPLoopBasedDirective &S) in OMPLoopScope()
1826 if (const auto *Dir = dyn_cast<OMPLoopBasedDirective>(S)) { in OMPTransformDirectiveScopeRAII()
1936 OMPLoopBasedDirective::tryToFindNextInnerLoop( in EmitOMPLoopBody()
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriterStmt.cpp2230 void ASTStmtWriter::VisitOMPLoopBasedDirective(OMPLoopBasedDirective *D) { in VisitOMPLoopBasedDirective()
H A DASTReaderStmt.cpp2324 void ASTStmtReader::VisitOMPLoopBasedDirective(OMPLoopBasedDirective *D) { in VisitOMPLoopBasedDirective()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp2144 void VisitOMPLoopBasedDirective(const OMPLoopBasedDirective *D);
3033 const OMPLoopBasedDirective *D) { in VisitOMPLoopBasedDirective()
/openbsd-src/gnu/llvm/clang/include/clang/Sema/
H A DSema.h10988 SmallVectorImpl<OMPLoopBasedDirective::HelperExprs> &LoopHelpers,