Lines Matching refs:LHSUnsigned
4310 bool LHSUnsigned = isa<UIToFPInst>(LHSI); in FoldFCmp_IntToFP_Cst() local
4315 APSInt RHSCvt(IntTy->getBitWidth(), LHSUnsigned); in FoldFCmp_IntToFP_Cst()
4350 if (MaxExponent < (int)InputSize - !LHSUnsigned) in FoldFCmp_IntToFP_Cst()
4356 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned) in FoldFCmp_IntToFP_Cst()
4376 Pred = LHSUnsigned ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_SGT; in FoldFCmp_IntToFP_Cst()
4380 Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE; in FoldFCmp_IntToFP_Cst()
4384 Pred = LHSUnsigned ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_SLT; in FoldFCmp_IntToFP_Cst()
4388 Pred = LHSUnsigned ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_SLE; in FoldFCmp_IntToFP_Cst()
4406 if (!LHSUnsigned) { in FoldFCmp_IntToFP_Cst()
4432 if (!LHSUnsigned) { in FoldFCmp_IntToFP_Cst()
4460 Constant *RHSInt = LHSUnsigned in FoldFCmp_IntToFP_Cst()
4464 bool Equal = LHSUnsigned in FoldFCmp_IntToFP_Cst()