Searched refs:_port (Results 1 - 25 of 28) sorted by relevance

12

/gem5/src/mem/
H A Dxbar.hh102 * @param _port destination port the layer converges at
106 Layer(DstType& _port, BaseXBar& _xbar, const std::string& _name);
247 * @param _port destination port the layer converges at
251 ReqLayer(MasterPort& _port, BaseXBar& _xbar, const std::string& _name) : argument
252 Layer(_port, _xbar, _name)
269 * @param _port destination port the layer converges at
273 RespLayer(SlavePort& _port, BaseXBar& _xbar, argument
275 Layer(_port, _xbar, _name)
292 * @param _port destination port the layer converges at
296 SnoopRespLayer(MasterPort& _port, BaseXBa argument
[all...]
/gem5/src/mem/ruby/system/
H A DRubyPort.hh68 MemMasterPort(const std::string &_name, RubyPort *_port);
83 MemSlavePort(const std::string &_name, RubyPort *_port,
112 PioMasterPort(const std::string &_name, RubyPort *_port);
125 PioSlavePort(const std::string &_name, RubyPort *_port);
141 SenderState(MemSlavePort * _port) : port(_port) argument
H A DRubyPort.cc124 RubyPort *_port)
125 : QueuedMasterPort(_name, _port, reqQueue, snoopRespQueue),
126 reqQueue(*_port, *this), snoopRespQueue(*_port, *this)
132 RubyPort *_port)
133 : QueuedSlavePort(_name, _port, queue), queue(*_port, *this)
139 RubyPort *_port)
140 : QueuedMasterPort(_name, _port, reqQueue, snoopRespQueue),
141 reqQueue(*_port, *thi
123 PioMasterPort(const std::string &_name, RubyPort *_port) argument
131 PioSlavePort(const std::string &_name, RubyPort *_port) argument
138 MemMasterPort(const std::string &_name, RubyPort *_port) argument
146 MemSlavePort(const std::string &_name, RubyPort *_port, bool _access_backing_store, PortID id, bool _no_retry_on_stall) argument
[all...]
/gem5/src/arch/riscv/
H A Dremote_gdb.cc151 RemoteGDB::RemoteGDB(System *_system, ThreadContext *tc, int _port) argument
152 : BaseRemoteGDB(_system, tc, _port), regCache(this)
H A Dremote_gdb.hh84 RemoteGDB(System *_system, ThreadContext *tc, int _port);
/gem5/src/systemc/ext/core/
H A Dsc_event.hh233 _port = dynamic_cast<const sc_port_b<IF> *>(&p);
234 assert(_port);
239 const sc_port_base *port() const override { return _port; }
244 const sc_port_b<IF> *_port; member in class:sc_core::sc_event_finder_t
274 dynamic_cast<const IF *>(_port->get_interface());
277 ss << "port is not bound: port '" << _port->name() << "' (" <<
278 _port->kind() << ")";
H A Dsc_module.hh86 sc_port_base *_port; member in class:sc_core::sc_bind_proxy
91 sc_bind_proxy(sc_port_base &_port);
94 sc_port_base *port() const { return _port; }
/gem5/src/arch/alpha/
H A Dremote_gdb.hh78 RemoteGDB(System *system, ThreadContext *context, int _port);
H A Dremote_gdb.cc147 RemoteGDB::RemoteGDB(System *_system, ThreadContext *tc, int _port) argument
148 : BaseRemoteGDB(_system, tc, _port)
/gem5/src/arch/mips/
H A Dremote_gdb.hh83 RemoteGDB(System *_system, ThreadContext *tc, int _port);
H A Dremote_gdb.cc154 RemoteGDB::RemoteGDB(System *_system, ThreadContext *tc, int _port) argument
155 : BaseRemoteGDB(_system, tc, _port), regCache(this)
/gem5/src/arch/power/
H A Dremote_gdb.hh82 RemoteGDB(System *_system, ThreadContext *tc, int _port);
H A Dremote_gdb.cc154 RemoteGDB::RemoteGDB(System *_system, ThreadContext *tc, int _port) argument
155 : BaseRemoteGDB(_system, tc, _port), regCache(this)
/gem5/src/arch/sparc/
H A Dremote_gdb.hh109 RemoteGDB(System *_system, ThreadContext *tc, int _port);
H A Dremote_gdb.cc150 RemoteGDB::RemoteGDB(System *_system, ThreadContext *c, int _port) argument
151 : BaseRemoteGDB(_system, c, _port), regCache32(this), regCache64(this)
/gem5/src/arch/arm/
H A Dremote_gdb.hh120 RemoteGDB(System *_system, ThreadContext *tc, int _port);
H A Dremote_gdb.cc173 RemoteGDB::RemoteGDB(System *_system, ThreadContext *tc, int _port) argument
174 : BaseRemoteGDB(_system, tc, _port), regCache32(this), regCache64(this)
/gem5/src/base/
H A Dremote_gdb.cc328 BaseRemoteGDB::BaseRemoteGDB(System *_system, ThreadContext *c, int _port) : argument
329 connectEvent(nullptr), dataEvent(nullptr), _port(_port), fd(-1),
356 while (!listener.listen(_port, true)) {
357 DPRINTF(GDBMisc, "Can't bind port %d\n", _port);
358 _port++;
365 curTick(), name(), _port);
389 return _port;
H A Dremote_gdb.hh126 BaseRemoteGDB(System *system, ThreadContext *context, int _port);
176 int _port; member in class:BaseRemoteGDB
H A Dinet.hh235 uint16_t _port; member in struct:Net::IpWithPort
238 IpWithPort() : IpAddress(), _port(0)
241 IpAddress(__ip), _port(__port)
244 uint8_t port() const { return _port; }
/gem5/src/cpu/o3/
H A Dlsq.hh289 LSQUnit& _port; variable
304 LSQUnit* lsqUnit() { return &_port; }
307 _port(*port), _inst(inst), _data(nullptr),
325 _port(*port), _inst(inst), _data(data),
354 _port.loadQueue[_inst->lqIdx].setRequest(this);
358 _port.storeQueue[_inst->sqIdx].setRequest(this);
703 using LSQRequest::_port;
754 using LSQRequest::_port;
/gem5/src/arch/x86/
H A Dremote_gdb.hh146 RemoteGDB(System *system, ThreadContext *context, int _port);
H A Dremote_gdb.cc67 RemoteGDB::RemoteGDB(System *_system, ThreadContext *c, int _port) : argument
68 BaseRemoteGDB(_system, c, _port), regCache32(this), regCache64(this)
/gem5/src/cpu/trace/
H A Dtrace_cpu.hh430 MasterPort& _port, MasterID master_id,
433 port(_port),
857 MasterPort& _port, MasterID master_id,
860 port(_port),
429 FixedRetryGen(TraceCPU& _owner, const std::string& _name, MasterPort& _port, MasterID master_id, const std::string& trace_file) argument
856 ElasticDataGen(TraceCPU& _owner, const std::string& _name, MasterPort& _port, MasterID master_id, const std::string& trace_file, TraceCPUParams *params) argument
/gem5/src/systemc/core/
H A Dsc_module.cc106 sc_bind_proxy::sc_bind_proxy() : _interface(nullptr), _port(nullptr) {}
109 _interface(&_interface), _port(nullptr)
112 sc_bind_proxy::sc_bind_proxy(sc_port_base &_port) : argument
113 _interface(nullptr), _port(&_port)

Completed in 46 milliseconds

12