Lines Matching refs:expandCodeFor

443                     expandCodeFor(SE.getAddExpr(ScaledOps), Ty);  in expandAddToGEP()
498 Value *Idx = expandCodeFor(SE.getAddExpr(Ops), Ty); in expandAddToGEP()
718 Value *W = expandCodeFor(SE.getNegativeSCEV(Op), Ty); in visitAddExpr()
724 Value *W = expandCodeFor(Op, Ty); in visitAddExpr()
763 Value *W = expandCodeFor(Op, Ty); in visitMulExpr()
785 Value *LHS = expandCodeFor(S->getLHS(), Ty); in visitUDivExpr()
793 Value *RHS = expandCodeFor(S->getRHS(), Ty); in visitUDivExpr()
1188 expandCodeFor(Normalized->getStart(), ExpandTy, &L->getHeader()->front()); in getAddRecExprPHILiterally()
1205 Value *StepV = expandCodeFor(Step, IntTy, &L->getHeader()->front()); in getAddRecExprPHILiterally()
1347 StepV = expandCodeFor(Step, IntTy, &L->getHeader()->front()); in expandAddRecExprLiterally()
1367 Result = Builder.CreateSub(expandCodeFor(Normalized->getStart(), TruncTy), in expandAddRecExprLiterally()
1378 expandCodeFor(PostLoopScale, IntTy)); in expandAddRecExprLiterally()
1390 expandCodeFor(PostLoopOffset, IntTy)); in expandAddRecExprLiterally()
1422 V = expandCodeFor(SE.getTruncateExpr(SE.getUnknown(V), Ty), nullptr, in visitAddRecExpr()
1538 Value *V = expandCodeFor(S->getOperand(), in visitTruncateExpr()
1547 Value *V = expandCodeFor(S->getOperand(), in visitZeroExtendExpr()
1556 Value *V = expandCodeFor(S->getOperand(), in visitSignExtendExpr()
1573 Value *RHS = expandCodeFor(S->getOperand(i), Ty); in visitSMaxExpr()
1597 Value *RHS = expandCodeFor(S->getOperand(i), Ty); in visitUMaxExpr()
1611 Value *SCEVExpander::expandCodeFor(const SCEV *SH, Type *Ty, in expandCodeFor() function in SCEVExpander
1615 return expandCodeFor(SH, Ty); in expandCodeFor()
1618 Value *SCEVExpander::expandCodeFor(const SCEV *SH, Type *Ty) { in expandCodeFor() function in SCEVExpander
1741 cast<PHINode>(expandCodeFor(H, nullptr, &L->getHeader()->front())); in getOrInsertCanonicalInductionVariable()
2024 Value *Expr0 = expandCodeFor(Pred->getLHS(), Pred->getLHS()->getType(), IP); in expandEqualPredicate()
2025 Value *Expr1 = expandCodeFor(Pred->getRHS(), Pred->getRHS()->getType(), IP); in expandEqualPredicate()
2056 Value *TripCountVal = expandCodeFor(ExitCount, CountTy, Loc); in generateOverflowCheck()
2061 Value *StepValue = expandCodeFor(Step, Ty, Loc); in generateOverflowCheck()
2062 Value *NegStepValue = expandCodeFor(SE.getNegativeSCEV(Step), Ty, Loc); in generateOverflowCheck()
2063 Value *StartValue = expandCodeFor(Start, Ty, Loc); in generateOverflowCheck()