gem5
v19.0.0.0
|
Circular queue. More...
#include <circular_queue.hh>
Classes | |
struct | iterator |
Iterator to the circular queue. More... | |
Public Member Functions | |
CircularQueue (uint32_t size=0) | |
void | flush () |
Remove all the elements in the queue. More... | |
bool | isValidIdx (size_t idx) const |
Test if the index is in the range of valid elements. More... | |
bool | isValidIdx (size_t idx, uint32_t round) const |
Test if the index is in the range of valid elements. More... | |
reference | front () |
reference | back () |
uint32_t | head () const |
uint32_t | tail () const |
size_t | capacity () const |
uint32_t | size () const |
uint32_t | moduloAdd (uint32_t s1, uint32_t s2) const |
uint32_t | moduloSub (uint32_t s1, uint32_t s2) const |
void | pop_front (size_t num_elem=1) |
Circularly increase the head pointer. More... | |
void | pop_back () |
Circularly decrease the tail pointer. More... | |
void | push_back (typename Base::value_type val) |
Pushes an element at the end of the queue. More... | |
void | advance_tail () |
Increases the tail by one. More... | |
void | advance_tail (uint32_t len) |
Increases the tail by a specified number of steps. More... | |
bool | empty () const |
Is the queue empty? More... | |
bool | full () const |
Is the queue full? A queue is full if the head is the 0^{th} element and the tail is the (size-1)^{th} element, or if the head is the n^{th} element and the tail the (n-1)^{th} element. More... | |
iterator | begin () |
Iterators. More... | |
iterator | begin () const |
iterator | end () |
iterator | end () const |
iterator | getIterator (size_t idx) |
Return an iterator to an index in the vector. More... | |
Protected Types | |
using | Base = std::vector< T > |
Protected Member Functions | |
void | increase (uint32_t &v, size_t delta=1) |
void | decrease (uint32_t &v) |
Static Protected Member Functions | |
static uint32_t | moduloAdd (uint32_t op1, uint32_t op2, uint32_t size) |
General modular addition. More... | |
static uint32_t | moduloSub (uint32_t op1, uint32_t op2, uint32_t size) |
General modular subtraction. More... | |
static int32_t | sub (uint32_t op1, uint32_t op2, uint32_t size) |
Protected Attributes | |
const uint32_t | _capacity |
uint32_t | _head |
uint32_t | _tail |
uint32_t | _empty |
uint32_t | _round |
Counter for how many times the tail wraps around. More... | |
Additional Inherited Members | |
![]() | |
T | item |
Dummy Item. More... | |
Circular queue.
Circular queue implemented on top of a standard vector. Instead of using a sentinel entry, we use a boolean to distinguish the case in which the queue is full or empty. Thus, a circular queue is represented by the 5-tuple (Capacity, IsEmpty?, Head, Tail, Round) Where:
The Round number is only relevant for checking validity of indices, therefore it will be omitted or shown as '_'
Definition at line 84 of file circular_queue.hh.
|
protected |
Definition at line 87 of file circular_queue.hh.
|
inlineexplicit |
Definition at line 413 of file circular_queue.hh.
|
inline |
Increases the tail by one.
Check for wrap-arounds to update the round counter.
Definition at line 555 of file circular_queue.hh.
Referenced by CircularQueue< char >::advance_tail(), LSQUnit< Impl >::insertLoad(), CircularQueue< char >::push_back(), and CircleBuf< char >::write().
|
inline |
Increases the tail by a specified number of steps.
len | Number of steps |
Definition at line 571 of file circular_queue.hh.
|
inline |
Definition at line 492 of file circular_queue.hh.
Referenced by LSQUnit< Impl >::insertLoad(), LSQUnit< Impl >::squash(), and TEST().
|
inline |
Iterators.
Definition at line 592 of file circular_queue.hh.
Referenced by LSQUnit< Impl >::checkSnoop(), CircleBuf< char >::peek(), CircularQueue< char >::pop_front(), and TEST().
|
inline |
Definition at line 603 of file circular_queue.hh.
|
inline |
Definition at line 495 of file circular_queue.hh.
Referenced by LSQUnit< Impl >::drainSanityCheck(), LSQUnit< Impl >::insertLoad(), LSQUnit< Impl >::numFreeLoadEntries(), CircularQueue< T >::iterator::operator+=(), CircularQueue< T >::iterator::operator-(), CircularQueue< T >::iterator::operator-=(), TEST(), CircleBuf< char >::write(), and Fifo< uint8_t >::write().
|
inlineprotected |
Definition at line 132 of file circular_queue.hh.
Referenced by CircularQueue< T >::iterator::operator--(), and CircularQueue< char >::pop_back().
|
inline |
Is the queue empty?
Definition at line 578 of file circular_queue.hh.
Referenced by LSQUnit< Impl >::checkSnoop(), Terminal::console_in(), Terminal::dataAvailable(), CircularQueue< T >::iterator::decrementable(), Terminal::readData(), and TEST().
|
inline |
Definition at line 615 of file circular_queue.hh.
Referenced by CircularQueue< char >::begin(), LSQUnit< Impl >::checkSnoop(), LSQUnit< Impl >::checkViolations(), CircularQueue< char >::getIterator(), LSQUnit< Impl >::insertStore(), CircularQueue< char >::pop_front(), TEST(), and CircleBuf< char >::write().
|
inline |
Definition at line 624 of file circular_queue.hh.
|
inline |
Remove all the elements in the queue.
Note: This does not actually remove elements from the backing store.
Definition at line 425 of file circular_queue.hh.
Referenced by arrayParamIn().
|
inline |
Definition at line 491 of file circular_queue.hh.
Referenced by LSQUnit< Impl >::commitLoad(), LSQUnit< Impl >::commitLoads(), LSQUnit< Impl >::getLoadHeadSeqNum(), LSQUnit< Impl >::getStoreHeadSeqNum(), and TEST().
|
inline |
Is the queue full? A queue is full if the head is the 0^{th} element and the tail is the (size-1)^{th} element, or if the head is the n^{th} element and the tail the (n-1)^{th} element.
Definition at line 585 of file circular_queue.hh.
Referenced by LSQUnit< Impl >::insertLoad(), LSQUnit< Impl >::lqFull(), and TEST().
|
inline |
Return an iterator to an index in the vector.
This poses the problem of round determination. By convention, the round is picked so that isValidIndex(idx, round) is true. If that is not possible, then the round value is _round, unless _tail is at the end of the storage, in which case the PTE wraps up and becomes _round + 1
Definition at line 639 of file circular_queue.hh.
Referenced by LSQUnit< Impl >::insertLoad(), and LSQUnit< Impl >::read().
|
inline |
Definition at line 493 of file circular_queue.hh.
Referenced by CircularQueue< T >::iterator::decrementable(), LSQUnit< Impl >::getLoadHead(), LSQUnit< Impl >::getStoreHead(), LSQUnit< Impl >::read(), and TEST().
|
inlineprotected |
Definition at line 127 of file circular_queue.hh.
Referenced by CircularQueue< char >::advance_tail(), and CircularQueue< T >::iterator::operator++().
|
inline |
Test if the index is in the range of valid elements.
Definition at line 434 of file circular_queue.hh.
Referenced by CircularQueue< T >::iterator::dereferenceable(), and CircularQueue< char >::getIterator().
|
inline |
Test if the index is in the range of valid elements.
The round counter is used to disambiguate aliasing.
Definition at line 457 of file circular_queue.hh.
|
inlinestaticprotected |
General modular addition.
Definition at line 105 of file circular_queue.hh.
Referenced by CircularQueue< char >::end(), CircularQueue< char >::getIterator(), CircularQueue< char >::increase(), LSQUnit< Impl >::insertStore(), CircularQueue< char >::moduloAdd(), and CircularQueue< T >::iterator::operator+=().
|
inline |
Definition at line 507 of file circular_queue.hh.
|
inlinestaticprotected |
General modular subtraction.
Definition at line 112 of file circular_queue.hh.
Referenced by CircularQueue< char >::moduloSub(), and CircularQueue< T >::iterator::operator-=().
|
inline |
Definition at line 512 of file circular_queue.hh.
|
inline |
Circularly decrease the tail pointer.
Definition at line 536 of file circular_queue.hh.
Referenced by LSQUnit< Impl >::squash().
|
inline |
Circularly increase the head pointer.
By increasing the head pointer we are removing elements from the begin of the circular queue. Check that the queue is not empty. And set it to empty if it had only one value prior to insertion.
num_elem number of elements to remove
Definition at line 525 of file circular_queue.hh.
Referenced by LSQUnit< Impl >::commitLoad(), CircleBuf< char >::read(), and TEST().
|
inline |
Pushes an element at the end of the queue.
Definition at line 546 of file circular_queue.hh.
Referenced by TEST().
|
inline |
Definition at line 497 of file circular_queue.hh.
Referenced by Terminal::accept(), arrayParamOut(), CircularQueue< char >::CircularQueue(), CircularQueue< char >::moduloAdd(), CircularQueue< char >::moduloSub(), CircleBuf< char >::peek(), CircularQueue< char >::sub(), TEST(), and Fifo< uint8_t >::write().
|
inlinestaticprotected |
Definition at line 119 of file circular_queue.hh.
Referenced by CircularQueue< char >::moduloSub(), and CircularQueue< T >::iterator::operator-().
|
inline |
Definition at line 494 of file circular_queue.hh.
Referenced by LSQUnit< Impl >::insertLoad(), LSQUnit< Impl >::insertStore(), LSQUnit< Impl >::squash(), and TEST().
|
protected |
Definition at line 90 of file circular_queue.hh.
Referenced by CircularQueue< char >::capacity(), and CircularQueue< char >::decrease().
|
protected |
Definition at line 93 of file circular_queue.hh.
Referenced by CircularQueue< char >::empty().
|
protected |
Definition at line 91 of file circular_queue.hh.
Referenced by CircularQueue< char >::front(), and CircularQueue< char >::head().
|
protected |
Counter for how many times the tail wraps around.
Some parts of the code rely on getting the past the end iterator, and expect to use it after inserting on the tail. To support this without ambiguity, we need the round number to guarantee that it did not become a before-the-beginning iterator.
Definition at line 101 of file circular_queue.hh.
Referenced by CircularQueue< T >::iterator::decrementable().
|
protected |
Definition at line 92 of file circular_queue.hh.
Referenced by CircularQueue< char >::back(), CircularQueue< char >::isValidIdx(), CircularQueue< char >::pop_back(), CircularQueue< char >::push_back(), and CircularQueue< char >::tail().