summaryrefslogtreecommitdiff
path: root/src/systemc/ext/channel
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-08-30 17:41:05 -0700
committerGabe Black <gabeblack@google.com>2018-10-03 00:27:44 +0000
commit3c40f3c0c420dc4215c97a646359f7cda5de829e (patch)
tree54ef2c4c9b93b2d3fa41a795a83007a2b6c81d9b /src/systemc/ext/channel
parent4c467c9ea9838b3644be131f455263f47a8f3988 (diff)
downloadgem5-3c40f3c0c420dc4215c97a646359f7cda5de829e.tar.xz
systemc: Implement sc_fifo::dump and improve sc_fifo::print.
The print function is supposed to print both pending and committed writes, apparently. Accellera's implementation of sc_fifo uses a ring buffer to store the entries and manages a head and tail pointer to keep track of what's full, etc. Their dump function prints that whole buffer using the indexes. When not using a ring buffer, there's no easy way to determine what those indexes should be. Fortunately the test that uses dump never moves away from the base of the ring buffer, so I can get the same effect (which also makes sense on its own) by printing the index into the fifo instead. Change-Id: I50fe049461f6a5e8a55b54eeb2f134d20f0812c6 Reviewed-on: https://gem5-review.googlesource.com/c/12455 Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/ext/channel')
-rw-r--r--src/systemc/ext/channel/sc_fifo.hh21
1 files changed, 17 insertions, 4 deletions
diff --git a/src/systemc/ext/channel/sc_fifo.hh b/src/systemc/ext/channel/sc_fifo.hh
index 4fe704613..7bf9efce0 100644
--- a/src/systemc/ext/channel/sc_fifo.hh
+++ b/src/systemc/ext/channel/sc_fifo.hh
@@ -142,15 +142,28 @@ class sc_fifo : public sc_fifo_in_if<T>,
virtual void
print(std::ostream &os=std::cout) const
{
+ for (typename ::std::list<T>::iterator pos = _pending.begin();
+ pos != _pending.end(); pos++) {
+ os << *pos << ::std::endl;
+ }
for (typename ::std::list<T>::iterator pos = _entries.begin();
pos != _entries.end(); pos++) {
os << *pos << ::std::endl;
}
}
virtual void
- dump(std::ostream & =std::cout) const
+ dump(std::ostream &os=std::cout) const
{
- sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
+ os << "name = " << name() << std::endl;
+ int idx = 0;
+ for (typename ::std::list<T>::iterator pos = _pending.begin();
+ pos != _pending.end(); pos++) {
+ os << "value[" << idx++ << "] = " << *pos << ::std::endl;
+ }
+ for (typename ::std::list<T>::iterator pos = _entries.begin();
+ pos != _entries.end(); pos++) {
+ os << "value[" << idx++ << "] = " << *pos << ::std::endl;
+ }
}
virtual const char *kind() const { return "sc_fifo"; }
@@ -187,9 +200,9 @@ class sc_fifo : public sc_fifo_in_if<T>,
template <class T>
inline std::ostream &
-operator << (std::ostream &os, const sc_fifo<T> &)
+operator << (std::ostream &os, const sc_fifo<T> &f)
{
- sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
+ f.print(os);
return os;
}