gem5
v20.0.0.0
|
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< Addr > | masks |
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... | |
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.
|
inline |
Definition at line 91 of file addr_range.hh.
Referenced by RangeEx(), RangeIn(), and RangeSize().
|
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]
_start | The start address of this range |
_end | The end address of this range (not included in the range) |
_masks | The input vector of masks |
intlv_match | The matching value of the xor operations |
Definition at line 123 of file addr_range.hh.
|
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
_start | The start address of this range |
_end | The end address of this range (not included in the range) |
_intlv_high_bit | The MSB of the intlv bits (disabled if 0) |
_xor_high_bit | The MSB of the xor bit (disabled if 0) |
_intlv_bits | the size, in bits, of the intlv and xor bits |
intlv_match | The 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.
Definition at line 196 of file addr_range.hh.
|
inline |
Create an address range by merging a collection of interleaved ranges.
ranges | Interleaved ranges to be merged |
Definition at line 206 of file addr_range.hh.
References fatal, mergesWith(), MipsISA::r, to_string(), and ULL.
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().
|
inline |
Determine if the range contains an address.
a | Address to compare with |
Definition at line 402 of file addr_range.hh.
References _end, ArmISA::i, intlvMatch, popCount(), and ArmISA::sel.
Referenced by System::allocPhysPages(), VMA::contains(), X86ISA::TLB::finalizePhysical(), ArmISA::TLB::finalizePhysical(), Gicv3::getRedistributorByAddr(), AbstractMemory::initState(), intersects(), isSubset(), Gicv3::read(), Gicv3Its::read(), Gicv3Redistributor::read(), Gicv3Distributor::read(), GenericTimerFrame::read(), GicV2::read(), GenericTimerMem::read(), GicV2::readDistributor(), Trace::TarmacParserRecord::readMemNoEffect(), SMMUControlPort::recvAtomic(), TEST(), Gicv3::write(), Gicv3Its::write(), Gicv3Redistributor::write(), Gicv3Distributor::write(), GenericTimerFrame::write(), GicV2::write(), GenericTimerMem::write(), and GicV2::writeDistributor().
|
inline |
Get the end address of the range.
Definition at line 298 of file addr_range.hh.
References _end.
Referenced by VMA::end(), sc_gem5::TlmToGem5Bridge< BITWIDTH >::get_direct_mem_ptr(), init_range(), VMA::isStrictSuperset(), VMA::remap(), VMA::sanityCheck(), VMA::sliceRegionLeft(), VMA::sliceRegionRight(), TEST(), and VMA::VMA().
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.
the | input address |
Definition at line 520 of file addr_range.hh.
References _end, _start, interleaved(), MaxAddr, and removeIntlvBits().
Referenced by DRAMCtrl::getCtrlAddr(), and TEST().
|
inline |
Determing the interleaving granularity of the range.
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().
|
inline |
Determine if the range is interleaved or not.
Definition at line 246 of file addr_range.hh.
Referenced by ChannelAddrRange::ChannelAddrRange(), PhysicalMemory::createBackingStore(), KvmVM::delayedStartup(), DRAMCtrl::DRAMCtrl(), getOffset(), granularity(), DRAMCtrl::init(), init_range(), intersects(), isSubset(), AbstractMemory::setBackingStore(), TEST(), and to_string().
|
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.
r | Range to intersect with |
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().
|
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.
r | Range to compare with |
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().
|
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.
r | Range to evaluate merging with |
Definition at line 333 of file addr_range.hh.
References _end, _start, and masks.
Referenced by AddrRange(), init_range(), intersects(), VMA::mergesWith(), and TEST().
|
inline |
Definition at line 560 of file addr_range.hh.
References MipsISA::r.
|
inline |
Less-than operator used to turn an STL map into a binary search tree of non-overlapping address ranges.
r | Range to compare with |
Definition at line 540 of file addr_range.hh.
References _start, and intlvMatch.
|
inline |
Definition at line 550 of file addr_range.hh.
References _end, _start, intlvMatch, and masks.
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.
where x0 is the LSB set in masks[0] and x1 is the LSB set in masks[1]
a | the input address |
Definition at line 445 of file addr_range.hh.
References ArmISA::a, ctz64(), ArmISA::i, and insertBits().
Referenced by getOffset(), and TEST().
|
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().
|
inline |
Get the start address of the range.
Definition at line 293 of file addr_range.hh.
References _start.
Referenced by KvmVM::coalesceMMIO(), MuxingKvmGic::copyGicState(), KvmVM::delayedStartup(), VMA::fillMemPages(), X86ISA::TLB::finalizePhysical(), ArmISA::TLB::finalizePhysical(), sc_gem5::TlmToGem5Bridge< BITWIDTH >::get_direct_mem_ptr(), Gicv3::getRedistributorByAddr(), init_range(), AbstractMemory::initState(), intersects(), VMA::isStrictSuperset(), Gicv3::read(), Gicv3Its::read(), Gicv3Redistributor::read(), Gicv3Distributor::read(), GenericTimerFrame::read(), GenericTimerMem::read(), SMMUv3::readControl(), GicV2::readCpu(), GicV2::readDistributor(), VMA::remap(), VMA::sanityCheck(), VMA::sliceRegionLeft(), VMA::sliceRegionRight(), VMA::start(), AbstractMemory::start(), TEST(), AbstractMemory::toHostAddr(), GenericTimerMem::validateFrameRange(), VMA::VMA(), Gicv3::write(), Gicv3Its::write(), Gicv3Redistributor::write(), Gicv3Distributor::write(), GenericTimerFrame::write(), GenericTimerMem::write(), SMMUv3::writeControl(), GicV2::writeCpu(), and GicV2::writeDistributor().
|
inline |
Determine the number of interleaved address stripes this range is part of.
Definition at line 273 of file addr_range.hh.
References ULL.
Referenced by init_range(), and TEST().
|
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().
|
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().
|
private |
Definition at line 77 of file addr_range.hh.
Referenced by contains(), end(), getOffset(), intersects(), isSubset(), mergesWith(), operator==(), and valid().
|
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().
|
private |
The value to compare sel with.
Definition at line 87 of file addr_range.hh.
Referenced by contains(), intersects(), operator<(), and operator==().
|
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==().