Lines Matching refs:VTSize
233 unsigned VTSize = VT.getSizeInBits() / 8; in findOptimalMemOpLowering() local
234 while (VTSize > Size) { in findOptimalMemOpLowering()
271 VTSize = Size; in findOptimalMemOpLowering()
274 VTSize = NewVTSize; in findOptimalMemOpLowering()
282 Size -= VTSize; in findOptimalMemOpLowering()
10170 unsigned VTSize = VT.getScalarSizeInBits(); in expandFixedPointMul() local
10184 APInt MinVal = APInt::getSignedMinValue(VTSize); in expandFixedPointMul()
10185 APInt MaxVal = APInt::getSignedMaxValue(VTSize); in expandFixedPointMul()
10200 APInt MaxVal = APInt::getMaxValue(VTSize); in expandFixedPointMul()
10206 assert(((Signed && Scale < VTSize) || (!Signed && Scale <= VTSize)) && in expandFixedPointMul()
10229 if (Scale == VTSize) in expandFixedPointMul()
10250 APInt MaxVal = APInt::getMaxValue(VTSize); in expandFixedPointMul()
10251 SDValue LowMask = DAG.getConstant(APInt::getLowBitsSet(VTSize, Scale), in expandFixedPointMul()
10263 SDValue SatMin = DAG.getConstant(APInt::getSignedMinValue(VTSize), dl, VT); in expandFixedPointMul()
10264 SDValue SatMax = DAG.getConstant(APInt::getSignedMaxValue(VTSize), dl, VT); in expandFixedPointMul()
10268 DAG.getConstant(VTSize - 1, dl, ShiftTy)); in expandFixedPointMul()
10283 SDValue LowMask = DAG.getConstant(APInt::getLowBitsSet(VTSize, Scale - 1), in expandFixedPointMul()
10289 DAG.getConstant(APInt::getHighBitsSet(VTSize, VTSize - Scale + 1), in expandFixedPointMul()