Searched refs:isEmptySet (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/Support/
H A DConstantRange.cpp54 if (CR.isEmptySet())
123 /// isEmptySet - Return true if this set contains no members.
125 bool ConstantRange::isEmptySet() const { function in class:ConstantRange
147 if (isEmptySet())
226 if (isFullSet() || Other.isEmptySet()) return true;
227 if (isEmptySet() || Other.isFullSet()) return false;
269 if ( isEmptySet() || CR.isFullSet()) return *this;
270 if (CR.isEmptySet() || isFullSet()) return CR;
349 if ( isFullSet() || CR.isEmptySet()) return *this;
350 if (CR.isFullSet() || isEmptySet()) retur
[all...]
/external/llvm/unittests/Support/
H A DConstantRangeTest.cpp35 EXPECT_FALSE(Full.isEmptySet());
36 EXPECT_TRUE(Full.inverse().isEmptySet());
45 EXPECT_TRUE(Empty.isEmptySet());
55 EXPECT_FALSE(One.isEmptySet());
65 EXPECT_FALSE(Some.isEmptySet());
74 EXPECT_FALSE(Wrap.isEmptySet());
176 EXPECT_TRUE(TEmpty.isEmptySet());
189 EXPECT_TRUE(ZEmpty.isEmptySet());
209 EXPECT_TRUE(SEmpty.isEmptySet());
506 SMax).isEmptySet());
[all...]
/external/llvm/include/llvm/Support/
H A DConstantRange.h94 /// isEmptySet - Return true if this set contains no members.
96 bool isEmptySet() const;
/external/llvm/lib/Analysis/
H A DLazyValueInfo.cpp172 if (NewR.isEmptySet())
181 if (NewR.isEmptySet())
H A DScalarEvolution.cpp6077 if (getUnsignedRange(LHS).intersectWith(getUnsignedRange(RHS)).isEmptySet())
6079 if (getSignedRange(LHS).intersectWith(getSignedRange(RHS)).isEmptySet())
H A DInstructionSimplify.cpp1962 if (RHS_CR.isEmptySet())
/external/llvm/lib/IR/
H A DMetadata.cpp422 return !A.intersectWith(B).isEmptySet() || isContiguous(A, B);
H A DVerifier.cpp1772 Assert1(!CurRange.isEmptySet() && !CurRange.isFullSet(),
1775 Assert1(CurRange.intersectWith(LastRange).isEmptySet(),
1790 Assert1(FirstRange.intersectWith(LastRange).isEmptySet(),
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp796 if (LHSRange.intersectWith(RHSRange).isEmptySet())
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp390 if (Span.getSetSize().ugt(8) || Span.isEmptySet())

Completed in 283 milliseconds