Home | History | Annotate | Download | only in NVPTX

Lines Matching refs:OptSize

4095 /// that can be demoted to \p OptSize bits without loss of information. The
4098 unsigned OptSize,
4105 if (OrigVT.getSizeInBits() <= OptSize) {
4111 if (OrigVT.getSizeInBits() <= OptSize) {
4121 /// be demoted to \p OptSize bits without loss of information. If the operands
4125 unsigned OptSize,
4131 if (!IsMulWideOperandDemotable(LHS, OptSize, LHSSign))
4144 return Val.isIntN(OptSize);
4146 return Val.isSignedIntN(OptSize);
4150 if (!IsMulWideOperandDemotable(RHS, OptSize, RHSSign))
4169 unsigned OptSize = MulType.getSizeInBits() >> 1;
4199 if (!AreMulWideOperandsDemotable(LHS, RHS, OptSize, Signed)) {