gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Public Member Functions | Private Attributes | List of all members
AddrRange Class Reference

The AddrRange class encapsulates an address range, and supports a number of tests to check if two ranges intersect, if a range contains a specific address etc. More...

#include <addr_range.hh>

Public Member Functions

 AddrRange ()
 
 AddrRange (Addr _start, Addr _end, const std::vector< Addr > &_masks, uint8_t _intlv_match)
 Construct an address range. More...
 
 AddrRange (Addr _start, Addr _end, uint8_t _intlv_high_bit, uint8_t _xor_high_bit, uint8_t _intlv_bits, uint8_t _intlv_match)
 Legacy constructor of AddrRange. More...
 
 AddrRange (Addr _start, Addr _end)
 
 AddrRange (const std::vector< AddrRange > &ranges)
 Create an address range by merging a collection of interleaved ranges. More...
 
bool interleaved () const
 Determine if the range is interleaved or not. More...
 
uint64_t granularity () const
 Determing the interleaving granularity of the range. More...
 
uint32_t stripes () const
 Determine the number of interleaved address stripes this range is part of. More...
 
Addr size () const
 Get the size of the address range. More...
 
bool valid () const
 Determine if the range is valid. More...
 
Addr start () const
 Get the start address of the range. More...
 
Addr end () const
 Get the end address of the range. More...
 
std::string to_string () const
 Get a string representation of the range. More...
 
bool mergesWith (const AddrRange &r) const
 Determine if another range merges with the current one, i.e. More...
 
bool intersects (const AddrRange &r) const
 Determine if another range intersects this one, i.e. More...
 
bool isSubset (const AddrRange &r) const
 Determine if this range is a subset of another range, i.e. More...
 
bool contains (const Addr &a) const
 Determine if the range contains an address. More...
 
Addr removeIntlvBits (Addr a) const
 Remove the interleaving bits from an input address. More...
 
Addr addIntlvBits (Addr a) const
 This method adds the interleaving bits removed by removeIntlvBits. More...
 
Addr getOffset (const Addr &a) const
 Determine the offset of an address within the range. More...
 
bool operator< (const AddrRange &r) const
 Less-than operator used to turn an STL map into a binary search tree of non-overlapping address ranges. More...
 
bool operator== (const AddrRange &r) const
 
bool operator!= (const AddrRange &r) const
 

Private Attributes

Addr _start
 Private fields for the start and end of the range _start is the beginning of the range (inclusive). More...
 
Addr _end
 
std::vector< Addrmasks
 Each mask determines the bits we need to xor to get one bit of sel. More...
 
uint8_t intlvMatch
 The value to compare sel with. More...
 

Detailed Description

The AddrRange class encapsulates an address range, and supports a number of tests to check if two ranges intersect, if a range contains a specific address etc.

Besides a basic range, the AddrRange also support interleaved ranges, to stripe across cache banks, or memory controllers. The interleaving is implemented by allowing a number of bits of the address, at an arbitrary bit position, to be used as interleaving bits with an associated matching value. In addition, to prevent uniformly strided address patterns from a very biased interleaving, we also allow XOR-based hashing by specifying a set of bits to XOR with before matching.

The AddrRange is also able to coalesce a number of interleaved ranges to a contiguous range.

Definition at line 68 of file addr_range.hh.

Constructor & Destructor Documentation

◆ AddrRange() [1/5]

AddrRange::AddrRange ( )
inline

Definition at line 91 of file addr_range.hh.

Referenced by RangeEx(), RangeIn(), and RangeSize().

◆ AddrRange() [2/5]

AddrRange::AddrRange ( Addr  _start,
Addr  _end,
const std::vector< Addr > &  _masks,
uint8_t  _intlv_match 
)
inline

Construct an address range.

If the user provides a non empty vector of masks then the address range is interleaved. Each mask determines a set of bits that are xored to determine one bit of the sel value, starting from the least significant bit (i.e., masks[0] determines the least significant bit of sel, ...). If sel matches the provided _intlv_match then the address a is in the range.

For example if the input mask is _masks = { 1 << 8 | 1 << 11 | 1 << 13, 1 << 15 | 1 << 17 | 1 << 19}

Then a belongs to the address range if _start <= a < _end and sel == _intlv_match where sel[0] = a[8] ^ a[11] ^ a[13] sel[1] = a[15] ^ a[17] ^ a[19]

Parameters
_startThe start address of this range
_endThe end address of this range (not included in the range)
_masksThe input vector of masks
intlv_matchThe matching value of the xor operations

Definition at line 123 of file addr_range.hh.

References fatal_if, and ULL.

◆ AddrRange() [3/5]

AddrRange::AddrRange ( Addr  _start,
Addr  _end,
uint8_t  _intlv_high_bit,
uint8_t  _xor_high_bit,
uint8_t  _intlv_bits,
uint8_t  _intlv_match 
)
inline

Legacy constructor of AddrRange.

If the user provides a non-zero value in _intlv_high_bit the address range is interleaved.

An address a belongs to the address range if _start <= a < _end and sel == _intlv_match where sel = sel1 ^ sel2 sel1 = a[_intlv_low_bit:_intlv_high_bit] sel2 = a[_xor_low_bit:_xor_high_bit] _intlv_low_bit = _intlv_high_bit - intv_bits _xor_low_bit = _xor_high_bit - intv_bits

Parameters
_startThe start address of this range
_endThe end address of this range (not included in the range)
_intlv_high_bitThe MSB of the intlv bits (disabled if 0)
_xor_high_bitThe MSB of the xor bit (disabled if 0)
_intlv_bitsthe size, in bits, of the intlv and xor bits
intlv_matchThe matching value of the xor operations

Definition at line 158 of file addr_range.hh.

References fatal, fatal_if, ArmISA::i, ArmISA::mask, and ULL.

◆ AddrRange() [4/5]

AddrRange::AddrRange ( Addr  _start,
Addr  _end 
)
inline

Definition at line 196 of file addr_range.hh.

◆ AddrRange() [5/5]

AddrRange::AddrRange ( const std::vector< AddrRange > &  ranges)
inline

Create an address range by merging a collection of interleaved ranges.

Parameters
rangesInterleaved ranges to be merged

Definition at line 206 of file addr_range.hh.

References fatal, mergesWith(), MipsISA::r, to_string(), and ULL.

Member Function Documentation

◆ addIntlvBits()

Addr AddrRange::addIntlvBits ( Addr  a) const
inline

This method adds the interleaving bits removed by removeIntlvBits.

Definition at line 475 of file addr_range.hh.

References ArmISA::a, bits(), ctz64(), ArmISA::i, insertBits(), and popCount().

Referenced by ChannelAddr::getPA(), and TEST().

◆ contains()

bool AddrRange::contains ( const Addr a) const
inline

◆ end()

Addr AddrRange::end ( ) const
inline

◆ getOffset()

Addr AddrRange::getOffset ( const Addr a) const
inline

Determine the offset of an address within the range.

This function returns the offset of the given address from the starting address discarding any bits that are used for interleaving. This way we can convert the input address to a new unique address in a continuous range that starts from 0.

Parameters
theinput address
Returns
the flat offset in the address range

Definition at line 520 of file addr_range.hh.

References _end, _start, interleaved(), MaxAddr, and removeIntlvBits().

Referenced by DRAMCtrl::getCtrlAddr(), and TEST().

◆ granularity()

uint64_t AddrRange::granularity ( ) const
inline

Determing the interleaving granularity of the range.

Returns
The size of the regions created by the interleaving bits

Definition at line 253 of file addr_range.hh.

References ctz64(), interleaved(), ArmISA::mask, size(), and ULL.

Referenced by DRAMCtrl::DRAMCtrl(), DRAMCtrl::init(), init_range(), isSubset(), and TEST().

◆ interleaved()

bool AddrRange::interleaved ( ) const
inline

◆ intersects()

bool AddrRange::intersects ( const AddrRange r) const
inline

Determine if another range intersects this one, i.e.

if there is an address that is both in this range and the other range. No check is made to ensure either range is valid.

Parameters
rRange to intersect with
Returns
true if the intersection of the two ranges is not empty

Definition at line 347 of file addr_range.hh.

References _end, _start, contains(), interleaved(), intlvMatch, mergesWith(), panic, size(), start(), and to_string().

Referenced by init_range(), VMA::intersects(), AddrRangeMap< AbstractMemory *, 1 >::intersects(), and TEST().

◆ isSubset()

bool AddrRange::isSubset ( const AddrRange r) const
inline

Determine if this range is a subset of another range, i.e.

if every address in this range is also in the other range. No check is made to ensure either range is valid.

Parameters
rRange to compare with
Returns
true if the this range is a subset of the other one

Definition at line 379 of file addr_range.hh.

References _end, _start, contains(), granularity(), interleaved(), panic, size(), and to_string().

Referenced by AbstractMemory::access(), AddrRangeMap< AbstractMemory *, 1 >::contains(), BaseXBar::findPort(), AbstractMemory::functionalAccess(), init_range(), VMA::isSubset(), and TEST().

◆ mergesWith()

bool AddrRange::mergesWith ( const AddrRange r) const
inline

Determine if another range merges with the current one, i.e.

if they are part of the same contigous range and have the same interleaving bits.

Parameters
rRange to evaluate merging with
Returns
true if the two ranges would merge

Definition at line 333 of file addr_range.hh.

References _end, _start, and masks.

Referenced by AddrRange(), init_range(), intersects(), VMA::mergesWith(), and TEST().

◆ operator!=()

bool AddrRange::operator!= ( const AddrRange r) const
inline

Definition at line 560 of file addr_range.hh.

References MipsISA::r.

◆ operator<()

bool AddrRange::operator< ( const AddrRange r) const
inline

Less-than operator used to turn an STL map into a binary search tree of non-overlapping address ranges.

Parameters
rRange to compare with
Returns
true if the start address is less than that of the other range

Definition at line 540 of file addr_range.hh.

References _start, and intlvMatch.

◆ operator==()

bool AddrRange::operator== ( const AddrRange r) const
inline

Definition at line 550 of file addr_range.hh.

References _end, _start, intlvMatch, and masks.

◆ removeIntlvBits()

Addr AddrRange::removeIntlvBits ( Addr  a) const
inline

Remove the interleaving bits from an input address.

This function returns a new address in a continous range [ start, start + size / intlv_bits). We can achieve this by discarding the LSB in each mask.

e.g., if the input address is of the form:

| a_high | x1 | a_mid | x0 | a_low |

where x0 is the LSB set in masks[0] and x1 is the LSB set in masks[1]

this function will return:

| 0 | a_high | a_mid | a_low |

Parameters
athe input address
Returns
the new address

Definition at line 445 of file addr_range.hh.

References ArmISA::a, ctz64(), ArmISA::i, and insertBits().

Referenced by getOffset(), and TEST().

◆ size()

Addr AddrRange::size ( ) const
inline

Get the size of the address range.

For a case where interleaving is used we make the simplifying assumption that the size is a divisible by the size of the interleaving slice.

Definition at line 280 of file addr_range.hh.

Referenced by AbstractMemory::AbstractMemory(), KvmVM::coalesceMMIO(), PhysicalMemory::createBackingStore(), KvmVM::delayedStartup(), granularity(), init_range(), intersects(), isSubset(), VMA::remap(), PhysicalMemory::serializeStore(), VMA::size(), AbstractMemory::size(), SMMUv3::SMMUv3(), TEST(), PhysicalMemory::unserializeStore(), and VMA::VMA().

◆ start()

Addr AddrRange::start ( ) const
inline

◆ stripes()

uint32_t AddrRange::stripes ( ) const
inline

Determine the number of interleaved address stripes this range is part of.

Returns
The number of stripes spanned by the interleaving bits

Definition at line 273 of file addr_range.hh.

References ULL.

Referenced by init_range(), and TEST().

◆ to_string()

std::string AddrRange::to_string ( ) const
inline

Get a string representation of the range.

This could alternatively be implemented as a operator<<, but at the moment that seems like overkill.

Definition at line 305 of file addr_range.hh.

References bits(), csprintf(), ctz64(), ArmISA::i, interleaved(), ArmISA::mask, and ULL.

Referenced by AbstractMemory::AbstractMemory(), AddrRange(), PhysicalMemory::createBackingStore(), BaseXBar::findPort(), init_range(), AbstractMemory::initState(), intersects(), isSubset(), and TEST().

◆ valid()

bool AddrRange::valid ( ) const
inline

Determine if the range is valid.

Definition at line 288 of file addr_range.hh.

References _end.

Referenced by AbstractMemory::AbstractMemory(), ChannelAddrRange::ChannelAddrRange(), GenericTimerFrame::hasEl0View(), init_range(), and TEST().

Member Data Documentation

◆ _end

Addr AddrRange::_end
private

Definition at line 77 of file addr_range.hh.

Referenced by contains(), end(), getOffset(), intersects(), isSubset(), mergesWith(), operator==(), and valid().

◆ _start

Addr AddrRange::_start
private

Private fields for the start and end of the range _start is the beginning of the range (inclusive).

_end is not part of the range.

Definition at line 76 of file addr_range.hh.

Referenced by getOffset(), intersects(), isSubset(), mergesWith(), operator<(), operator==(), and start().

◆ intlvMatch

uint8_t AddrRange::intlvMatch
private

The value to compare sel with.

Definition at line 87 of file addr_range.hh.

Referenced by contains(), intersects(), operator<(), and operator==().

◆ masks

std::vector<Addr> AddrRange::masks
private

Each mask determines the bits we need to xor to get one bit of sel.

The first (0) mask is used to get the LSB and the last for the MSB of sel.

Definition at line 84 of file addr_range.hh.

Referenced by mergesWith(), and operator==().


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

Generated on Thu May 28 2020 16:21:40 for gem5 by doxygen 1.8.13