61 #ifndef __SYSTEMC_EXT_DT_BIT_SC_PROXY_HH__ 62 #define __SYSTEMC_EXT_DT_BIT_SC_PROXY_HH__ 66 #include "../../utils/functions.hh" 67 #include "../int/sc_int_base.hh" 68 #include "../int/sc_signed.hh" 69 #include "../int/sc_uint_base.hh" 70 #include "../int/sc_unsigned.hh" 93 template <
class X,
class Y>
95 template <
class X,
class Y>
108 template <
class X,
class Y>
114 template <
class X,
class T>
131 template <
typename X>
152 template <
typename X>
155 template <
typename X>
158 template <
typename X>
161 template <
typename X>
164 template <
typename X>
168 template <
typename X,
typename Y>
172 template <
typename X>
175 template <
typename X,
typename Y>
178 typename X::traits_type, typename Y::traits_type>
181 template <
typename X,
typename Y>
184 typename X::traits_type, typename Y::traits_type>
209 const X &
back_cast()
const {
return static_cast<const X &
>(*this); }
220 X &assign_(
const char *
a);
221 X &assign_(
const bool *a);
240 X &assign_(
unsigned int a);
242 X &assign_(
unsigned long a);
342 X &operator <<= (
int n);
346 X &operator >>= (
int n);
361 operator [] (
int i)
const 370 operator () (
int hi,
int lo)
375 operator () (
int hi,
int lo)
const 428 inline uint64 to_uint64()
const;
429 int to_int()
const {
return (
int)to_anything_signed(); }
434 return (
unsigned int)to_anything_unsigned();
437 long to_long()
const {
return (
long)to_anything_signed(); }
442 return (
unsigned long)to_anything_unsigned();
457 void scan(::std::istream &
is=::std::cin);
460 void check_bounds(
int n)
const;
461 void check_wbounds(
int n)
const;
463 sc_digit to_anything_unsigned()
const;
464 int64 to_anything_signed()
const;
474 template <
class X,
class Y>
478 template <
class X,
class Y>
483 #define DECL_BITWISE_AND_OP_T(tp) \ 485 inline const sc_lv_base operator & (tp b, const sc_proxy<X> &px); 501 #undef DECL_BITWISE_AND_OP_T 504 template <
class X,
class Y>
505 inline X &
operator |= (sc_proxy<X> &px,
const sc_proxy<Y> &py);
507 template <
class X,
class Y>
509 const sc_proxy<X> &px,
const sc_proxy<Y> &py);
512 #define DECL_BITWISE_OR_OP_T(tp) \ 514 inline const sc_lv_base operator | (tp a, const sc_proxy<X> &px); 530 #undef DECL_BITWISE_OR_OP_T 533 template <
class X,
class Y>
534 inline X &
operator ^= (sc_proxy<X> &px,
const sc_proxy<Y> &py);
536 template <
class X,
class Y>
538 const sc_proxy<X> &px,
const sc_proxy<Y> &py);
540 #define DECL_BITWISE_XOR_OP_T(tp) \ 542 inline const sc_lv_base operator ^ (tp a, const sc_proxy<X> &px); 558 #undef DECL_BITWISE_XOR_OP_T 561 template <
class X,
class Y>
562 inline bool operator == (
const sc_proxy<X> &px,
const sc_proxy<Y> &py);
564 template <
class X,
class Y>
565 inline bool operator != (
const sc_proxy<X> &px,
const sc_proxy<Y> &py);
567 #define DECL_REL_OP_T(tp) \ 569 inline bool operator == (tp b, const sc_proxy<X> &px); \ 572 inline bool operator != (const sc_proxy<X> &px, tp b); \ 575 inline bool operator != (tp b, const sc_proxy<X> &px); 606 x_dw = x.get_word(wi);
607 x_cw = x.get_cword(wi);
614 x.set_word(wi, x_dw);
615 x.set_cword(wi, x_cw);
624 for (
int i = wi;
i < sz; ++
i) {
630 template <
class X,
class Y>
634 if ((
void *)&px != (
void *)&py) {
636 const Y &y = py.back_cast();
638 int min_sz =
sc_min(sz, y.size());
640 for (; i < min_sz; ++
i) {
641 set_words_(x, i, y.get_word(i), y.get_cword(i));
655 template <
class X,
class T>
661 int len_x = x.length();
662 int len_a = a.length();
665 for (i = 0; i < len_a; ++
i) {
668 for (; i < len_x; ++
i) {
682 if ( len_a > len_x ) len_a = len_x;
683 for (i = 0; i < len_a; ++
i) {
686 for (; i < len_x; ++
i) {
702 for (i = 0; i < len_a; ++
i) {
705 for (; i < len_x; ++
i) {
716 int len_x = x.length();
720 for (i = 0; i < len_a; ++
i) {
723 for (; i < len_x; ++
i) {
734 int len_x = x.length();
738 for (i = 0; i < len_a; ++
i) {
741 for (; i < len_x; ++
i) {
753 int len = x.length();
754 int s_len = s.length() - 1;
755 int min_len =
sc_min(len, s_len);
757 for (; i < min_len; ++
i) {
758 char c = s[s_len - i - 1];
764 for (; i <
len; ++
i) {
776 int len = x.length();
777 for (
int i = 0;
i <
len; ++
i) {
789 int len = x.length();
790 for (
int i = 0;
i <
len; ++
i) {
791 x.set_bit(
i, a[
i].value());
924 for (
int i = 0;
i < sz; ++
i) {
927 x.set_word(
i, x_cw | ~x_dw);
934 template <
class X,
class Y>
942 for (
int i = 0;
i < sz; ++
i) {
946 sc_digit cw = (x_dw & y_cw) | (x_cw & y_dw) | (x_cw & y_cw);
955 template <
class X,
class Y>
963 for (
int i = 0;
i < sz; ++
i) {
967 sc_digit cw = (x_cw & y_cw) | (x_cw & ~y_dw) | (~x_dw & y_cw);
976 template <
class X,
class Y>
984 for (
int i = 0;
i < sz; ++
i) {
1004 "positive shift values, shift value = ", n);
1007 if (n >= x.length()) {
1018 for (; i >= wn; --
i) {
1019 set_words_(x, i, x.get_word(i - wn), x.get_cword(i - wn));
1021 for (; i >= 0; --
i) {
1022 set_words_(x, i, SC_DIGIT_ZERO, SC_DIGIT_ZERO);
1027 for (
int i = sz - 1;
i >= 1; --
i) {
1031 x_dw |= x.get_word(
i - 1) >> (SC_DIGIT_SIZE - bn);
1033 x_cw |= x.get_cword(
i - 1) >> (SC_DIGIT_SIZE - bn);
1054 "positive shift values, shift value = ", n);
1057 if (n >= x.length()) {
1068 for (; i < (sz - wn); ++
i) {
1069 set_words_(x, i, x.get_word(i + wn), x.get_cword(i + wn));
1071 for (; i < sz; ++
i) {
1072 set_words_(x, i, SC_DIGIT_ZERO, SC_DIGIT_ZERO);
1077 for (
int i = 0;
i < (sz - 1); ++
i) {
1081 x_dw |= x.get_word(
i + 1) << (SC_DIGIT_SIZE - bn);
1083 x_cw |= x.get_cword(
i + 1) << (SC_DIGIT_SIZE - bn);
1110 int len = x.length();
1111 int half_len = len / 2;
1112 for (
int i = 0,
j = len - 1;
i < half_len; ++
i, --
j) {
1114 x.set_bit(
i, x.get_bit(
j));
1128 const X &x = back_cast();
1130 int len = x.length();
1131 for (
int i = 0;
i <
len; ++
i) {
1141 const X &x = back_cast();
1143 int len = x.length();
1144 for (
int i = 0;
i <
len; ++
i) {
1154 const X &x = back_cast();
1156 int len = x.length();
1157 for (
int i = 0;
i <
len; ++
i) {
1164 template <
class X,
class Y>
1172 #define DEFN_REL_OP_T(tp) \ 1173 template <class X> \ 1174 inline bool operator == (tp b, const sc_proxy<X> &px) { return (px == b); } \ 1176 template <class X> \ 1177 inline bool operator != (const sc_proxy<X> &px, tp b) { return !(px == b); } \ 1179 template <class X> \ 1180 inline bool operator != (tp b, const sc_proxy<X> &px) { return !(px == b); } 1196 #undef DEFN_REL_OP_T 1200 inline const std::string
1203 const X &x = back_cast();
1204 int len = x.length();
1206 for (
int i = 0;
i <
len; ++
i) {
1213 inline const std::string
1220 inline const std::string
1233 back_cast() = s.c_str();
1240 if (n < 0 || n >= back_cast().
length()) {
1250 if (n < 0 || n >= back_cast().size()) {
1262 const X &x = back_cast();
1263 int len = x.length();
1268 if (len >= SC_DIGIT_SIZE) {
1271 return (w & (~SC_DIGIT_ZERO >> (SC_DIGIT_SIZE - len)));
1280 const X &x = back_cast();
1281 int len = x.length();
1286 if (len > SC_DIGIT_SIZE) {
1290 uint64 w1 = x.get_word(1);
1293 }
else if (len == SC_DIGIT_SIZE) {
1296 return (w & (~SC_DIGIT_ZERO >> (SC_DIGIT_SIZE - len)));
1304 const X &x = back_cast();
1305 int len = x.length();
1308 if (len > SC_DIGIT_SIZE) {
1323 return (
int64)(w & (~zero >> (64 -
len)));
1325 return (
int64)(w | (~zero <<
len));
1378 inline ::std::ostream &
1379 operator << (::std::ostream &os, const sc_proxy<X> &
a)
1386 inline ::std::istream &
1395 #endif // __SYSTEMC_EXT_DT_BIT_SC_PROXY_HH__
static const sc_logic_value_t and_table[4][4]
X & operator^=(sc_proxy< X > &px, const sc_proxy< Y > &py)
sc_proxy_traits< sc_lv_base > traits_type
CLASS_TYPE operator~(const CLASS_TYPE &u)
sc_proxy_traits< X >::traits_type traits_type
static const sc_logic_value_t xor_table[4][4]
X & b_xor_assign_(sc_proxy< X > &a, const sc_proxy< Y > &b)
traits_type::bit_type bit_type
bool sc_io_show_base(::std::ostream &os)
sc_proxy< X >::value_type xor_reduce(const sc_proxy< X > &a)
unsigned long to_ulong() const
X & operator&=(sc_proxy< X > &px, const sc_proxy< Y > &py)
sc_signed operator<<(const sc_signed &u, const sc_int_base &v)
const std::string to_string() const
sc_subref_r< X > range(int hi, int lo) const
value_type nor_reduce() const
#define DECL_REL_OP_T(tp)
static const sc_logic_value_t not_table[4]
const sc_digit SC_DIGIT_ZERO
void assign_v_(sc_proxy< X > &px, const T &a)
X & assign_(const sc_int_base &a)
sc_proxy< X >::value_type or_reduce(const sc_proxy< X > &a)
void sc_proxy_out_of_bounds(const char *msg, int64 val)
value_type xor_reduce() const
bool operator!=(const sc_signed &u, const sc_int_base &v)
X & b_or_assign_(sc_proxy< X > &px, const sc_proxy< Y > &py)
X & b_and_assign_(sc_proxy< X > &px, const sc_proxy< Y > &py)
traits_type::value_type value_type
const T sc_min(const T &a, const T &b)
sc_proxy< X >::value_type nand_reduce(const sc_proxy< X > &a)
void print(::std::ostream &os=::std::cout) const
void check_wbounds(int n) const
#define DEFN_REL_OP_T(tp)
#define SC_REPORT_WARNING(msg_type, msg)
const sc_lv_base reverse(const sc_proxy< X > &x)
static const sc_logic_value_t or_table[4][4]
X & assign_(const sc_uint_base &a)
X & assign_(const sc_unsigned &a)
sc_logic_value_t value_type
int64 to_anything_signed() const
sc_proxy_traits< sc_bv_base > traits_type
void set_words_(X &x, int wi, sc_digit x_dw, sc_digit x_cw)
const X & back_cast() const
void get_words_(const X &x, int wi, sc_digit &x_dw, sc_digit &x_cw)
sc_numrep sc_io_base(::std::ostream &os, sc_numrep def_base)
sc_proxy< X >::value_type xnor_reduce(const sc_proxy< X > &a)
unsigned int to_uint() const
sc_proxy< X >::value_type and_reduce(const sc_proxy< X > &a)
const char SC_ID_VECTOR_CONTAINS_LOGIC_VALUE_[]
sc_signed operator>>(const sc_signed &u, const sc_int_base &v)
const std::string convert_to_bin(const char *s)
sc_bitref_r< X > bit(int i) const
void assign_p_(sc_proxy< X > &px, const sc_proxy< Y > &py)
const sc_digit SC_DIGIT_TWO
#define DECL_BITWISE_AND_OP_T(tp)
static const char logic_to_char[4]
const sc_bit b_not(const sc_bit &a)
X & operator|=(sc_proxy< X > &px, const sc_proxy< Y > &py)
sc_subref< X > range(int hi, int lo)
const sc_digit SC_DIGIT_ONE
bool operator==(const sc_signed &u, const sc_int_base &v)
const sc_lv_base rrotate(const sc_proxy< X > &x, int n)
value_type or_reduce() const
void scan(::std::istream &is=::std::cin)
#define DECL_BITWISE_OR_OP_T(tp)
value_type xnor_reduce() const
void extend_sign_w_(X &x, int wi, bool sign)
const sc_lv_base lrotate(const sc_proxy< X > &x, int n)
sc_proxy< X >::value_type nor_reduce(const sc_proxy< X > &a)
void check_bounds(int n) const
static const sc_logic_value_t char_to_logic[128]
sc_bitref< X > bit(int i)
sc_digit to_anything_unsigned() const
const std::string convert_to_fmt(const std::string &s, sc_numrep numrep, bool w_prefix)
sc_signed operator|(const sc_unsigned &u, const sc_int_base &v)
X & assign_(const sc_signed &a)
sc_signed operator^(const sc_unsigned &u, const sc_int_base &v)
value_type nand_reduce() const
X & assign_(const sc_proxy< Y > &a)
const std::string to_string(sc_enc enc)
#define DECL_BITWISE_XOR_OP_T(tp)
sc_signed operator&(const sc_unsigned &u, const sc_int_base &v)
value_type and_reduce() const