base.hh

来自「M5,一个功能强大的多处理器系统模拟器.很多针对处理器架构,性能的研究都使用它作」· HH 代码 · 共 496 行

HH
496
字号
/* * Copyright (c) 2003, 2004, 2005 * The Regents of The University of Michigan * All Rights Reserved * * This code is part of the M5 simulator. * * Permission is granted to use, copy, create derivative works and * redistribute this software and such derivative works for any * purpose, so long as the copyright notice above, this grant of * permission, and the disclaimer below appear in all copies made; and * so long as the name of The University of Michigan is not used in * any advertising or publicity pertaining to the use or distribution * of this software without specific, written prior authorization. * * THIS SOFTWARE IS PROVIDED AS IS, WITHOUT REPRESENTATION FROM THE * UNIVERSITY OF MICHIGAN AS TO ITS FITNESS FOR ANY PURPOSE, AND * WITHOUT WARRANTY BY THE UNIVERSITY OF MICHIGAN OF ANY KIND, EITHER * EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE. THE REGENTS OF THE UNIVERSITY OF MICHIGAN SHALL NOT BE * LIABLE FOR ANY DAMAGES, INCLUDING DIRECT, SPECIAL, INDIRECT, * INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WITH RESPECT TO ANY CLAIM * ARISING OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE, EVEN * IF IT HAS BEEN OR IS HEREAFTER ADVISED OF THE POSSIBILITY OF SUCH * DAMAGES. * * Authors: Erik G. Hallnor *          Steven K. Reinhardt *          Ronald G. Dreslinski *//** * @file * Declares a basic cache interface BaseCache. */#ifndef __BASE_CACHE_HH__#define __BASE_CACHE_HH__#include <vector>#include <string>#include <list>#include <algorithm>#include <inttypes.h>#include "base/misc.hh"#include "base/statistics.hh"#include "base/trace.hh"#include "mem/cache/mshr_queue.hh"#include "mem/mem_object.hh"#include "mem/packet.hh"#include "mem/tport.hh"#include "mem/request.hh"#include "params/BaseCache.hh"#include "sim/eventq.hh"#include "sim/sim_exit.hh"class MSHR;/** * A basic cache interface. Implements some common functions for speed. */class BaseCache : public MemObject{    /**     * Indexes to enumerate the MSHR queues.     */    enum MSHRQueueIndex {        MSHRQueue_MSHRs,        MSHRQueue_WriteBuffer    };    /**     * Reasons for caches to be blocked.     */    enum BlockedCause {        Blocked_NoMSHRs = MSHRQueue_MSHRs,        Blocked_NoWBBuffers = MSHRQueue_WriteBuffer,        Blocked_NoTargets,        NUM_BLOCKED_CAUSES    };  public:    /**     * Reasons for cache to request a bus.     */    enum RequestCause {        Request_MSHR = MSHRQueue_MSHRs,        Request_WB = MSHRQueue_WriteBuffer,        Request_PF,        NUM_REQUEST_CAUSES    };  private:    class CachePort : public SimpleTimingPort    {      public:        BaseCache *cache;      protected:        CachePort(const std::string &_name, BaseCache *_cache,                  const std::string &_label,                  std::vector<Range<Addr> > filter_ranges);        virtual void recvStatusChange(Status status);        virtual int deviceBlockSize();        bool recvRetryCommon();        typedef EventWrapper<Port, &Port::sendRetry>            SendRetryEvent;        const std::string label;      public:        void setOtherPort(CachePort *_otherPort) { otherPort = _otherPort; }        void setBlocked();        void clearBlocked();        bool checkFunctional(PacketPtr pkt);        CachePort *otherPort;        bool blocked;        bool mustSendRetry;        /** filter ranges */        std::vector<Range<Addr> > filterRanges;        void requestBus(RequestCause cause, Tick time)        {            DPRINTF(CachePort, "Asserting bus request for cause %d\n", cause);            if (!waitingOnRetry) {                schedSendEvent(time);            }        }        void respond(PacketPtr pkt, Tick time) {            schedSendTiming(pkt, time);        }    };  public: //Made public so coherence can get at it.    CachePort *cpuSidePort;    CachePort *memSidePort;  protected:    /** Miss status registers */    MSHRQueue mshrQueue;    /** Write/writeback buffer */    MSHRQueue writeBuffer;    MSHR *allocateBufferInternal(MSHRQueue *mq, Addr addr, int size,                                 PacketPtr pkt, Tick time, bool requestBus)    {        MSHR *mshr = mq->allocate(addr, size, pkt, time, order++);        if (mq->isFull()) {            setBlocked((BlockedCause)mq->index);        }        if (requestBus) {            requestMemSideBus((RequestCause)mq->index, time);        }        return mshr;    }    void markInServiceInternal(MSHR *mshr)    {        MSHRQueue *mq = mshr->queue;        bool wasFull = mq->isFull();        mq->markInService(mshr);        if (wasFull && !mq->isFull()) {            clearBlocked((BlockedCause)mq->index);        }    }    /** Block size of this cache */    const int blkSize;    /**     * The latency of a hit in this device.     */    int hitLatency;    /** The number of targets for each MSHR. */    const int numTarget;    /** Increasing order number assigned to each incoming request. */    uint64_t order;    /**     * Bit vector of the blocking reasons for the access path.     * @sa #BlockedCause     */    uint8_t blocked;    /** Stores time the cache blocked for statistics. */    Tick blockedCycle;    /** Pointer to the MSHR that has no targets. */    MSHR *noTargetMSHR;    /** The number of misses to trigger an exit event. */    Counter missCount;    /** The drain event. */    Event *drainEvent;  public:    // Statistics    /**     * @addtogroup CacheStatistics     * @{     */    /** Number of hits per thread for each type of command. @sa Packet::Command */    Stats::Vector<> hits[MemCmd::NUM_MEM_CMDS];    /** 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 */    Stats::Vector<> misses[MemCmd::NUM_MEM_CMDS];    /** 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.     */    Stats::Vector<> missLatency[MemCmd::NUM_MEM_CMDS];    /** 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. */    Stats::Formula accesses[MemCmd::NUM_MEM_CMDS];    /** The number of demand accesses. */    Stats::Formula demandAccesses;    /** The number of overall accesses. */    Stats::Formula overallAccesses;    /** The miss rate per command and thread. */    Stats::Formula missRate[MemCmd::NUM_MEM_CMDS];    /** 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. */    Stats::Formula avgMissLatency[MemCmd::NUM_MEM_CMDS];    /** 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. */    Stats::Vector<> blocked_cycles;    /** The number of times this cache blocked for each blocked cause. */    Stats::Vector<> blocked_causes;    /** The average number of cycles blocked for each blocked cause. */    Stats::Formula avg_blocked;    /** The number of fast writes (WH64) performed. */    Stats::Scalar<> fastWrites;    /** The number of cache copies performed. */    Stats::Scalar<> cacheCopies;    /** Number of blocks written back per thread. */    Stats::Vector<> writebacks;    /** Number of misses that hit in the MSHRs per command and thread. */    Stats::Vector<> mshr_hits[MemCmd::NUM_MEM_CMDS];    /** 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. */    Stats::Vector<> mshr_misses[MemCmd::NUM_MEM_CMDS];    /** 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. */    Stats::Vector<> mshr_uncacheable[MemCmd::NUM_MEM_CMDS];    /** Total number of misses that miss in the MSHRs. */    Stats::Formula overallMshrUncacheable;    /** Total cycle latency of each MSHR miss, per command and thread. */    Stats::Vector<> mshr_miss_latency[MemCmd::NUM_MEM_CMDS];    /** 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. */    Stats::Vector<> mshr_uncacheable_lat[MemCmd::NUM_MEM_CMDS];    /** Total cycle latency of overall MSHR misses. */    Stats::Formula overallMshrUncacheableLatency;    /** 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;    /** 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. */    Stats::Vector<> mshr_cap_events;    /** The number of times software prefetches caused the MSHR to block. */    Stats::Vector<> soft_prefetch_mshr_full;    Stats::Scalar<> mshr_no_allocate_misses;    /**     * @}     */    /**     * Register stats for this object.     */    virtual void regStats();  public:    typedef BaseCacheParams Params;    BaseCache(const Params *p);    ~BaseCache() {}    virtual void init();    /**     * Query block size of a cache.     * @return  The block size     */    int getBlockSize() const    {        return blkSize;    }    Addr blockAlign(Addr addr) const { return (addr & ~(blkSize - 1)); }    MSHR *allocateMissBuffer(PacketPtr pkt, Tick time, bool requestBus)    {        assert(!pkt->req->isUncacheable());        return allocateBufferInternal(&mshrQueue,                                      blockAlign(pkt->getAddr()), blkSize,                                      pkt, time, requestBus);    }    MSHR *allocateWriteBuffer(PacketPtr pkt, Tick time, bool requestBus)    {        assert(pkt->isWrite() && !pkt->isRead());        return allocateBufferInternal(&writeBuffer,                                      pkt->getAddr(), pkt->getSize(),                                      pkt, time, requestBus);    }    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);    }    /**     * Returns true if the cache is blocked for accesses.     */    bool isBlocked()    {        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]++;            blockedCycle = curTick;            cpuSidePort->setBlocked();        }        blocked |= flag;        DPRINTF(Cache,"Blocking for cause %d, mask=%d\n", cause, blocked);    }    /**     * 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;        blocked &= ~flag;        DPRINTF(Cache,"Unblocking for cause %d, mask=%d\n", cause, blocked);        if (blocked == 0) {            blocked_cycles[cause] += curTick - blockedCycle;            cpuSidePort->clearBlocked();        }    }    Tick nextMSHRReadyTime()    {        return std::min(mshrQueue.nextMSHRReadyTime(),                        writeBuffer.nextMSHRReadyTime());    }    /**     * 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.     */    void requestMemSideBus(RequestCause cause, Tick time)    {        memSidePort->requestBus(cause, time);    }    /**     * Clear the master bus request for the given cause.     * @param cause The request reason to clear.     */    void deassertMemSideBusRequest(RequestCause cause)    {        // obsolete!!        assert(false);        // memSidePort->deassertBusRequest(cause);        // checkDrain();    }    virtual unsigned int drain(Event *de);    virtual bool inCache(Addr addr) = 0;    virtual bool inMissQueue(Addr addr) = 0;    void incMissCount(PacketPtr pkt)    {        misses[pkt->cmdToIndex()][0/*pkt->req->getThreadNum()*/]++;        if (missCount) {            --missCount;            if (missCount == 0)                exitSimLoop("A cache reached the maximum miss count");        }    }};#endif //__BASE_CACHE_HH__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?