ROSE 0.11.145.147
Classes | Public Types | Public Member Functions | Static Public Member Functions | List of all members
Sawyer::Container::Interval< T > Class Template Reference

Description

template<class T>
class Sawyer::Container::Interval< T >

Range of values delimited by endpoints.

This class represents a range of contiguous values by specifying the lower and upper end points, both of which are included in the range. Alternatively, a range may be empty; the default constructor creates empty ranges. The value type, T, is intended to be an unsigned integer type. Signed integers may be used, but the caller should be prepared to handle negative sizes due to overflow (see size). Non-integer types are not recommended since some methods (e.g., size) assume that n and n+1 are adjacent values, which is not the case for floating point.

Values of this type are immutable except for the assignment operator; operations like intersection return a new object rather than modifying an existing object.

Definition at line 31 of file Interval.h.

#include <Sawyer/Interval.h>

Inheritance diagram for Sawyer::Container::Interval< T >:
Inheritance graph
[legend]

Classes

class  ConstIterator
 Bidirectional forward iterator. More...
 

Public Types

typedef T Value
 Types of values in the interval.
 
typedef ConstIterator const_iterator
 
typedef ConstIterator iterator
 

Public Member Functions

 Interval ()
 Constructs an empty interval.
 
 Interval (const Interval &other)
 Copy-constructs an interval.
 
 Interval (T value)
 Constructs a singleton interval.
 
Intervaloperator= (const Interval &other)
 Assignment from an interval.
 
Intervaloperator= (T value)
 Assignment from a scalar.
 
least () const
 Returns lower limit.
 
greatest () const
 Returns upper limit.
 
bool isEmpty () const
 True if interval is empty.
 
bool isSingleton () const
 True if interval is a singleton.
 
bool isWhole () const
 True if interval covers entire space.
 
Value size () const
 Size of interval.
 
Interval hull (const Interval &other) const
 Hull.
 
Interval hull (T value) const
 Hull.
 
std::pair< Interval, Intervalsplit (T splitPoint) const
 Split interval in two.
 
Interval join (const Interval &right) const
 Creates an interval by joining two adjacent intervals.
 
Interval shiftRightSat (Value n) const
 Shift interval upward.
 
ConstIterator begin () const
 Iterator positioned at the least value.
 
ConstIterator end () const
 Iterator positioned one past the greatest value.
 
boost::iterator_range< ConstIteratorvalues () const
 Iterator range for values.
 
 operator unspecified_bool () const
 Type for Boolean context.
 
bool overlaps (const Interval &other) const
 True if two intervals overlap.
 
bool isOverlapping (const Interval &other) const
 True if two intervals overlap.
 
bool contains (const Interval &other) const
 Containment predicate.
 
bool isContaining (const Interval &other) const
 Containment predicate.
 
bool isLeftAdjacent (const Interval &right) const
 Adjacency predicate.
 
bool isRightAdjacent (const Interval &left) const
 Adjacency predicate.
 
bool isAdjacent (const Interval &other) const
 Adjacency predicate.
 
bool isLeftOf (const Interval &right) const
 Relative position predicate.
 
bool isRightOf (const Interval &left) const
 Relative position predicate.
 
bool operator== (const Interval &other) const
 Equality test.
 
bool operator!= (const Interval &other) const
 Equality test.
 
Interval intersection (const Interval &other) const
 Intersection.
 
Interval operator& (const Interval &other) const
 Intersection.
 

Static Public Member Functions

static Interval hull (T v1, T v2)
 Construct an interval from two endpoints.
 
static Interval baseSize (T lo, T size)
 Construct an interval from one endpoint and a size.
 
static Interval baseSizeSat (T lo, T size)
 Construct an interval from one endpoint and size, and clip overflows.
 
static Interval whole ()
 Construct an interval that covers the entire domain.
 
static bool baseSizeOverflows (T base, T size)
 Tests whether a base and size overflows.
 

Member Typedef Documentation

◆ Value

template<class T >
typedef T Sawyer::Container::Interval< T >::Value

Types of values in the interval.

Definition at line 34 of file Interval.h.

◆ const_iterator

template<class T >
typedef ConstIterator Sawyer::Container::Interval< T >::const_iterator

Definition at line 413 of file Interval.h.

◆ iterator

template<class T >
typedef ConstIterator Sawyer::Container::Interval< T >::iterator

Definition at line 414 of file Interval.h.

Constructor & Destructor Documentation

◆ Interval() [1/3]

template<class T >
Sawyer::Container::Interval< T >::Interval ( )
inline

Constructs an empty interval.

Definition at line 141 of file Interval.h.

◆ Interval() [2/3]

template<class T >
Sawyer::Container::Interval< T >::Interval ( const Interval< T > &  other)
inline

Copy-constructs an interval.

Definition at line 144 of file Interval.h.

◆ Interval() [3/3]

template<class T >
Sawyer::Container::Interval< T >::Interval ( value)
inline

Constructs a singleton interval.

Definition at line 147 of file Interval.h.

Member Function Documentation

◆ hull() [1/3]

template<class T >
static Interval Sawyer::Container::Interval< T >::hull ( v1,
v2 
)
inlinestatic

◆ baseSize()

template<class T >
static Interval Sawyer::Container::Interval< T >::baseSize ( lo,
size 
)
inlinestatic

Construct an interval from one endpoint and a size.

Returns the smallest interval that contains lo (inclusive) through lo + size (exclusive). If size is zero then an empty interval is created, in which case lo is irrelevant.

Definition at line 173 of file Interval.h.

References Sawyer::Container::Interval< T >::hull().

Referenced by Rose::BinaryAnalysis::RegisterDescriptor::bits(), and Sawyer::Container::AddressMap< A, T >::write().

◆ baseSizeSat()

template<class T >
static Interval Sawyer::Container::Interval< T >::baseSizeSat ( lo,
size 
)
inlinestatic

Construct an interval from one endpoint and size, and clip overflows.

Returns the smallest interval that contains lo (inclusive) through lo + size (exclusvie). If lo + size doesn't fit in an instance of Value then the greatest possible value is used.

Definition at line 182 of file Interval.h.

◆ whole()

template<class T >
static Interval Sawyer::Container::Interval< T >::whole ( )
inlinestatic

◆ operator=() [1/2]

template<class T >
Interval & Sawyer::Container::Interval< T >::operator= ( const Interval< T > &  other)
inline

Assignment from an interval.

Definition at line 196 of file Interval.h.

◆ operator=() [2/2]

template<class T >
Interval & Sawyer::Container::Interval< T >::operator= ( value)
inline

Assignment from a scalar.

Definition at line 203 of file Interval.h.

◆ baseSizeOverflows()

template<class T >
static bool Sawyer::Container::Interval< T >::baseSizeOverflows ( base,
size 
)
inlinestatic

Tests whether a base and size overflows.

If the base (least value) plus the size would be larger than the maximum possible value, then returns true, otherwise returns false.

Definition at line 212 of file Interval.h.

◆ least()

template<class T >
T Sawyer::Container::Interval< T >::least ( ) const
inline

◆ greatest()

template<class T >
T Sawyer::Container::Interval< T >::greatest ( ) const
inline

◆ isEmpty()

template<class T >
bool Sawyer::Container::Interval< T >::isEmpty ( ) const
inline

True if interval is empty.

Definition at line 230 of file Interval.h.

Referenced by Sawyer::Container::DenseIntegerSet< T >::DenseIntegerSet(), Sawyer::Container::DenseIntegerSet< T >::DenseIntegerSet(), Sawyer::Container::BitVectorSupport::compare(), Sawyer::Container::BitVectorSupport::compareSigned(), Sawyer::Container::Interval< T >::contains(), Sawyer::Container::AddressMap< A, T >::findFreeSpace(), Sawyer::Container::Interval< T >::hull(), Sawyer::Container::DenseIntegerSet< T >::insert(), Sawyer::Container::Interval< T >::intersection(), Sawyer::Container::Interval< T >::isAdjacent(), Rose::BinaryAnalysis::Partitioner2::Trigger::isArmed(), Sawyer::Container::Interval< T >::isLeftAdjacent(), Sawyer::Container::Interval< T >::isLeftOf(), Sawyer::Container::Interval< T >::isRightAdjacent(), Sawyer::Container::Interval< T >::isRightOf(), Sawyer::Container::Interval< T >::join(), Rose::BinaryAnalysis::Variables::StackVariable::operator bool(), Rose::BinaryAnalysis::Variables::GlobalVariable::operator bool(), Rose::BinaryAnalysis::Variables::StackVariable::operator!(), Rose::BinaryAnalysis::Variables::GlobalVariable::operator!(), Sawyer::Container::AddressMapConstraints< AddressMap >::print(), Sawyer::Container::AddressMap< A, T >::read(), Sawyer::Container::BitVectorSupport::signExtend(), Sawyer::Container::BitVectorSupport::traverse2(), Sawyer::Container::BitVectorSupport::traverse2(), Sawyer::Container::AddressMapConstraints< AddressMap >::within(), and Sawyer::Container::AddressMap< A, T >::write().

◆ isSingleton()

template<class T >
bool Sawyer::Container::Interval< T >::isSingleton ( ) const
inline

True if interval is a singleton.

Definition at line 233 of file Interval.h.

◆ isWhole()

template<class T >
bool Sawyer::Container::Interval< T >::isWhole ( ) const
inline

True if interval covers entire space.

Definition at line 236 of file Interval.h.

Referenced by Sawyer::Container::Interval< T >::isAdjacent(), and Sawyer::Container::Interval< T >::isRightAdjacent().

◆ overlaps()

template<class T >
bool Sawyer::Container::Interval< T >::overlaps ( const Interval< T > &  other) const
inline

True if two intervals overlap.

An empty interval never overlaps with any other interval, empty or not.

Definition at line 243 of file Interval.h.

Referenced by Sawyer::Container::BitVectorSupport::swap().

◆ isOverlapping()

template<class T >
bool Sawyer::Container::Interval< T >::isOverlapping ( const Interval< T > &  other) const
inline

True if two intervals overlap.

An empty interval never overlaps with any other interval, empty or not.

Definition at line 246 of file Interval.h.

◆ contains()

template<class T >
bool Sawyer::Container::Interval< T >::contains ( const Interval< T > &  other) const
inline

Containment predicate.

Returns true if this interval contains all of the other interval. An empty interval is always contained in any other interval, even another empty interval.

Definition at line 257 of file Interval.h.

References Sawyer::Container::Interval< T >::greatest(), Sawyer::Container::Interval< T >::isEmpty(), and Sawyer::Container::Interval< T >::least().

Referenced by Rose::BinaryAnalysis::Partitioner2::Trigger::shouldTrigger().

◆ isContaining()

template<class T >
bool Sawyer::Container::Interval< T >::isContaining ( const Interval< T > &  other) const
inline

Containment predicate.

Returns true if this interval contains all of the other interval. An empty interval is always contained in any other interval, even another empty interval.

Definition at line 261 of file Interval.h.

◆ isLeftAdjacent()

template<class T >
bool Sawyer::Container::Interval< T >::isLeftAdjacent ( const Interval< T > &  right) const
inline

Adjacency predicate.

Returns true if the two intervals are adjacent. An empty interval is adjacent to all other intervals, including another empty interval.

Definition at line 272 of file Interval.h.

References Sawyer::Container::Interval< T >::isEmpty(), and Sawyer::Container::Interval< T >::least().

◆ isRightAdjacent()

template<class T >
bool Sawyer::Container::Interval< T >::isRightAdjacent ( const Interval< T > &  left) const
inline

Adjacency predicate.

Returns true if the two intervals are adjacent. An empty interval is adjacent to all other intervals, including another empty interval.

Definition at line 275 of file Interval.h.

References Sawyer::Container::Interval< T >::greatest(), Sawyer::Container::Interval< T >::isEmpty(), and Sawyer::Container::Interval< T >::isWhole().

◆ isAdjacent()

template<class T >
bool Sawyer::Container::Interval< T >::isAdjacent ( const Interval< T > &  other) const
inline

Adjacency predicate.

Returns true if the two intervals are adjacent. An empty interval is adjacent to all other intervals, including another empty interval.

Definition at line 278 of file Interval.h.

References Sawyer::Container::Interval< T >::greatest(), Sawyer::Container::Interval< T >::isEmpty(), Sawyer::Container::Interval< T >::isWhole(), and Sawyer::Container::Interval< T >::least().

◆ isLeftOf()

template<class T >
bool Sawyer::Container::Interval< T >::isLeftOf ( const Interval< T > &  right) const
inline

Relative position predicate.

Returns true if the intervals do not overlap and one is positioned left or right of the other. Empty intervals are considered to be both left and right of the other.

Definition at line 291 of file Interval.h.

References Sawyer::Container::Interval< T >::isEmpty(), and Sawyer::Container::Interval< T >::least().

◆ isRightOf()

template<class T >
bool Sawyer::Container::Interval< T >::isRightOf ( const Interval< T > &  left) const
inline

Relative position predicate.

Returns true if the intervals do not overlap and one is positioned left or right of the other. Empty intervals are considered to be both left and right of the other.

Definition at line 294 of file Interval.h.

References Sawyer::Container::Interval< T >::greatest(), and Sawyer::Container::Interval< T >::isEmpty().

◆ size()

template<class T >
Value Sawyer::Container::Interval< T >::size ( ) const
inline

◆ operator==()

template<class T >
bool Sawyer::Container::Interval< T >::operator== ( const Interval< T > &  other) const
inline

Equality test.

Two intervals are equal if they have the same lower and upper bound, and unequal if either bound differs. Two empty ranges are considered to be equal.

Definition at line 312 of file Interval.h.

◆ operator!=()

template<class T >
bool Sawyer::Container::Interval< T >::operator!= ( const Interval< T > &  other) const
inline

Equality test.

Two intervals are equal if they have the same lower and upper bound, and unequal if either bound differs. Two empty ranges are considered to be equal.

Definition at line 315 of file Interval.h.

◆ intersection()

template<class T >
Interval Sawyer::Container::Interval< T >::intersection ( const Interval< T > &  other) const
inline

Intersection.

Returns an interval which is the intersection of this interval with another.

Definition at line 325 of file Interval.h.

References Sawyer::Container::Interval< T >::greatest(), Sawyer::Container::Interval< T >::hull(), Sawyer::Container::Interval< T >::isEmpty(), and Sawyer::Container::Interval< T >::least().

◆ operator&()

template<class T >
Interval Sawyer::Container::Interval< T >::operator& ( const Interval< T > &  other) const
inline

Intersection.

Returns an interval which is the intersection of this interval with another.

Definition at line 330 of file Interval.h.

◆ hull() [2/3]

template<class T >
Interval Sawyer::Container::Interval< T >::hull ( const Interval< T > &  other) const
inline

Hull.

Returns the smallest interval that contains both this interval and the other interval.

See also
join

Definition at line 340 of file Interval.h.

References Sawyer::Container::Interval< T >::greatest(), Sawyer::Container::Interval< T >::hull(), Sawyer::Container::Interval< T >::isEmpty(), and Sawyer::Container::Interval< T >::least().

◆ hull() [3/3]

template<class T >
Interval Sawyer::Container::Interval< T >::hull ( value) const
inline

Hull.

Returns the smallest interval that contains both this interval and another value.

Definition at line 353 of file Interval.h.

References Sawyer::Container::Interval< T >::hull().

◆ split()

template<class T >
std::pair< Interval, Interval > Sawyer::Container::Interval< T >::split ( splitPoint) const
inline

Split interval in two.

Returns two interval by splitting this interval so that splitPoint is in the left returned interval. If the split is not a member of this interval then one of the two returned intervals will be empty, depending on whether the split point is less than or greater than this interval. If this interval is empty then both returned intervals will be empty regardless of the split point.

Definition at line 367 of file Interval.h.

References Sawyer::Container::Interval< T >::hull().

◆ join()

template<class T >
Interval Sawyer::Container::Interval< T >::join ( const Interval< T > &  right) const
inline

Creates an interval by joining two adjacent intervals.

Concatenates this interval with the right interval and returns the result. This is similar to hull except when neither interval is empty then the greatest value of this interval must be one less than the least value of the right interval.

See also
hull

Definition at line 386 of file Interval.h.

References Sawyer::Container::Interval< T >::isEmpty(), and Sawyer::Container::Interval< T >::least().

◆ shiftRightSat()

template<class T >
Interval Sawyer::Container::Interval< T >::shiftRightSat ( Value  n) const
inline

Shift interval upward.

Adds n to all values of the interval to return a new interval. An empty interval is returned if this interval is empty or adding n to its least value would overflow. A smaller interval is returned if adding n to the greatest value would overflow.

Definition at line 402 of file Interval.h.

◆ begin()

template<class T >
ConstIterator Sawyer::Container::Interval< T >::begin ( ) const
inline

Iterator positioned at the least value.

Returns an iterator positioned at this interval's least value. If this interval is empty then the returned iterator's atEnd predicate will always return true. Iterators are useful for accessing the values of an interval because they have special logic to avoid arithmetic overflows which can happen if the interval's least and/or greatest value happens to also be the least or greatest value representable by type T. See ConstIterator for details.

Definition at line 423 of file Interval.h.

◆ end()

template<class T >
ConstIterator Sawyer::Container::Interval< T >::end ( ) const
inline

Iterator positioned one past the greatest value.

Returns an iterator positioned one past this interval's least value even if such a value cannot be represented by type T. If this interval is empty then the returned iterator's atEnd predicate will always return true. Iterators are useful for accessing the values of an interval because they have special logic to avoid arithmetic overflows which can happen if the interval's least and/or greatest value happens to also be the least or greatest value representable by type T. See ConstIterator for details.

Definition at line 434 of file Interval.h.

◆ values()

template<class T >
boost::iterator_range< ConstIterator > Sawyer::Container::Interval< T >::values ( ) const
inline

Iterator range for values.

Definition at line 439 of file Interval.h.

◆ operator unspecified_bool()

template<class T >
Sawyer::Container::Interval< T >::operator unspecified_bool ( ) const
inline

Type for Boolean context.

Implicit conversion to a type that can be used in a boolean context such as an if or while statement. For instance:

if (Interval<unsigned> x = doSomething(...)) {
// this is reached only if x is non-empty
}
Range of values delimited by endpoints.
Definition Interval.h:31

The inteval evaluates to true if it is non-empty, and false if it is empty.

Definition at line 461 of file Interval.h.


The documentation for this class was generated from the following file: