Lines Matching refs:VTSize
231 unsigned VTSize = VT.getSizeInBits() / 8; in findOptimalMemOpLowering() local
232 while (VTSize > Size) { in findOptimalMemOpLowering()
269 VTSize = Size; in findOptimalMemOpLowering()
272 VTSize = NewVTSize; in findOptimalMemOpLowering()
280 Size -= VTSize; in findOptimalMemOpLowering()
8999 unsigned VTSize = VT.getScalarSizeInBits(); in expandFixedPointMul() local
9013 APInt MinVal = APInt::getSignedMinValue(VTSize); in expandFixedPointMul()
9014 APInt MaxVal = APInt::getSignedMaxValue(VTSize); in expandFixedPointMul()
9029 APInt MaxVal = APInt::getMaxValue(VTSize); in expandFixedPointMul()
9035 assert(((Signed && Scale < VTSize) || (!Signed && Scale <= VTSize)) && in expandFixedPointMul()
9058 if (Scale == VTSize) in expandFixedPointMul()
9079 APInt MaxVal = APInt::getMaxValue(VTSize); in expandFixedPointMul()
9080 SDValue LowMask = DAG.getConstant(APInt::getLowBitsSet(VTSize, Scale), in expandFixedPointMul()
9092 SDValue SatMin = DAG.getConstant(APInt::getSignedMinValue(VTSize), dl, VT); in expandFixedPointMul()
9093 SDValue SatMax = DAG.getConstant(APInt::getSignedMaxValue(VTSize), dl, VT); in expandFixedPointMul()
9097 DAG.getConstant(VTSize - 1, dl, ShiftTy)); in expandFixedPointMul()
9112 SDValue LowMask = DAG.getConstant(APInt::getLowBitsSet(VTSize, Scale - 1), in expandFixedPointMul()
9118 DAG.getConstant(APInt::getHighBitsSet(VTSize, VTSize - Scale + 1), in expandFixedPointMul()