44 #ifndef __CPU_MINOR_BUFFERS_HH__ 45 #define __CPU_MINOR_BUFFERS_HH__ 80 virtual bool isBubble()
const = 0;
89 template <
typename ElemType>
95 { elem.reportData(os); }
100 template <
typename PtrType>
106 { elem->reportData(os); }
114 template <
typename ElemType>
118 static bool isBubble(
const ElemType &) {
return false; }
122 panic(
"bubble called but no bubble interface");
127 template <
typename ElemType>
132 {
return elem.isBubble(); }
134 static ElemType
bubble() {
return ElemType::bubble(); }
138 template <
typename PtrType,
typename ElemType>
143 {
return elem->isBubble(); }
145 static PtrType
bubble() {
return ElemType::bubble(); }
149 template <
typename ElemType,
163 const std::string &data_name,
164 int num_past,
int num_future,
165 int report_left = -1,
int report_right = -1) :
167 reportLeft(report_left), reportRight(report_right),
178 for (
int i = -this->past;
i <= this->future;
i++) {
179 if (!BubbleTraits::isBubble((*
this)[
i]))
193 std::ostringstream
data;
195 int step = (reportLeft > reportRight ? -1 : 1);
196 int end = reportRight + step;
200 const ElemType &datum = (*this)[
i];
202 ReportTraits::reportData(data, datum);
214 template <
typename Data>
231 const std::string &data_name,
233 bool report_backwards =
false) :
235 buffer(name, data_name, delay_, 0, (report_backwards ? -delay_ : 0),
236 (report_backwards ? 0 : -delay_))
251 Input(
typename Buffer::wire input_wire) :
252 inputWire(input_wire)
262 Output(
typename Buffer::wire output_wire) :
263 outputWire(output_wire)
284 template <
typename ElemType,
285 typename ReportTraits,
304 const std::string &data_name,
307 (name, data_name, depth, 0, -1, -depth),
308 pushWire(this->getWire(0)),
309 popWire(this->getWire(-depth)),
317 for (
unsigned i = 0;
i <= depth;
i++)
318 (*
this)[-
i] = BubbleTraits::bubble();
328 assert(!alreadyPushed());
330 if (!BubbleTraits::isBubble(elem))
335 ElemType &
front() {
return *popWire; }
337 const ElemType &
front()
const {
return *popWire; }
343 bool isPopable() {
return !BubbleTraits::isBubble(front()); }
351 bool data_at_end = isPopable();
360 stalled = isPopable();
364 ElemType bubble = BubbleTraits::bubble();
375 virtual bool canReserve()
const = 0;
378 virtual void reserve() = 0;
381 virtual void freeReservation() = 0;
394 template <
typename ElemType,
413 Queue(
const std::string &
name,
const std::string &data_name,
414 unsigned int capacity_) :
428 if (!BubbleTraits::isBubble(data)) {
430 queue.push_back(data);
432 if (queue.size() > capacity) {
433 warn(
"%s: No space to push data into queue of capacity" 434 " %u, pushing anyway\n",
name(), capacity);
446 if (numReservedSlots != 0)
457 if (unreservedRemainingSpace() == 0)
458 warn(
"%s: No space is reservable in queue",
name());
463 bool canReserve()
const {
return unreservedRemainingSpace() != 0; }
479 int ret = capacity - queue.size();
481 return (ret < 0 ? 0 : ret);
488 int ret = capacity - (queue.size() + numReservedSlots);
490 return (ret < 0 ? 0 : ret);
494 ElemType &
front() {
return queue.front(); }
496 const ElemType &
front()
const {
return queue.front(); }
499 void pop() { queue.pop_front(); }
502 bool empty()
const {
return queue.empty(); }
507 std::ostringstream
data;
510 unsigned int num_total = (occupiedSpace() > totalSpace() ?
511 occupiedSpace() : totalSpace());
513 unsigned int num_reserved = reservedSpace();
514 unsigned int num_occupied = occupiedSpace();
518 while (num_printed <= num_occupied) {
519 ReportTraits::reportData(data, queue[num_printed - 1]);
522 if (num_printed <= num_total)
526 int num_printed_reserved = 1;
528 while (num_printed_reserved <= num_reserved &&
529 num_printed <= num_total)
532 num_printed_reserved++;
535 if (num_printed <= num_total)
540 while (num_printed <= num_total) {
543 if (num_printed <= num_total)
562 template <
typename ElemType,
576 unsigned int capacity_) :
577 queue(name, data_name, capacity_),
589 if (!BubbleTraits::isBubble(new_element)) {
591 elementPtr = &new_element;
593 queue.
push(new_element);
602 {
return (elementPtr ? *elementPtr : queue.
front()); }
605 {
return (elementPtr ? *elementPtr : queue.
front()); }
628 queue.
push(*elementPtr);
...ReportTraits are trait classes with the same functionality as ReportIF, but with elements explicit...
#define panic(...)
This implements a cprintf based panic() function.
Cycles is a wrapper class for representing cycle counts, i.e.
void pop()
Pop the head item.
static bool isBubble(const ElemType &)
unsigned int numReservedSlots
Number of slots currently reserved for future (reservation respecting) pushes.
const std::string & name()
MinorBuffer(const std::string &name, const std::string &data_name, int num_past, int num_future, int report_left=-1, int report_right=-1)
const ElemType & front() const
bool canReserve() const
Can a slot be reserved?
Output(typename Buffer::wire output_wire)
MinorBuffer< Data > Buffer
bool empty() const
Is the queue empty?
unsigned int unreservedRemainingSpace() const
Like remainingSpace but does not count reserved spaces.
const ElemType & front() const
unsigned int occupiedSpace() const
Number of slots already occupied in this buffer.
ElemType & front()
Peek at the end element of the pipe.
Interface class for data with 'bubble' values.
std::string dataName
Name to use for the data in a MinorTrace line.
Minor contains all the definitions within the MinorCPU apart from the CPU class itself.
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.
This file contains miscellaneous classes and functions for formatting general trace information and a...
Queue(const std::string &name, const std::string &data_name, unsigned int capacity_)
void reserve()
Reserve space in the queue for future pushes.
void advance()
Try to advance the pipeline.
TimeBuffer< ElemType >::wire popWire
Wire at the output end of the pipeline (for convenience)
std::string dataName
Name to use for the data in MinorTrace.
unsigned int capacity
Need this here as queues usually don't have a limited capacity.
void freeReservation()
Clear a single reserved slot.
A similar adaptor but for elements held by pointer ElemType should implement ReportIF.
TimeBuffer with MinorTrace and Named interfaces.
Base class for space reservation requestable objects.
Pass on call to the element where the element is a pointer.
std::deque< ElemType > queue
unsigned int reservedSpace() const
Number of slots which are reserved.
static bool isBubble(const PtrType &elem)
ElemType & front()
Head value.
static void reportData(std::ostream &os, const PtrType &elem)
unsigned int occupancy
The number of slots with non-bubbles in them.
virtual void reportData(std::ostream &os) const =0
Print the data in a format suitable to be the value in "name=value" trace lines.
unsigned int remainingSpace() const
Number of slots yet to fill in this buffer.
Pass on call to the element.
bool alreadyPushed()
Have we already pushed onto this pipe without advancing.
Cycles delay
Delays, in cycles, writing data into the latch and seeing it on the latched wires.
Output output()
An interface to just the output of the buffer.
void clearReservedSpace()
Clear all allocated space.
static bool isBubble(const ElemType &elem)
A pipeline simulating class that will stall (not advance when advance() is called) if a non-bubble va...
void push(ElemType &data)
Push an element into the buffer if it isn't a bubble.
#define MINORTRACE(...)
DPRINTFN for MinorTrace reporting.
SelfStallingPipeline(const std::string &name, const std::string &data_name, unsigned depth)
Interface class for data with reporting/tracing facilities.
Wraps a MinorBuffer with Input/Output interfaces to ensure that units within the model can only see t...
static void reportData(std::ostream &os, const ElemType &elem)
void minorTrace() const
Report buffer states from 'slot' 'from' to 'to'.
void push(ElemType &elem)
Write an element to the back of the pipeline.
TimeBuffer< ElemType >::wire pushWire
Wire at the input end of the pipeline (for convenience)
bool stalled
If true, advance will not advance the pipeline.
bool isPopable()
There's data (not a bubble) at the end of the pipe.
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.
Input input()
An interface to just the input of the buffer.