Lines Matching defs:VTSize
235 unsigned VTSize = VT.getSizeInBits() / 8;
236 while (VTSize > Size) {
273 VTSize = Size;
276 VTSize = NewVTSize;
284 Size -= VTSize;
11001 unsigned VTSize = VT.getScalarSizeInBits();
11015 APInt MinVal = APInt::getSignedMinValue(VTSize);
11016 APInt MaxVal = APInt::getSignedMaxValue(VTSize);
11031 APInt MaxVal = APInt::getMaxValue(VTSize);
11037 assert(((Signed && Scale < VTSize) || (!Signed && Scale <= VTSize)) &&
11047 EVT WideVT = EVT::getIntegerVT(*DAG.getContext(), VTSize * 2);
11067 DAG.getShiftAmountConstant(VTSize, WideVT, dl));
11075 if (Scale == VTSize)
11090 // Unsigned overflow happened if the upper (VTSize - Scale) bits (of the
11095 APInt MaxVal = APInt::getMaxValue(VTSize);
11096 SDValue LowMask = DAG.getConstant(APInt::getLowBitsSet(VTSize, Scale),
11105 // Signed overflow happened if the upper (VTSize - Scale + 1) bits (of the
11108 SDValue SatMin = DAG.getConstant(APInt::getSignedMinValue(VTSize), dl, VT);
11109 SDValue SatMax = DAG.getConstant(APInt::getSignedMaxValue(VTSize), dl, VT);
11113 DAG.getShiftAmountConstant(VTSize - 1, VT, dl));
11128 SDValue LowMask = DAG.getConstant(APInt::getLowBitsSet(VTSize, Scale - 1),
11134 DAG.getConstant(APInt::getHighBitsSet(VTSize, VTSize - Scale + 1),