2006-06-28 17:02:14 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2002-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
|
|
|
|
* Dave Greene
|
|
|
|
* Nathan Binkert
|
2007-05-19 07:35:04 +02:00
|
|
|
* Steve Reinhardt
|
|
|
|
* Ron Dreslinski
|
2006-06-28 17:02:14 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Cache definitions.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sim/host.hh"
|
|
|
|
#include "base/misc.hh"
|
|
|
|
|
|
|
|
#include "mem/cache/cache.hh"
|
|
|
|
#include "mem/cache/cache_blk.hh"
|
|
|
|
#include "mem/cache/miss/mshr.hh"
|
2006-12-19 06:53:06 +01:00
|
|
|
#include "mem/cache/prefetch/base_prefetcher.hh"
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2006-10-06 07:27:02 +02:00
|
|
|
#include "sim/sim_exit.hh" // for SimExitEvent
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2006-11-12 15:06:15 +01:00
|
|
|
|
2006-12-04 18:10:53 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2007-05-19 07:35:04 +02:00
|
|
|
Cache<TagStore,Coherence>::Cache(const std::string &_name,
|
|
|
|
Cache<TagStore,Coherence>::Params ¶ms)
|
2006-06-28 23:28:33 +02:00
|
|
|
: BaseCache(_name, params.baseParams),
|
2006-06-28 17:02:14 +02:00
|
|
|
prefetchAccess(params.prefetchAccess),
|
2007-06-18 02:27:53 +02:00
|
|
|
tags(params.tags),
|
2006-06-28 17:02:14 +02:00
|
|
|
coherence(params.coherence), prefetcher(params.prefetcher),
|
2006-12-19 05:47:12 +01:00
|
|
|
doFastWrites(params.doFastWrites),
|
2007-06-18 02:27:53 +02:00
|
|
|
prefetchMiss(params.prefetchMiss)
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2007-05-19 07:35:04 +02:00
|
|
|
cpuSidePort = new CpuSidePort(_name + "-cpu_side_port", this);
|
|
|
|
memSidePort = new MemSidePort(_name + "-mem_side_port", this);
|
|
|
|
cpuSidePort->setOtherPort(memSidePort);
|
|
|
|
memSidePort->setOtherPort(cpuSidePort);
|
|
|
|
|
2006-10-12 20:21:25 +02:00
|
|
|
tags->setCache(this);
|
2006-06-28 17:02:14 +02:00
|
|
|
coherence->setCache(this);
|
|
|
|
prefetcher->setCache(this);
|
|
|
|
}
|
|
|
|
|
2006-12-04 18:10:53 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2006-06-28 17:02:14 +02:00
|
|
|
void
|
2006-12-04 18:10:53 +01:00
|
|
|
Cache<TagStore,Coherence>::regStats()
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
|
|
|
BaseCache::regStats();
|
|
|
|
tags->regStats(name());
|
|
|
|
coherence->regStats(name());
|
|
|
|
prefetcher->regStats(name());
|
|
|
|
}
|
|
|
|
|
2006-12-19 05:47:12 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2007-06-18 02:27:53 +02:00
|
|
|
Port *
|
|
|
|
Cache<TagStore,Coherence>::getPort(const std::string &if_name, int idx)
|
|
|
|
{
|
|
|
|
if (if_name == "" || if_name == "cpu_side") {
|
|
|
|
return cpuSidePort;
|
|
|
|
} else if (if_name == "mem_side") {
|
|
|
|
return memSidePort;
|
|
|
|
} else if (if_name == "functional") {
|
|
|
|
return new CpuSidePort(name() + "-cpu_side_funcport", this);
|
|
|
|
} else {
|
|
|
|
panic("Port name %s unrecognized\n", if_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
|
|
|
Cache<TagStore,Coherence>::deletePortRefs(Port *p)
|
|
|
|
{
|
|
|
|
if (cpuSidePort == p || memSidePort == p)
|
|
|
|
panic("Can only delete functional ports\n");
|
|
|
|
|
|
|
|
delete p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
|
|
|
Cache<TagStore,Coherence>::cmpAndSwap(BlkType *blk, PacketPtr pkt)
|
2006-12-19 05:47:12 +01:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
uint64_t overwrite_val;
|
|
|
|
bool overwrite_mem;
|
|
|
|
uint64_t condition_val64;
|
|
|
|
uint32_t condition_val32;
|
|
|
|
|
2006-12-19 05:47:12 +01:00
|
|
|
int offset = tags->extractBlkOffset(pkt->getAddr());
|
2007-06-18 02:27:53 +02:00
|
|
|
uint8_t *blk_data = blk->data + offset;
|
|
|
|
|
|
|
|
assert(sizeof(uint64_t) >= pkt->getSize());
|
|
|
|
|
|
|
|
overwrite_mem = true;
|
|
|
|
// keep a copy of our possible write value, and copy what is at the
|
|
|
|
// memory address into the packet
|
|
|
|
pkt->writeData((uint8_t *)&overwrite_val);
|
|
|
|
pkt->setData(blk_data);
|
|
|
|
|
|
|
|
if (pkt->req->isCondSwap()) {
|
|
|
|
if (pkt->getSize() == sizeof(uint64_t)) {
|
|
|
|
condition_val64 = pkt->req->getExtraData();
|
|
|
|
overwrite_mem = !std::memcmp(&condition_val64, blk_data,
|
|
|
|
sizeof(uint64_t));
|
|
|
|
} else if (pkt->getSize() == sizeof(uint32_t)) {
|
|
|
|
condition_val32 = (uint32_t)pkt->req->getExtraData();
|
|
|
|
overwrite_mem = !std::memcmp(&condition_val32, blk_data,
|
|
|
|
sizeof(uint32_t));
|
|
|
|
} else
|
|
|
|
panic("Invalid size for conditional read/write\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (overwrite_mem)
|
|
|
|
std::memcpy(blk_data, &overwrite_val, pkt->getSize());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// MSHR helper functions
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
|
|
|
Cache<TagStore,Coherence>::markInService(MSHR *mshr)
|
|
|
|
{
|
2007-06-21 20:59:17 +02:00
|
|
|
markInServiceInternal(mshr);
|
2007-06-18 02:27:53 +02:00
|
|
|
#if 0
|
|
|
|
if (mshr->originalCmd == MemCmd::HardPFReq) {
|
|
|
|
DPRINTF(HWPrefetch, "%s:Marking a HW_PF in service\n",
|
|
|
|
name());
|
|
|
|
//Also clear pending if need be
|
|
|
|
if (!prefetcher->havePending())
|
|
|
|
{
|
|
|
|
deassertMemSideBusRequest(Request_PF);
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
|
|
|
Cache<TagStore,Coherence>::squash(int threadNum)
|
|
|
|
{
|
|
|
|
bool unblock = false;
|
|
|
|
BlockedCause cause = NUM_BLOCKED_CAUSES;
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (noTargetMSHR && noTargetMSHR->threadNum == threadNum) {
|
|
|
|
noTargetMSHR = NULL;
|
|
|
|
unblock = true;
|
|
|
|
cause = Blocked_NoTargets;
|
|
|
|
}
|
|
|
|
if (mshrQueue.isFull()) {
|
|
|
|
unblock = true;
|
|
|
|
cause = Blocked_NoMSHRs;
|
|
|
|
}
|
|
|
|
mshrQueue.squash(threadNum);
|
|
|
|
if (!mshrQueue.havePending()) {
|
|
|
|
deassertMemSideBusRequest(Request_MSHR);
|
|
|
|
}
|
|
|
|
if (unblock && !mshrQueue.isFull()) {
|
|
|
|
clearBlocked(cause);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Access path: requests coming in from the CPU side
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
bool
|
2007-06-21 20:59:17 +02:00
|
|
|
Cache<TagStore,Coherence>::access(PacketPtr pkt, BlkType *&blk, int &lat)
|
2007-06-18 02:27:53 +02:00
|
|
|
{
|
2007-06-21 20:59:17 +02:00
|
|
|
if (pkt->req->isUncacheable()) {
|
|
|
|
blk = NULL;
|
|
|
|
lat = hitLatency;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
bool satisfied = false; // assume the worst
|
2007-06-21 20:59:17 +02:00
|
|
|
blk = tags->findBlock(pkt->getAddr(), lat);
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
if (prefetchAccess) {
|
|
|
|
//We are determining prefetches on access stream, call prefetcher
|
|
|
|
prefetcher->handleMiss(pkt, curTick);
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF(Cache, "%s %x %s\n", pkt->cmdString(), pkt->getAddr(),
|
|
|
|
(blk) ? "hit" : "miss");
|
|
|
|
|
|
|
|
if (blk != NULL) {
|
|
|
|
// HIT
|
2006-12-19 05:47:12 +01:00
|
|
|
if (blk->isPrefetch()) {
|
|
|
|
//Signal that this was a hit under prefetch (no need for
|
|
|
|
//use prefetch (only can get here if true)
|
|
|
|
DPRINTF(HWPrefetch, "Hit a block that was prefetched\n");
|
|
|
|
blk->status &= ~BlkHWPrefetched;
|
|
|
|
if (prefetchMiss) {
|
|
|
|
//If we are using the miss stream, signal the
|
|
|
|
//prefetcher otherwise the access stream would have
|
|
|
|
//already signaled this hit
|
|
|
|
prefetcher->handleMiss(pkt, curTick);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (pkt->needsExclusive() ? blk->isWritable() : blk->isValid()) {
|
|
|
|
// OK to satisfy access
|
|
|
|
hits[pkt->cmdToIndex()][0/*pkt->req->getThreadNum()*/]++;
|
|
|
|
satisfied = true;
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
// Check RMW operations first since both isRead() and
|
|
|
|
// isWrite() will be true for them
|
2007-06-18 02:27:53 +02:00
|
|
|
if (pkt->cmd == MemCmd::SwapReq) {
|
|
|
|
cmpAndSwap(blk, pkt);
|
|
|
|
} else if (pkt->isWrite()) {
|
|
|
|
if (blk->checkWrite(pkt)) {
|
2006-12-19 05:47:12 +01:00
|
|
|
blk->status |= BlkDirty;
|
2007-06-18 02:27:53 +02:00
|
|
|
pkt->writeDataToBlock(blk->data, blkSize);
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
2007-06-21 20:59:17 +02:00
|
|
|
} else if (pkt->isRead()) {
|
2007-06-18 02:27:53 +02:00
|
|
|
if (pkt->isLocked()) {
|
|
|
|
blk->trackLoadLocked(pkt);
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
pkt->setDataFromBlock(blk->data, blkSize);
|
2007-06-21 20:59:17 +02:00
|
|
|
} else {
|
|
|
|
// Not a read or write... must be an upgrade. it's OK
|
|
|
|
// to just ack those as long as we have an exclusive
|
|
|
|
// copy at this level.
|
|
|
|
assert(pkt->cmd == MemCmd::UpgradeReq);
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
} else {
|
2007-06-18 02:27:53 +02:00
|
|
|
// permission violation... nothing to do here, leave unsatisfied
|
|
|
|
// for statistics purposes this counts like a complete miss
|
|
|
|
incMissCount(pkt);
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// complete miss (no matching block)
|
2007-06-18 02:27:53 +02:00
|
|
|
incMissCount(pkt);
|
|
|
|
|
|
|
|
if (pkt->isLocked() && pkt->isWrite()) {
|
2006-12-19 05:47:12 +01:00
|
|
|
// miss on store conditional... just give up now
|
2007-02-12 19:06:30 +01:00
|
|
|
pkt->req->setExtraData(0);
|
2007-06-18 02:27:53 +02:00
|
|
|
satisfied = true;
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
return satisfied;
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
|
2007-03-28 00:05:25 +02:00
|
|
|
|
2006-12-19 05:47:12 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2007-06-18 02:27:53 +02:00
|
|
|
bool
|
|
|
|
Cache<TagStore,Coherence>::timingAccess(PacketPtr pkt)
|
2006-12-19 05:47:12 +01:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
//@todo Add back in MemDebug Calls
|
|
|
|
// MemDebug::cacheAccess(pkt);
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// we charge hitLatency for doing just about anything here
|
|
|
|
Tick time = curTick + hitLatency;
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
if (pkt->memInhibitAsserted()) {
|
|
|
|
DPRINTF(Cache, "mem inhibited on 0x%x: not responding\n",
|
|
|
|
pkt->getAddr());
|
|
|
|
assert(!pkt->req->isUncacheable());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (pkt->req->isUncacheable()) {
|
2007-06-21 20:59:17 +02:00
|
|
|
allocateBuffer(pkt, time, true);
|
2007-06-18 02:27:53 +02:00
|
|
|
assert(pkt->needsResponse()); // else we should delete it here??
|
|
|
|
return true;
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
PacketList writebacks;
|
|
|
|
int lat = hitLatency;
|
|
|
|
bool satisfied = false;
|
|
|
|
|
|
|
|
Addr blk_addr = pkt->getAddr() & ~(Addr(blkSize-1));
|
|
|
|
MSHR *mshr = mshrQueue.findMatch(blk_addr);
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (!mshr) {
|
|
|
|
// no outstanding access to this block, look up in cache
|
|
|
|
// (otherwise if we allow reads while there's an outstanding
|
|
|
|
// write miss, the read could return stale data out of the
|
|
|
|
// cache block... a more aggressive system could detect the
|
|
|
|
// overlap (if any) and forward data out of the MSHRs, but we
|
|
|
|
// don't do that yet)
|
2007-06-21 20:59:17 +02:00
|
|
|
BlkType *blk = NULL;
|
2007-06-18 02:27:53 +02:00
|
|
|
satisfied = access(pkt, blk, lat);
|
|
|
|
}
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
#if 0
|
|
|
|
// If this is a block size write/hint (WH64) allocate the block here
|
|
|
|
// if the coherence protocol allows it.
|
|
|
|
/** @todo make the fast write alloc (wh64) work with coherence. */
|
|
|
|
/** @todo Do we want to do fast writes for writebacks as well? */
|
|
|
|
if (!blk && pkt->getSize() >= blkSize && coherence->allowFastWrites() &&
|
|
|
|
(pkt->cmd == MemCmd::WriteReq
|
|
|
|
|| pkt->cmd == MemCmd::WriteInvalidateReq) ) {
|
|
|
|
// not outstanding misses, can do this
|
|
|
|
MSHR *outstanding_miss = mshrQueue.findMatch(pkt->getAddr());
|
|
|
|
if (pkt->cmd == MemCmd::WriteInvalidateReq || !outstanding_miss) {
|
|
|
|
if (outstanding_miss) {
|
|
|
|
warn("WriteInv doing a fastallocate"
|
|
|
|
"with an outstanding miss to the same address\n");
|
|
|
|
}
|
|
|
|
blk = handleFill(NULL, pkt, BlkValid | BlkWritable,
|
|
|
|
writebacks);
|
|
|
|
++fastWrites;
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
}
|
|
|
|
#endif
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// copy writebacks to write buffer
|
|
|
|
while (!writebacks.empty()) {
|
|
|
|
PacketPtr wbPkt = writebacks.front();
|
2007-06-21 20:59:17 +02:00
|
|
|
allocateBuffer(wbPkt, time, true);
|
2007-06-18 02:27:53 +02:00
|
|
|
writebacks.pop_front();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool needsResponse = pkt->needsResponse();
|
|
|
|
|
|
|
|
if (satisfied) {
|
|
|
|
assert(needsResponse);
|
|
|
|
pkt->makeTimingResponse();
|
|
|
|
cpuSidePort->respond(pkt, curTick+lat);
|
|
|
|
} else {
|
|
|
|
// miss
|
|
|
|
if (prefetchMiss)
|
|
|
|
prefetcher->handleMiss(pkt, time);
|
|
|
|
|
|
|
|
if (mshr) {
|
|
|
|
// MSHR hit
|
|
|
|
//@todo remove hw_pf here
|
|
|
|
mshr_hits[pkt->cmdToIndex()][0/*pkt->req->getThreadNum()*/]++;
|
|
|
|
if (mshr->threadNum != 0/*pkt->req->getThreadNum()*/) {
|
|
|
|
mshr->threadNum = -1;
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
mshr->allocateTarget(pkt, true);
|
|
|
|
if (mshr->getNumTargets() == numTarget) {
|
|
|
|
noTargetMSHR = mshr;
|
|
|
|
setBlocked(Blocked_NoTargets);
|
|
|
|
mshrQueue.moveToFront(mshr);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// no MSHR
|
|
|
|
mshr_misses[pkt->cmdToIndex()][0/*pkt->req->getThreadNum()*/]++;
|
|
|
|
// always mark as cache fill for now... if we implement
|
|
|
|
// no-write-allocate or bypass accesses this will have to
|
|
|
|
// be changed.
|
2007-06-21 20:59:17 +02:00
|
|
|
allocateMissBuffer(pkt, time, true);
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (!needsResponse) {
|
|
|
|
// Need to clean up the packet on a writeback miss, but leave
|
|
|
|
// the request for the next level.
|
|
|
|
delete pkt;
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
return true;
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
PacketPtr
|
|
|
|
Cache<TagStore,Coherence>::getBusPacket(PacketPtr cpu_pkt, BlkType *blk,
|
|
|
|
bool needsExclusive)
|
|
|
|
{
|
|
|
|
bool blkValid = blk && blk->isValid();
|
|
|
|
|
|
|
|
if (cpu_pkt->req->isUncacheable()) {
|
|
|
|
assert(blk == NULL);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!blkValid &&
|
|
|
|
(cpu_pkt->cmd == MemCmd::Writeback ||
|
|
|
|
cpu_pkt->cmd == MemCmd::UpgradeReq)) {
|
|
|
|
// For now, writebacks from upper-level caches that
|
|
|
|
// completely miss in the cache just go through. If we had
|
|
|
|
// "fast write" support (where we could write the whole
|
|
|
|
// block w/o fetching new data) we might want to allocate
|
|
|
|
// on writeback misses instead.
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-06-22 18:24:07 +02:00
|
|
|
assert(cpu_pkt->needsResponse());
|
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
MemCmd cmd;
|
|
|
|
const bool useUpgrades = true;
|
|
|
|
if (blkValid && useUpgrades) {
|
|
|
|
// only reason to be here is that blk is shared
|
|
|
|
// (read-only) and we need exclusive
|
|
|
|
assert(needsExclusive && !blk->isWritable());
|
|
|
|
cmd = MemCmd::UpgradeReq;
|
|
|
|
} else {
|
|
|
|
// block is invalid
|
|
|
|
cmd = needsExclusive ? MemCmd::ReadExReq : MemCmd::ReadReq;
|
|
|
|
}
|
|
|
|
PacketPtr pkt = new Packet(cpu_pkt->req, cmd, Packet::Broadcast, blkSize);
|
|
|
|
|
|
|
|
pkt->allocate();
|
|
|
|
return pkt;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-19 05:47:12 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2007-06-18 02:27:53 +02:00
|
|
|
Tick
|
|
|
|
Cache<TagStore,Coherence>::atomicAccess(PacketPtr pkt)
|
2006-12-19 05:47:12 +01:00
|
|
|
{
|
2007-06-21 20:59:17 +02:00
|
|
|
int lat = hitLatency;
|
|
|
|
|
|
|
|
if (pkt->memInhibitAsserted()) {
|
|
|
|
DPRINTF(Cache, "mem inhibited on 0x%x: not responding\n",
|
|
|
|
pkt->getAddr());
|
|
|
|
assert(!pkt->req->isUncacheable());
|
|
|
|
return lat;
|
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// should assert here that there are no outstanding MSHRs or
|
|
|
|
// writebacks... that would mean that someone used an atomic
|
|
|
|
// access in timing mode
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
BlkType *blk = NULL;
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
if (!access(pkt, blk, lat)) {
|
2007-06-18 02:27:53 +02:00
|
|
|
// MISS
|
2007-06-21 20:59:17 +02:00
|
|
|
PacketPtr busPkt = getBusPacket(pkt, blk, pkt->needsExclusive());
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
bool isCacheFill = (busPkt != NULL);
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
if (busPkt == NULL) {
|
|
|
|
// just forwarding the same request to the next level
|
|
|
|
// no local cache operation involved
|
|
|
|
busPkt = pkt;
|
|
|
|
}
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
DPRINTF(Cache, "Sending an atomic %s for %x\n",
|
|
|
|
busPkt->cmdString(), busPkt->getAddr());
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
#if TRACING_ON
|
|
|
|
CacheBlk::State old_state = blk ? blk->status : 0;
|
|
|
|
#endif
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
lat += memSidePort->sendAtomic(busPkt);
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
DPRINTF(Cache, "Receive response: %s for addr %x in state %i\n",
|
|
|
|
busPkt->cmdString(), busPkt->getAddr(), old_state);
|
|
|
|
|
|
|
|
if (isCacheFill) {
|
|
|
|
PacketList writebacks;
|
|
|
|
blk = handleFill(busPkt, blk, writebacks);
|
|
|
|
bool status = satisfyCpuSideRequest(pkt, blk);
|
|
|
|
assert(status);
|
|
|
|
delete busPkt;
|
|
|
|
|
|
|
|
// Handle writebacks if needed
|
|
|
|
while (!writebacks.empty()){
|
|
|
|
PacketPtr wbPkt = writebacks.front();
|
|
|
|
memSidePort->sendAtomic(wbPkt);
|
|
|
|
writebacks.pop_front();
|
|
|
|
delete wbPkt;
|
|
|
|
}
|
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
}
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
// We now have the block one way or another (hit or completed miss)
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (pkt->needsResponse()) {
|
|
|
|
pkt->makeAtomicResponse();
|
|
|
|
pkt->result = Packet::Success;
|
|
|
|
}
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
return lat;
|
|
|
|
}
|
2006-12-19 05:47:12 +01:00
|
|
|
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
|
|
|
Cache<TagStore,Coherence>::functionalAccess(PacketPtr pkt,
|
|
|
|
CachePort *otherSidePort)
|
|
|
|
{
|
|
|
|
Addr blk_addr = pkt->getAddr() & ~(blkSize - 1);
|
|
|
|
BlkType *blk = tags->findBlock(pkt->getAddr());
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (blk && pkt->checkFunctional(blk_addr, blkSize, blk->data)) {
|
|
|
|
// request satisfied from block
|
|
|
|
return;
|
|
|
|
}
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// Need to check for outstanding misses and writes
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// There can only be one matching outstanding miss.
|
|
|
|
MSHR *mshr = mshrQueue.findMatch(blk_addr);
|
|
|
|
if (mshr) {
|
|
|
|
MSHR::TargetList *targets = mshr->getTargetList();
|
|
|
|
MSHR::TargetList::iterator i = targets->begin();
|
|
|
|
MSHR::TargetList::iterator end = targets->end();
|
|
|
|
for (; i != end; ++i) {
|
|
|
|
PacketPtr targetPkt = i->pkt;
|
|
|
|
if (pkt->checkFunctional(targetPkt))
|
|
|
|
return;
|
2007-05-19 07:35:04 +02:00
|
|
|
}
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// There can be many matching outstanding writes.
|
|
|
|
std::vector<MSHR*> writes;
|
|
|
|
writeBuffer.findMatches(blk_addr, writes);
|
|
|
|
for (int i = 0; i < writes.size(); ++i) {
|
|
|
|
MSHR *mshr = writes[i];
|
|
|
|
if (pkt->checkFunctional(mshr->addr, mshr->size, mshr->writeData))
|
|
|
|
return;
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
otherSidePort->checkAndSendFunctional(pkt);
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Response handling: responses from the memory side
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
|
2006-12-19 05:47:12 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2007-06-21 20:59:17 +02:00
|
|
|
bool
|
|
|
|
Cache<TagStore,Coherence>::satisfyCpuSideRequest(PacketPtr pkt, BlkType *blk)
|
2006-12-19 05:47:12 +01:00
|
|
|
{
|
2007-06-21 20:59:17 +02:00
|
|
|
if (blk && (pkt->needsExclusive() ? blk->isWritable() : blk->isValid())) {
|
|
|
|
assert(pkt->isWrite() || pkt->isReadWrite() || pkt->isRead());
|
|
|
|
assert(pkt->getOffset(blkSize) + pkt->getSize() <= blkSize);
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
if (pkt->isWrite()) {
|
|
|
|
if (blk->checkWrite(pkt)) {
|
|
|
|
blk->status |= BlkDirty;
|
|
|
|
pkt->writeDataToBlock(blk->data, blkSize);
|
2007-06-18 02:27:53 +02:00
|
|
|
}
|
2007-06-21 20:59:17 +02:00
|
|
|
} else if (pkt->isReadWrite()) {
|
|
|
|
cmpAndSwap(blk, pkt);
|
|
|
|
} else {
|
|
|
|
if (pkt->isLocked()) {
|
|
|
|
blk->trackLoadLocked(pkt);
|
|
|
|
}
|
|
|
|
pkt->setDataFromBlock(blk->data, blkSize);
|
2007-06-18 02:27:53 +02:00
|
|
|
}
|
2007-06-21 20:59:17 +02:00
|
|
|
|
|
|
|
return true;
|
2007-06-18 02:27:53 +02:00
|
|
|
} else {
|
2007-06-21 20:59:17 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
bool
|
|
|
|
Cache<TagStore,Coherence>::satisfyTarget(MSHR::Target *target, BlkType *blk)
|
|
|
|
{
|
|
|
|
assert(target != NULL);
|
|
|
|
assert(target->isCpuSide());
|
|
|
|
return satisfyCpuSideRequest(target->pkt, blk);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
bool
|
|
|
|
Cache<TagStore,Coherence>::satisfyMSHR(MSHR *mshr, PacketPtr pkt,
|
|
|
|
BlkType *blk)
|
|
|
|
{
|
|
|
|
// respond to MSHR targets, if any
|
|
|
|
|
|
|
|
// First offset for critical word first calculations
|
|
|
|
int initial_offset = 0;
|
|
|
|
|
|
|
|
if (mshr->hasTargets()) {
|
|
|
|
initial_offset = mshr->getTarget()->pkt->getOffset(blkSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
while (mshr->hasTargets()) {
|
|
|
|
MSHR::Target *target = mshr->getTarget();
|
|
|
|
|
|
|
|
if (!satisfyTarget(target, blk)) {
|
|
|
|
// Invalid access, need to do another request
|
|
|
|
// can occur if block is invalidated, or not correct
|
|
|
|
// permissions
|
|
|
|
MSHRQueue *mq = mshr->queue;
|
|
|
|
mq->markPending(mshr);
|
|
|
|
mshr->order = order++;
|
|
|
|
requestMemSideBus((RequestCause)mq->index, pkt->finishTime);
|
|
|
|
return false;
|
2007-06-18 02:27:53 +02:00
|
|
|
}
|
2007-06-21 20:59:17 +02:00
|
|
|
|
|
|
|
|
|
|
|
// How many bytes pass the first request is this one
|
|
|
|
int transfer_offset = target->pkt->getOffset(blkSize) - initial_offset;
|
|
|
|
if (transfer_offset < 0) {
|
|
|
|
transfer_offset += blkSize;
|
2007-06-18 02:27:53 +02:00
|
|
|
}
|
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
// If critical word (no offset) return first word time
|
|
|
|
Tick completion_time = tags->getHitLatency() +
|
|
|
|
transfer_offset ? pkt->finishTime : pkt->firstWordTime;
|
|
|
|
|
|
|
|
if (!target->pkt->req->isUncacheable()) {
|
|
|
|
missLatency[target->pkt->cmdToIndex()][0/*pkt->req->getThreadNum()*/] +=
|
|
|
|
completion_time - target->time;
|
2007-06-18 02:27:53 +02:00
|
|
|
}
|
2007-06-21 20:59:17 +02:00
|
|
|
target->pkt->makeTimingResponse();
|
|
|
|
cpuSidePort->respond(target->pkt, completion_time);
|
|
|
|
mshr->popTarget();
|
2007-06-18 02:27:53 +02:00
|
|
|
}
|
2007-06-21 20:59:17 +02:00
|
|
|
|
|
|
|
return true;
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2006-12-19 05:47:12 +01:00
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
2007-06-18 02:27:53 +02:00
|
|
|
Cache<TagStore,Coherence>::handleResponse(PacketPtr pkt)
|
2006-12-19 05:47:12 +01:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
Tick time = curTick + hitLatency;
|
|
|
|
MSHR *mshr = dynamic_cast<MSHR*>(pkt->senderState);
|
|
|
|
assert(mshr);
|
|
|
|
if (pkt->result == Packet::Nacked) {
|
|
|
|
//pkt->reinitFromRequest();
|
|
|
|
warn("NACKs from devices not connected to the same bus "
|
|
|
|
"not implemented\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
assert(pkt->result != Packet::BadAddress);
|
|
|
|
assert(pkt->result == Packet::Success);
|
|
|
|
DPRINTF(Cache, "Handling reponse to %x\n", pkt->getAddr());
|
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
MSHRQueue *mq = mshr->queue;
|
|
|
|
bool wasFull = mq->isFull();
|
|
|
|
|
|
|
|
if (mshr == noTargetMSHR) {
|
|
|
|
// we always clear at least one target
|
|
|
|
clearBlocked(Blocked_NoTargets);
|
|
|
|
noTargetMSHR = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Can we deallocate MSHR when done?
|
|
|
|
bool deallocate = false;
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (mshr->isCacheFill) {
|
2007-06-21 20:59:17 +02:00
|
|
|
#if 0
|
|
|
|
mshr_miss_latency[mshr->originalCmd.toInt()][0/*pkt->req->getThreadNum()*/] +=
|
|
|
|
curTick - pkt->time;
|
|
|
|
#endif
|
2007-06-18 02:27:53 +02:00
|
|
|
DPRINTF(Cache, "Block for addr %x being updated in Cache\n",
|
|
|
|
pkt->getAddr());
|
|
|
|
BlkType *blk = tags->findBlock(pkt->getAddr());
|
|
|
|
PacketList writebacks;
|
|
|
|
blk = handleFill(pkt, blk, writebacks);
|
2007-06-21 20:59:17 +02:00
|
|
|
deallocate = satisfyMSHR(mshr, pkt, blk);
|
2007-06-18 02:27:53 +02:00
|
|
|
// copy writebacks to write buffer
|
|
|
|
while (!writebacks.empty()) {
|
|
|
|
PacketPtr wbPkt = writebacks.front();
|
2007-06-21 20:59:17 +02:00
|
|
|
allocateBuffer(wbPkt, time, true);
|
2007-06-18 02:27:53 +02:00
|
|
|
writebacks.pop_front();
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
2007-06-21 20:59:17 +02:00
|
|
|
} else {
|
|
|
|
if (pkt->req->isUncacheable()) {
|
|
|
|
mshr_uncacheable_lat[pkt->cmd.toInt()][0/*pkt->req->getThreadNum()*/] +=
|
|
|
|
curTick - pkt->time;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (mshr->hasTargets()) {
|
|
|
|
MSHR::Target *target = mshr->getTarget();
|
|
|
|
assert(target->isCpuSide());
|
|
|
|
mshr->popTarget();
|
|
|
|
if (pkt->isRead()) {
|
|
|
|
target->pkt->setData(pkt->getPtr<uint8_t>());
|
|
|
|
}
|
|
|
|
cpuSidePort->respond(target->pkt, time);
|
|
|
|
}
|
|
|
|
assert(!mshr->hasTargets());
|
|
|
|
deallocate = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (deallocate) {
|
|
|
|
mq->deallocate(mshr);
|
|
|
|
if (wasFull && !mq->isFull()) {
|
|
|
|
clearBlocked((BlockedCause)mq->index);
|
|
|
|
}
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2006-12-19 05:47:12 +01:00
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
PacketPtr
|
|
|
|
Cache<TagStore,Coherence>::writebackBlk(BlkType *blk)
|
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
assert(blk && blk->isValid() && blk->isDirty());
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
writebacks[0/*pkt->req->getThreadNum()*/]++;
|
2006-12-19 05:47:12 +01:00
|
|
|
|
|
|
|
Request *writebackReq =
|
|
|
|
new Request(tags->regenerateBlkAddr(blk->tag, blk->set), blkSize, 0);
|
2007-02-07 19:53:37 +01:00
|
|
|
PacketPtr writeback = new Packet(writebackReq, MemCmd::Writeback, -1);
|
2006-12-19 05:47:12 +01:00
|
|
|
writeback->allocate();
|
2007-06-18 02:27:53 +02:00
|
|
|
std::memcpy(writeback->getPtr<uint8_t>(), blk->data, blkSize);
|
2006-12-19 05:47:12 +01:00
|
|
|
|
|
|
|
blk->status &= ~BlkDirty;
|
|
|
|
return writeback;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// Note that the reason we return a list of writebacks rather than
|
|
|
|
// inserting them directly in the write buffer is that this function
|
|
|
|
// is called by both atomic and timing-mode accesses, and in atomic
|
|
|
|
// mode we don't mess with the write buffer (we just perform the
|
|
|
|
// writebacks atomically once the original request is complete).
|
2006-12-19 05:47:12 +01:00
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
typename Cache<TagStore,Coherence>::BlkType*
|
2007-06-18 02:27:53 +02:00
|
|
|
Cache<TagStore,Coherence>::handleFill(PacketPtr pkt, BlkType *blk,
|
|
|
|
PacketList &writebacks)
|
2006-12-19 05:47:12 +01:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
Addr addr = pkt->getAddr();
|
|
|
|
|
2006-12-19 05:47:12 +01:00
|
|
|
if (blk == NULL) {
|
2007-06-21 20:59:17 +02:00
|
|
|
// better have read new data
|
|
|
|
assert(pkt->isRead());
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2006-12-19 05:47:12 +01:00
|
|
|
// need to do a replacement
|
2007-06-18 02:27:53 +02:00
|
|
|
blk = tags->findReplacement(addr, writebacks);
|
2006-12-19 05:47:12 +01:00
|
|
|
if (blk->isValid()) {
|
|
|
|
DPRINTF(Cache, "replacement: replacing %x with %x: %s\n",
|
2007-06-18 02:27:53 +02:00
|
|
|
tags->regenerateBlkAddr(blk->tag, blk->set), addr,
|
|
|
|
blk->isDirty() ? "writeback" : "clean");
|
2006-12-19 05:47:12 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (blk->isDirty()) {
|
|
|
|
// Save writeback packet for handling by caller
|
2006-12-19 05:47:12 +01:00
|
|
|
writebacks.push_back(writebackBlk(blk));
|
|
|
|
}
|
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
blk->tag = tags->extractTag(addr);
|
|
|
|
blk->status = coherence->getNewState(pkt);
|
2006-12-19 05:47:12 +01:00
|
|
|
} else {
|
2007-06-18 02:27:53 +02:00
|
|
|
// existing block... probably an upgrade
|
|
|
|
assert(blk->tag == tags->extractTag(addr));
|
|
|
|
// either we're getting new data or the block should already be valid
|
|
|
|
assert(pkt->isRead() || blk->isValid());
|
|
|
|
CacheBlk::State old_state = blk->status;
|
|
|
|
blk->status = coherence->getNewState(pkt, old_state);
|
|
|
|
if (blk->status != old_state)
|
|
|
|
DPRINTF(Cache, "Block addr %x moving from state %i to %i\n",
|
|
|
|
addr, old_state, blk->status);
|
|
|
|
else
|
|
|
|
warn("Changing state to same value\n");
|
2006-12-19 05:47:12 +01:00
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// if we got new data, copy it in
|
|
|
|
if (pkt->isRead()) {
|
|
|
|
std::memcpy(blk->data, pkt->getPtr<uint8_t>(), blkSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
blk->whenReady = pkt->finishTime;
|
|
|
|
|
2006-12-19 05:47:12 +01:00
|
|
|
return blk;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Snoop path: requests coming in from the memory side
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////
|
|
|
|
|
2006-12-04 18:10:53 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2006-06-28 17:02:14 +02:00
|
|
|
void
|
2007-06-18 02:27:53 +02:00
|
|
|
Cache<TagStore,Coherence>::doTimingSupplyResponse(PacketPtr req_pkt,
|
|
|
|
uint8_t *blk_data)
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
// timing-mode snoop responses require a new packet
|
|
|
|
PacketPtr pkt = new Packet(req_pkt);
|
|
|
|
pkt->allocate();
|
|
|
|
pkt->makeTimingResponse();
|
|
|
|
pkt->setDataFromBlock(blk_data, blkSize);
|
|
|
|
memSidePort->respond(pkt, curTick + hitLatency);
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
2006-12-04 18:10:53 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2006-06-28 17:02:14 +02:00
|
|
|
void
|
2007-06-18 02:27:53 +02:00
|
|
|
Cache<TagStore,Coherence>::handleSnoop(PacketPtr pkt, BlkType *blk,
|
|
|
|
bool is_timing)
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
if (!blk || !blk->isValid()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we may end up modifying both the block state and the packet (if
|
|
|
|
// we respond in atomic mode), so just figure out what to do now
|
|
|
|
// and then do it later
|
|
|
|
bool supply = blk->isDirty() && pkt->isRead();
|
|
|
|
bool invalidate = pkt->isInvalidate();
|
|
|
|
|
|
|
|
if (pkt->isRead() && !pkt->isInvalidate()) {
|
|
|
|
assert(!pkt->needsExclusive());
|
|
|
|
pkt->assertShared();
|
|
|
|
int bits_to_clear = BlkWritable;
|
|
|
|
const bool haveOwnershipState = true; // for now
|
|
|
|
if (!haveOwnershipState) {
|
|
|
|
// if we don't support pure ownership (dirty && !writable),
|
|
|
|
// have to clear dirty bit here, assume memory snarfs data
|
|
|
|
// on cache-to-cache xfer
|
|
|
|
bits_to_clear |= BlkDirty;
|
2006-10-10 00:52:20 +02:00
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
blk->status &= ~bits_to_clear;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (supply) {
|
|
|
|
pkt->assertMemInhibit();
|
|
|
|
if (is_timing) {
|
|
|
|
doTimingSupplyResponse(pkt, blk->data);
|
|
|
|
} else {
|
|
|
|
pkt->makeAtomicResponse();
|
|
|
|
pkt->setDataFromBlock(blk->data, blkSize);
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
// Do this last in case it deallocates block data or something
|
|
|
|
// like that
|
|
|
|
if (invalidate) {
|
|
|
|
tags->invalidateBlk(blk);
|
|
|
|
}
|
|
|
|
|
|
|
|
DPRINTF(Cache, "snooped a %s request for addr %x, %snew state is %i\n",
|
|
|
|
pkt->cmdString(), blockAlign(pkt->getAddr()),
|
|
|
|
supply ? "supplying data, " : "", blk->status);
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-04 18:10:53 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2006-06-28 17:02:14 +02:00
|
|
|
void
|
2007-06-18 02:27:53 +02:00
|
|
|
Cache<TagStore,Coherence>::snoopTiming(PacketPtr pkt)
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2006-10-12 19:33:21 +02:00
|
|
|
if (pkt->req->isUncacheable()) {
|
|
|
|
//Can't get a hit on an uncacheable address
|
|
|
|
//Revisit this for multi level coherence
|
|
|
|
return;
|
|
|
|
}
|
2006-10-20 02:02:57 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
BlkType *blk = tags->findBlock(pkt->getAddr());
|
2006-10-20 02:02:57 +02:00
|
|
|
|
2006-06-29 22:07:19 +02:00
|
|
|
Addr blk_addr = pkt->getAddr() & ~(Addr(blkSize-1));
|
2007-06-18 02:27:53 +02:00
|
|
|
MSHR *mshr = mshrQueue.findMatch(blk_addr);
|
|
|
|
// better not be snooping a request that conflicts with something
|
|
|
|
// we have outstanding...
|
|
|
|
assert(!mshr || !mshr->inService);
|
|
|
|
|
|
|
|
//We also need to check the writeback buffers and handle those
|
|
|
|
std::vector<MSHR *> writebacks;
|
|
|
|
if (writeBuffer.findMatches(blk_addr, writebacks)) {
|
|
|
|
DPRINTF(Cache, "Snoop hit in writeback to addr: %x\n",
|
|
|
|
pkt->getAddr());
|
|
|
|
|
|
|
|
//Look through writebacks for any non-uncachable writes, use that
|
|
|
|
for (int i=0; i<writebacks.size(); i++) {
|
|
|
|
mshr = writebacks[i];
|
|
|
|
assert(!mshr->isUncacheable());
|
|
|
|
|
|
|
|
if (pkt->isRead()) {
|
|
|
|
pkt->assertMemInhibit();
|
|
|
|
if (!pkt->needsExclusive()) {
|
|
|
|
pkt->assertShared();
|
|
|
|
} else {
|
|
|
|
// if we're not asserting the shared line, we need to
|
|
|
|
// invalidate our copy. we'll do that below as long as
|
|
|
|
// the packet's invalidate flag is set...
|
|
|
|
assert(pkt->isInvalidate());
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
doTimingSupplyResponse(pkt, mshr->writeData);
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
if (pkt->isInvalidate()) {
|
|
|
|
// Invalidation trumps our writeback... discard here
|
|
|
|
assert(0);
|
|
|
|
markInService(mshr);
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
return;
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
}
|
2006-11-12 12:44:05 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
handleSnoop(pkt, blk, true);
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2006-12-04 18:10:53 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2007-06-18 02:27:53 +02:00
|
|
|
Tick
|
|
|
|
Cache<TagStore,Coherence>::snoopAtomic(PacketPtr pkt)
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
if (pkt->req->isUncacheable()) {
|
|
|
|
// Can't get a hit on an uncacheable address
|
|
|
|
// Revisit this for multi level coherence
|
|
|
|
return hitLatency;
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
BlkType *blk = tags->findBlock(pkt->getAddr());
|
|
|
|
handleSnoop(pkt, blk, false);
|
|
|
|
return hitLatency;
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-04 18:10:53 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2007-06-18 02:27:53 +02:00
|
|
|
MSHR *
|
|
|
|
Cache<TagStore,Coherence>::getNextMSHR()
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
// Check both MSHR queue and write buffer for potential requests
|
|
|
|
MSHR *miss_mshr = mshrQueue.getNextMSHR();
|
|
|
|
MSHR *write_mshr = writeBuffer.getNextMSHR();
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// Now figure out which one to send... some cases are easy
|
|
|
|
if (miss_mshr && !write_mshr) {
|
|
|
|
return miss_mshr;
|
|
|
|
}
|
|
|
|
if (write_mshr && !miss_mshr) {
|
|
|
|
return write_mshr;
|
2006-10-20 01:00:27 +02:00
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (miss_mshr && write_mshr) {
|
|
|
|
// We have one of each... normally we favor the miss request
|
|
|
|
// unless the write buffer is full
|
|
|
|
if (writeBuffer.isFull() && writeBuffer.inServiceEntries == 0) {
|
|
|
|
// Write buffer is full, so we'd like to issue a write;
|
|
|
|
// need to search MSHR queue for conflicting earlier miss.
|
|
|
|
MSHR *conflict_mshr =
|
|
|
|
mshrQueue.findPending(write_mshr->addr, write_mshr->size);
|
|
|
|
|
|
|
|
if (conflict_mshr && conflict_mshr->order < write_mshr->order) {
|
|
|
|
// Service misses in order until conflict is cleared.
|
|
|
|
return conflict_mshr;
|
2006-10-20 01:00:27 +02:00
|
|
|
}
|
2006-10-06 05:28:03 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// No conflicts; issue write
|
|
|
|
return write_mshr;
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// Write buffer isn't full, but need to check it for
|
|
|
|
// conflicting earlier writeback
|
|
|
|
MSHR *conflict_mshr =
|
|
|
|
writeBuffer.findPending(miss_mshr->addr, miss_mshr->size);
|
|
|
|
if (conflict_mshr) {
|
|
|
|
// not sure why we don't check order here... it was in the
|
|
|
|
// original code but commented out.
|
|
|
|
|
|
|
|
// The only way this happens is if we are
|
|
|
|
// doing a write and we didn't have permissions
|
|
|
|
// then subsequently saw a writeback (owned got evicted)
|
|
|
|
// We need to make sure to perform the writeback first
|
|
|
|
// To preserve the dirty data, then we can issue the write
|
|
|
|
|
|
|
|
// should we return write_mshr here instead? I.e. do we
|
|
|
|
// have to flush writes in order? I don't think so... not
|
|
|
|
// for Alpha anyway. Maybe for x86?
|
|
|
|
return conflict_mshr;
|
2006-10-22 02:19:33 +02:00
|
|
|
}
|
2006-10-20 01:00:27 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// No conclifts; issue read
|
|
|
|
return miss_mshr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// fall through... no pending requests. Try a prefetch.
|
|
|
|
assert(!miss_mshr && !write_mshr);
|
|
|
|
if (!mshrQueue.isFull()) {
|
|
|
|
// If we have a miss queue slot, we can try a prefetch
|
|
|
|
PacketPtr pkt = prefetcher->getPacket();
|
|
|
|
if (pkt) {
|
|
|
|
// Update statistic on number of prefetches issued
|
|
|
|
// (hwpf_mshr_misses)
|
|
|
|
mshr_misses[pkt->cmdToIndex()][0/*pkt->req->getThreadNum()*/]++;
|
|
|
|
// Don't request bus, since we already have it
|
2007-06-21 20:59:17 +02:00
|
|
|
return allocateMissBuffer(pkt, curTick, false);
|
2007-06-18 02:27:53 +02:00
|
|
|
}
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
2006-10-22 02:19:33 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
return NULL;
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2006-12-04 18:10:53 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2007-06-18 02:27:53 +02:00
|
|
|
PacketPtr
|
2007-06-21 20:59:17 +02:00
|
|
|
Cache<TagStore,Coherence>::getTimingPacket()
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
MSHR *mshr = getNextMSHR();
|
2006-10-20 02:02:57 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (mshr == NULL) {
|
|
|
|
return NULL;
|
2006-10-20 02:02:57 +02:00
|
|
|
}
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
// use request from 1st target
|
2007-06-21 20:59:17 +02:00
|
|
|
PacketPtr tgt_pkt = mshr->getTarget()->pkt;
|
2007-06-22 18:24:07 +02:00
|
|
|
PacketPtr pkt = NULL;
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2007-06-22 18:24:07 +02:00
|
|
|
if (mshr->isSimpleForward()) {
|
|
|
|
// no response expected, just forward packet as it is
|
|
|
|
assert(tags->findBlock(mshr->addr) == NULL);
|
|
|
|
pkt = tgt_pkt;
|
|
|
|
} else {
|
|
|
|
BlkType *blk = tags->findBlock(mshr->addr);
|
|
|
|
pkt = getBusPacket(tgt_pkt, blk, mshr->needsExclusive);
|
|
|
|
|
|
|
|
mshr->isCacheFill = (pkt != NULL);
|
|
|
|
|
|
|
|
if (pkt == NULL) {
|
|
|
|
// not a cache block request, but a response is expected
|
|
|
|
assert(!mshr->isSimpleForward());
|
|
|
|
// make copy of current packet to forward, keep current
|
|
|
|
// copy for response handling
|
|
|
|
pkt = new Packet(tgt_pkt);
|
|
|
|
pkt->allocate();
|
|
|
|
if (pkt->isWrite()) {
|
|
|
|
pkt->setData(tgt_pkt->getPtr<uint8_t>());
|
|
|
|
}
|
2007-06-18 02:27:53 +02:00
|
|
|
}
|
2006-12-14 07:04:36 +01:00
|
|
|
}
|
2007-04-04 19:56:38 +02:00
|
|
|
|
2007-06-22 18:24:07 +02:00
|
|
|
assert(pkt != NULL);
|
2007-06-18 02:27:53 +02:00
|
|
|
pkt->senderState = mshr;
|
|
|
|
return pkt;
|
2007-03-09 00:57:15 +01:00
|
|
|
}
|
|
|
|
|
2006-12-14 07:04:36 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
///////////////
|
|
|
|
//
|
|
|
|
// CpuSidePort
|
|
|
|
//
|
|
|
|
///////////////
|
|
|
|
|
2007-05-22 16:30:55 +02:00
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
|
|
|
Cache<TagStore,Coherence>::CpuSidePort::
|
|
|
|
getDeviceAddressRanges(AddrRangeList &resp, bool &snoop)
|
|
|
|
{
|
|
|
|
// CPU side port doesn't snoop; it's a target only.
|
|
|
|
bool dummy;
|
|
|
|
otherPort->getPeerAddressRanges(resp, dummy);
|
|
|
|
snoop = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-14 07:04:36 +01:00
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
bool
|
|
|
|
Cache<TagStore,Coherence>::CpuSidePort::recvTiming(PacketPtr pkt)
|
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
if (pkt->isRequest() && blocked) {
|
2006-12-14 07:04:36 +01:00
|
|
|
DPRINTF(Cache,"Scheduling a retry while blocked\n");
|
|
|
|
mustSendRetry = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
myCache()->timingAccess(pkt);
|
2006-12-14 07:04:36 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-05-19 07:35:04 +02:00
|
|
|
|
|
|
|
template<class TagStore, class Coherence>
|
2007-06-18 02:27:53 +02:00
|
|
|
Tick
|
|
|
|
Cache<TagStore,Coherence>::CpuSidePort::recvAtomic(PacketPtr pkt)
|
2007-05-19 07:35:04 +02:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
return myCache()->atomicAccess(pkt);
|
2007-05-19 07:35:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
2007-06-18 02:27:53 +02:00
|
|
|
Cache<TagStore,Coherence>::CpuSidePort::recvFunctional(PacketPtr pkt)
|
2007-05-19 07:35:04 +02:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
checkFunctional(pkt);
|
|
|
|
if (pkt->result != Packet::Success)
|
|
|
|
myCache()->functionalAccess(pkt, cache->memSidePort);
|
2007-05-19 07:35:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-14 07:04:36 +01:00
|
|
|
template<class TagStore, class Coherence>
|
2007-06-18 02:27:53 +02:00
|
|
|
Cache<TagStore,Coherence>::
|
|
|
|
CpuSidePort::CpuSidePort(const std::string &_name,
|
|
|
|
Cache<TagStore,Coherence> *_cache)
|
|
|
|
: BaseCache::CachePort(_name, _cache)
|
2006-12-14 07:04:36 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
///////////////
|
|
|
|
//
|
|
|
|
// MemSidePort
|
|
|
|
//
|
|
|
|
///////////////
|
2006-12-14 07:04:36 +01:00
|
|
|
|
2007-05-22 16:30:55 +02:00
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
|
|
|
Cache<TagStore,Coherence>::MemSidePort::
|
|
|
|
getDeviceAddressRanges(AddrRangeList &resp, bool &snoop)
|
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
otherPort->getPeerAddressRanges(resp, snoop);
|
|
|
|
// Memory-side port always snoops, so unconditionally set flag for
|
|
|
|
// caller.
|
2007-05-22 16:30:55 +02:00
|
|
|
snoop = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-14 07:04:36 +01:00
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
bool
|
|
|
|
Cache<TagStore,Coherence>::MemSidePort::recvTiming(PacketPtr pkt)
|
|
|
|
{
|
2007-05-10 00:20:24 +02:00
|
|
|
// this needs to be fixed so that the cache updates the mshr and sends the
|
|
|
|
// packet back out on the link, but it probably won't happen so until this
|
|
|
|
// gets fixed, just panic when it does
|
|
|
|
if (pkt->result == Packet::Nacked)
|
|
|
|
panic("Need to implement cache resending nacked packets!\n");
|
|
|
|
|
2007-05-19 07:35:04 +02:00
|
|
|
if (pkt->isRequest() && blocked) {
|
2006-12-14 07:04:36 +01:00
|
|
|
DPRINTF(Cache,"Scheduling a retry while blocked\n");
|
|
|
|
mustSendRetry = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-05-19 07:35:04 +02:00
|
|
|
if (pkt->isResponse()) {
|
2006-12-14 07:04:36 +01:00
|
|
|
myCache()->handleResponse(pkt);
|
2007-05-19 07:35:04 +02:00
|
|
|
} else {
|
2007-06-18 02:27:53 +02:00
|
|
|
myCache()->snoopTiming(pkt);
|
2006-12-14 07:04:36 +01:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2007-05-19 07:35:04 +02:00
|
|
|
template<class TagStore, class Coherence>
|
2007-06-18 02:27:53 +02:00
|
|
|
Tick
|
|
|
|
Cache<TagStore,Coherence>::MemSidePort::recvAtomic(PacketPtr pkt)
|
2007-05-19 07:35:04 +02:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
// in atomic mode, responses go back to the sender via the
|
|
|
|
// function return from sendAtomic(), not via a separate
|
|
|
|
// sendAtomic() from the responder. Thus we should never see a
|
|
|
|
// response packet in recvAtomic() (anywhere, not just here).
|
|
|
|
assert(!pkt->isResponse());
|
|
|
|
return myCache()->snoopAtomic(pkt);
|
|
|
|
}
|
2007-05-19 07:35:04 +02:00
|
|
|
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
|
|
|
Cache<TagStore,Coherence>::MemSidePort::recvFunctional(PacketPtr pkt)
|
|
|
|
{
|
|
|
|
checkFunctional(pkt);
|
|
|
|
if (pkt->result != Packet::Success)
|
|
|
|
myCache()->functionalAccess(pkt, cache->cpuSidePort);
|
2007-05-19 07:35:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2007-05-19 07:35:04 +02:00
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
2007-06-18 02:27:53 +02:00
|
|
|
Cache<TagStore,Coherence>::MemSidePort::sendPacket()
|
2007-05-19 07:35:04 +02:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
// if we have responses that are ready, they take precedence
|
|
|
|
if (deferredPacketReady()) {
|
|
|
|
bool success = sendTiming(transmitList.front().pkt);
|
2007-05-19 07:35:04 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (success) {
|
|
|
|
//send successful, remove packet
|
|
|
|
transmitList.pop_front();
|
|
|
|
}
|
2007-05-19 07:35:04 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
waitingOnRetry = !success;
|
|
|
|
} else {
|
|
|
|
// check for non-response packets (requests & writebacks)
|
2007-06-21 20:59:17 +02:00
|
|
|
PacketPtr pkt = myCache()->getTimingPacket();
|
2007-06-18 02:27:53 +02:00
|
|
|
MSHR *mshr = dynamic_cast<MSHR*>(pkt->senderState);
|
2007-05-19 07:35:04 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
bool success = sendTiming(pkt);
|
|
|
|
DPRINTF(Cache, "Address %x was %s in sending the timing request\n",
|
|
|
|
pkt->getAddr(), success ? "successful" : "unsuccessful");
|
2007-05-19 07:35:04 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
waitingOnRetry = !success;
|
|
|
|
if (waitingOnRetry) {
|
|
|
|
DPRINTF(CachePort, "%s now waiting on a retry\n", name());
|
|
|
|
} else {
|
|
|
|
myCache()->markInService(mshr);
|
|
|
|
}
|
2007-05-19 07:35:04 +02:00
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
// tried to send packet... if it was successful (no retry), see if
|
|
|
|
// we need to rerequest bus or not
|
|
|
|
if (!waitingOnRetry) {
|
|
|
|
if (isBusRequested()) {
|
|
|
|
// more requests/writebacks: rerequest ASAP
|
|
|
|
DPRINTF(CachePort, "%s still more MSHR requests to send\n",
|
|
|
|
name());
|
|
|
|
sendEvent->schedule(curTick+1);
|
|
|
|
} else if (!transmitList.empty()) {
|
|
|
|
// deferred packets: rerequest bus, but possibly not until later
|
|
|
|
Tick time = transmitList.front().tick;
|
|
|
|
sendEvent->schedule(time <= curTick ? curTick+1 : time);
|
|
|
|
} else {
|
|
|
|
// no more to send right now: if we're draining, we may be done
|
|
|
|
if (drainEvent) {
|
|
|
|
drainEvent->process();
|
|
|
|
drainEvent = NULL;
|
|
|
|
}
|
|
|
|
}
|
2007-05-19 07:35:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
2007-06-18 02:27:53 +02:00
|
|
|
Cache<TagStore,Coherence>::MemSidePort::recvRetry()
|
2007-05-19 07:35:04 +02:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
assert(waitingOnRetry);
|
|
|
|
sendPacket();
|
2007-05-19 07:35:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-14 07:04:36 +01:00
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
void
|
2007-06-18 02:27:53 +02:00
|
|
|
Cache<TagStore,Coherence>::MemSidePort::processSendEvent()
|
2006-12-14 07:04:36 +01:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
assert(!waitingOnRetry);
|
|
|
|
sendPacket();
|
2006-12-14 07:04:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template<class TagStore, class Coherence>
|
|
|
|
Cache<TagStore,Coherence>::
|
|
|
|
MemSidePort::MemSidePort(const std::string &_name,
|
|
|
|
Cache<TagStore,Coherence> *_cache)
|
2007-05-19 07:35:04 +02:00
|
|
|
: BaseCache::CachePort(_name, _cache)
|
2006-12-14 07:04:36 +01:00
|
|
|
{
|
2007-06-18 02:27:53 +02:00
|
|
|
// override default send event from SimpleTimingPort
|
|
|
|
delete sendEvent;
|
|
|
|
sendEvent = new SendEvent(this);
|
2006-12-14 07:04:36 +01:00
|
|
|
}
|