Searched refs:name (Results 376 - 400 of 1016) sorted by relevance

<<11121314151617181920>>

/gem5/src/cpu/o3/
H A Ddecode_impl.hh24 * neither the name of the copyright holders nor the names of its
118 DefaultDecode<Impl>::name() const function in class:DefaultDecode
120 return cpu->name() + ".decode";
128 .name(name() + ".IdleCycles")
132 .name(name() + ".BlockedCycles")
136 .name(name() + ".RunCycles")
140 .name(nam
[all...]
/gem5/src/sim/
H A Dsystem.cc25 * neither the name of the copyright holders nor the names of its
106 physmem(name() + ".physmem", p->memories, p->mmap_using_noreserve),
221 panic("System port on %s is not connected.\n", name());
273 cpu->name(), rgdb->port());
454 .name(name() + "." + namestr.str())
486 cerr << "System " << sys->name() << ": " << hex << sys << endl;
501 if (startswith(master_name, name())) {
502 return master_name.substr(name().size());
534 std::string name
[all...]
/gem5/src/dev/net/
H A Detherswitch.cc12 * neither the name of the copyright holders nor the names of its
49 std::string interfaceName = csprintf("%s.interface%d", name(), i);
127 EtherSwitch::Interface::Interface(const std::string &name, argument
131 : EtherInt(name), ticksPerByte(rate), switchDelay(delay),
133 outputFifo(name + ".outputFifo", outputBufferSize),
134 txEvent([this]{ transmit(); }, name)
154 this->name(), uint64_t(destMacAddr), receiver->name());
233 uint64_t(destMacAddr), it->second.interface->name());
249 sender->name());
[all...]
/gem5/tests/gem5/
H A Dfixture.py23 # neither the name of the copyright holders nor the names of its
56 def __init__(self, value=None, name=None):
57 super(VariableFixture, self).__init__(name=name)
65 name=constants.tempdir_fixture_name)
172 self.name = constants.gem5_binary_fixture_name
186 name = 'make -C %s' % directory
188 name=name,
209 super(MakeTarget, self).__init__(name
[all...]
/gem5/src/learning_gem5/part2/
H A Dsimple_cache.cc12 * neither the name of the copyright holders nor the names of its
42 memPort(params->name + ".mem_side", this),
47 // automatically created depending on the name of the vector port and
48 // holds the number of connections to this port name
50 cpuPorts.emplace_back(name() + csprintf(".cpu_side[%d]", i), i, this);
57 // This is the name from the Python SimObject declaration in SimpleCache.py
210 name() + ".accessEvent", true),
432 hits.name(name() + ".hits")
436 misses.name(nam
[all...]
/gem5/src/arch/arm/kvm/
H A Darm_cpu.hh21 * neither the name of the copyright holders nor the names of its
78 const char *name; member in struct:ArmKvmCPU::KvmIntRegInfo
87 const char *name; member in struct:ArmKvmCPU::KvmCoreMiscRegInfo
/gem5/src/mem/ruby/structures/
H A DWireBuffer.hh12 * neither the name of the copyright holders nor the names of its
72 void setDescription(const std::string& name) { m_description = name; }; argument
H A DTimerTable.hh12 * neither the name of the copyright holders nor the names of its
53 setDescription(const std::string& name) argument
55 m_name = name;
/gem5/src/sim/power/
H A Dthermal_domain.cc21 * neither the name of the copyright holders nor the names of its
82 .name(params()->name + ".temp")
/gem5/ext/systemc/src/tlm_utils/
H A Dpeq_with_get.h41 peq_with_get(const char* name) : sc_core::sc_object(name) argument
H A Dsimple_initiator_socket.h45 m_process(this->name())
52 m_process(this->name())
81 process(const std::string& name) : argument
82 m_name(name),
170 m_process(this->name())
177 m_process(this->name())
213 process(const std::string& name) : argument
214 m_name(name),
/gem5/src/dev/virtio/
H A Dblock.hh21 * neither the name of the copyright holders nor the names of its
92 * @name Feature bits
103 * @name VirtIO block requests
115 * @name VirtIO block request status
172 std::string name() const { return parent.name() + ".qRequests"; } function in class:VirtIOBlock::RequestQueue
/gem5/ext/drampower/src/
H A DMemCommand.h18 * 3. Neither the name of the copyright holder nor the names of its
169 // To identify command type from name
170 static cmds getTypeFromName(const std::string& name) argument
175 if (typeStrings[typeId] == name) {
180 assert(false); // Unknown name.
/gem5/src/arch/
H A Dmicro_asm_test.py11 # neither the name of the copyright holders nor the names of its
65 def __init__(self, name):
66 super(TestMacroop, self).__init__(name)
/gem5/tests/configs/
H A Dcheckpoint.py20 # neither the name of the copyright holders nor the names of its
60 def _run_step(name, restore=None, interval=0.5):
63 checkpoitn name) the system and run for interval seconds of
80 m5.checkpoint(name)
/gem5/src/systemc/channel/
H A Dsc_signal_resolved.cc11 * neither the name of the copyright holders nor the names of its
43 sc_signal_resolved::sc_signal_resolved(const char *name) : argument
44 sc_interface(), sc_signal<sc_dt::sc_logic, SC_MANY_WRITERS>(name)
/gem5/src/systemc/tests/systemc/communication/sc_prim_channel/test02/
H A Dtest02.cpp31 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
68 channel(sc_module_name name):sc_channel(name) , data(0) argument
/gem5/src/systemc/tests/systemc/communication/sc_prim_channel/test03/
H A Dtest03.cpp31 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
68 channel(sc_module_name name):sc_channel(name) , data(0) argument
/gem5/src/systemc/tests/systemc/communication/sc_prim_channel/test04/
H A Dtest04.cpp31 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
68 channel(sc_module_name name):sc_channel(name) , data(0) argument
/gem5/src/systemc/tests/systemc/communication/sc_prim_channel/test05/
H A Dtest05.cpp31 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
68 channel(sc_module_name name):sc_channel(name) , data(0) argument
/gem5/src/systemc/tests/systemc/communication/sc_prim_channel/test06/
H A Dtest06.cpp31 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
68 channel(sc_module_name name):sc_channel(name) , data(0) argument
/gem5/src/systemc/tests/systemc/communication/sc_prim_channel/test07/
H A Dtest07.cpp31 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
68 channel(sc_module_name name):sc_channel(name) , data(0) argument
/gem5/src/systemc/tests/systemc/communication/sc_prim_channel/test08/
H A Dtest08.cpp31 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
68 channel(sc_module_name name):sc_channel(name) , data(0) argument
/gem5/src/systemc/tests/systemc/communication/sc_prim_channel/test09/
H A Dtest09.cpp31 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
68 channel(sc_module_name name):sc_channel(name) , data(0) argument
/gem5/src/systemc/tests/systemc/communication/sc_prim_channel/test10/
H A Dtest10.cpp31 MODIFICATION LOG - modifiers, enter your name, affiliation, date and
68 channel(sc_module_name name):sc_channel(name) , data(0) argument

Completed in 15 milliseconds

<<11121314151617181920>>