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
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Miss Status and Handling Register (MSHR) declaration.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MSHR_HH__
|
|
|
|
#define __MSHR_HH__
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
2008-01-02 21:20:15 +01:00
|
|
|
#include "base/printable.hh"
|
2007-06-18 02:27:53 +02:00
|
|
|
#include "mem/packet.hh"
|
|
|
|
|
|
|
|
class CacheBlk;
|
|
|
|
class MSHRQueue;
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Miss Status and handling Register. This class keeps all the information
|
2006-10-23 05:38:34 +02:00
|
|
|
* needed to handle a cache miss including a list of target requests.
|
2006-06-28 17:02:14 +02:00
|
|
|
*/
|
2008-01-02 21:20:15 +01:00
|
|
|
class MSHR : public Packet::SenderState, public Printable
|
2007-06-18 02:27:53 +02:00
|
|
|
{
|
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
public:
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
class Target {
|
|
|
|
public:
|
2007-06-30 22:34:16 +02:00
|
|
|
Tick recvTime; //!< Time when request was received (for stats)
|
|
|
|
Tick readyTime; //!< Time when request is ready to be serviced
|
2007-06-25 15:47:05 +02:00
|
|
|
Counter order; //!< Global order (for memory consistency mgmt)
|
2007-06-18 02:27:53 +02:00
|
|
|
PacketPtr pkt; //!< Pending request packet.
|
|
|
|
bool cpuSide; //!< Did request come from cpu side or mem side?
|
|
|
|
|
2008-01-02 21:20:15 +01:00
|
|
|
bool isCpuSide() const { return cpuSide; }
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2007-06-30 22:34:16 +02:00
|
|
|
Target(PacketPtr _pkt, Tick _readyTime, Counter _order, bool _cpuSide)
|
|
|
|
: recvTime(curTick), readyTime(_readyTime), order(_order),
|
|
|
|
pkt(_pkt), cpuSide(_cpuSide)
|
2007-06-18 02:27:53 +02:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2007-07-22 03:18:42 +02:00
|
|
|
class TargetList : public std::list<Target> {
|
|
|
|
/** Target list iterator. */
|
|
|
|
typedef std::list<Target>::iterator Iterator;
|
2008-01-02 21:20:15 +01:00
|
|
|
typedef std::list<Target>::const_iterator ConstIterator;
|
2007-07-22 03:18:42 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
bool needsExclusive;
|
|
|
|
bool hasUpgrade;
|
|
|
|
|
|
|
|
TargetList();
|
|
|
|
void resetFlags() { needsExclusive = hasUpgrade = false; }
|
|
|
|
bool isReset() { return !needsExclusive && !hasUpgrade; }
|
|
|
|
void add(PacketPtr pkt, Tick readyTime, Counter order, bool cpuSide);
|
|
|
|
void replaceUpgrades();
|
2007-07-23 06:43:38 +02:00
|
|
|
void clearDownstreamPending();
|
2007-07-27 21:46:45 +02:00
|
|
|
bool checkFunctional(PacketPtr pkt);
|
2008-01-02 21:20:15 +01:00
|
|
|
void print(std::ostream &os, int verbosity,
|
|
|
|
const std::string &prefix) const;
|
2007-07-22 03:18:42 +02:00
|
|
|
};
|
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/** A list of MSHRs. */
|
|
|
|
typedef std::list<MSHR *> List;
|
|
|
|
/** MSHR list iterator. */
|
|
|
|
typedef List::iterator Iterator;
|
|
|
|
/** MSHR list const_iterator. */
|
|
|
|
typedef List::const_iterator ConstIterator;
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
/** Pointer to queue containing this MSHR. */
|
|
|
|
MSHRQueue *queue;
|
|
|
|
|
2007-06-25 15:47:05 +02:00
|
|
|
/** Cycle when ready to issue */
|
2007-06-30 22:34:16 +02:00
|
|
|
Tick readyTime;
|
2007-06-25 15:47:05 +02:00
|
|
|
|
|
|
|
/** Order number assigned by the miss queue. */
|
|
|
|
Counter order;
|
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
/** Address of the request. */
|
2006-06-28 17:02:14 +02:00
|
|
|
Addr addr;
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
/** Size of the request. */
|
|
|
|
int size;
|
|
|
|
|
2006-10-23 05:38:34 +02:00
|
|
|
/** True if the request has been sent to the bus. */
|
2006-06-28 17:02:14 +02:00
|
|
|
bool inService;
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
/** True if we will be putting the returned block in the cache */
|
|
|
|
bool isCacheFill;
|
2007-07-22 03:18:42 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
/** True if we need to get an exclusive copy of the block. */
|
2008-01-02 21:20:15 +01:00
|
|
|
bool needsExclusive() const { return targets->needsExclusive; }
|
2007-06-25 02:32:31 +02:00
|
|
|
|
2007-06-18 02:27:53 +02:00
|
|
|
/** True if the request is uncacheable */
|
|
|
|
bool _isUncacheable;
|
|
|
|
|
2007-07-23 06:43:38 +02:00
|
|
|
bool downstreamPending;
|
|
|
|
|
2007-06-25 02:32:31 +02:00
|
|
|
bool pendingInvalidate;
|
2007-06-27 07:23:10 +02:00
|
|
|
bool pendingShared;
|
2007-06-25 02:32:31 +02:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/** Thread number of the miss. */
|
2007-06-18 02:27:53 +02:00
|
|
|
short threadNum;
|
2006-06-28 17:02:14 +02:00
|
|
|
/** The number of currently allocated targets. */
|
|
|
|
short ntargets;
|
|
|
|
|
2007-06-26 23:53:15 +02:00
|
|
|
|
|
|
|
/** Data buffer (if needed). Currently used only for pending
|
|
|
|
* upgrade handling. */
|
|
|
|
uint8_t *data;
|
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/**
|
|
|
|
* Pointer to this MSHR on the ready list.
|
|
|
|
* @sa MissQueue, MSHRQueue::readyList
|
|
|
|
*/
|
|
|
|
Iterator readyIter;
|
2007-06-18 02:27:53 +02:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/**
|
|
|
|
* Pointer to this MSHR on the allocated list.
|
|
|
|
* @sa MissQueue, MSHRQueue::allocatedList
|
|
|
|
*/
|
|
|
|
Iterator allocIter;
|
|
|
|
|
|
|
|
private:
|
2006-10-23 05:38:34 +02:00
|
|
|
/** List of all requests that match the address */
|
2007-07-22 03:18:42 +02:00
|
|
|
TargetList *targets;
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2007-07-22 03:18:42 +02:00
|
|
|
TargetList *deferredTargets;
|
2007-06-25 02:32:31 +02:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
public:
|
2007-06-18 02:27:53 +02:00
|
|
|
|
|
|
|
bool isUncacheable() { return _isUncacheable; }
|
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/**
|
|
|
|
* Allocate a miss to this MSHR.
|
2006-10-23 05:38:34 +02:00
|
|
|
* @param cmd The requesting command.
|
2006-06-28 17:02:14 +02:00
|
|
|
* @param addr The address of the miss.
|
|
|
|
* @param asid The address space id of the miss.
|
2006-10-23 05:38:34 +02:00
|
|
|
* @param size The number of bytes to request.
|
2006-08-15 01:25:07 +02:00
|
|
|
* @param pkt The original miss.
|
2006-06-28 17:02:14 +02:00
|
|
|
*/
|
2007-06-25 15:47:05 +02:00
|
|
|
void allocate(Addr addr, int size, PacketPtr pkt,
|
|
|
|
Tick when, Counter _order);
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2007-07-23 06:43:38 +02:00
|
|
|
bool markInService();
|
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/**
|
|
|
|
* Mark this MSHR as free.
|
|
|
|
*/
|
|
|
|
void deallocate();
|
|
|
|
|
|
|
|
/**
|
2006-10-23 05:38:34 +02:00
|
|
|
* Add a request to the list of targets.
|
2006-06-28 17:02:14 +02:00
|
|
|
* @param target The target.
|
|
|
|
*/
|
2007-06-25 15:47:05 +02:00
|
|
|
void allocateTarget(PacketPtr target, Tick when, Counter order);
|
2007-07-21 22:45:17 +02:00
|
|
|
bool handleSnoop(PacketPtr target, Counter order);
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
/** A simple constructor. */
|
|
|
|
MSHR();
|
|
|
|
/** A simple destructor. */
|
|
|
|
~MSHR();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the current number of allocated targets.
|
|
|
|
* @return The current number of allocated targets.
|
|
|
|
*/
|
2007-06-22 18:24:07 +02:00
|
|
|
int getNumTargets() { return ntargets; }
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a pointer to the target list.
|
|
|
|
* @return a pointer to the target list.
|
|
|
|
*/
|
2007-07-22 03:18:42 +02:00
|
|
|
TargetList *getTargetList() { return targets; }
|
2006-06-28 17:02:14 +02:00
|
|
|
|
2007-07-17 15:23:11 +02:00
|
|
|
/**
|
|
|
|
* Returns true if there are targets left.
|
|
|
|
* @return true if there are targets
|
|
|
|
*/
|
2007-07-22 03:18:42 +02:00
|
|
|
bool hasTargets() { return !targets->empty(); }
|
2007-07-17 15:23:11 +02:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/**
|
|
|
|
* Returns a reference to the first target.
|
|
|
|
* @return A pointer to the first target.
|
|
|
|
*/
|
2007-07-22 03:18:42 +02:00
|
|
|
Target *getTarget() { assert(hasTargets()); return &targets->front(); }
|
2006-06-28 17:02:14 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Pop first target.
|
|
|
|
*/
|
|
|
|
void popTarget()
|
|
|
|
{
|
|
|
|
--ntargets;
|
2007-07-22 03:18:42 +02:00
|
|
|
targets->pop_front();
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
2007-06-22 18:24:07 +02:00
|
|
|
bool isSimpleForward()
|
2006-06-28 17:02:14 +02:00
|
|
|
{
|
2007-06-22 18:24:07 +02:00
|
|
|
if (getNumTargets() != 1)
|
|
|
|
return false;
|
|
|
|
Target *tgt = getTarget();
|
|
|
|
return tgt->isCpuSide() && !tgt->pkt->needsResponse();
|
2006-06-28 17:02:14 +02:00
|
|
|
}
|
|
|
|
|
2007-06-25 02:32:31 +02:00
|
|
|
bool promoteDeferredTargets();
|
|
|
|
|
2007-06-27 08:30:30 +02:00
|
|
|
void handleFill(Packet *pkt, CacheBlk *blk);
|
2007-06-26 23:53:15 +02:00
|
|
|
|
2008-01-02 21:20:15 +01:00
|
|
|
bool checkFunctional(PacketPtr pkt);
|
2007-07-27 21:46:45 +02:00
|
|
|
|
2006-06-28 17:02:14 +02:00
|
|
|
/**
|
2008-01-02 21:20:15 +01:00
|
|
|
* Prints the contents of this MSHR for debugging.
|
2006-06-28 17:02:14 +02:00
|
|
|
*/
|
2008-01-02 21:20:15 +01:00
|
|
|
void print(std::ostream &os,
|
|
|
|
int verbosity = 0,
|
|
|
|
const std::string &prefix = "") const;
|
2006-06-28 17:02:14 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__MSHR_HH__
|