Lines Matching defs:TruncTy
3386 Type *TruncTy =
3388 return getZeroExtendExpr(getTruncateExpr(LHS, TruncTy), FullTy);
5497 Type *TruncTy = nullptr;
5500 if ((TruncTy =
5575 getAddRecExpr(getTruncateExpr(StartVal, TruncTy),
5576 getTruncateExpr(Accum, TruncTy), L, SCEV::FlagAnyWrap);
5604 const SCEV *TruncatedExpr = getTruncateExpr(Expr, TruncTy);
7980 Type *TruncTy = IntegerType::get(getContext(), BitWidth - AShrAmt);
7999 // since we truncate to TruncTy, the AddConstant should be of the
8000 // same type, so create a new Constant with type same as TruncTy.
8007 AddTruncateExpr = getTruncateExpr(ShlOp0SCEV, TruncTy);
8017 AddTruncateExpr = getTruncateExpr(ShlOp0SCEV, TruncTy);
8030 // the multiplier, 1 << (ShlAmt - AShrAmt), fits into TruncTy as