Lines Matching defs:VTSize
234 unsigned VTSize = VT.getSizeInBits() / 8;
235 while (VTSize > Size) {
272 VTSize = Size;
275 VTSize = NewVTSize;
283 Size -= VTSize;
10649 unsigned VTSize = VT.getScalarSizeInBits();
10663 APInt MinVal = APInt::getSignedMinValue(VTSize);
10664 APInt MaxVal = APInt::getSignedMaxValue(VTSize);
10679 APInt MaxVal = APInt::getMaxValue(VTSize);
10685 assert(((Signed && Scale < VTSize) || (!Signed && Scale <= VTSize)) &&
10695 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VTSize * 2);
10712 DAG.getShiftAmountConstant(VTSize, WideVT, dl));
10720 if (Scale == VTSize)
10735 // Unsigned overflow happened if the upper (VTSize - Scale) bits (of the
10740 APInt MaxVal = APInt::getMaxValue(VTSize);
10741 SDValue LowMask = DAG.getConstant(APInt::getLowBitsSet(VTSize, Scale),
10750 // Signed overflow happened if the upper (VTSize - Scale + 1) bits (of the
10753 SDValue SatMin = DAG.getConstant(APInt::getSignedMinValue(VTSize), dl, VT);
10754 SDValue SatMax = DAG.getConstant(APInt::getSignedMaxValue(VTSize), dl, VT);
10758 DAG.getShiftAmountConstant(VTSize - 1, VT, dl));
10773 SDValue LowMask = DAG.getConstant(APInt::getLowBitsSet(VTSize, Scale - 1),
10779 DAG.getConstant(APInt::getHighBitsSet(VTSize, VTSize - Scale + 1),