Home
last modified time | relevance | path

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

/freebsd-14.2/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()
119 CurStmt = OrigStmt; in tryToFindNextInnerLoop()
122 return CurStmt; in tryToFindNextInnerLoop()
130 CurStmt = CurStmt->IgnoreContainers(); in doForAllLoops()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h898 static Stmt *tryToFindNextInnerLoop(Stmt *CurStmt,
900 static const Stmt *tryToFindNextInnerLoop(const Stmt *CurStmt, in tryToFindNextInnerLoop() argument
902 return tryToFindNextInnerLoop(const_cast<Stmt *>(CurStmt), in tryToFindNextInnerLoop()
909 doForAllLoops(Stmt *CurStmt, bool TryImperfectlyNestedLoops,
915 doForAllLoops(const Stmt *CurStmt, bool TryImperfectlyNestedLoops, in doForAllLoops() argument
920 auto &&NewCallback = [Callback](unsigned Cnt, Stmt *CurStmt) { in doForAllLoops()
921 return Callback(Cnt, CurStmt); in doForAllLoops()
934 doForAllLoops(Stmt *CurStmt, bool TryImperfectlyNestedLoops, in doForAllLoops() argument
942 doForAllLoops(const Stmt *CurStmt, bool TryImperfectlyNestedLoops, in doForAllLoops() argument
946 return Callback(Cnt, CurStmt); in doForAllLoops()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp507 for (auto *CurStmt : S.body()) { in EmitCompoundStmtWithoutScope() local
508 if (GetLast && ExprResult == CurStmt) { in EmitCompoundStmtWithoutScope()
542 EmitStmt(CurStmt); in EmitCompoundStmtWithoutScope()
H A DCGStmtOpenMP.cpp172 [&CGF](unsigned Cnt, const Stmt *CurStmt) { in emitPreInitStmt() argument
173 if (const auto *CXXFor = dyn_cast<CXXForRangeStmt>(CurStmt)) { in emitPreInitStmt()
1853 for (const Stmt *CurStmt : CS->body()) in emitBody() local
1854 emitBody(CGF, CurStmt, NextLoop, MaxLevel, Level); in emitBody()
/freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp1949 const Stmt *CurStmt = SP->getStmt(); in VisitNode() local
1950 if (!CurStmt->getBeginLoc().isMacroID()) in VisitNode()
1954 CurTerminatorStmt = Map->getBlock(CurStmt)->getTerminatorStmt(); in VisitNode()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp9793 &IterSpaces, &Captures](unsigned Cnt, Stmt *CurStmt) { in checkOpenMPLoop() argument
9795 DKind, CurStmt, SemaRef, DSA, Cnt, NestedLoopCount, in checkOpenMPLoop()
14928 Stmt *CurStmt) { in checkTransformableLoopNest() argument
14931 checkOpenMPLoop(Kind, nullptr, nullptr, CurStmt, *this, *DSAStack, in checkTransformableLoopNest()
14936 if (auto *For = dyn_cast<ForStmt>(CurStmt)) { in checkTransformableLoopNest()
14940 assert(isa<CXXForRangeStmt>(CurStmt) && in checkTransformableLoopNest()
14942 auto *CXXFor = cast<CXXForRangeStmt>(CurStmt); in checkTransformableLoopNest()