summaryrefslogtreecommitdiff
path: root/src/systemc/dt
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/dt')
-rw-r--r--src/systemc/dt/bit/sc_bit.cc3
-rw-r--r--src/systemc/dt/bit/sc_lv_base.cc3
-rw-r--r--src/systemc/dt/fx/sc_fxval.cc4
-rw-r--r--src/systemc/dt/fx/scfx_rep.cc4
-rw-r--r--src/systemc/dt/int/sc_int_base.cc11
-rw-r--r--src/systemc/dt/int/sc_signed.cc4
-rw-r--r--src/systemc/dt/int/sc_uint_base.cc10
-rw-r--r--src/systemc/dt/int/sc_unsigned.cc5
8 files changed, 26 insertions, 18 deletions
diff --git a/src/systemc/dt/bit/sc_bit.cc b/src/systemc/dt/bit/sc_bit.cc
index 8382c880c..e2e157905 100644
--- a/src/systemc/dt/bit/sc_bit.cc
+++ b/src/systemc/dt/bit/sc_bit.cc
@@ -60,6 +60,7 @@
#include "systemc/ext/dt/bit/sc_bit.hh"
#include "systemc/ext/dt/bit/sc_logic.hh"
+#include "systemc/ext/utils/messages.hh"
#include "systemc/ext/utils/sc_report_handler.hh"
namespace sc_dt
@@ -119,7 +120,7 @@ sc_deprecated_sc_bit()
static bool warn_sc_bit_deprecated = true;
if (warn_sc_bit_deprecated) {
warn_sc_bit_deprecated = false;
- SC_REPORT_INFO("(I804) /IEEE_Std_1666/deprecated",
+ SC_REPORT_INFO(sc_core::SC_ID_IEEE_1666_DEPRECATION_,
"sc_bit is deprecated, use bool instead");
}
}
diff --git a/src/systemc/dt/bit/sc_lv_base.cc b/src/systemc/dt/bit/sc_lv_base.cc
index 8ffdbe23d..de2d655db 100644
--- a/src/systemc/dt/bit/sc_lv_base.cc
+++ b/src/systemc/dt/bit/sc_lv_base.cc
@@ -51,6 +51,7 @@
#include <sstream>
#include "systemc/ext/dt/bit/sc_lv_base.hh"
+#include "systemc/ext/utils/messages.hh"
namespace sc_dt
{
@@ -67,7 +68,7 @@ sc_proxy_out_of_bounds(const char *msg, int64 val)
ss << msg;
if (val != 0)
ss << val;
- SC_REPORT_ERROR("(E5) out of bounds", ss.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, ss.str().c_str());
}
// ----------------------------------------------------------------------------
diff --git a/src/systemc/dt/fx/sc_fxval.cc b/src/systemc/dt/fx/sc_fxval.cc
index 45d7d5735..3b3b1e031 100644
--- a/src/systemc/dt/fx/sc_fxval.cc
+++ b/src/systemc/dt/fx/sc_fxval.cc
@@ -51,6 +51,7 @@
#include <cstdlib>
#include "systemc/ext/dt/fx/sc_fxval.hh"
+#include "systemc/ext/utils/messages.hh"
namespace sc_dt
{
@@ -383,7 +384,8 @@ print_other(scfx_string &s, const scfx_ieee_double &id, sc_numrep numrep,
step = 4;
break;
default:
- SC_REPORT_FATAL("assertion failed", "unexpected sc_numrep");
+ SC_REPORT_FATAL(sc_core::SC_ID_ASSERTION_FAILED_,
+ "unexpected sc_numrep");
sc_core::sc_abort();
}
diff --git a/src/systemc/dt/fx/scfx_rep.cc b/src/systemc/dt/fx/scfx_rep.cc
index ae19fabe0..f94c5eae0 100644
--- a/src/systemc/dt/fx/scfx_rep.cc
+++ b/src/systemc/dt/fx/scfx_rep.cc
@@ -71,6 +71,7 @@
#include "systemc/ext/dt/fx/scfx_rep.hh"
#include "systemc/ext/dt/fx/scfx_utils.hh"
#include "systemc/ext/utils/endian.hh"
+#include "systemc/ext/utils/messages.hh"
namespace sc_dt
{
@@ -1078,7 +1079,8 @@ print_other(scfx_string &s, const scfx_rep &a, sc_numrep numrep, int w_prefix,
step = 4;
break;
default:
- SC_REPORT_FATAL("assertion failed", "unexpected sc_numrep");
+ SC_REPORT_FATAL(sc_core::SC_ID_ASSERTION_FAILED_,
+ "unexpected sc_numrep");
sc_core::sc_abort();
}
diff --git a/src/systemc/dt/int/sc_int_base.cc b/src/systemc/dt/int/sc_int_base.cc
index 6094086d8..69b62d128 100644
--- a/src/systemc/dt/int/sc_int_base.cc
+++ b/src/systemc/dt/int/sc_int_base.cc
@@ -71,6 +71,7 @@
#include "systemc/ext/dt/int/sc_uint_base.hh"
#include "systemc/ext/dt/int/sc_unsigned.hh"
#include "systemc/ext/dt/misc/sc_concatref.hh"
+#include "systemc/ext/utils/messages.hh"
// explicit template instantiations
namespace sc_core
@@ -92,7 +93,7 @@ sc_int_concref_invalid_length(int length)
std::stringstream msg;
msg << "sc_int_concref<T1,T2> initialization: length = " << length <<
"violates 1 <= length <= " << SC_INTWIDTH;
- SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}
@@ -361,7 +362,7 @@ sc_int_base::invalid_length() const
std::stringstream msg;
msg << "sc_int[_base] initialization: length = " << m_len <<
" violates 1 <= length <= " << SC_INTWIDTH;
- SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}
@@ -371,7 +372,7 @@ sc_int_base::invalid_index(int i) const
std::stringstream msg;
msg << "sc_int[_base] bit selection: index = " << i <<
" violates 0 <= index <= " << (m_len - 1);
- SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}
@@ -382,7 +383,7 @@ sc_int_base::invalid_range(int l, int r) const
msg << "sc_int[_base] part selection: " <<
"left = " << l << ", right = " << r << " violates " <<
(m_len-1) << " >= left >= right >= 0";
- SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}
@@ -393,7 +394,7 @@ sc_int_base::check_value() const
if (m_val < -limit || m_val >= limit) {
std::stringstream msg;
msg << "sc_int[_base]: value does not fit into a length of " << m_len;
- SC_REPORT_WARNING("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_WARNING(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
}
}
diff --git a/src/systemc/dt/int/sc_signed.cc b/src/systemc/dt/int/sc_signed.cc
index 74660b371..cbb688523 100644
--- a/src/systemc/dt/int/sc_signed.cc
+++ b/src/systemc/dt/int/sc_signed.cc
@@ -123,7 +123,7 @@ sc_signed::invalid_index(int i) const
std::stringstream msg;
msg << "sc_bigint bit selection: index = " << i << " violates "
"0 <= index <= " << (nbits - 1);
- SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}
@@ -135,7 +135,7 @@ sc_signed::invalid_range(int l, int r) const
l << ", right = " << r << " \n"
" violates either (" << (nbits-1) << " >= left >= 0) or "
"(" << (nbits-1) << " >= right >= 0)";
- SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}
diff --git a/src/systemc/dt/int/sc_uint_base.cc b/src/systemc/dt/int/sc_uint_base.cc
index 9d28f778c..a6053813f 100644
--- a/src/systemc/dt/int/sc_uint_base.cc
+++ b/src/systemc/dt/int/sc_uint_base.cc
@@ -91,7 +91,7 @@ sc_uint_concref_invalid_length(int length)
std::stringstream msg;
msg << "sc_uint_concref<T1,T2> initialization: length = " << length <<
"violates 1 <= length <= " << SC_INTWIDTH;
- SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}
@@ -347,7 +347,7 @@ sc_uint_base::invalid_length() const
std::stringstream msg;
msg << "sc_uint[_base] initialization: length = " << m_len <<
" violates 1 <= length <= " << SC_INTWIDTH;
- SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
sc_core::sc_abort(); // can't recover from here}
}
@@ -357,7 +357,7 @@ sc_uint_base::invalid_index(int i) const
std::stringstream msg;
msg << "sc_uint[_base] bit selection: index = " << i <<
" violates 0 <= index <= " << (m_len - 1);
- SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}
@@ -368,7 +368,7 @@ sc_uint_base::invalid_range(int l, int r) const
msg << "sc_uint[_base] part selection: " <<
"left = " << l << ", right = " << r << " violates " <<
(m_len - 1) << " >= left >= right >= 0";
- SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}
@@ -380,7 +380,7 @@ sc_uint_base::check_value() const
if (m_val > limit) {
std::stringstream msg;
msg << "sc_uint[_base]: value does not fit into a length of " << m_len;
- SC_REPORT_WARNING("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_WARNING(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
}
}
diff --git a/src/systemc/dt/int/sc_unsigned.cc b/src/systemc/dt/int/sc_unsigned.cc
index ffea95a68..b358c5cd3 100644
--- a/src/systemc/dt/int/sc_unsigned.cc
+++ b/src/systemc/dt/int/sc_unsigned.cc
@@ -89,6 +89,7 @@
#include "systemc/ext/dt/int/sc_uint_base.hh"
#include "systemc/ext/dt/int/sc_unsigned.hh"
#include "systemc/ext/dt/misc/sc_concatref.hh"
+#include "systemc/ext/utils/messages.hh"
// explicit template instantiations
namespace sc_core
@@ -131,7 +132,7 @@ sc_unsigned::invalid_index(int i) const
std::stringstream msg;
msg << "sc_biguint bit selection: index = " << i << " violates "
"0 <= index <= " << (nbits-2);
- SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}
@@ -143,7 +144,7 @@ sc_unsigned::invalid_range(int l, int r) const
l << ", right = " << r << " \n"
" violates either (" << (nbits - 2) << " >= left >= 0) or "
"(" << (nbits-2) << " >= right >= 0)";
- SC_REPORT_ERROR("(E5) out of bounds", msg.str().c_str());
+ SC_REPORT_ERROR(sc_core::SC_ID_OUT_OF_BOUNDS_, msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}