gem5  v20.1.0.0
Classes | Namespaces | Macros | Typedefs | Functions
sc_module.hh File Reference
#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

Processsc_gem5::newMethodProcess (const char *name, ProcessFuncWrapper *func)
 
Processsc_gem5::newThreadProcess (const char *name, ProcessFuncWrapper *func)
 
Processsc_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)
 

Macro Definition Documentation

◆ SC_CTHREAD

#define SC_CTHREAD (   name,
  clk 
)
Value:
{ \
#name, new ::sc_gem5::ProcessMemberFuncWrapper< \
SC_CURRENT_USER_MODULE>(this, \
if (p) \
this->sensitive(p, clk); \
}

Definition at line 319 of file sc_module.hh.

◆ SC_CTOR

#define SC_CTOR (   name)
Value:
typedef name SC_CURRENT_USER_MODULE; \

Definition at line 293 of file sc_module.hh.

◆ SC_HAS_PROCESS

#define SC_HAS_PROCESS (   name)    typedef name SC_CURRENT_USER_MODULE

Definition at line 297 of file sc_module.hh.

◆ SC_METHOD

#define SC_METHOD (   name)
Value:
{ \
#name, new ::sc_gem5::ProcessMemberFuncWrapper< \
SC_CURRENT_USER_MODULE>(this, \
if (p) \
this->sensitive << p; \
}

Definition at line 299 of file sc_module.hh.

◆ SC_MODULE

#define SC_MODULE (   name)    struct name : ::sc_core::sc_module

Definition at line 291 of file sc_module.hh.

◆ SC_NEW

#define SC_NEW (   x)    ::sc_core::sc_module_sc_new(new x);

Definition at line 355 of file sc_module.hh.

◆ SC_THREAD

#define SC_THREAD (   name)
Value:
{ \
#name, new ::sc_gem5::ProcessMemberFuncWrapper< \
SC_CURRENT_USER_MODULE>(this, \
if (p) \
this->sensitive << p; \
}

Definition at line 309 of file sc_module.hh.

◆ SC_WAIT

#define SC_WAIT ( )
Value:

Definition at line 358 of file sc_module.hh.

◆ SC_WAIT_UNTIL

#define SC_WAIT_UNTIL (   expr)    do { SC_WAIT(); } while (!(expr))

Definition at line 370 of file sc_module.hh.

◆ SC_WAITN

#define SC_WAITN (   n)
Value:

Definition at line 364 of file sc_module.hh.

sc_gem5::newThreadProcess
Process * newThreadProcess(const char *name, ProcessFuncWrapper *func)
Definition: sc_module.cc:69
ArmISA::n
Bitfield< 31 > n
Definition: miscregs_types.hh:450
sc_core::sc_set_location
void sc_set_location(const char *file, int lineno)
Definition: sc_process_handle.cc:58
sc_core::sc_module_name
Definition: sc_module_name.hh:41
sc_gem5::newMethodProcess
Process * newMethodProcess(const char *name, ProcessFuncWrapper *func)
Definition: sc_module.cc:54
sc_gem5::Process
Definition: process.hh:62
name
const std::string & name()
Definition: trace.cc:50
sc_core::wait
void wait()
Definition: sc_module.cc:653
sc_gem5::newCThreadProcess
Process * newCThreadProcess(const char *name, ProcessFuncWrapper *func)
Definition: sc_module.cc:84
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323

Generated on Wed Sep 30 2020 14:02:19 for gem5 by doxygen 1.8.17