Go to the documentation of this file.
44 #ifndef __CPU_MINOR_BUFFERS_HH__
45 #define __CPU_MINOR_BUFFERS_HH__
91 template <
typename ElemType>
97 { elem.reportData(
os); }
102 template <
typename PtrType>
108 { elem->reportData(
os); }
116 template <
typename ElemType>
120 static bool isBubble(
const ElemType &) {
return false; }
124 panic(
"bubble called but no bubble interface");
129 template <
typename ElemType>
134 {
return elem.isBubble(); }
136 static ElemType
bubble() {
return ElemType::bubble(); }
140 template <
typename PtrType,
typename ElemType>
145 {
return elem->isBubble(); }
147 static PtrType
bubble() {
return ElemType::bubble(); }
151 template <
typename ElemType,
152 typename ReportTraits = ReportTraitsAdaptor<ElemType>,
153 typename BubbleTraits = BubbleTraitsAdaptor<ElemType> >
165 const std::string &data_name,
166 int num_past,
int num_future,
167 int report_left = -1,
int report_right = -1) :
181 if (!BubbleTraits::isBubble((*
this)[
i]))
195 std::ostringstream
data;
202 const ElemType &datum = (*this)[
i];
204 ReportTraits::reportData(
data, datum);
216 template <
typename Data>
233 const std::string &data_name,
235 bool report_backwards =
false) :
237 buffer(
name, data_name, delay_, 0, (report_backwards ? -delay_ : 0),
238 (report_backwards ? 0 : -delay_))
286 template <
typename ElemType,
287 typename ReportTraits,
288 typename BubbleTraits = BubbleTraitsAdaptor<ElemType> >
306 const std::string &data_name,
309 (
name, data_name, depth, 0, -1, -depth),
319 for (
unsigned i = 0;
i <= depth;
i++)
320 (*
this)[-
i] = BubbleTraits::bubble();
332 if (!BubbleTraits::isBubble(elem))
366 ElemType bubble = BubbleTraits::bubble();
396 template <
typename ElemType,
397 typename ReportTraits = ReportTraitsAdaptor<ElemType>,
398 typename BubbleTraits = BubbleTraitsAdaptor<ElemType> >
415 Queue(
const std::string &
name,
const std::string &data_name,
416 unsigned int capacity_) :
430 if (!BubbleTraits::isBubble(
data)) {
435 warn(
"%s: No space to push data into queue of capacity"
460 warn(
"%s: No space is reservable in queue",
name());
483 return (ret < 0 ? 0 : ret);
492 return (ret < 0 ? 0 : ret);
509 std::ostringstream
data;
520 while (num_printed <= num_occupied) {
521 ReportTraits::reportData(
data,
queue[num_printed - 1]);
524 if (num_printed <= num_total)
528 int num_printed_reserved = 1;
530 while (num_printed_reserved <= num_reserved &&
531 num_printed <= num_total)
534 num_printed_reserved++;
537 if (num_printed <= num_total)
542 while (num_printed <= num_total) {
545 if (num_printed <= num_total)
564 template <
typename ElemType,
565 typename ReportTraits = ReportTraitsAdaptor<ElemType>,
566 typename BubbleTraits = BubbleTraitsAdaptor<ElemType> >
578 unsigned int capacity_) :
591 if (!BubbleTraits::isBubble(new_element)) {
595 queue.push(new_element);
617 queue.freeReservation();
652 return queue.unreservedRemainingSpace();
virtual void reserve()=0
Reserve a slot in whatever structure this is attached to.
virtual bool canReserve() const =0
Can a slot be reserved?
void advance()
Try to advance the pipeline.
void minorTrace() const
Report buffer states from 'slot' 'from' to 'to'.
virtual bool isBubble() const =0
Queue(const std::string &name, const std::string &data_name, unsigned int capacity_)
bool stalled
If true, advance will not advance the pipeline.
TimeBuffer< ElemType >::wire pushWire
Wire at the input end of the pipeline (for convenience)
TimeBuffer< ElemType >::wire popWire
Wire at the output end of the pipeline (for convenience)
void push(ElemType &elem)
Write an element to the back of the pipeline.
unsigned int reservedSpace() const
Number of slots which are reserved.
void freeReservation()
Clear a single reserved slot.
unsigned int totalSpace() const
Number of slots available in an empty buffer.
Wraps a MinorBuffer with Input/Output interfaces to ensure that units within the model can only see t...
Output output()
An interface to just the output of the buffer.
#define MINORTRACE(...)
DPRINTFN for MinorTrace reporting.
bool empty() const
Is the queue empty?
Base class for space reservation requestable objects.
void push(ElemType &data)
Push an element into the buffer if it isn't a bubble.
static bool isBubble(const ElemType &elem)
unsigned int unreservedRemainingSpace() const
Like remainingSpace but does not count reserved spaces.
Latch(const std::string &name, const std::string &data_name, Cycles delay_=Cycles(1), bool report_backwards=false)
forward/backwardDelay specify the delay from input to output in each direction.
unsigned int remainingSpace() const
Number of slots yet to fill in this buffer.
Interface class for data with reporting/tracing facilities.
A similar adaptor but for elements held by pointer ElemType should implement ReportIF.
const ElemType & front() const
void reserve()
Reserve space in the queue for future pushes.
static bool isBubble(const ElemType &)
...ReportTraits are trait classes with the same functionality as ReportIF, but with elements explicit...
A pipeline simulating class that will stall (not advance when advance() is called) if a non-bubble va...
Pass on call to the element where the element is a pointer.
bool canReserve() const
Can a slot be reserved?
ElemType & front()
Peek at the end element of the pipe.
bool alreadyPushed()
Have we already pushed onto this pipe without advancing.
std::string dataName
Name to use for the data in MinorTrace.
Wrapper for a queue type to act as a pipeline stage input queue.
virtual void reportData(std::ostream &os) const =0
Print the data in a format suitable to be the value in "name=value" trace lines.
MinorBuffer(const std::string &name, const std::string &data_name, int num_past, int num_future, int report_left=-1, int report_right=-1)
ElemType & front()
Head value.
Output(typename Buffer::wire output_wire)
Cycles delay
Delays, in cycles, writing data into the latch and seeing it on the latched wires.
void pop()
Pop the head item.
unsigned int capacity
Need this here as queues usually don't have a limited capacity.
Pass on call to the element.
unsigned int occupiedSpace() const
Number of slots already occupied in this buffer.
const std::string & name()
SelfStallingPipeline(const std::string &name, const std::string &data_name, unsigned depth)
unsigned int numReservedSlots
Number of slots currently reserved for future (reservation respecting) pushes.
static bool isBubble(const PtrType &elem)
virtual void freeReservation()=0
Free a reserved slot.
Input input()
An interface to just the input of the buffer.
TimeBuffer with MinorTrace and Named interfaces.
bool isPopable()
There's data (not a bubble) at the end of the pipe.
unsigned int occupancy
The number of slots with non-bubbles in them.
MinorBuffer< Data > Buffer
int reportLeft
The range of elements that should appear in trace lines.
Cycles is a wrapper class for representing cycle counts, i.e.
std::string dataName
Name to use for the data in a MinorTrace line.
static void reportData(std::ostream &os, const PtrType &elem)
const std::string & name() const
std::deque< ElemType > queue
Interface class for data with 'bubble' values.
const ElemType & front() const
void clearReservedSpace()
Clear all allocated space.
#define panic(...)
This implements a cprintf based panic() function.
static void reportData(std::ostream &os, const ElemType &elem)
Generated on Tue Mar 23 2021 19:41:24 for gem5 by doxygen 1.8.17