Searched refs:top (Results 26 - 50 of 119) sorted by relevance

12345

/gem5/src/systemc/tests/systemc/1666-2011-compliance/living_dead_bug/
H A Dliving_dead_bug.cpp78 Top top("top");
82 sc_assert( top.f0 );
83 sc_assert( top.f1 );
/gem5/src/systemc/tests/systemc/kernel/process_control/throw_it/test1/
H A Dtest1.cpp16 SC_MODULE(top) {
18 SC_CTOR(top) {
53 top t("top");
/gem5/src/systemc/tests/systemc/1666-2011-compliance/immed_self_notif/
H A Dimmed_self_notif.cpp201 Top top("top");
205 sc_assert( top.end_of_t2 );
206 sc_assert( top.m1_run );
207 sc_assert( top.m2_run );
208 sc_assert( top.m3_run );
209 sc_assert( top.first_yield == false );
210 sc_assert( top.yield_count == 10 );
211 sc_assert( top.yield_test_run );
/gem5/src/systemc/tests/systemc/1666-2011-compliance/overkill_bug/
H A Doverkill_bug.cpp79 Top top("top");
83 sc_assert( top.f0 );
/gem5/src/systemc/tests/systemc/communication/sc_signal/register_port/test01/
H A Dtest.h61 class top class in inherits:sc_module
74 top( sc_module_name ) function in class:top
/gem5/src/systemc/tests/systemc/communication/sc_signal/register_port/test02/
H A Dtest.h61 class top class in inherits:sc_module
74 top( sc_module_name ) function in class:top
/gem5/src/systemc/tests/systemc/communication/sc_signal/register_port/test03/
H A Dtest.h61 class top class in inherits:sc_module
74 top( sc_module_name ) function in class:top
/gem5/src/systemc/tests/systemc/1666-2011-compliance/mixed_child_procs/
H A Dmixed_child_procs.cpp191 Top top("top");
195 sc_assert( top.index == top.n );
197 for (int i = 0; i < top.n; i++)
199 sc_assert( top.f0[i] );
200 sc_assert( top.f1[i] );
202 if (top.f0[i] == 1) // i.e. a thread process
204 sc_assert( top.f2[i] );
205 sc_assert( top
[all...]
/gem5/src/systemc/tests/systemc/1666-2011-compliance/recursive_kill_bug/
H A Drecursive_kill_bug.cpp113 Top top("top");
117 sc_assert( top.f0 );
118 sc_assert( top.f1 );
119 sc_assert( top.f2 );
/gem5/src/systemc/tests/systemc/1666-2011-compliance/virtual_bind/
H A Dvirtual_bind.cpp145 Top top("top");
149 sc_assert( top.chan.f1 );
150 sc_assert( top.child->chan.f1 );
151 sc_assert( top.child->p.f2 );
152 sc_assert( top.child->xp.f3 );
/gem5/src/systemc/tests/systemc/kernel/process_control/test06/
H A Dtest06.cpp13 SC_MODULE(top) {
15 SC_CTOR(top) {
32 sc_spawn( sc_bind( &top::proc_tree, this, depth-1, width, !as_method, false )
38 sc_spawn( sc_bind( &top::proc_tree, this, depth-1, width, !as_method, false )
126 top t("top");
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_writer_policy/
H A Dsc_writer_policy.cpp299 Top top("top");
302 sc_assert( top.f0 );
303 sc_assert( top.f1 );
304 sc_assert( top.f2 );
305 sc_assert( top.f3 );
306 sc_assert( top.f4 );
307 sc_assert( top.f5 );
309 sc_assert( top.m1->g0 );
310 sc_assert( top
[all...]
/gem5/src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl_elab/
H A Dproc_ctrl_elab.cpp507 Top top("top");
510 sc_assert( top.caught_throw_it == 3 );
511 sc_assert( top.caught_reset == 3 );
512 sc_assert( top.caught_kill == 3 );
514 sc_assert( top.target_suspend_1_called );
515 sc_assert( top.target_suspend_2_called );
516 sc_assert( top.target_suspend_3_called );
517 sc_assert( top.target_suspend_4_called );
518 sc_assert( top
[all...]
/gem5/ext/systemc/src/sysc/qt/
H A Dmeas.c50 void *top; /* Set top of stack if reuse. */ member in struct:thread_t
74 t->top = QT_SP (t->stk, ssz - QT_STKBASE);
86 t->qt = QT_ARGS (t->top, p0, t, f, starter);
115 "*QT_SP(sto,sz), QT_ARGS(top,p0,p1,userf,first)";
130 qt_t *top; local
144 top = QT_SP (stk, QT_STKBASE); QT_ARGS (top, 0, 0, 0, 0);
146 top = QT_SP (stk, QT_STKBASE); QT_ARGS (top,
[all...]
/gem5/ext/systemc/src/sysc/qt/md/
H A Dhppa.h123 #define QUICKTHREADS_SPUT(top, at, val) \
124 (((qt_word_t *)(top))[-(at)] = (qt_word_t)(val))
/gem5/src/systemc/channel/
H A Dsc_event_queue.cc57 _defaultEvent.notify(_times.top() - sc_time_stamp());
79 _defaultEvent.notify(_times.top() - sc_time_stamp());
/gem5/src/systemc/tests/systemc/kernel/process_control/disable_enable/test1/
H A Dtest1.cpp50 SC_MODULE(top) {
53 SC_CTOR(top) :
89 void top::stimulator0()
119 void top::target_cthread0()
141 void top::target_method0()
168 void top::target_thread0()
195 top* top_p = new top("top");
/gem5/src/systemc/tests/systemc/kernel/process_control/disable_enable/test2/
H A Dtest2.cpp51 SC_MODULE(top) {
54 SC_CTOR(top)
106 void top::stimulator0()
146 void top::target_cthread0()
166 void top::target_method0()
192 void top::target_thread0()
216 top* top_p = new top("top");
/gem5/src/systemc/tests/systemc/kernel/process_control/suspend_resume/test1/
H A Dtest1.cpp60 SC_MODULE(top) {
63 SC_CTOR(top) :
99 void top::stimulator0()
129 void top::target_cthread0()
151 void top::target_method0()
181 void top::target_thread0()
209 top* top_p = new top("top");
/gem5/src/systemc/tests/systemc/kernel/process_control/suspend_resume/test2/
H A Dtest2.cpp64 SC_MODULE(top) {
67 SC_CTOR(top)
119 void top::stimulator0()
159 void top::target_cthread0()
179 void top::target_method0()
205 void top::target_thread0()
230 top* top_p = new top("top");
/gem5/src/systemc/tests/systemc/1666-2011-compliance/old_event_bug/
H A Dold_event_bug.cpp136 Top top("top");
140 sc_assert( top.counti == 2 );
141 sc_assert( top.countb == 2 );
142 sc_assert( top.reached_the_end );
/gem5/src/systemc/tests/systemc/communication/sc_signal/check_writer/test14/
H A Dtest14.cpp58 dut top("dut");
/gem5/src/systemc/tests/systemc/compliance_1666/test235b/
H A Dtest235b.cpp80 Top top("top");
81 top.p1_once(sig1);
83 top.p2_twice(sig2);
84 top.p2_twice(sig3);
/gem5/src/systemc/tests/systemc/bugs/instantiation_detection/
H A Dinstantiation_detection.cpp58 SC_MODULE(top)
60 SC_CTOR(top){
104 top dut("dut");
/gem5/src/systemc/tests/systemc/compliance_1666/test219/
H A Dtest219.cpp70 Top top("top");
73 sc_assert(top.m->prim.count == 1);
74 sc_assert(top.m->ME_count == 1);

Completed in 24 milliseconds

12345