Home
last modified time | relevance | path

Searched refs:CurStmt (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp80 Stmt *OrigStmt = CurStmt; in tryToFindNextInnerLoop()
81 CurStmt = CurStmt->IgnoreContainers(); in tryToFindNextInnerLoop()
85 CurStmt = nullptr; in tryToFindNextInnerLoop()
100 if (CurStmt) { in tryToFindNextInnerLoop()
104 CurStmt = S; in tryToFindNextInnerLoop()
113 if (CurStmt) in tryToFindNextInnerLoop()
118 if (!CurStmt) in tryToFindNextInnerLoop()
122 return CurStmt; in tryToFindNextInnerLoop()
130 CurStmt = CurStmt->IgnoreContainers(); in doForAllLoops()
144 if (!CurStmt) { in doForAllLoops()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h882 static Stmt *tryToFindNextInnerLoop(Stmt *CurStmt,
884 static const Stmt *tryToFindNextInnerLoop(const Stmt *CurStmt, in tryToFindNextInnerLoop() argument
886 return tryToFindNextInnerLoop(const_cast<Stmt *>(CurStmt), in tryToFindNextInnerLoop()
898 doForAllLoops(const Stmt *CurStmt, bool TryImperfectlyNestedLoops, in doForAllLoops() argument
903 auto &&NewCallback = [Callback](unsigned Cnt, Stmt *CurStmt) { in doForAllLoops()
904 return Callback(Cnt, CurStmt); in doForAllLoops()
917 doForAllLoops(Stmt *CurStmt, bool TryImperfectlyNestedLoops, in doForAllLoops() argument
925 doForAllLoops(const Stmt *CurStmt, bool TryImperfectlyNestedLoops, in doForAllLoops() argument
928 auto &&NewCallback = [Callback](unsigned Cnt, const Stmt *CurStmt) { in doForAllLoops()
929 return Callback(Cnt, CurStmt); in doForAllLoops()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp461 for (auto *CurStmt : S.body()) { in EmitCompoundStmtWithoutScope() local
462 if (GetLast && ExprResult == CurStmt) { in EmitCompoundStmtWithoutScope()
496 EmitStmt(CurStmt); in EmitCompoundStmtWithoutScope()
H A DCGStmtOpenMP.cpp167 [&CGF](unsigned Cnt, const Stmt *CurStmt) { in emitPreInitStmt() argument
168 if (const auto *CXXFor = dyn_cast<CXXForRangeStmt>(CurStmt)) { in emitPreInitStmt()
1825 for (const Stmt *CurStmt : CS->body()) in emitBody() local
1826 emitBody(CGF, CurStmt, NextLoop, MaxLevel, Level); in emitBody()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp1712 const Stmt *CurStmt = SP->getStmt(); in VisitNode() local
1713 if (!CurStmt->getBeginLoc().isMacroID()) in VisitNode()
1717 CurTerminatorStmt = Map->getBlock(CurStmt)->getTerminatorStmt(); in VisitNode()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp8958 &IterSpaces, &Captures](unsigned Cnt, Stmt *CurStmt) { in checkOpenMPLoop() argument
8960 DKind, CurStmt, SemaRef, DSA, Cnt, NestedLoopCount, in checkOpenMPLoop()
12577 Stmt *CurStmt) { in checkTransformableLoopNest() argument
12580 checkOpenMPLoop(Kind, nullptr, nullptr, CurStmt, *this, *DSAStack, in checkTransformableLoopNest()
12585 if (auto *For = dyn_cast<ForStmt>(CurStmt)) { in checkTransformableLoopNest()
12589 assert(isa<CXXForRangeStmt>(CurStmt) && in checkTransformableLoopNest()
12591 auto *CXXFor = cast<CXXForRangeStmt>(CurStmt); in checkTransformableLoopNest()