📄 sc_signed_bitref.inc
字号:
/***************************************************************************** The following code is derived, directly or indirectly, from the SystemC source code Copyright (c) 1996-2005 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_signed_bitref.h -- Proxy class that is declared in sc_signed.h. 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: *****************************************************************************/// ----------------------------------------------------------------------------// CLASS : sc_signed_bitref_r//// Proxy class for sc_signed bit selection (r-value only).// ----------------------------------------------------------------------------// implicit conversion to uint64sc_signed_bitref_r::operator uint64 () const{ return m_obj_p->test( m_index );}boolsc_signed_bitref_r::operator ! () const{ return ( ! m_obj_p->test( m_index ) );}boolsc_signed_bitref_r::operator ~ () const{ return ( ! m_obj_p->test( m_index ) );}// ----------------------------------------------------------------------------// CLASS : sc_signed_bitref//// Proxy class for sc_signed bit selection (r-value and l-value).// ----------------------------------------------------------------------------// assignment operatorsconst sc_signed_bitref&sc_signed_bitref::operator = ( const sc_signed_bitref_r& b ){ m_obj_p->set( m_index, (bool) b ); return *this;}const sc_signed_bitref&sc_signed_bitref::operator = ( const sc_signed_bitref& b ){ m_obj_p->set( m_index, (bool) b ); return *this;}const sc_signed_bitref&sc_signed_bitref::operator = ( bool b ){ m_obj_p->set( m_index, b ); return *this;}const sc_signed_bitref&sc_signed_bitref::operator &= ( bool b ){ if( ! b ) { m_obj_p->clear( m_index ); } return *this;}const sc_signed_bitref&sc_signed_bitref::operator |= ( bool b ){ if( b ) { m_obj_p->set( m_index ); } return *this;}const sc_signed_bitref&sc_signed_bitref::operator ^= ( bool b ){ if( b ) { m_obj_p->invert( m_index ); } return *this;}// #### OPTIMIZEvoid sc_signed_bitref::concat_set(int64 src, int low_i) { bool value = 1 & ((low_i < 64) ? (src >> low_i) : (src >> 63)); m_obj_p->set(low_i, value);}void sc_signed_bitref::concat_set(const sc_signed& src, int low_i){ if ( low_i < src.length() ) m_obj_p->set(low_i, src.test(low_i)); else m_obj_p->set(low_i, src<0);} void sc_signed_bitref::concat_set(const sc_unsigned& src, int low_i){ if ( low_i < src.length() ) m_obj_p->set(low_i, src.test(low_i)); else m_obj_p->set(low_i, 0);}void sc_signed_bitref::concat_set(uint64 src, int low_i){ bool value = 1 & ((low_i < 64) ? (src >> low_i) : 0); m_obj_p->set(low_i, value);}// other methodsvoidsc_signed_bitref::scan( ::std::istream& is ){ bool b; is >> b; *this = b;}// End of file
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -