| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenPGO.cpp | 444 else if (CS == For->getInc()) in TraverseForStmt() 445 CounterMap[For->getInc()] = NextCounter++; in TraverseForStmt() 768 if (S->getInc()) { in VisitForStmt() 770 CountMap[S->getInc()] = IncCount; in VisitForStmt() 771 Visit(S->getInc()); in VisitForStmt() 807 CountMap[S->getInc()] = IncCount; in VisitCXXForRangeStmt() 808 Visit(S->getInc()); in VisitCXXForRangeStmt()
|
| H A D | CGStmt.cpp | 1064 if (S.getInc()) in hasEmptyLoopBody() 1327 if (!S.getInc()) in EmitForStmt() 1341 Continue = S.getInc() ? getJumpDestInCurrentScope("for.inc") : CondDest; in EmitForStmt() 1408 if (S.getInc()) { in EmitForStmt() 1410 EmitStmt(S.getInc()); in EmitForStmt() 1412 incrementProfileCounter(S.getInc()); in EmitForStmt() 1528 EmitStmt(S.getInc()); in EmitCXXForRangeStmt()
|
| H A D | CGStmtOpenMP.cpp | 2734 S, LoopScope.requiresCleanups(), S.getCond(), S.getInc(), in emitOMPSimdRegion() 3203 OuterLoopArgs.IncExpr = S.getInc(); in EmitOMPForOuterLoop() 3247 IncExpr = S.getInc(); in EmitOMPDistributeOuterLoop() 3412 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); in EmitOMPDistributeSimdDirective() 3632 StaticChunkedOne ? S.getDistInc() : S.getInc(), in EmitOMPWorksharingLoop() 6096 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); in emitOMPDistributeDirective() 7093 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); in emitTargetTeamsDistributeRegion() 7139 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); in emitTargetTeamsDistributeSimdRegion() 7184 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); in EmitOMPTeamsDistributeDirective() 7206 CGF.EmitOMPDistributeLoop(S, emitOMPLoopBodyWithStopPoint, S.getInc()); in EmitOMPTeamsDistributeSimdDirective() [all …]
|
| H A D | CoverageMappingGen.cpp | 1727 if (S->getInc()) in VisitForStmt() 1742 if (const Stmt *Inc = S->getInc()) { in VisitForStmt() 1745 IncCount = getRegionCounter(S->getInc()); in VisitForStmt()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenStmt.cpp | 617 if (s.getInc()) in emitCXXForRangeStmt() 618 if (emitStmt(s.getInc(), /*useCurrentScope=*/true).failed()) in emitCXXForRangeStmt() 693 if (s.getInc()) in emitForStmt() 694 if (emitStmt(s.getInc(), /*useCurrentScope=*/true).failed()) in emitForStmt()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | StmtCXX.h | 168 Expr *getInc() { return cast_or_null<Expr>(SubExprs[INC]); } in getInc() function 184 const Expr *getInc() const { in getInc() function
|
| H A D | Stmt.h | 2934 Expr *getInc() { return reinterpret_cast<Expr*>(SubExprs[INC]); } 2939 const Expr *getInc() const { return reinterpret_cast<Expr*>(SubExprs[INC]); }
|
| H A D | StmtOpenMP.h | 1333 Expr *getInc() const { return cast<Expr>(Data->getChildren()[IncOffset]); } in getInc() function
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | ReachableCode.cpp | 691 const Expr *Inc = FS->getInc(); in reportDeadCode()
|
| H A D | CFG.cpp | 3664 if (Stmt *I = F->getInc()) { in VisitForStmt() 4856 Succ = addStmt(S->getInc()); in VisitCXXForRangeStmt() 5665 if (F->getInc()) in VisitForStmt()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | BugReporter.cpp | 1079 if (isContainedByStmt(PM, FR->getInc(), S)) in isInLoopBody() 1088 if (isContainedByStmt(PM, FS->getInc(), S)) in isInLoopBody() 1437 return FS->getInc() == S || FS->getInit() == S; in isIncrementOrInitInForLoop() 1439 return FRS->getInc() == S || FRS->getRangeStmt() == S || in isIncrementOrInitInForLoop()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | StmtPrinter.cpp | 417 if (Node->getInc()) { in VisitForStmt() 419 PrintExpr(Node->getInc()); in VisitForStmt()
|
| H A D | ExprConstant.cpp | 5535 if (const auto *Inc = FS->getInc()) { in EvaluateStmt() 5759 if (const auto *Inc = FS->getInc()) { in EvaluateStmt() 5849 if (FS->getInc()->isValueDependent()) { in EvaluateStmt() 5850 if (!EvaluateDependentExpr(FS->getInc(), Info)) in EvaluateStmt() 5854 if (!EvaluateIgnoredValue(Info, FS->getInc())) in EvaluateStmt()
|
| H A D | ASTImporter.cpp | 7365 auto ToInc = importChecked(Err, S->getInc()); in VisitForStmt() 7475 auto ToInc = importChecked(Err, S->getInc()); in VisitCXXForRangeStmt()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterStmt.cpp | 289 Record.AddStmt(S->getInc()); in VisitForStmt() 1686 Record.AddStmt(S->getInc()); in VisitCXXForRangeStmt()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| H A D | SelectionDAGNodes.h | 3106 const SDValue &getInc() const { return getOperand(1); }
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | TreeTransform.h | 8484 ExprResult Inc = getDerived().TransformExpr(S->getInc()); in TransformForStmt() 8489 if (S->getInc() && !FullInc.get()) in TransformForStmt() 8497 Cond.get().second, S->getInc(), Inc.get()); in TransformForStmt() 8509 Inc.get() == S->getInc() && in TransformForStmt() 9238 ExprResult Inc = getDerived().TransformExpr(S->getInc()); in TransformCXXForRangeStmt() 9255 Inc.get() != S->getInc() || in TransformCXXForRangeStmt()
|
| H A D | SemaOpenMP.cpp | 5636 Inc = For->getInc(); in ActOnOpenMPCanonicalLoop() 5643 Inc = RangeFor->getInc(); in ActOnOpenMPCanonicalLoop() 9288 HasErrors |= ISC.checkAndSetInc(For ? For->getInc() : CXXFor->getInc()); in checkOpenMPIterationSpace()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/ |
| H A D | Compiler.cpp | 5534 const Expr *Inc = S->getInc(); in visitForStmt() 5587 const Expr *Inc = S->getInc(); in visitCXXForRangeStmt()
|
| /freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/ |
| H A D | ASTMatchers.h | 2215 const Stmt *const Increment = Node.getInc(); in AST_MATCHER_P()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeVectorTypes.cpp | 4581 SDValue Inc = HG->getInc(); in SplitVecOp_VECTOR_HISTOGRAM()
|
| H A D | SelectionDAG.cpp | 10392 assert(N->getInc().getValueType().isInteger() && "Non integer update value"); in getMaskedHistogram()
|
| H A D | DAGCombiner.cpp | 12810 SDValue Inc = HG->getInc(); in visitMHISTOGRAM()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.cpp | 24335 SDValue Ops[] = {Chain, HG->getInc(), Mask, BasePtr, in performMaskedGatherScatterCombine() 29663 SDValue Inc = HG->getInc(); in LowerVECTOR_HISTOGRAM()
|