2002-09-01 23:53:36 +00:00
|
|
|
//===-- ConstantRange.cpp - ConstantRange implementation ------------------===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-09-01 23:53:36 +00:00
|
|
|
//
|
|
|
|
// Represent a range of possible values that may occur when the program is run
|
|
|
|
// for an integral value. This keeps track of a lower and upper bound for the
|
|
|
|
// constant, which MAY wrap around the end of the numeric range. To do this, it
|
|
|
|
// keeps track of a [lower, upper) bound, which specifies an interval just like
|
|
|
|
// STL iterators. When used with boolean values, the following are important
|
|
|
|
// ranges (other integral ranges use min/max values for special range values):
|
|
|
|
//
|
|
|
|
// [F, F) = {} = Empty set
|
|
|
|
// [T, F) = {T}
|
|
|
|
// [F, T) = {F}
|
|
|
|
// [T, T) = {F, T} = Full set
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-02 11:36:10 +00:00
|
|
|
#include "llvm/IR/InstrTypes.h"
|
2014-03-04 12:24:34 +00:00
|
|
|
#include "llvm/IR/ConstantRange.h"
|
2010-01-05 01:28:32 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2008-08-23 22:23:09 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2003-12-14 21:35:53 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2002-09-01 23:53:36 +00:00
|
|
|
/// Initialize a full (the default) or empty set for the specified type.
|
|
|
|
///
|
2009-07-09 23:16:10 +00:00
|
|
|
ConstantRange::ConstantRange(uint32_t BitWidth, bool Full) {
|
2002-09-01 23:53:36 +00:00
|
|
|
if (Full)
|
2007-02-28 17:36:23 +00:00
|
|
|
Lower = Upper = APInt::getMaxValue(BitWidth);
|
2002-09-01 23:53:36 +00:00
|
|
|
else
|
2007-02-28 17:36:23 +00:00
|
|
|
Lower = Upper = APInt::getMinValue(BitWidth);
|
2002-09-01 23:53:36 +00:00
|
|
|
}
|
|
|
|
|
2004-03-30 00:20:08 +00:00
|
|
|
/// Initialize a range to hold the single specified value.
|
|
|
|
///
|
2013-07-11 15:37:27 +00:00
|
|
|
ConstantRange::ConstantRange(APIntMoveTy V)
|
2014-03-02 04:08:41 +00:00
|
|
|
: Lower(std::move(V)), Upper(Lower + 1) {}
|
2002-09-01 23:53:36 +00:00
|
|
|
|
2013-07-11 15:37:27 +00:00
|
|
|
ConstantRange::ConstantRange(APIntMoveTy L, APIntMoveTy U)
|
2014-03-02 04:08:41 +00:00
|
|
|
: Lower(std::move(L)), Upper(std::move(U)) {
|
2013-07-11 15:37:27 +00:00
|
|
|
assert(Lower.getBitWidth() == Upper.getBitWidth() &&
|
2009-07-09 23:16:10 +00:00
|
|
|
"ConstantRange with unequal bit widths");
|
2013-07-11 15:37:27 +00:00
|
|
|
assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) &&
|
2007-02-28 17:36:23 +00:00
|
|
|
"Lower == Upper, but they aren't min or max value!");
|
|
|
|
}
|
|
|
|
|
2009-07-11 06:15:39 +00:00
|
|
|
ConstantRange ConstantRange::makeICmpRegion(unsigned Pred,
|
|
|
|
const ConstantRange &CR) {
|
2010-09-28 18:18:36 +00:00
|
|
|
if (CR.isEmptySet())
|
|
|
|
return CR;
|
|
|
|
|
2009-07-11 06:15:39 +00:00
|
|
|
uint32_t W = CR.getBitWidth();
|
|
|
|
switch (Pred) {
|
2012-02-07 05:05:23 +00:00
|
|
|
default: llvm_unreachable("Invalid ICmp predicate to makeICmpRegion()");
|
2011-07-27 15:20:06 +00:00
|
|
|
case CmpInst::ICMP_EQ:
|
2009-07-11 17:04:01 +00:00
|
|
|
return CR;
|
2011-07-27 15:20:06 +00:00
|
|
|
case CmpInst::ICMP_NE:
|
2009-07-11 06:15:39 +00:00
|
|
|
if (CR.isSingleElement())
|
|
|
|
return ConstantRange(CR.getUpper(), CR.getLower());
|
|
|
|
return ConstantRange(W);
|
2011-07-27 15:20:06 +00:00
|
|
|
case CmpInst::ICMP_ULT: {
|
2010-09-28 18:18:36 +00:00
|
|
|
APInt UMax(CR.getUnsignedMax());
|
|
|
|
if (UMax.isMinValue())
|
|
|
|
return ConstantRange(W, /* empty */ false);
|
|
|
|
return ConstantRange(APInt::getMinValue(W), UMax);
|
|
|
|
}
|
2011-07-27 15:20:06 +00:00
|
|
|
case CmpInst::ICMP_SLT: {
|
2010-09-28 18:18:36 +00:00
|
|
|
APInt SMax(CR.getSignedMax());
|
|
|
|
if (SMax.isMinSignedValue())
|
|
|
|
return ConstantRange(W, /* empty */ false);
|
|
|
|
return ConstantRange(APInt::getSignedMinValue(W), SMax);
|
|
|
|
}
|
2011-07-27 15:20:06 +00:00
|
|
|
case CmpInst::ICMP_ULE: {
|
2009-07-11 06:15:39 +00:00
|
|
|
APInt UMax(CR.getUnsignedMax());
|
|
|
|
if (UMax.isMaxValue())
|
|
|
|
return ConstantRange(W);
|
|
|
|
return ConstantRange(APInt::getMinValue(W), UMax + 1);
|
|
|
|
}
|
2011-07-27 15:20:06 +00:00
|
|
|
case CmpInst::ICMP_SLE: {
|
2009-07-11 06:15:39 +00:00
|
|
|
APInt SMax(CR.getSignedMax());
|
2010-09-28 18:18:36 +00:00
|
|
|
if (SMax.isMaxSignedValue())
|
2009-07-11 06:15:39 +00:00
|
|
|
return ConstantRange(W);
|
|
|
|
return ConstantRange(APInt::getSignedMinValue(W), SMax + 1);
|
|
|
|
}
|
2011-07-27 15:20:06 +00:00
|
|
|
case CmpInst::ICMP_UGT: {
|
2010-09-28 18:18:36 +00:00
|
|
|
APInt UMin(CR.getUnsignedMin());
|
|
|
|
if (UMin.isMaxValue())
|
|
|
|
return ConstantRange(W, /* empty */ false);
|
|
|
|
return ConstantRange(UMin + 1, APInt::getNullValue(W));
|
|
|
|
}
|
2011-07-27 15:20:06 +00:00
|
|
|
case CmpInst::ICMP_SGT: {
|
2010-09-28 18:18:36 +00:00
|
|
|
APInt SMin(CR.getSignedMin());
|
|
|
|
if (SMin.isMaxSignedValue())
|
|
|
|
return ConstantRange(W, /* empty */ false);
|
|
|
|
return ConstantRange(SMin + 1, APInt::getSignedMinValue(W));
|
|
|
|
}
|
2011-07-27 15:20:06 +00:00
|
|
|
case CmpInst::ICMP_UGE: {
|
2009-07-11 06:15:39 +00:00
|
|
|
APInt UMin(CR.getUnsignedMin());
|
|
|
|
if (UMin.isMinValue())
|
|
|
|
return ConstantRange(W);
|
|
|
|
return ConstantRange(UMin, APInt::getNullValue(W));
|
|
|
|
}
|
2011-07-27 15:20:06 +00:00
|
|
|
case CmpInst::ICMP_SGE: {
|
2009-07-11 06:15:39 +00:00
|
|
|
APInt SMin(CR.getSignedMin());
|
|
|
|
if (SMin.isMinSignedValue())
|
|
|
|
return ConstantRange(W);
|
|
|
|
return ConstantRange(SMin, APInt::getSignedMinValue(W));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-09-01 23:53:36 +00:00
|
|
|
/// isFullSet - Return true if this set contains all of the elements possible
|
|
|
|
/// for this data-type
|
|
|
|
bool ConstantRange::isFullSet() const {
|
2007-04-26 16:42:07 +00:00
|
|
|
return Lower == Upper && Lower.isMaxValue();
|
2002-09-01 23:53:36 +00:00
|
|
|
}
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2002-09-01 23:53:36 +00:00
|
|
|
/// isEmptySet - Return true if this set contains no members.
|
|
|
|
///
|
|
|
|
bool ConstantRange::isEmptySet() const {
|
2007-04-26 16:42:07 +00:00
|
|
|
return Lower == Upper && Lower.isMinValue();
|
2002-09-01 23:53:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// isWrappedSet - Return true if this set wraps around the top of the range,
|
|
|
|
/// for example: [100, 8)
|
|
|
|
///
|
2007-03-01 07:54:15 +00:00
|
|
|
bool ConstantRange::isWrappedSet() const {
|
2007-02-28 17:36:23 +00:00
|
|
|
return Lower.ugt(Upper);
|
2002-09-01 23:53:36 +00:00
|
|
|
}
|
|
|
|
|
2010-09-06 23:52:49 +00:00
|
|
|
/// isSignWrappedSet - Return true if this set wraps around the INT_MIN of
|
|
|
|
/// its bitwidth, for example: i8 [120, 140).
|
|
|
|
///
|
|
|
|
bool ConstantRange::isSignWrappedSet() const {
|
|
|
|
return contains(APInt::getSignedMaxValue(getBitWidth())) &&
|
|
|
|
contains(APInt::getSignedMinValue(getBitWidth()));
|
|
|
|
}
|
|
|
|
|
2002-09-01 23:53:36 +00:00
|
|
|
/// getSetSize - Return the number of elements in this set.
|
|
|
|
///
|
2007-02-28 17:36:23 +00:00
|
|
|
APInt ConstantRange::getSetSize() const {
|
2012-07-17 15:43:59 +00:00
|
|
|
if (isFullSet()) {
|
|
|
|
APInt Size(getBitWidth()+1, 0);
|
|
|
|
Size.setBit(getBitWidth());
|
|
|
|
return Size;
|
2002-09-01 23:53:36 +00:00
|
|
|
}
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2012-07-17 15:43:59 +00:00
|
|
|
// This is also correct for wrapped sets.
|
2012-07-16 18:08:12 +00:00
|
|
|
return (Upper - Lower).zext(getBitWidth()+1);
|
2002-09-01 23:53:36 +00:00
|
|
|
}
|
|
|
|
|
2007-03-10 15:54:12 +00:00
|
|
|
/// getUnsignedMax - Return the largest unsigned value contained in the
|
|
|
|
/// ConstantRange.
|
|
|
|
///
|
|
|
|
APInt ConstantRange::getUnsignedMax() const {
|
|
|
|
if (isFullSet() || isWrappedSet())
|
|
|
|
return APInt::getMaxValue(getBitWidth());
|
2012-01-03 20:33:00 +00:00
|
|
|
return getUpper() - 1;
|
2007-03-10 15:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// getUnsignedMin - Return the smallest unsigned value contained in the
|
|
|
|
/// ConstantRange.
|
|
|
|
///
|
|
|
|
APInt ConstantRange::getUnsignedMin() const {
|
|
|
|
if (isFullSet() || (isWrappedSet() && getUpper() != 0))
|
|
|
|
return APInt::getMinValue(getBitWidth());
|
2012-01-03 20:33:00 +00:00
|
|
|
return getLower();
|
2007-03-10 15:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// getSignedMax - Return the largest signed value contained in the
|
|
|
|
/// ConstantRange.
|
|
|
|
///
|
|
|
|
APInt ConstantRange::getSignedMax() const {
|
2007-04-13 05:57:32 +00:00
|
|
|
APInt SignedMax(APInt::getSignedMaxValue(getBitWidth()));
|
2007-03-10 15:54:12 +00:00
|
|
|
if (!isWrappedSet()) {
|
2007-06-09 04:20:33 +00:00
|
|
|
if (getLower().sle(getUpper() - 1))
|
2007-03-10 15:54:12 +00:00
|
|
|
return getUpper() - 1;
|
2012-01-03 20:33:00 +00:00
|
|
|
return SignedMax;
|
2007-03-10 15:54:12 +00:00
|
|
|
}
|
2012-01-03 20:33:00 +00:00
|
|
|
if (getLower().isNegative() == getUpper().isNegative())
|
|
|
|
return SignedMax;
|
|
|
|
return getUpper() - 1;
|
2007-03-10 15:54:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// getSignedMin - Return the smallest signed value contained in the
|
|
|
|
/// ConstantRange.
|
|
|
|
///
|
|
|
|
APInt ConstantRange::getSignedMin() const {
|
2007-04-13 05:57:32 +00:00
|
|
|
APInt SignedMin(APInt::getSignedMinValue(getBitWidth()));
|
2007-03-10 15:54:12 +00:00
|
|
|
if (!isWrappedSet()) {
|
2007-06-09 04:20:33 +00:00
|
|
|
if (getLower().sle(getUpper() - 1))
|
2007-03-10 15:54:12 +00:00
|
|
|
return getLower();
|
2012-01-03 20:33:00 +00:00
|
|
|
return SignedMin;
|
|
|
|
}
|
|
|
|
if ((getUpper() - 1).slt(getLower())) {
|
|
|
|
if (getUpper() != SignedMin)
|
2007-03-10 15:54:12 +00:00
|
|
|
return SignedMin;
|
|
|
|
}
|
2012-01-03 20:33:00 +00:00
|
|
|
return getLower();
|
2007-03-10 15:54:12 +00:00
|
|
|
}
|
|
|
|
|
2004-03-30 00:20:08 +00:00
|
|
|
/// contains - Return true if the specified value is in the set.
|
|
|
|
///
|
2007-03-01 07:54:15 +00:00
|
|
|
bool ConstantRange::contains(const APInt &V) const {
|
|
|
|
if (Lower == Upper)
|
|
|
|
return isFullSet();
|
2004-03-30 00:20:08 +00:00
|
|
|
|
2007-03-01 07:54:15 +00:00
|
|
|
if (!isWrappedSet())
|
|
|
|
return Lower.ule(V) && V.ult(Upper);
|
2012-01-03 20:33:00 +00:00
|
|
|
return Lower.ule(V) || V.ult(Upper);
|
2004-03-30 00:20:08 +00:00
|
|
|
}
|
2002-09-01 23:53:36 +00:00
|
|
|
|
2009-07-11 06:15:39 +00:00
|
|
|
/// contains - Return true if the argument is a subset of this range.
|
2010-08-11 22:04:36 +00:00
|
|
|
/// Two equal sets contain each other. The empty set contained by all other
|
|
|
|
/// sets.
|
2009-07-11 06:15:39 +00:00
|
|
|
///
|
|
|
|
bool ConstantRange::contains(const ConstantRange &Other) const {
|
2010-08-11 22:04:36 +00:00
|
|
|
if (isFullSet() || Other.isEmptySet()) return true;
|
|
|
|
if (isEmptySet() || Other.isFullSet()) return false;
|
2009-07-11 06:15:39 +00:00
|
|
|
|
|
|
|
if (!isWrappedSet()) {
|
|
|
|
if (Other.isWrappedSet())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return Lower.ule(Other.getLower()) && Other.getUpper().ule(Upper);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Other.isWrappedSet())
|
|
|
|
return Other.getUpper().ule(Upper) ||
|
|
|
|
Lower.ule(Other.getLower());
|
|
|
|
|
|
|
|
return Other.getUpper().ule(Upper) && Lower.ule(Other.getLower());
|
|
|
|
}
|
|
|
|
|
2004-03-30 00:20:08 +00:00
|
|
|
/// subtract - Subtract the specified constant from the endpoints of this
|
|
|
|
/// constant range.
|
2007-02-28 19:57:34 +00:00
|
|
|
ConstantRange ConstantRange::subtract(const APInt &Val) const {
|
2007-02-28 22:02:48 +00:00
|
|
|
assert(Val.getBitWidth() == getBitWidth() && "Wrong bit width");
|
2004-03-30 00:20:08 +00:00
|
|
|
// If the set is empty or full, don't modify the endpoints.
|
2007-02-28 17:36:23 +00:00
|
|
|
if (Lower == Upper)
|
|
|
|
return *this;
|
|
|
|
return ConstantRange(Lower - Val, Upper - Val);
|
2004-03-30 00:20:08 +00:00
|
|
|
}
|
|
|
|
|
2012-06-28 16:10:13 +00:00
|
|
|
/// \brief Subtract the specified range from this range (aka relative complement
|
|
|
|
/// of the sets).
|
|
|
|
ConstantRange ConstantRange::difference(const ConstantRange &CR) const {
|
|
|
|
return intersectWith(CR.inverse());
|
|
|
|
}
|
|
|
|
|
2007-02-11 00:58:49 +00:00
|
|
|
/// intersectWith - Return the range that results from the intersection of this
|
2009-07-18 06:34:42 +00:00
|
|
|
/// range with another range. The resultant range is guaranteed to include all
|
|
|
|
/// elements contained in both input ranges, and to have the smallest possible
|
|
|
|
/// set size that does so. Because there may be two intersections with the
|
|
|
|
/// same set size, A.intersectWith(B) might not be equal to B.intersectWith(A).
|
2007-03-01 07:54:15 +00:00
|
|
|
ConstantRange ConstantRange::intersectWith(const ConstantRange &CR) const {
|
2007-07-14 02:51:34 +00:00
|
|
|
assert(getBitWidth() == CR.getBitWidth() &&
|
|
|
|
"ConstantRange types don't agree!");
|
|
|
|
|
|
|
|
// Handle common cases.
|
|
|
|
if ( isEmptySet() || CR.isFullSet()) return *this;
|
|
|
|
if (CR.isEmptySet() || isFullSet()) return CR;
|
|
|
|
|
|
|
|
if (!isWrappedSet() && CR.isWrappedSet())
|
2009-07-18 06:34:42 +00:00
|
|
|
return CR.intersectWith(*this);
|
2007-07-14 02:51:34 +00:00
|
|
|
|
|
|
|
if (!isWrappedSet() && !CR.isWrappedSet()) {
|
|
|
|
if (Lower.ult(CR.Lower)) {
|
|
|
|
if (Upper.ule(CR.Lower))
|
|
|
|
return ConstantRange(getBitWidth(), false);
|
|
|
|
|
|
|
|
if (Upper.ult(CR.Upper))
|
|
|
|
return ConstantRange(CR.Lower, Upper);
|
|
|
|
|
|
|
|
return CR;
|
2012-01-03 20:33:00 +00:00
|
|
|
}
|
|
|
|
if (Upper.ult(CR.Upper))
|
|
|
|
return *this;
|
2007-07-14 02:51:34 +00:00
|
|
|
|
2012-01-03 20:33:00 +00:00
|
|
|
if (Lower.ult(CR.Upper))
|
|
|
|
return ConstantRange(Lower, CR.Upper);
|
2007-07-14 02:51:34 +00:00
|
|
|
|
2012-01-03 20:33:00 +00:00
|
|
|
return ConstantRange(getBitWidth(), false);
|
2007-07-14 02:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isWrappedSet() && !CR.isWrappedSet()) {
|
|
|
|
if (CR.Lower.ult(Upper)) {
|
|
|
|
if (CR.Upper.ult(Upper))
|
|
|
|
return CR;
|
|
|
|
|
2012-05-18 00:14:36 +00:00
|
|
|
if (CR.Upper.ule(Lower))
|
2007-07-14 02:51:34 +00:00
|
|
|
return ConstantRange(CR.Lower, Upper);
|
|
|
|
|
|
|
|
if (getSetSize().ult(CR.getSetSize()))
|
|
|
|
return *this;
|
2012-01-03 20:33:00 +00:00
|
|
|
return CR;
|
|
|
|
}
|
|
|
|
if (CR.Lower.ult(Lower)) {
|
2007-07-14 02:51:34 +00:00
|
|
|
if (CR.Upper.ule(Lower))
|
|
|
|
return ConstantRange(getBitWidth(), false);
|
|
|
|
|
|
|
|
return ConstantRange(Lower, CR.Upper);
|
|
|
|
}
|
|
|
|
return CR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CR.Upper.ult(Upper)) {
|
|
|
|
if (CR.Lower.ult(Upper)) {
|
|
|
|
if (getSetSize().ult(CR.getSetSize()))
|
|
|
|
return *this;
|
2012-01-03 20:33:00 +00:00
|
|
|
return CR;
|
2007-07-14 02:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (CR.Lower.ult(Lower))
|
|
|
|
return ConstantRange(Lower, CR.Upper);
|
|
|
|
|
|
|
|
return CR;
|
2012-01-03 20:33:00 +00:00
|
|
|
}
|
2012-06-28 00:59:33 +00:00
|
|
|
if (CR.Upper.ule(Lower)) {
|
2007-07-14 02:51:34 +00:00
|
|
|
if (CR.Lower.ult(Lower))
|
|
|
|
return *this;
|
|
|
|
|
|
|
|
return ConstantRange(CR.Lower, Upper);
|
|
|
|
}
|
|
|
|
if (getSetSize().ult(CR.getSetSize()))
|
|
|
|
return *this;
|
2012-01-03 20:33:00 +00:00
|
|
|
return CR;
|
2007-07-14 02:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-02-11 00:58:49 +00:00
|
|
|
/// unionWith - Return the range that results from the union of this range with
|
2002-09-01 23:53:36 +00:00
|
|
|
/// another range. The resultant range is guaranteed to include the elements of
|
2007-04-01 03:47:44 +00:00
|
|
|
/// both sets, but may contain more. For example, [3, 9) union [12,15) is
|
|
|
|
/// [3, 15), which includes 9, 10, and 11, which were not included in either
|
|
|
|
/// set before.
|
2002-09-01 23:53:36 +00:00
|
|
|
///
|
2007-03-01 07:54:15 +00:00
|
|
|
ConstantRange ConstantRange::unionWith(const ConstantRange &CR) const {
|
2007-02-28 22:02:48 +00:00
|
|
|
assert(getBitWidth() == CR.getBitWidth() &&
|
|
|
|
"ConstantRange types don't agree!");
|
2002-09-01 23:53:36 +00:00
|
|
|
|
2007-03-02 03:33:05 +00:00
|
|
|
if ( isFullSet() || CR.isEmptySet()) return *this;
|
|
|
|
if (CR.isFullSet() || isEmptySet()) return CR;
|
2002-09-01 23:53:36 +00:00
|
|
|
|
2007-04-01 03:47:44 +00:00
|
|
|
if (!isWrappedSet() && CR.isWrappedSet()) return CR.unionWith(*this);
|
|
|
|
|
|
|
|
if (!isWrappedSet() && !CR.isWrappedSet()) {
|
2009-07-19 03:44:35 +00:00
|
|
|
if (CR.Upper.ult(Lower) || Upper.ult(CR.Lower)) {
|
|
|
|
// If the two ranges are disjoint, find the smaller gap and bridge it.
|
|
|
|
APInt d1 = CR.Lower - Upper, d2 = Lower - CR.Upper;
|
|
|
|
if (d1.ult(d2))
|
|
|
|
return ConstantRange(Lower, CR.Upper);
|
2012-01-03 20:33:00 +00:00
|
|
|
return ConstantRange(CR.Lower, Upper);
|
2009-07-19 03:44:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
APInt L = Lower, U = Upper;
|
2007-04-01 03:47:44 +00:00
|
|
|
if (CR.Lower.ult(L))
|
|
|
|
L = CR.Lower;
|
2009-07-19 03:44:35 +00:00
|
|
|
if ((CR.Upper - 1).ugt(U - 1))
|
2007-04-01 03:47:44 +00:00
|
|
|
U = CR.Upper;
|
2009-07-19 03:44:35 +00:00
|
|
|
|
|
|
|
if (L == 0 && U == 0)
|
|
|
|
return ConstantRange(getBitWidth());
|
|
|
|
|
|
|
|
return ConstantRange(L, U);
|
2007-04-01 03:47:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-19 03:44:35 +00:00
|
|
|
if (!CR.isWrappedSet()) {
|
|
|
|
// ------U L----- and ------U L----- : this
|
|
|
|
// L--U L--U : CR
|
|
|
|
if (CR.Upper.ule(Upper) || CR.Lower.uge(Lower))
|
2007-04-01 03:47:44 +00:00
|
|
|
return *this;
|
|
|
|
|
2009-07-19 03:44:35 +00:00
|
|
|
// ------U L----- : this
|
|
|
|
// L---------U : CR
|
|
|
|
if (CR.Lower.ule(Upper) && Lower.ule(CR.Upper))
|
2007-04-01 03:47:44 +00:00
|
|
|
return ConstantRange(getBitWidth());
|
|
|
|
|
2009-07-19 03:44:35 +00:00
|
|
|
// ----U L---- : this
|
|
|
|
// L---U : CR
|
|
|
|
// <d1> <d2>
|
|
|
|
if (Upper.ule(CR.Lower) && CR.Upper.ule(Lower)) {
|
2007-04-01 03:47:44 +00:00
|
|
|
APInt d1 = CR.Lower - Upper, d2 = Lower - CR.Upper;
|
2009-07-19 03:44:35 +00:00
|
|
|
if (d1.ult(d2))
|
|
|
|
return ConstantRange(Lower, CR.Upper);
|
2012-01-03 20:33:00 +00:00
|
|
|
return ConstantRange(CR.Lower, Upper);
|
2007-04-01 03:47:44 +00:00
|
|
|
}
|
2007-03-02 03:33:05 +00:00
|
|
|
|
2009-07-19 03:44:35 +00:00
|
|
|
// ----U L----- : this
|
|
|
|
// L----U : CR
|
|
|
|
if (Upper.ult(CR.Lower) && Lower.ult(CR.Upper))
|
|
|
|
return ConstantRange(CR.Lower, Upper);
|
2007-04-01 03:47:44 +00:00
|
|
|
|
2009-07-19 03:44:35 +00:00
|
|
|
// ------U L---- : this
|
|
|
|
// L-----U : CR
|
2012-01-03 20:33:00 +00:00
|
|
|
assert(CR.Lower.ult(Upper) && CR.Upper.ult(Lower) &&
|
|
|
|
"ConstantRange::unionWith missed a case with one range wrapped");
|
|
|
|
return ConstantRange(Lower, CR.Upper);
|
2007-04-01 03:47:44 +00:00
|
|
|
}
|
|
|
|
|
2009-07-19 03:44:35 +00:00
|
|
|
// ------U L---- and ------U L---- : this
|
|
|
|
// -U L----------- and ------------U L : CR
|
|
|
|
if (CR.Lower.ule(Upper) || Lower.ule(CR.Upper))
|
|
|
|
return ConstantRange(getBitWidth());
|
2007-04-01 03:47:44 +00:00
|
|
|
|
2009-07-19 03:44:35 +00:00
|
|
|
APInt L = Lower, U = Upper;
|
|
|
|
if (CR.Upper.ugt(U))
|
|
|
|
U = CR.Upper;
|
|
|
|
if (CR.Lower.ult(L))
|
|
|
|
L = CR.Lower;
|
2007-03-02 03:33:05 +00:00
|
|
|
|
|
|
|
return ConstantRange(L, U);
|
2002-09-01 23:53:36 +00:00
|
|
|
}
|
2002-09-02 00:18:22 +00:00
|
|
|
|
2004-03-30 00:20:08 +00:00
|
|
|
/// zeroExtend - Return a new range in the specified integer type, which must
|
|
|
|
/// be strictly larger than the current type. The returned range will
|
2006-12-23 06:05:41 +00:00
|
|
|
/// correspond to the possible range of values as if the source range had been
|
2004-03-30 00:20:08 +00:00
|
|
|
/// zero extended.
|
2007-02-28 22:02:48 +00:00
|
|
|
ConstantRange ConstantRange::zeroExtend(uint32_t DstTySize) const {
|
2010-09-06 23:52:49 +00:00
|
|
|
if (isEmptySet()) return ConstantRange(DstTySize, /*isFullSet=*/false);
|
|
|
|
|
2007-02-28 22:02:48 +00:00
|
|
|
unsigned SrcTySize = getBitWidth();
|
2007-02-28 17:36:23 +00:00
|
|
|
assert(SrcTySize < DstTySize && "Not a value extension");
|
2012-07-23 20:33:29 +00:00
|
|
|
if (isFullSet() || isWrappedSet()) {
|
2010-09-06 23:52:49 +00:00
|
|
|
// Change into [0, 1 << src bit width)
|
2012-07-23 20:33:29 +00:00
|
|
|
APInt LowerExt(DstTySize, 0);
|
|
|
|
if (!Upper) // special case: [X, 0) -- not really wrapping around
|
|
|
|
LowerExt = Lower.zext(DstTySize);
|
2013-07-11 16:05:50 +00:00
|
|
|
return ConstantRange(LowerExt, APInt::getOneBitSet(DstTySize, SrcTySize));
|
2012-07-23 20:33:29 +00:00
|
|
|
}
|
2004-03-30 00:20:08 +00:00
|
|
|
|
2010-12-07 08:25:19 +00:00
|
|
|
return ConstantRange(Lower.zext(DstTySize), Upper.zext(DstTySize));
|
2007-04-07 15:41:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// signExtend - Return a new range in the specified integer type, which must
|
|
|
|
/// be strictly larger than the current type. The returned range will
|
|
|
|
/// correspond to the possible range of values as if the source range had been
|
|
|
|
/// sign extended.
|
|
|
|
ConstantRange ConstantRange::signExtend(uint32_t DstTySize) const {
|
2010-09-06 23:52:49 +00:00
|
|
|
if (isEmptySet()) return ConstantRange(DstTySize, /*isFullSet=*/false);
|
|
|
|
|
2007-04-07 15:41:33 +00:00
|
|
|
unsigned SrcTySize = getBitWidth();
|
|
|
|
assert(SrcTySize < DstTySize && "Not a value extension");
|
2013-10-30 15:36:50 +00:00
|
|
|
|
|
|
|
// special case: [X, INT_MIN) -- not really wrapping around
|
2013-10-31 19:53:53 +00:00
|
|
|
if (Upper.isMinSignedValue())
|
2013-10-30 15:36:50 +00:00
|
|
|
return ConstantRange(Lower.sext(DstTySize), Upper.zext(DstTySize));
|
|
|
|
|
2010-09-06 23:52:49 +00:00
|
|
|
if (isFullSet() || isSignWrappedSet()) {
|
2007-04-07 15:41:33 +00:00
|
|
|
return ConstantRange(APInt::getHighBitsSet(DstTySize,DstTySize-SrcTySize+1),
|
2009-07-13 04:17:23 +00:00
|
|
|
APInt::getLowBitsSet(DstTySize, SrcTySize-1) + 1);
|
2007-04-07 15:41:33 +00:00
|
|
|
}
|
|
|
|
|
2010-12-07 08:25:19 +00:00
|
|
|
return ConstantRange(Lower.sext(DstTySize), Upper.sext(DstTySize));
|
2004-03-30 00:20:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// truncate - Return a new range in the specified integer type, which must be
|
|
|
|
/// strictly smaller than the current type. The returned range will
|
2006-12-23 06:05:41 +00:00
|
|
|
/// correspond to the possible range of values as if the source range had been
|
2004-03-30 00:20:08 +00:00
|
|
|
/// truncated to the specified type.
|
2007-02-28 22:02:48 +00:00
|
|
|
ConstantRange ConstantRange::truncate(uint32_t DstTySize) const {
|
2011-11-24 17:24:33 +00:00
|
|
|
assert(getBitWidth() > DstTySize && "Not a value truncation");
|
2012-07-19 16:27:45 +00:00
|
|
|
if (isEmptySet())
|
|
|
|
return ConstantRange(DstTySize, /*isFullSet=*/false);
|
|
|
|
if (isFullSet())
|
2010-08-11 22:04:36 +00:00
|
|
|
return ConstantRange(DstTySize, /*isFullSet=*/true);
|
2004-03-30 00:20:08 +00:00
|
|
|
|
2012-07-19 16:27:45 +00:00
|
|
|
APInt MaxValue = APInt::getMaxValue(DstTySize).zext(getBitWidth());
|
|
|
|
APInt MaxBitValue(getBitWidth(), 0);
|
|
|
|
MaxBitValue.setBit(DstTySize);
|
|
|
|
|
|
|
|
APInt LowerDiv(Lower), UpperDiv(Upper);
|
|
|
|
ConstantRange Union(DstTySize, /*isFullSet=*/false);
|
|
|
|
|
|
|
|
// Analyze wrapped sets in their two parts: [0, Upper) \/ [Lower, MaxValue]
|
|
|
|
// We use the non-wrapped set code to analyze the [Lower, MaxValue) part, and
|
|
|
|
// then we do the union with [MaxValue, Upper)
|
|
|
|
if (isWrappedSet()) {
|
|
|
|
// if Upper is greater than Max Value, it covers the whole truncated range.
|
|
|
|
if (Upper.uge(MaxValue))
|
|
|
|
return ConstantRange(DstTySize, /*isFullSet=*/true);
|
|
|
|
|
|
|
|
Union = ConstantRange(APInt::getMaxValue(DstTySize),Upper.trunc(DstTySize));
|
|
|
|
UpperDiv = APInt::getMaxValue(getBitWidth());
|
|
|
|
|
|
|
|
// Union covers the MaxValue case, so return if the remaining range is just
|
|
|
|
// MaxValue.
|
|
|
|
if (LowerDiv == UpperDiv)
|
|
|
|
return Union;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Chop off the most significant bits that are past the destination bitwidth.
|
|
|
|
if (LowerDiv.uge(MaxValue)) {
|
|
|
|
APInt Div(getBitWidth(), 0);
|
|
|
|
APInt::udivrem(LowerDiv, MaxBitValue, Div, LowerDiv);
|
|
|
|
UpperDiv = UpperDiv - MaxBitValue * Div;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (UpperDiv.ule(MaxValue))
|
|
|
|
return ConstantRange(LowerDiv.trunc(DstTySize),
|
|
|
|
UpperDiv.trunc(DstTySize)).unionWith(Union);
|
|
|
|
|
|
|
|
// The truncated value wrapps around. Check if we can do better than fullset.
|
|
|
|
APInt UpperModulo = UpperDiv - MaxBitValue;
|
|
|
|
if (UpperModulo.ult(LowerDiv))
|
|
|
|
return ConstantRange(LowerDiv.trunc(DstTySize),
|
|
|
|
UpperModulo.trunc(DstTySize)).unionWith(Union);
|
|
|
|
|
|
|
|
return ConstantRange(DstTySize, /*isFullSet=*/true);
|
2004-03-30 00:20:08 +00:00
|
|
|
}
|
|
|
|
|
2009-11-09 15:36:28 +00:00
|
|
|
/// zextOrTrunc - make this range have the bit width given by \p DstTySize. The
|
|
|
|
/// value is zero extended, truncated, or left alone to make it that width.
|
|
|
|
ConstantRange ConstantRange::zextOrTrunc(uint32_t DstTySize) const {
|
|
|
|
unsigned SrcTySize = getBitWidth();
|
|
|
|
if (SrcTySize > DstTySize)
|
|
|
|
return truncate(DstTySize);
|
2012-01-03 20:33:00 +00:00
|
|
|
if (SrcTySize < DstTySize)
|
2009-11-09 15:36:28 +00:00
|
|
|
return zeroExtend(DstTySize);
|
2012-01-03 20:33:00 +00:00
|
|
|
return *this;
|
2009-11-09 15:36:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// sextOrTrunc - make this range have the bit width given by \p DstTySize. The
|
|
|
|
/// value is sign extended, truncated, or left alone to make it that width.
|
|
|
|
ConstantRange ConstantRange::sextOrTrunc(uint32_t DstTySize) const {
|
|
|
|
unsigned SrcTySize = getBitWidth();
|
|
|
|
if (SrcTySize > DstTySize)
|
|
|
|
return truncate(DstTySize);
|
2012-01-03 20:33:00 +00:00
|
|
|
if (SrcTySize < DstTySize)
|
2009-11-09 15:36:28 +00:00
|
|
|
return signExtend(DstTySize);
|
2012-01-03 20:33:00 +00:00
|
|
|
return *this;
|
2009-11-09 15:36:28 +00:00
|
|
|
}
|
|
|
|
|
2009-07-09 22:07:27 +00:00
|
|
|
ConstantRange
|
|
|
|
ConstantRange::add(const ConstantRange &Other) const {
|
|
|
|
if (isEmptySet() || Other.isEmptySet())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/false);
|
2009-07-13 02:49:08 +00:00
|
|
|
if (isFullSet() || Other.isFullSet())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
2009-07-09 22:07:27 +00:00
|
|
|
|
|
|
|
APInt Spread_X = getSetSize(), Spread_Y = Other.getSetSize();
|
|
|
|
APInt NewLower = getLower() + Other.getLower();
|
|
|
|
APInt NewUpper = getUpper() + Other.getUpper() - 1;
|
|
|
|
if (NewLower == NewUpper)
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
|
|
|
|
|
|
|
ConstantRange X = ConstantRange(NewLower, NewUpper);
|
|
|
|
if (X.getSetSize().ult(Spread_X) || X.getSetSize().ult(Spread_Y))
|
|
|
|
// We've wrapped, therefore, full set.
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
|
|
|
|
|
|
|
return X;
|
|
|
|
}
|
|
|
|
|
2010-08-11 22:04:36 +00:00
|
|
|
ConstantRange
|
|
|
|
ConstantRange::sub(const ConstantRange &Other) const {
|
|
|
|
if (isEmptySet() || Other.isEmptySet())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/false);
|
|
|
|
if (isFullSet() || Other.isFullSet())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
|
|
|
|
|
|
|
APInt Spread_X = getSetSize(), Spread_Y = Other.getSetSize();
|
2011-06-22 21:13:46 +00:00
|
|
|
APInt NewLower = getLower() - Other.getUpper() + 1;
|
|
|
|
APInt NewUpper = getUpper() - Other.getLower();
|
2010-08-11 22:04:36 +00:00
|
|
|
if (NewLower == NewUpper)
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
|
|
|
|
|
|
|
ConstantRange X = ConstantRange(NewLower, NewUpper);
|
|
|
|
if (X.getSetSize().ult(Spread_X) || X.getSetSize().ult(Spread_Y))
|
|
|
|
// We've wrapped, therefore, full set.
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
|
|
|
|
|
|
|
return X;
|
|
|
|
}
|
|
|
|
|
2009-07-09 22:07:27 +00:00
|
|
|
ConstantRange
|
|
|
|
ConstantRange::multiply(const ConstantRange &Other) const {
|
2010-01-26 15:56:18 +00:00
|
|
|
// TODO: If either operand is a single element and the multiply is known to
|
|
|
|
// be non-wrapping, round the result min and max value to the appropriate
|
|
|
|
// multiple of that element. If wrapping is possible, at least adjust the
|
|
|
|
// range according to the greatest power-of-two factor of the single element.
|
2010-01-26 04:13:15 +00:00
|
|
|
|
2009-07-12 02:19:05 +00:00
|
|
|
if (isEmptySet() || Other.isEmptySet())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/false);
|
2012-07-16 20:47:16 +00:00
|
|
|
|
2009-07-13 03:27:41 +00:00
|
|
|
APInt this_min = getUnsignedMin().zext(getBitWidth() * 2);
|
|
|
|
APInt this_max = getUnsignedMax().zext(getBitWidth() * 2);
|
|
|
|
APInt Other_min = Other.getUnsignedMin().zext(getBitWidth() * 2);
|
|
|
|
APInt Other_max = Other.getUnsignedMax().zext(getBitWidth() * 2);
|
2009-07-12 02:19:05 +00:00
|
|
|
|
2009-07-13 03:27:41 +00:00
|
|
|
ConstantRange Result_zext = ConstantRange(this_min * Other_min,
|
|
|
|
this_max * Other_max + 1);
|
2009-07-12 02:19:05 +00:00
|
|
|
return Result_zext.truncate(getBitWidth());
|
2009-07-09 22:07:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ConstantRange
|
|
|
|
ConstantRange::smax(const ConstantRange &Other) const {
|
2009-07-09 23:16:10 +00:00
|
|
|
// X smax Y is: range(smax(X_smin, Y_smin),
|
|
|
|
// smax(X_smax, Y_smax))
|
|
|
|
if (isEmptySet() || Other.isEmptySet())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/false);
|
|
|
|
APInt NewL = APIntOps::smax(getSignedMin(), Other.getSignedMin());
|
|
|
|
APInt NewU = APIntOps::smax(getSignedMax(), Other.getSignedMax()) + 1;
|
|
|
|
if (NewU == NewL)
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
|
|
|
return ConstantRange(NewL, NewU);
|
2009-07-09 22:07:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ConstantRange
|
|
|
|
ConstantRange::umax(const ConstantRange &Other) const {
|
|
|
|
// X umax Y is: range(umax(X_umin, Y_umin),
|
|
|
|
// umax(X_umax, Y_umax))
|
|
|
|
if (isEmptySet() || Other.isEmptySet())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/false);
|
|
|
|
APInt NewL = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin());
|
|
|
|
APInt NewU = APIntOps::umax(getUnsignedMax(), Other.getUnsignedMax()) + 1;
|
|
|
|
if (NewU == NewL)
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
|
|
|
return ConstantRange(NewL, NewU);
|
|
|
|
}
|
|
|
|
|
|
|
|
ConstantRange
|
2009-07-12 05:18:18 +00:00
|
|
|
ConstantRange::udiv(const ConstantRange &RHS) const {
|
|
|
|
if (isEmptySet() || RHS.isEmptySet() || RHS.getUnsignedMax() == 0)
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/false);
|
|
|
|
if (RHS.isFullSet())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
|
|
|
|
|
|
|
APInt Lower = getUnsignedMin().udiv(RHS.getUnsignedMax());
|
|
|
|
|
|
|
|
APInt RHS_umin = RHS.getUnsignedMin();
|
|
|
|
if (RHS_umin == 0) {
|
|
|
|
// We want the lowest value in RHS excluding zero. Usually that would be 1
|
|
|
|
// except for a range in the form of [X, 1) in which case it would be X.
|
|
|
|
if (RHS.getUpper() == 1)
|
|
|
|
RHS_umin = RHS.getLower();
|
|
|
|
else
|
|
|
|
RHS_umin = APInt(getBitWidth(), 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
APInt Upper = getUnsignedMax().udiv(RHS_umin) + 1;
|
|
|
|
|
|
|
|
// If the LHS is Full and the RHS is a wrapped interval containing 1 then
|
|
|
|
// this could occur.
|
|
|
|
if (Lower == Upper)
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
|
|
|
|
|
|
|
return ConstantRange(Lower, Upper);
|
2009-07-09 22:07:27 +00:00
|
|
|
}
|
|
|
|
|
2010-09-07 05:39:02 +00:00
|
|
|
ConstantRange
|
|
|
|
ConstantRange::binaryAnd(const ConstantRange &Other) const {
|
|
|
|
if (isEmptySet() || Other.isEmptySet())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/false);
|
|
|
|
|
|
|
|
// TODO: replace this with something less conservative
|
|
|
|
|
|
|
|
APInt umin = APIntOps::umin(Other.getUnsignedMax(), getUnsignedMax());
|
|
|
|
if (umin.isAllOnesValue())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
|
|
|
return ConstantRange(APInt::getNullValue(getBitWidth()), umin + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
ConstantRange
|
|
|
|
ConstantRange::binaryOr(const ConstantRange &Other) const {
|
|
|
|
if (isEmptySet() || Other.isEmptySet())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/false);
|
|
|
|
|
|
|
|
// TODO: replace this with something less conservative
|
|
|
|
|
|
|
|
APInt umax = APIntOps::umax(getUnsignedMin(), Other.getUnsignedMin());
|
|
|
|
if (umax.isMinValue())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
|
|
|
return ConstantRange(umax, APInt::getNullValue(getBitWidth()));
|
|
|
|
}
|
|
|
|
|
2009-11-12 14:53:53 +00:00
|
|
|
ConstantRange
|
2010-08-11 22:04:36 +00:00
|
|
|
ConstantRange::shl(const ConstantRange &Other) const {
|
|
|
|
if (isEmptySet() || Other.isEmptySet())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/false);
|
2009-11-12 14:53:53 +00:00
|
|
|
|
2010-08-11 22:04:36 +00:00
|
|
|
APInt min = getUnsignedMin().shl(Other.getUnsignedMin());
|
|
|
|
APInt max = getUnsignedMax().shl(Other.getUnsignedMax());
|
2009-11-12 14:53:53 +00:00
|
|
|
|
|
|
|
// there's no overflow!
|
2009-11-12 15:10:33 +00:00
|
|
|
APInt Zeros(getBitWidth(), getUnsignedMax().countLeadingZeros());
|
2010-08-11 22:04:36 +00:00
|
|
|
if (Zeros.ugt(Other.getUnsignedMax()))
|
|
|
|
return ConstantRange(min, max + 1);
|
2009-11-12 14:53:53 +00:00
|
|
|
|
|
|
|
// FIXME: implement the other tricky cases
|
2010-08-11 22:04:36 +00:00
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
2009-11-12 14:53:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ConstantRange
|
2010-08-11 22:04:36 +00:00
|
|
|
ConstantRange::lshr(const ConstantRange &Other) const {
|
|
|
|
if (isEmptySet() || Other.isEmptySet())
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/false);
|
2009-11-12 14:53:53 +00:00
|
|
|
|
2010-08-11 22:04:36 +00:00
|
|
|
APInt max = getUnsignedMax().lshr(Other.getUnsignedMin());
|
|
|
|
APInt min = getUnsignedMin().lshr(Other.getUnsignedMax());
|
|
|
|
if (min == max + 1)
|
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
|
|
|
|
|
|
|
return ConstantRange(min, max + 1);
|
2009-11-12 14:53:53 +00:00
|
|
|
}
|
|
|
|
|
2010-08-07 05:47:46 +00:00
|
|
|
ConstantRange ConstantRange::inverse() const {
|
2012-01-03 20:33:00 +00:00
|
|
|
if (isFullSet())
|
2010-08-11 22:04:36 +00:00
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/false);
|
2012-01-03 20:33:00 +00:00
|
|
|
if (isEmptySet())
|
2010-08-11 22:04:36 +00:00
|
|
|
return ConstantRange(getBitWidth(), /*isFullSet=*/true);
|
2010-08-07 05:47:46 +00:00
|
|
|
return ConstantRange(Upper, Lower);
|
|
|
|
}
|
|
|
|
|
2009-07-09 23:16:10 +00:00
|
|
|
/// print - Print out the bounds to a stream...
|
2009-07-09 22:07:27 +00:00
|
|
|
///
|
2009-07-09 23:16:10 +00:00
|
|
|
void ConstantRange::print(raw_ostream &OS) const {
|
2010-01-26 04:12:55 +00:00
|
|
|
if (isFullSet())
|
|
|
|
OS << "full-set";
|
|
|
|
else if (isEmptySet())
|
|
|
|
OS << "empty-set";
|
|
|
|
else
|
|
|
|
OS << "[" << Lower << "," << Upper << ")";
|
2009-07-09 22:07:27 +00:00
|
|
|
}
|
|
|
|
|
2009-07-09 23:16:10 +00:00
|
|
|
/// dump - Allow printing from a debugger easily...
|
2009-07-09 22:07:27 +00:00
|
|
|
///
|
2009-07-09 23:16:10 +00:00
|
|
|
void ConstantRange::dump() const {
|
2010-01-05 01:28:32 +00:00
|
|
|
print(dbgs());
|
2009-07-09 22:07:27 +00:00
|
|
|
}
|