Home
last modified time | relevance | path

Searched refs:getInc (Results 1 – 21 of 21) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenPGO.cpp551 if (S->getInc()) { in VisitForStmt()
553 CountMap[S->getInc()] = IncCount; in VisitForStmt()
554 Visit(S->getInc()); in VisitForStmt()
590 CountMap[S->getInc()] = IncCount; in VisitCXXForRangeStmt()
591 Visit(S->getInc()); in VisitCXXForRangeStmt()
H A DCGStmt.cpp989 if (!S.getInc()) in EmitForStmt()
1003 Continue = S.getInc() ? getJumpDestInCurrentScope("for.inc") : CondDest; in EmitForStmt()
1047 if (S.getInc()) { in EmitForStmt()
1049 EmitStmt(S.getInc()); in EmitForStmt()
1135 EmitStmt(S.getInc()); in EmitCXXForRangeStmt()
H A DCGStmtOpenMP.cpp2539 S, LoopScope.requiresCleanups(), S.getCond(), S.getInc(), in emitOMPSimdRegion()
2798 OuterLoopArgs.IncExpr = S.getInc(); in EmitOMPForOuterLoop()
2837 IncExpr = S.getInc(); in EmitOMPDistributeOuterLoop()
3004 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); in EmitOMPDistributeSimdDirective()
3225 StaticChunkedOne ? S.getDistInc() : S.getInc(), in EmitOMPWorksharingLoop()
5270 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); in EmitOMPDistributeDirective()
6103 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); in emitTargetTeamsDistributeRegion()
6149 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); in emitTargetTeamsDistributeSimdRegion()
6194 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); in EmitOMPTeamsDistributeDirective()
6216 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); in EmitOMPTeamsDistributeSimdDirective()
[all …]
H A DCoverageMappingGen.cpp1155 if (S->getInc()) in VisitForStmt()
1170 if (const Stmt *Inc = S->getInc()) { in VisitForStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp385 if (!isIdenticalStmt(Ctx, ForStmt1->getInc(), ForStmt2->getInc(), in isIdenticalStmt()
H A DCheckSecuritySyntaxOnly.cpp273 const Expr *increment = FS->getInc(); in checkLoopConditionForFloat()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmtCXX.h167 Expr *getInc() { return cast_or_null<Expr>(SubExprs[INC]); } in getInc() function
183 const Expr *getInc() const { in getInc() function
H A DStmt.h2538 Expr *getInc() { return reinterpret_cast<Expr*>(SubExprs[INC]); } in getInc() function
2543 const Expr *getInc() const { return reinterpret_cast<Expr*>(SubExprs[INC]); } in getInc() function
H A DStmtOpenMP.h1248 Expr *getInc() const { return cast<Expr>(Data->getChildren()[IncOffset]); } in getInc() function
/netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
H A DTransforms.cpp281 mark(S->getInc()); in VisitForStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1049 if (isContainedByStmt(PM, FR->getInc(), S)) in isInLoopBody()
1058 if (isContainedByStmt(PM, FS->getInc(), S)) in isInLoopBody()
1399 return FS->getInc() == S || FS->getInit() == S; in isIncrementOrInitInForLoop()
1401 return FRS->getInc() == S || FRS->getRangeStmt() == S || in isIncrementOrInitInForLoop()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DReachableCode.cpp638 const Expr *Inc = FS->getInc(); in reportDeadCode()
H A DCFG.cpp3384 if (Stmt *I = F->getInc()) { in VisitForStmt()
4460 Succ = addStmt(S->getInc()); in VisitCXXForRangeStmt()
5261 if (F->getInc()) in VisitForStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtPrinter.cpp326 if (Node->getInc()) { in VisitForStmt()
328 PrintExpr(Node->getInc()); in VisitForStmt()
H A DExprConstant.cpp5075 if (const auto *Inc = FS->getInc()) { in EvaluateStmt()
5282 if (const auto *Inc = FS->getInc()) { in EvaluateStmt()
5367 if (FS->getInc()->isValueDependent()) { in EvaluateStmt()
5368 if (!EvaluateDependentExpr(FS->getInc(), Info)) in EvaluateStmt()
5372 if (!EvaluateIgnoredValue(Info, FS->getInc())) in EvaluateStmt()
H A DASTImporter.cpp6291 auto ToInc = importChecked(Err, S->getInc()); in VisitForStmt()
6401 auto ToInc = importChecked(Err, S->getInc()); in VisitCXXForRangeStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriterStmt.cpp222 Record.AddStmt(S->getInc()); in VisitForStmt()
1545 Record.AddStmt(S->getInc()); in VisitCXXForRangeStmt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h7497 ExprResult Inc = getDerived().TransformExpr(S->getInc()); in TransformForStmt()
7502 if (S->getInc() && !FullInc.get()) in TransformForStmt()
7513 Inc.get() == S->getInc() && in TransformForStmt()
8176 ExprResult Inc = getDerived().TransformExpr(S->getInc()); in TransformCXXForRangeStmt()
8193 Inc.get() != S->getInc() || in TransformCXXForRangeStmt()
H A DSemaOpenMP.cpp5440 Inc = For->getInc(); in ActOnOpenMPCanonicalLoop()
5447 Inc = RangeFor->getInc(); in ActOnOpenMPCanonicalLoop()
8633 HasErrors |= ISC.checkAndSetInc(For ? For->getInc() : CXXFor->getInc()); in checkOpenMPIterationSpace()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2077 const Stmt *const Increment = Node.getInc(); in AST_MATCHER_P()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2735 AddStmt(FS->getInc()); in VisitForStmt()