Home
last modified time | relevance | path

Searched refs:isEmptySet (Results 1 – 25 of 31) sorted by relevance

12

/external/swiftshader/third_party/LLVM/lib/Support/
DConstantRange.cpp53 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/
DConstantRange.cpp56 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 …]
DVerifier.cpp2943 Assert(!CurRange.isEmptySet() && !CurRange.isFullSet(), in visitRangeMetadata()
2946 Assert(CurRange.intersectWith(LastRange).isEmptySet(), in visitRangeMetadata()
2961 Assert(FirstRange.intersectWith(LastRange).isEmptySet(), in visitRangeMetadata()
DMetadata.cpp919 return !A.intersectWith(B).isEmptySet() || isContiguous(A, B); in canBeMerged()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DConstantRange.cpp59 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 …]
DMetadata.cpp946 return !A.intersectWith(B).isEmptySet() || isContiguous(A, B); in canBeMerged()
DVerifier.cpp3164 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/
DConstantRangeTest.cpp36 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/
DConstantRangeTest.cpp36 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/
DConstantRangeTest.cpp36 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/
DValueLattice.h221 if (NewR.isEmptySet()) in markConstantRange()
230 if (NewR.isEmptySet()) in markConstantRange()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DConstantRange.h88 bool isEmptySet() const;
/external/llvm/include/llvm/IR/
DConstantRange.h141 bool isEmptySet() const;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DCorrelatedValuePropagation.cpp413 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/
DConstantRange.h139 bool isEmptySet() const;
/external/swiftshader/third_party/LLVM/lib/Analysis/
DLazyValueInfo.cpp167 if (NewR.isEmptySet()) in markConstantRange()
176 if (NewR.isEmptySet()) in markConstantRange()
DInstructionSimplify.cpp1549 if (RHS_CR.isEmptySet()) in SimplifyICmpInst()
/external/llvm/lib/Analysis/
DLazyValueInfo.cpp187 if (NewR.isEmptySet()) in markConstantRange()
196 if (NewR.isEmptySet()) in markConstantRange()
DValueTracking.cpp4091 if (Intersection.isEmptySet()) in isImpliedCondMatchingImmOperands()
4093 if (Difference.isEmptySet()) in isImpliedCondMatchingImmOperands()
DInstructionSimplify.cpp1517 if (Range0.intersectWith(Range1).isEmptySet()) in SimplifyAndOfICmps()
2295 if (RHS_CR.isEmptySet()) in SimplifyICmpInst()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DValueTracking.cpp5011 if (Intersection.isEmptySet()) in isImpliedCondMatchingImmOperands()
5013 if (Difference.isEmptySet()) in isImpliedCondMatchingImmOperands()
DInstructionSimplify.cpp1497 if (IsAnd && Range0.intersectWith(Range1).isEmptySet()) in simplifyAndOrOfICmpsWithConstants()
2642 if (RHS_CR.isEmptySet()) in simplifyICmpWithConstant()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp3350 if (Intersection.isEmptySet()) in visitICmpInst()
3352 if (Difference.isEmptySet()) in visitICmpInst()
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp827 if (LHSRange.intersectWith(RHSRange).isEmptySet()) in FoldAndOfICmps()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
DInstCombineCompares.cpp1391 if (Intersection.isEmptySet()) in foldICmpWithConstant()
1393 if (Difference.isEmptySet()) in foldICmpWithConstant()

12