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

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp45 Stmt *OMPLoopDirective::tryToFindNextInnerLoop(Stmt *CurStmt, argument
47 Stmt *OrigStmt = CurStmt;
48 CurStmt = CurStmt->IgnoreContainers();
51 if (auto *CS = dyn_cast<CompoundStmt>(CurStmt)) {
52 CurStmt = nullptr;
64 if (CurStmt) {
65 CurStmt = OrigStmt;
68 CurStmt = S;
77 if (CurStmt)
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp409 for (auto *CurStmt : S.body()) {
410 if (GetLast && ExprResult == CurStmt) {
444 EmitStmt(CurStmt);
H A DCGStmtOpenMP.cpp1456 for (const Stmt *CurStmt : CS->body())
1457 emitBody(CGF, CurStmt, NextLoop, MaxLevel, Level);
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp1665 const Stmt *CurStmt = SP->getStmt(); local
1666 if (!CurStmt->getBeginLoc().isMacroID())
1670 CurTerminatorStmt = Map->getBlock(CurStmt)->getTerminatorStmt();
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp7315 Stmt *CurStmt = AStmt->IgnoreContainers(/* IgnoreCaptured */ true);
7318 DKind, CurStmt, SemaRef, DSA, Cnt, NestedLoopCount,
7327 if (auto *For = dyn_cast<ForStmt>(CurStmt)) {
7328 CurStmt = For->getBody();
7330 assert(isa<CXXForRangeStmt>(CurStmt) &&
7332 CurStmt = cast<CXXForRangeStmt>(CurStmt)->getBody();
7334 CurStmt = OMPLoopDirective::tryToFindNextInnerLoop(
7335 CurStmt, SemaRef.LangOpts.OpenMP >= 50);
7339 DKind, CurStmt, SemaRe
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h1089 /// CurStmt.
1092 static Stmt *tryToFindNextInnerLoop(Stmt *CurStmt,
1094 static const Stmt *tryToFindNextInnerLoop(const Stmt *CurStmt, argument
1096 return tryToFindNextInnerLoop(const_cast<Stmt *>(CurStmt),

Completed in 263 milliseconds