Home
last modified time | relevance | path

Searched refs:SCEVVScale (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolutionDivision.h51 void visitVScale(const SCEVVScale *Numerator);
H A DScalarEvolutionPatternMatch.h67 inline class_match<const SCEVVScale> m_SCEVVScale() { in m_SCEVVScale()
68 return class_match<const SCEVVScale>(); in m_SCEVVScale()
H A DScalarEvolutionExpressions.h81 class SCEVVScale : public SCEV {
84 SCEVVScale(const FoldingSetNodeIDRef ID, Type *ty) in SCEVVScale() function
617 return ((SC *)this)->visitVScale((const SCEVVScale *)S); in visit()
775 const SCEV *visitVScale(const SCEVVScale *VScale) { return VScale; } in visitVScale()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolutionDivision.cpp129 void SCEVDivision::visitVScale(const SCEVVScale *Numerator) { in visitVScale()
H A DScalarEvolution.cpp389 return cast<SCEVVScale>(this)->getType(); in getType()
499 SCEV *S = new (SCEVAllocator) SCEVVScale(ID.Intern(SCEVAllocator), Ty); in getVScale()
698 const auto *LTy = cast<IntegerType>(cast<SCEVVScale>(LHS)->getType()); in CompareSCEVComplexity()
699 const auto *RTy = cast<IntegerType>(cast<SCEVVScale>(RHS)->getType()); in CompareSCEVComplexity()
4021 RetVal visitVScale(const SCEVVScale *VScale) { return VScale; } in visitVScale()
10962 return isa<SCEVVScale>(S) && F.hasFnAttribute(Attribute::VScaleRange); in isKnownToBeAPowerOfTwo()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DEVLIndVarSimplify.cpp70 Const && isa<SCEVVScale>(RHS)) { in getVFFromIndVar()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DScalarEvolutionExpander.h495 Value *visitVScale(const SCEVVScale *S);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp1432 Value *SCEVExpander::visitVScale(const SCEVVScale *S) { in visitVScale()