2006-06-28 17:02:14 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2003-2005 The Regents of The University of Michigan
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* Authors: Erik Hallnor
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Definition of BaseCache functions.
|
|
|
|
*/
|
|
|
|
|
2006-10-20 08:38:45 +02:00
|
|
|
#include "cpu/base.hh"
|
|
|
|
#include "cpu/smt.hh"
|
2006-06-28 17:02:14 +02:00
|
|
|
#include "mem/cache/base_cache.hh"
|
2006-10-18 06:16:17 +02:00
|
|
|
#include "mem/cache/miss/mshr.hh"
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
BaseCache::CachePort::CachePort(const std::string &_name, BaseCache *_cache,
|
|
|
|
bool _isCpuSide)
|
2006-10-31 19:59:30 +01:00
|
|
|
: Port(_name, _cache), cache(_cache), isCpuSide(_isCpuSide)
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
|
|
|
blocked = false;
|
2006-10-10 23:10:56 +02:00
|
|
|
waitingOnRetry = false;
|
2006-06-28 17:02:14 +02:00
|
|
|
//Start ports at null if more than one is created we should panic
|
2006-06-28 20:35:00 +02:00
|
|
|
//cpuSidePort = NULL;
|
|
|
|
//memSidePort = NULL;
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
2006-12-14 07:04:36 +01:00
|
|
|
|
2006-06-28 20:35:00 +02:00
|
|
|
void
|
2006-06-28 17:02:14 +02:00
|
|
|
BaseCache::CachePort::recvStatusChange(Port::Status status)
|
|
|
|
{
|
|
|
|
cache->recvStatusChange(status, isCpuSide);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-05-22 08:36:09 +02:00
|
|
|
BaseCache::CachePort::getDeviceAddressRanges(AddrRangeList &resp, bool &snoop)
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2006-07-07 22:02:22 +02:00
|
|
|
cache->getAddressRanges(resp, snoop, isCpuSide);
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
BaseCache::CachePort::deviceBlockSize()
|
|
|
|
{
|
|
|
|
return cache->getBlockSize();
|
|
|
|
}
|
|
|
|
|
2006-11-11 04:45:50 +01:00
|
|
|
bool
|
|
|
|
BaseCache::CachePort::checkFunctional(PacketPtr pkt)
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2006-10-12 19:59:03 +02:00
|
|
|
//Check storage here first
|
2006-10-20 09:10:12 +02:00
|
|
|
list<PacketPtr>::iterator i = drainList.begin();
|
2006-11-11 04:45:50 +01:00
|
|
|
list<PacketPtr>::iterator iend = drainList.end();
|
|
|
|
bool notDone = true;
|
|
|
|
while (i != iend && notDone) {
|
2006-10-20 09:10:12 +02:00
|
|
|
PacketPtr target = *i;
|
2006-10-12 19:59:03 +02:00
|
|
|
// If the target contains data, and it overlaps the
|
|
|
|
// probed request, need to update data
|
|
|
|
if (target->intersect(pkt)) {
|
2006-11-12 12:35:39 +01:00
|
|
|
DPRINTF(Cache, "Functional %s access to blk_addr %x intersects a drain\n",
|
|
|
|
pkt->cmdString(), pkt->getAddr() & ~(cache->getBlockSize() - 1));
|
2006-11-11 04:45:50 +01:00
|
|
|
notDone = fixPacket(pkt, target);
|
2006-10-12 19:59:03 +02:00
|
|
|
}
|
2006-11-11 04:45:50 +01:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
//Also check the response not yet ready to be on the list
|
|
|
|
std::list<std::pair<Tick,PacketPtr> >::iterator j = transmitList.begin();
|
|
|
|
std::list<std::pair<Tick,PacketPtr> >::iterator jend = transmitList.end();
|
|
|
|
|
|
|
|
while (j != jend && notDone) {
|
|
|
|
PacketPtr target = j->second;
|
|
|
|
// If the target contains data, and it overlaps the
|
|
|
|
// probed request, need to update data
|
2006-11-12 12:35:39 +01:00
|
|
|
if (target->intersect(pkt)) {
|
|
|
|
DPRINTF(Cache, "Functional %s access to blk_addr %x intersects a response\n",
|
|
|
|
pkt->cmdString(), pkt->getAddr() & ~(cache->getBlockSize() - 1));
|
|
|
|
notDone = fixDelayedResponsePacket(pkt, target);
|
|
|
|
}
|
2006-11-11 04:45:50 +01:00
|
|
|
j++;
|
2006-10-12 19:59:03 +02:00
|
|
|
}
|
2006-11-11 04:45:50 +01:00
|
|
|
return notDone;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BaseCache::CachePort::checkAndSendFunctional(PacketPtr pkt)
|
|
|
|
{
|
|
|
|
bool notDone = checkFunctional(pkt);
|
|
|
|
if (notDone)
|
|
|
|
sendFunctional(pkt);
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
2006-08-16 21:54:02 +02:00
|
|
|
void
|
|
|
|
BaseCache::CachePort::recvRetry()
|
|
|
|
{
|
2006-10-20 09:10:12 +02:00
|
|
|
PacketPtr pkt;
|
2006-10-10 23:10:56 +02:00
|
|
|
assert(waitingOnRetry);
|
2006-10-07 18:02:59 +02:00
|
|
|
if (!drainList.empty()) {
|
2006-11-14 04:37:22 +01:00
|
|
|
DPRINTF(CachePort, "%s attempting to send a retry for response (%i waiting)\n"
|
|
|
|
, name(), drainList.size());
|
2006-10-07 18:02:59 +02:00
|
|
|
//We have some responses to drain first
|
2006-11-14 04:37:22 +01:00
|
|
|
pkt = drainList.front();
|
|
|
|
drainList.pop_front();
|
|
|
|
if (sendTiming(pkt)) {
|
|
|
|
DPRINTF(CachePort, "%s sucessful in sending a retry for"
|
|
|
|
"response (%i still waiting)\n", name(), drainList.size());
|
2006-10-10 23:10:56 +02:00
|
|
|
if (!drainList.empty() ||
|
|
|
|
!isCpuSide && cache->doMasterRequest() ||
|
|
|
|
isCpuSide && cache->doSlaveRequest()) {
|
2006-10-11 04:50:36 +02:00
|
|
|
|
|
|
|
DPRINTF(CachePort, "%s has more responses/requests\n", name());
|
2007-05-14 07:58:06 +02:00
|
|
|
new BaseCache::RequestEvent(this, curTick + 1);
|
2006-10-10 23:10:56 +02:00
|
|
|
}
|
|
|
|
waitingOnRetry = false;
|
2006-10-07 18:02:59 +02:00
|
|
|
}
|
2006-11-14 04:37:22 +01:00
|
|
|
else {
|
|
|
|
drainList.push_front(pkt);
|
|
|
|
}
|
2006-11-07 20:25:54 +01:00
|
|
|
// Check if we're done draining once this list is empty
|
|
|
|
if (drainList.empty())
|
|
|
|
cache->checkDrain();
|
2006-10-07 18:02:59 +02:00
|
|
|
}
|
2006-10-09 00:45:21 +02:00
|
|
|
else if (!isCpuSide)
|
2006-08-16 21:54:02 +02:00
|
|
|
{
|
2006-10-11 04:50:36 +02:00
|
|
|
DPRINTF(CachePort, "%s attempting to send a retry for MSHR\n", name());
|
2006-10-11 06:19:31 +02:00
|
|
|
if (!cache->doMasterRequest()) {
|
2006-10-11 06:13:53 +02:00
|
|
|
//This can happen if I am the owner of a block and see an upgrade
|
|
|
|
//while the block was in my WB Buffers. I just remove the
|
|
|
|
//wb and de-assert the masterRequest
|
2006-10-11 07:01:40 +02:00
|
|
|
waitingOnRetry = false;
|
2006-10-11 06:13:53 +02:00
|
|
|
return;
|
|
|
|
}
|
2006-08-16 21:54:02 +02:00
|
|
|
pkt = cache->getPacket();
|
2006-10-17 22:47:22 +02:00
|
|
|
MSHR* mshr = (MSHR*) pkt->senderState;
|
2006-10-17 21:05:21 +02:00
|
|
|
//Copy the packet, it may be modified/destroyed elsewhere
|
2006-10-20 09:10:12 +02:00
|
|
|
PacketPtr copyPkt = new Packet(*pkt);
|
2006-10-17 21:05:21 +02:00
|
|
|
copyPkt->dataStatic<uint8_t>(pkt->getPtr<uint8_t>());
|
|
|
|
mshr->pkt = copyPkt;
|
2006-10-17 22:47:22 +02:00
|
|
|
|
2006-08-16 21:54:02 +02:00
|
|
|
bool success = sendTiming(pkt);
|
|
|
|
DPRINTF(Cache, "Address %x was %s in sending the timing request\n",
|
|
|
|
pkt->getAddr(), success ? "succesful" : "unsuccesful");
|
2006-10-17 22:47:22 +02:00
|
|
|
|
2006-10-10 23:10:56 +02:00
|
|
|
waitingOnRetry = !success;
|
2006-10-17 22:47:22 +02:00
|
|
|
if (waitingOnRetry) {
|
|
|
|
DPRINTF(CachePort, "%s now waiting on a retry\n", name());
|
|
|
|
}
|
|
|
|
|
|
|
|
cache->sendResult(pkt, mshr, success);
|
|
|
|
|
2006-08-16 21:54:02 +02:00
|
|
|
if (success && cache->doMasterRequest())
|
|
|
|
{
|
2006-10-11 04:50:36 +02:00
|
|
|
DPRINTF(CachePort, "%s has more requests\n", name());
|
2006-08-16 21:54:02 +02:00
|
|
|
//Still more to issue, rerequest in 1 cycle
|
2007-05-14 07:58:06 +02:00
|
|
|
new BaseCache::RequestEvent(this, curTick + 1);
|
2006-08-16 21:54:02 +02:00
|
|
|
}
|
|
|
|
}
|
2006-10-10 23:10:56 +02:00
|
|
|
else
|
2006-08-16 21:54:02 +02:00
|
|
|
{
|
2006-10-13 21:47:05 +02:00
|
|
|
assert(cache->doSlaveRequest());
|
2006-10-09 22:37:02 +02:00
|
|
|
//pkt = cache->getCoherencePacket();
|
|
|
|
//We save the packet, no reordering on CSHRS
|
2006-10-13 21:47:05 +02:00
|
|
|
pkt = cache->getCoherencePacket();
|
|
|
|
MSHR* cshr = (MSHR*)pkt->senderState;
|
2006-08-16 21:54:02 +02:00
|
|
|
bool success = sendTiming(pkt);
|
2006-10-13 21:47:05 +02:00
|
|
|
cache->sendCoherenceResult(pkt, cshr, success);
|
2006-10-10 23:10:56 +02:00
|
|
|
waitingOnRetry = !success;
|
2006-10-13 21:47:05 +02:00
|
|
|
if (success && cache->doSlaveRequest())
|
2006-08-16 21:54:02 +02:00
|
|
|
{
|
2006-10-13 21:47:05 +02:00
|
|
|
DPRINTF(CachePort, "%s has more requests\n", name());
|
|
|
|
//Still more to issue, rerequest in 1 cycle
|
2007-05-14 07:58:06 +02:00
|
|
|
new BaseCache::RequestEvent(this, curTick + 1);
|
2006-08-16 21:54:02 +02:00
|
|
|
}
|
|
|
|
}
|
2006-10-11 04:50:36 +02:00
|
|
|
if (waitingOnRetry) DPRINTF(CachePort, "%s STILL Waiting on retry\n", name());
|
|
|
|
else DPRINTF(CachePort, "%s no longer waiting on retry\n", name());
|
2006-08-16 21:54:02 +02:00
|
|
|
return;
|
|
|
|
}
|
2006-06-28 17:02:14 +02:00
|
|
|
void
|
|
|
|
BaseCache::CachePort::setBlocked()
|
|
|
|
{
|
2006-08-16 21:54:02 +02:00
|
|
|
assert(!blocked);
|
|
|
|
DPRINTF(Cache, "Cache Blocking\n");
|
2006-06-28 17:02:14 +02:00
|
|
|
blocked = true;
|
2006-08-16 21:54:02 +02:00
|
|
|
//Clear the retry flag
|
|
|
|
mustSendRetry = false;
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BaseCache::CachePort::clearBlocked()
|
|
|
|
{
|
2006-08-16 21:54:02 +02:00
|
|
|
assert(blocked);
|
|
|
|
DPRINTF(Cache, "Cache Unblocking\n");
|
|
|
|
blocked = false;
|
2006-08-15 20:24:49 +02:00
|
|
|
if (mustSendRetry)
|
|
|
|
{
|
2006-08-16 21:54:02 +02:00
|
|
|
DPRINTF(Cache, "Cache Sending Retry\n");
|
2006-08-15 20:24:49 +02:00
|
|
|
mustSendRetry = false;
|
|
|
|
sendRetry();
|
|
|
|
}
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
2007-05-14 07:58:06 +02:00
|
|
|
BaseCache::RequestEvent::RequestEvent(CachePort *_cachePort, Tick when)
|
|
|
|
: Event(&mainEventQueue, CPU_Tick_Pri), cachePort(_cachePort)
|
2006-07-06 21:15:37 +02:00
|
|
|
{
|
2007-05-14 07:58:06 +02:00
|
|
|
this->setFlags(AutoDelete);
|
|
|
|
schedule(when);
|
2006-07-06 21:15:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-05-14 07:58:06 +02:00
|
|
|
BaseCache::RequestEvent::process()
|
2006-07-06 21:15:37 +02:00
|
|
|
{
|
2007-05-14 07:58:06 +02:00
|
|
|
if (cachePort->waitingOnRetry) return;
|
|
|
|
//We have some responses to drain first
|
|
|
|
if (!cachePort->drainList.empty()) {
|
|
|
|
DPRINTF(CachePort, "%s trying to drain a response\n", cachePort->name());
|
|
|
|
if (cachePort->sendTiming(cachePort->drainList.front())) {
|
|
|
|
DPRINTF(CachePort, "%s drains a response succesfully\n", cachePort->name());
|
|
|
|
cachePort->drainList.pop_front();
|
|
|
|
if (!cachePort->drainList.empty() ||
|
|
|
|
!cachePort->isCpuSide && cachePort->cache->doMasterRequest() ||
|
|
|
|
cachePort->isCpuSide && cachePort->cache->doSlaveRequest()) {
|
|
|
|
|
|
|
|
DPRINTF(CachePort, "%s still has outstanding bus reqs\n", cachePort->name());
|
|
|
|
this->schedule(curTick + 1);
|
2006-10-10 23:10:56 +02:00
|
|
|
}
|
|
|
|
}
|
2007-05-14 07:58:06 +02:00
|
|
|
else {
|
|
|
|
cachePort->waitingOnRetry = true;
|
|
|
|
DPRINTF(CachePort, "%s now waiting on a retry\n", cachePort->name());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!cachePort->isCpuSide)
|
|
|
|
{ //MSHR
|
|
|
|
DPRINTF(CachePort, "%s trying to send a MSHR request\n", cachePort->name());
|
|
|
|
if (!cachePort->cache->doMasterRequest()) {
|
|
|
|
//This can happen if I am the owner of a block and see an upgrade
|
|
|
|
//while the block was in my WB Buffers. I just remove the
|
|
|
|
//wb and de-assert the masterRequest
|
|
|
|
return;
|
|
|
|
}
|
2006-10-11 06:13:53 +02:00
|
|
|
|
2007-05-14 08:09:10 +02:00
|
|
|
PacketPtr pkt = cachePort->cache->getPacket();
|
2007-05-14 07:58:06 +02:00
|
|
|
MSHR* mshr = (MSHR*) pkt->senderState;
|
|
|
|
//Copy the packet, it may be modified/destroyed elsewhere
|
|
|
|
PacketPtr copyPkt = new Packet(*pkt);
|
|
|
|
copyPkt->dataStatic<uint8_t>(pkt->getPtr<uint8_t>());
|
|
|
|
mshr->pkt = copyPkt;
|
2006-10-17 21:05:21 +02:00
|
|
|
|
2007-05-14 07:58:06 +02:00
|
|
|
bool success = cachePort->sendTiming(pkt);
|
|
|
|
DPRINTF(Cache, "Address %x was %s in sending the timing request\n",
|
|
|
|
pkt->getAddr(), success ? "succesful" : "unsuccesful");
|
2006-10-17 22:47:22 +02:00
|
|
|
|
2007-05-14 07:58:06 +02:00
|
|
|
cachePort->waitingOnRetry = !success;
|
|
|
|
if (cachePort->waitingOnRetry) {
|
|
|
|
DPRINTF(CachePort, "%s now waiting on a retry\n", cachePort->name());
|
|
|
|
}
|
2006-10-17 22:47:22 +02:00
|
|
|
|
2007-05-14 07:58:06 +02:00
|
|
|
cachePort->cache->sendResult(pkt, mshr, success);
|
|
|
|
if (success && cachePort->cache->doMasterRequest())
|
|
|
|
{
|
|
|
|
DPRINTF(CachePort, "%s still more MSHR requests to send\n",
|
|
|
|
cachePort->name());
|
|
|
|
//Still more to issue, rerequest in 1 cycle
|
|
|
|
this->schedule(curTick+1);
|
2006-07-10 23:16:15 +02:00
|
|
|
}
|
2007-05-14 07:58:06 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//CSHR
|
|
|
|
assert(cachePort->cache->doSlaveRequest());
|
2007-05-14 08:09:10 +02:00
|
|
|
PacketPtr pkt = cachePort->cache->getCoherencePacket();
|
2007-05-14 07:58:06 +02:00
|
|
|
MSHR* cshr = (MSHR*) pkt->senderState;
|
|
|
|
bool success = cachePort->sendTiming(pkt);
|
|
|
|
cachePort->cache->sendCoherenceResult(pkt, cshr, success);
|
|
|
|
cachePort->waitingOnRetry = !success;
|
|
|
|
if (cachePort->waitingOnRetry)
|
|
|
|
DPRINTF(CachePort, "%s now waiting on a retry\n", cachePort->name());
|
|
|
|
if (success && cachePort->cache->doSlaveRequest())
|
2006-07-10 23:16:15 +02:00
|
|
|
{
|
2007-05-14 07:58:06 +02:00
|
|
|
DPRINTF(CachePort, "%s still more CSHR requests to send\n",
|
|
|
|
cachePort->name());
|
|
|
|
//Still more to issue, rerequest in 1 cycle
|
|
|
|
this->schedule(curTick+1);
|
2006-07-10 23:16:15 +02:00
|
|
|
}
|
2006-07-06 21:15:37 +02:00
|
|
|
}
|
2007-05-14 07:58:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
BaseCache::RequestEvent::description()
|
|
|
|
{
|
|
|
|
return "Cache request event";
|
|
|
|
}
|
|
|
|
|
|
|
|
BaseCache::ResponseEvent::ResponseEvent(CachePort *_cachePort)
|
|
|
|
: Event(&mainEventQueue, CPU_Tick_Pri), cachePort(_cachePort)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
BaseCache::ResponseEvent::process()
|
|
|
|
{
|
2006-11-11 04:45:50 +01:00
|
|
|
assert(cachePort->transmitList.size());
|
|
|
|
assert(cachePort->transmitList.front().first <= curTick);
|
2007-05-14 08:09:10 +02:00
|
|
|
PacketPtr pkt = cachePort->transmitList.front().second;
|
2006-11-11 04:45:50 +01:00
|
|
|
cachePort->transmitList.pop_front();
|
|
|
|
if (!cachePort->transmitList.empty()) {
|
|
|
|
Tick time = cachePort->transmitList.front().first;
|
|
|
|
schedule(time <= curTick ? curTick+1 : time);
|
|
|
|
}
|
|
|
|
|
2006-10-10 00:52:20 +02:00
|
|
|
if (pkt->flags & NACKED_LINE)
|
|
|
|
pkt->result = Packet::Nacked;
|
|
|
|
else
|
|
|
|
pkt->result = Packet::Success;
|
2006-10-06 03:10:03 +02:00
|
|
|
pkt->makeTimingResponse();
|
2006-10-11 04:50:36 +02:00
|
|
|
DPRINTF(CachePort, "%s attempting to send a response\n", cachePort->name());
|
2006-10-11 05:53:10 +02:00
|
|
|
if (!cachePort->drainList.empty() || cachePort->waitingOnRetry) {
|
2006-10-10 23:10:56 +02:00
|
|
|
//Already have a list, just append
|
2006-10-07 18:20:29 +02:00
|
|
|
cachePort->drainList.push_back(pkt);
|
2006-10-11 04:50:36 +02:00
|
|
|
DPRINTF(CachePort, "%s appending response onto drain list\n", cachePort->name());
|
2006-10-07 18:20:29 +02:00
|
|
|
}
|
|
|
|
else if (!cachePort->sendTiming(pkt)) {
|
2006-10-07 18:02:59 +02:00
|
|
|
//It failed, save it to list of drain events
|
2006-10-11 04:50:36 +02:00
|
|
|
DPRINTF(CachePort, "%s now waiting for a retry\n", cachePort->name());
|
2006-10-07 18:02:59 +02:00
|
|
|
cachePort->drainList.push_back(pkt);
|
2006-10-10 23:10:56 +02:00
|
|
|
cachePort->waitingOnRetry = true;
|
2006-10-07 18:02:59 +02:00
|
|
|
}
|
2006-11-07 20:25:54 +01:00
|
|
|
|
|
|
|
// Check if we're done draining once this list is empty
|
2006-11-11 04:45:50 +01:00
|
|
|
if (cachePort->drainList.empty() && cachePort->transmitList.empty())
|
2006-11-07 20:25:54 +01:00
|
|
|
cachePort->cache->checkDrain();
|
2006-07-06 21:15:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
2007-05-14 07:58:06 +02:00
|
|
|
BaseCache::ResponseEvent::description()
|
2006-07-06 21:15:37 +02:00
|
|
|
{
|
2007-05-14 07:58:06 +02:00
|
|
|
return "Cache response event";
|
2006-07-06 21:15:37 +02:00
|
|
|
}
|
|
|
|
|
2006-07-07 22:02:22 +02:00
|
|
|
void
|
|
|
|
BaseCache::init()
|
|
|
|
{
|
|
|
|
if (!cpuSidePort || !memSidePort)
|
|
|
|
panic("Cache not hooked up on both sides\n");
|
|
|
|
cpuSidePort->sendStatusChange(Port::RangeChange);
|
|
|
|
}
|
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
void
|
|
|
|
BaseCache::regStats()
|
|
|
|
{
|
|
|
|
using namespace Stats;
|
|
|
|
|
|
|
|
// Hit statistics
|
2007-02-07 19:53:37 +01:00
|
|
|
for (int access_idx = 0; access_idx < MemCmd::NUM_MEM_CMDS; ++access_idx) {
|
|
|
|
MemCmd cmd(access_idx);
|
|
|
|
const string &cstr = cmd.toString();
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
hits[access_idx]
|
|
|
|
.init(maxThreadsPerCPU)
|
|
|
|
.name(name() + "." + cstr + "_hits")
|
|
|
|
.desc("number of " + cstr + " hits")
|
|
|
|
.flags(total | nozero | nonan)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
demandHits
|
|
|
|
.name(name() + ".demand_hits")
|
|
|
|
.desc("number of demand (read+write) hits")
|
|
|
|
.flags(total)
|
|
|
|
;
|
2007-02-07 19:53:37 +01:00
|
|
|
demandHits = hits[MemCmd::ReadReq] + hits[MemCmd::WriteReq];
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
overallHits
|
|
|
|
.name(name() + ".overall_hits")
|
|
|
|
.desc("number of overall hits")
|
|
|
|
.flags(total)
|
|
|
|
;
|
2007-02-07 19:53:37 +01:00
|
|
|
overallHits = demandHits + hits[MemCmd::SoftPFReq] + hits[MemCmd::HardPFReq]
|
|
|
|
+ hits[MemCmd::Writeback];
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
// Miss statistics
|
2007-02-07 19:53:37 +01:00
|
|
|
for (int access_idx = 0; access_idx < MemCmd::NUM_MEM_CMDS; ++access_idx) {
|
|
|
|
MemCmd cmd(access_idx);
|
|
|
|
const string &cstr = cmd.toString();
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
misses[access_idx]
|
|
|
|
.init(maxThreadsPerCPU)
|
|
|
|
.name(name() + "." + cstr + "_misses")
|
|
|
|
.desc("number of " + cstr + " misses")
|
|
|
|
.flags(total | nozero | nonan)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
demandMisses
|
|
|
|
.name(name() + ".demand_misses")
|
|
|
|
.desc("number of demand (read+write) misses")
|
|
|
|
.flags(total)
|
|
|
|
;
|
2007-02-07 19:53:37 +01:00
|
|
|
demandMisses = misses[MemCmd::ReadReq] + misses[MemCmd::WriteReq];
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
overallMisses
|
|
|
|
.name(name() + ".overall_misses")
|
|
|
|
.desc("number of overall misses")
|
|
|
|
.flags(total)
|
|
|
|
;
|
2007-02-07 19:53:37 +01:00
|
|
|
overallMisses = demandMisses + misses[MemCmd::SoftPFReq] +
|
|
|
|
misses[MemCmd::HardPFReq] + misses[MemCmd::Writeback];
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
// Miss latency statistics
|
2007-02-07 19:53:37 +01:00
|
|
|
for (int access_idx = 0; access_idx < MemCmd::NUM_MEM_CMDS; ++access_idx) {
|
|
|
|
MemCmd cmd(access_idx);
|
|
|
|
const string &cstr = cmd.toString();
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
missLatency[access_idx]
|
|
|
|
.init(maxThreadsPerCPU)
|
|
|
|
.name(name() + "." + cstr + "_miss_latency")
|
|
|
|
.desc("number of " + cstr + " miss cycles")
|
|
|
|
.flags(total | nozero | nonan)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
demandMissLatency
|
|
|
|
.name(name() + ".demand_miss_latency")
|
|
|
|
.desc("number of demand (read+write) miss cycles")
|
|
|
|
.flags(total)
|
|
|
|
;
|
2007-02-07 19:53:37 +01:00
|
|
|
demandMissLatency = missLatency[MemCmd::ReadReq] + missLatency[MemCmd::WriteReq];
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
overallMissLatency
|
|
|
|
.name(name() + ".overall_miss_latency")
|
|
|
|
.desc("number of overall miss cycles")
|
|
|
|
.flags(total)
|
|
|
|
;
|
2007-02-07 19:53:37 +01:00
|
|
|
overallMissLatency = demandMissLatency + missLatency[MemCmd::SoftPFReq] +
|
|
|
|
missLatency[MemCmd::HardPFReq];
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
// access formulas
|
2007-02-07 19:53:37 +01:00
|
|
|
for (int access_idx = 0; access_idx < MemCmd::NUM_MEM_CMDS; ++access_idx) {
|
|
|
|
MemCmd cmd(access_idx);
|
|
|
|
const string &cstr = cmd.toString();
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
accesses[access_idx]
|
|
|
|
.name(name() + "." + cstr + "_accesses")
|
|
|
|
.desc("number of " + cstr + " accesses(hits+misses)")
|
|
|
|
.flags(total | nozero | nonan)
|
|
|
|
;
|
|
|
|
|
|
|
|
accesses[access_idx] = hits[access_idx] + misses[access_idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
demandAccesses
|
|
|
|
.name(name() + ".demand_accesses")
|
|
|
|
.desc("number of demand (read+write) accesses")
|
|
|
|
.flags(total)
|
|
|
|
;
|
|
|
|
demandAccesses = demandHits + demandMisses;
|
|
|
|
|
|
|
|
overallAccesses
|
|
|
|
.name(name() + ".overall_accesses")
|
|
|
|
.desc("number of overall (read+write) accesses")
|
|
|
|
.flags(total)
|
|
|
|
;
|
|
|
|
overallAccesses = overallHits + overallMisses;
|
|
|
|
|
|
|
|
// miss rate formulas
|
2007-02-07 19:53:37 +01:00
|
|
|
for (int access_idx = 0; access_idx < MemCmd::NUM_MEM_CMDS; ++access_idx) {
|
|
|
|
MemCmd cmd(access_idx);
|
|
|
|
const string &cstr = cmd.toString();
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
missRate[access_idx]
|
|
|
|
.name(name() + "." + cstr + "_miss_rate")
|
|
|
|
.desc("miss rate for " + cstr + " accesses")
|
|
|
|
.flags(total | nozero | nonan)
|
|
|
|
;
|
|
|
|
|
|
|
|
missRate[access_idx] = misses[access_idx] / accesses[access_idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
demandMissRate
|
|
|
|
.name(name() + ".demand_miss_rate")
|
|
|
|
.desc("miss rate for demand accesses")
|
|
|
|
.flags(total)
|
|
|
|
;
|
|
|
|
demandMissRate = demandMisses / demandAccesses;
|
|
|
|
|
|
|
|
overallMissRate
|
|
|
|
.name(name() + ".overall_miss_rate")
|
|
|
|
.desc("miss rate for overall accesses")
|
|
|
|
.flags(total)
|
|
|
|
;
|
|
|
|
overallMissRate = overallMisses / overallAccesses;
|
|
|
|
|
|
|
|
// miss latency formulas
|
2007-02-07 19:53:37 +01:00
|
|
|
for (int access_idx = 0; access_idx < MemCmd::NUM_MEM_CMDS; ++access_idx) {
|
|
|
|
MemCmd cmd(access_idx);
|
|
|
|
const string &cstr = cmd.toString();
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
avgMissLatency[access_idx]
|
|
|
|
.name(name() + "." + cstr + "_avg_miss_latency")
|
|
|
|
.desc("average " + cstr + " miss latency")
|
|
|
|
.flags(total | nozero | nonan)
|
|
|
|
;
|
|
|
|
|
|
|
|
avgMissLatency[access_idx] =
|
|
|
|
missLatency[access_idx] / misses[access_idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
demandAvgMissLatency
|
|
|
|
.name(name() + ".demand_avg_miss_latency")
|
|
|
|
.desc("average overall miss latency")
|
|
|
|
.flags(total)
|
|
|
|
;
|
|
|
|
demandAvgMissLatency = demandMissLatency / demandMisses;
|
|
|
|
|
|
|
|
overallAvgMissLatency
|
|
|
|
.name(name() + ".overall_avg_miss_latency")
|
|
|
|
.desc("average overall miss latency")
|
|
|
|
.flags(total)
|
|
|
|
;
|
|
|
|
overallAvgMissLatency = overallMissLatency / overallMisses;
|
|
|
|
|
|
|
|
blocked_cycles.init(NUM_BLOCKED_CAUSES);
|
|
|
|
blocked_cycles
|
|
|
|
.name(name() + ".blocked_cycles")
|
|
|
|
.desc("number of cycles access was blocked")
|
|
|
|
.subname(Blocked_NoMSHRs, "no_mshrs")
|
|
|
|
.subname(Blocked_NoTargets, "no_targets")
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
blocked_causes.init(NUM_BLOCKED_CAUSES);
|
|
|
|
blocked_causes
|
|
|
|
.name(name() + ".blocked")
|
|
|
|
.desc("number of cycles access was blocked")
|
|
|
|
.subname(Blocked_NoMSHRs, "no_mshrs")
|
|
|
|
.subname(Blocked_NoTargets, "no_targets")
|
|
|
|
;
|
|
|
|
|
|
|
|
avg_blocked
|
|
|
|
.name(name() + ".avg_blocked_cycles")
|
|
|
|
.desc("average number of cycles each access was blocked")
|
|
|
|
.subname(Blocked_NoMSHRs, "no_mshrs")
|
|
|
|
.subname(Blocked_NoTargets, "no_targets")
|
|
|
|
;
|
|
|
|
|
|
|
|
avg_blocked = blocked_cycles / blocked_causes;
|
|
|
|
|
|
|
|
fastWrites
|
|
|
|
.name(name() + ".fast_writes")
|
|
|
|
.desc("number of fast writes performed")
|
|
|
|
;
|
|
|
|
|
|
|
|
cacheCopies
|
|
|
|
.name(name() + ".cache_copies")
|
|
|
|
.desc("number of cache copies performed")
|
|
|
|
;
|
2006-06-30 22:25:35 +02:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
2006-11-07 20:25:54 +01:00
|
|
|
|
|
|
|
unsigned int
|
|
|
|
BaseCache::drain(Event *de)
|
|
|
|
{
|
|
|
|
// Set status
|
|
|
|
if (!canDrain()) {
|
|
|
|
drainEvent = de;
|
|
|
|
|
|
|
|
changeState(SimObject::Draining);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
changeState(SimObject::Drained);
|
|
|
|
return 0;
|
|
|
|
}
|