Home
last modified time | relevance | path

Searched refs:FCMP_ONE (Results 1 – 25 of 100) sorted by relevance

1234

/external/swiftshader/third_party/subzero/pnacl-llvm/
DNaClBitcodeDecoders.cpp153 case naclbitc::FCMP_ONE: in DecodeFcmpPredicate()
154 LLVMPredicate = CmpInst::FCMP_ONE; in DecodeFcmpPredicate()
/external/llvm-project/llvm/unittests/Analysis/
DValueLatticeTest.cpp158 EXPECT_TRUE(LV1.getCompare(CmpInst::FCMP_ONE, I1Ty, LV2)->isZeroValue()); in TEST_F()
167 EXPECT_EQ(LV1.getCompare(CmpInst::FCMP_ONE, I1Ty, LV2), nullptr); in TEST_F()
191 EXPECT_TRUE(isa<UndefValue>(LV1.getCompare(CmpInst::FCMP_ONE, I1Ty, LV3))); in TEST_F()
/external/llvm-project/llvm/lib/Target/ARM/
DARMLegalizerInfo.cpp275 FCmp32Libcalls[CmpInst::FCMP_ONE] = { in setFCmpLibcallsAEABI()
301 FCmp64Libcalls[CmpInst::FCMP_ONE] = { in setFCmpLibcallsAEABI()
325 FCmp32Libcalls[CmpInst::FCMP_ONE] = {{RTLIB::OGT_F32, CmpInst::ICMP_SGT}, in setFCmpLibcallsGNU()
343 FCmp64Libcalls[CmpInst::FCMP_ONE] = {{RTLIB::OGT_F64, CmpInst::ICMP_SGT}, in setFCmpLibcallsGNU()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMLegalizerInfo.cpp275 FCmp32Libcalls[CmpInst::FCMP_ONE] = { in setFCmpLibcallsAEABI()
301 FCmp64Libcalls[CmpInst::FCMP_ONE] = { in setFCmpLibcallsAEABI()
325 FCmp32Libcalls[CmpInst::FCMP_ONE] = {{RTLIB::OGT_F32, CmpInst::ICMP_SGT}, in setFCmpLibcallsGNU()
343 FCmp64Libcalls[CmpInst::FCMP_ONE] = {{RTLIB::OGT_F64, CmpInst::ICMP_SGT}, in setFCmpLibcallsGNU()
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Bitcode/NaCl/
DNaClLLVMBitCodes.h279 FCMP_ONE = 6, ///< 0 1 1 0 True if ordered and operands are unequal enumerator
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DIntrinsicInst.cpp136 .Case("one", FCmpInst::FCMP_ONE) in getPredicate()
DConstantFold.cpp1921 case FCmpInst::FCMP_ONE: in ConstantFoldCompareInstruction()
1987 Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE || in ConstantFoldCompareInstruction()
1992 Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE || in ConstantFoldCompareInstruction()
2010 case FCmpInst::FCMP_ONE: // We know that C1 != C2 in ConstantFoldCompareInstruction()
2014 else if (pred == FCmpInst::FCMP_ONE || pred == FCmpInst::FCMP_UNE) in ConstantFoldCompareInstruction()
2019 if (pred == FCmpInst::FCMP_ONE) in ConstantFoldCompareInstruction()
DInstructions.cpp3545 case FCMP_ONE: return FCMP_UEQ; in getInversePredicate()
3550 case FCMP_UEQ: return FCMP_ONE; in getInversePredicate()
3572 case FCmpInst::FCMP_ONE: return "one"; in getPredicateName()
3659 case FCMP_OEQ: case FCMP_ONE: in getSwappedPredicate()
3724 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT: in isOrdered()
3750 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true; in isFalseWhenEqual()
/external/llvm-project/llvm/lib/IR/
DIntrinsicInst.cpp136 .Case("one", FCmpInst::FCMP_ONE) in getPredicate()
DConstantFold.cpp2051 case FCmpInst::FCMP_ONE: in ConstantFoldCompareInstruction()
2131 Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE || in ConstantFoldCompareInstruction()
2136 Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE || in ConstantFoldCompareInstruction()
2154 case FCmpInst::FCMP_ONE: // We know that C1 != C2 in ConstantFoldCompareInstruction()
2158 else if (pred == FCmpInst::FCMP_ONE || pred == FCmpInst::FCMP_UNE) in ConstantFoldCompareInstruction()
2163 if (pred == FCmpInst::FCMP_ONE) in ConstantFoldCompareInstruction()
DInstructions.cpp3662 case FCMP_ONE: return FCMP_UEQ; in getInversePredicate()
3667 case FCMP_UEQ: return FCMP_ONE; in getInversePredicate()
3689 case FCmpInst::FCMP_ONE: return "one"; in getPredicateName()
3753 case FCMP_OEQ: case FCMP_ONE: in getSwappedPredicate()
3922 case FCmpInst::FCMP_OEQ: case FCmpInst::FCMP_ONE: case FCmpInst::FCMP_OGT: in isOrdered()
3948 case FCMP_FALSE: case FCMP_ONE: case FCMP_OGT: case FCMP_OLT: return true; in isFalseWhenEqual()
/external/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp249 if ((Predicate == CmpInst::ICMP_NE) || (Predicate == CmpInst::FCMP_ONE)) { in FlattenParallelAndOr()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp261 if ((Predicate == CmpInst::ICMP_NE) || (Predicate == CmpInst::FCMP_ONE)) { in FlattenParallelAndOr()
/external/llvm-project/llvm/lib/Transforms/Utils/
DFlattenCFG.cpp261 if ((Predicate == CmpInst::ICMP_NE) || (Predicate == CmpInst::FCMP_ONE)) { in FlattenParallelAndOr()
/external/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPUPostLegalizerCombiner.cpp98 case CmpInst::FCMP_ONE: in matchFMinFMaxLegacy()
/external/llvm/lib/IR/
DConstantFold.cpp1783 case FCmpInst::FCMP_ONE: in ConstantFoldCompareInstruction()
1850 Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE || in ConstantFoldCompareInstruction()
1855 Result = (pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE || in ConstantFoldCompareInstruction()
1873 case FCmpInst::FCMP_ONE: // We know that C1 != C2 in ConstantFoldCompareInstruction()
1877 else if (pred == FCmpInst::FCMP_ONE || pred == FCmpInst::FCMP_UNE) in ConstantFoldCompareInstruction()
/external/llvm-project/llvm/include/llvm/Transforms/InstCombine/
DInstCombiner.h151 case CmpInst::FCMP_ONE: in isCanonicalPredicate()
/external/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp99 case CmpInst::FCMP_ONE: in mapFCmpPred()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp102 case CmpInst::FCMP_ONE: in mapFCmpPred()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp102 case CmpInst::FCMP_ONE: in mapFCmpPred()
/external/llvm-project/llvm/lib/FuzzMutate/
DOperations.cpp58 Ops.push_back(cmpOpDescriptor(1, Instruction::FCmp, CmpInst::FCMP_ONE)); in describeFuzzerFloatOps()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/FuzzMutate/
DOperations.cpp58 Ops.push_back(cmpOpDescriptor(1, Instruction::FCmp, CmpInst::FCMP_ONE)); in describeFuzzerFloatOps()
/external/llvm/lib/CodeGen/
DAnalysis.cpp170 case FCmpInst::FCMP_ONE: return ISD::SETONE; in getFCmpCondCode()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DAnalysis.cpp209 case FCmpInst::FCMP_ONE: return ISD::SETONE; in getFCmpCondCode()
/external/llvm-project/llvm/lib/CodeGen/
DAnalysis.cpp210 case FCmpInst::FCMP_ONE: return ISD::SETONE; in getFCmpCondCode()

1234