Searched refs:m_state (Results 1 - 12 of 12) sorted by relevance

/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_method_process.cpp182 m_state = m_state | ps_bit_disabled;
224 m_state = m_state & ~ps_bit_disabled;
225 if ( m_state == ps_bit_ready_to_run )
227 m_state = ps_normal;
273 if ( m_state & ps_bit_zombie )
421 m_state = m_state | ps_bit_suspended;
424 m_state
[all...]
H A Dsc_thread_process.cpp207 m_state = m_state | ps_bit_disabled;
213 m_state = m_state | ps_bit_ready_to_run;
249 m_state = m_state & ~ps_bit_disabled;
250 if ( m_state == ps_bit_ready_to_run && sc_allow_process_control_corners )
252 m_state = ps_normal;
299 if ( m_state & ps_bit_zombie )
365 if ( !sc_allow_process_control_corners && (m_state
[all...]
H A Dsc_process.cpp111 if ( m_state & ps_bit_zombie ) return;
153 m_state = ps_bit_zombie;
211 if ( m_state == ps_normal )
217 if ( m_state & ps_bit_disabled )
219 if ( m_state & ps_bit_suspended )
221 if ( m_state & ps_bit_ready_to_run )
223 if ( m_state & ps_bit_zombie )
389 (m_state & ps_bit_suspended) )
397 if ( m_state & ps_bit_zombie ) return;
569 m_state(ps_norma
[all...]
H A Dsc_method_process.h342 if ( (m_state & ps_bit_disabled) || is_runnable() ||
358 if ( m_state & ps_bit_suspended )
360 m_state = m_state | ps_bit_ready_to_run;
H A Dsc_process.h338 inline int current_state() { return m_state; }
434 int m_state; // process state. member in class:sc_core::sc_process_b
508 return (m_state & ps_bit_disabled) ? true : false;
682 return (m_state & ps_bit_zombie) != 0;
H A Dsc_thread_process.h469 if ( (m_state & ps_bit_disabled) || is_runnable() ||
491 if ( m_state & ps_bit_suspended )
493 m_state = m_state | ps_bit_ready_to_run;
H A Dsc_simcontext.cpp778 if ( ((method_p->m_state & sc_process_b::ps_bit_disabled) != 0) ||
787 else if ( (method_p->m_state & sc_process_b::ps_bit_suspended) == 0)
793 method_p->m_state |= sc_process_b::ps_bit_ready_to_run;
803 if ( ((thread_p->m_state & sc_process_b::ps_bit_disabled) != 0) ||
812 else if ( (thread_p->m_state & sc_process_b::ps_bit_suspended) == 0)
818 thread_p->m_state |= sc_process_b::ps_bit_ready_to_run;
/gem5/src/mem/ruby/network/garnet2.0/
H A DVirtualChannel.hh72 set_state(VC_state_type m_state, Cycles curTime) argument
74 m_vc_state.first = m_state;
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dscfx_rep.h301 state m_state; // value state, e.g., normal, inf, etc. member in class:sc_dt::scfx_rep
318 m_state = normal;
326 m_state = not_a_number;
334 m_state = infinity;
343 : m_mant( min_mant ), m_wp( 2 ), m_sign( 1 ), m_state( normal ),
368 m_state = f.m_state;
429 if( m_state != normal )
445 return ( m_state == not_a_number );
452 return ( m_state
[all...]
H A Dscfx_rep.cpp100 : m_mant( min_mant ), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
107 : m_mant( min_mant ), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
114 m_state = normal;
131 : m_mant( min_mant ), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
138 m_state = normal;
147 : m_mant( min_mant ), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
153 m_state = normal;
181 : m_mant( min_mant ), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
188 m_state = normal;
207 : m_mant( min_mant ), m_wp( 0 ), m_sign(), m_state( norma
[all...]
/gem5/src/systemc/ext/dt/fx/
H A Dscfx_rep.hh279 state m_state; // value state, e.g., normal, inf, etc. member in class:sc_dt::scfx_rep
294 m_state = normal;
301 m_state = not_a_number;
308 m_state = infinity;
314 m_mant(min_mant), m_wp(2), m_sign(1), m_state(normal),
331 m_state = f.m_state;
377 if (m_state != normal)
388 inline bool scfx_rep::is_nan() const { return (m_state == not_a_number); }
390 inline bool scfx_rep::is_inf() const { return (m_state
[all...]
/gem5/src/systemc/dt/fx/
H A Dscfx_rep.cc100 m_mant(min_mant), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
106 scfx_rep::scfx_rep(int a) : m_mant(min_mant), m_wp(), m_sign(), m_state(),
112 m_state = normal;
126 m_state(), m_msw(), m_lsw(), m_r_flag(false)
131 m_state = normal;
140 m_mant(min_mant), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
145 m_state = normal;
169 m_mant(min_mant), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
175 m_state = normal;
194 m_mant(min_mant), m_wp(0), m_sign(), m_state(norma
[all...]

Completed in 33 milliseconds