Searched refs:if_name (Results 51 - 75 of 102) sorted by relevance

12345

/gem5/src/mem/
H A Ddramsim2.cc340 DRAMSim2::getPort(const std::string &if_name, PortID idx)
342 if (if_name != "port") {
343 return AbstractMemory::getPort(if_name, idx);
H A Dxbar.cc80 BaseXBar::getPort(const std::string &if_name, PortID idx) argument
82 if (if_name == "master" && idx < masterPorts.size()) {
85 } else if (if_name == "default") {
87 } else if (if_name == "slave" && idx < slavePorts.size()) {
91 return ClockedObject::getPort(if_name, idx);
H A Daddr_mapper.hh66 Port &getPort(const std::string &if_name,
H A Dmem_checker_monitor.hh73 Port &getPort(const std::string &if_name,
H A Dxbar.hh412 Port &getPort(const std::string &if_name,
H A Dcomm_monitor.cc87 CommMonitor::getPort(const std::string &if_name, PortID idx) argument
89 if (if_name == "master") {
91 } else if (if_name == "slave") {
94 return SimObject::getPort(if_name, idx);
H A Dcomm_monitor.hh87 Port &getPort(const std::string &if_name,
/gem5/src/gpu-compute/
H A Dcompute_unit.hh695 getPort(const std::string &if_name, PortID idx) override
697 if (if_name == "memory_port") {
701 } else if (if_name == "translation_port") {
705 } else if (if_name == "sqc_port") {
709 } else if (if_name == "sqc_tlb_port") {
712 } else if (if_name == "ldsPort") {
H A Ddispatcher.cc255 GpuDispatcher::getPort(const std::string &if_name, PortID idx) argument
257 if (if_name == "translation_port") {
261 return DmaDevice::getPort(if_name, idx);
H A Dtlb_coalescer.cc71 TLBCoalescer::getPort(const std::string &if_name, PortID idx) argument
73 if (if_name == "slave") {
79 } else if (if_name == "master") {
86 panic("TLBCoalescer::getPort: unknown port %s\n", if_name);
H A Dtlb_coalescer.hh214 Port &getPort(const std::string &if_name,
/gem5/src/dev/net/
H A Dethertap.cc163 EtherTapBase::getPort(const std::string &if_name, PortID idx) argument
165 if (if_name == "tap")
167 return SimObject::getPort(if_name, idx);
H A Detherswitch.cc66 EtherSwitch::getPort(const std::string &if_name, PortID idx) argument
68 if (if_name == "interface") {
73 return SimObject::getPort(if_name, idx);
H A Ddist_etherlink.hh226 Port &getPort(const std::string &if_name,
H A Detherswitch.hh64 Port &getPort(const std::string &if_name,
/gem5/src/cpu/testers/traffic_gen/
H A Dbase.cc94 BaseTrafficGen::getPort(const string &if_name, PortID idx) argument
96 if (if_name == "port") {
99 return ClockedObject::getPort(if_name, idx);
/gem5/src/mem/ruby/system/
H A DRubyPort.hh151 Port &getPort(const std::string &if_name,
/gem5/src/systemc/tlm_bridge/
H A Dtlm_to_gem5.cc457 TlmToGem5Bridge<BITWIDTH>::gem5_getPort(const std::string &if_name, int idx) argument
459 if (if_name == "gem5")
461 else if (if_name == "tlm")
464 return sc_core::sc_module::gem5_getPort(if_name, idx);
H A Dgem5_to_tlm.hh195 ::Port &gem5_getPort(const std::string &if_name, int idx=-1) override;
H A Dtlm_to_gem5.hh164 ::Port &gem5_getPort(const std::string &if_name, int idx=-1) override;
/gem5/src/dev/
H A Ddma_device.cc282 DmaDevice::getPort(const std::string &if_name, PortID idx) argument
284 if (if_name == "dma") {
287 return PioDevice::getPort(if_name, idx);
/gem5/src/dev/pci/
H A Dcopy_engine.hh196 Port &getPort(const std::string &if_name,
/gem5/src/arch/x86/
H A Dpagetable_walker.hh166 Port &getPort(const std::string &if_name,
/gem5/src/cpu/
H A Dbase.cc455 BaseCPU::getPort(const string &if_name, PortID idx)
460 if (if_name == "dcache_port")
462 else if (if_name == "icache_port")
465 return ClockedObject::getPort(if_name, idx);
/gem5/src/mem/ruby/slicc_interface/
H A DAbstractController.hh136 Port &getPort(const std::string &if_name,

Completed in 45 milliseconds

12345