Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp7245 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()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp7238 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder() local
7244 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned. in getIntegerTypeOrder()
7250 if (LHSUnsigned) { in getIntegerTypeOrder()
10860 bool LHSUnsigned = LHS->castAs<BitIntType>()->isUnsigned(); in mergeTypes() local
10866 if (LHSUnsigned != RHSUnsigned) in mergeTypes()