Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolutionDivision.h39 void visitSignExtendExpr(const SCEVSignExtendExpr *Numerator) {} in visitSignExtendExpr()
H A DScalarEvolutionExpressions.h182 class SCEVSignExtendExpr : public SCEVIntegralCastExpr {
185 SCEVSignExtendExpr(const FoldingSetNodeIDRef ID, const SCEV *op, Type *ty);
621 return ((SC *)this)->visitSignExtendExpr((const SCEVSignExtendExpr *)S); in visit()
794 const SCEV *visitSignExtendExpr(const SCEVSignExtendExpr *Expr) {
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp297 const SCEVSignExtendExpr *SExt = cast<SCEVSignExtendExpr>(this); in print()
549 SCEVSignExtendExpr::SCEVSignExtendExpr(const FoldingSetNodeIDRef ID, in SCEVSignExtendExpr() function in SCEVSignExtendExpr
1161 if (const SCEVSignExtendExpr *SS = dyn_cast<SCEVSignExtendExpr>(Op)) in getTruncateExpr()
1283 struct ExtendOpTraits<SCEVSignExtendExpr> : public ExtendOpTraitsBase {
1296 SCEVSignExtendExpr>::GetExtendExpr = &ScalarEvolution::getSignExtendExpr;
1900 if (!isa<SCEVSignExtendExpr>(S)) in getSignExtendExpr()
1918 if (const SCEVSignExtendExpr *SS = dyn_cast<SCEVSignExtendExpr>(Op)) in getSignExtendExprImpl()
1935 SCEV *S = new (SCEVAllocator) SCEVSignExtendExpr(ID.Intern(SCEVAllocator), in getSignExtendExprImpl()
2003 getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this, Depth + 1); in getSignExtendExprImpl()
2049 Start = getExtendAddRecStart<SCEVSignExtendExpr>(AR, Ty, this, in getSignExtendExprImpl()
[all …]
H A DDelinearization.cpp72 isa<SCEVSignExtendExpr>(S)) { in follow()
H A DDependenceAnalysis.cpp948 (isa<SCEVSignExtendExpr>(Src) && isa<SCEVSignExtendExpr>(Dst))) { in removeMatchingExtensions()
1055 if ((isa<SCEVSignExtendExpr>(X) && in isKnownPredicate()
1056 isa<SCEVSignExtendExpr>(Y)) || in isKnownPredicate()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DScalarEvolutionExpander.h488 Value *visitSignExtendExpr(const SCEVSignExtendExpr *S);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp1123 return isHighCostExpansion(cast<SCEVSignExtendExpr>(S)->getOperand(), in isHighCostExpansion()
3010 return getExprBase(cast<SCEVSignExtendExpr>(S)->getOperand()); in getExprBase()
6487 isa<SCEVPtrToIntExpr>(Cast) || isa<SCEVSignExtendExpr>(Cast)) && in pushSCEV()
6489 Success &= pushCast(Cast, (isa<SCEVSignExtendExpr>(Cast))); in pushSCEV()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DScalarEvolutionExpander.cpp1353 Value *SCEVExpander::visitSignExtendExpr(const SCEVSignExtendExpr *S) { in visitSignExtendExpr()