Lines Matching defs:LHSUnsigned
7617 bool LHSUnsigned = isa<UIToFPInst>(LHSI);
7622 APSInt RHSCvt(IntWidth, LHSUnsigned);
7656 if (MaxExponent < (int)IntWidth - !LHSUnsigned)
7662 if (MantissaWidth <= Exp && Exp <= (int)IntWidth - !LHSUnsigned)
7682 Pred = LHSUnsigned ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_SGT;
7686 Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE;
7690 Pred = LHSUnsigned ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_SLT;
7694 Pred = LHSUnsigned ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_SLE;
7710 if (!LHSUnsigned) {
7736 if (!LHSUnsigned) {
7764 APSInt RHSInt(IntWidth, LHSUnsigned);