Lines Matching defs:TruncTy
3408 Type *TruncTy =
3410 return getZeroExtendExpr(getTruncateExpr(LHS, TruncTy), FullTy);
5519 Type *TruncTy = nullptr;
5522 if ((TruncTy =
5597 getAddRecExpr(getTruncateExpr(StartVal, TruncTy),
5598 getTruncateExpr(Accum, TruncTy), L, SCEV::FlagAnyWrap);
5626 const SCEV *TruncatedExpr = getTruncateExpr(Expr, TruncTy);
7943 Type *TruncTy = IntegerType::get(getContext(), BitWidth - AShrAmt);
7962 // since we truncate to TruncTy, the AddConstant should be of the
7963 // same type, so create a new Constant with type same as TruncTy.
7970 AddTruncateExpr = getTruncateExpr(ShlOp0SCEV, TruncTy);
7980 AddTruncateExpr = getTruncateExpr(ShlOp0SCEV, TruncTy);
7993 // the multiplier, 1 << (ShlAmt - AShrAmt), fits into TruncTy as