Go to the documentation of this file.
44 #ifndef __CPU_MINOR_BUFFERS_HH__
45 #define __CPU_MINOR_BUFFERS_HH__
96 template <
typename ElemType>
102 { elem.reportData(
os); }
107 template <
typename PtrType>
113 { elem->reportData(
os); }
121 template <
typename ElemType>
125 static bool isBubble(
const ElemType &) {
return false; }
129 panic(
"bubble called but no bubble interface");
134 template <
typename ElemType>
139 {
return elem.isBubble(); }
141 static ElemType
bubble() {
return ElemType::bubble(); }
145 template <
typename PtrType,
typename ElemType>
150 {
return elem->isBubble(); }
152 static PtrType
bubble() {
return ElemType::bubble(); }
156 template <
typename ElemType,
157 typename ReportTraits = ReportTraitsAdaptor<ElemType>,
158 typename BubbleTraits = BubbleTraitsAdaptor<ElemType> >
170 const std::string &data_name,
171 int num_past,
int num_future,
172 int report_left = -1,
int report_right = -1) :
186 if (!BubbleTraits::isBubble((*
this)[
i]))
200 std::ostringstream
data;
207 const ElemType &datum = (*this)[
i];
209 ReportTraits::reportData(
data, datum);
221 template <
typename Data>
238 const std::string &data_name,
240 bool report_backwards =
false) :
242 buffer(
name, data_name, delay_, 0, (report_backwards ? -delay_ : 0),
243 (report_backwards ? 0 : -delay_))
291 template <
typename ElemType,
292 typename ReportTraits,
293 typename BubbleTraits = BubbleTraitsAdaptor<ElemType> >
311 const std::string &data_name,
314 (
name, data_name, depth, 0, -1, -depth),
324 for (
unsigned i = 0;
i <= depth;
i++)
325 (*
this)[-
i] = BubbleTraits::bubble();
337 if (!BubbleTraits::isBubble(elem))
371 ElemType bubble = BubbleTraits::bubble();
401 template <
typename ElemType,
402 typename ReportTraits = ReportTraitsAdaptor<ElemType>,
403 typename BubbleTraits = BubbleTraitsAdaptor<ElemType> >
420 Queue(
const std::string &
name,
const std::string &data_name,
421 unsigned int capacity_) :
435 if (!BubbleTraits::isBubble(
data)) {
440 warn(
"%s: No space to push data into queue of capacity"
465 warn(
"%s: No space is reservable in queue",
name());
488 return (ret < 0 ? 0 : ret);
497 return (ret < 0 ? 0 : ret);
514 std::ostringstream
data;
525 while (num_printed <= num_occupied) {
526 ReportTraits::reportData(
data,
queue[num_printed - 1]);
529 if (num_printed <= num_total)
533 int num_printed_reserved = 1;
535 while (num_printed_reserved <= num_reserved &&
536 num_printed <= num_total)
539 num_printed_reserved++;
542 if (num_printed <= num_total)
547 while (num_printed <= num_total) {
550 if (num_printed <= num_total)
569 template <
typename ElemType,
570 typename ReportTraits = ReportTraitsAdaptor<ElemType>,
571 typename BubbleTraits = BubbleTraitsAdaptor<ElemType> >
583 unsigned int capacity_) :
596 if (!BubbleTraits::isBubble(new_element)) {
600 queue.push(new_element);
622 queue.freeReservation();
657 return queue.unreservedRemainingSpace();
ElemType & front()
Head value.
bool stalled
If true, advance will not advance the pipeline.
A similar adaptor but for elements held by pointer ElemType should implement ReportIF.
unsigned int capacity
Need this here as queues usually don't have a limited capacity.
std::string dataName
Name to use for the data in MinorTrace.
const ElemType & front() const
static void reportData(std::ostream &os, const PtrType &elem)
virtual void reportData(std::ostream &os) const =0
Print the data in a format suitable to be the value in "name=value" trace lines.
ElemType & front()
Peek at the end element of the pipe.
Base class for space reservation requestable objects.
Output(typename Buffer::wire output_wire)
Wrapper for a queue type to act as a pipeline stage input queue.
unsigned int totalSpace() const
Number of slots available in an empty buffer.
const ElemType & front() const
std::string dataName
Name to use for the data in a MinorTrace line.
bool empty() const
Is the queue empty?
TimeBuffer with MinorTrace and Named interfaces.
void clearReservedSpace()
Clear all allocated space.
MinorBuffer< Data > Buffer
Cycles is a wrapper class for representing cycle counts, i.e.
Interface for things with names.
bool canReserve() const
Can a slot be reserved?
int reportLeft
The range of elements that should appear in trace lines.
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.
...ReportTraits are trait classes with the same functionality as ReportIF, but with elements explicit...
bool isPopable()
There's data (not a bubble) at the end of the pipe.
void freeReservation()
Clear a single reserved slot.
Cycles delay
Delays, in cycles, writing data into the latch and seeing it on the latched wires.
Input input()
An interface to just the input of the buffer.
SelfStallingPipeline(const std::string &name, const std::string &data_name, unsigned depth)
virtual std::string name() const
static bool isBubble(const ElemType &)
static bool isBubble(const ElemType &elem)
void minorTrace() const
Report buffer states from 'slot' 'from' to 'to'.
void push(ElemType &data)
Push an element into the buffer if it isn't a bubble.
virtual bool isBubble() const =0
virtual bool canReserve() const =0
Can a slot be reserved?
Pass on call to the element where the element is a pointer.
std::deque< ElemType > queue
static void reportData(std::ostream &os, const ElemType &elem)
unsigned int unreservedRemainingSpace() const
Like remainingSpace but does not count reserved spaces.
Wraps a MinorBuffer with Input/Output interfaces to ensure that units within the model can only see t...
MinorBuffer(const std::string &name, const std::string &data_name, int num_past, int num_future, int report_left=-1, int report_right=-1)
unsigned int occupiedSpace() const
Number of slots already occupied in this buffer.
Interface class for data with 'bubble' values.
Queue(const std::string &name, const std::string &data_name, unsigned int capacity_)
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
const std::string & name()
Pass on call to the element.
void minorTrace(const char *fmt, Args ...args)
DPRINTFN for MinorTrace reporting.
unsigned int reservedSpace() const
Number of slots which are reserved.
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.
Interface class for data with reporting/tracing facilities.
virtual void reserve()=0
Reserve a slot in whatever structure this is attached to.
Output output()
An interface to just the output of the buffer.
unsigned int occupancy
The number of slots with non-bubbles in them.
static bool isBubble(const PtrType &elem)
void advance()
Try to advance the pipeline.
unsigned int remainingSpace() const
Number of slots yet to fill in this buffer.
void pop()
Pop the head item.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
A pipeline simulating class that will stall (not advance when advance() is called) if a non-bubble va...
unsigned int numReservedSlots
Number of slots currently reserved for future (reservation respecting) pushes.
virtual void freeReservation()=0
Free a reserved slot.
bool alreadyPushed()
Have we already pushed onto this pipe without advancing.
#define panic(...)
This implements a cprintf based panic() function.
void reserve()
Reserve space in the queue for future pushes.
TimeBuffer< ElemType >::wire pushWire
Wire at the input end of the pipeline (for convenience)
Generated on Tue Sep 7 2021 14:53:44 for gem5 by doxygen 1.8.17