summaryrefslogtreecommitdiff
path: root/src/systemc/ext/channel/sc_fifo_out.hh
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-08-27 22:37:27 -0700
committerGabe Black <gabeblack@google.com>2018-10-03 00:11:33 +0000
commite061a36291dfb99b10b6637a80ae3f4da3ac7e0b (patch)
tree883646ae9af02902e71debccb593b2dae1707638 /src/systemc/ext/channel/sc_fifo_out.hh
parent41b339367c2c858c1dc9fb98931ceb6f3efb5b57 (diff)
downloadgem5-e061a36291dfb99b10b6637a80ae3f4da3ac7e0b.tar.xz
systemc: Implement most of sc_fifo and its interfaces.
There are still some bugs since the output of the tests don't all match, but more tests pass and fewer abort. Change-Id: I37f84d65c4a8a43357c98282096e39b9401fc1dd Reviewed-on: https://gem5-review.googlesource.com/c/12275 Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/ext/channel/sc_fifo_out.hh')
-rw-r--r--src/systemc/ext/channel/sc_fifo_out.hh57
1 files changed, 24 insertions, 33 deletions
diff --git a/src/systemc/ext/channel/sc_fifo_out.hh b/src/systemc/ext/channel/sc_fifo_out.hh
index af2f6efe5..52840305b 100644
--- a/src/systemc/ext/channel/sc_fifo_out.hh
+++ b/src/systemc/ext/channel/sc_fifo_out.hh
@@ -44,67 +44,58 @@ template <class T>
class sc_fifo_out : public sc_port<sc_fifo_out_if<T>, 0>
{
public:
- sc_fifo_out() : sc_port<sc_fifo_out_if<T>, 0>() {}
+ sc_fifo_out() : sc_port<sc_fifo_out_if<T>, 0>(),
+ _dataReadFinder(*this, &sc_fifo_out_if<T>::data_read_event)
+ {}
explicit sc_fifo_out(const char *name) :
- sc_port<sc_fifo_out_if<T>, 0>(name)
+ sc_port<sc_fifo_out_if<T>, 0>(name),
+ _dataReadFinder(*this, &sc_fifo_out_if<T>::data_read_event)
{}
virtual ~sc_fifo_out() {}
// Deprecated binding constructors.
explicit sc_fifo_out(const sc_fifo_out_if<T> &interface) :
- sc_port<sc_fifo_out_if<T>, 0>(interface)
+ sc_port<sc_fifo_out_if<T>, 0>(interface),
+ _dataReadFinder(*this, &sc_fifo_out_if<T>::data_read_event)
{}
sc_fifo_out(const char *name, const sc_fifo_out_if<T> &interface) :
- sc_port<sc_fifo_out_if<T>, 0>(name, interface)
+ sc_port<sc_fifo_out_if<T>, 0>(name, interface),
+ _dataReadFinder(*this, &sc_fifo_out_if<T>::data_read_event)
{}
explicit sc_fifo_out(sc_port_b<sc_fifo_out_if<T> > &parent) :
- sc_port<sc_fifo_out_if<T>, 0>(parent)
+ sc_port<sc_fifo_out_if<T>, 0>(parent),
+ _dataReadFinder(*this, &sc_fifo_out_if<T>::data_read_event)
{}
sc_fifo_out(const char *name, sc_port_b<sc_fifo_out_if<T> > &parent) :
- sc_port<sc_fifo_out_if<T>, 0>(name, parent)
+ sc_port<sc_fifo_out_if<T>, 0>(name, parent),
+ _dataReadFinder(*this, &sc_fifo_out_if<T>::data_read_event)
{}
explicit sc_fifo_out(sc_port<sc_fifo_out_if<T>, 0> &parent) :
- sc_port<sc_fifo_out_if<T>, 0>(parent)
+ sc_port<sc_fifo_out_if<T>, 0>(parent),
+ _dataReadFinder(*this, &sc_fifo_out_if<T>::data_read_event)
{}
sc_fifo_out(const char *name, sc_port<sc_fifo_out_if<T>, 0> &parent) :
- sc_port<sc_fifo_out_if<T>, 0>(name, parent)
+ sc_port<sc_fifo_out_if<T>, 0>(name, parent),
+ _dataReadFinder(*this, &sc_fifo_out_if<T>::data_read_event)
{}
- void
- write(const T &)
- {
- sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
- }
- bool
- nb_write(const T &)
- {
- sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
- return false;
- }
+ void write(const T &t) { (*this)->write(t); }
+ bool nb_write(const T &t) { return (*this)->nb_write(t); }
const sc_event &
data_read_event() const
{
- sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
- return *(const sc_event *)nullptr;
- }
- sc_event_finder &
- data_read() const
- {
- sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
- return *(sc_event_finder *)nullptr;
- }
- int
- num_free() const
- {
- sc_channel_warn_unimpl(__PRETTY_FUNCTION__);
- return 0;
+ return (*this)->data_read_event();
}
+ sc_event_finder &data_read() const { return _dataReadFinder; }
+ int num_free() const { return (*this)->num_free(); }
virtual const char *kind() const { return "sc_fifo_out"; }
private:
// Disabled
sc_fifo_out(const sc_fifo_out<T> &) : sc_port<sc_fifo_out_if<T>, 0>() {}
sc_fifo_out<T> &operator = (const sc_fifo_out<T> &) { return *this; }
+
+ mutable sc_event_finder_t<sc_fifo_out_if<T> > _dataReadFinder;
};
} // namespace sc_core