Lines Matching refs:LHSUnsigned
6393 bool LHSUnsigned = isa<UIToFPInst>(LHSI); in foldFCmpIntToFPConst() local
6398 APSInt RHSCvt(IntTy->getBitWidth(), LHSUnsigned); in foldFCmpIntToFPConst()
6433 if (MaxExponent < (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
6439 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
6459 Pred = LHSUnsigned ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_SGT; in foldFCmpIntToFPConst()
6463 Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE; in foldFCmpIntToFPConst()
6467 Pred = LHSUnsigned ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_SLT; in foldFCmpIntToFPConst()
6471 Pred = LHSUnsigned ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_SLE; in foldFCmpIntToFPConst()
6489 if (!LHSUnsigned) { in foldFCmpIntToFPConst()
6515 if (!LHSUnsigned) { in foldFCmpIntToFPConst()
6543 Constant *RHSInt = LHSUnsigned in foldFCmpIntToFPConst()
6547 bool Equal = LHSUnsigned in foldFCmpIntToFPConst()