Merge zizzer:/z/m5/Bitkeeper/newmem

into  zazzer.eecs.umich.edu:/z/rdreslin/m5bk/newmem2

--HG--
extra : convert_revision : fd6e39398ac2461caadee6f68d168006ce3ab16f
This commit is contained in:
Ron Dreslinski 2006-02-07 17:33:14 -05:00
commit 3298e937d3
2 changed files with 221 additions and 73 deletions

View file

@ -115,7 +115,7 @@ SimpleCPU::CacheCompletionEvent::description()
SimpleCPU::SimpleCPU(Params *p) SimpleCPU::SimpleCPU(Params *p)
: BaseCPU(p), tickEvent(this, p->width), xc(NULL), : BaseCPU(p), tickEvent(this, p->width), xc(NULL),
cacheCompletionEvent(this), dcache_port(this), icache_port(this) cacheCompletionEvent(this), dcachePort(this), icachePort(this)
{ {
_status = Idle; _status = Idle;
#if FULL_SYSTEM #if FULL_SYSTEM
@ -127,15 +127,9 @@ SimpleCPU::SimpleCPU(Params *p)
xc = new ExecContext(this, /* thread_num */ 0, p->process, /* asid */ 0); xc = new ExecContext(this, /* thread_num */ 0, p->process, /* asid */ 0);
#endif // !FULL_SYSTEM #endif // !FULL_SYSTEM
icacheInterface = p->icache_interface; req = new CpuRequest;
dcacheInterface = p->dcache_interface;
req = new CpuRequest();
pkt = new Packet();
req->asid = 0; req->asid = 0;
pkt->req = req;
pkt->data = new uint8_t[64];
numInst = 0; numInst = 0;
startNumInst = 0; startNumInst = 0;
@ -155,9 +149,9 @@ void
SimpleCPU::switchOut(Sampler *s) SimpleCPU::switchOut(Sampler *s)
{ {
sampler = s; sampler = s;
if (status() == DcacheMissStall) { if (status() == DcacheWaitResponse) {
DPRINTF(Sampler,"Outstanding dcache access, waiting for completion\n"); DPRINTF(Sampler,"Outstanding dcache access, waiting for completion\n");
_status = DcacheMissSwitch; _status = DcacheWaitSwitch;
} }
else { else {
_status = SwitchedOut; _status = SwitchedOut;
@ -270,6 +264,18 @@ SimpleCPU::regStats()
.prereq(dcacheStallCycles) .prereq(dcacheStallCycles)
; ;
icacheRetryCycles
.name(name() + ".icache_retry_cycles")
.desc("ICache total retry cycles")
.prereq(icacheRetryCycles)
;
dcacheRetryCycles
.name(name() + ".dcache_retry_cycles")
.desc("DCache total retry cycles")
.prereq(dcacheRetryCycles)
;
idleFraction = constant(1.0) - notIdleFraction; idleFraction = constant(1.0) - notIdleFraction;
} }
@ -314,6 +320,7 @@ change_thread_state(int thread_number, int activate, int priority)
Fault Fault
SimpleCPU::copySrcTranslate(Addr src) SimpleCPU::copySrcTranslate(Addr src)
{ {
#if 0
static bool no_warn = true; static bool no_warn = true;
int blk_size = (dcacheInterface) ? dcacheInterface->getBlockSize() : 64; int blk_size = (dcacheInterface) ? dcacheInterface->getBlockSize() : 64;
// Only support block sizes of 64 atm. // Only support block sizes of 64 atm.
@ -343,11 +350,15 @@ SimpleCPU::copySrcTranslate(Addr src)
xc->copySrcPhysAddr = 0; xc->copySrcPhysAddr = 0;
} }
return fault; return fault;
#else
return No_Fault
#endif
} }
Fault Fault
SimpleCPU::copy(Addr dest) SimpleCPU::copy(Addr dest)
{ {
#if 0
static bool no_warn = true; static bool no_warn = true;
int blk_size = (dcacheInterface) ? dcacheInterface->getBlockSize() : 64; int blk_size = (dcacheInterface) ? dcacheInterface->getBlockSize() : 64;
// Only support block sizes of 64 atm. // Only support block sizes of 64 atm.
@ -389,6 +400,9 @@ SimpleCPU::copy(Addr dest)
} }
} }
return fault; return fault;
#else
return No_Fault;
#endif
} }
// precise architected memory state accessor macros // precise architected memory state accessor macros
@ -396,22 +410,38 @@ template <class T>
Fault Fault
SimpleCPU::read(Addr addr, T &data, unsigned flags) SimpleCPU::read(Addr addr, T &data, unsigned flags)
{ {
if (status() == DcacheMissStall || status() == DcacheMissSwitch) { if (status() == DcacheWaitResponse || status() == DcacheWaitSwitch) {
Fault fault = xc->read(memReq,data); // Fault fault = xc->read(memReq,data);
// Not sure what to check for no fault...
if (pkt->result == Success) {
memcpy(&data, pkt->data, sizeof(T));
}
if (traceData) { if (traceData) {
traceData->setAddr(addr); traceData->setAddr(addr);
} }
return fault;
// @todo: Figure out a way to create a Fault from the packet result.
return No_Fault;
} }
memReq->reset(addr, sizeof(T), flags); // memReq->reset(addr, sizeof(T), flags);
// translate to physical address // translate to physical address
// NEED NEW TRANSLATION HERE
Fault fault = xc->translateDataReadReq(memReq); Fault fault = xc->translateDataReadReq(memReq);
// if we have a cache, do cache access too // Now do the access.
if (fault == No_Fault && dcacheInterface) { if (fault == No_Fault) {
pkt = new Packet;
pkt->cmd = Read;
req->paddr = addr;
pkt->size = sizeof(T);
pkt->req = req;
sendDcacheRequest();
}
/*
memReq->cmd = Read; memReq->cmd = Read;
memReq->completionEvent = NULL; memReq->completionEvent = NULL;
memReq->time = curTick; memReq->time = curTick;
@ -431,13 +461,15 @@ SimpleCPU::read(Addr addr, T &data, unsigned flags)
fault = xc->read(memReq, data); fault = xc->read(memReq, data);
} }
} else if(fault == No_Fault) { } else if(fault == No_Fault) {
// do functional access // do functional access
fault = xc->read(memReq, data); fault = xc->read(memReq, data);
} }
*/
if (!dcacheInterface && (memReq->flags & UNCACHEABLE)) // This will need a new way to tell if it has a dcache attached.
if (/*!dcacheInterface && */(memReq->flags & UNCACHEABLE))
recordEvent("Uncached Read"); recordEvent("Uncached Read");
return fault; return fault;
@ -490,11 +522,30 @@ template <class T>
Fault Fault
SimpleCPU::write(T data, Addr addr, unsigned flags, uint64_t *res) SimpleCPU::write(T data, Addr addr, unsigned flags, uint64_t *res)
{ {
memReq->reset(addr, sizeof(T), flags); // memReq->reset(addr, sizeof(T), flags);
req->vaddr = addr;
req->time = curTick;
req->size = sizeof(T);
// translate to physical address // translate to physical address
// NEED NEW TRANSLATION HERE
Fault fault = xc->translateDataWriteReq(memReq); Fault fault = xc->translateDataWriteReq(memReq);
// Now do the access.
if (fault == No_Fault) {
pkt = new Packet;
pkt->cmd = Write;
pkt->size = sizeof(T);
pkt->req = req;
// Copy data into the packet.
pkt->data = new uint8_t[64];
memcpy(pkt->data, &data, sizeof(T));
sendDcacheRequest();
}
/*
// do functional access // do functional access
if (fault == No_Fault) if (fault == No_Fault)
fault = xc->write(memReq, data); fault = xc->write(memReq, data);
@ -517,13 +568,16 @@ SimpleCPU::write(T data, Addr addr, unsigned flags, uint64_t *res)
_status = DcacheMissStall; _status = DcacheMissStall;
} }
} }
*/
if (res && (fault == No_Fault)) if (res && (fault == No_Fault))
*res = memReq->result; *res = memReq->result;
if (!dcacheInterface && (memReq->flags & UNCACHEABLE)) // This will need a new way to tell if it's hooked up to a cache or not.
if (/*!dcacheInterface && */(memReq->flags & UNCACHEABLE))
recordEvent("Uncached Write"); recordEvent("Uncached Write");
// If the write needs to have a fault on the access, consider calling
// changeStatus() and changing it to "bad addr write" or something.
return fault; return fault;
} }
@ -579,36 +633,117 @@ SimpleCPU::dbg_vtophys(Addr addr)
#endif // FULL_SYSTEM #endif // FULL_SYSTEM
void void
SimpleCPU::processCacheCompletion() SimpleCPU::sendIcacheRequest()
{ {
#if 1
bool success = icachePort.sendTiming(pkt);
unscheduleTickEvent();
lastIcacheStall = curTick;
if (!success) {
// Need to wait for retry
_status = IcacheRetry;
} else {
// Need to wait for cache to respond
_status = IcacheWaitResponse;
}
#else
Tick latency = icachePort.sendAtomic(pkt);
unscheduleTickEvent();
scheduleTickEvent(latency);
// Note that Icache miss cycles will be incorrect. Unless
// we check the status of the packet sent (is this valid?),
// we won't know if the latency is a hit or a miss.
icacheStallCycles += latency;
_status = IcacheAccessComplete;
#endif
}
void
SimpleCPU::sendDcacheRequest()
{
unscheduleTickEvent();
#if 1
bool success = dcachePort.sendTiming(pkt);
lastDcacheStall = curTick;
if (!success) {
_status = DcacheRetry;
} else {
_status = DcacheWaitResponse;
}
#else
Tick latency = dcachePort.sendAtomic(pkt);
scheduleTickEvent(latency);
// Note that Dcache miss cycles will be incorrect. Unless
// we check the status of the packet sent (is this valid?),
// we won't know if the latency is a hit or a miss.
dcacheStallCycles += latency;
// Delete the packet right here?
delete pkt;
#endif
}
void
SimpleCPU::processResponse(Packet *response)
{
// For what things is the CPU the consumer of the packet it sent out?
// This may create a memory leak if that's the case and it's expected of the
// SimpleCPU to delete its own packet.
pkt = response;
switch (status()) { switch (status()) {
case IcacheMissStall: case IcacheWaitResponse:
icacheStallCycles += curTick - lastIcacheStall; icacheStallCycles += curTick - lastIcacheStall;
_status = IcacheMissComplete;
_status = IcacheAccessComplete;
scheduleTickEvent(1); scheduleTickEvent(1);
// Copy the icache data into the instruction itself.
memcpy(&inst, pkt->data, sizeof(inst));
delete pkt;
break; break;
case DcacheMissStall: case DcacheWaitResponse:
if (memReq->cmd.isRead()) { if (req->cmd.isRead()) {
curStaticInst->execute(this,traceData); curStaticInst->execute(this,traceData);
if (traceData) if (traceData)
traceData->finalize(); traceData->finalize();
} }
delete pkt;
dcacheStallCycles += curTick - lastDcacheStall; dcacheStallCycles += curTick - lastDcacheStall;
_status = Running; _status = Running;
scheduleTickEvent(1); scheduleTickEvent(1);
break; break;
case DcacheMissSwitch: case DcacheWaitSwitch:
if (memReq->cmd.isRead()) { if (memReq->cmd.isRead()) {
curStaticInst->execute(this,traceData); curStaticInst->execute(this,traceData);
if (traceData) if (traceData)
traceData->finalize(); traceData->finalize();
} }
delete pkt;
_status = SwitchedOut; _status = SwitchedOut;
sampler->signalSwitched(); sampler->signalSwitched();
case SwitchedOut: case SwitchedOut:
// If this CPU has been switched out due to sampling/warm-up, // If this CPU has been switched out due to sampling/warm-up,
// ignore any further status changes (e.g., due to cache // ignore any further status changes (e.g., due to cache
// misses outstanding at the time of the switch). // misses outstanding at the time of the switch).
delete pkt;
return; return;
default: default:
panic("SimpleCPU::processCacheCompletion: bad state"); panic("SimpleCPU::processCacheCompletion: bad state");
@ -616,6 +751,24 @@ SimpleCPU::processCacheCompletion()
} }
} }
Packet *
SimpleCPU::processRetry()
{
switch(status()) {
case IcacheRetry:
icacheRetryCycles += curTick - lastIcacheStall;
return pkt;
break;
case DcacheRetry:
dcacheRetryCycles += curTick - lastDcacheStall;
return pkt;
break;
default:
panic("SimpleCPU::processRetry: bad state");
break;
}
}
#if FULL_SYSTEM #if FULL_SYSTEM
void void
SimpleCPU::post_interrupt(int int_num, int index) SimpleCPU::post_interrupt(int int_num, int index)
@ -688,15 +841,14 @@ SimpleCPU::tick()
xc->regs.floatRegFile.d[ZeroReg] = 0.0; xc->regs.floatRegFile.d[ZeroReg] = 0.0;
#endif // TARGET_ALPHA #endif // TARGET_ALPHA
if (status() == IcacheMissComplete) { if (status() == IcacheAccessComplete) {
// We've already fetched an instruction and were stalled on an // We've already fetched an instruction and were stalled on an
// I-cache miss. No need to fetch it again. // I-cache miss. No need to fetch it again.
// Set status to running; tick event will get rescheduled if // Set status to running; tick event will get rescheduled if
// necessary at end of tick() function. // necessary at end of tick() function.
_status = Running; _status = Running;
} } else {
else {
// Try to fetch an instruction // Try to fetch an instruction
// set up memory request for instruction fetch // set up memory request for instruction fetch
@ -706,9 +858,9 @@ SimpleCPU::tick()
#define IFETCH_FLAGS(pc) 0 #define IFETCH_FLAGS(pc) 0
#endif #endif
pkt->cmd = Read; req->vaddr = xc->regs.pc & ~3;
req->paddr = xc->regs.pc & ~3; req->time = curTick;
pkt->size = sizeof(uint32_t); req->size = sizeof(MachInst);
/* memReq->reset(xc->regs.pc & ~3, sizeof(uint32_t), /* memReq->reset(xc->regs.pc & ~3, sizeof(uint32_t),
IFETCH_FLAGS(xc->regs.pc)); IFETCH_FLAGS(xc->regs.pc));
@ -716,10 +868,17 @@ SimpleCPU::tick()
//NEED NEW TRANSLATION HERE //NEED NEW TRANSLATION HERE
fault = xc->translateInstReq(memReq); fault = xc->translateInstReq(memReq);
if (fault == No_Fault) if (fault == No_Fault) {
fault = xc->mem->read(memReq, inst); pkt = new Packet;
pkt->cmd = Read;
pkt->addr = req->paddr;
pkt->size = sizeof(MachInst);
pkt->req = req;
/* if (icacheInterface && fault == No_Fault) { sendIcacheRequest();
/* fault = xc->mem->read(memReq, inst);
if (icacheInterface && fault == No_Fault) {
memReq->completionEvent = NULL; memReq->completionEvent = NULL;
memReq->time = curTick; memReq->time = curTick;
@ -738,14 +897,6 @@ SimpleCPU::tick()
} }
} }
*/ */
bool success = icache_port.sendTiming(pkt);
if (!success)
{
//Need to wait for retry
lastIcacheStall = curTick;
unscheduleTickEvent();
_status = IcacheMissStall;
return;
} }
} }
@ -802,7 +953,7 @@ SimpleCPU::tick()
// If we have a dcache miss, then we can't finialize the instruction // If we have a dcache miss, then we can't finialize the instruction
// trace yet because we want to populate it with the data later // trace yet because we want to populate it with the data later
if (traceData && if (traceData &&
!(status() == DcacheMissStall && memReq->cmd.isRead())) { !(status() == DcacheWaitResponse && memReq->cmd.isRead())) {
traceData->finalize(); traceData->finalize();
} }
@ -833,7 +984,7 @@ SimpleCPU::tick()
assert(status() == Running || assert(status() == Running ||
status() == Idle || status() == Idle ||
status() == DcacheMissStall); status() == DcacheWaitResponse);
if (status() == Running && !tickEvent.scheduled()) if (status() == Running && !tickEvent.scheduled())
tickEvent.schedule(curTick + cycles(1)); tickEvent.schedule(curTick + cycles(1));

View file

@ -83,18 +83,19 @@ class SimpleCPU : public BaseCPU
{ cpu->processCacheCompletion(pkt); return true; } { cpu->processCacheCompletion(pkt); return true; }
virtual Tick recvAtomic(Packet &pkt) virtual Tick recvAtomic(Packet &pkt)
{ cpu->processCacheCompletion(pkt); return CurTick; } { panic("CPU doesn't expect callback!"); return curTick; }
virtual void recvFunctional(Packet &pkt) virtual void recvFunctional(Packet &pkt)
{ cpu->processCacheCompletion(pkt); } { panic("CPU doesn't expect callback!"); }
virtual void recvStatusChange(Status status) virtual void recvStatusChange(Status status)
{ cpu->recvStatusChange(status); } { cpu->recvStatusChange(status); }
virtual Packet *recvRetry() { return cpu->processRetry(); }
}; };
CpuPort icache_port; CpuPort icachePort;
CpuPort dcache_port; CpuPort dcachePort;
public: public:
// main simulation loop (one cycle) // main simulation loop (one cycle)
@ -137,10 +138,12 @@ class SimpleCPU : public BaseCPU
enum Status { enum Status {
Running, Running,
Idle, Idle,
IcacheMissStall, IcacheRetry,
IcacheMissComplete, IcacheWaitResponse,
DcacheMissStall, IcacheAccessComplete,
DcacheMissSwitch, DcacheRetry,
DcacheWaitResponse,
DcacheWaitSwitch,
SwitchedOut SwitchedOut
}; };
@ -161,8 +164,6 @@ class SimpleCPU : public BaseCPU
public: public:
struct Params : public BaseCPU::Params struct Params : public BaseCPU::Params
{ {
MemInterface *icache_interface;
MemInterface *dcache_interface;
int width; int width;
#if FULL_SYSTEM #if FULL_SYSTEM
AlphaITB *itb; AlphaITB *itb;
@ -201,20 +202,6 @@ class SimpleCPU : public BaseCPU
StaticInstPtr<TheISA> curStaticInst; StaticInstPtr<TheISA> curStaticInst;
class CacheCompletionEvent : public Event
{
private:
SimpleCPU *cpu;
public:
CacheCompletionEvent(SimpleCPU *_cpu);
virtual void process();
virtual const char *description();
};
CacheCompletionEvent cacheCompletionEvent;
Status status() const { return _status; } Status status() const { return _status; }
virtual void activateContext(int thread_num, int delay); virtual void activateContext(int thread_num, int delay);
@ -247,15 +234,25 @@ class SimpleCPU : public BaseCPU
Stats::Average<> notIdleFraction; Stats::Average<> notIdleFraction;
Stats::Formula idleFraction; Stats::Formula idleFraction;
// number of cycles stalled for I-cache misses // number of cycles stalled for I-cache responses
Stats::Scalar<> icacheStallCycles; Stats::Scalar<> icacheStallCycles;
Counter lastIcacheStall; Counter lastIcacheStall;
// number of cycles stalled for D-cache misses // number of cycles stalled for I-cache retries
Stats::Scalar<> icacheRetryCycles;
Counter lastIcacheRetry;
// number of cycles stalled for D-cache responses
Stats::Scalar<> dcacheStallCycles; Stats::Scalar<> dcacheStallCycles;
Counter lastDcacheStall; Counter lastDcacheStall;
void processCacheCompletion(); // number of cycles stalled for D-cache retries
Stats::Scalar<> dcacheRetryCycles;
Counter lastDcacheRetry;
void sendIcacheRequest();
void sendDcacheRequest();
void processResponse(Packet *response);
virtual void serialize(std::ostream &os); virtual void serialize(std::ostream &os);
virtual void unserialize(Checkpoint *cp, const std::string &section); virtual void unserialize(Checkpoint *cp, const std::string &section);