|
gem5 v25.0.0.1
|
#include <sc_int_base.hh>
Public Member Functions | |
| sc_int_base (int w=sc_length_param().len()) | |
| sc_int_base (int_type v, int w) | |
| sc_int_base (const sc_int_base &a) | |
| sc_int_base (const sc_int_subref_r &a) | |
| template<class T> | |
| sc_int_base (const sc_generic_base< T > &a) | |
| sc_int_base (const sc_signed &a) | |
| sc_int_base (const sc_unsigned &a) | |
| sc_int_base (const sc_bv_base &v) | |
| sc_int_base (const sc_lv_base &v) | |
| sc_int_base (const sc_uint_subref_r &v) | |
| sc_int_base (const sc_signed_subref_r &v) | |
| sc_int_base (const sc_unsigned_subref_r &v) | |
| virtual | ~sc_int_base () |
| sc_int_base & | operator= (int_type v) |
| sc_int_base & | operator= (const sc_int_base &a) |
| sc_int_base & | operator= (const sc_int_subref_r &a) |
| template<class T> | |
| sc_int_base & | operator= (const sc_generic_base< T > &a) |
| sc_int_base & | operator= (const sc_signed &a) |
| sc_int_base & | operator= (const sc_unsigned &a) |
| sc_int_base & | operator= (const sc_fxval &a) |
| sc_int_base & | operator= (const sc_fxval_fast &a) |
| sc_int_base & | operator= (const sc_fxnum &a) |
| sc_int_base & | operator= (const sc_fxnum_fast &a) |
| sc_int_base & | operator= (const sc_bv_base &a) |
| sc_int_base & | operator= (const sc_lv_base &a) |
| sc_int_base & | operator= (const char *a) |
| sc_int_base & | operator= (unsigned long a) |
| sc_int_base & | operator= (long a) |
| sc_int_base & | operator= (unsigned int a) |
| sc_int_base & | operator= (int a) |
| sc_int_base & | operator= (uint64 a) |
| sc_int_base & | operator= (double a) |
| sc_int_base & | operator+= (int_type v) |
| sc_int_base & | operator-= (int_type v) |
| sc_int_base & | operator*= (int_type v) |
| sc_int_base & | operator/= (int_type v) |
| sc_int_base & | operator%= (int_type v) |
| sc_int_base & | operator&= (int_type v) |
| sc_int_base & | operator|= (int_type v) |
| sc_int_base & | operator^= (int_type v) |
| sc_int_base & | operator<<= (int_type v) |
| sc_int_base & | operator>>= (int_type v) |
| sc_int_base & | operator++ () |
| const sc_int_base | operator++ (int) |
| sc_int_base & | operator-- () |
| const sc_int_base | operator-- (int) |
| sc_int_bitref & | operator[] (int i) |
| const sc_int_bitref_r & | operator[] (int i) const |
| sc_int_bitref & | bit (int i) |
| const sc_int_bitref_r & | bit (int i) const |
| sc_int_subref & | operator() (int left, int right) |
| const sc_int_subref_r & | operator() (int left, int right) const |
| sc_int_subref & | range (int left, int right) |
| const sc_int_subref_r & | range (int left, int right) const |
| bool | test (int i) const |
| void | set (int i) |
| void | set (int i, bool v) |
| int | length () const |
| virtual int | concat_length (bool *xz_present_p) const |
| virtual bool | concat_get_ctrl (sc_digit *dst_p, int low_i) const |
| virtual bool | concat_get_data (sc_digit *dst_p, int low_i) const |
| virtual uint64 | concat_get_uint64 () const |
| virtual void | concat_set (int64 src, int low_i) |
| virtual void | concat_set (const sc_signed &src, int low_i) |
| virtual void | concat_set (const sc_unsigned &src, int low_i) |
| virtual void | concat_set (uint64 src, int low_i) |
| bool | and_reduce () const |
| bool | nand_reduce () const |
| bool | or_reduce () const |
| bool | nor_reduce () const |
| bool | xor_reduce () const |
| bool | xnor_reduce () const |
| operator int_type () const | |
| int_type | value () const |
| int | to_int () const |
| unsigned int | to_uint () const |
| long | to_long () const |
| unsigned long | to_ulong () const |
| int64 | to_int64 () const |
| uint64 | to_uint64 () const |
| double | to_double () const |
| long | long_low () const |
| long | long_high () const |
| const std::string | to_string (sc_numrep numrep=SC_DEC) const |
| const std::string | to_string (sc_numrep numrep, bool w_prefix) const |
| void | print (::std::ostream &os=::std::cout) const |
| void | scan (::std::istream &is=::std::cin) |
| Public Member Functions inherited from sc_dt::sc_value_base | |
| virtual | ~sc_value_base () |
Protected Attributes | |
| int_type | m_val |
| int | m_len |
| int | m_ulen |
Private Member Functions | |
| void | invalid_length () const |
| void | invalid_index (int i) const |
| void | invalid_range (int l, int r) const |
| void | check_length () const |
| void | check_index (int i) const |
| void | check_range (int l, int r) const |
| void | check_value () const |
| void | extend_sign () |
Friends | |
| class | sc_int_bitref_r |
| class | sc_int_bitref |
| class | sc_int_subref_r |
| class | sc_int_subref |
| bool | operator== (const sc_int_base &a, const sc_int_base &b) |
| bool | operator!= (const sc_int_base &a, const sc_int_base &b) |
| bool | operator< (const sc_int_base &a, const sc_int_base &b) |
| bool | operator<= (const sc_int_base &a, const sc_int_base &b) |
| bool | operator> (const sc_int_base &a, const sc_int_base &b) |
| bool | operator>= (const sc_int_base &a, const sc_int_base &b) |
Definition at line 494 of file sc_int_base.hh.
|
inlineexplicit |
Definition at line 545 of file sc_int_base.hh.
|
inline |
Definition at line 551 of file sc_int_base.hh.
|
inline |
Definition at line 558 of file sc_int_base.hh.
|
inlineexplicit |
Definition at line 562 of file sc_int_base.hh.
|
inlineexplicit |
Definition at line 569 of file sc_int_base.hh.
|
explicit |
Definition at line 434 of file sc_int_base.cc.
|
explicit |
Definition at line 441 of file sc_int_base.cc.
|
explicit |
Definition at line 403 of file sc_int_base.cc.
|
explicit |
Definition at line 409 of file sc_int_base.cc.
|
explicit |
Definition at line 415 of file sc_int_base.cc.
|
explicit |
Definition at line 421 of file sc_int_base.cc.
|
explicit |
Definition at line 427 of file sc_int_base.cc.
|
inlinevirtual |
Definition at line 586 of file sc_int_base.hh.
| bool sc_dt::sc_int_base::and_reduce | ( | ) | const |
Definition at line 556 of file sc_int_base.cc.
|
inline |
Definition at line 1272 of file sc_int_base.hh.
|
inline |
Definition at line 1281 of file sc_int_base.hh.
|
inlineprivate |
Definition at line 516 of file sc_int_base.hh.
Referenced by sc_dt::sc_int_base::bit(), sc_dt::sc_int_base::bit(), sc_dt::sc_int_base::operator[](), and sc_dt::sc_int_base::operator[]().
|
inlineprivate |
Definition at line 508 of file sc_int_base.hh.
|
inlineprivate |
Definition at line 524 of file sc_int_base.hh.
Referenced by sc_dt::sc_int_base::operator()(), sc_dt::sc_int_base::operator()(), sc_dt::sc_int_base::range(), and sc_dt::sc_int_base::range().
|
private |
Definition at line 391 of file sc_int_base.cc.
|
virtual |
Reimplemented from sc_dt::sc_value_base.
Definition at line 574 of file sc_int_base.cc.
|
virtual |
Reimplemented from sc_dt::sc_value_base.
Definition at line 609 of file sc_int_base.cc.
|
inlinevirtual |
Reimplemented from sc_dt::sc_value_base.
Definition at line 883 of file sc_int_base.hh.
|
inlinevirtual |
Reimplemented from sc_dt::sc_value_base.
Definition at line 874 of file sc_int_base.hh.
|
virtual |
Reimplemented from sc_dt::sc_value_base.
Definition at line 675 of file sc_int_base.cc.
|
virtual |
Reimplemented from sc_dt::sc_value_base.
Definition at line 684 of file sc_int_base.cc.
|
virtual |
Reimplemented from sc_dt::sc_value_base.
Definition at line 669 of file sc_int_base.cc.
|
virtual |
Reimplemented from sc_dt::sc_value_base.
Definition at line 693 of file sc_int_base.cc.
|
inlineprivate |
Definition at line 534 of file sc_int_base.hh.
|
private |
Definition at line 370 of file sc_int_base.cc.
|
private |
Definition at line 360 of file sc_int_base.cc.
|
private |
Definition at line 380 of file sc_int_base.cc.
|
inline |
Definition at line 870 of file sc_int_base.hh.
|
inline |
Definition at line 919 of file sc_int_base.hh.
|
inline |
Definition at line 918 of file sc_int_base.hh.
|
inline |
Definition at line 898 of file sc_int_base.hh.
|
inline |
Definition at line 900 of file sc_int_base.hh.
|
inline |
Definition at line 906 of file sc_int_base.hh.
|
inline |
Definition at line 717 of file sc_int_base.hh.
|
inline |
Definition at line 727 of file sc_int_base.hh.
|
inline |
Definition at line 1293 of file sc_int_base.hh.
|
inline |
Definition at line 1302 of file sc_int_base.hh.
|
inline |
Definition at line 701 of file sc_int_base.hh.
|
inline |
Definition at line 770 of file sc_int_base.hh.
|
inline |
Definition at line 778 of file sc_int_base.hh.
|
inline |
Definition at line 685 of file sc_int_base.hh.
|
inline |
Definition at line 787 of file sc_int_base.hh.
|
inline |
Definition at line 795 of file sc_int_base.hh.
|
inline |
Definition at line 693 of file sc_int_base.hh.
|
inline |
Definition at line 709 of file sc_int_base.hh.
|
inline |
Definition at line 751 of file sc_int_base.hh.
| sc_int_base & sc_dt::sc_int_base::operator= | ( | const char * | a | ) |
Definition at line 517 of file sc_int_base.cc.
| sc_int_base & sc_dt::sc_int_base::operator= | ( | const sc_bv_base & | a | ) |
Definition at line 485 of file sc_int_base.cc.
|
inline |
Definition at line 228 of file scfx_other_defs.hh.
|
inline |
Definition at line 243 of file scfx_other_defs.hh.
|
inline |
Definition at line 198 of file scfx_other_defs.hh.
|
inline |
Definition at line 213 of file scfx_other_defs.hh.
|
inline |
Definition at line 615 of file sc_int_base.hh.
|
inline |
Definition at line 598 of file sc_int_base.hh.
|
inline |
Definition at line 606 of file sc_int_base.hh.
| sc_int_base & sc_dt::sc_int_base::operator= | ( | const sc_lv_base & | a | ) |
Definition at line 501 of file sc_int_base.cc.
| sc_int_base & sc_dt::sc_int_base::operator= | ( | const sc_signed & | a | ) |
Definition at line 451 of file sc_int_base.cc.
| sc_int_base & sc_dt::sc_int_base::operator= | ( | const sc_unsigned & | a | ) |
Definition at line 468 of file sc_int_base.cc.
|
inline |
Definition at line 676 of file sc_int_base.hh.
|
inline |
Definition at line 660 of file sc_int_base.hh.
|
inline |
Definition at line 590 of file sc_int_base.hh.
|
inline |
Definition at line 644 of file sc_int_base.hh.
|
inline |
Definition at line 668 of file sc_int_base.hh.
|
inline |
Definition at line 652 of file sc_int_base.hh.
|
inline |
Definition at line 636 of file sc_int_base.hh.
|
inline |
Definition at line 760 of file sc_int_base.hh.
|
inline |
Definition at line 1253 of file sc_int_base.hh.
|
inline |
Definition at line 1262 of file sc_int_base.hh.
|
inline |
Definition at line 743 of file sc_int_base.hh.
|
inline |
Definition at line 735 of file sc_int_base.hh.
| bool sc_dt::sc_int_base::or_reduce | ( | ) | const |
Definition at line 557 of file sc_int_base.cc.
|
inline |
Definition at line 929 of file sc_int_base.hh.
|
inline |
Definition at line 1312 of file sc_int_base.hh.
|
inline |
Definition at line 1321 of file sc_int_base.hh.
| void sc_dt::sc_int_base::scan | ( | ::std::istream & | is = ::std::cin | ) |
Definition at line 700 of file sc_int_base.cc.
|
inline |
Definition at line 861 of file sc_int_base.hh.
|
inline |
Definition at line 864 of file sc_int_base.hh.
|
inline |
Definition at line 859 of file sc_int_base.hh.
|
inline |
Definition at line 917 of file sc_int_base.hh.
|
inline |
Definition at line 911 of file sc_int_base.hh.
|
inline |
Definition at line 915 of file sc_int_base.hh.
|
inline |
Definition at line 913 of file sc_int_base.hh.
| const std::string sc_dt::sc_int_base::to_string | ( | sc_numrep | numrep, |
| bool | w_prefix ) const |
Definition at line 547 of file sc_int_base.cc.
Definition at line 539 of file sc_int_base.cc.
|
inline |
Definition at line 912 of file sc_int_base.hh.
|
inline |
Definition at line 916 of file sc_int_base.hh.
|
inline |
Definition at line 914 of file sc_int_base.hh.
|
inline |
Definition at line 910 of file sc_int_base.hh.
|
inline |
Definition at line 902 of file sc_int_base.hh.
| bool sc_dt::sc_int_base::xor_reduce | ( | ) | const |
Definition at line 560 of file sc_int_base.cc.
|
friend |
Definition at line 812 of file sc_int_base.hh.
|
friend |
Definition at line 817 of file sc_int_base.hh.
|
friend |
Definition at line 823 of file sc_int_base.hh.
|
friend |
Definition at line 806 of file sc_int_base.hh.
|
friend |
Definition at line 830 of file sc_int_base.hh.
|
friend |
Definition at line 836 of file sc_int_base.hh.
|
friend |
Definition at line 497 of file sc_int_base.hh.
|
friend |
Definition at line 496 of file sc_int_base.hh.
|
friend |
Definition at line 499 of file sc_int_base.hh.
|
friend |
Definition at line 498 of file sc_int_base.hh.
|
protected |
Definition at line 938 of file sc_int_base.hh.
|
protected |
Definition at line 939 of file sc_int_base.hh.
|
protected |
Definition at line 937 of file sc_int_base.hh.
Referenced by sc_dt::sc_int_base::check_value().