gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
buffers.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013-2014 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
44 #ifndef __CPU_MINOR_BUFFERS_HH__
45 #define __CPU_MINOR_BUFFERS_HH__
46 
47 #include <iostream>
48 #include <queue>
49 #include <sstream>
50 #include <string>
51 
52 #include "base/logging.hh"
53 #include "base/types.hh"
54 #include "cpu/activity.hh"
55 #include "cpu/minor/trace.hh"
56 #include "cpu/timebuf.hh"
57 
58 namespace Minor
59 {
60 
65 class ReportIF
66 {
67  public:
70  virtual void reportData(std::ostream &os) const = 0;
71 
72  virtual ~ReportIF() { }
73 };
74 
79 class BubbleIF
80 {
81  public:
82  virtual bool isBubble() const = 0;
83 };
84 
91 template <typename ElemType> /* ElemType should implement ReportIF */
93 {
94  public:
95  static void
96  reportData(std::ostream &os, const ElemType &elem)
97  { elem.reportData(os); }
98 };
99 
102 template <typename PtrType>
104 {
105  public:
106  static void
107  reportData(std::ostream &os, const PtrType &elem)
108  { elem->reportData(os); }
109 };
110 
116 template <typename ElemType>
118 {
119  public:
120  static bool isBubble(const ElemType &) { return false; }
121  static ElemType
123  {
124  panic("bubble called but no bubble interface");
125  }
126 };
127 
129 template <typename ElemType>
131 {
132  public:
133  static bool isBubble(const ElemType &elem)
134  { return elem.isBubble(); }
135 
136  static ElemType bubble() { return ElemType::bubble(); }
137 };
138 
140 template <typename PtrType, typename ElemType>
142 {
143  public:
144  static bool isBubble(const PtrType &elem)
145  { return elem->isBubble(); }
146 
147  static PtrType bubble() { return ElemType::bubble(); }
148 };
149 
151 template <typename ElemType,
152  typename ReportTraits = ReportTraitsAdaptor<ElemType>,
153  typename BubbleTraits = BubbleTraitsAdaptor<ElemType> >
154 class MinorBuffer : public Named, public TimeBuffer<ElemType>
155 {
156  protected:
159 
161  std::string dataName;
162 
163  public:
164  MinorBuffer(const std::string &name,
165  const std::string &data_name,
166  int num_past, int num_future,
167  int report_left = -1, int report_right = -1) :
168  Named(name), TimeBuffer<ElemType>(num_past, num_future),
169  reportLeft(report_left), reportRight(report_right),
170  dataName(data_name)
171  { }
172 
173  public:
174  /* Is this buffer full of only bubbles */
175  bool
176  empty() const
177  {
178  bool ret = true;
179 
180  for (int i = -this->past; i <= this->future; i++) {
181  if (!BubbleTraits::isBubble((*this)[i]))
182  ret = false;
183  }
184 
185  return ret;
186  }
187 
192  void
193  minorTrace() const
194  {
195  std::ostringstream data;
196 
197  int step = (reportLeft > reportRight ? -1 : 1);
198  int end = reportRight + step;
199  int i = reportLeft;
200 
201  while (i != end) {
202  const ElemType &datum = (*this)[i];
203 
204  ReportTraits::reportData(data, datum);
205  i += step;
206  if (i != end)
207  data << ',';
208  }
209 
210  MINORTRACE("%s=%s\n", dataName, data.str());
211  }
212 };
213 
216 template <typename Data>
217 class Latch
218 {
219  public:
221 
222  protected:
226 
228 
229  public:
232  Latch(const std::string &name,
233  const std::string &data_name,
234  Cycles delay_ = Cycles(1),
235  bool report_backwards = false) :
236  delay(delay_),
237  buffer(name, data_name, delay_, 0, (report_backwards ? -delay_ : 0),
238  (report_backwards ? 0 : -delay_))
239  { }
240 
241  public:
247  class Input
248  {
249  public:
251 
252  public:
253  Input(typename Buffer::wire input_wire) :
254  inputWire(input_wire)
255  { }
256  };
257 
258  class Output
259  {
260  public:
262 
263  public:
264  Output(typename Buffer::wire output_wire) :
265  outputWire(output_wire)
266  { }
267  };
268 
269  bool empty() const { return buffer.empty(); }
270 
272  Input input() { return Input(buffer.getWire(0)); }
273 
275  Output output() { return Output(buffer.getWire(-delay)); }
276 
277  void minorTrace() const { buffer.minorTrace(); }
278 
279  void evaluate() { buffer.advance(); }
280 };
281 
286 template <typename ElemType,
287  typename ReportTraits,
288  typename BubbleTraits = BubbleTraitsAdaptor<ElemType> >
289 class SelfStallingPipeline : public MinorBuffer<ElemType, ReportTraits>
290 {
291  protected:
296 
297  public:
299  bool stalled;
300 
302  unsigned int occupancy;
303 
304  public:
305  SelfStallingPipeline(const std::string &name,
306  const std::string &data_name,
307  unsigned depth) :
308  MinorBuffer<ElemType, ReportTraits>
309  (name, data_name, depth, 0, -1, -depth),
310  pushWire(this->getWire(0)),
311  popWire(this->getWire(-depth)),
312  stalled(false),
313  occupancy(0)
314  {
315  assert(depth > 0);
316 
317  /* Write explicit bubbles to get around the case where the default
318  * constructor for the element type isn't good enough */
319  for (unsigned i = 0; i <= depth; i++)
320  (*this)[-i] = BubbleTraits::bubble();
321  }
322 
323  public:
328  void push(ElemType &elem)
329  {
330  assert(!alreadyPushed());
331  *pushWire = elem;
332  if (!BubbleTraits::isBubble(elem))
333  occupancy++;
334  }
335 
337  ElemType &front() { return *popWire; }
338 
339  const ElemType &front() const { return *popWire; }
340 
342  bool alreadyPushed() { return !BubbleTraits::isBubble(*pushWire); }
343 
345  bool isPopable() { return !BubbleTraits::isBubble(front()); }
346 
350  void
352  {
353  bool data_at_end = isPopable();
354 
355  if (!stalled) {
357  /* If there was data at the end of the pipe that has now been
358  * advanced out of the pipe, we've lost data */
359  if (data_at_end)
360  occupancy--;
361  /* Is there data at the end of the pipe now? */
362  stalled = isPopable();
363  /* Insert a bubble into the empty input slot to make sure that
364  * element is correct in the case where the default constructor
365  * for ElemType doesn't produce a bubble */
366  ElemType bubble = BubbleTraits::bubble();
367  *pushWire = bubble;
368  }
369  }
370 };
371 
374 {
375  public:
377  virtual bool canReserve() const = 0;
378 
380  virtual void reserve() = 0;
381 
383  virtual void freeReservation() = 0;
384 
385  virtual ~Reservable() {};
386 };
387 
396 template <typename ElemType,
397  typename ReportTraits = ReportTraitsAdaptor<ElemType>,
398  typename BubbleTraits = BubbleTraitsAdaptor<ElemType> >
399 class Queue : public Named, public Reservable
400 {
401  private:
403 
406  unsigned int numReservedSlots;
407 
409  unsigned int capacity;
410 
412  std::string dataName;
413 
414  public:
415  Queue(const std::string &name, const std::string &data_name,
416  unsigned int capacity_) :
417  Named(name),
418  numReservedSlots(0),
419  capacity(capacity_),
420  dataName(data_name)
421  { }
422 
423  public:
427  void
428  push(ElemType &data)
429  {
430  if (!BubbleTraits::isBubble(data)) {
431  freeReservation();
432  queue.push_back(data);
433 
434  if (queue.size() > capacity) {
435  warn("%s: No space to push data into queue of capacity"
436  " %u, pushing anyway\n", name(), capacity);
437  }
438 
439  }
440  }
441 
444 
447  {
448  if (numReservedSlots != 0)
450  }
451 
455  void
457  {
458  /* Check reservable space */
459  if (unreservedRemainingSpace() == 0)
460  warn("%s: No space is reservable in queue", name());
461 
463  }
464 
465  bool canReserve() const { return unreservedRemainingSpace() != 0; }
466 
468  unsigned int totalSpace() const { return capacity; }
469 
471  unsigned int occupiedSpace() const { return queue.size(); }
472 
474  unsigned int reservedSpace() const { return numReservedSlots; }
475 
478  unsigned int
480  {
481  int ret = capacity - queue.size();
482 
483  return (ret < 0 ? 0 : ret);
484  }
485 
487  unsigned int
489  {
490  int ret = capacity - (queue.size() + numReservedSlots);
491 
492  return (ret < 0 ? 0 : ret);
493  }
494 
496  ElemType &front() { return queue.front(); }
497 
498  const ElemType &front() const { return queue.front(); }
499 
501  void pop() { queue.pop_front(); }
502 
504  bool empty() const { return queue.empty(); }
505 
506  void
507  minorTrace() const
508  {
509  std::ostringstream data;
510  /* If we become over-full, totalSpace() can actually be smaller than
511  * occupiedSpace(). Handle this */
512  unsigned int num_total = (occupiedSpace() > totalSpace() ?
513  occupiedSpace() : totalSpace());
514 
515  unsigned int num_reserved = reservedSpace();
516  unsigned int num_occupied = occupiedSpace();
517 
518  int num_printed = 1;
519  /* Bodge to rotate queue to report elements */
520  while (num_printed <= num_occupied) {
521  ReportTraits::reportData(data, queue[num_printed - 1]);
522  num_printed++;
523 
524  if (num_printed <= num_total)
525  data << ',';
526  }
527 
528  int num_printed_reserved = 1;
529  /* Show reserved slots */
530  while (num_printed_reserved <= num_reserved &&
531  num_printed <= num_total)
532  {
533  data << 'R';
534  num_printed_reserved++;
535  num_printed++;
536 
537  if (num_printed <= num_total)
538  data << ',';
539  }
540 
541  /* And finally pad with empty slots (if there are any) */
542  while (num_printed <= num_total) {
543  num_printed++;
544 
545  if (num_printed <= num_total)
546  data << ',';
547  }
548 
549  MINORTRACE("%s=%s\n", dataName, data.str());
550  }
551 };
552 
564 template <typename ElemType,
565  typename ReportTraits = ReportTraitsAdaptor<ElemType>,
566  typename BubbleTraits = BubbleTraitsAdaptor<ElemType> >
567 class InputBuffer : public Reservable
568 {
569  protected:
572 
574  mutable ElemType *elementPtr;
575 
576  public:
577  InputBuffer(const std::string &name, const std::string &data_name,
578  unsigned int capacity_) :
579  queue(name, data_name, capacity_),
580  elementPtr(NULL)
581  { }
582 
583  public:
587  void
588  setTail(ElemType &new_element)
589  {
590  assert(!elementPtr);
591  if (!BubbleTraits::isBubble(new_element)) {
592  if (queue.empty())
593  elementPtr = &new_element;
594  else
595  queue.push(new_element);
596  }
597  }
598 
600  bool empty() const { return !elementPtr && queue.empty(); }
601 
603  const ElemType &front() const
604  { return (elementPtr ? *elementPtr : queue.front()); }
605 
606  ElemType &front()
607  { return (elementPtr ? *elementPtr : queue.front()); }
608 
610  void
611  pop()
612  {
613  if (elementPtr) {
614  /* A popped element was expected to be pushed into queue
615  * and so take a reserved space */
616  elementPtr = NULL;
617  queue.freeReservation();
618  } else {
619  queue.pop();
620  }
621  }
622 
626  void
627  pushTail() const
628  {
629  if (elementPtr)
630  queue.push(*elementPtr);
631  elementPtr = NULL;
632  }
633 
635  void
636  minorTrace() const
637  {
638  pushTail();
639  queue.minorTrace();
640  }
641 
643  bool canReserve() const { return queue.canReserve(); }
644  void reserve() { queue.reserve(); }
645  void freeReservation() { queue.freeReservation(); }
646 
648  unsigned int
650  {
651  pushTail();
652  return queue.unreservedRemainingSpace();
653  }
654 };
655 
656 }
657 
658 #endif /* __CPU_MINOR_BUFFERS_HH__ */
Minor::Reservable::reserve
virtual void reserve()=0
Reserve a slot in whatever structure this is attached to.
Minor::Reservable::canReserve
virtual bool canReserve() const =0
Can a slot be reserved?
X86ISA::os
Bitfield< 17 > os
Definition: misc.hh:803
warn
#define warn(...)
Definition: logging.hh:239
Minor::SelfStallingPipeline::advance
void advance()
Try to advance the pipeline.
Definition: buffers.hh:351
Minor::InputBuffer::pushTail
void pushTail() const
Push the single element (if any) into the queue proper.
Definition: buffers.hh:627
Minor::MinorBuffer::minorTrace
void minorTrace() const
Report buffer states from 'slot' 'from' to 'to'.
Definition: buffers.hh:193
Minor::BubbleIF::isBubble
virtual bool isBubble() const =0
Minor::Latch::Input::inputWire
Buffer::wire inputWire
Definition: buffers.hh:250
Minor::Queue::Queue
Queue(const std::string &name, const std::string &data_name, unsigned int capacity_)
Definition: buffers.hh:415
Minor::SelfStallingPipeline::stalled
bool stalled
If true, advance will not advance the pipeline.
Definition: buffers.hh:299
TimeBuffer< ElemType >::future
int future
Definition: timebuf.hh:41
data
const char data[]
Definition: circlebuf.test.cc:47
Minor::SelfStallingPipeline::pushWire
TimeBuffer< ElemType >::wire pushWire
Wire at the input end of the pipeline (for convenience)
Definition: buffers.hh:293
Minor::SelfStallingPipeline::popWire
TimeBuffer< ElemType >::wire popWire
Wire at the output end of the pipeline (for convenience)
Definition: buffers.hh:295
Minor::SelfStallingPipeline::push
void push(ElemType &elem)
Write an element to the back of the pipeline.
Definition: buffers.hh:328
Minor::Queue::reservedSpace
unsigned int reservedSpace() const
Number of slots which are reserved.
Definition: buffers.hh:474
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
Minor::Queue::freeReservation
void freeReservation()
Clear a single reserved slot.
Definition: buffers.hh:446
Minor::InputBuffer::pop
void pop()
Pop either the head, or if none, the head of the queue.
Definition: buffers.hh:611
Minor::Queue::totalSpace
unsigned int totalSpace() const
Number of slots available in an empty buffer.
Definition: buffers.hh:468
Minor::Latch::Input
Encapsulate wires on either input or output of the latch.
Definition: buffers.hh:247
TimeBuffer< ElemType >::past
int past
Definition: timebuf.hh:40
Minor::Latch
Wraps a MinorBuffer with Input/Output interfaces to ensure that units within the model can only see t...
Definition: buffers.hh:217
Minor::Latch::output
Output output()
An interface to just the output of the buffer.
Definition: buffers.hh:275
Minor::Latch::evaluate
void evaluate()
Definition: buffers.hh:279
Minor::Queue::minorTrace
void minorTrace() const
Definition: buffers.hh:507
Minor::Reservable::~Reservable
virtual ~Reservable()
Definition: buffers.hh:385
Minor::NoBubbleTraits::bubble
static ElemType bubble()
Definition: buffers.hh:122
MINORTRACE
#define MINORTRACE(...)
DPRINTFN for MinorTrace reporting.
Definition: trace.hh:60
Minor::InputBuffer::queue
Queue< ElemType, ReportTraits, BubbleTraits > queue
Underlying queue.
Definition: buffers.hh:571
Minor::Queue::empty
bool empty() const
Is the queue empty?
Definition: buffers.hh:504
Minor::Latch::buffer
Buffer buffer
Definition: buffers.hh:227
Minor::Reservable
Base class for space reservation requestable objects.
Definition: buffers.hh:373
Minor::Queue::push
void push(ElemType &data)
Push an element into the buffer if it isn't a bubble.
Definition: buffers.hh:428
Minor::BubbleTraitsAdaptor::isBubble
static bool isBubble(const ElemType &elem)
Definition: buffers.hh:133
Minor::Queue::unreservedRemainingSpace
unsigned int unreservedRemainingSpace() const
Like remainingSpace but does not count reserved spaces.
Definition: buffers.hh:488
Minor::Latch::Latch
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.
Definition: buffers.hh:232
Minor::Queue::remainingSpace
unsigned int remainingSpace() const
Number of slots yet to fill in this buffer.
Definition: buffers.hh:479
Minor::ReportIF
Interface class for data with reporting/tracing facilities.
Definition: buffers.hh:65
Minor::ReportTraitsPtrAdaptor
A similar adaptor but for elements held by pointer ElemType should implement ReportIF.
Definition: buffers.hh:103
Minor::Queue::front
const ElemType & front() const
Definition: buffers.hh:498
Minor
Definition: activity.cc:44
TimeBuffer
Definition: timebuf.hh:37
Minor::Queue::reserve
void reserve()
Reserve space in the queue for future pushes.
Definition: buffers.hh:456
Minor::NoBubbleTraits::isBubble
static bool isBubble(const ElemType &)
Definition: buffers.hh:120
Minor::ReportTraitsAdaptor
...ReportTraits are trait classes with the same functionality as ReportIF, but with elements explicit...
Definition: buffers.hh:92
Minor::SelfStallingPipeline
A pipeline simulating class that will stall (not advance when advance() is called) if a non-bubble va...
Definition: buffers.hh:289
Minor::BubbleTraitsPtrAdaptor
Pass on call to the element where the element is a pointer.
Definition: buffers.hh:141
timebuf.hh
Minor::Latch::minorTrace
void minorTrace() const
Definition: buffers.hh:277
Minor::Latch::empty
bool empty() const
Definition: buffers.hh:269
Minor::InputBuffer::InputBuffer
InputBuffer(const std::string &name, const std::string &data_name, unsigned int capacity_)
Definition: buffers.hh:577
Minor::Queue::canReserve
bool canReserve() const
Can a slot be reserved?
Definition: buffers.hh:465
Minor::SelfStallingPipeline::front
ElemType & front()
Peek at the end element of the pipe.
Definition: buffers.hh:337
Minor::MinorBuffer::empty
bool empty() const
Definition: buffers.hh:176
Minor::InputBuffer::setTail
void setTail(ElemType &new_element)
Set the tail of the queue, this is like push but needs to be followed by pushTail for the new tail to...
Definition: buffers.hh:588
Minor::Latch::Output
Definition: buffers.hh:258
Minor::InputBuffer::front
const ElemType & front() const
Return the element, or the front of the queue.
Definition: buffers.hh:603
Minor::SelfStallingPipeline::alreadyPushed
bool alreadyPushed()
Have we already pushed onto this pipe without advancing.
Definition: buffers.hh:342
Minor::Queue::dataName
std::string dataName
Name to use for the data in MinorTrace.
Definition: buffers.hh:412
Minor::Queue
Wrapper for a queue type to act as a pipeline stage input queue.
Definition: buffers.hh:399
Minor::ReportIF::reportData
virtual void reportData(std::ostream &os) const =0
Print the data in a format suitable to be the value in "name=value" trace lines.
activity.hh
Minor::MinorBuffer::MinorBuffer
MinorBuffer(const std::string &name, const std::string &data_name, int num_past, int num_future, int report_left=-1, int report_right=-1)
Definition: buffers.hh:164
Minor::Queue::front
ElemType & front()
Head value.
Definition: buffers.hh:496
Minor::Latch::Output::Output
Output(typename Buffer::wire output_wire)
Definition: buffers.hh:264
Minor::Latch::Output::outputWire
Buffer::wire outputWire
Definition: buffers.hh:261
Minor::InputBuffer
Like a Queue but with a restricted interface and a setTail function which, when the queue is empty,...
Definition: buffers.hh:567
Minor::Latch::delay
Cycles delay
Delays, in cycles, writing data into the latch and seeing it on the latched wires.
Definition: buffers.hh:225
Minor::Queue::pop
void pop()
Pop the head item.
Definition: buffers.hh:501
Minor::Queue::capacity
unsigned int capacity
Need this here as queues usually don't have a limited capacity.
Definition: buffers.hh:409
Minor::BubbleTraitsAdaptor
Pass on call to the element.
Definition: buffers.hh:130
Minor::Latch::Input::Input
Input(typename Buffer::wire input_wire)
Definition: buffers.hh:253
Minor::InputBuffer::elementPtr
ElemType * elementPtr
Pointer to the single element (if not NULL)
Definition: buffers.hh:574
Minor::Queue::occupiedSpace
unsigned int occupiedSpace() const
Number of slots already occupied in this buffer.
Definition: buffers.hh:471
name
const std::string & name()
Definition: trace.cc:48
Minor::SelfStallingPipeline::SelfStallingPipeline
SelfStallingPipeline(const std::string &name, const std::string &data_name, unsigned depth)
Definition: buffers.hh:305
Named
Definition: trace.hh:150
Minor::Queue::numReservedSlots
unsigned int numReservedSlots
Number of slots currently reserved for future (reservation respecting) pushes.
Definition: buffers.hh:406
Minor::BubbleTraitsPtrAdaptor::isBubble
static bool isBubble(const PtrType &elem)
Definition: buffers.hh:144
Minor::Reservable::freeReservation
virtual void freeReservation()=0
Free a reserved slot.
Minor::InputBuffer::reserve
void reserve()
Reserve a slot in whatever structure this is attached to.
Definition: buffers.hh:644
Minor::Latch::input
Input input()
An interface to just the input of the buffer.
Definition: buffers.hh:272
Minor::MinorBuffer
TimeBuffer with MinorTrace and Named interfaces.
Definition: buffers.hh:154
Minor::SelfStallingPipeline::isPopable
bool isPopable()
There's data (not a bubble) at the end of the pipe.
Definition: buffers.hh:345
Minor::InputBuffer::canReserve
bool canReserve() const
Reservable interface, passed on to queue.
Definition: buffers.hh:643
Minor::SelfStallingPipeline::occupancy
unsigned int occupancy
The number of slots with non-bubbles in them.
Definition: buffers.hh:302
types.hh
Minor::Latch::Buffer
MinorBuffer< Data > Buffer
Definition: buffers.hh:220
std::deque< ElemType >
Minor::MinorBuffer::reportLeft
int reportLeft
The range of elements that should appear in trace lines.
Definition: buffers.hh:158
logging.hh
TimeBuffer< Data >::wire
friend class wire
Definition: timebuf.hh:55
Cycles
Cycles is a wrapper class for representing cycle counts, i.e.
Definition: types.hh:79
Minor::MinorBuffer::dataName
std::string dataName
Name to use for the data in a MinorTrace line.
Definition: buffers.hh:161
Minor::InputBuffer::front
ElemType & front()
Definition: buffers.hh:606
Minor::NoBubbleTraits
...
Definition: buffers.hh:117
Minor::ReportTraitsPtrAdaptor::reportData
static void reportData(std::ostream &os, const PtrType &elem)
Definition: buffers.hh:107
Minor::InputBuffer::unreservedRemainingSpace
unsigned int unreservedRemainingSpace()
Like remainingSpace but does not count reserved spaces.
Definition: buffers.hh:649
Minor::InputBuffer::empty
bool empty() const
No single element or queue entries.
Definition: buffers.hh:600
Minor::InputBuffer::minorTrace
void minorTrace() const
Report elements.
Definition: buffers.hh:636
TimeBuffer< ElemType >::data
char * data
Definition: timebuf.hh:45
Minor::ReportIF::~ReportIF
virtual ~ReportIF()
Definition: buffers.hh:72
TimeBuffer::advance
void advance()
Definition: timebuf.hh:176
Named::name
const std::string & name() const
Definition: trace.hh:159
trace.hh
Minor::MinorBuffer::reportRight
int reportRight
Definition: buffers.hh:158
Minor::BubbleTraitsPtrAdaptor::bubble
static PtrType bubble()
Definition: buffers.hh:147
Minor::Queue::queue
std::deque< ElemType > queue
Definition: buffers.hh:402
Minor::BubbleIF
Interface class for data with 'bubble' values.
Definition: buffers.hh:79
Minor::SelfStallingPipeline::front
const ElemType & front() const
Definition: buffers.hh:339
Minor::InputBuffer::freeReservation
void freeReservation()
Free a reserved slot.
Definition: buffers.hh:645
Minor::Queue::clearReservedSpace
void clearReservedSpace()
Clear all allocated space.
Definition: buffers.hh:443
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
TimeBuffer::getWire
wire getWire(int idx)
Definition: timebuf.hh:229
Minor::ReportTraitsAdaptor::reportData
static void reportData(std::ostream &os, const ElemType &elem)
Definition: buffers.hh:96
Minor::BubbleTraitsAdaptor::bubble
static ElemType bubble()
Definition: buffers.hh:136

Generated on Tue Mar 23 2021 19:41:24 for gem5 by doxygen 1.8.17