Searched refs:top (Results 76 - 100 of 119) sorted by relevance

12345

/gem5/src/base/
H A Dcoroutine.hh53 * interface. It is built on top of the gem5 fiber class.
143 auto ret = args_channel.top();
236 auto ret = ret_channel.top();
/gem5/src/cpu/
H A Dprofile.hh68 ProfileNode top; member in class:FunctionProfile
/gem5/src/arch/x86/
H A Dutility.hh178 * @param top Current x87 TOP value.
182 uint16_t genX87Tags(uint16_t ftw, uint8_t top, int8_t spm);
H A Dutility.cc335 genX87Tags(uint16_t ftw, uint8_t top, int8_t spm) argument
337 const uint8_t new_top((top + spm + 8) % 8);
341 for (int i = top; i != new_top; i = (i + 1 + 8) % 8)
347 for (int i = new_top; i != top; i = (i + 1 + 8) % 8)
/gem5/src/systemc/tests/systemc/compliance_1666/test001/
H A Dtest001.cpp49 sc_assert(std::string(sc_get_current_process_handle().name()) == "top.mod0.g");
187 sc_assert(std::string(name()) == "top.moda");
203 sc_assert(std::string(name()) == "top.modb");
320 Top top("top");
321 top.link->p->bind(s);
322 top.link->link->p->bind(s); //// Binding dynamically allocated port DOULOS008
326 sc_assert(top.sig->read() == 3);
/gem5/src/systemc/tests/systemc/compliance_1666/test205/
H A Dtest205.cpp64 Top top("top");
/gem5/src/systemc/tests/systemc/compliance_1666/test207/
H A Dtest207.cpp50 sc_assert (s.substr(0,15) == "top.event_queue");
62 Top top("top");
/gem5/src/systemc/tests/systemc/compliance_1666/test211/
H A Dtest211.cpp104 Top top("top");
/gem5/src/systemc/tests/systemc/compliance_1666/test220/
H A Dtest220.cpp55 Top top("top");
/gem5/src/systemc/tests/systemc/tmp/others/sc_writer_bug/
H A Dsc_writer_bug.cpp63 Top top("top");
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_vector/
H A Dsc_vector.cpp366 Top top("top");
368 std::vector<sc_object*> children = top.get_child_objects();
373 sc_assert( top.m1->creator_func_called );
374 sc_assert( top.m2->creator_func_called );
375 sc_assert( top.m3->creator_func_called );
/gem5/src/systemc/tests/systemc/1666-2011-compliance/living_children/
H A Dliving_children.cpp100 Top top("top");
/gem5/src/systemc/tests/systemc/compliance_1666/test203b/
H A Dtest203b.cpp63 Top top("top");
/gem5/src/systemc/tests/systemc/compliance_1666/test228/
H A Dtest228.cpp91 Top top("top");
/gem5/src/systemc/tests/systemc/compliance_1666/test234/
H A Dtest234.cpp105 Top top("top");
/gem5/src/systemc/tests/systemc/tmp/others/sc_start_starvation/
H A Dsc_start_starvation.cpp31 Top top("top");
/gem5/src/sim/
H A Dserialize.cc220 DPRINTF(Checkpoint, "Popping: %s\n", path.top());
230 path.push(csprintf("%s.%s", path.top(), obj_name));
248 return path.top();
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_start_starvation/
H A Dsc_start_starvation.cpp68 Top top("top");
/gem5/src/systemc/tests/systemc/communication/sc_signal/check_writer/test16/
H A Dtest16.cpp154 dut top("dut");
/gem5/src/systemc/tests/systemc/compliance_1666/test206/
H A Dtest206.cpp23 sc_assert (strcmp(h.name(),"top.m.T") == 0);
33 sc_assert (strcmp(h.name(),"top.m.static_proc") == 0);
47 sc_assert (strcmp(h.name(),"top.m.T") == 0);
66 sc_assert (strcmp(h.name(),"top.m.T.dynamic_proc") == 0);
72 sc_assert (strcmp(h.name(),"top.m.static_proc") == 0);
98 Top top("top");
/gem5/src/systemc/tests/systemc/compliance_1666/test210/
H A Dtest210.cpp45 obj = sc_find_object("top.m.foo");
47 obj = sc_find_object("top");
49 obj = sc_find_object("top.m");
51 obj = sc_find_object("top.m.sig");
53 obj = sc_find_object("top.m.T");
55 sc_assert(strcmp(sc_process_handle(obj).name(), "top.m.T") == 0);
70 Top top("top");
74 sc_assert(strcmp(tops[0]->name(), "top") == 0);
80 sc_assert(strcmp(tops[0]->name(), "top")
[all...]
/gem5/src/systemc/tests/systemc/1666-2011-compliance/named_events/
H A Dnamed_events.cpp70 sc_assert( std::string(ev1.name()).substr(0,9) == "top.event" );
75 sc_assert( std::string(ev2.name()) == "top.ev2" );
78 sc_assert( sc_find_event("top.ev2") == &ev2 );
94 sc_assert( sc_find_event("top.obj_ev") == &obj->ev );
165 Top top("top");
166 sc_assert( sc_hierarchical_name_exists("top") );
167 sc_assert( sc_hierarchical_name_exists("top.ev2") );
168 sc_assert( sc_hierarchical_name_exists("top.sig") );
169 sc_assert( sc_hierarchical_name_exists("top
[all...]
/gem5/src/base/stats/
H A Dhdf5.cc105 auto base = path.top();
221 H5::Group group = path.top();
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sc_process_handle_less_than/
H A Dsc_process_handle_less_than.cpp173 Top top("top");
/gem5/src/systemc/tests/systemc/communication/sc_signal/check_writer/test15/
H A Dtest15.cpp171 dut top("dut");

Completed in 18 milliseconds

12345