Home
last modified time | relevance | path

Searched refs:makeSatisfyingICmpRegion (Results 1 – 19 of 19) sorted by relevance

/external/llvm/unittests/IR/
DConstantRangeTest.cpp564 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_NE, LowHalf), in TEST()
568 ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_NE, HighHalf), in TEST()
571 EXPECT_TRUE(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_EQ, in TEST()
576 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_ULT, in TEST()
580 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_ULE, in TEST()
584 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_UGT, in TEST()
588 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_UGE, in TEST()
595 ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_SLT, SignedSample), in TEST()
599 ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_SLE, SignedSample), in TEST()
603 ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_SGT, SignedSample), in TEST()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DValueLattice.h308 if (ConstantRange::makeSatisfyingICmpRegion(Pred, OtherCR).contains(CR)) in getCompare()
310 if (ConstantRange::makeSatisfyingICmpRegion( in getCompare()
/external/llvm-project/llvm/include/llvm/Analysis/
DValueLattice.h477 if (ConstantRange::makeSatisfyingICmpRegion(Pred, OtherCR).contains(CR)) in getCompare()
479 if (ConstantRange::makeSatisfyingICmpRegion( in getCompare()
/external/llvm/include/llvm/IR/
DConstantRange.h82 static ConstantRange makeSatisfyingICmpRegion(CmpInst::Predicate Pred,
/external/llvm-project/llvm/unittests/IR/
DConstantRangeTest.cpp1454 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_NE, LowHalf), in TEST()
1458 ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_NE, HighHalf), in TEST()
1461 EXPECT_TRUE(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_EQ, in TEST()
1466 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_ULT, in TEST()
1470 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_ULE, in TEST()
1474 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_UGT, in TEST()
1478 EXPECT_EQ(ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_UGE, in TEST()
1485 ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_SLT, SignedSample), in TEST()
1489 ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_SLE, SignedSample), in TEST()
1493 ConstantRange::makeSatisfyingICmpRegion(ICmpInst::ICMP_SGT, SignedSample), in TEST()
[all …]
/external/llvm-project/llvm/include/llvm/IR/
DConstantRange.h114 static ConstantRange makeSatisfyingICmpRegion(CmpInst::Predicate Pred,
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstantRange.h114 static ConstantRange makeSatisfyingICmpRegion(CmpInst::Predicate Pred,
/external/llvm/lib/IR/
DConstantRange.cpp120 ConstantRange ConstantRange::makeSatisfyingICmpRegion(CmpInst::Predicate Pred, in makeSatisfyingICmpRegion() function in ConstantRange
138 assert(makeAllowedICmpRegion(Pred, C) == makeSatisfyingICmpRegion(Pred, C)); in makeExactICmpRegion()
/external/llvm-project/llvm/lib/IR/
DConstantRange.cpp128 ConstantRange ConstantRange::makeSatisfyingICmpRegion(CmpInst::Predicate Pred, in makeSatisfyingICmpRegion() function in ConstantRange
146 assert(makeAllowedICmpRegion(Pred, C) == makeSatisfyingICmpRegion(Pred, C)); in makeExactICmpRegion()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantRange.cpp127 ConstantRange ConstantRange::makeSatisfyingICmpRegion(CmpInst::Predicate Pred, in makeSatisfyingICmpRegion() function in ConstantRange
145 assert(makeAllowedICmpRegion(Pred, C) == makeSatisfyingICmpRegion(Pred, C)); in makeExactICmpRegion()
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp2438 auto Satisfied_CR = ConstantRange::makeSatisfyingICmpRegion(Pred, RHS_CR); in SimplifyICmpInst()
2442 auto InversedSatisfied_CR = ConstantRange::makeSatisfyingICmpRegion( in SimplifyICmpInst()
DScalarEvolution.cpp7751 return ConstantRange::makeSatisfyingICmpRegion(Pred, RangeRHS) in isKnownPredicateViaConstantRanges()
8570 ConstantRange::makeSatisfyingICmpRegion(Pred, ConstRHS); in isImpliedCondOperandsViaRanges()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DInstructionSimplify.cpp3273 auto Satisfied_CR = ConstantRange::makeSatisfyingICmpRegion(Pred, RHS_CR); in SimplifyICmpInst()
3277 auto InversedSatisfied_CR = ConstantRange::makeSatisfyingICmpRegion( in SimplifyICmpInst()
DScalarEvolution.cpp9394 return ConstantRange::makeSatisfyingICmpRegion(Pred, RangeRHS) in isKnownPredicateViaConstantRanges()
10535 ConstantRange::makeSatisfyingICmpRegion(Pred, ConstRHS); in isImpliedCondOperandsViaRanges()
/external/llvm-project/llvm/lib/Analysis/
DInstructionSimplify.cpp3338 auto Satisfied_CR = ConstantRange::makeSatisfyingICmpRegion(Pred, RHS_CR); in SimplifyICmpInst()
3342 auto InversedSatisfied_CR = ConstantRange::makeSatisfyingICmpRegion( in SimplifyICmpInst()
DScalarEvolution.cpp9705 return ConstantRange::makeSatisfyingICmpRegion(Pred, RangeRHS) in isKnownPredicateViaConstantRanges()
10993 ConstantRange::makeSatisfyingICmpRegion(Pred, ConstRHS); in isImpliedCondOperandsViaRanges()
DValueTracking.cpp6662 ConstantRange::makeSatisfyingICmpRegion(Cmp->getPredicate(), RHS)); in computeConstantRange()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DAttributor.cpp5439 auto SatisfyingRegion = ConstantRange::makeSatisfyingICmpRegion( in calculateCmpInst()
/external/llvm-project/llvm/lib/Transforms/IPO/
DAttributorAttributes.cpp7254 auto SatisfyingRegion = ConstantRange::makeSatisfyingICmpRegion( in calculateCmpInst()