Lines Matching refs:LHSUnsigned
7245 bool LHSUnsigned = isa<UIToFPInst>(LHSI); in foldFCmpIntToFPConst() local
7250 APSInt RHSCvt(IntTy->getBitWidth(), LHSUnsigned); in foldFCmpIntToFPConst()
7285 if (MaxExponent < (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
7291 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
7311 Pred = LHSUnsigned ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_SGT; in foldFCmpIntToFPConst()
7315 Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE; in foldFCmpIntToFPConst()
7319 Pred = LHSUnsigned ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_SLT; in foldFCmpIntToFPConst()
7323 Pred = LHSUnsigned ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_SLE; in foldFCmpIntToFPConst()
7341 if (!LHSUnsigned) { in foldFCmpIntToFPConst()
7367 if (!LHSUnsigned) { in foldFCmpIntToFPConst()
7395 APSInt RHSInt(IntWidth, LHSUnsigned); in foldFCmpIntToFPConst()