Home
last modified time | relevance | path

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

/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/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/include/llvm/Support/
DConstantRange.h88 bool isEmptySet() const;
/external/llvm/include/llvm/IR/
DConstantRange.h141 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()
DScalarEvolution.cpp5797 if (getUnsignedRange(LHS).intersectWith(getUnsignedRange(RHS)).isEmptySet()) in isKnownPredicateWithRanges()
5799 if (getSignedRange(LHS).intersectWith(getSignedRange(RHS)).isEmptySet()) in isKnownPredicateWithRanges()
/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/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/lib/Transforms/Utils/
DSimplifyCFG.cpp376 if (Span.getSetSize().ugt(8) || Span.isEmptySet() || in GatherConstantCompares()
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp559 if (Span.getSetSize().ugt(8) || Span.isEmptySet()) { in matchInstruction()