2006-06-28 17:02:14 +02:00
|
|
|
/*
|
2012-02-24 17:52:49 +01:00
|
|
|
* Copyright (c) 2012 ARM Limited
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* The license below extends only to copyright in the software and shall
|
|
|
|
* not be construed as granting a license to any other intellectual
|
|
|
|
* property including but not limited to intellectual property relating
|
|
|
|
* to a hardware implementation of the functionality of the software
|
|
|
|
* licensed hereunder. You may use the software subject to the license
|
|
|
|
* terms below provided that you ensure that this notice is replicated
|
|
|
|
* unmodified and in its entirety in all distributions of the software,
|
|
|
|
* modified or unmodified, in source code or in binary form.
|
|
|
|
*
|
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
|
2007-05-19 07:35:04 +02:00
|
|
|
* Steve Reinhardt
|
|
|
|
* Ron Dreslinski
|
2006-06-28 17:02:14 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Declares a basic cache interface BaseCache.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BASE_CACHE_HH__
|
|
|
|
#define __BASE_CACHE_HH__
|
|
|
|
|
2007-06-25 15:47:05 +02:00
|
|
|
#include <algorithm>
|
2010-09-10 23:58:04 +02:00
|
|
|
#include <list>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2006-06-30 17:34:27 +02:00
|
|
|
#include "base/misc.hh"
|
2006-06-28 17:02:14 +02:00
|
|
|
#include "base/statistics.hh"
|
|
|
|
#include "base/trace.hh"
|
2009-05-17 23:34:51 +02:00
|
|
|
#include "base/types.hh"
|
2011-04-15 19:44:32 +02:00
|
|
|
#include "debug/Cache.hh"
|
|
|
|
#include "debug/CachePort.hh"
|
2008-02-10 23:45:25 +01:00
|
|
|
#include "mem/cache/mshr_queue.hh"
|
2006-06-28 17:02:14 +02:00
|
|
|
#include "mem/mem_object.hh"
|
|
|
|
#include "mem/packet.hh"
|
2012-03-22 11:36:27 +01:00
|
|
|
#include "mem/qport.hh"
|
2006-06-28 17:02:14 +02:00
|
|
|
#include "mem/request.hh"
|
2007-08-30 21:16:59 +02:00
|
|
|
#include "params/BaseCache.hh"
|
2006-06-28 20:35:00 +02:00
|
|
|
#include "sim/eventq.hh"
|
2011-11-07 10:13:43 +01:00
|
|
|
#include "sim/full_system.hh"
|
2007-06-18 02:27:53 +02:00
|
|
|
#include "sim/sim_exit.hh"
|
2012-02-12 23:07:39 +01:00
|
|
|
#include "sim/system.hh"
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2006-10-09 22:37:02 +02:00
|
|
|
class MSHR;
|
2006-06-28 17:02:14 +02:00
|
|
|
/**
|
|
|
|
* A basic cache interface. Implements some common functions for speed.
|
|
|
|
*/
|
|
|
|
class BaseCache : public MemObject
|
|
|
|
{
|
2007-06-21 20:59:17 +02:00
|
|
|
/**
|
|
|
|
* Indexes to enumerate the MSHR queues.
|
|
|
|
*/
|
|
|
|
enum MSHRQueueIndex {
|
|
|
|
MSHRQueue_MSHRs,
|
|
|
|
MSHRQueue_WriteBuffer
|
|
|
|
};
|
|
|
|
|
2012-01-31 18:05:52 +01:00
|
|
|
public:
|
2007-06-21 20:59:17 +02:00
|
|
|
/**
|
|
|
|
* Reasons for caches to be blocked.
|
|
|
|
*/
|
|
|
|
enum BlockedCause {
|
|
|
|
Blocked_NoMSHRs = MSHRQueue_MSHRs,
|
|
|
|
Blocked_NoWBBuffers = MSHRQueue_WriteBuffer,
|
|
|
|
Blocked_NoTargets,
|
|
|
|
NUM_BLOCKED_CAUSES
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reasons for cache to request a bus.
|
|
|
|
*/
|
|
|
|
enum RequestCause {
|
|
|
|
Request_MSHR = MSHRQueue_MSHRs,
|
|
|
|
Request_WB = MSHRQueue_WriteBuffer,
|
|
|
|
Request_PF,
|
|
|
|
NUM_REQUEST_CAUSES
|
|
|
|
};
|
|
|
|
|
2012-01-31 18:05:52 +01:00
|
|
|
protected:
|
2007-06-21 20:59:17 +02:00
|
|
|
|
2012-02-24 17:52:49 +01:00
|
|
|
/**
|
|
|
|
* A cache master port is used for the memory-side port of the
|
|
|
|
* cache, and in addition to the basic timing port that only sends
|
|
|
|
* response packets through a transmit list, it also offers the
|
|
|
|
* ability to schedule and send request packets (requests &
|
|
|
|
* writebacks). The send event is scheduled through requestBus,
|
|
|
|
* and the sendDeferredPacket of the timing port is modified to
|
|
|
|
* consider both the transmit list and the requests from the MSHR.
|
|
|
|
*/
|
MEM: Introduce the master/slave port sub-classes in C++
This patch introduces the notion of a master and slave port in the C++
code, thus bringing the previous classification from the Python
classes into the corresponding simulation objects and memory objects.
The patch enables us to classify behaviours into the two bins and add
assumptions and enfore compliance, also simplifying the two
interfaces. As a starting point, isSnooping is confined to a master
port, and getAddrRanges to slave ports. More of these specilisations
are to come in later patches.
The getPort function is not getMasterPort and getSlavePort, and
returns a port reference rather than a pointer as NULL would never be
a valid return value. The default implementation of these two
functions is placed in MemObject, and calls fatal.
The one drawback with this specific patch is that it requires some
code duplication, e.g. QueuedPort becomes QueuedMasterPort and
QueuedSlavePort, and BusPort becomes BusMasterPort and BusSlavePort
(avoiding multiple inheritance). With the later introduction of the
port interfaces, moving the functionality outside the port itself, a
lot of the duplicated code will disappear again.
2012-03-30 15:40:11 +02:00
|
|
|
class CacheMasterPort : public QueuedMasterPort
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2012-02-24 17:52:49 +01:00
|
|
|
|
2006-07-06 21:15:37 +02:00
|
|
|
public:
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2012-02-24 17:52:49 +01:00
|
|
|
/**
|
|
|
|
* Schedule a send of a request packet (from the MSHR). Note
|
|
|
|
* that we could already have a retry or a transmit list of
|
|
|
|
* responses outstanding.
|
|
|
|
*/
|
|
|
|
void requestBus(RequestCause cause, Tick time)
|
|
|
|
{
|
|
|
|
DPRINTF(CachePort, "Asserting bus request for cause %d\n", cause);
|
2012-03-22 11:36:27 +01:00
|
|
|
queue.schedSendEvent(time);
|
2012-02-24 17:52:49 +01:00
|
|
|
}
|
2007-05-19 07:35:04 +02:00
|
|
|
|
2012-02-24 17:52:49 +01:00
|
|
|
protected:
|
2006-08-16 21:54:02 +02:00
|
|
|
|
2012-02-24 17:52:49 +01:00
|
|
|
CacheMasterPort(const std::string &_name, BaseCache *_cache,
|
MEM: Separate requests and responses for timing accesses
This patch moves send/recvTiming and send/recvTimingSnoop from the
Port base class to the MasterPort and SlavePort, and also splits them
into separate member functions for requests and responses:
send/recvTimingReq, send/recvTimingResp, and send/recvTimingSnoopReq,
send/recvTimingSnoopResp. A master port sends requests and receives
responses, and also receives snoop requests and sends snoop
responses. A slave port has the reciprocal behaviour as it receives
requests and sends responses, and sends snoop requests and receives
snoop responses.
For all MemObjects that have only master ports or slave ports (but not
both), e.g. a CPU, or a PIO device, this patch merely adds more
clarity to what kind of access is taking place. For example, a CPU
port used to call sendTiming, and will now call
sendTimingReq. Similarly, a response previously came back through
recvTiming, which is now recvTimingResp. For the modules that have
both master and slave ports, e.g. the bus, the behaviour was
previously relying on branches based on pkt->isRequest(), and this is
now replaced with a direct call to the apprioriate member function
depending on the type of access. Please note that send/recvRetry is
still shared by all the timing accessors and remains in the Port base
class for now (to maintain the current bus functionality and avoid
changing the statistics of all regressions).
The packet queue is split into a MasterPort and SlavePort version to
facilitate the use of the new timing accessors. All uses of the
PacketQueue are updated accordingly.
With this patch, the type of packet (request or response) is now well
defined for each type of access, and asserts on pkt->isRequest() and
pkt->isResponse() are now moved to the appropriate send member
functions. It is also worth noting that sendTimingSnoopReq no longer
returns a boolean, as the semantics do not alow snoop requests to be
rejected or stalled. All these assumptions are now excplicitly part of
the port interface itself.
2012-05-01 19:40:42 +02:00
|
|
|
MasterPacketQueue &_queue) :
|
MEM: Introduce the master/slave port sub-classes in C++
This patch introduces the notion of a master and slave port in the C++
code, thus bringing the previous classification from the Python
classes into the corresponding simulation objects and memory objects.
The patch enables us to classify behaviours into the two bins and add
assumptions and enfore compliance, also simplifying the two
interfaces. As a starting point, isSnooping is confined to a master
port, and getAddrRanges to slave ports. More of these specilisations
are to come in later patches.
The getPort function is not getMasterPort and getSlavePort, and
returns a port reference rather than a pointer as NULL would never be
a valid return value. The default implementation of these two
functions is placed in MemObject, and calls fatal.
The one drawback with this specific patch is that it requires some
code duplication, e.g. QueuedPort becomes QueuedMasterPort and
QueuedSlavePort, and BusPort becomes BusMasterPort and BusSlavePort
(avoiding multiple inheritance). With the later introduction of the
port interfaces, moving the functionality outside the port itself, a
lot of the duplicated code will disappear again.
2012-03-30 15:40:11 +02:00
|
|
|
QueuedMasterPort(_name, _cache, _queue)
|
2012-03-22 11:36:27 +01:00
|
|
|
{ }
|
2007-06-25 15:47:05 +02:00
|
|
|
|
2012-02-24 17:52:49 +01:00
|
|
|
/**
|
|
|
|
* Memory-side port always snoops.
|
|
|
|
*
|
2012-03-22 11:36:27 +01:00
|
|
|
* @return always true
|
2012-02-24 17:52:49 +01:00
|
|
|
*/
|
MEM: Introduce the master/slave port sub-classes in C++
This patch introduces the notion of a master and slave port in the C++
code, thus bringing the previous classification from the Python
classes into the corresponding simulation objects and memory objects.
The patch enables us to classify behaviours into the two bins and add
assumptions and enfore compliance, also simplifying the two
interfaces. As a starting point, isSnooping is confined to a master
port, and getAddrRanges to slave ports. More of these specilisations
are to come in later patches.
The getPort function is not getMasterPort and getSlavePort, and
returns a port reference rather than a pointer as NULL would never be
a valid return value. The default implementation of these two
functions is placed in MemObject, and calls fatal.
The one drawback with this specific patch is that it requires some
code duplication, e.g. QueuedPort becomes QueuedMasterPort and
QueuedSlavePort, and BusPort becomes BusMasterPort and BusSlavePort
(avoiding multiple inheritance). With the later introduction of the
port interfaces, moving the functionality outside the port itself, a
lot of the duplicated code will disappear again.
2012-03-30 15:40:11 +02:00
|
|
|
virtual bool isSnooping() const { return true; }
|
2012-02-24 17:52:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A cache slave port is used for the CPU-side port of the cache,
|
|
|
|
* and it is basically a simple timing port that uses a transmit
|
|
|
|
* list for responses to the CPU (or connected master). In
|
|
|
|
* addition, it has the functionality to block the port for
|
|
|
|
* incoming requests. If blocked, the port will issue a retry once
|
|
|
|
* unblocked.
|
|
|
|
*/
|
MEM: Introduce the master/slave port sub-classes in C++
This patch introduces the notion of a master and slave port in the C++
code, thus bringing the previous classification from the Python
classes into the corresponding simulation objects and memory objects.
The patch enables us to classify behaviours into the two bins and add
assumptions and enfore compliance, also simplifying the two
interfaces. As a starting point, isSnooping is confined to a master
port, and getAddrRanges to slave ports. More of these specilisations
are to come in later patches.
The getPort function is not getMasterPort and getSlavePort, and
returns a port reference rather than a pointer as NULL would never be
a valid return value. The default implementation of these two
functions is placed in MemObject, and calls fatal.
The one drawback with this specific patch is that it requires some
code duplication, e.g. QueuedPort becomes QueuedMasterPort and
QueuedSlavePort, and BusPort becomes BusMasterPort and BusSlavePort
(avoiding multiple inheritance). With the later introduction of the
port interfaces, moving the functionality outside the port itself, a
lot of the duplicated code will disappear again.
2012-03-30 15:40:11 +02:00
|
|
|
class CacheSlavePort : public QueuedSlavePort
|
2012-02-24 17:52:49 +01:00
|
|
|
{
|
2008-01-02 21:20:15 +01:00
|
|
|
|
2006-06-28 20:35:00 +02:00
|
|
|
public:
|
2012-02-24 17:52:49 +01:00
|
|
|
|
|
|
|
/** Do not accept any new requests. */
|
2006-06-28 17:02:14 +02:00
|
|
|
void setBlocked();
|
|
|
|
|
2012-02-24 17:52:49 +01:00
|
|
|
/** Return to normal operation and accept new requests. */
|
2006-06-28 17:02:14 +02:00
|
|
|
void clearBlocked();
|
|
|
|
|
2012-02-24 17:52:49 +01:00
|
|
|
protected:
|
|
|
|
|
|
|
|
CacheSlavePort(const std::string &_name, BaseCache *_cache,
|
|
|
|
const std::string &_label);
|
2006-11-11 04:45:50 +01:00
|
|
|
|
2012-03-22 11:36:27 +01:00
|
|
|
/** A normal packet queue used to store responses. */
|
MEM: Separate requests and responses for timing accesses
This patch moves send/recvTiming and send/recvTimingSnoop from the
Port base class to the MasterPort and SlavePort, and also splits them
into separate member functions for requests and responses:
send/recvTimingReq, send/recvTimingResp, and send/recvTimingSnoopReq,
send/recvTimingSnoopResp. A master port sends requests and receives
responses, and also receives snoop requests and sends snoop
responses. A slave port has the reciprocal behaviour as it receives
requests and sends responses, and sends snoop requests and receives
snoop responses.
For all MemObjects that have only master ports or slave ports (but not
both), e.g. a CPU, or a PIO device, this patch merely adds more
clarity to what kind of access is taking place. For example, a CPU
port used to call sendTiming, and will now call
sendTimingReq. Similarly, a response previously came back through
recvTiming, which is now recvTimingResp. For the modules that have
both master and slave ports, e.g. the bus, the behaviour was
previously relying on branches based on pkt->isRequest(), and this is
now replaced with a direct call to the apprioriate member function
depending on the type of access. Please note that send/recvRetry is
still shared by all the timing accessors and remains in the Port base
class for now (to maintain the current bus functionality and avoid
changing the statistics of all regressions).
The packet queue is split into a MasterPort and SlavePort version to
facilitate the use of the new timing accessors. All uses of the
PacketQueue are updated accordingly.
With this patch, the type of packet (request or response) is now well
defined for each type of access, and asserts on pkt->isRequest() and
pkt->isResponse() are now moved to the appropriate send member
functions. It is also worth noting that sendTimingSnoopReq no longer
returns a boolean, as the semantics do not alow snoop requests to be
rejected or stalled. All these assumptions are now excplicitly part of
the port interface itself.
2012-05-01 19:40:42 +02:00
|
|
|
SlavePacketQueue queue;
|
2012-03-22 11:36:27 +01:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
bool blocked;
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
bool mustSendRetry;
|
|
|
|
|
2012-02-24 17:52:49 +01:00
|
|
|
private:
|
|
|
|
|
2012-07-09 18:35:31 +02:00
|
|
|
EventWrapper<SlavePort, &SlavePort::sendRetry> sendRetryEvent;
|
2007-05-14 07:58:06 +02:00
|
|
|
|
2006-06-28 20:35:00 +02:00
|
|
|
};
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2012-02-24 17:52:49 +01:00
|
|
|
CacheSlavePort *cpuSidePort;
|
|
|
|
CacheMasterPort *memSidePort;
|
2006-10-20 02:02:57 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
protected:
|
|
|
|
|
|
|
|
/** Miss status registers */
|
|
|
|
MSHRQueue mshrQueue;
|
|
|
|
|
|
|
|
/** Write/writeback buffer */
|
|
|
|
MSHRQueue writeBuffer;
|
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
MSHR *allocateBufferInternal(MSHRQueue *mq, Addr addr, int size,
|
|
|
|
PacketPtr pkt, Tick time, bool requestBus)
|
|
|
|
{
|
2007-06-25 15:47:05 +02:00
|
|
|
MSHR *mshr = mq->allocate(addr, size, pkt, time, order++);
|
2007-06-21 20:59:17 +02:00
|
|
|
|
|
|
|
if (mq->isFull()) {
|
|
|
|
setBlocked((BlockedCause)mq->index);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (requestBus) {
|
|
|
|
requestMemSideBus((RequestCause)mq->index, time);
|
|
|
|
}
|
|
|
|
|
|
|
|
return mshr;
|
|
|
|
}
|
|
|
|
|
2010-09-09 20:40:18 +02:00
|
|
|
void markInServiceInternal(MSHR *mshr, PacketPtr pkt)
|
2007-06-21 20:59:17 +02:00
|
|
|
{
|
|
|
|
MSHRQueue *mq = mshr->queue;
|
|
|
|
bool wasFull = mq->isFull();
|
2010-09-09 20:40:18 +02:00
|
|
|
mq->markInService(mshr, pkt);
|
2007-06-21 20:59:17 +02:00
|
|
|
if (wasFull && !mq->isFull()) {
|
|
|
|
clearBlocked((BlockedCause)mq->index);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-02 17:32:02 +01:00
|
|
|
/**
|
|
|
|
* Write back dirty blocks in the cache using functional accesses.
|
|
|
|
*/
|
|
|
|
virtual void memWriteback() = 0;
|
|
|
|
/**
|
|
|
|
* Invalidates all blocks in the cache.
|
|
|
|
*
|
|
|
|
* @warn Dirty cache lines will not be written back to
|
|
|
|
* memory. Make sure to call functionalWriteback() first if you
|
|
|
|
* want the to write them to memory.
|
|
|
|
*/
|
|
|
|
virtual void memInvalidate() = 0;
|
|
|
|
/**
|
|
|
|
* Determine if there are any dirty blocks in the cache.
|
|
|
|
*
|
|
|
|
* \return true if at least one block is dirty, false otherwise.
|
|
|
|
*/
|
|
|
|
virtual bool isDirty() const = 0;
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
/** Block size of this cache */
|
2009-06-05 08:21:12 +02:00
|
|
|
const unsigned blkSize;
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2007-06-22 18:24:07 +02:00
|
|
|
/**
|
|
|
|
* The latency of a hit in this device.
|
|
|
|
*/
|
2012-10-15 14:10:54 +02:00
|
|
|
const Cycles hitLatency;
|
2012-09-25 18:49:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The latency of sending reponse to its upper level cache/core on a
|
|
|
|
* linefill. In most contemporary processors, the return path on a cache
|
|
|
|
* miss is much quicker that the hit latency. The responseLatency parameter
|
|
|
|
* tries to capture this latency.
|
|
|
|
*/
|
2012-10-15 14:10:54 +02:00
|
|
|
const Cycles responseLatency;
|
2007-06-22 18:24:07 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
/** The number of targets for each MSHR. */
|
|
|
|
const int numTarget;
|
|
|
|
|
2008-07-16 20:10:33 +02:00
|
|
|
/** Do we forward snoops from mem side port through to cpu side port? */
|
2013-02-15 23:40:10 +01:00
|
|
|
const bool forwardSnoops;
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2011-03-18 01:20:19 +01:00
|
|
|
/** Is this cache a toplevel cache (e.g. L1, I/O cache). If so we should
|
|
|
|
* never try to forward ownership and similar optimizations to the cpu
|
|
|
|
* side */
|
2013-02-15 23:40:10 +01:00
|
|
|
const bool isTopLevel;
|
2011-03-18 01:20:19 +01:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/**
|
|
|
|
* Bit vector of the blocking reasons for the access path.
|
|
|
|
* @sa #BlockedCause
|
|
|
|
*/
|
|
|
|
uint8_t blocked;
|
|
|
|
|
2008-07-16 20:10:33 +02:00
|
|
|
/** Increasing order number assigned to each incoming request. */
|
|
|
|
uint64_t order;
|
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/** Stores time the cache blocked for statistics. */
|
2012-10-15 14:10:54 +02:00
|
|
|
Cycles blockedCycle;
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
/** Pointer to the MSHR that has no targets. */
|
|
|
|
MSHR *noTargetMSHR;
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
/** The number of misses to trigger an exit event. */
|
|
|
|
Counter missCount;
|
|
|
|
|
2008-07-16 20:10:33 +02:00
|
|
|
/**
|
|
|
|
* The address range to which the cache responds on the CPU side.
|
|
|
|
* Normally this is all possible memory addresses. */
|
2013-02-15 23:40:10 +01:00
|
|
|
const AddrRangeList addrRanges;
|
2008-07-16 20:10:33 +02:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
public:
|
2012-02-12 23:07:39 +01:00
|
|
|
/** System we are currently operating in. */
|
|
|
|
System *system;
|
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
// Statistics
|
|
|
|
/**
|
|
|
|
* @addtogroup CacheStatistics
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** Number of hits per thread for each type of command. @sa Packet::Command */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector hits[MemCmd::NUM_MEM_CMDS];
|
2006-06-28 17:02:14 +02:00
|
|
|
/** Number of hits for demand accesses. */
|
|
|
|
Stats::Formula demandHits;
|
|
|
|
/** Number of hit for all accesses. */
|
|
|
|
Stats::Formula overallHits;
|
|
|
|
|
|
|
|
/** Number of misses per thread for each type of command. @sa Packet::Command */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector misses[MemCmd::NUM_MEM_CMDS];
|
2006-06-28 17:02:14 +02:00
|
|
|
/** Number of misses for demand accesses. */
|
|
|
|
Stats::Formula demandMisses;
|
|
|
|
/** Number of misses for all accesses. */
|
|
|
|
Stats::Formula overallMisses;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total number of cycles per thread/command spent waiting for a miss.
|
|
|
|
* Used to calculate the average miss latency.
|
|
|
|
*/
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector missLatency[MemCmd::NUM_MEM_CMDS];
|
2006-06-28 17:02:14 +02:00
|
|
|
/** Total number of cycles spent waiting for demand misses. */
|
|
|
|
Stats::Formula demandMissLatency;
|
|
|
|
/** Total number of cycles spent waiting for all misses. */
|
|
|
|
Stats::Formula overallMissLatency;
|
|
|
|
|
|
|
|
/** The number of accesses per command and thread. */
|
2007-02-07 19:53:37 +01:00
|
|
|
Stats::Formula accesses[MemCmd::NUM_MEM_CMDS];
|
2006-06-28 17:02:14 +02:00
|
|
|
/** The number of demand accesses. */
|
|
|
|
Stats::Formula demandAccesses;
|
|
|
|
/** The number of overall accesses. */
|
|
|
|
Stats::Formula overallAccesses;
|
|
|
|
|
|
|
|
/** The miss rate per command and thread. */
|
2007-02-07 19:53:37 +01:00
|
|
|
Stats::Formula missRate[MemCmd::NUM_MEM_CMDS];
|
2006-06-28 17:02:14 +02:00
|
|
|
/** The miss rate of all demand accesses. */
|
|
|
|
Stats::Formula demandMissRate;
|
|
|
|
/** The miss rate for all accesses. */
|
|
|
|
Stats::Formula overallMissRate;
|
|
|
|
|
|
|
|
/** The average miss latency per command and thread. */
|
2007-02-07 19:53:37 +01:00
|
|
|
Stats::Formula avgMissLatency[MemCmd::NUM_MEM_CMDS];
|
2006-06-28 17:02:14 +02:00
|
|
|
/** The average miss latency for demand misses. */
|
|
|
|
Stats::Formula demandAvgMissLatency;
|
|
|
|
/** The average miss latency for all misses. */
|
|
|
|
Stats::Formula overallAvgMissLatency;
|
|
|
|
|
|
|
|
/** The total number of cycles blocked for each blocked cause. */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector blocked_cycles;
|
2006-06-28 17:02:14 +02:00
|
|
|
/** The number of times this cache blocked for each blocked cause. */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector blocked_causes;
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
/** The average number of cycles blocked for each blocked cause. */
|
|
|
|
Stats::Formula avg_blocked;
|
|
|
|
|
|
|
|
/** The number of fast writes (WH64) performed. */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Scalar fastWrites;
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
/** The number of cache copies performed. */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Scalar cacheCopies;
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
/** Number of blocks written back per thread. */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector writebacks;
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
/** Number of misses that hit in the MSHRs per command and thread. */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector mshr_hits[MemCmd::NUM_MEM_CMDS];
|
2007-06-18 02:27:53 +02:00
|
|
|
/** Demand misses that hit in the MSHRs. */
|
|
|
|
Stats::Formula demandMshrHits;
|
|
|
|
/** Total number of misses that hit in the MSHRs. */
|
|
|
|
Stats::Formula overallMshrHits;
|
|
|
|
|
|
|
|
/** Number of misses that miss in the MSHRs, per command and thread. */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector mshr_misses[MemCmd::NUM_MEM_CMDS];
|
2007-06-18 02:27:53 +02:00
|
|
|
/** Demand misses that miss in the MSHRs. */
|
|
|
|
Stats::Formula demandMshrMisses;
|
|
|
|
/** Total number of misses that miss in the MSHRs. */
|
|
|
|
Stats::Formula overallMshrMisses;
|
|
|
|
|
|
|
|
/** Number of misses that miss in the MSHRs, per command and thread. */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector mshr_uncacheable[MemCmd::NUM_MEM_CMDS];
|
2007-06-18 02:27:53 +02:00
|
|
|
/** Total number of misses that miss in the MSHRs. */
|
|
|
|
Stats::Formula overallMshrUncacheable;
|
|
|
|
|
|
|
|
/** Total cycle latency of each MSHR miss, per command and thread. */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector mshr_miss_latency[MemCmd::NUM_MEM_CMDS];
|
2007-06-18 02:27:53 +02:00
|
|
|
/** Total cycle latency of demand MSHR misses. */
|
|
|
|
Stats::Formula demandMshrMissLatency;
|
|
|
|
/** Total cycle latency of overall MSHR misses. */
|
|
|
|
Stats::Formula overallMshrMissLatency;
|
|
|
|
|
|
|
|
/** Total cycle latency of each MSHR miss, per command and thread. */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector mshr_uncacheable_lat[MemCmd::NUM_MEM_CMDS];
|
2007-06-18 02:27:53 +02:00
|
|
|
/** Total cycle latency of overall MSHR misses. */
|
|
|
|
Stats::Formula overallMshrUncacheableLatency;
|
|
|
|
|
2010-06-15 10:18:36 +02:00
|
|
|
#if 0
|
2007-06-18 02:27:53 +02:00
|
|
|
/** The total number of MSHR accesses per command and thread. */
|
|
|
|
Stats::Formula mshrAccesses[MemCmd::NUM_MEM_CMDS];
|
|
|
|
/** The total number of demand MSHR accesses. */
|
|
|
|
Stats::Formula demandMshrAccesses;
|
|
|
|
/** The total number of MSHR accesses. */
|
|
|
|
Stats::Formula overallMshrAccesses;
|
2010-06-15 10:18:36 +02:00
|
|
|
#endif
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
/** The miss rate in the MSHRs pre command and thread. */
|
|
|
|
Stats::Formula mshrMissRate[MemCmd::NUM_MEM_CMDS];
|
|
|
|
/** The demand miss rate in the MSHRs. */
|
|
|
|
Stats::Formula demandMshrMissRate;
|
|
|
|
/** The overall miss rate in the MSHRs. */
|
|
|
|
Stats::Formula overallMshrMissRate;
|
|
|
|
|
|
|
|
/** The average latency of an MSHR miss, per command and thread. */
|
|
|
|
Stats::Formula avgMshrMissLatency[MemCmd::NUM_MEM_CMDS];
|
|
|
|
/** The average latency of a demand MSHR miss. */
|
|
|
|
Stats::Formula demandAvgMshrMissLatency;
|
|
|
|
/** The average overall latency of an MSHR miss. */
|
|
|
|
Stats::Formula overallAvgMshrMissLatency;
|
|
|
|
|
|
|
|
/** The average latency of an MSHR miss, per command and thread. */
|
|
|
|
Stats::Formula avgMshrUncacheableLatency[MemCmd::NUM_MEM_CMDS];
|
|
|
|
/** The average overall latency of an MSHR miss. */
|
|
|
|
Stats::Formula overallAvgMshrUncacheableLatency;
|
|
|
|
|
|
|
|
/** The number of times a thread hit its MSHR cap. */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector mshr_cap_events;
|
2007-06-18 02:27:53 +02:00
|
|
|
/** The number of times software prefetches caused the MSHR to block. */
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Vector soft_prefetch_mshr_full;
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2009-03-06 04:09:53 +01:00
|
|
|
Stats::Scalar mshr_no_allocate_misses;
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/**
|
|
|
|
* @}
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Register stats for this object.
|
|
|
|
*/
|
|
|
|
virtual void regStats();
|
|
|
|
|
|
|
|
public:
|
2007-08-30 21:16:59 +02:00
|
|
|
typedef BaseCacheParams Params;
|
|
|
|
BaseCache(const Params *p);
|
|
|
|
~BaseCache() {}
|
2006-11-11 04:45:50 +01:00
|
|
|
|
2006-07-07 22:02:22 +02:00
|
|
|
virtual void init();
|
|
|
|
|
2012-10-15 14:12:35 +02:00
|
|
|
virtual BaseMasterPort &getMasterPort(const std::string &if_name,
|
|
|
|
PortID idx = InvalidPortID);
|
|
|
|
virtual BaseSlavePort &getSlavePort(const std::string &if_name,
|
|
|
|
PortID idx = InvalidPortID);
|
MEM: Introduce the master/slave port sub-classes in C++
This patch introduces the notion of a master and slave port in the C++
code, thus bringing the previous classification from the Python
classes into the corresponding simulation objects and memory objects.
The patch enables us to classify behaviours into the two bins and add
assumptions and enfore compliance, also simplifying the two
interfaces. As a starting point, isSnooping is confined to a master
port, and getAddrRanges to slave ports. More of these specilisations
are to come in later patches.
The getPort function is not getMasterPort and getSlavePort, and
returns a port reference rather than a pointer as NULL would never be
a valid return value. The default implementation of these two
functions is placed in MemObject, and calls fatal.
The one drawback with this specific patch is that it requires some
code duplication, e.g. QueuedPort becomes QueuedMasterPort and
QueuedSlavePort, and BusPort becomes BusMasterPort and BusSlavePort
(avoiding multiple inheritance). With the later introduction of the
port interfaces, moving the functionality outside the port itself, a
lot of the duplicated code will disappear again.
2012-03-30 15:40:11 +02:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/**
|
|
|
|
* Query block size of a cache.
|
|
|
|
* @return The block size
|
|
|
|
*/
|
2009-06-05 08:21:12 +02:00
|
|
|
unsigned
|
|
|
|
getBlockSize() const
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
|
|
|
return blkSize;
|
|
|
|
}
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2009-09-26 19:50:50 +02:00
|
|
|
Addr blockAlign(Addr addr) const { return (addr & ~(Addr(blkSize - 1))); }
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
|
2012-03-09 15:59:25 +01:00
|
|
|
const AddrRangeList &getAddrRanges() const { return addrRanges; }
|
2008-07-16 20:10:33 +02:00
|
|
|
|
2007-06-21 20:59:17 +02:00
|
|
|
MSHR *allocateMissBuffer(PacketPtr pkt, Tick time, bool requestBus)
|
|
|
|
{
|
2007-07-21 22:45:17 +02:00
|
|
|
assert(!pkt->req->isUncacheable());
|
2007-06-21 20:59:17 +02:00
|
|
|
return allocateBufferInternal(&mshrQueue,
|
|
|
|
blockAlign(pkt->getAddr()), blkSize,
|
|
|
|
pkt, time, requestBus);
|
|
|
|
}
|
|
|
|
|
2007-07-21 22:45:17 +02:00
|
|
|
MSHR *allocateWriteBuffer(PacketPtr pkt, Tick time, bool requestBus)
|
2007-06-21 20:59:17 +02:00
|
|
|
{
|
2007-07-21 22:45:17 +02:00
|
|
|
assert(pkt->isWrite() && !pkt->isRead());
|
|
|
|
return allocateBufferInternal(&writeBuffer,
|
|
|
|
pkt->getAddr(), pkt->getSize(),
|
2007-06-21 20:59:17 +02:00
|
|
|
pkt, time, requestBus);
|
|
|
|
}
|
|
|
|
|
2007-07-21 22:45:17 +02:00
|
|
|
MSHR *allocateUncachedReadBuffer(PacketPtr pkt, Tick time, bool requestBus)
|
|
|
|
{
|
|
|
|
assert(pkt->req->isUncacheable());
|
|
|
|
assert(pkt->isRead());
|
|
|
|
return allocateBufferInternal(&mshrQueue,
|
|
|
|
pkt->getAddr(), pkt->getSize(),
|
|
|
|
pkt, time, requestBus);
|
|
|
|
}
|
2007-06-21 20:59:17 +02:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/**
|
|
|
|
* Returns true if the cache is blocked for accesses.
|
|
|
|
*/
|
2013-02-15 23:40:10 +01:00
|
|
|
bool isBlocked() const
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
|
|
|
return blocked != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks the access path of the cache as blocked for the given cause. This
|
|
|
|
* also sets the blocked flag in the slave interface.
|
|
|
|
* @param cause The reason for the cache blocking.
|
|
|
|
*/
|
|
|
|
void setBlocked(BlockedCause cause)
|
|
|
|
{
|
|
|
|
uint8_t flag = 1 << cause;
|
|
|
|
if (blocked == 0) {
|
|
|
|
blocked_causes[cause]++;
|
2012-10-15 14:10:54 +02:00
|
|
|
blockedCycle = curCycle();
|
2007-06-22 18:24:07 +02:00
|
|
|
cpuSidePort->setBlocked();
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
2007-06-22 18:24:07 +02:00
|
|
|
blocked |= flag;
|
|
|
|
DPRINTF(Cache,"Blocking for cause %d, mask=%d\n", cause, blocked);
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Marks the cache as unblocked for the given cause. This also clears the
|
|
|
|
* blocked flags in the appropriate interfaces.
|
|
|
|
* @param cause The newly unblocked cause.
|
|
|
|
* @warning Calling this function can cause a blocked request on the bus to
|
|
|
|
* access the cache. The cache must be in a state to handle that request.
|
|
|
|
*/
|
|
|
|
void clearBlocked(BlockedCause cause)
|
|
|
|
{
|
|
|
|
uint8_t flag = 1 << cause;
|
2007-06-22 18:24:07 +02:00
|
|
|
blocked &= ~flag;
|
|
|
|
DPRINTF(Cache,"Unblocking for cause %d, mask=%d\n", cause, blocked);
|
|
|
|
if (blocked == 0) {
|
2012-10-15 14:10:54 +02:00
|
|
|
blocked_cycles[cause] += curCycle() - blockedCycle;
|
2007-06-22 18:24:07 +02:00
|
|
|
cpuSidePort->clearBlocked();
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Request the master bus for the given cause and time.
|
|
|
|
* @param cause The reason for the request.
|
|
|
|
* @param time The time to make the request.
|
|
|
|
*/
|
2007-05-19 07:35:04 +02:00
|
|
|
void requestMemSideBus(RequestCause cause, Tick time)
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2007-05-19 07:35:04 +02:00
|
|
|
memSidePort->requestBus(cause, time);
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clear the master bus request for the given cause.
|
|
|
|
* @param cause The request reason to clear.
|
|
|
|
*/
|
2007-05-19 07:35:04 +02:00
|
|
|
void deassertMemSideBusRequest(RequestCause cause)
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2009-02-16 17:56:40 +01:00
|
|
|
// Obsolete... we no longer signal bus requests explicitly so
|
|
|
|
// we can't deassert them. Leaving this in as a no-op since
|
|
|
|
// the prefetcher calls it to indicate that it no longer wants
|
|
|
|
// to request a prefetch, and someday that might be
|
|
|
|
// interesting again.
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
2012-11-02 17:32:01 +01:00
|
|
|
virtual unsigned int drain(DrainManager *dm);
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2013-02-15 23:40:10 +01:00
|
|
|
virtual bool inCache(Addr addr) const = 0;
|
2006-11-07 20:25:54 +01:00
|
|
|
|
2013-02-15 23:40:10 +01:00
|
|
|
virtual bool inMissQueue(Addr addr) const = 0;
|
2006-11-07 20:25:54 +01:00
|
|
|
|
2012-02-12 23:07:39 +01:00
|
|
|
void incMissCount(PacketPtr pkt)
|
2006-11-07 20:25:54 +01:00
|
|
|
{
|
2012-02-12 23:07:39 +01:00
|
|
|
assert(pkt->req->masterId() < system->maxMasters());
|
|
|
|
misses[pkt->cmdToIndex()][pkt->req->masterId()]++;
|
2006-11-07 20:25:54 +01:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
if (missCount) {
|
|
|
|
--missCount;
|
|
|
|
if (missCount == 0)
|
|
|
|
exitSimLoop("A cache reached the maximum miss count");
|
2006-11-07 20:25:54 +01:00
|
|
|
}
|
|
|
|
}
|
2012-02-12 23:07:39 +01:00
|
|
|
void incHitCount(PacketPtr pkt)
|
2010-02-23 18:34:22 +01:00
|
|
|
{
|
2012-02-12 23:07:39 +01:00
|
|
|
assert(pkt->req->masterId() < system->maxMasters());
|
|
|
|
hits[pkt->cmdToIndex()][pkt->req->masterId()]++;
|
2010-02-23 18:34:22 +01:00
|
|
|
|
|
|
|
}
|
2006-12-19 06:53:06 +01:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__BASE_CACHE_HH__
|