SystemC  2.3.2
Accellera SystemC proof-of-concept library
sc_core::sc_clock Class Reference

The clock channel. More...

#include <sysc/communication/sc_clock.h>

Inheritance diagram for sc_core::sc_clock:
Collaboration diagram for sc_core::sc_clock:

Public Types

typedef sc_signal_inout_if< T > if_type
 
typedef sc_signal< T, POL > this_type
 
typedef T value_type
 
typedef sc_writer_policy_check< POL > policy_type
 
enum  { list_end = 0xdb }
 
typedef unsigned phase_cb_mask
 

Public Member Functions

 sc_clock ()
 
 sc_clock (const char *name_)
 
 sc_clock (const char *name_, const sc_time &period_, double duty_cycle_=0.5, const sc_time &start_time_=SC_ZERO_TIME, bool posedge_first_=true)
 
 sc_clock (const char *name_, double period_v_, sc_time_unit period_tu_, double duty_cycle_=0.5)
 
 sc_clock (const char *name_, double period_v_, sc_time_unit period_tu_, double duty_cycle_, double start_time_v_, sc_time_unit start_time_tu_, bool posedge_first_=true)
 
 sc_clock (const char *name_, double period_, double duty_cycle_=0.5, double start_time_=0.0, bool posedge_first_=true)
 
virtual ~sc_clock ()
 
virtual void register_port (sc_port_base &, const char *if_type)
 
virtual void write (const bool &)
 
const sc_timeperiod () const
 
double duty_cycle () const
 
bool posedge_first () const
 
sc_time start_time () const
 
virtual const char * kind () const
 
virtual sc_writer_policy get_writer_policy () const
 
virtual const sc_eventdefault_event () const
 
virtual const sc_eventvalue_changed_event () const
 
virtual const T & read () const
 
virtual const T & get_data_ref () const
 
virtual bool event () const
 
virtual void write (const T &)
 
 operator const T & () const
 
const T & get_new_value () const
 
void trace (sc_trace_file *tf) const
 
virtual void print (::std::ostream &=::std::cout) const
 
virtual void dump (::std::ostream &=::std::cout) const
 
bool update_requested ()
 
void request_update ()
 
void async_request_update ()
 
const char * name () const
 
const char * basename () const
 
sc_simcontextsimcontext () const
 
bool add_attribute (sc_attr_base &)
 
sc_attr_baseget_attribute (const std::string &name_)
 
const sc_attr_baseget_attribute (const std::string &name_) const
 
sc_attr_baseremove_attribute (const std::string &name_)
 
void remove_all_attributes ()
 
int num_attributes () const
 
sc_attr_cltnattr_cltn ()
 
const sc_attr_cltnattr_cltn () const
 
virtual const std::vector< sc_event * > & get_child_events () const
 
virtual const std::vector< sc_object * > & get_child_objects () const
 
sc_objectget_parent () const
 
sc_objectget_parent_object () const
 

Static Public Member Functions

static const sc_timetime_stamp ()
 

Protected Member Functions

void before_end_of_elaboration ()
 
void posedge_action ()
 
void negedge_action ()
 
void report_error (const char *id, const char *add_msg=0) const
 
void init (const sc_time &, double, const sc_time &, bool)
 
bool is_clock () const
 
virtual void update ()
 
void do_update ()
 
void deprecated_get_data_ref () const
 
void deprecated_get_new_value () const
 
void deprecated_trace () const
 
sc_eventlazy_kernel_event (sc_event **, const char *) const
 
void notify_next_delta (sc_event *ev) const
 
virtual void end_of_elaboration ()
 
virtual void start_of_simulation ()
 
virtual void end_of_simulation ()
 
bool async_attach_suspending ()
 
bool async_detach_suspending ()
 
void wait ()
 
void wait (const sc_event &e)
 
void wait (const sc_event_or_list &el)
 
void wait (const sc_event_and_list &el)
 
void wait (const sc_time &t)
 
void wait (double v, sc_time_unit tu)
 
void wait (const sc_time &t, const sc_event &e)
 
void wait (double v, sc_time_unit tu, const sc_event &e)
 
void wait (const sc_time &t, const sc_event_or_list &el)
 
void wait (double v, sc_time_unit tu, const sc_event_or_list &el)
 
void wait (const sc_time &t, const sc_event_and_list &el)
 
void wait (double v, sc_time_unit tu, const sc_event_and_list &el)
 
void wait (int n)
 
void next_trigger ()
 
void next_trigger (const sc_event &e)
 
void next_trigger (const sc_event_or_list &el)
 
void next_trigger (const sc_event_and_list &el)
 
void next_trigger (const sc_time &t)
 
void next_trigger (double v, sc_time_unit tu)
 
void next_trigger (const sc_time &t, const sc_event &e)
 
void next_trigger (double v, sc_time_unit tu, const sc_event &e)
 
void next_trigger (const sc_time &t, const sc_event_or_list &el)
 
void next_trigger (double v, sc_time_unit tu, const sc_event_or_list &el)
 
void next_trigger (const sc_time &t, const sc_event_and_list &el)
 
void next_trigger (double v, sc_time_unit tu, const sc_event_and_list &el)
 
bool timed_out ()
 
virtual void add_child_event (sc_event *event_p)
 
virtual void add_child_object (sc_object *object_p)
 
virtual bool remove_child_event (sc_event *event_p)
 
virtual bool remove_child_object (sc_object *object_p)
 
phase_cb_mask register_simulation_phase_callback (phase_cb_mask)
 
phase_cb_mask unregister_simulation_phase_callback (phase_cb_mask)
 

Protected Attributes

sc_time m_period
 
double m_duty_cycle
 
sc_time m_start_time
 
bool m_posedge_first
 
sc_time m_posedge_time
 
sc_time m_negedge_time
 
sc_event m_next_posedge_event
 
sc_event m_next_negedge_event
 
m_cur_val
 
m_new_val
 
sc_eventm_change_event_p
 
sc_dt::uint64 m_change_stamp
 

Friends

class sc_clock_posedge_callback
 
class sc_clock_negedge_callback
 

Detailed Description

The clock channel.

Definition at line 49 of file sc_clock.h.

Member Typedef Documentation

◆ if_type

template<class T, sc_writer_policy POL>
typedef sc_signal_inout_if<T> sc_core::sc_signal< T, POL >::if_type
inherited

Definition at line 354 of file sc_signal.h.

◆ phase_cb_mask

typedef unsigned sc_core::sc_object::phase_cb_mask
inherited

Definition at line 75 of file sc_object.h.

◆ policy_type

template<class T, sc_writer_policy POL>
typedef sc_writer_policy_check<POL> sc_core::sc_signal< T, POL >::policy_type
inherited

Definition at line 358 of file sc_signal.h.

◆ this_type

template<class T, sc_writer_policy POL>
typedef sc_signal<T,POL> sc_core::sc_signal< T, POL >::this_type
inherited

Definition at line 356 of file sc_signal.h.

◆ value_type

template<class T, sc_writer_policy POL>
typedef T sc_core::sc_signal< T, POL >::value_type
inherited

Definition at line 357 of file sc_signal.h.

Member Enumeration Documentation

◆ anonymous enum

anonymous enum
inherited
Enumerator
list_end 

Definition at line 54 of file sc_prim_channel.h.

Constructor & Destructor Documentation

◆ sc_clock() [1/6]

sc_core::sc_clock::sc_clock ( )

◆ sc_clock() [2/6]

sc_core::sc_clock::sc_clock ( const char *  name_)
explicit

◆ sc_clock() [3/6]

sc_core::sc_clock::sc_clock ( const char *  name_,
const sc_time period_,
double  duty_cycle_ = 0.5,
const sc_time start_time_ = SC_ZERO_TIME,
bool  posedge_first_ = true 
)

◆ sc_clock() [4/6]

sc_core::sc_clock::sc_clock ( const char *  name_,
double  period_v_,
sc_time_unit  period_tu_,
double  duty_cycle_ = 0.5 
)

◆ sc_clock() [5/6]

sc_core::sc_clock::sc_clock ( const char *  name_,
double  period_v_,
sc_time_unit  period_tu_,
double  duty_cycle_,
double  start_time_v_,
sc_time_unit  start_time_tu_,
bool  posedge_first_ = true 
)

◆ sc_clock() [6/6]

sc_core::sc_clock::sc_clock ( const char *  name_,
double  period_,
double  duty_cycle_ = 0.5,
double  start_time_ = 0.0,
bool  posedge_first_ = true 
)

◆ ~sc_clock()

virtual sc_core::sc_clock::~sc_clock ( )
virtual

Member Function Documentation

◆ add_attribute()

bool sc_core::sc_object::add_attribute ( sc_attr_base )
inherited

◆ add_child_event()

virtual void sc_core::sc_object::add_child_event ( sc_event event_p)
protectedvirtualinherited

◆ add_child_object()

virtual void sc_core::sc_object::add_child_object ( sc_object object_p)
protectedvirtualinherited

Reimplemented in sc_core::sc_process_b.

◆ async_attach_suspending()

bool sc_core::sc_prim_channel::async_attach_suspending ( )
inlineprotectedinherited

Definition at line 363 of file sc_prim_channel.h.

◆ async_detach_suspending()

bool sc_core::sc_prim_channel::async_detach_suspending ( )
inlineprotectedinherited

Definition at line 370 of file sc_prim_channel.h.

◆ async_request_update()

void sc_core::sc_prim_channel::async_request_update ( )
inlineinherited

Definition at line 356 of file sc_prim_channel.h.

◆ attr_cltn() [1/2]

sc_attr_cltn& sc_core::sc_object::attr_cltn ( )
inherited

◆ attr_cltn() [2/2]

const sc_attr_cltn& sc_core::sc_object::attr_cltn ( ) const
inherited

◆ basename()

const char* sc_core::sc_object::basename ( ) const
inherited

◆ before_end_of_elaboration()

void sc_core::sc_clock::before_end_of_elaboration ( )
protectedvirtual

Reimplemented from sc_core::sc_prim_channel.

◆ default_event()

template<class T, sc_writer_policy POL>
virtual const sc_event& sc_core::sc_signal_t< T, POL >::default_event ( ) const
inlinevirtualinherited

Reimplemented from sc_core::sc_interface.

Definition at line 195 of file sc_signal.h.

◆ deprecated_get_data_ref()

void sc_core::sc_signal_channel::deprecated_get_data_ref ( ) const
protectedinherited

◆ deprecated_get_new_value()

void sc_core::sc_signal_channel::deprecated_get_new_value ( ) const
protectedinherited

◆ deprecated_trace()

void sc_core::sc_signal_channel::deprecated_trace ( ) const
protectedinherited

◆ do_update()

template<class T , sc_writer_policy POL>
void sc_core::sc_signal_t< T, POL >::do_update ( )
inlineprotectedinherited

Definition at line 337 of file sc_signal.h.

◆ dump()

template<class T , sc_writer_policy POL>
void sc_core::sc_signal_t< T, POL >::dump ( ::std::ostream &  os = ::std::cout) const
virtualinherited

Reimplemented from sc_core::sc_object.

Definition at line 317 of file sc_signal.h.

◆ duty_cycle()

double sc_core::sc_clock::duty_cycle ( ) const
inline

Definition at line 101 of file sc_clock.h.

◆ end_of_elaboration()

virtual void sc_core::sc_prim_channel::end_of_elaboration ( )
protectedvirtualinherited

◆ end_of_simulation()

virtual void sc_core::sc_prim_channel::end_of_simulation ( )
protectedvirtualinherited

◆ event()

template<class T, sc_writer_policy POL>
virtual bool sc_core::sc_signal_t< T, POL >::event ( ) const
inlinevirtualinherited

Implements sc_core::sc_signal_in_if< T >.

Definition at line 214 of file sc_signal.h.

◆ get_attribute() [1/2]

sc_attr_base* sc_core::sc_object::get_attribute ( const std::string &  name_)
inherited

◆ get_attribute() [2/2]

const sc_attr_base* sc_core::sc_object::get_attribute ( const std::string &  name_) const
inherited

◆ get_child_events()

virtual const std::vector<sc_event*>& sc_core::sc_object::get_child_events ( ) const
inlinevirtualinherited

Definition at line 114 of file sc_object.h.

◆ get_child_objects()

virtual const std::vector<sc_object*>& sc_core::sc_object::get_child_objects ( ) const
inlinevirtualinherited

Reimplemented in sc_core::sc_process_b, and sc_core::sc_module.

Definition at line 117 of file sc_object.h.

◆ get_data_ref()

template<class T, sc_writer_policy POL>
virtual const T& sc_core::sc_signal_t< T, POL >::get_data_ref ( ) const
inlinevirtualinherited

Implements sc_core::sc_signal_in_if< T >.

Definition at line 207 of file sc_signal.h.

◆ get_new_value()

template<class T, sc_writer_policy POL>
const T& sc_core::sc_signal_t< T, POL >::get_new_value ( ) const
inlineinherited

Definition at line 238 of file sc_signal.h.

◆ get_parent()

sc_object* sc_core::sc_object::get_parent ( ) const
inherited

◆ get_parent_object()

sc_object* sc_core::sc_object::get_parent_object ( ) const
inlineinherited

Definition at line 121 of file sc_object.h.

◆ get_writer_policy()

template<class T, sc_writer_policy POL>
virtual sc_writer_policy sc_core::sc_signal_t< T, POL >::get_writer_policy ( ) const
inlinevirtualinherited

Reimplemented from sc_core::sc_signal_write_if< T >.

Definition at line 191 of file sc_signal.h.

◆ init()

void sc_core::sc_clock::init ( const sc_time ,
double  ,
const sc_time ,
bool   
)
protected

◆ is_clock()

bool sc_core::sc_clock::is_clock ( ) const
inlineprotected

Definition at line 156 of file sc_clock.h.

◆ kind()

virtual const char* sc_core::sc_clock::kind ( ) const
inlinevirtual

Reimplemented from sc_core::sc_signal_t< T, POL >.

Definition at line 115 of file sc_clock.h.

◆ lazy_kernel_event()

sc_event* sc_core::sc_signal_channel::lazy_kernel_event ( sc_event **  ,
const char *   
) const
protectedinherited

◆ name()

const char* sc_core::sc_object::name ( ) const
inlineinherited

Definition at line 77 of file sc_object.h.

◆ negedge_action()

void sc_core::sc_clock::negedge_action ( )
inlineprotected

Definition at line 193 of file sc_clock.h.

◆ next_trigger() [1/12]

void sc_core::sc_prim_channel::next_trigger ( )
inlineprotectedinherited

Definition at line 150 of file sc_prim_channel.h.

◆ next_trigger() [2/12]

void sc_core::sc_prim_channel::next_trigger ( const sc_event e)
inlineprotectedinherited

Definition at line 156 of file sc_prim_channel.h.

◆ next_trigger() [3/12]

void sc_core::sc_prim_channel::next_trigger ( const sc_event_or_list el)
inlineprotectedinherited

Definition at line 159 of file sc_prim_channel.h.

◆ next_trigger() [4/12]

void sc_core::sc_prim_channel::next_trigger ( const sc_event_and_list el)
inlineprotectedinherited

Definition at line 162 of file sc_prim_channel.h.

◆ next_trigger() [5/12]

void sc_core::sc_prim_channel::next_trigger ( const sc_time t)
inlineprotectedinherited

Definition at line 165 of file sc_prim_channel.h.

◆ next_trigger() [6/12]

void sc_core::sc_prim_channel::next_trigger ( double  v,
sc_time_unit  tu 
)
inlineprotectedinherited

Definition at line 168 of file sc_prim_channel.h.

◆ next_trigger() [7/12]

void sc_core::sc_prim_channel::next_trigger ( const sc_time t,
const sc_event e 
)
inlineprotectedinherited

Definition at line 171 of file sc_prim_channel.h.

◆ next_trigger() [8/12]

void sc_core::sc_prim_channel::next_trigger ( double  v,
sc_time_unit  tu,
const sc_event e 
)
inlineprotectedinherited

Definition at line 174 of file sc_prim_channel.h.

◆ next_trigger() [9/12]

void sc_core::sc_prim_channel::next_trigger ( const sc_time t,
const sc_event_or_list el 
)
inlineprotectedinherited

Definition at line 178 of file sc_prim_channel.h.

◆ next_trigger() [10/12]

void sc_core::sc_prim_channel::next_trigger ( double  v,
sc_time_unit  tu,
const sc_event_or_list el 
)
inlineprotectedinherited

Definition at line 181 of file sc_prim_channel.h.

◆ next_trigger() [11/12]

void sc_core::sc_prim_channel::next_trigger ( const sc_time t,
const sc_event_and_list el 
)
inlineprotectedinherited

Definition at line 185 of file sc_prim_channel.h.

◆ next_trigger() [12/12]

void sc_core::sc_prim_channel::next_trigger ( double  v,
sc_time_unit  tu,
const sc_event_and_list el 
)
inlineprotectedinherited

Definition at line 188 of file sc_prim_channel.h.

◆ notify_next_delta()

void sc_core::sc_signal_channel::notify_next_delta ( sc_event ev) const
inlineprotectedinherited

Definition at line 128 of file sc_signal.h.

◆ num_attributes()

int sc_core::sc_object::num_attributes ( ) const
inherited

◆ operator const T &()

template<class T, sc_writer_policy POL>
sc_core::sc_signal_t< T, POL >::operator const T & ( ) const
inlineinherited

Definition at line 223 of file sc_signal.h.

◆ period()

const sc_time& sc_core::sc_clock::period ( ) const
inline

Definition at line 97 of file sc_clock.h.

◆ posedge_action()

void sc_core::sc_clock::posedge_action ( )
inlineprotected

Definition at line 184 of file sc_clock.h.

◆ posedge_first()

bool sc_core::sc_clock::posedge_first ( ) const
inline

Definition at line 107 of file sc_clock.h.

◆ print()

template<class T , sc_writer_policy POL>
void sc_core::sc_signal_t< T, POL >::print ( ::std::ostream &  os = ::std::cout) const
inlinevirtualinherited

Reimplemented from sc_core::sc_object.

Definition at line 310 of file sc_signal.h.

◆ read()

template<class T, sc_writer_policy POL>
virtual const T& sc_core::sc_signal_t< T, POL >::read ( ) const
inlinevirtualinherited

Implements sc_core::sc_signal_in_if< T >.

Definition at line 203 of file sc_signal.h.

◆ register_port()

virtual void sc_core::sc_clock::register_port ( sc_port_base ,
const char *  if_type 
)
virtual

Reimplemented from sc_core::sc_signal_t< T, POL >.

◆ register_simulation_phase_callback()

phase_cb_mask sc_core::sc_object::register_simulation_phase_callback ( phase_cb_mask  )
protectedinherited

◆ remove_all_attributes()

void sc_core::sc_object::remove_all_attributes ( )
inherited

◆ remove_attribute()

sc_attr_base* sc_core::sc_object::remove_attribute ( const std::string &  name_)
inherited

◆ remove_child_event()

virtual bool sc_core::sc_object::remove_child_event ( sc_event event_p)
protectedvirtualinherited

◆ remove_child_object()

virtual bool sc_core::sc_object::remove_child_object ( sc_object object_p)
protectedvirtualinherited

Reimplemented in sc_core::sc_process_b.

◆ report_error()

void sc_core::sc_clock::report_error ( const char *  id,
const char *  add_msg = 0 
) const
protected

◆ request_update()

void sc_core::sc_prim_channel::request_update ( )
inlineinherited

Definition at line 344 of file sc_prim_channel.h.

◆ simcontext()

sc_simcontext* sc_core::sc_object::simcontext ( ) const
inlineinherited

Definition at line 91 of file sc_object.h.

◆ start_of_simulation()

virtual void sc_core::sc_prim_channel::start_of_simulation ( )
protectedvirtualinherited

◆ start_time()

sc_time sc_core::sc_clock::start_time ( ) const
inline

Definition at line 110 of file sc_clock.h.

◆ time_stamp()

static const sc_time& sc_core::sc_clock::time_stamp ( )
static

◆ timed_out()

bool sc_core::sc_prim_channel::timed_out ( )
inlineprotectedinherited

Definition at line 195 of file sc_prim_channel.h.

◆ trace()

template<class T, sc_writer_policy POL>
void sc_core::sc_signal_t< T, POL >::trace ( sc_trace_file tf) const
inlinevirtualinherited

Reimplemented from sc_core::sc_object.

Definition at line 245 of file sc_signal.h.

◆ unregister_simulation_phase_callback()

phase_cb_mask sc_core::sc_object::unregister_simulation_phase_callback ( phase_cb_mask  )
protectedinherited

◆ update()

template<class T , sc_writer_policy POL>
void sc_core::sc_signal_t< T, POL >::update ( )
protectedvirtualinherited

◆ update_requested()

bool sc_core::sc_prim_channel::update_requested ( )
inlineinherited

Definition at line 59 of file sc_prim_channel.h.

◆ value_changed_event()

template<class T, sc_writer_policy POL>
virtual const sc_event& sc_core::sc_signal_t< T, POL >::value_changed_event ( ) const
inlinevirtualinherited

Implements sc_core::sc_signal_in_if< T >.

Definition at line 199 of file sc_signal.h.

◆ wait() [1/13]

void sc_core::sc_prim_channel::wait ( )
inlineprotectedinherited

Definition at line 105 of file sc_prim_channel.h.

◆ wait() [2/13]

void sc_core::sc_prim_channel::wait ( const sc_event e)
inlineprotectedinherited

Definition at line 111 of file sc_prim_channel.h.

◆ wait() [3/13]

void sc_core::sc_prim_channel::wait ( const sc_event_or_list el)
inlineprotectedinherited

Definition at line 114 of file sc_prim_channel.h.

◆ wait() [4/13]

void sc_core::sc_prim_channel::wait ( const sc_event_and_list el)
inlineprotectedinherited

Definition at line 117 of file sc_prim_channel.h.

◆ wait() [5/13]

void sc_core::sc_prim_channel::wait ( const sc_time t)
inlineprotectedinherited

Definition at line 120 of file sc_prim_channel.h.

◆ wait() [6/13]

void sc_core::sc_prim_channel::wait ( double  v,
sc_time_unit  tu 
)
inlineprotectedinherited

Definition at line 123 of file sc_prim_channel.h.

◆ wait() [7/13]

void sc_core::sc_prim_channel::wait ( const sc_time t,
const sc_event e 
)
inlineprotectedinherited

Definition at line 126 of file sc_prim_channel.h.

◆ wait() [8/13]

void sc_core::sc_prim_channel::wait ( double  v,
sc_time_unit  tu,
const sc_event e 
)
inlineprotectedinherited

Definition at line 129 of file sc_prim_channel.h.

◆ wait() [9/13]

void sc_core::sc_prim_channel::wait ( const sc_time t,
const sc_event_or_list el 
)
inlineprotectedinherited

Definition at line 132 of file sc_prim_channel.h.

◆ wait() [10/13]

void sc_core::sc_prim_channel::wait ( double  v,
sc_time_unit  tu,
const sc_event_or_list el 
)
inlineprotectedinherited

Definition at line 135 of file sc_prim_channel.h.

◆ wait() [11/13]

void sc_core::sc_prim_channel::wait ( const sc_time t,
const sc_event_and_list el 
)
inlineprotectedinherited

Definition at line 138 of file sc_prim_channel.h.

◆ wait() [12/13]

void sc_core::sc_prim_channel::wait ( double  v,
sc_time_unit  tu,
const sc_event_and_list el 
)
inlineprotectedinherited

Definition at line 141 of file sc_prim_channel.h.

◆ wait() [13/13]

void sc_core::sc_prim_channel::wait ( int  n)
inlineprotectedinherited

Definition at line 144 of file sc_prim_channel.h.

◆ write() [1/2]

virtual void sc_core::sc_clock::write ( const bool &  )
virtual

◆ write() [2/2]

template<class T, sc_writer_policy POL>
void sc_core::sc_signal_t< T, POL >::write ( const T &  value_)
inlinevirtualinherited

Implements sc_core::sc_signal_write_if< T >.

Reimplemented in sc_core::sc_signal_resolved, and sc_core::sc_buffer< T, POL >.

Definition at line 293 of file sc_signal.h.

Friends And Related Function Documentation

◆ sc_clock_negedge_callback

friend class sc_clock_negedge_callback
friend

Definition at line 56 of file sc_clock.h.

◆ sc_clock_posedge_callback

friend class sc_clock_posedge_callback
friend

Definition at line 55 of file sc_clock.h.

Member Data Documentation

◆ m_change_event_p

sc_event* sc_core::sc_signal_channel::m_change_event_p
mutableprotectedinherited

Definition at line 132 of file sc_signal.h.

◆ m_change_stamp

sc_dt::uint64 sc_core::sc_signal_channel::m_change_stamp
protectedinherited

Definition at line 133 of file sc_signal.h.

◆ m_cur_val

template<class T, sc_writer_policy POL>
T sc_core::sc_signal_t< T, POL >::m_cur_val
protectedinherited

Definition at line 266 of file sc_signal.h.

◆ m_duty_cycle

double sc_core::sc_clock::m_duty_cycle
protected

Definition at line 161 of file sc_clock.h.

◆ m_negedge_time

sc_time sc_core::sc_clock::m_negedge_time
protected

Definition at line 165 of file sc_clock.h.

◆ m_new_val

template<class T, sc_writer_policy POL>
T sc_core::sc_signal_t< T, POL >::m_new_val
protectedinherited

Definition at line 267 of file sc_signal.h.

◆ m_next_negedge_event

sc_event sc_core::sc_clock::m_next_negedge_event
protected

Definition at line 168 of file sc_clock.h.

◆ m_next_posedge_event

sc_event sc_core::sc_clock::m_next_posedge_event
protected

Definition at line 167 of file sc_clock.h.

◆ m_period

sc_time sc_core::sc_clock::m_period
protected

Definition at line 160 of file sc_clock.h.

◆ m_posedge_first

bool sc_core::sc_clock::m_posedge_first
protected

Definition at line 163 of file sc_clock.h.

◆ m_posedge_time

sc_time sc_core::sc_clock::m_posedge_time
protected

Definition at line 164 of file sc_clock.h.

◆ m_start_time

sc_time sc_core::sc_clock::m_start_time
protected

Definition at line 162 of file sc_clock.h.


The documentation for this class was generated from the following file: