reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/ConstantRange.h
  178   bool isWrappedSet() const;

References

lib/IR/ConstantRange.cpp
  371   if (isFullSet() || isWrappedSet())
  431     if (!CR1.isWrappedSet() && CR2.isWrappedSet())
  431     if (!CR1.isWrappedSet() && CR2.isWrappedSet())
  433     if (CR1.isWrappedSet() && !CR2.isWrappedSet())
  433     if (CR1.isWrappedSet() && !CR2.isWrappedSet())
unittests/IR/ConstantRangeTest.cpp
  146   EXPECT_FALSE(Full.isWrappedSet());
  156   EXPECT_FALSE(Empty.isWrappedSet());
  165   EXPECT_FALSE(One.isWrappedSet());
  175   EXPECT_FALSE(Some.isWrappedSet());
  184   EXPECT_TRUE(Wrap.isWrappedSet());
  290   EXPECT_FALSE(CR1.isWrappedSet());
  527         bool Variant1Full = Variant1.isFullSet() || Variant1.isWrappedSet();
  528         bool Variant2Full = Variant2.isFullSet() || Variant2.isWrappedSet();
  701     if (!CR1.isWrappedSet() && !CR2.isWrappedSet()) {
  701     if (!CR1.isWrappedSet() && !CR2.isWrappedSet()) {
  744         if (!CR1.isWrappedSet() && !CR2.isWrappedSet() &&
  744         if (!CR1.isWrappedSet() && !CR2.isWrappedSet() &&