📄 sc_signal.cpp
字号:
/***************************************************************************** The following code is derived, directly or indirectly, from the SystemC source code Copyright (c) 1996-2006 by all Contributors. All Rights reserved. The contents of this file are subject to the restrictions and limitations set forth in the SystemC Open Source License Version 2.4 (the "License"); You may not use this file except in compliance with such restrictions and limitations. You may obtain instructions on how to receive a copy of the License at http://www.systemc.org/. Software distributed by Contributors under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. *****************************************************************************//***************************************************************************** sc_signal.cpp -- The sc_signal<T> primitive channel class. Original Author: Martin Janssen, Synopsys, Inc., 2001-05-21 *****************************************************************************//***************************************************************************** MODIFICATION LOG - modifiers, enter your name, affiliation, date and changes you are making here. Name, Affiliation, Date: Description of Modification: *****************************************************************************//* $Log: sc_signal.cpp,v $Revision 1.2 2007/04/02 17:24:30 acg Andy Goodrich: added check for null writer pointers in sc_signal invalid writer method.Revision 1.1.1.1 2006/12/15 20:31:35 acgSystemC 2.2Revision 1.7 2006/04/11 23:11:57 acg Andy Goodrich: Changes for reset support that only includes sc_cthread_process instances.Revision 1.6 2006/03/13 20:19:44 acg Andy Goodrich: changed sc_event instances into pointers to sc_event instances that are allocated as needed. This saves considerable storage for large numbers of signals, etc.Revision 1.5 2006/01/25 00:31:11 acg Andy Goodrich: Changed over to use a standard message id of SC_ID_IEEE_1666_DEPRECATION for all deprecation messages.Revision 1.4 2006/01/24 20:46:32 acgAndy Goodrich: changes to eliminate use of deprecated features. For instance,using notify(SC_ZERO_TIME) in place of notify_delayed().Revision 1.3 2006/01/18 21:42:26 acgAndy Goodrich: Changes for check writer support, and tightening up sc_clockport usage.Revision 1.2 2006/01/03 23:18:26 acgChanged copyright to include 2006.Revision 1.1.1.1 2005/12/19 23:16:43 acgFirst check in of SystemC 2.1 into its own archive.Revision 1.14 2005/09/15 23:01:51 acgAdded std:: prefix to appropriate methods and types to get aroundissues with the Edison Front End.Revision 1.13 2005/05/08 19:04:06 acgFix bug in concat_set(int64,off). Other changes from 2.1 examples usage.Revision 1.12 2005/04/04 00:15:51 acgChanges for directory name change to sys from systemc.Changes for sc_string going to std::string.Changes for sc_pvector going to std::vector.Changes for reference pools for bit and part selections.Changes for const sc_concatref support.Revision 1.10 2005/03/21 22:31:32 acgChanges to sc_core namespace.Revision 1.9 2004/09/27 21:02:54 acgAndy Goodrich - Forte Design Systems, Inc. - Added a $Log comment so that CVS checkin comments will appear in checked out source.*/#include "sysc/communication/sc_communication_ids.h"#include "sysc/utils/sc_utils_ids.h"#include "sysc/communication/sc_signal.h"#include "sysc/datatypes/int/sc_signed.h"#include "sysc/datatypes/int/sc_unsigned.h"#include "sysc/datatypes/bit/sc_lv_base.h"#include "sysc/kernel/sc_reset.h"using sc_dt::sc_lv_base;using sc_dt::sc_signed;using sc_dt::sc_unsigned;using sc_dt::int64;using sc_dt::uint64;namespace sc_core {// to avoid code bloat in sc_signal<T>voidsc_signal_invalid_writer( sc_object* target, sc_object* first_writer, sc_object* second_writer ){ char msg[BUFSIZ]; const char* target_name = target->name(); const char* target_kind = target->kind(); const char* writer1_name = first_writer->name(); const char* writer1_kind = first_writer->kind(); const char* writer2_name; const char* writer2_kind; if ( second_writer ) { writer2_name = second_writer->name(); writer2_kind = second_writer->kind(); std::sprintf( msg, "\n signal `%s' (%s)" "\n first driver `%s' (%s)" "\n second driver `%s' (%s)", target_name, target_kind, writer1_name, writer1_kind, writer2_name, writer2_kind ); SC_REPORT_ERROR( SC_ID_MORE_THAN_ONE_SIGNAL_DRIVER_, msg ); }}// ----------------------------------------------------------------------------// CLASS : sc_signal<bool>//// Specialization of sc_signal<T> for type bool.// ----------------------------------------------------------------------------// reset support:sc_reset* sc_signal<bool>::is_reset() const{ sc_reset* result_p; if ( !m_reset_p ) m_reset_p = new sc_reset( this ); result_p = m_reset_p; return result_p;}// destructorsc_signal<bool>::~sc_signal(){ if ( !m_change_event_p ) delete m_change_event_p; if ( !m_negedge_event_p ) delete m_negedge_event_p; if ( !m_posedge_event_p ) delete m_posedge_event_p; if ( m_reset_p ) delete m_reset_p;}// ----------------------------------------------------------------------------// CLASS : sc_signal<sc_logic>//// Specialization of sc_signal<T> for type sc_logic.// ----------------------------------------------------------------------------void sc_deprecated_get_data_ref(){ static bool warn_get_data_ref_deprecated=true; if ( warn_get_data_ref_deprecated ) { warn_get_data_ref_deprecated=false; SC_REPORT_INFO(SC_ID_IEEE_1666_DEPRECATION_, "get_data_ref() is deprecated, use read() instead" ); }}void sc_deprecated_get_new_value(){ static bool warn_new_value=true; if ( warn_new_value ) { warn_new_value=false; SC_REPORT_INFO(SC_ID_IEEE_1666_DEPRECATION_, "sc_signal<T>::get_new_value() is deprecated"); }}void sc_deprecated_trace(){ static bool warn_trace_deprecated=true; if ( warn_trace_deprecated ) { warn_trace_deprecated=false; SC_REPORT_INFO(SC_ID_IEEE_1666_DEPRECATION_, "sc_signal<T>::trace() is deprecated"); }}} // namespace sc_core// Taf!
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -