/gem5/ext/systemc/src/sysc/utils/ |
H A D | sc_stop_here.cpp | 56 case SC_INFO: 87 case SC_INFO:
|
H A D | sc_report.h | 49 SC_INFO = 0, // informative only enumerator in enum:sc_core::sc_severity 204 ::sc_core::SC_INFO, msg_type, msg, __FILE__, __LINE__ ) 208 ::sc_core::SC_INFO, msg_type, msg, verbosity, \
|
H A D | sc_report_handler.cpp | 72 if( rep.get_severity() > SC_INFO ) 273 // If the severity of the report is SC_INFO and the specified verbosity 277 if ( (severity_ == SC_INFO) && (verbosity_ > verbosity_level) ) return; 301 // If the severity of the report is SC_INFO and the maximum verbosity 304 if ( (severity_ == SC_INFO) && (SC_MEDIUM > verbosity_level) ) return; 328 set_actions(SC_INFO, SC_DEFAULT_INFO_ACTIONS); 334 sev_call_count[SC_INFO] = 0; 346 items->md[i].sev_call_count[SC_INFO] = 0;
|
H A D | sc_report.cpp | 78 : severity(SC_INFO), 257 sc_report_handler::sev_actions[SC_INFO] =
|
/gem5/src/systemc/tests/systemc/utils/sc_report/log_file/ |
H A D | log_file.cpp | 55 sc_report_handler::report( SC_INFO, "ID1", "after log is opened", "method", 101); 62 sc_report_handler::report( SC_INFO, "ID2", "after log is opened", "thread", 201); 84 sc_report_handler::report( SC_INFO, "ID1", "before log is opened", "no_file", 0); 92 sc_report_handler::report( SC_INFO, "ID1", "after log is opened", "file1", 1); 107 sc_report_handler::report( SC_INFO, "ID1", "after log is closed", "no_file", 0);
|
/gem5/src/systemc/tests/systemc/compliance_1666/test200/ |
H A D | test200.cpp | 71 int i_count = sc_report_handler::get_count(SC_INFO);
76 sc_report_handler::set_actions(SC_INFO, SC_DO_NOTHING);
83 sc_assert(sc_report_handler::get_count(SC_INFO) == i_count + 1);
90 sc_assert(sc_report_handler::get_count(SC_INFO) == i_count + 1);
97 sc_assert(sc_report_handler::get_count(SC_INFO) == i_count + 1);
104 sc_assert(sc_report_handler::get_count(SC_INFO) == i_count + 1);
109 sc_report_handler::set_actions(SC_INFO, SC_DISPLAY);
116 sc_assert(sc_report_handler::get_count(SC_INFO) == i_count + 2);
123 sc_assert(sc_report_handler::get_count(SC_INFO) == i_count + 2);
130 sc_assert(sc_report_handler::get_count(SC_INFO) [all...] |
/gem5/src/systemc/utils/ |
H A D | report.cc | 36 [sc_core::SC_INFO] = "Info", 44 [sc_core::SC_INFO] = ReportSevInfo(sc_core::SC_DEFAULT_INFO_ACTIONS),
|
H A D | sc_report.cc | 109 (msgInfo.sevActions[SC_INFO] == SC_DO_NOTHING && 148 sevActions[SC_INFO] = SC_DO_NOTHING; 153 sevActions[SC_INFO] = SC_UNSPECIFIED; 163 sc_gem5::reportSevInfos[SC_INFO].actions = SC_DO_NOTHING; 165 sc_gem5::reportSevInfos[SC_INFO].actions = SC_DEFAULT_INFO_ACTIONS;
|
H A D | sc_report_handler.cc | 69 if (severity == SC_INFO && verbosity > sc_gem5::reportVerbosityLevel) 389 if (report.get_severity() > SC_INFO) {
|
/gem5/src/systemc/tests/systemc/utils/sc_report/cached/ |
H A D | cached.cpp | 123 sc_report_handler::report(SC_INFO, id.read(), "aa"+ofs, "file_t1", 110+ofs); 146 sc_report_handler::report(SC_INFO, id.read(), "ee"+ofs, "file_m2", 220+ofs); 186 sc_report_handler::report(SC_INFO, ID.read(), "cc", "file_g", 300); 200 sc_report_handler::report(SC_INFO, ID.read(), "c", "file_g", 310);
|
/gem5/src/systemc/tests/systemc/utils/sc_report/action_selection/ |
H A D | action_selection.cpp | 166 sc_report_handler::set_actions( SC_INFO, usr2 ); 175 sc_report_handler::set_actions ( id3, SC_INFO, usr5 ); 180 sc_report_handler::report( SC_INFO, id, "extra_msg_for_info", "no_specific_file", 0);
|
/gem5/src/systemc/ext/utils/ |
H A D | sc_report_handler.hh | 119 ::sc_core::SC_INFO, msg_type, msg, verbosity, __FILE__, __LINE__) 123 ::sc_core::SC_INFO, msg_type, msg, __FILE__, __LINE__)
|
H A D | sc_report.hh | 43 SC_INFO = 0, enumerator in enum:sc_core::sc_severity
|
H A D | _using.hh | 36 using sc_core::SC_INFO;
|
/gem5/src/systemc/tests/systemc/compliance_1666/test220/ |
H A D | test220.cpp | 61 sc_assert(sc_report_handler::get_count(SC_INFO) == 0);
|
/gem5/src/systemc/tests/systemc/compliance_1666/test00/ |
H A D | test00.cpp | 26 using sc_core::SC_INFO;
182 sc_report_handler::set_actions("msg_type", SC_INFO, SC_THROW);
187 sc_assert(rpt.get_severity() == SC_INFO);
193 sc_assert(sc_report_handler::get_count(SC_INFO) == 1);
204 sc_assert(rpt->get_severity() == SC_INFO);
336 sc_assert(sc_report_handler::get_count(SC_INFO) == 0);
|
/gem5/src/systemc/tests/systemc/compliance_1666/test228/ |
H A D | test228.cpp | 54 sev = SC_INFO;
|
/gem5/ext/systemc/src/sysc/tracing/ |
H A D | sc_trace_file_base.cpp | 140 , SC_INFO, SC_DO_NOTHING );
|