/external/swiftshader/third_party/LLVM/lib/Support/ |
D | ConstantRange.cpp | 53 if (CR.isEmptySet()) in makeICmpRegion() 124 bool ConstantRange::isEmptySet() const { in isEmptySet() function in ConstantRange 146 if (isEmptySet()) in getSetSize() 235 if (isFullSet() || Other.isEmptySet()) return true; in contains() 236 if (isEmptySet() || Other.isFullSet()) return false; in contains() 272 if ( isEmptySet() || CR.isFullSet()) return *this; in intersectWith() 273 if (CR.isEmptySet() || isFullSet()) return CR; in intersectWith() 354 if ( isFullSet() || CR.isEmptySet()) return *this; in unionWith() 355 if (CR.isFullSet() || isEmptySet()) return CR; in unionWith() 436 if (isEmptySet()) return ConstantRange(DstTySize, /*isFullSet=*/false); in zeroExtend() [all …]
|
/external/llvm/lib/IR/ |
D | ConstantRange.cpp | 56 if (CR.isEmptySet()) in makeAllowedICmpRegion() 146 if (isFullSet() || isEmptySet()) { in getEquivalentICmp() 147 Pred = isEmptySet() ? CmpInst::ICMP_ULT : CmpInst::ICMP_UGE; in getEquivalentICmp() 235 bool ConstantRange::isEmptySet() const { in isEmptySet() function in ConstantRange 333 if (isFullSet() || Other.isEmptySet()) return true; in contains() 334 if (isEmptySet() || Other.isFullSet()) return false; in contains() 376 if ( isEmptySet() || CR.isFullSet()) return *this; in intersectWith() 377 if (CR.isEmptySet() || isFullSet()) return CR; in intersectWith() 456 if ( isFullSet() || CR.isEmptySet()) return *this; in unionWith() 457 if (CR.isFullSet() || isEmptySet()) return CR; in unionWith() [all …]
|
D | Verifier.cpp | 2943 Assert(!CurRange.isEmptySet() && !CurRange.isFullSet(), in visitRangeMetadata() 2946 Assert(CurRange.intersectWith(LastRange).isEmptySet(), in visitRangeMetadata() 2961 Assert(FirstRange.intersectWith(LastRange).isEmptySet(), in visitRangeMetadata()
|
D | Metadata.cpp | 919 return !A.intersectWith(B).isEmptySet() || isContiguous(A, B); in canBeMerged()
|
/external/swiftshader/third_party/LLVM/unittests/Support/ |
D | ConstantRangeTest.cpp | 36 EXPECT_FALSE(Full.isEmptySet()); in TEST_F() 37 EXPECT_TRUE(Full.inverse().isEmptySet()); in TEST_F() 46 EXPECT_TRUE(Empty.isEmptySet()); in TEST_F() 56 EXPECT_FALSE(One.isEmptySet()); in TEST_F() 66 EXPECT_FALSE(Some.isEmptySet()); in TEST_F() 75 EXPECT_FALSE(Wrap.isEmptySet()); in TEST_F() 173 EXPECT_TRUE(TEmpty.isEmptySet()); in TEST_F() 186 EXPECT_TRUE(ZEmpty.isEmptySet()); in TEST_F() 202 EXPECT_TRUE(SEmpty.isEmptySet()); in TEST_F() 439 SMax).isEmptySet()); in TEST()
|
/external/llvm/unittests/IR/ |
D | ConstantRangeTest.cpp | 36 EXPECT_FALSE(Full.isEmptySet()); in TEST_F() 37 EXPECT_TRUE(Full.inverse().isEmptySet()); in TEST_F() 46 EXPECT_TRUE(Empty.isEmptySet()); in TEST_F() 56 EXPECT_FALSE(One.isEmptySet()); in TEST_F() 66 EXPECT_FALSE(Some.isEmptySet()); in TEST_F() 75 EXPECT_FALSE(Wrap.isEmptySet()); in TEST_F() 177 EXPECT_TRUE(TEmpty.isEmptySet()); in TEST_F() 190 EXPECT_TRUE(ZEmpty.isEmptySet()); in TEST_F() 210 EXPECT_TRUE(SEmpty.isEmptySet()); in TEST_F() 556 .isEmptySet()); in TEST() [all …]
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | ConstantRange.h | 88 bool isEmptySet() const;
|
/external/llvm/include/llvm/IR/ |
D | ConstantRange.h | 141 bool isEmptySet() const;
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | LazyValueInfo.cpp | 167 if (NewR.isEmptySet()) in markConstantRange() 176 if (NewR.isEmptySet()) in markConstantRange()
|
D | InstructionSimplify.cpp | 1549 if (RHS_CR.isEmptySet()) in SimplifyICmpInst()
|
D | ScalarEvolution.cpp | 5797 if (getUnsignedRange(LHS).intersectWith(getUnsignedRange(RHS)).isEmptySet()) in isKnownPredicateWithRanges() 5799 if (getSignedRange(LHS).intersectWith(getSignedRange(RHS)).isEmptySet()) in isKnownPredicateWithRanges()
|
/external/llvm/lib/Analysis/ |
D | LazyValueInfo.cpp | 187 if (NewR.isEmptySet()) in markConstantRange() 196 if (NewR.isEmptySet()) in markConstantRange()
|
D | ValueTracking.cpp | 4091 if (Intersection.isEmptySet()) in isImpliedCondMatchingImmOperands() 4093 if (Difference.isEmptySet()) in isImpliedCondMatchingImmOperands()
|
D | InstructionSimplify.cpp | 1517 if (Range0.intersectWith(Range1).isEmptySet()) in SimplifyAndOfICmps() 2295 if (RHS_CR.isEmptySet()) in SimplifyICmpInst()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 3350 if (Intersection.isEmptySet()) in visitICmpInst() 3352 if (Difference.isEmptySet()) in visitICmpInst()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/ |
D | InstCombineAndOrXor.cpp | 827 if (LHSRange.intersectWith(RHSRange).isEmptySet()) in FoldAndOfICmps()
|
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 376 if (Span.getSetSize().ugt(8) || Span.isEmptySet() || in GatherConstantCompares()
|
/external/llvm/lib/Transforms/Utils/ |
D | SimplifyCFG.cpp | 559 if (Span.getSetSize().ugt(8) || Span.isEmptySet()) { in matchInstruction()
|