Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DIVDescriptors.h284 const SCEV *getStep() const { return Step; } in getStep() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp720 Builder.CreateAtomicRMW(AtomicRMWInst::Add, Addr, Inc->getStep(), in lowerIncrement()
723 Value *IncStep = Inc->getStep(); in lowerIncrement()
725 auto *Count = Builder.CreateAdd(Load, Inc->getStep()); in lowerIncrement()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DLoopInfo.cpp213 const SCEV *Step = IndDesc.getStep(); in getBounds()
363 return SE.isLoopInvariant(IndDesc.getStep(), this); in isAuxiliaryInductionVariable()
/freebsd-13.1/contrib/llvm-project/llvm/lib/IR/
H A DIntrinsicInst.cpp181 Value *InstrProfIncrementInst::getStep() const { in getStep() function in InstrProfIncrementInst
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp161 const SCEV *getStep() const { return Step; } in getStep() function in __anon7f8b68160111::InductiveRangeCheck
1622 const SCEVConstant *D = dyn_cast<SCEVConstant>(getStep()); in computeSafeIterationSpace()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2482 Value *Step = CreateStepValue(ID.getStep()); in widenIntOrFpInduction()
3368 auto Step = ID.getStep(); in emitTransformedIndex()
3559 Type *StepType = II.getStep()->getType(); in createInductionResumeValues()
3801 !II.getStep()->getType()->isIntegerTy() in fixupIVUsers()
3803 II.getStep()->getType()) in fixupIVUsers()
3804 : B.CreateSExtOrTrunc(CountMinusOne, II.getStep()->getType()); in fixupIVUsers()
4750 Builder.CreateSExtOrTrunc(Induction, II.getStep()->getType()); in widenPHIInstruction()
4794 assert(isa<SCEVConstant>(II.getStep()) && in widenPHIInstruction()
4796 Type *PhiType = II.getStep()->getType(); in widenPHIInstruction()
4808 const SCEV *ScalarStep = II.getStep(); in widenPHIInstruction()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DStmtProfile.cpp742 if (C->getStep()) in VisitOMPLinearClause()
743 Profiler->VisitStmt(C->getStep()); in VisitOMPLinearClause()
H A DOpenMPClause.cpp2049 if (Node->getStep() != nullptr) { in VisitOMPLinearClause()
2051 Node->getStep()->printPretty(OS, nullptr, Policy, 0); in VisitOMPLinearClause()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicInst.h1132 Value *getStep() const;
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h3903 Expr *getStep() { return *(getFinals().end()); } in getStep() function
3906 const Expr *getStep() const { return *(getFinals().end()); } in getStep() function
H A DRecursiveASTVisitor.h3369 TRY_TO(TraverseStmt(C->getStep()));
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp6337 Record.AddStmt(C->getStep()); in VisitOMPLinearClause()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp17707 Expr *Step = Clause.getStep(); in FinishOpenMPLinearClause()
17794 if (Expr *S = Clause.getStep()) in FinishOpenMPLinearClause()
H A DTreeTransform.h9755 ExprResult Step = getDerived().TransformExpr(C->getStep()); in TransformOMPLinearClause()