Home
last modified time | relevance | path

Searched refs:getStep (Results 1 – 16 of 16) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIVDescriptors.h322 const SCEV *getStep() const { return Step; } in getStep() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp172 const SCEV *getStep() const { return Step; } in getStep() function in __anonfea5f1180111::InductiveRangeCheck
696 const SCEVConstant *D = dyn_cast<SCEVConstant>(getStep()); in computeSafeIterationSpace()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp938 Builder.CreateAtomicRMW(AtomicRMWInst::Add, Addr, Inc->getStep(), in lowerIncrement()
941 Value *IncStep = Inc->getStep(); in lowerIncrement()
943 auto *Count = Builder.CreateAdd(Load, Inc->getStep()); in lowerIncrement()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopInfo.cpp213 const SCEV *Step = IndDesc.getStep(); in getBounds()
364 return SE.isLoopInvariant(IndDesc.getStep(), this); in isAuxiliaryInductionVariable()
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DIntrinsicInst.cpp285 Value *InstrProfIncrementInst::getStep() const { in getStep() function in InstrProfIncrementInst
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp2225 if (Node->getModifierLoc().isValid() || Node->getStep() != nullptr) { in VisitOMPLinearClause()
2231 if (Node->getStep() != nullptr) { in VisitOMPLinearClause()
2236 Node->getStep()->printPretty(OS, nullptr, Policy, 0); in VisitOMPLinearClause()
H A DStmtProfile.cpp780 if (C->getStep()) in VisitOMPLinearClause()
781 Profiler->VisitStmt(C->getStep()); in VisitOMPLinearClause()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanTransforms.cpp55 vputils::getOrCreateVPValueForSCEVExpr(*Plan, II->getStep(), SE); in VPInstructionsToVPRecipes()
H A DLoopVectorize.cpp3127 const SCEV *Step = ID.getStep(); in getExpandedStep()
3314 VPValue *StepVPV = Plan.getSCEVExpansion(II.getStep()); in fixupIVUsers()
8174 assert(SE.isLoopInvariant(IndDesc.getStep(), &OrigLoop) && in createWidenInductionRecipes()
8178 vputils::getOrCreateVPValueForSCEVExpr(Plan, IndDesc.getStep(), SE); in createWidenInductionRecipes()
8197 VPValue *Step = vputils::getOrCreateVPValueForSCEVExpr(Plan, II->getStep(), in tryToOptimizeInductionPHI()
9240 CanonicalIV, IndDesc.getStep()->getType()); in execute()
9269 Type *PhiType = IndDesc.getStep()->getType(); in execute()
H A DVPlanRecipes.cpp1621 O << ", " << *IndDesc.getStep(); in print()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicInst.h1471 Value *getStep() const;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h4158 Expr *getStep() { return *(getFinals().end()); } in getStep() function
4161 const Expr *getStep() const { return *(getFinals().end()); } in getStep() function
H A DRecursiveASTVisitor.h3551 TRY_TO(TraverseStmt(C->getStep()));
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp6856 Record.AddStmt(C->getStep()); in VisitOMPLinearClause()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp20424 Expr *Step = Clause.getStep(); in FinishOpenMPLinearClause()
20510 if (Expr *S = Clause.getStep()) in FinishOpenMPLinearClause()
H A DTreeTransform.h10321 ExprResult Step = getDerived().TransformExpr(C->getStep()); in TransformOMPLinearClause()