Home
last modified time | relevance | path

Searched refs:LHSUnsigned (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp3851 bool LHSUnsigned = isa<UIToFPInst>(LHSI); in FoldFCmp_IntToFP_Cst() local
3856 APSInt RHSCvt(IntTy->getBitWidth(), LHSUnsigned); in FoldFCmp_IntToFP_Cst()
3891 if (MaxExponent < (int)InputSize - !LHSUnsigned) in FoldFCmp_IntToFP_Cst()
3897 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned) in FoldFCmp_IntToFP_Cst()
3917 Pred = LHSUnsigned ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_SGT; in FoldFCmp_IntToFP_Cst()
3921 Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE; in FoldFCmp_IntToFP_Cst()
3925 Pred = LHSUnsigned ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_SLT; in FoldFCmp_IntToFP_Cst()
3929 Pred = LHSUnsigned ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_SLE; in FoldFCmp_IntToFP_Cst()
3947 if (!LHSUnsigned) { in FoldFCmp_IntToFP_Cst()
3973 if (!LHSUnsigned) { in FoldFCmp_IntToFP_Cst()
[all …]
/external/clang/lib/AST/
DASTContext.cpp4797 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder() local
4803 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned. in getIntegerTypeOrder()
4809 if (LHSUnsigned) { in getIntegerTypeOrder()