In the past it happened several times that some changes in gem5 broke the SystemC coupling. Recently Accelera has changed the licence for SystemC from their own licence to Apache2.0, which is compatible with gem5. However, SystemC usually relies on the Boost library, but I was able to exchange the boost calls by c++11 alternatives. The recent SystemC version is placed into /ext and is integrated into gem5's build system. The goal is to integrate some SystemC tests for the CI in some following patches. Change-Id: I4b66ec806b5e3cffc1d7c85d3735ff4fa5b31fd0 Reviewed-on: https://gem5-review.googlesource.com/2240 Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
114 lines
4.0 KiB
C++
114 lines
4.0 KiB
C++
/*****************************************************************************
|
|
|
|
Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
|
|
more contributor license agreements. See the NOTICE file distributed
|
|
with this work for additional information regarding copyright ownership.
|
|
Accellera licenses this file to you under the Apache License, Version 2.0
|
|
(the "License"); you may not use this file except in compliance with the
|
|
License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
implied. See the License for the specific language governing
|
|
permissions and limitations under the License.
|
|
|
|
*****************************************************************************/
|
|
|
|
/*****************************************************************************
|
|
|
|
sc_event_finder.cpp --
|
|
|
|
Original Author: Martin Janssen, Synopsys, Inc.
|
|
Stan Y. Liao, Synopsys, Inc., 2001-05-21
|
|
|
|
CHANGE LOG IS AT THE END OF THE FILE
|
|
*****************************************************************************/
|
|
|
|
#include "sysc/communication/sc_event_finder.h"
|
|
|
|
namespace sc_core {
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// CLASS : sc_event_finder
|
|
//
|
|
// Event finder base class.
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// error reporting
|
|
|
|
void
|
|
sc_event_finder::report_error( const char* id, const char* add_msg ) const
|
|
{
|
|
char msg[BUFSIZ];
|
|
if( add_msg != 0 ) {
|
|
std::sprintf( msg, "%s: port '%s' (%s)",
|
|
add_msg, m_port.name(), m_port.kind() );
|
|
} else {
|
|
std::sprintf( msg, "port '%s' (%s)", m_port.name(), m_port.kind() );
|
|
}
|
|
SC_REPORT_ERROR( id, msg );
|
|
}
|
|
|
|
|
|
// constructor
|
|
|
|
sc_event_finder::sc_event_finder( const sc_port_base& port_ )
|
|
: m_port( port_ )
|
|
{
|
|
}
|
|
|
|
|
|
// destructor (does nothing)
|
|
|
|
sc_event_finder::~sc_event_finder()
|
|
{}
|
|
|
|
} // namespace sc_core
|
|
|
|
// $Log: sc_event_finder.cpp,v $
|
|
// Revision 1.3 2011/08/26 20:45:39 acg
|
|
// Andy Goodrich: moved the modification log to the end of the file to
|
|
// eliminate source line number skew when check-ins are done.
|
|
//
|
|
// Revision 1.2 2011/02/18 20:23:45 acg
|
|
// Andy Goodrich: Copyright update.
|
|
//
|
|
// Revision 1.1.1.1 2006/12/15 20:20:04 acg
|
|
// SystemC 2.3
|
|
//
|
|
// Revision 1.7 2006/02/02 23:42:37 acg
|
|
// Andy Goodrich: implemented a much better fix to the sc_event_finder
|
|
// proliferation problem. This new version allocates only a single event
|
|
// finder for each port for each type of event, e.g., pos(), neg(), and
|
|
// value_change(). The event finder persists as long as the port does,
|
|
// which is what the LRM dictates. Because only a single instance is
|
|
// allocated for each event type per port there is not a potential
|
|
// explosion of storage as was true in the 2.0.1/2.1 versions.
|
|
//
|
|
// Revision 1.6 2006/02/02 21:26:34 acg
|
|
// Andy Goodrich: pulled out the check I just stuck into the
|
|
// sc_event_finder::free_instances() method. It turns out the LRM says that
|
|
// sc_event_finder instances are valid as long as the sc_module hierarchy is
|
|
// valid, so we can't give the user a call to free the instances.
|
|
//
|
|
// Revision 1.5 2006/02/02 21:10:52 acg
|
|
// Andy Goodrich: added check for end of elaboration to the static method
|
|
// sc_event_finder::free_instances(). This will allow the method to be
|
|
// made public if that is desired.
|
|
//
|
|
// Revision 1.4 2006/02/02 20:43:09 acg
|
|
// Andy Goodrich: Added an existence linked list to sc_event_finder so that
|
|
// the dynamically allocated instances can be freed after port binding
|
|
// completes. This replaces the individual deletions in ~sc_bind_ef, as these
|
|
// caused an exception if an sc_event_finder instance was used more than
|
|
// once, due to a double freeing of the instance.
|
|
//
|
|
// Revision 1.3 2006/01/13 18:47:41 acg
|
|
// Added $Log command so that CVS comments are reproduced in the source.
|
|
//
|
|
|
|
// Taf!
|