summaryrefslogtreecommitdiff
path: root/src/systemc/ext/dt/bit/sc_bit_proxies.hh
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-10-07 03:02:56 -0700
committerGabe Black <gabeblack@google.com>2018-10-16 01:11:44 +0000
commitb366cbcde953e2adddc10a2825e2803b5f8a9bdd (patch)
treee532fa49c762eb6b293f88f5a0583946d3a88227 /src/systemc/ext/dt/bit/sc_bit_proxies.hh
parent98f40c54a31457078de587b8a29fdd055b9db28b (diff)
downloadgem5-b366cbcde953e2adddc10a2825e2803b5f8a9bdd.tar.xz
systemc: Switch to using predefined messages for utils.
Create and use predefined messages for utils which match the ones Accellera uses. Change-Id: I932b7206fc16181d01a0d5b7441ce617b30e5365 Reviewed-on: https://gem5-review.googlesource.com/c/13328 Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/ext/dt/bit/sc_bit_proxies.hh')
-rw-r--r--src/systemc/ext/dt/bit/sc_bit_proxies.hh27
1 files changed, 14 insertions, 13 deletions
diff --git a/src/systemc/ext/dt/bit/sc_bit_proxies.hh b/src/systemc/ext/dt/bit/sc_bit_proxies.hh
index da57f04ac..206bb0b06 100644
--- a/src/systemc/ext/dt/bit/sc_bit_proxies.hh
+++ b/src/systemc/ext/dt/bit/sc_bit_proxies.hh
@@ -31,6 +31,7 @@
#include <iostream>
+#include "../../utils/messages.hh"
#include "sc_proxy.hh"
namespace sc_dt
@@ -1735,7 +1736,7 @@ sc_bitref_r<T>::get_bit(int n) const
if (n == 0) {
return m_obj.get_bit(m_index);
} else {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
return Log_0;
}
}
@@ -1747,7 +1748,7 @@ sc_bitref_r<T>::get_word(int n) const
if (n == 0) {
return (get_bit(n) & SC_DIGIT_ONE);
} else {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
return 0;
}
}
@@ -1759,7 +1760,7 @@ sc_bitref_r<T>::get_cword(int n) const
if (n == 0) {
return ((get_bit(n) & SC_DIGIT_TWO) >> 1);
} else {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
return 0;
}
}
@@ -2068,7 +2069,7 @@ sc_bitref<X>::set_bit(int n, value_type value)
if (n == 0) {
this->m_obj.set_bit(this->m_index, value);
} else {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
}
}
@@ -2084,7 +2085,7 @@ sc_bitref<X>::set_word(int n, sc_digit w)
temp = (temp & ~(1 << bi)) | ((w & 1) << bi);
this->m_obj.set_word(wi, temp);
} else {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
}
}
@@ -2100,7 +2101,7 @@ sc_bitref<X>::set_cword(int n, sc_digit w)
temp = (temp & ~(1 << bi)) | ((w & 1) << bi);
this->m_obj.set_cword(wi, temp);
} else {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
}
}
@@ -2199,7 +2200,7 @@ sc_subref_r<X>::check_bounds()
{
int len = m_obj.length();
if (m_hi < 0 || m_hi >= len || m_lo < 0 || m_lo >= len) {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
sc_core::sc_abort(); // can't recover from here
}
if (reversed()) {
@@ -2668,7 +2669,7 @@ sc_concref_r<X, Y>::get_bit(int n) const
} else if (n < r_len + m_left.length()) {
return value_type(m_left.get_bit(n - r_len));
} else {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
return Log_0;
}
}
@@ -2683,7 +2684,7 @@ sc_concref_r<X, Y>::set_bit(int n, value_type v)
} else if (n < r_len + m_left.length()) {
m_left.set_bit(n - r_len, typename X::value_type(v));
} else {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
}
}
@@ -2692,7 +2693,7 @@ inline sc_digit
sc_concref_r<X, Y>::get_word(int i) const
{
if (i < 0 || i >= size()) {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
}
// 0 <= i < size()
Y &r = m_right;
@@ -2726,7 +2727,7 @@ inline void
sc_concref_r<X, Y>::set_word(int i, sc_digit w)
{
if (i < 0 || i >= size()) {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
}
// 0 <= i < size()
Y &r = m_right;
@@ -2765,7 +2766,7 @@ inline sc_digit
sc_concref_r<X, Y>::get_cword(int i) const
{
if (i < 0 || i >= size()) {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
}
// 0 <= i < size()
Y &r = m_right;
@@ -2799,7 +2800,7 @@ inline void
sc_concref_r<X, Y>::set_cword(int i, sc_digit w)
{
if (i < 0 || i >= size()) {
- SC_REPORT_ERROR("(E5) out of bounds", 0);
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, 0);
}
// 0 <= i < size()
Y &r = m_right;