Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DIVDescriptors.h283 const SCEV *getStep() const { return Step; } in getStep() function
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp706 Builder.CreateAtomicRMW(AtomicRMWInst::Add, Addr, Inc->getStep(), in lowerIncrement()
709 Value *IncStep = Inc->getStep(); in lowerIncrement()
711 auto *Count = Builder.CreateAdd(Load, Inc->getStep()); in lowerIncrement()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DLoopInfo.cpp213 const SCEV *Step = IndDesc.getStep(); in getBounds()
363 return SE.isLoopInvariant(IndDesc.getStep(), this); in isAuxiliaryInductionVariable()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DIntrinsicInst.cpp181 Value *InstrProfIncrementInst::getStep() const { in getStep() function in InstrProfIncrementInst
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp2463 Value *Step = CreateStepValue(ID.getStep()); in widenIntOrFpInduction()
3339 auto Step = ID.getStep(); in emitTransformedIndex()
3517 Type *StepType = II.getStep()->getType(); in createInductionResumeValues()
3755 !II.getStep()->getType()->isIntegerTy() in fixupIVUsers()
3757 II.getStep()->getType()) in fixupIVUsers()
3758 : B.CreateSExtOrTrunc(CountMinusOne, II.getStep()->getType()); in fixupIVUsers()
4828 Builder.CreateSExtOrTrunc(Induction, II.getStep()->getType()); in widenPHIInstruction()
4872 assert(isa<SCEVConstant>(II.getStep()) && in widenPHIInstruction()
4874 Type *PhiType = II.getStep()->getType(); in widenPHIInstruction()
4886 const SCEV *ScalarStep = II.getStep(); in widenPHIInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DInductiveRangeCheckElimination.cpp161 const SCEV *getStep() const { return Step; } in getStep() function in __anon2c2ab2ad0111::InductiveRangeCheck
1622 const SCEVConstant *D = dyn_cast<SCEVConstant>(getStep()); in computeSafeIterationSpace()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DStmtProfile.cpp735 if (C->getStep()) in VisitOMPLinearClause()
736 Profiler->VisitStmt(C->getStep()); in VisitOMPLinearClause()
H A DOpenMPClause.cpp2007 if (Node->getStep() != nullptr) { in VisitOMPLinearClause()
2009 Node->getStep()->printPretty(OS, nullptr, Policy, 0); in VisitOMPLinearClause()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DIntrinsicInst.h1113 Value *getStep() const;
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DOpenMPClause.h3795 Expr *getStep() { return *(getFinals().end()); } in getStep() function
3798 const Expr *getStep() const { return *(getFinals().end()); } in getStep() function
H A DRecursiveASTVisitor.h3329 TRY_TO(TraverseStmt(C->getStep()));
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp6330 Record.AddStmt(C->getStep()); in VisitOMPLinearClause()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndex.cpp2484 Visitor->AddStmt(C->getStep()); in VisitOMPLinearClause()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp17324 Expr *Step = Clause.getStep(); in FinishOpenMPLinearClause()
17411 if (Expr *S = Clause.getStep()) in FinishOpenMPLinearClause()
H A DTreeTransform.h9699 ExprResult Step = getDerived().TransformExpr(C->getStep()); in TransformOMPLinearClause()