Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp5821 bool LHSUnsigned = isa<UIToFPInst>(LHSI); in foldFCmpIntToFPConst() local
5826 APSInt RHSCvt(IntTy->getBitWidth(), LHSUnsigned); in foldFCmpIntToFPConst()
5861 if (MaxExponent < (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
5867 if (MantissaWidth <= Exp && Exp <= (int)InputSize - !LHSUnsigned) in foldFCmpIntToFPConst()
5887 Pred = LHSUnsigned ? ICmpInst::ICMP_UGT : ICmpInst::ICMP_SGT; in foldFCmpIntToFPConst()
5891 Pred = LHSUnsigned ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_SGE; in foldFCmpIntToFPConst()
5895 Pred = LHSUnsigned ? ICmpInst::ICMP_ULT : ICmpInst::ICMP_SLT; in foldFCmpIntToFPConst()
5899 Pred = LHSUnsigned ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_SLE; in foldFCmpIntToFPConst()
5917 if (!LHSUnsigned) { in foldFCmpIntToFPConst()
5943 if (!LHSUnsigned) { in foldFCmpIntToFPConst()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp6479 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder() local
6485 if (LHSUnsigned == RHSUnsigned) { // Both signed or both unsigned. in getIntegerTypeOrder()
6491 if (LHSUnsigned) { in getIntegerTypeOrder()
9942 bool LHSUnsigned = LHS->castAs<ExtIntType>()->isUnsigned(); in mergeTypes() local
9948 if (LHSUnsigned != RHSUnsigned) in mergeTypes()