changeset 0e6bd7082fac in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=0e6bd7082fac
description:
Port: Align port names in C++ and Python
This patch is a first step to align the port names used in the Python
world and the C++ world. Ultimately it serves to make the use of
config.json together with output from the simulation easier, including
post-processing of statistics.
Most notably, the CPU, cache, and bus is addressed in this patch, and
there might be other ports that should be updated accordingly. The
dash name separator has also been replaced with a "." which is what is
used to concatenate the names in python, and a separation is made
between the master and slave port in the bus.
diffstat:
src/cpu/inorder/cpu.cc | 9 +++++----
src/cpu/inorder/cpu.hh | 2 +-
src/cpu/o3/cpu.hh | 4 ++--
src/cpu/simple/atomic.cc | 3 ++-
src/cpu/simple/timing.hh | 5 +++--
src/dev/dma_device.cc | 2 +-
src/dev/io_device.cc | 2 +-
src/mem/bridge.cc | 4 ++--
src/mem/cache/cache_impl.hh | 4 ++--
src/mem/coherent_bus.cc | 6 +++---
src/mem/noncoherent_bus.cc | 6 +++---
11 files changed, 25 insertions(+), 22 deletions(-)
diffs (208 lines):
diff -r 407c06cd29a3 -r 0e6bd7082fac src/cpu/inorder/cpu.cc
--- a/src/cpu/inorder/cpu.cc Mon Jul 09 12:35:38 2012 -0400
+++ b/src/cpu/inorder/cpu.cc Mon Jul 09 12:35:39 2012 -0400
@@ -82,8 +82,9 @@
using namespace TheISA;
using namespace ThePipeline;
-InOrderCPU::CachePort::CachePort(CacheUnit *_cacheUnit) :
- CpuPort(_cacheUnit->name() + "-cache-port", _cacheUnit->cpu),
+InOrderCPU::CachePort::CachePort(CacheUnit *_cacheUnit,
+ const std::string& name) :
+ CpuPort(_cacheUnit->name() + name, _cacheUnit->cpu),
cacheUnit(_cacheUnit)
{ }
@@ -230,8 +231,8 @@
stageWidth(params->stageWidth),
resPool(new ResourcePool(this, params)),
timeBuffer(2 , 2),
- dataPort(resPool->getDataUnit()),
- instPort(resPool->getInstUnit()),
+ dataPort(resPool->getDataUnit(), ".dcache_port"),
+ instPort(resPool->getInstUnit(), ".icache_port"),
removeInstsThisCycle(false),
activityRec(params->name, NumStages, 10, params->activity),
system(params->system),
diff -r 407c06cd29a3 -r 0e6bd7082fac src/cpu/inorder/cpu.hh
--- a/src/cpu/inorder/cpu.hh Mon Jul 09 12:35:38 2012 -0400
+++ b/src/cpu/inorder/cpu.hh Mon Jul 09 12:35:39 2012 -0400
@@ -165,7 +165,7 @@
public:
/** Default constructor. */
- CachePort(CacheUnit *_cacheUnit);
+ CachePort(CacheUnit *_cacheUnit, const std::string& name);
protected:
diff -r 407c06cd29a3 -r 0e6bd7082fac src/cpu/o3/cpu.hh
--- a/src/cpu/o3/cpu.hh Mon Jul 09 12:35:38 2012 -0400
+++ b/src/cpu/o3/cpu.hh Mon Jul 09 12:35:39 2012 -0400
@@ -141,7 +141,7 @@
public:
/** Default constructor. */
IcachePort(DefaultFetch<Impl> *_fetch, FullO3CPU<Impl>* _cpu)
- : CpuPort(_fetch->name() + "-iport", _cpu), fetch(_fetch)
+ : CpuPort(_cpu->name() + ".icache_port", _cpu), fetch(_fetch)
{ }
protected:
@@ -168,7 +168,7 @@
public:
/** Default constructor. */
DcachePort(LSQ<Impl> *_lsq, FullO3CPU<Impl>* _cpu)
- : CpuPort(_lsq->name() + "-dport", _cpu), lsq(_lsq)
+ : CpuPort(_cpu->name() + ".dcache_port", _cpu), lsq(_lsq)
{ }
protected:
diff -r 407c06cd29a3 -r 0e6bd7082fac src/cpu/simple/atomic.cc
--- a/src/cpu/simple/atomic.cc Mon Jul 09 12:35:38 2012 -0400
+++ b/src/cpu/simple/atomic.cc Mon Jul 09 12:35:39 2012 -0400
@@ -105,7 +105,8 @@
: BaseSimpleCPU(p), tickEvent(this), width(p->width), locked(false),
simulate_data_stalls(p->simulate_data_stalls),
simulate_inst_stalls(p->simulate_inst_stalls),
- icachePort(name() + "-iport", this), dcachePort(name() + "-iport", this),
+ icachePort(name() + ".icache_port", this),
+ dcachePort(name() + ".dcache_port", this),
fastmem(p->fastmem)
{
_status = Idle;
diff -r 407c06cd29a3 -r 0e6bd7082fac src/cpu/simple/timing.hh
--- a/src/cpu/simple/timing.hh Mon Jul 09 12:35:38 2012 -0400
+++ b/src/cpu/simple/timing.hh Mon Jul 09 12:35:39 2012 -0400
@@ -178,7 +178,7 @@
public:
IcachePort(TimingSimpleCPU *_cpu)
- : TimingCPUPort(_cpu->name() + "-iport", _cpu),
+ : TimingCPUPort(_cpu->name() + ".icache_port", _cpu),
tickEvent(_cpu)
{ }
@@ -206,7 +206,8 @@
public:
DcachePort(TimingSimpleCPU *_cpu)
- : TimingCPUPort(_cpu->name() + "-dport", _cpu), tickEvent(_cpu)
+ : TimingCPUPort(_cpu->name() + ".dcache_port", _cpu),
+ tickEvent(_cpu)
{ }
protected:
diff -r 407c06cd29a3 -r 0e6bd7082fac src/dev/dma_device.cc
--- a/src/dev/dma_device.cc Mon Jul 09 12:35:38 2012 -0400
+++ b/src/dev/dma_device.cc Mon Jul 09 12:35:39 2012 -0400
@@ -47,7 +47,7 @@
#include "sim/system.hh"
DmaPort::DmaPort(MemObject *dev, System *s, Tick min_backoff, Tick max_backoff)
- : MasterPort(dev->name() + "-dma", dev), device(dev), sys(s),
+ : MasterPort(dev->name() + ".dma", dev), device(dev), sys(s),
masterId(s->getMasterId(dev->name())),
pendingCount(0), actionInProgress(0), drainEvent(NULL),
backoffTime(0), minBackoffDelay(min_backoff),
diff -r 407c06cd29a3 -r 0e6bd7082fac src/dev/io_device.cc
--- a/src/dev/io_device.cc Mon Jul 09 12:35:38 2012 -0400
+++ b/src/dev/io_device.cc Mon Jul 09 12:35:39 2012 -0400
@@ -47,7 +47,7 @@
#include "sim/system.hh"
PioPort::PioPort(PioDevice *dev)
- : SimpleTimingPort(dev->name() + "-pio", dev), device(dev)
+ : SimpleTimingPort(dev->name() + ".pio", dev), device(dev)
{
}
diff -r 407c06cd29a3 -r 0e6bd7082fac src/mem/bridge.cc
--- a/src/mem/bridge.cc Mon Jul 09 12:35:38 2012 -0400
+++ b/src/mem/bridge.cc Mon Jul 09 12:35:39 2012 -0400
@@ -79,9 +79,9 @@
Bridge::Bridge(Params *p)
: MemObject(p),
- slavePort(p->name + "-slave", this, masterPort, p->delay,
+ slavePort(p->name + ".slave", this, masterPort, p->delay,
p->nack_delay, p->resp_size, p->ranges),
- masterPort(p->name + "-master", this, slavePort, p->delay, p->req_size),
+ masterPort(p->name + ".master", this, slavePort, p->delay, p->req_size),
ackWrites(p->write_ack), _params(p)
{
if (ackWrites)
diff -r 407c06cd29a3 -r 0e6bd7082fac src/mem/cache/cache_impl.hh
--- a/src/mem/cache/cache_impl.hh Mon Jul 09 12:35:38 2012 -0400
+++ b/src/mem/cache/cache_impl.hh Mon Jul 09 12:35:39 2012 -0400
@@ -72,9 +72,9 @@
tempBlock = new BlkType();
tempBlock->data = new uint8_t[blkSize];
- cpuSidePort = new CpuSidePort(p->name + "-cpu_side_port", this,
+ cpuSidePort = new CpuSidePort(p->name + ".cpu_side", this,
"CpuSidePort");
- memSidePort = new MemSidePort(p->name + "-mem_side_port", this,
+ memSidePort = new MemSidePort(p->name + ".mem_side", this,
"MemSidePort");
tags->setCache(this);
diff -r 407c06cd29a3 -r 0e6bd7082fac src/mem/coherent_bus.cc
--- a/src/mem/coherent_bus.cc Mon Jul 09 12:35:38 2012 -0400
+++ b/src/mem/coherent_bus.cc Mon Jul 09 12:35:39 2012 -0400
@@ -62,7 +62,7 @@
// vector ports, and the presence of the default port, the ports
// are enumerated starting from zero
for (int i = 0; i < p->port_master_connection_count; ++i) {
- std::string portName = csprintf("%s-p%d", name(), i);
+ std::string portName = csprintf("%s.master[%d]", name(), i);
MasterPort* bp = new CoherentBusMasterPort(portName, *this, i);
masterPorts.push_back(bp);
}
@@ -71,7 +71,7 @@
// our corresponding master port
if (p->port_default_connection_count) {
defaultPortID = masterPorts.size();
- std::string portName = csprintf("%s-default", name());
+ std::string portName = name() + ".default";
MasterPort* bp = new CoherentBusMasterPort(portName, *this,
defaultPortID);
masterPorts.push_back(bp);
@@ -79,7 +79,7 @@
// create the slave ports, once again starting at zero
for (int i = 0; i < p->port_slave_connection_count; ++i) {
- std::string portName = csprintf("%s-p%d", name(), i);
+ std::string portName = csprintf("%s.slave[%d]", name(), i);
SlavePort* bp = new CoherentBusSlavePort(portName, *this, i);
slavePorts.push_back(bp);
}
diff -r 407c06cd29a3 -r 0e6bd7082fac src/mem/noncoherent_bus.cc
--- a/src/mem/noncoherent_bus.cc Mon Jul 09 12:35:38 2012 -0400
+++ b/src/mem/noncoherent_bus.cc Mon Jul 09 12:35:39 2012 -0400
@@ -62,7 +62,7 @@
// vector ports, and the presence of the default port, the ports
// are enumerated starting from zero
for (int i = 0; i < p->port_master_connection_count; ++i) {
- std::string portName = csprintf("%s-p%d", name(), i);
+ std::string portName = csprintf("%s.master[%d]", name(), i);
MasterPort* bp = new NoncoherentBusMasterPort(portName, *this, i);
masterPorts.push_back(bp);
}
@@ -71,7 +71,7 @@
// our corresponding master port
if (p->port_default_connection_count) {
defaultPortID = masterPorts.size();
- std::string portName = csprintf("%s-default", name());
+ std::string portName = name() + ".default";
MasterPort* bp = new NoncoherentBusMasterPort(portName, *this,
defaultPortID);
masterPorts.push_back(bp);
@@ -79,7 +79,7 @@
// create the slave ports, once again starting at zero
for (int i = 0; i < p->port_slave_connection_count; ++i) {
- std::string portName = csprintf("%s-p%d", name(), i);
+ std::string portName = csprintf("%s.slave[%d]", name(), i);
SlavePort* bp = new NoncoherentBusSlavePort(portName, *this, i);
slavePorts.push_back(bp);
}
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev