/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-7.0/llvm/lib/IR/ |
D | ConstantRange.cpp | 59 if (CR.isEmptySet()) in makeAllowedICmpRegion() 149 if (isFullSet() || isEmptySet()) { in getEquivalentICmp() 150 Pred = isEmptySet() ? CmpInst::ICMP_ULT : CmpInst::ICMP_UGE; in getEquivalentICmp() 323 bool ConstantRange::isEmptySet() const { in isEmptySet() function in ConstantRange 399 if (isFullSet() || Other.isEmptySet()) return true; in contains() 400 if (isEmptySet() || Other.isFullSet()) return false; in contains() 433 if ( isEmptySet() || CR.isFullSet()) return *this; in intersectWith() 434 if (CR.isEmptySet() || isFullSet()) return CR; in intersectWith() 506 if ( isFullSet() || CR.isEmptySet()) return *this; in unionWith() 507 if (CR.isFullSet() || isEmptySet()) return CR; in unionWith() [all …]
|
D | Metadata.cpp | 946 return !A.intersectWith(B).isEmptySet() || isContiguous(A, B); in canBeMerged()
|
D | Verifier.cpp | 3164 Assert(!CurRange.isEmptySet() && !CurRange.isFullSet(), in visitRangeMetadata() 3167 Assert(CurRange.intersectWith(LastRange).isEmptySet(), in visitRangeMetadata() 3182 Assert(FirstRange.intersectWith(LastRange).isEmptySet(), in visitRangeMetadata()
|
/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-7.0/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() 186 EXPECT_TRUE(TEmpty.isEmptySet()); in TEST_F() 216 EXPECT_TRUE(ZEmpty.isEmptySet()); in TEST_F() 236 EXPECT_TRUE(SEmpty.isEmptySet()); in TEST_F() 640 .isEmptySet()); in TEST() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | ValueLattice.h | 221 if (NewR.isEmptySet()) in markConstantRange() 230 if (NewR.isEmptySet()) in markConstantRange()
|
/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-7.0/llvm/lib/Transforms/Scalar/ |
D | CorrelatedValuePropagation.cpp | 413 if (NWRegion.isEmptySet()) in willNotOverflow() 642 if (!NUWRange.isEmptySet()) { in processAdd() 651 if (!NSWRange.isEmptySet()) { in processAdd()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | ConstantRange.h | 139 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()
|
/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/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 5011 if (Intersection.isEmptySet()) in isImpliedCondMatchingImmOperands() 5013 if (Difference.isEmptySet()) in isImpliedCondMatchingImmOperands()
|
D | InstructionSimplify.cpp | 1497 if (IsAnd && Range0.intersectWith(Range1).isEmptySet()) in simplifyAndOrOfICmpsWithConstants() 2642 if (RHS_CR.isEmptySet()) in simplifyICmpWithConstant()
|
/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-7.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 1391 if (Intersection.isEmptySet()) in foldICmpWithConstant() 1393 if (Difference.isEmptySet()) in foldICmpWithConstant()
|