sc_signal_resolved.cpp
来自「基于4个mips核的noc设计」· C++ 代码 · 共 149 行
CPP
149 行
/***************************************************************************** The following code is derived, directly or indirectly, from the SystemC source code Copyright (c) 1996-2002 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.3 (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_resolved.cpp -- The resolved signal 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: *****************************************************************************/#include "systemc/communication/sc_signal_resolved.h"using sc_dt::Log_0;using sc_dt::Log_1;using sc_dt::Log_Z;using sc_dt::Log_X;// Note that we assume that two drivers driving the resolved signal to a 1 or// 0 is O.K. This might not be true for all technologies, but is certainly// true for CMOS, the predominant technology in use today.const sc_logic_value_tsc_logic_resolution_tbl[4][4] ={ // 0 1 Z X { Log_0, Log_X, Log_0, Log_X }, // 0 { Log_X, Log_1, Log_1, Log_X }, // 1 { Log_0, Log_1, Log_Z, Log_X }, // Z { Log_X, Log_X, Log_X, Log_X } // X};// ----------------------------------------------------------------------------// CLASS : sc_logic_resolve//// Resolution function for sc_logic.// ----------------------------------------------------------------------------// resolves sc_logic values and returns the resolved valuevoidsc_logic_resolve::resolve( sc_logic& result_, const sc_pvector<sc_logic*>& values_ ){ int sz = values_.size(); assert( sz != 0 ); if( sz == 1 ) { result_ = *values_[0]; return; } sc_dt::sc_logic_value_t res = values_[0]->value(); for( int i = sz - 1; i > 0 && res != 3; -- i ) { res = sc_logic_resolution_tbl[res][values_[i]->value()]; } result_ = res;}// ----------------------------------------------------------------------------// CLASS : sc_signal_resolved//// The resolved signal class.// ----------------------------------------------------------------------------const char* const sc_signal_resolved::kind_string = "sc_signal_resolved";// destructorsc_signal_resolved::~sc_signal_resolved(){ for( int i = m_val_vec.size() - 1; i >= 0; -- i ) { delete m_val_vec[i]; }}// write the new valuevoidsc_signal_resolved::write( const data_type& value_ ){ sc_process_b* cur_proc = sc_get_curr_process_handle(); bool value_changed = false; bool found = false; for( int i = m_proc_vec.size() - 1; i >= 0; -- i ) { if( cur_proc == m_proc_vec[i] ) { if( value_ != *m_val_vec[i] ) { *m_val_vec[i] = value_; value_changed = true; } found = true; break; } } if( ! found ) { m_proc_vec.push_back( cur_proc ); m_val_vec.push_back( new data_type( value_ ) ); value_changed = true; } if( value_changed ) { request_update(); }}voidsc_signal_resolved::update(){ sc_logic_resolve::resolve( m_new_val, m_val_vec ); base_type::update();}// Taf!
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?