Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DVPlanTransforms.cpp55 vputils::getOrCreateVPValueForSCEVExpr(*Plan, II->getStep(), SE); in VPInstructionsToVPRecipes()
444 vputils::getOrCreateVPValueForSCEVExpr(Plan, ID.getStep(), SE); in optimizeInductions()
H A DVPlanRecipes.cpp714 auto *StepC = dyn_cast<SCEVConstant>(getInductionDescriptor().getStep()); in isCanonical()
730 if (IndDesc.getStep()->getType() != ResultTy) in print()
1084 O << ", " << *IndDesc.getStep(); in print()
H A DLoopVectorize.cpp3158 CreateStepValue(II.getStep(), *PSE.getSE(), &*B.GetInsertPoint()); in createInductionResumeValue()
3167 CreateStepValue(II.getStep(), *PSE.getSE(), &*B.GetInsertPoint()); in createInductionResumeValue()
3358 Value *Step = CreateStepValue(II.getStep(), *PSE.getSE(), in fixupIVUsers()
8215 assert(SE.isLoopInvariant(IndDesc.getStep(), &OrigLoop) && in createWidenInductionRecipes()
8219 vputils::getOrCreateVPValueForSCEVExpr(Plan, IndDesc.getStep(), SE); in createWidenInductionRecipes()
8240 VPValue *Step = vputils::getOrCreateVPValueForSCEVExpr(Plan, II->getStep(), in tryToOptimizeInductionPHI()
8242 assert(isa<SCEVConstant>(II->getStep())); in tryToOptimizeInductionPHI()
9465 CanonicalIV, IndDesc.getStep()->getType()); in execute()
9493 assert(isa<SCEVConstant>(IndDesc.getStep()) && in execute()
9495 Type *PhiType = IndDesc.getStep()->getType(); in execute()
/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DIVDescriptors.h322 const SCEV *getStep() const { return Step; } in getStep() function
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp719 Builder.CreateAtomicRMW(AtomicRMWInst::Add, Addr, Inc->getStep(), in lowerIncrement()
722 Value *IncStep = Inc->getStep(); in lowerIncrement()
724 auto *Count = Builder.CreateAdd(Load, Inc->getStep()); in lowerIncrement()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DLoopInfo.cpp213 const SCEV *Step = IndDesc.getStep(); in getBounds()
364 return SE.isLoopInvariant(IndDesc.getStep(), this); in isAuxiliaryInductionVariable()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DIntrinsicInst.cpp280 Value *InstrProfIncrementInst::getStep() const { in getStep() function in InstrProfIncrementInst
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp158 const SCEV *getStep() const { return Step; } in getStep() function in __anon1c7c69790111::InductiveRangeCheck
1627 const SCEVConstant *D = dyn_cast<SCEVConstant>(getStep()); in computeSafeIterationSpace()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DStmtProfile.cpp762 if (C->getStep()) in VisitOMPLinearClause()
763 Profiler->VisitStmt(C->getStep()); in VisitOMPLinearClause()
H A DOpenMPClause.cpp2170 if (Node->getStep() != nullptr) { in VisitOMPLinearClause()
2172 Node->getStep()->printPretty(OS, nullptr, Policy, 0); in VisitOMPLinearClause()
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DIntrinsicInst.h1364 Value *getStep() const;
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DOpenMPClause.h4062 Expr *getStep() { return *(getFinals().end()); } in getStep() function
4065 const Expr *getStep() const { return *(getFinals().end()); } in getStep() function
H A DRecursiveASTVisitor.h3535 TRY_TO(TraverseStmt(C->getStep()));
/openbsd-src/gnu/llvm/clang/lib/Serialization/
H A DASTWriter.cpp6711 Record.AddStmt(C->getStep()); in VisitOMPLinearClause()
/openbsd-src/gnu/llvm/clang/tools/libclang/
H A DCIndex.cpp2615 Visitor->AddStmt(C->getStep()); in VisitOMPLinearClause()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaOpenMP.cpp20059 Expr *Step = Clause.getStep(); in FinishOpenMPLinearClause()
20145 if (Expr *S = Clause.getStep()) in FinishOpenMPLinearClause()
H A DTreeTransform.h10145 ExprResult Step = getDerived().TransformExpr(C->getStep()); in TransformOMPLinearClause()