Lines Matching refs:LHSUnsigned
5828 bool LHSUnsigned = isa<UIToFPInst>(LHSI); in foldFCmpIntToFPConst() local
5833 APSInt RHSCvt(IntTy->getBitWidth(), LHSUnsigned); in foldFCmpIntToFPConst()
5868 if (MaxExponent < (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
5874 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
5894 Pred = LHSUnsigned ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_SGT; in foldFCmpIntToFPConst()
5898 Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE; in foldFCmpIntToFPConst()
5902 Pred = LHSUnsigned ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_SLT; in foldFCmpIntToFPConst()
5906 Pred = LHSUnsigned ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_SLE; in foldFCmpIntToFPConst()
5924 if (!LHSUnsigned) { in foldFCmpIntToFPConst()
5950 if (!LHSUnsigned) { in foldFCmpIntToFPConst()
5978 Constant *RHSInt = LHSUnsigned in foldFCmpIntToFPConst()
5982 bool Equal = LHSUnsigned in foldFCmpIntToFPConst()