/gem5/src/systemc/tests/systemc/compliance_1666/test220/ |
H A D | test220.cpp | 7 // 20) sc_report_handler::stop_after(SC_FATAL,-1) should NOT call sc_stop on 1st fatal error
23 sc_assert(sc_report_handler::get_count(SC_FATAL) == 1);
26 sc_report_handler::stop_after(SC_FATAL, 0);
29 sc_assert(sc_report_handler::get_count(SC_FATAL) == 2);
32 sc_report_handler::stop_after(SC_FATAL, -1);
35 sc_assert(sc_report_handler::get_count(SC_FATAL) == 3);
53 sc_report_handler::set_actions(SC_FATAL, SC_DISPLAY);
64 sc_assert(sc_report_handler::get_count(SC_FATAL) == 3);
|
/gem5/ext/systemc/src/sysc/utils/ |
H A D | sc_stop_here.cpp | 66 case SC_FATAL: 97 case SC_FATAL:
|
H A D | sc_report.h | 52 SC_FATAL, // indicates a problem from which we cannot recover enumerator in enum:sc_core::sc_severity 221 ::sc_core::SC_FATAL, msg_type, msg, __FILE__, __LINE__ )
|
H A D | sc_report_handler.cpp | 331 set_actions(SC_FATAL, SC_DEFAULT_FATAL_ACTIONS); 337 sev_call_count[SC_FATAL] = 0; 349 items->md[i].sev_call_count[SC_FATAL] = 0; 681 // Note that SC_FATAL has a limit of 1 by default
|
H A D | sc_report.cpp | 192 else if ( severity_ == SC_FATAL )
|
/gem5/src/systemc/tests/systemc/utils/sc_report/test03/ |
H A D | test03.cpp | 22 test03.cpp -- Test of disabling of SC_FATAL 49 sc_report_handler::set_actions(SC_FATAL,SC_DISPLAY); 50 sc_report_handler::stop_after(SC_FATAL,-1);
|
/gem5/src/systemc/tests/systemc/compliance_1666/test200/ |
H A D | test200.cpp | 74 int f_count = sc_report_handler::get_count(SC_FATAL);
79 sc_report_handler::set_actions(SC_FATAL, SC_DO_NOTHING);
86 sc_assert(sc_report_handler::get_count(SC_FATAL) == f_count);
93 sc_assert(sc_report_handler::get_count(SC_FATAL) == f_count);
100 sc_assert(sc_report_handler::get_count(SC_FATAL) == f_count);
107 sc_assert(sc_report_handler::get_count(SC_FATAL) == f_count + 1);
112 sc_report_handler::set_actions(SC_FATAL, SC_DISPLAY);
119 sc_assert(sc_report_handler::get_count(SC_FATAL) == f_count + 1);
126 sc_assert(sc_report_handler::get_count(SC_FATAL) == f_count + 1);
133 sc_assert(sc_report_handler::get_count(SC_FATAL) [all...] |
/gem5/src/systemc/tests/systemc/utils/sc_report/log_file/ |
H A D | log_file.cpp | 58 sc_report_handler::report( SC_FATAL, "ID2", "after log is opened", "method", 104); 65 sc_report_handler::report( SC_FATAL, "ID1", "after log is opened", "thread", 204); 78 sc_report_handler::stop_after( SC_FATAL, 0 ); 95 sc_report_handler::report( SC_FATAL, "ID2", "after log is opened", "file4", 4);
|
/gem5/src/systemc/utils/ |
H A D | report.cc | 39 [sc_core::SC_FATAL] = "Fatal" 47 [sc_core::SC_FATAL] = ReportSevInfo(sc_core::SC_DEFAULT_FATAL_ACTIONS)
|
/gem5/src/systemc/tests/systemc/compliance_1666/test228/ |
H A D | test228.cpp | 57 sev = SC_FATAL;
58 sc_assert (sev == SC_FATAL);
|
/gem5/src/systemc/tests/systemc/utils/sc_report/action_selection/ |
H A D | action_selection.cpp | 169 sc_report_handler::set_actions( SC_FATAL, usr5 ); 183 sc_report_handler::report( SC_FATAL, id, "extra_msg_for_fatal", "no_specific_file", 3); 201 sc_report_handler::stop_after( SC_FATAL, 0 );
|
/gem5/src/systemc/ext/utils/ |
H A D | sc_report.hh | 46 SC_FATAL, enumerator in enum:sc_core::sc_severity
|
H A D | _using.hh | 39 using sc_core::SC_FATAL;
|
H A D | sc_report_handler.hh | 135 ::sc_core::SC_FATAL, msg_type, msg, __FILE__, __LINE__)
|