From e07f7efb75f0f7322d752608eb1cb1e1145b4a98 Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Sun, 7 Oct 2018 05:23:49 -0700 Subject: systemc: Switch to using predefined messages for channels. Create and use predefined messages for channels which match the ones Accellera uses. Change-Id: I179214838bbd83604e50225926cdc6b5b1b16923 Reviewed-on: https://gem5-review.googlesource.com/c/13330 Reviewed-by: Gabe Black Maintainer: Gabe Black --- .../specialized_signals/scx_signal_unsigned.h | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) (limited to 'src/systemc/tests/include/specialized_signals/scx_signal_unsigned.h') diff --git a/src/systemc/tests/include/specialized_signals/scx_signal_unsigned.h b/src/systemc/tests/include/specialized_signals/scx_signal_unsigned.h index a356d44bd..7cfc409c1 100644 --- a/src/systemc/tests/include/specialized_signals/scx_signal_unsigned.h +++ b/src/systemc/tests/include/specialized_signals/scx_signal_unsigned.h @@ -1743,43 +1743,36 @@ sc_vpool sc_unsigned_sigref::m_pool(8); //------------------------------------------------------------------------------ sc_dt::sc_unsigned* sc_unsigned_part_if::part_read_target() { - SC_REPORT_ERROR( "attempted specalized signal operation on " - "non-specialized signal", "int" ); + SC_REPORT_ERROR( SC_ID_OPERATION_ON_NON_SPECIALIZED_SIGNAL_, "int" ); return 0; } sc_dt::sc_unsigned sc_unsigned_part_if::read_part( int /*left*/, int /*right*/ ) const { - SC_REPORT_ERROR( "attempted specalized signal operation on " - "non-specialized signal", "int" ); + SC_REPORT_ERROR( SC_ID_OPERATION_ON_NON_SPECIALIZED_SIGNAL_, "int" ); return sc_dt::sc_unsigned(1); } sc_unsigned_sigref& sc_unsigned_part_if::select_part(int /*left*/, int /*right*/) { - SC_REPORT_ERROR( "attempted specalized signal operation on " - "non-specialized signal", "int" ); + SC_REPORT_ERROR( SC_ID_OPERATION_ON_NON_SPECIALIZED_SIGNAL_, "int" ); return *(sc_unsigned_sigref*)0; } void sc_unsigned_part_if::write_part( sc_dt::int64 v, int /*left*/, int /*right*/ ) { - SC_REPORT_ERROR( "attempted specalized signal operation on " - "non-specialized signal", "int" ); + SC_REPORT_ERROR( SC_ID_OPERATION_ON_NON_SPECIALIZED_SIGNAL_, "int" ); } void sc_unsigned_part_if::write_part( sc_dt::uint64 v, int /*left*/, int /*right*/ ) { - SC_REPORT_ERROR( "attempted specalized signal operation on " - "non-specialized signal", "int" ); + SC_REPORT_ERROR( SC_ID_OPERATION_ON_NON_SPECIALIZED_SIGNAL_, "int" ); } void sc_unsigned_part_if::write_part( const sc_dt::sc_signed& v, int /*left*/, int /*right*/ ) { - SC_REPORT_ERROR( "attempted specalized signal operation on " - "non-specialized signal", "int" ); + SC_REPORT_ERROR( SC_ID_OPERATION_ON_NON_SPECIALIZED_SIGNAL_, "int" ); } void sc_unsigned_part_if::write_part( const sc_dt::sc_unsigned& v, int /*left*/, int /*right*/ ) { - SC_REPORT_ERROR( "attempted specalized signal operation on " - "non-specialized signal", "int" ); + SC_REPORT_ERROR( SC_ID_OPERATION_ON_NON_SPECIALIZED_SIGNAL_, "int" ); } -- cgit v1.2.3