Files
gem5/src/systemc/core/sc_prim.cc
Gabe Black 7088d69ab5 systemc: Implement channel updates and rework the scheduler.
This change implements channel updates, and also reworks the scheduler
to delegate more to the gem5 event queue by taking advantage of
event priorities to ensure things happen in the right order. There's
a lengthy comment in scheduler.hh describes how that all works.

Change-Id: I5dee71b86b2e612bb720a4429f3a72e4b7c6d01f
Reviewed-on: https://gem5-review.googlesource.com/11710
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
2018-09-05 06:04:19 +00:00

219 lines
4.7 KiB
C++

/*
* Copyright 2018 Google, Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met: redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer;
* redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution;
* neither the name of the copyright holders nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* Authors: Gabe Black
*/
#include "base/logging.hh"
#include "systemc/core/channel.hh"
#include "systemc/ext/core/sc_prim.hh"
namespace sc_core
{
sc_prim_channel::sc_prim_channel() :
_gem5_channel(new sc_gem5::Channel(this))
{}
sc_prim_channel::sc_prim_channel(const char *_name) :
sc_object(_name), _gem5_channel(new sc_gem5::Channel(this))
{}
sc_prim_channel::~sc_prim_channel() { delete _gem5_channel; }
void
sc_prim_channel::request_update()
{
_gem5_channel->requestUpdate();
}
void
sc_prim_channel::async_request_update()
{
_gem5_channel->asyncRequestUpdate();
}
void
sc_prim_channel::next_trigger()
{
::sc_core::next_trigger();
}
void
sc_prim_channel::next_trigger(const sc_event &e)
{
::sc_core::next_trigger(e);
}
void
sc_prim_channel::next_trigger(const sc_event_or_list &eol)
{
::sc_core::next_trigger(eol);
}
void
sc_prim_channel::next_trigger(const sc_event_and_list &eal)
{
::sc_core::next_trigger(eal);
}
void
sc_prim_channel::next_trigger(const sc_time &t)
{
::sc_core::next_trigger(t);
}
void
sc_prim_channel::next_trigger(double d, sc_time_unit u)
{
::sc_core::next_trigger(d, u);
}
void
sc_prim_channel::next_trigger(const sc_time &t, const sc_event &e)
{
::sc_core::next_trigger(t, e);
}
void
sc_prim_channel::next_trigger(double d, sc_time_unit u, const sc_event &e)
{
::sc_core::next_trigger(d, u, e);
}
void
sc_prim_channel::next_trigger(const sc_time &t, const sc_event_or_list &eol)
{
::sc_core::next_trigger(t, eol);
}
void
sc_prim_channel::next_trigger(
double d, sc_time_unit u, const sc_event_or_list &eol)
{
::sc_core::next_trigger(d, u, eol);
}
void
sc_prim_channel::next_trigger(const sc_time &t, const sc_event_and_list &eal)
{
::sc_core::next_trigger(t, eal);
}
void
sc_prim_channel::next_trigger(
double d, sc_time_unit u, const sc_event_and_list &eal)
{
::sc_core::next_trigger(d, u, eal);
}
bool
sc_prim_channel::timed_out()
{
warn("%s not implemented.\n", __PRETTY_FUNCTION__);
return false;
}
void
sc_prim_channel::wait()
{
::sc_core::wait();
}
void
sc_prim_channel::wait(int i)
{
::sc_core::wait(i);
}
void
sc_prim_channel::wait(const sc_event &e)
{
::sc_core::wait(e);
}
void
sc_prim_channel::wait(const sc_event_or_list &eol)
{
::sc_core::wait(eol);
}
void
sc_prim_channel::wait(const sc_event_and_list &eal)
{
::sc_core::wait(eal);
}
void
sc_prim_channel::wait(const sc_time &t)
{
::sc_core::wait(t);
}
void
sc_prim_channel::wait(double d, sc_time_unit u)
{
::sc_core::wait(d, u);
}
void
sc_prim_channel::wait(const sc_time &t, const sc_event &e)
{
::sc_core::wait(t, e);
}
void
sc_prim_channel::wait(double d, sc_time_unit u, const sc_event &e)
{
::sc_core::wait(d, u, e);
}
void
sc_prim_channel::wait(const sc_time &t, const sc_event_or_list &eol)
{
::sc_core::wait(t, eol);
}
void
sc_prim_channel::wait(double d, sc_time_unit u, const sc_event_or_list &eol)
{
::sc_core::wait(d, u, eol);
}
void
sc_prim_channel::wait(const sc_time &t, const sc_event_and_list &eal)
{
::sc_core::wait(t, eal);
}
void
sc_prim_channel::wait(double d, sc_time_unit u, const sc_event_and_list &eal)
{
::sc_core::wait(d, u, eal);
}
} // namespace sc_core