Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenPGO.cpp444 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 DCGStmt.cpp1064 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 DCGStmtOpenMP.cpp2734 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 DCoverageMappingGen.cpp1727 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 DCIRGenStmt.cpp617 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 DStmtCXX.h168 Expr *getInc() { return cast_or_null<Expr>(SubExprs[INC]); } in getInc() function
184 const Expr *getInc() const { in getInc() function
H A DStmt.h2934 Expr *getInc() { return reinterpret_cast<Expr*>(SubExprs[INC]); }
2939 const Expr *getInc() const { return reinterpret_cast<Expr*>(SubExprs[INC]); }
H A DStmtOpenMP.h1333 Expr *getInc() const { return cast<Expr>(Data->getChildren()[IncOffset]); } in getInc() function
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DReachableCode.cpp691 const Expr *Inc = FS->getInc(); in reportDeadCode()
H A DCFG.cpp3664 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 DBugReporter.cpp1079 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 DStmtPrinter.cpp417 if (Node->getInc()) { in VisitForStmt()
419 PrintExpr(Node->getInc()); in VisitForStmt()
H A DExprConstant.cpp5535 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 DASTImporter.cpp7365 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 DASTWriterStmt.cpp289 Record.AddStmt(S->getInc()); in VisitForStmt()
1686 Record.AddStmt(S->getInc()); in VisitCXXForRangeStmt()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h3106 const SDValue &getInc() const { return getOperand(1); }
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h8484 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 DSemaOpenMP.cpp5636 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 DCompiler.cpp5534 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 DASTMatchers.h2215 const Stmt *const Increment = Node.getInc(); in AST_MATCHER_P()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorTypes.cpp4581 SDValue Inc = HG->getInc(); in SplitVecOp_VECTOR_HISTOGRAM()
H A DSelectionDAG.cpp10392 assert(N->getInc().getValueType().isInteger() && "Non integer update value"); in getMaskedHistogram()
H A DDAGCombiner.cpp12810 SDValue Inc = HG->getInc(); in visitMHISTOGRAM()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp24335 SDValue Ops[] = {Chain, HG->getInc(), Mask, BasePtr, in performMaskedGatherScatterCombine()
29663 SDValue Inc = HG->getInc(); in LowerVECTOR_HISTOGRAM()