Searched refs:report (Results 1 - 14 of 14) sorted by relevance

/gem5/src/systemc/tests/systemc/utils/sc_report/log_file/
H A Dlog_file.cpp55 sc_report_handler::report( SC_INFO, "ID1", "after log is opened", "method", 101);
56 sc_report_handler::report( SC_WARNING, "ID2", "after log is opened", "method", 102);
57 sc_report_handler::report( SC_ERROR, "ID1", "after log is opened", "method", 103);
58 sc_report_handler::report( SC_FATAL, "ID2", "after log is opened", "method", 104);
62 sc_report_handler::report( SC_INFO, "ID2", "after log is opened", "thread", 201);
63 sc_report_handler::report( SC_WARNING, "ID1", "after log is opened", "thread", 202);
64 sc_report_handler::report( SC_ERROR, "ID2", "after log is opened", "thread", 203);
65 sc_report_handler::report( SC_FATAL, "ID1", "after log is opened", "thread", 204);
84 sc_report_handler::report( SC_INFO, "ID1", "before log is opened", "no_file", 0);
85 sc_report_handler::report( SC_WARNIN
[all...]
/gem5/util/tlm/examples/common/
H A Dreport_handler.hh39 void reportHandler(const sc_core::sc_report &report,
H A Dreport_handler.cc46 reportHandler(const sc_report &report, const sc_actions &actions) argument
48 uint64_t systemc_time = report.get_time().value();
58 stream << report.get_time();
68 stream << ": " << report.get_msg_type()
69 << ' ' << report.get_msg() << '\n';
73 std::cerr << "warning: the report handler ignored a SC_THROW action\n";
75 std::cerr << "warning: the report handler ignored a SC_INTERRUPT"
78 std::cerr << "warning: the report handler ignored a SC_CACHE_REPORT"
/gem5/src/systemc/tests/systemc/utils/sc_report/cached/
H A Dcached.cpp22 sc_report -- caching of report in process context
46 Issue report in this order in the following contextes:
48 retrieve report from thread1 -> no report
49 retrieve report from method1 -> no report
50 retrieve report from global -> no report
64 retrieve report from thread1 -> info/id1/a
65 retrieve report fro
78 sc_report* report = sc_report_handler::get_cached_report(); local
[all...]
/gem5/src/systemc/utils/
H A Dsc_report_handler.cc41 #include "systemc/utils/report.hh"
55 sc_report_handler::report(sc_severity severity, const char *msg_type, function in class:sc_core::sc_report_handler
58 report(severity, msg_type, msg, SC_MEDIUM, file, line);
62 sc_report_handler::report(sc_severity severity, const char *msg_type, function in class:sc_core::sc_report_handler
94 sc_report report(severity, msg_type, msg, verbosity, file, line,
100 current->lastReport(&report);
103 std::unique_ptr<sc_report>(new sc_report(report));
107 sc_gem5::reportHandlerProc(report, actions);
111 sc_report_handler::report(sc_severity severity, int id, const char *msg, function in class:sc_core::sc_report_handler
119 report(severit
280 default_handler( const sc_report &report, const sc_actions &actions) argument
372 sc_report_compose_message(const sc_report &report) argument
[all...]
/gem5/src/systemc/tests/systemc/utils/sc_report/action_selection/
H A Daction_selection.cpp102 void dump_all_handler( const sc_report& report, const sc_actions& actions) argument
104 // dump out report
105 cout << "report: " << report.get_msg_type()
106 << " " << severity2str[ report.get_severity() ];
118 case SC_CACHE_REPORT: cout << "cache-report"; break;
136 cout << " msg=" << report.get_msg()
137 << " file=" << report.get_file_name()
138 << " line " << report.get_line_number()
139 << " time=" << report
[all...]
/gem5/src/systemc/ext/utils/
H A Dsc_report_handler.hh69 static void report(sc_severity, const char *msg_type, const char *msg,
71 static void report(sc_severity, const char *msg_type, const char *msg,
75 static void report(sc_severity, int id, const char *msg, const char *file,
118 ::sc_core::sc_report_handler::report( \
122 ::sc_core::sc_report_handler::report( \
126 ::sc_core::sc_report_handler::report( \
130 ::sc_core::sc_report_handler::report( \
134 ::sc_core::sc_report_handler::report( \
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_report.h83 SC_LOG = 0x0004, // add report to report log
84 SC_DISPLAY = 0x0008, // display report to screen
85 SC_CACHE_REPORT = 0x0010, // save report to cache
199 // Use these macros to report an info, warning, error, or fatal.
203 ::sc_core::sc_report_handler::report( \
207 ::sc_core::sc_report_handler::report( \
212 ::sc_core::sc_report_handler::report( \
216 ::sc_core::sc_report_handler::report( \
220 ::sc_core::sc_report_handler::report( \
[all...]
H A Dsc_report_handler.h62 static void report(sc_severity,
68 static void report( sc_severity,
163 static void report(sc_severity,
H A Dsc_report.cpp54 message = "integer report ids are deprecated, use string values: ";
167 void sc_report_handler::report(sc_severity severity_, function in class:sc_core::sc_report_handler
203 "invalid report id" );
207 "invalid report message" );
222 "report id already exists" );
H A Dsc_report_handler.cpp200 if( !msg_type_ ) // if msg_type is NULL, report unknown error
264 void sc_report_handler::report( sc_severity severity_, function in class:sc_core::sc_report_handler
273 // If the severity of the report is SC_INFO and the specified verbosity
279 // Process the report:
293 void sc_report_handler::report(sc_severity severity_, function in class:sc_core::sc_report_handler
301 // If the severity of the report is SC_INFO and the maximum verbosity
306 // Process the report:
/gem5/src/systemc/core/
H A Dprocess.cc368 Process::lastReport(::sc_core::sc_report *report) argument
370 if (report) {
372 new ::sc_core::sc_report(*report));
H A Dprocess.hh127 void lastReport(::sc_core::sc_report *report);
H A Dscheduler.cc42 #include "systemc/utils/report.hh"
459 ::sc_core::sc_report report = reportifyException(); local
460 _throwUp = &report;

Completed in 21 milliseconds