Searched refs:isWrappedSet (Results 1 - 4 of 4) sorted by relevance

/external/llvm/lib/Support/
H A DConstantRange.cpp128 /// isWrappedSet - Return true if this set wraps around the top of the range,
131 bool ConstantRange::isWrappedSet() const { function in class:ConstantRange
163 if (isFullSet() || isWrappedSet())
172 if (isFullSet() || (isWrappedSet() && getUpper() != 0))
182 if (!isWrappedSet()) {
197 if (!isWrappedSet()) {
215 if (!isWrappedSet())
228 if (!isWrappedSet()) {
229 if (Other.isWrappedSet())
235 if (!Other.isWrappedSet())
[all...]
/external/llvm/include/llvm/Support/
H A DConstantRange.h90 /// isWrappedSet - Return true if this set wraps around the top of the range,
93 bool isWrappedSet() const;
/external/llvm/unittests/Support/
H A DConstantRangeTest.cpp38 EXPECT_FALSE(Full.isWrappedSet());
48 EXPECT_FALSE(Empty.isWrappedSet());
57 EXPECT_FALSE(One.isWrappedSet());
67 EXPECT_FALSE(Some.isWrappedSet());
76 EXPECT_TRUE(Wrap.isWrappedSet());
/external/llvm/lib/Analysis/
H A DValueTracking.cpp205 if (Range.isWrappedSet())

Completed in 102 milliseconds