28 #ifndef __SYSTEMC_CORE_EXT_SC_MODULE_HH__ 29 #define __SYSTEMC_CORE_EXT_SC_MODULE_HH__ 52 struct ProcessFuncWrapper;
73 class sc_signal_in_if;
76 class sc_event_and_list;
77 class sc_event_or_list;
101 virtual ::Port &gem5_getPort(
const std::string &if_name,
int idx=-1);
104 friend class ::sc_gem5::Kernel;
105 friend class ::sc_gem5::Module;
109 virtual const char *
kind()
const {
return "sc_module"; }
201 void async_reset_signal_is(
const sc_in<bool> &,
bool);
208 void dont_initialize();
209 void set_stack_size(
size_t);
291 #define SC_MODULE(name) struct name : ::sc_core::sc_module 293 #define SC_CTOR(name) \ 294 typedef name SC_CURRENT_USER_MODULE; \ 295 name(::sc_core::sc_module_name) 297 #define SC_HAS_PROCESS(name) typedef name SC_CURRENT_USER_MODULE 299 #define SC_METHOD(name) \ 301 ::sc_gem5::Process *p = \ 302 ::sc_gem5::newMethodProcess( \ 303 #name, new ::sc_gem5::ProcessMemberFuncWrapper< \ 304 SC_CURRENT_USER_MODULE>(this, \ 305 &SC_CURRENT_USER_MODULE::name)); \ 307 this->sensitive << p; \ 309 #define SC_THREAD(name) \ 311 ::sc_gem5::Process *p = \ 312 ::sc_gem5::newThreadProcess( \ 313 #name, new ::sc_gem5::ProcessMemberFuncWrapper< \ 314 SC_CURRENT_USER_MODULE>(this, \ 315 &SC_CURRENT_USER_MODULE::name)); \ 317 this->sensitive << p; \ 319 #define SC_CTHREAD(name, clk) \ 321 ::sc_gem5::Process *p = \ 322 ::sc_gem5::newCThreadProcess( \ 323 #name, new ::sc_gem5::ProcessMemberFuncWrapper< \ 324 SC_CURRENT_USER_MODULE>(this, \ 325 &SC_CURRENT_USER_MODULE::name)); \ 327 this->sensitive(p, clk); \ 335 void at_posedge(
const sc_signal_in_if<bool> &);
336 void at_posedge(
const sc_signal_in_if<sc_dt::sc_logic> &);
337 void at_negedge(
const sc_signal_in_if<bool> &);
338 void at_negedge(
const sc_signal_in_if<sc_dt::sc_logic> &);
355 #define SC_NEW(x) ::sc_core::sc_module_sc_new(new x); 359 ::sc_core::sc_set_location(__FILE__, __LINE__); \ 361 ::sc_core::sc_set_location(NULL, 0) 364 #define SC_WAITN(n) \ 365 ::sc_core::sc_set_location(__FILE__, __LINE__); \ 366 ::sc_core::wait(n); \ 367 ::sc_core::sc_set_location(NULL, 0) 370 #define SC_WAIT_UNTIL(expr) \ 371 do { SC_WAIT(); } while (!(expr)) 375 #endif //__SYSTEMC_EXT_CORE_SC_MODULE_HH__ Ports are used to interface objects to each other.
sc_gem5::Module * _gem5_module
sc_module(const sc_module &)
const std::string & name()
sc_module * sc_module_sc_new(sc_module *mod)
sc_signed operator<<(const sc_signed &u, const sc_int_base &v)
const char * sc_gen_unique_name(const char *seed)
sc_concref_r< sc_bitref_r< T1 >, sc_bitref_r< T2 > > operator,(sc_bitref_r< T1 >, sc_bitref_r< T2 >)
bool sc_start_of_simulation_invoked()
bool sc_hierarchical_name_exists(const char *name)
virtual void end_of_simulation()
sc_interface * interface() const
virtual void start_of_simulation()
Process * newCThreadProcess(const char *name, ProcessFuncWrapper *func)
const sc_bind_proxy SC_BIND_PROXY_NIL
Process * newMethodProcess(const char *name, ProcessFuncWrapper *func)
virtual void end_of_elaboration()
sc_interface * _interface
Process * newThreadProcess(const char *name, ProcessFuncWrapper *func)
void at_negedge(const sc_signal_in_if< bool > &s)
bool sc_end_of_simulation_invoked()
void at_posedge(const sc_signal_in_if< bool > &s)
sc_port_base * port() const
virtual const char * kind() const
virtual void before_end_of_elaboration()