Home
last modified time | relevance | path

Searched refs:FCMP_OLT (Results 1 – 25 of 116) sorted by relevance

12345

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DLibCallsShrinkWrap.cpp149 Cond = createOrCond(CI, CmpInst::FCMP_OLT, -1.0f, CmpInst::FCMP_OGT, 1.0f); in performCallDomainErrorOnly()
169 Cond = createCond(CI, CmpInst::FCMP_OLT, 1.0f); in performCallDomainErrorOnly()
177 Cond = createCond(CI, CmpInst::FCMP_OLT, 0.0f); in performCallDomainErrorOnly()
401 return createOrCond(CI, CmpInst::FCMP_OGT, UpperBound, CmpInst::FCMP_OLT, in generateTwoRangeCond()
/external/llvm-project/llvm/lib/Transforms/Utils/
DLibCallsShrinkWrap.cpp149 Cond = createOrCond(CI, CmpInst::FCMP_OLT, -1.0f, CmpInst::FCMP_OGT, 1.0f); in performCallDomainErrorOnly()
169 Cond = createCond(CI, CmpInst::FCMP_OLT, 1.0f); in performCallDomainErrorOnly()
177 Cond = createCond(CI, CmpInst::FCMP_OLT, 0.0f); in performCallDomainErrorOnly()
401 return createOrCond(CI, CmpInst::FCMP_OGT, UpperBound, CmpInst::FCMP_OLT, in generateTwoRangeCond()
/external/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitcodeDecoders.cpp147 case naclbitc::FCMP_OLT: in DecodeFcmpPredicate()
148 LLVMPredicate = CmpInst::FCMP_OLT; in DecodeFcmpPredicate()
/external/llvm-project/llvm/unittests/Analysis/
DValueLatticeTest.cpp159 EXPECT_TRUE(LV1.getCompare(CmpInst::FCMP_OLT, I1Ty, LV2)->isZeroValue()); in TEST_F()
168 EXPECT_EQ(LV1.getCompare(CmpInst::FCMP_OLT, I1Ty, LV2), nullptr); in TEST_F()
192 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_OLT, I1Ty, LV3))); in TEST_F()
/external/llvm-project/llvm/lib/Target/ARM/
DARMLegalizerInfo.cpp265 FCmp32Libcalls[CmpInst::FCMP_OLT] = { in setFCmpLibcallsAEABI()
291 FCmp64Libcalls[CmpInst::FCMP_OLT] = { in setFCmpLibcallsAEABI()
317 FCmp32Libcalls[CmpInst::FCMP_OLT] = {{RTLIB::OLT_F32, CmpInst::ICMP_SLT}}; in setFCmpLibcallsGNU()
335 FCmp64Libcalls[CmpInst::FCMP_OLT] = {{RTLIB::OLT_F64, CmpInst::ICMP_SLT}}; in setFCmpLibcallsGNU()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMLegalizerInfo.cpp265 FCmp32Libcalls[CmpInst::FCMP_OLT] = { in setFCmpLibcallsAEABI()
291 FCmp64Libcalls[CmpInst::FCMP_OLT] = { in setFCmpLibcallsAEABI()
317 FCmp32Libcalls[CmpInst::FCMP_OLT] = {{RTLIB::OLT_F32, CmpInst::ICMP_SLT}}; in setFCmpLibcallsGNU()
335 FCmp64Libcalls[CmpInst::FCMP_OLT] = {{RTLIB::OLT_F64, CmpInst::ICMP_SLT}}; in setFCmpLibcallsGNU()
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClLLVMBitCodes.h277 FCMP_OLT = 4, ///< 0 1 0 0 True if ordered and less than enumerator
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DIntrinsicInst.cpp134 .Case("olt", FCmpInst::FCMP_OLT) in getPredicate()
DConstantFold.cpp1488 ConstantExpr::getFCmp(FCmpInst::FCMP_OLT, V1, V2)); in evaluateFCmpRelation()
1490 return FCmpInst::FCMP_OLT; in evaluateFCmpRelation()
1927 case FCmpInst::FCMP_OLT: in ConstantFoldCompareInstruction()
1986 case FCmpInst::FCMP_OLT: // We know that C1 < C2 in ConstantFoldCompareInstruction()
1988 pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT || in ConstantFoldCompareInstruction()
2000 else if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT) in ConstantFoldCompareInstruction()
2005 if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT) in ConstantFoldCompareInstruction()
DInstructions.cpp3547 case FCMP_OLT: return FCMP_UGE; in getInversePredicate()
3554 case FCMP_UGE: return FCMP_OLT; in getInversePredicate()
3570 case FCmpInst::FCMP_OLT: return "olt"; in getPredicateName()
3634 case FCMP_OLT: return FCMP_OLE; in getFlippedStrictnessPredicate()
3636 case FCMP_OLE: return FCMP_OLT; in getFlippedStrictnessPredicate()
3663 case FCMP_OGT: return FCMP_OLT; in getSwappedPredicate()
3664 case FCMP_OLT: return FCMP_OGT; in getSwappedPredicate()
3681 case FCMP_OLT: return FCMP_OLE; in getNonStrictPredicate()
3725 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE: in isOrdered()
3750 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true; in isFalseWhenEqual()
/external/llvm/lib/IR/
DConstantFold.cpp1359 ConstantExpr::getFCmp(FCmpInst::FCMP_OLT, V1, V2)); in evaluateFCmpRelation()
1361 return FCmpInst::FCMP_OLT; in evaluateFCmpRelation()
1789 case FCmpInst::FCMP_OLT: in ConstantFoldCompareInstruction()
1849 case FCmpInst::FCMP_OLT: // We know that C1 < C2 in ConstantFoldCompareInstruction()
1851 pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT || in ConstantFoldCompareInstruction()
1863 else if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT) in ConstantFoldCompareInstruction()
1868 if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT) in ConstantFoldCompareInstruction()
/external/llvm-project/llvm/lib/IR/
DIntrinsicInst.cpp134 .Case("olt", FCmpInst::FCMP_OLT) in getPredicate()
DConstantFold.cpp1609 ConstantExpr::getFCmp(FCmpInst::FCMP_OLT, V1, V2)); in evaluateFCmpRelation()
1611 return FCmpInst::FCMP_OLT; in evaluateFCmpRelation()
2057 case FCmpInst::FCMP_OLT: in ConstantFoldCompareInstruction()
2130 case FCmpInst::FCMP_OLT: // We know that C1 < C2 in ConstantFoldCompareInstruction()
2132 pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT || in ConstantFoldCompareInstruction()
2144 else if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT) in ConstantFoldCompareInstruction()
2149 if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT) in ConstantFoldCompareInstruction()
DInstructions.cpp3664 case FCMP_OLT: return FCMP_UGE; in getInversePredicate()
3671 case FCMP_UGE: return FCMP_OLT; in getInversePredicate()
3687 case FCmpInst::FCMP_OLT: return "olt"; in getPredicateName()
3757 case FCMP_OGT: return FCMP_OLT; in getSwappedPredicate()
3758 case FCMP_OLT: return FCMP_OGT; in getSwappedPredicate()
3791 case FCMP_OLT: in isStrictPredicate()
3813 return FCMP_OLT; in getStrictPredicate()
3835 case FCMP_OLT: in getNonStrictPredicate()
3923 case FCmpInst::FCMP_OLT: case FCmpInst::FCMP_OGE: case FCmpInst::FCMP_OLE: in isOrdered()
3948 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true; in isFalseWhenEqual()
/external/llvm-project/llvm/lib/Target/SystemZ/
DSystemZTDC.cpp217 if (Pred & CmpInst::FCMP_OLT) in convertFCmp()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/
DSystemZTDC.cpp209 if (Pred & CmpInst::FCMP_OLT) in convertFCmp()
/external/llvm/lib/Target/SystemZ/
DSystemZTDC.cpp209 if (Pred & CmpInst::FCMP_OLT) in convertFCmp()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder_misc.cpp804 Value* lowCmp = FCMP_OLT(src, low); in FCLAMP()
861 Value* vSgn = FCMP_OLT(vFloat, VIMMED1(0.0f)); in VCVT_F32_FIXED_SI()
931 Value* vSgn = FCMP_OLT(vFloat, VIMMED1(0.0f)); in VCVT_F32_FIXED_UI()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUPostLegalizerCombiner.cpp126 case CmpInst::FCMP_OLT: { in applySelectFCmpToFMinToFMaxLegacy()
/external/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp93 case CmpInst::FCMP_OLT: in mapFCmpPred()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp96 case CmpInst::FCMP_OLT: in mapFCmpPred()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp96 case CmpInst::FCMP_OLT: in mapFCmpPred()
/external/llvm-project/llvm/lib/FuzzMutate/
DOperations.cpp56 Ops.push_back(cmpOpDescriptor(1, Instruction::FCmp, CmpInst::FCMP_OLT)); in describeFuzzerFloatOps()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
DOperations.cpp56 Ops.push_back(cmpOpDescriptor(1, Instruction::FCmp, CmpInst::FCMP_OLT)); in describeFuzzerFloatOps()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMipsInstructionSelector.cpp742 case CmpInst::FCMP_OLT: // Ordered or Less Than in select()
745 isLogicallyNegated = Cond != CmpInst::FCMP_OLT; in select()

12345