sc_bit::invalid_value(char c)
{
std::stringstream msg;
- msg << "sc_bit('" << c << "')";
- SC_REPORT_ERROR("value is not valid", msg.str().c_str());
+ msg << "sc_bit( '" << c << "' )";
+ SC_REPORT_ERROR("(E204) value is not valid", msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}
sc_bit::invalid_value(int i)
{
std::stringstream msg;
- msg << "sc_bit(" << i << ")";
- SC_REPORT_ERROR("value is not valid", msg.str().c_str());
+ msg << "sc_bit( " << i << " )";
+ SC_REPORT_ERROR("(E204) value is not valid", msg.str().c_str());
sc_core::sc_abort(); // can't recover from here
}
{
std::stringstream msg;
msg << "sc_logic('" << c << "')";
- SC_REPORT_ERROR("value is not valid", msg.str().c_str());
+ SC_REPORT_ERROR("(E204) value is not valid", msg.str().c_str());
}
void
{
std::stringstream msg;
msg << "sc_logic(" << i << ")";
- SC_REPORT_ERROR("value is not valid", msg.str().c_str());
+ SC_REPORT_ERROR("(E204) value is not valid", msg.str().c_str());
}
sc_logic::invalid_01() const
{
if ((int)m_val == Log_Z) {
- SC_REPORT_WARNING("sc_logic value 'Z' cannot be converted to bool", 0);
+ SC_REPORT_WARNING(
+ "(W211) sc_logic value 'Z' cannot be converted to bool", 0);
} else {
- SC_REPORT_WARNING("sc_logic value 'X' cannot be converted to bool", 0);
+ SC_REPORT_WARNING(
+ "(W212) sc_logic value 'X' cannot be converted to bool", 0);
}
}
std::stringstream msg;
msg << "is_valid_base( sc_numrep base ) : base = " << base <<
" is not valid";
- SC_REPORT_ERROR("value is not valid", msg.str().c_str() );
+ SC_REPORT_ERROR("(E204) value is not valid", msg.str().c_str() );
}
}
{
std::stringstream msg;
msg << "sc_bigint part selection: left = " <<
- l << ", right = " << r << "\n"
+ 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());
{
std::stringstream msg;
msg << "sc_biguint part selection: left = " <<
- l << ", right = " << r << "\n"
+ 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_bv_base::set_cword(int /*i*/, sc_digit w)
{
if (w) {
- SC_REPORT_WARNING("sc_bv cannot contain values X and Z", 0);
+ SC_REPORT_WARNING("(W207) sc_bv cannot contain values X and Z", 0);
}
}
#define SC_ERROR_IF_(cnd,id) SC_ERROR_IF_IMPL_(cnd, id, 0)
#define SC_CHECK_WL_(wl) SC_ERROR_IF_((wl) <= 0, \
- "total wordlength <= 0 is not valid")
+ "(E300) total wordlength <= 0 is not valid")
#define SC_CHECK_N_BITS_(n_bits) \
SC_ERROR_IF_((n_bits) < 0, "number of bits < 0 is not valid")
{
// Windows throws exception.
if (is_nan(v) || is_inf(v))
- SC_REPORT_ERROR("value is not valid",
+ SC_REPORT_ERROR("(E204) value is not valid",
"is_bad_double(double v) : "
"v is not finite - NaN or Inf");
}