gem5
v19.0.0.0
|
#include <string>
#include <vector>
#include "sc_object.hh"
#include "sc_process_handle.hh"
#include "sc_sensitive.hh"
#include "sc_time.hh"
Go to the source code of this file.
Classes | |
class | sc_core::sc_in< T > |
class | sc_core::sc_out< T > |
class | sc_core::sc_inout< T > |
class | sc_core::sc_signal_in_if< T > |
class | sc_core::sc_bind_proxy |
class | sc_core::sc_module |
Namespaces | |
sc_dt | |
sc_gem5 | |
sc_core | |
Macros | |
#define | SC_MODULE(name) struct name : ::sc_core::sc_module |
#define | SC_CTOR(name) |
#define | SC_HAS_PROCESS(name) typedef name SC_CURRENT_USER_MODULE |
#define | SC_METHOD(name) |
#define | SC_THREAD(name) |
#define | SC_CTHREAD(name, clk) |
#define | SC_NEW(x) ::sc_core::sc_module_sc_new(new x); |
#define | SC_WAIT() |
#define | SC_WAITN(n) |
#define | SC_WAIT_UNTIL(expr) do { SC_WAIT(); } while (!(expr)) |
Typedefs | |
typedef sc_module | sc_core::sc_behavior |
typedef sc_module | sc_core::sc_channel |
Functions | |
Process * | sc_gem5::newMethodProcess (const char *name, ProcessFuncWrapper *func) |
Process * | sc_gem5::newThreadProcess (const char *name, ProcessFuncWrapper *func) |
Process * | sc_gem5::newCThreadProcess (const char *name, ProcessFuncWrapper *func) |
void | sc_core::next_trigger () |
void | sc_core::next_trigger (const sc_event &e) |
void | sc_core::next_trigger (const sc_event_or_list &eol) |
void | sc_core::next_trigger (const sc_event_and_list &eal) |
void | sc_core::next_trigger (const sc_time &t) |
void | sc_core::next_trigger (double d, sc_time_unit u) |
void | sc_core::next_trigger (const sc_time &t, const sc_event &e) |
void | sc_core::next_trigger (double d, sc_time_unit u, const sc_event &e) |
void | sc_core::next_trigger (const sc_time &t, const sc_event_or_list &eol) |
void | sc_core::next_trigger (double d, sc_time_unit u, const sc_event_or_list &eol) |
void | sc_core::next_trigger (const sc_time &t, const sc_event_and_list &eal) |
void | sc_core::next_trigger (double d, sc_time_unit u, const sc_event_and_list &eal) |
void | sc_core::wait () |
void | sc_core::wait (int n) |
void | sc_core::wait (const sc_event &e) |
void | sc_core::wait (const sc_event_or_list &eol) |
void | sc_core::wait (const sc_event_and_list &eal) |
void | sc_core::wait (const sc_time &t) |
void | sc_core::wait (double d, sc_time_unit u) |
void | sc_core::wait (const sc_time &t, const sc_event &e) |
void | sc_core::wait (double d, sc_time_unit u, const sc_event &e) |
void | sc_core::wait (const sc_time &t, const sc_event_or_list &eol) |
void | sc_core::wait (double d, sc_time_unit u, const sc_event_or_list &eol) |
void | sc_core::wait (const sc_time &t, const sc_event_and_list &eal) |
void | sc_core::wait (double d, sc_time_unit u, const sc_event_and_list &eal) |
bool | sc_core::timed_out () |
void | sc_core::halt () |
void | sc_core::at_posedge (const sc_signal_in_if< bool > &s) |
void | sc_core::at_posedge (const sc_signal_in_if< sc_dt::sc_logic > &s) |
void | sc_core::at_negedge (const sc_signal_in_if< bool > &s) |
void | sc_core::at_negedge (const sc_signal_in_if< sc_dt::sc_logic > &s) |
const char * | sc_core::sc_gen_unique_name (const char *seed) |
bool | sc_core::sc_hierarchical_name_exists (const char *name) |
bool | sc_core::sc_start_of_simulation_invoked () |
bool | sc_core::sc_end_of_simulation_invoked () |
sc_module * | sc_core::sc_module_sc_new (sc_module *mod) |
#define SC_CTHREAD | ( | name, | |
clk | |||
) |
Definition at line 321 of file sc_module.hh.
Referenced by memory::memory(), SC_MODULE(), and test::test().
#define SC_CTOR | ( | name | ) |
Definition at line 295 of file sc_module.hh.
Referenced by SC_MODULE().
Definition at line 299 of file sc_module.hh.
Referenced by SC_MODULE().
#define SC_METHOD | ( | name | ) |
Definition at line 301 of file sc_module.hh.
Referenced by fun::SC_CTOR(), sc_core::sc_event_queue::sc_event_queue(), SC_MODULE(), FastModel::ScxEvsCortexA76< Types >::ScxEvsCortexA76(), SimpleATInitiator1::SimpleATInitiator1(), SimpleATTarget1::SimpleATTarget1(), SimpleATTarget2::SimpleATTarget2(), SimpleLTTarget1::SimpleLTTarget1(), and SimpleLTTarget_ext::SimpleLTTarget_ext().
#define SC_MODULE | ( | name | ) | struct name : ::sc_core::sc_module |
Definition at line 293 of file sc_module.hh.
#define SC_NEW | ( | x | ) | ::sc_core::sc_module_sc_new(new x); |
Definition at line 357 of file sc_module.hh.
Referenced by SC_MODULE().
#define SC_THREAD | ( | name | ) |
Definition at line 311 of file sc_module.hh.
Referenced by CoreDecouplingLTInitiator::CoreDecouplingLTInitiator(), ExplicitATTarget::ExplicitATTarget(), SC_MODULE(), SimpleATInitiator1::SimpleATInitiator1(), SimpleATInitiator2::SimpleATInitiator2(), SimpleBusAT< NR_OF_INITIATORS, NR_OF_TARGETS >::SimpleBusAT(), SimpleLTInitiator1::SimpleLTInitiator1(), SimpleLTInitiator1_dmi::SimpleLTInitiator1_dmi(), SimpleLTInitiator2::SimpleLTInitiator2(), SimpleLTInitiator2_dmi::SimpleLTInitiator2_dmi(), SimpleLTInitiator3::SimpleLTInitiator3(), SimpleLTInitiator3_dmi::SimpleLTInitiator3_dmi(), and SimpleLTInitiator_ext::SimpleLTInitiator_ext().
#define SC_WAIT | ( | ) |
Definition at line 360 of file sc_module.hh.
#define SC_WAIT_UNTIL | ( | expr | ) | do { SC_WAIT(); } while (!(expr)) |
Definition at line 372 of file sc_module.hh.
#define SC_WAITN | ( | n | ) |
Definition at line 366 of file sc_module.hh.