sc_uint_base.cpp
来自「基于4个mips核的noc设计」· C++ 代码 · 共 377 行
CPP
377 行
/***************************************************************************** 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_uint_base.cpp -- contains interface definitions between sc_uint and sc_signed, sc_unsigned, and definitions for sc_uint_subref. Original Author: Ali Dasdan, Synopsys, Inc. *****************************************************************************//***************************************************************************** MODIFICATION LOG - modifiers, enter your name, affiliation, date and changes you are making here. Name, Affiliation, Date: Description of Modification: *****************************************************************************/#include "systemc/kernel/sc_macros.h"#include "systemc/datatypes/int/sc_signed.h"#include "systemc/datatypes/int/sc_unsigned.h"#include "systemc/datatypes/int/sc_uint_base.h"#include "systemc/datatypes/int/sc_int_ids.h"#include "systemc/datatypes/bit/sc_bv_base.h"#include "systemc/datatypes/bit/sc_lv_base.h"#include "systemc/datatypes/fx/sc_ufix.h"#include "systemc/datatypes/fx/scfx_other_defs.h"#include "systemc/utils/sc_exception.h"namespace sc_dt{// to avoid code bloat in sc_uint_concat<T1,T2>voidsc_uint_concref_invalid_length( int length ){ char msg[BUFSIZ]; sprintf( msg, "sc_uint_concref<T1,T2> initialization: length = %d " "violates 1 <= length <= %d", length, SC_INTWIDTH ); SC_REPORT_ERROR( SC_ID_OUT_OF_BOUNDS_, msg );}// ----------------------------------------------------------------------------// CLASS : sc_uint_bitref//// Proxy class for sc_uint bit selection (r-value and l-value).// ----------------------------------------------------------------------------// other methodsvoidsc_uint_bitref::scan( istream& is ){ bool b; is >> b; *this = b;}// ----------------------------------------------------------------------------// CLASS : sc_uint_subref//// Proxy class for sc_uint part selection (r-value and l-value).// ----------------------------------------------------------------------------// assignment operatorssc_uint_subref& sc_uint_subref::operator = ( uint_type v ){ uint_type val = m_obj.m_val; uint_type mask = mask_int[m_left][m_right]; val &= mask; val |= (v << m_right) & ~mask; m_obj.m_val = val; m_obj.extend_sign(); return *this;}sc_uint_subref&sc_uint_subref::operator = ( const sc_signed& a ){ sc_uint_base aa( length() ); return ( *this = aa = a );}sc_uint_subref&sc_uint_subref::operator = ( const sc_unsigned& a ){ sc_uint_base aa( length() ); return ( *this = aa = a );}sc_uint_subref&sc_uint_subref::operator = ( const sc_bv_base& a ){ sc_uint_base aa( length() ); return ( *this = aa = a );}sc_uint_subref&sc_uint_subref::operator = ( const sc_lv_base& a ){ sc_uint_base aa( length() ); return ( *this = aa = a );}// other methodsvoidsc_uint_subref::scan( istream& is ){ sc_string s; is >> s; *this = s.c_str();}// ----------------------------------------------------------------------------// CLASS : sc_uint_base//// Base class for sc_uint.// ----------------------------------------------------------------------------// support methodsvoidsc_uint_base::invalid_length() const{ char msg[BUFSIZ]; sprintf( msg, "sc_uint[_base] initialization: length = %d violates " "1 <= length <= %d", m_len, SC_INTWIDTH ); SC_REPORT_ERROR( SC_ID_OUT_OF_BOUNDS_, msg );}voidsc_uint_base::invalid_index( int i ) const{ char msg[BUFSIZ]; sprintf( msg, "sc_uint[_base] bit selection: index = %d violates " "0 <= index <= %d", i, m_len - 1 ); SC_REPORT_ERROR( SC_ID_OUT_OF_BOUNDS_, msg );}voidsc_uint_base::invalid_range( int l, int r ) const{ char msg[BUFSIZ]; sprintf( msg, "sc_uint[_base] part selection: left = %d, right = %d violates " "0 <= right <= left <= %d", l, r, m_len - 1 ); SC_REPORT_ERROR( SC_ID_OUT_OF_BOUNDS_, msg );}voidsc_uint_base::check_value() const{ uint_type limit = (~UINT_ZERO >> m_ulen); if( m_val > limit ) { char msg[BUFSIZ]; sprintf( msg, "sc_uint[_base]: value does not fit into a length of %d", m_len ); SC_REPORT_WARNING( SC_ID_OUT_OF_BOUNDS_, msg ); }}// constructorssc_uint_base::sc_uint_base( const sc_signed& a ) : m_val( 0 ), m_len( a.length() ), m_ulen( SC_INTWIDTH - m_len ){ check_length(); for( int i = m_len - 1; i >= 0; -- i ) { set( i, a.test( i ) ); } extend_sign();}sc_uint_base::sc_uint_base( const sc_unsigned& a ) : m_val( 0 ), m_len( a.length() ), m_ulen( SC_INTWIDTH - m_len ){ check_length(); for( int i = m_len - 1; i >= 0; -- i ) { set( i, a.test( i ) ); } extend_sign();}// assignment operatorssc_uint_base&sc_uint_base::operator = ( const sc_signed& a ){ int minlen = sc_min( m_len, a.length() ); int i = 0; for( ; i < minlen; ++ i ) { set( i, a.test( i ) ); } bool sgn = a.sign(); for( ; i < m_len; ++ i ) { // sign extension set( i, sgn ); } extend_sign(); return *this;}sc_uint_base& sc_uint_base::operator = ( const sc_unsigned& a ){ int minlen = sc_min( m_len, a.length() ); int i = 0; for( ; i < minlen; ++ i ) { set( i, a.test( i ) ); } for( ; i < m_len; ++ i ) { // zero extension set( i, 0 ); } extend_sign(); return *this;}sc_uint_base&sc_uint_base::operator = ( const sc_bv_base& a ){ int minlen = sc_min( m_len, a.length() ); int i = 0; for( ; i < minlen; ++ i ) { set( i, a.get_bit( i ) ); } for( ; i < m_len; ++ i ) { // zero extension set( i, 0 ); } extend_sign(); return *this;}sc_uint_base&sc_uint_base::operator = ( const sc_lv_base& a ){ int minlen = sc_min( m_len, a.length() ); int i = 0; for( ; i < minlen; ++ i ) { set( i, sc_logic( a.get_bit( i ) ).to_bool() ); } for( ; i < m_len; ++ i ) { // zero extension set( i, 0 ); } extend_sign(); return *this;}sc_uint_base&sc_uint_base::operator = ( const char* a ){ if( a == 0 ) { SC_REPORT_ERROR( SC_ID_CONVERSION_FAILED_, "character string is zero" ); } if( *a == 0 ) { SC_REPORT_ERROR( SC_ID_CONVERSION_FAILED_, "character string is empty" ); } try { int len = m_len; sc_ufix aa( a, len, len, SC_TRN, SC_WRAP, 0, SC_ON ); return this->operator = ( aa ); } catch( sc_exception ) { char msg[BUFSIZ]; sprintf( msg, "character string '%s' is not valid", a ); SC_REPORT_ERROR( SC_ID_CONVERSION_FAILED_, msg ); // never reached return *this; }}// explicit conversion to character stringconst sc_stringsc_uint_base::to_string( sc_numrep numrep ) const{ int len = m_len; sc_ufix aa( *this, len, len, SC_TRN, SC_WRAP, 0, SC_ON ); return aa.to_string( numrep );}const sc_stringsc_uint_base::to_string( sc_numrep numrep, bool w_prefix ) const{ int len = m_len; sc_ufix aa( *this, len, len, SC_TRN, SC_WRAP, 0, SC_ON ); return aa.to_string( numrep, w_prefix );}// reduce methodsboolsc_uint_base::and_reduce() const{ return ( m_val == (~UINT_ZERO >> m_ulen) );}boolsc_uint_base::or_reduce() const{ return ( m_val != uint_type( 0 ) );}boolsc_uint_base::xor_reduce() const{ uint_type mask = ~UINT_ZERO; uint_type val = m_val; int n = SC_INTWIDTH; do { n >>= 1; mask >>= n; val = ((val & (mask << n)) >> n) ^ (val & mask); } while( n != 1 ); return ( val != uint_type( 0 ) );}// other methodsvoidsc_uint_base::scan( istream& is ){ sc_string s; is >> s; *this = s.c_str();}} // namespace sc_dt// Taf!
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?