Home
last modified time | relevance | path

Searched refs:OMPCanonicalLoop (Results 1 – 13 of 13) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
DStmtOpenMP.h142 class OMPCanonicalLoop : public Stmt {
159 OMPCanonicalLoop() : Stmt(StmtClass::OMPCanonicalLoopClass) {} in OMPCanonicalLoop() function
163 static OMPCanonicalLoop *create(const ASTContext &Ctx, Stmt *LoopStmt, in create()
167 OMPCanonicalLoop *S = new (Ctx) OMPCanonicalLoop(); in create()
176 static OMPCanonicalLoop *createEmpty(const ASTContext &Ctx) { in createEmpty()
177 return new (Ctx) OMPCanonicalLoop(); in createEmpty()
DRecursiveASTVisitor.h2831 DEF_TRAVERSE_STMT(OMPCanonicalLoop, {
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Basic/
DStmtNodes.td220 def OMPCanonicalLoop : StmtNode<Stmt>;
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
DStmtOpenMP.cpp95 if (auto *CanonLoop = dyn_cast<OMPCanonicalLoop>(S)) in tryToFindNextInnerLoop()
151 if (auto *CanonLoop = dyn_cast<OMPCanonicalLoop>(CurStmt)) in doForAllLoops()
187 if (auto *CanonLoop = dyn_cast<OMPCanonicalLoop>(Body)) in doForAllLoopsBodies()
DStmtProfile.cpp894 void StmtProfiler::VisitOMPCanonicalLoop(const OMPCanonicalLoop *L) { in VisitOMPCanonicalLoop()
DStmtPrinter.cpp639 void StmtPrinter::VisitOMPCanonicalLoop(OMPCanonicalLoop *Node) { in VisitOMPCanonicalLoop()
/freebsd-12-stable/contrib/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp2287 void ASTStmtReader::VisitOMPCanonicalLoop(OMPCanonicalLoop *S) { in VisitOMPCanonicalLoop()
3183 S = OMPCanonicalLoop::createEmpty(Context); in ReadStmtFromStream()
DASTWriterStmt.cpp2185 void ASTStmtWriter::VisitOMPCanonicalLoop(OMPCanonicalLoop *S) { in VisitOMPCanonicalLoop()
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
DCGStmt.cpp200 EmitOMPCanonicalLoop(cast<OMPCanonicalLoop>(S)); in EmitStmt()
DCGStmtOpenMP.cpp1834 if (const auto *CanonLoop = dyn_cast<OMPCanonicalLoop>(SimplifiedS)) in emitBody()
1963 void CodeGenFunction::EmitOMPCanonicalLoop(const OMPCanonicalLoop *S) { in EmitOMPCanonicalLoop()
DCodeGenFunction.h3565 void EmitOMPCanonicalLoop(const OMPCanonicalLoop *S);
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp5572 return OMPCanonicalLoop::create(getASTContext(), AStmt, DistanceFunc, in ActOnOpenMPCanonicalLoop()
8566 if (auto *CanonLoop = dyn_cast_or_null<OMPCanonicalLoop>(S)) in checkOpenMPIterationSpace()
DTreeTransform.h8432 TreeTransform<Derived>::TransformOMPCanonicalLoop(OMPCanonicalLoop *L) { in TransformOMPCanonicalLoop()