Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIVDescriptors.h322 const SCEV *getStep() const { return Step; } in getStep() function
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOCtxProfLowering.cpp306 AsStep->getStep()), in lowerFunction()
H A DInstrProfiling.cpp1238 Builder.CreateAtomicRMW(AtomicRMWInst::Add, Addr, Inc->getStep(), in lowerIncrement()
1241 Value *IncStep = Inc->getStep(); in lowerIncrement()
1243 auto *Count = Builder.CreateAdd(Load, Inc->getStep()); in lowerIncrement()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopInfo.cpp214 const SCEV *Step = IndDesc.getStep(); in getBounds()
365 return SE.isLoopInvariant(IndDesc.getStep(), this); in isAuxiliaryInductionVariable()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanTransforms.cpp60 vputils::getOrCreateVPValueForSCEVExpr(*Plan, II->getStep(), SE); in VPInstructionsToVPRecipes()
592 Plan.getOrAddLiveIn(ConstantInt::get(ID.getStep()->getType(), 0)); in legalizeAndOptimizeInductions()
H A DLoopVectorize.cpp2667 const SCEV *Step = ID.getStep(); in getExpandedStep()
2810 VPValue *StepVPV = Plan.getSCEVExpansion(II.getStep()); in fixupIVUsers()
7930 assert(SE.isLoopInvariant(IndDesc.getStep(), &OrigLoop) && in createWidenInductionRecipes()
7934 vputils::getOrCreateVPValueForSCEVExpr(Plan, IndDesc.getStep(), SE); in createWidenInductionRecipes()
7953 VPValue *Step = vputils::getOrCreateVPValueForSCEVExpr(Plan, II->getStep(), in tryToOptimizeInductionPHI()
9064 Type *PhiType = IndDesc.getStep()->getType(); in execute()
H A DVPlanRecipes.cpp2459 O << ", " << *IndDesc.getStep(); in print()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DIntrinsicInst.cpp288 Value *InstrProfIncrementInst::getStep() const { in getStep() function in InstrProfIncrementInst
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp172 const SCEV *getStep() const { return Step; }
668 // getBegin() and "D" is getStep()). We rewrite the value being range
696 const SCEVConstant *D = dyn_cast<SCEVConstant>(getStep());
175 const SCEV *getStep() const { return Step; } getStep() function in __anona4c10e620111::InductiveRangeCheck
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp2227 if (Node->getModifierLoc().isValid() || Node->getStep() != nullptr) { in VisitOMPLinearClause()
2233 if (Node->getStep() != nullptr) { in VisitOMPLinearClause()
2238 Node->getStep()->printPretty(OS, nullptr, Policy, 0); in VisitOMPLinearClause()
H A DStmtProfile.cpp782 if (C->getStep()) in VisitOMPLinearClause()
783 Profiler->VisitStmt(C->getStep()); in VisitOMPLinearClause()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicInst.h1543 Value *getStep() const;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h4198 Expr *getStep() { return *(getFinals().end()); } in getStep() function
4201 const Expr *getStep() const { return *(getFinals().end()); } in getStep() function
H A DRecursiveASTVisitor.h3626 TRY_TO(TraverseStmt(C->getStep()));
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp7437 Record.AddStmt(C->getStep()); in VisitOMPLinearClause()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp19231 Expr *Step = Clause.getStep(); in FinishOpenMPLinearClause()
19317 if (Expr *S = Clause.getStep()) in FinishOpenMPLinearClause()
H A DTreeTransform.h10657 ExprResult Step = getDerived().TransformExpr(C->getStep()); in TransformOMPLinearClause()