base.hh revision 13416
12810SN/A/*
212724Snikos.nikoleris@arm.com * Copyright (c) 2012-2013, 2015-2016, 2018 ARM Limited
38856Sandreas.hansson@arm.com * All rights reserved.
48856Sandreas.hansson@arm.com *
58856Sandreas.hansson@arm.com * The license below extends only to copyright in the software and shall
68856Sandreas.hansson@arm.com * not be construed as granting a license to any other intellectual
78856Sandreas.hansson@arm.com * property including but not limited to intellectual property relating
88856Sandreas.hansson@arm.com * to a hardware implementation of the functionality of the software
98856Sandreas.hansson@arm.com * licensed hereunder.  You may use the software subject to the license
108856Sandreas.hansson@arm.com * terms below provided that you ensure that this notice is replicated
118856Sandreas.hansson@arm.com * unmodified and in its entirety in all distributions of the software,
128856Sandreas.hansson@arm.com * modified or unmodified, in source code or in binary form.
138856Sandreas.hansson@arm.com *
142810SN/A * Copyright (c) 2003-2005 The Regents of The University of Michigan
152810SN/A * All rights reserved.
162810SN/A *
172810SN/A * Redistribution and use in source and binary forms, with or without
182810SN/A * modification, are permitted provided that the following conditions are
192810SN/A * met: redistributions of source code must retain the above copyright
202810SN/A * notice, this list of conditions and the following disclaimer;
212810SN/A * redistributions in binary form must reproduce the above copyright
222810SN/A * notice, this list of conditions and the following disclaimer in the
232810SN/A * documentation and/or other materials provided with the distribution;
242810SN/A * neither the name of the copyright holders nor the names of its
252810SN/A * contributors may be used to endorse or promote products derived from
262810SN/A * this software without specific prior written permission.
272810SN/A *
282810SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
292810SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
302810SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
312810SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
322810SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
332810SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
342810SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
352810SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
362810SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
372810SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
382810SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
392810SN/A *
402810SN/A * Authors: Erik Hallnor
414458SN/A *          Steve Reinhardt
424458SN/A *          Ron Dreslinski
4312724Snikos.nikoleris@arm.com *          Andreas Hansson
4412724Snikos.nikoleris@arm.com *          Nikos Nikoleris
452810SN/A */
462810SN/A
472810SN/A/**
482810SN/A * @file
492810SN/A * Declares a basic cache interface BaseCache.
502810SN/A */
512810SN/A
5211051Sandreas.hansson@arm.com#ifndef __MEM_CACHE_BASE_HH__
5311051Sandreas.hansson@arm.com#define __MEM_CACHE_BASE_HH__
542810SN/A
5512724Snikos.nikoleris@arm.com#include <cassert>
5612724Snikos.nikoleris@arm.com#include <cstdint>
577676Snate@binkert.org#include <string>
582810SN/A
5912724Snikos.nikoleris@arm.com#include "base/addr_range.hh"
602810SN/A#include "base/statistics.hh"
612810SN/A#include "base/trace.hh"
626215Snate@binkert.org#include "base/types.hh"
638232Snate@binkert.org#include "debug/Cache.hh"
648232Snate@binkert.org#include "debug/CachePort.hh"
6512724Snikos.nikoleris@arm.com#include "enums/Clusivity.hh"
6613223Sodanrc@yahoo.com.br#include "mem/cache/cache_blk.hh"
675338Sstever@gmail.com#include "mem/cache/mshr_queue.hh"
6812724Snikos.nikoleris@arm.com#include "mem/cache/tags/base.hh"
6911375Sandreas.hansson@arm.com#include "mem/cache/write_queue.hh"
7012724Snikos.nikoleris@arm.com#include "mem/cache/write_queue_entry.hh"
712810SN/A#include "mem/mem_object.hh"
722810SN/A#include "mem/packet.hh"
7312724Snikos.nikoleris@arm.com#include "mem/packet_queue.hh"
748914Sandreas.hansson@arm.com#include "mem/qport.hh"
758229Snate@binkert.org#include "mem/request.hh"
7613352Snikos.nikoleris@arm.com#include "params/WriteAllocator.hh"
772811SN/A#include "sim/eventq.hh"
7813416Sjavier.bueno@metempsy.com#include "sim/probe/probe.hh"
7912724Snikos.nikoleris@arm.com#include "sim/serialize.hh"
804626SN/A#include "sim/sim_exit.hh"
818833Sdam.sunwoo@arm.com#include "sim/system.hh"
822810SN/A
8312724Snikos.nikoleris@arm.comclass BaseMasterPort;
8412724Snikos.nikoleris@arm.comclass BasePrefetcher;
8512724Snikos.nikoleris@arm.comclass BaseSlavePort;
8612724Snikos.nikoleris@arm.comclass MSHR;
8712724Snikos.nikoleris@arm.comclass MasterPort;
8812724Snikos.nikoleris@arm.comclass QueueEntry;
8912724Snikos.nikoleris@arm.comstruct BaseCacheParams;
9012724Snikos.nikoleris@arm.com
912810SN/A/**
922810SN/A * A basic cache interface. Implements some common functions for speed.
932810SN/A */
942810SN/Aclass BaseCache : public MemObject
952810SN/A{
9611375Sandreas.hansson@arm.com  protected:
974628SN/A    /**
984628SN/A     * Indexes to enumerate the MSHR queues.
994628SN/A     */
1004628SN/A    enum MSHRQueueIndex {
1014628SN/A        MSHRQueue_MSHRs,
1024628SN/A        MSHRQueue_WriteBuffer
1034628SN/A    };
1044628SN/A
1058737Skoansin.tan@gmail.com  public:
1064628SN/A    /**
1074628SN/A     * Reasons for caches to be blocked.
1084628SN/A     */
1094628SN/A    enum BlockedCause {
1104628SN/A        Blocked_NoMSHRs = MSHRQueue_MSHRs,
1114628SN/A        Blocked_NoWBBuffers = MSHRQueue_WriteBuffer,
1124628SN/A        Blocked_NoTargets,
1134628SN/A        NUM_BLOCKED_CAUSES
1144628SN/A    };
1154628SN/A
1168737Skoansin.tan@gmail.com  protected:
1174628SN/A
1188856Sandreas.hansson@arm.com    /**
1198856Sandreas.hansson@arm.com     * A cache master port is used for the memory-side port of the
1208856Sandreas.hansson@arm.com     * cache, and in addition to the basic timing port that only sends
1218856Sandreas.hansson@arm.com     * response packets through a transmit list, it also offers the
1228856Sandreas.hansson@arm.com     * ability to schedule and send request packets (requests &
12310942Sandreas.hansson@arm.com     * writebacks). The send event is scheduled through schedSendEvent,
1248856Sandreas.hansson@arm.com     * and the sendDeferredPacket of the timing port is modified to
1258856Sandreas.hansson@arm.com     * consider both the transmit list and the requests from the MSHR.
1268856Sandreas.hansson@arm.com     */
1278922Swilliam.wang@arm.com    class CacheMasterPort : public QueuedMasterPort
1282810SN/A    {
1298856Sandreas.hansson@arm.com
1302844SN/A      public:
1318856Sandreas.hansson@arm.com
1328856Sandreas.hansson@arm.com        /**
1338856Sandreas.hansson@arm.com         * Schedule a send of a request packet (from the MSHR). Note
13410713Sandreas.hansson@arm.com         * that we could already have a retry outstanding.
1358856Sandreas.hansson@arm.com         */
13610942Sandreas.hansson@arm.com        void schedSendEvent(Tick time)
1378856Sandreas.hansson@arm.com        {
13810942Sandreas.hansson@arm.com            DPRINTF(CachePort, "Scheduling send event at %llu\n", time);
13910713Sandreas.hansson@arm.com            reqQueue.schedSendEvent(time);
1408856Sandreas.hansson@arm.com        }
1418856Sandreas.hansson@arm.com
1423738SN/A      protected:
1434458SN/A
1448856Sandreas.hansson@arm.com        CacheMasterPort(const std::string &_name, BaseCache *_cache,
14510713Sandreas.hansson@arm.com                        ReqPacketQueue &_reqQueue,
14610713Sandreas.hansson@arm.com                        SnoopRespPacketQueue &_snoopRespQueue) :
14710713Sandreas.hansson@arm.com            QueuedMasterPort(_name, _cache, _reqQueue, _snoopRespQueue)
1488914Sandreas.hansson@arm.com        { }
1492810SN/A
1508856Sandreas.hansson@arm.com        /**
1518856Sandreas.hansson@arm.com         * Memory-side port always snoops.
1528856Sandreas.hansson@arm.com         *
1538914Sandreas.hansson@arm.com         * @return always true
1548856Sandreas.hansson@arm.com         */
1558922Swilliam.wang@arm.com        virtual bool isSnooping() const { return true; }
1568856Sandreas.hansson@arm.com    };
1573013SN/A
1588856Sandreas.hansson@arm.com    /**
15912724Snikos.nikoleris@arm.com     * Override the default behaviour of sendDeferredPacket to enable
16012724Snikos.nikoleris@arm.com     * the memory-side cache port to also send requests based on the
16112724Snikos.nikoleris@arm.com     * current MSHR status. This queue has a pointer to our specific
16212724Snikos.nikoleris@arm.com     * cache implementation and is used by the MemSidePort.
16312724Snikos.nikoleris@arm.com     */
16412724Snikos.nikoleris@arm.com    class CacheReqPacketQueue : public ReqPacketQueue
16512724Snikos.nikoleris@arm.com    {
16612724Snikos.nikoleris@arm.com
16712724Snikos.nikoleris@arm.com      protected:
16812724Snikos.nikoleris@arm.com
16912724Snikos.nikoleris@arm.com        BaseCache &cache;
17012724Snikos.nikoleris@arm.com        SnoopRespPacketQueue &snoopRespQueue;
17112724Snikos.nikoleris@arm.com
17212724Snikos.nikoleris@arm.com      public:
17312724Snikos.nikoleris@arm.com
17412724Snikos.nikoleris@arm.com        CacheReqPacketQueue(BaseCache &cache, MasterPort &port,
17512724Snikos.nikoleris@arm.com                            SnoopRespPacketQueue &snoop_resp_queue,
17612724Snikos.nikoleris@arm.com                            const std::string &label) :
17712724Snikos.nikoleris@arm.com            ReqPacketQueue(cache, port, label), cache(cache),
17812724Snikos.nikoleris@arm.com            snoopRespQueue(snoop_resp_queue) { }
17912724Snikos.nikoleris@arm.com
18012724Snikos.nikoleris@arm.com        /**
18112724Snikos.nikoleris@arm.com         * Override the normal sendDeferredPacket and do not only
18212724Snikos.nikoleris@arm.com         * consider the transmit list (used for responses), but also
18312724Snikos.nikoleris@arm.com         * requests.
18412724Snikos.nikoleris@arm.com         */
18512724Snikos.nikoleris@arm.com        virtual void sendDeferredPacket();
18612724Snikos.nikoleris@arm.com
18712724Snikos.nikoleris@arm.com        /**
18812724Snikos.nikoleris@arm.com         * Check if there is a conflicting snoop response about to be
18912724Snikos.nikoleris@arm.com         * send out, and if so simply stall any requests, and schedule
19012724Snikos.nikoleris@arm.com         * a send event at the same time as the next snoop response is
19112724Snikos.nikoleris@arm.com         * being sent out.
19212724Snikos.nikoleris@arm.com         */
19312724Snikos.nikoleris@arm.com        bool checkConflictingSnoop(Addr addr)
19412724Snikos.nikoleris@arm.com        {
19512724Snikos.nikoleris@arm.com            if (snoopRespQueue.hasAddr(addr)) {
19612724Snikos.nikoleris@arm.com                DPRINTF(CachePort, "Waiting for snoop response to be "
19712724Snikos.nikoleris@arm.com                        "sent\n");
19812724Snikos.nikoleris@arm.com                Tick when = snoopRespQueue.deferredPacketReadyTime();
19912724Snikos.nikoleris@arm.com                schedSendEvent(when);
20012724Snikos.nikoleris@arm.com                return true;
20112724Snikos.nikoleris@arm.com            }
20212724Snikos.nikoleris@arm.com            return false;
20312724Snikos.nikoleris@arm.com        }
20412724Snikos.nikoleris@arm.com    };
20512724Snikos.nikoleris@arm.com
20612724Snikos.nikoleris@arm.com
20712724Snikos.nikoleris@arm.com    /**
20812724Snikos.nikoleris@arm.com     * The memory-side port extends the base cache master port with
20912724Snikos.nikoleris@arm.com     * access functions for functional, atomic and timing snoops.
21012724Snikos.nikoleris@arm.com     */
21112724Snikos.nikoleris@arm.com    class MemSidePort : public CacheMasterPort
21212724Snikos.nikoleris@arm.com    {
21312724Snikos.nikoleris@arm.com      private:
21412724Snikos.nikoleris@arm.com
21512724Snikos.nikoleris@arm.com        /** The cache-specific queue. */
21612724Snikos.nikoleris@arm.com        CacheReqPacketQueue _reqQueue;
21712724Snikos.nikoleris@arm.com
21812724Snikos.nikoleris@arm.com        SnoopRespPacketQueue _snoopRespQueue;
21912724Snikos.nikoleris@arm.com
22012724Snikos.nikoleris@arm.com        // a pointer to our specific cache implementation
22112724Snikos.nikoleris@arm.com        BaseCache *cache;
22212724Snikos.nikoleris@arm.com
22312724Snikos.nikoleris@arm.com      protected:
22412724Snikos.nikoleris@arm.com
22512724Snikos.nikoleris@arm.com        virtual void recvTimingSnoopReq(PacketPtr pkt);
22612724Snikos.nikoleris@arm.com
22712724Snikos.nikoleris@arm.com        virtual bool recvTimingResp(PacketPtr pkt);
22812724Snikos.nikoleris@arm.com
22912724Snikos.nikoleris@arm.com        virtual Tick recvAtomicSnoop(PacketPtr pkt);
23012724Snikos.nikoleris@arm.com
23112724Snikos.nikoleris@arm.com        virtual void recvFunctionalSnoop(PacketPtr pkt);
23212724Snikos.nikoleris@arm.com
23312724Snikos.nikoleris@arm.com      public:
23412724Snikos.nikoleris@arm.com
23512724Snikos.nikoleris@arm.com        MemSidePort(const std::string &_name, BaseCache *_cache,
23612724Snikos.nikoleris@arm.com                    const std::string &_label);
23712724Snikos.nikoleris@arm.com    };
23812724Snikos.nikoleris@arm.com
23912724Snikos.nikoleris@arm.com    /**
2408856Sandreas.hansson@arm.com     * A cache slave port is used for the CPU-side port of the cache,
2418856Sandreas.hansson@arm.com     * and it is basically a simple timing port that uses a transmit
2428856Sandreas.hansson@arm.com     * list for responses to the CPU (or connected master). In
2438856Sandreas.hansson@arm.com     * addition, it has the functionality to block the port for
2448856Sandreas.hansson@arm.com     * incoming requests. If blocked, the port will issue a retry once
2458856Sandreas.hansson@arm.com     * unblocked.
2468856Sandreas.hansson@arm.com     */
2478922Swilliam.wang@arm.com    class CacheSlavePort : public QueuedSlavePort
2488856Sandreas.hansson@arm.com    {
2495314SN/A
2502811SN/A      public:
2518856Sandreas.hansson@arm.com
2528856Sandreas.hansson@arm.com        /** Do not accept any new requests. */
2532810SN/A        void setBlocked();
2542810SN/A
2558856Sandreas.hansson@arm.com        /** Return to normal operation and accept new requests. */
2562810SN/A        void clearBlocked();
2572810SN/A
25810345SCurtis.Dunham@arm.com        bool isBlocked() const { return blocked; }
25910345SCurtis.Dunham@arm.com
2608856Sandreas.hansson@arm.com      protected:
2618856Sandreas.hansson@arm.com
2628856Sandreas.hansson@arm.com        CacheSlavePort(const std::string &_name, BaseCache *_cache,
2638856Sandreas.hansson@arm.com                       const std::string &_label);
2643606SN/A
2658914Sandreas.hansson@arm.com        /** A normal packet queue used to store responses. */
26610713Sandreas.hansson@arm.com        RespPacketQueue queue;
2678914Sandreas.hansson@arm.com
2682810SN/A        bool blocked;
2692810SN/A
2702897SN/A        bool mustSendRetry;
2712897SN/A
2728856Sandreas.hansson@arm.com      private:
2734458SN/A
27410344Sandreas.hansson@arm.com        void processSendRetry();
27510344Sandreas.hansson@arm.com
27612084Sspwilson2@wisc.edu        EventFunctionWrapper sendRetryEvent;
2778856Sandreas.hansson@arm.com
2782811SN/A    };
2792810SN/A
28012724Snikos.nikoleris@arm.com    /**
28112724Snikos.nikoleris@arm.com     * The CPU-side port extends the base cache slave port with access
28212724Snikos.nikoleris@arm.com     * functions for functional, atomic and timing requests.
28312724Snikos.nikoleris@arm.com     */
28412724Snikos.nikoleris@arm.com    class CpuSidePort : public CacheSlavePort
28512724Snikos.nikoleris@arm.com    {
28612724Snikos.nikoleris@arm.com      private:
28712724Snikos.nikoleris@arm.com
28812724Snikos.nikoleris@arm.com        // a pointer to our specific cache implementation
28912724Snikos.nikoleris@arm.com        BaseCache *cache;
29012724Snikos.nikoleris@arm.com
29112724Snikos.nikoleris@arm.com      protected:
29212724Snikos.nikoleris@arm.com        virtual bool recvTimingSnoopResp(PacketPtr pkt) override;
29312724Snikos.nikoleris@arm.com
29412724Snikos.nikoleris@arm.com        virtual bool tryTiming(PacketPtr pkt) override;
29512724Snikos.nikoleris@arm.com
29612724Snikos.nikoleris@arm.com        virtual bool recvTimingReq(PacketPtr pkt) override;
29712724Snikos.nikoleris@arm.com
29812724Snikos.nikoleris@arm.com        virtual Tick recvAtomic(PacketPtr pkt) override;
29912724Snikos.nikoleris@arm.com
30012724Snikos.nikoleris@arm.com        virtual void recvFunctional(PacketPtr pkt) override;
30112724Snikos.nikoleris@arm.com
30212724Snikos.nikoleris@arm.com        virtual AddrRangeList getAddrRanges() const override;
30312724Snikos.nikoleris@arm.com
30412724Snikos.nikoleris@arm.com      public:
30512724Snikos.nikoleris@arm.com
30612724Snikos.nikoleris@arm.com        CpuSidePort(const std::string &_name, BaseCache *_cache,
30712724Snikos.nikoleris@arm.com                    const std::string &_label);
30812724Snikos.nikoleris@arm.com
30912724Snikos.nikoleris@arm.com    };
31012724Snikos.nikoleris@arm.com
31112724Snikos.nikoleris@arm.com    CpuSidePort cpuSidePort;
31212724Snikos.nikoleris@arm.com    MemSidePort memSidePort;
3133338SN/A
3144626SN/A  protected:
3154626SN/A
3164626SN/A    /** Miss status registers */
3174626SN/A    MSHRQueue mshrQueue;
3184626SN/A
3194626SN/A    /** Write/writeback buffer */
32011375Sandreas.hansson@arm.com    WriteQueue writeBuffer;
3214626SN/A
32212724Snikos.nikoleris@arm.com    /** Tag and data Storage */
32312724Snikos.nikoleris@arm.com    BaseTags *tags;
32412724Snikos.nikoleris@arm.com
32512724Snikos.nikoleris@arm.com    /** Prefetcher */
32612724Snikos.nikoleris@arm.com    BasePrefetcher *prefetcher;
32712724Snikos.nikoleris@arm.com
32813416Sjavier.bueno@metempsy.com    /** To probe when a cache hit occurs */
32913416Sjavier.bueno@metempsy.com    ProbePointArg<PacketPtr> *ppHit;
33013416Sjavier.bueno@metempsy.com
33113416Sjavier.bueno@metempsy.com    /** To probe when a cache miss occurs */
33213416Sjavier.bueno@metempsy.com    ProbePointArg<PacketPtr> *ppMiss;
33312724Snikos.nikoleris@arm.com
33412724Snikos.nikoleris@arm.com    /**
33513352Snikos.nikoleris@arm.com     * The writeAllocator drive optimizations for streaming writes.
33613352Snikos.nikoleris@arm.com     * It first determines whether a WriteReq MSHR should be delayed,
33713352Snikos.nikoleris@arm.com     * thus ensuring that we wait longer in cases when we are write
33813352Snikos.nikoleris@arm.com     * coalescing and allowing all the bytes of the line to be written
33913352Snikos.nikoleris@arm.com     * before the MSHR packet is sent downstream. This works in unison
34013352Snikos.nikoleris@arm.com     * with the tracking in the MSHR to check if the entire line is
34113352Snikos.nikoleris@arm.com     * written. The write mode also affects the behaviour on filling
34213352Snikos.nikoleris@arm.com     * any whole-line writes. Normally the cache allocates the line
34313352Snikos.nikoleris@arm.com     * when receiving the InvalidateResp, but after seeing enough
34413352Snikos.nikoleris@arm.com     * consecutive lines we switch to using the tempBlock, and thus
34513352Snikos.nikoleris@arm.com     * end up not allocating the line, and instead turning the
34613352Snikos.nikoleris@arm.com     * whole-line write into a writeback straight away.
34713352Snikos.nikoleris@arm.com     */
34813352Snikos.nikoleris@arm.com    WriteAllocator * const writeAllocator;
34913352Snikos.nikoleris@arm.com
35013352Snikos.nikoleris@arm.com    /**
35112724Snikos.nikoleris@arm.com     * Temporary cache block for occasional transitory use.  We use
35212724Snikos.nikoleris@arm.com     * the tempBlock to fill when allocation fails (e.g., when there
35312724Snikos.nikoleris@arm.com     * is an outstanding request that accesses the victim block) or
35412724Snikos.nikoleris@arm.com     * when we want to avoid allocation (e.g., exclusive caches)
35512724Snikos.nikoleris@arm.com     */
35612730Sodanrc@yahoo.com.br    TempCacheBlk *tempBlock;
35712724Snikos.nikoleris@arm.com
35812724Snikos.nikoleris@arm.com    /**
35912724Snikos.nikoleris@arm.com     * Upstream caches need this packet until true is returned, so
36012724Snikos.nikoleris@arm.com     * hold it for deletion until a subsequent call
36112724Snikos.nikoleris@arm.com     */
36212724Snikos.nikoleris@arm.com    std::unique_ptr<Packet> pendingDelete;
36312724Snikos.nikoleris@arm.com
36410693SMarco.Balboni@ARM.com    /**
36511375Sandreas.hansson@arm.com     * Mark a request as in service (sent downstream in the memory
36611375Sandreas.hansson@arm.com     * system), effectively making this MSHR the ordering point.
36710693SMarco.Balboni@ARM.com     */
36811375Sandreas.hansson@arm.com    void markInService(MSHR *mshr, bool pending_modified_resp)
3694628SN/A    {
37011375Sandreas.hansson@arm.com        bool wasFull = mshrQueue.isFull();
37111375Sandreas.hansson@arm.com        mshrQueue.markInService(mshr, pending_modified_resp);
37210764Sandreas.hansson@arm.com
37311375Sandreas.hansson@arm.com        if (wasFull && !mshrQueue.isFull()) {
37411375Sandreas.hansson@arm.com            clearBlocked(Blocked_NoMSHRs);
3754628SN/A        }
3764628SN/A    }
3774628SN/A
37811375Sandreas.hansson@arm.com    void markInService(WriteQueueEntry *entry)
3794628SN/A    {
38011375Sandreas.hansson@arm.com        bool wasFull = writeBuffer.isFull();
38111375Sandreas.hansson@arm.com        writeBuffer.markInService(entry);
38211375Sandreas.hansson@arm.com
38311375Sandreas.hansson@arm.com        if (wasFull && !writeBuffer.isFull()) {
38411375Sandreas.hansson@arm.com            clearBlocked(Blocked_NoWBBuffers);
3854628SN/A        }
3864628SN/A    }
3874628SN/A
3889347SAndreas.Sandberg@arm.com    /**
38912724Snikos.nikoleris@arm.com     * Determine whether we should allocate on a fill or not. If this
39012724Snikos.nikoleris@arm.com     * cache is mostly inclusive with regards to the upstream cache(s)
39112724Snikos.nikoleris@arm.com     * we always allocate (for any non-forwarded and cacheable
39212724Snikos.nikoleris@arm.com     * requests). In the case of a mostly exclusive cache, we allocate
39312724Snikos.nikoleris@arm.com     * on fill if the packet did not come from a cache, thus if we:
39412724Snikos.nikoleris@arm.com     * are dealing with a whole-line write (the latter behaves much
39512724Snikos.nikoleris@arm.com     * like a writeback), the original target packet came from a
39612724Snikos.nikoleris@arm.com     * non-caching source, or if we are performing a prefetch or LLSC.
39711197Sandreas.hansson@arm.com     *
39812724Snikos.nikoleris@arm.com     * @param cmd Command of the incoming requesting packet
39912724Snikos.nikoleris@arm.com     * @return Whether we should allocate on the fill
40012724Snikos.nikoleris@arm.com     */
40112724Snikos.nikoleris@arm.com    inline bool allocOnFill(MemCmd cmd) const
40212724Snikos.nikoleris@arm.com    {
40312724Snikos.nikoleris@arm.com        return clusivity == Enums::mostly_incl ||
40412724Snikos.nikoleris@arm.com            cmd == MemCmd::WriteLineReq ||
40512724Snikos.nikoleris@arm.com            cmd == MemCmd::ReadReq ||
40612724Snikos.nikoleris@arm.com            cmd == MemCmd::WriteReq ||
40712724Snikos.nikoleris@arm.com            cmd.isPrefetch() ||
40812724Snikos.nikoleris@arm.com            cmd.isLLSC();
40912724Snikos.nikoleris@arm.com    }
41012724Snikos.nikoleris@arm.com
41112724Snikos.nikoleris@arm.com    /**
41212730Sodanrc@yahoo.com.br     * Regenerate block address using tags.
41312730Sodanrc@yahoo.com.br     * Block address regeneration depends on whether we're using a temporary
41412730Sodanrc@yahoo.com.br     * block or not.
41512730Sodanrc@yahoo.com.br     *
41612730Sodanrc@yahoo.com.br     * @param blk The block to regenerate address.
41712730Sodanrc@yahoo.com.br     * @return The block's address.
41812730Sodanrc@yahoo.com.br     */
41912730Sodanrc@yahoo.com.br    Addr regenerateBlkAddr(CacheBlk* blk);
42012730Sodanrc@yahoo.com.br
42112730Sodanrc@yahoo.com.br    /**
42212724Snikos.nikoleris@arm.com     * Does all the processing necessary to perform the provided request.
42312724Snikos.nikoleris@arm.com     * @param pkt The memory request to perform.
42412724Snikos.nikoleris@arm.com     * @param blk The cache block to be updated.
42512724Snikos.nikoleris@arm.com     * @param lat The latency of the access.
42612724Snikos.nikoleris@arm.com     * @param writebacks List for any writebacks that need to be performed.
42712724Snikos.nikoleris@arm.com     * @return Boolean indicating whether the request was satisfied.
42812724Snikos.nikoleris@arm.com     */
42912724Snikos.nikoleris@arm.com    virtual bool access(PacketPtr pkt, CacheBlk *&blk, Cycles &lat,
43012724Snikos.nikoleris@arm.com                        PacketList &writebacks);
43112724Snikos.nikoleris@arm.com
43212724Snikos.nikoleris@arm.com    /*
43312724Snikos.nikoleris@arm.com     * Handle a timing request that hit in the cache
43411197Sandreas.hansson@arm.com     *
43512724Snikos.nikoleris@arm.com     * @param ptk The request packet
43612724Snikos.nikoleris@arm.com     * @param blk The referenced block
43712724Snikos.nikoleris@arm.com     * @param request_time The tick at which the block lookup is compete
43811197Sandreas.hansson@arm.com     */
43912724Snikos.nikoleris@arm.com    virtual void handleTimingReqHit(PacketPtr pkt, CacheBlk *blk,
44012724Snikos.nikoleris@arm.com                                    Tick request_time);
44112724Snikos.nikoleris@arm.com
44212724Snikos.nikoleris@arm.com    /*
44312724Snikos.nikoleris@arm.com     * Handle a timing request that missed in the cache
44412724Snikos.nikoleris@arm.com     *
44512724Snikos.nikoleris@arm.com     * Implementation specific handling for different cache
44612724Snikos.nikoleris@arm.com     * implementations
44712724Snikos.nikoleris@arm.com     *
44812724Snikos.nikoleris@arm.com     * @param ptk The request packet
44912724Snikos.nikoleris@arm.com     * @param blk The referenced block
45012724Snikos.nikoleris@arm.com     * @param forward_time The tick at which we can process dependent requests
45112724Snikos.nikoleris@arm.com     * @param request_time The tick at which the block lookup is compete
45212724Snikos.nikoleris@arm.com     */
45312724Snikos.nikoleris@arm.com    virtual void handleTimingReqMiss(PacketPtr pkt, CacheBlk *blk,
45412724Snikos.nikoleris@arm.com                                     Tick forward_time,
45512724Snikos.nikoleris@arm.com                                     Tick request_time) = 0;
45612724Snikos.nikoleris@arm.com
45712724Snikos.nikoleris@arm.com    /*
45812724Snikos.nikoleris@arm.com     * Handle a timing request that missed in the cache
45912724Snikos.nikoleris@arm.com     *
46012724Snikos.nikoleris@arm.com     * Common functionality across different cache implementations
46112724Snikos.nikoleris@arm.com     *
46212724Snikos.nikoleris@arm.com     * @param ptk The request packet
46312724Snikos.nikoleris@arm.com     * @param blk The referenced block
46412724Snikos.nikoleris@arm.com     * @param mshr Any existing mshr for the referenced cache block
46512724Snikos.nikoleris@arm.com     * @param forward_time The tick at which we can process dependent requests
46612724Snikos.nikoleris@arm.com     * @param request_time The tick at which the block lookup is compete
46712724Snikos.nikoleris@arm.com     */
46812724Snikos.nikoleris@arm.com    void handleTimingReqMiss(PacketPtr pkt, MSHR *mshr, CacheBlk *blk,
46912724Snikos.nikoleris@arm.com                             Tick forward_time, Tick request_time);
47012724Snikos.nikoleris@arm.com
47112724Snikos.nikoleris@arm.com    /**
47212724Snikos.nikoleris@arm.com     * Performs the access specified by the request.
47312724Snikos.nikoleris@arm.com     * @param pkt The request to perform.
47412724Snikos.nikoleris@arm.com     */
47512724Snikos.nikoleris@arm.com    virtual void recvTimingReq(PacketPtr pkt);
47612724Snikos.nikoleris@arm.com
47712724Snikos.nikoleris@arm.com    /**
47812724Snikos.nikoleris@arm.com     * Handling the special case of uncacheable write responses to
47912724Snikos.nikoleris@arm.com     * make recvTimingResp less cluttered.
48012724Snikos.nikoleris@arm.com     */
48112724Snikos.nikoleris@arm.com    void handleUncacheableWriteResp(PacketPtr pkt);
48212724Snikos.nikoleris@arm.com
48312724Snikos.nikoleris@arm.com    /**
48412724Snikos.nikoleris@arm.com     * Service non-deferred MSHR targets using the received response
48512724Snikos.nikoleris@arm.com     *
48612724Snikos.nikoleris@arm.com     * Iterates through the list of targets that can be serviced with
48712724Snikos.nikoleris@arm.com     * the current response. Any writebacks that need to performed
48812724Snikos.nikoleris@arm.com     * must be appended to the writebacks parameter.
48912724Snikos.nikoleris@arm.com     *
49012724Snikos.nikoleris@arm.com     * @param mshr The MSHR that corresponds to the reponse
49112724Snikos.nikoleris@arm.com     * @param pkt The response packet
49212724Snikos.nikoleris@arm.com     * @param blk The reference block
49312724Snikos.nikoleris@arm.com     * @param writebacks List of writebacks that need to be performed
49412724Snikos.nikoleris@arm.com     */
49512724Snikos.nikoleris@arm.com    virtual void serviceMSHRTargets(MSHR *mshr, const PacketPtr pkt,
49612724Snikos.nikoleris@arm.com                                    CacheBlk *blk, PacketList& writebacks) = 0;
49712724Snikos.nikoleris@arm.com
49812724Snikos.nikoleris@arm.com    /**
49912724Snikos.nikoleris@arm.com     * Handles a response (cache line fill/write ack) from the bus.
50012724Snikos.nikoleris@arm.com     * @param pkt The response packet
50112724Snikos.nikoleris@arm.com     */
50212724Snikos.nikoleris@arm.com    virtual void recvTimingResp(PacketPtr pkt);
50312724Snikos.nikoleris@arm.com
50412724Snikos.nikoleris@arm.com    /**
50512724Snikos.nikoleris@arm.com     * Snoops bus transactions to maintain coherence.
50612724Snikos.nikoleris@arm.com     * @param pkt The current bus transaction.
50712724Snikos.nikoleris@arm.com     */
50812724Snikos.nikoleris@arm.com    virtual void recvTimingSnoopReq(PacketPtr pkt) = 0;
50912724Snikos.nikoleris@arm.com
51012724Snikos.nikoleris@arm.com    /**
51112724Snikos.nikoleris@arm.com     * Handle a snoop response.
51212724Snikos.nikoleris@arm.com     * @param pkt Snoop response packet
51312724Snikos.nikoleris@arm.com     */
51412724Snikos.nikoleris@arm.com    virtual void recvTimingSnoopResp(PacketPtr pkt) = 0;
51512724Snikos.nikoleris@arm.com
51612724Snikos.nikoleris@arm.com    /**
51712724Snikos.nikoleris@arm.com     * Handle a request in atomic mode that missed in this cache
51812724Snikos.nikoleris@arm.com     *
51912724Snikos.nikoleris@arm.com     * Creates a downstream request, sends it to the memory below and
52012724Snikos.nikoleris@arm.com     * handles the response. As we are in atomic mode all operations
52112724Snikos.nikoleris@arm.com     * are performed immediately.
52212724Snikos.nikoleris@arm.com     *
52312724Snikos.nikoleris@arm.com     * @param pkt The packet with the requests
52412724Snikos.nikoleris@arm.com     * @param blk The referenced block
52512724Snikos.nikoleris@arm.com     * @param writebacks A list with packets for any performed writebacks
52612724Snikos.nikoleris@arm.com     * @return Cycles for handling the request
52712724Snikos.nikoleris@arm.com     */
52813017Snikos.nikoleris@arm.com    virtual Cycles handleAtomicReqMiss(PacketPtr pkt, CacheBlk *&blk,
52912724Snikos.nikoleris@arm.com                                       PacketList &writebacks) = 0;
53012724Snikos.nikoleris@arm.com
53112724Snikos.nikoleris@arm.com    /**
53212724Snikos.nikoleris@arm.com     * Performs the access specified by the request.
53312724Snikos.nikoleris@arm.com     * @param pkt The request to perform.
53412724Snikos.nikoleris@arm.com     * @return The number of ticks required for the access.
53512724Snikos.nikoleris@arm.com     */
53612724Snikos.nikoleris@arm.com    virtual Tick recvAtomic(PacketPtr pkt);
53712724Snikos.nikoleris@arm.com
53812724Snikos.nikoleris@arm.com    /**
53912724Snikos.nikoleris@arm.com     * Snoop for the provided request in the cache and return the estimated
54012724Snikos.nikoleris@arm.com     * time taken.
54112724Snikos.nikoleris@arm.com     * @param pkt The memory request to snoop
54212724Snikos.nikoleris@arm.com     * @return The number of ticks required for the snoop.
54312724Snikos.nikoleris@arm.com     */
54412724Snikos.nikoleris@arm.com    virtual Tick recvAtomicSnoop(PacketPtr pkt) = 0;
54512724Snikos.nikoleris@arm.com
54612724Snikos.nikoleris@arm.com    /**
54712724Snikos.nikoleris@arm.com     * Performs the access specified by the request.
54812724Snikos.nikoleris@arm.com     *
54912724Snikos.nikoleris@arm.com     * @param pkt The request to perform.
55012724Snikos.nikoleris@arm.com     * @param fromCpuSide from the CPU side port or the memory side port
55112724Snikos.nikoleris@arm.com     */
55212724Snikos.nikoleris@arm.com    virtual void functionalAccess(PacketPtr pkt, bool from_cpu_side);
55312724Snikos.nikoleris@arm.com
55412724Snikos.nikoleris@arm.com    /**
55512724Snikos.nikoleris@arm.com     * Handle doing the Compare and Swap function for SPARC.
55612724Snikos.nikoleris@arm.com     */
55712724Snikos.nikoleris@arm.com    void cmpAndSwap(CacheBlk *blk, PacketPtr pkt);
55812724Snikos.nikoleris@arm.com
55912724Snikos.nikoleris@arm.com    /**
56012724Snikos.nikoleris@arm.com     * Return the next queue entry to service, either a pending miss
56112724Snikos.nikoleris@arm.com     * from the MSHR queue, a buffered write from the write buffer, or
56212724Snikos.nikoleris@arm.com     * something from the prefetcher. This function is responsible
56312724Snikos.nikoleris@arm.com     * for prioritizing among those sources on the fly.
56412724Snikos.nikoleris@arm.com     */
56512724Snikos.nikoleris@arm.com    QueueEntry* getNextQueueEntry();
56612724Snikos.nikoleris@arm.com
56712724Snikos.nikoleris@arm.com    /**
56812724Snikos.nikoleris@arm.com     * Insert writebacks into the write buffer
56912724Snikos.nikoleris@arm.com     */
57012724Snikos.nikoleris@arm.com    virtual void doWritebacks(PacketList& writebacks, Tick forward_time) = 0;
57112724Snikos.nikoleris@arm.com
57212724Snikos.nikoleris@arm.com    /**
57312724Snikos.nikoleris@arm.com     * Send writebacks down the memory hierarchy in atomic mode
57412724Snikos.nikoleris@arm.com     */
57512724Snikos.nikoleris@arm.com    virtual void doWritebacksAtomic(PacketList& writebacks) = 0;
57612724Snikos.nikoleris@arm.com
57712724Snikos.nikoleris@arm.com    /**
57812724Snikos.nikoleris@arm.com     * Create an appropriate downstream bus request packet.
57912724Snikos.nikoleris@arm.com     *
58012724Snikos.nikoleris@arm.com     * Creates a new packet with the request to be send to the memory
58112724Snikos.nikoleris@arm.com     * below, or nullptr if the current request in cpu_pkt should just
58212724Snikos.nikoleris@arm.com     * be forwarded on.
58312724Snikos.nikoleris@arm.com     *
58412724Snikos.nikoleris@arm.com     * @param cpu_pkt The miss packet that needs to be satisfied.
58512724Snikos.nikoleris@arm.com     * @param blk The referenced block, can be nullptr.
58612724Snikos.nikoleris@arm.com     * @param needs_writable Indicates that the block must be writable
58712724Snikos.nikoleris@arm.com     * even if the request in cpu_pkt doesn't indicate that.
58813350Snikos.nikoleris@arm.com     * @param is_whole_line_write True if there are writes for the
58913350Snikos.nikoleris@arm.com     * whole line
59012724Snikos.nikoleris@arm.com     * @return A packet send to the memory below
59112724Snikos.nikoleris@arm.com     */
59212724Snikos.nikoleris@arm.com    virtual PacketPtr createMissPacket(PacketPtr cpu_pkt, CacheBlk *blk,
59313350Snikos.nikoleris@arm.com                                       bool needs_writable,
59413350Snikos.nikoleris@arm.com                                       bool is_whole_line_write) const = 0;
59512724Snikos.nikoleris@arm.com
59612724Snikos.nikoleris@arm.com    /**
59712724Snikos.nikoleris@arm.com     * Determine if clean lines should be written back or not. In
59812724Snikos.nikoleris@arm.com     * cases where a downstream cache is mostly inclusive we likely
59912724Snikos.nikoleris@arm.com     * want it to act as a victim cache also for lines that have not
60012724Snikos.nikoleris@arm.com     * been modified. Hence, we cannot simply drop the line (or send a
60112724Snikos.nikoleris@arm.com     * clean evict), but rather need to send the actual data.
60212724Snikos.nikoleris@arm.com     */
60312724Snikos.nikoleris@arm.com    const bool writebackClean;
60412724Snikos.nikoleris@arm.com
60512724Snikos.nikoleris@arm.com    /**
60612724Snikos.nikoleris@arm.com     * Writebacks from the tempBlock, resulting on the response path
60712724Snikos.nikoleris@arm.com     * in atomic mode, must happen after the call to recvAtomic has
60812724Snikos.nikoleris@arm.com     * finished (for the right ordering of the packets). We therefore
60912724Snikos.nikoleris@arm.com     * need to hold on to the packets, and have a method and an event
61012724Snikos.nikoleris@arm.com     * to send them.
61112724Snikos.nikoleris@arm.com     */
61212724Snikos.nikoleris@arm.com    PacketPtr tempBlockWriteback;
61312724Snikos.nikoleris@arm.com
61412724Snikos.nikoleris@arm.com    /**
61512724Snikos.nikoleris@arm.com     * Send the outstanding tempBlock writeback. To be called after
61612724Snikos.nikoleris@arm.com     * recvAtomic finishes in cases where the block we filled is in
61712724Snikos.nikoleris@arm.com     * fact the tempBlock, and now needs to be written back.
61812724Snikos.nikoleris@arm.com     */
61912724Snikos.nikoleris@arm.com    void writebackTempBlockAtomic() {
62012724Snikos.nikoleris@arm.com        assert(tempBlockWriteback != nullptr);
62112724Snikos.nikoleris@arm.com        PacketList writebacks{tempBlockWriteback};
62212724Snikos.nikoleris@arm.com        doWritebacksAtomic(writebacks);
62312724Snikos.nikoleris@arm.com        tempBlockWriteback = nullptr;
62412724Snikos.nikoleris@arm.com    }
62512724Snikos.nikoleris@arm.com
62612724Snikos.nikoleris@arm.com    /**
62712724Snikos.nikoleris@arm.com     * An event to writeback the tempBlock after recvAtomic
62812724Snikos.nikoleris@arm.com     * finishes. To avoid other calls to recvAtomic getting in
62912724Snikos.nikoleris@arm.com     * between, we create this event with a higher priority.
63012724Snikos.nikoleris@arm.com     */
63112724Snikos.nikoleris@arm.com    EventFunctionWrapper writebackTempBlockAtomicEvent;
63212724Snikos.nikoleris@arm.com
63312724Snikos.nikoleris@arm.com    /**
63412724Snikos.nikoleris@arm.com     * Perform any necessary updates to the block and perform any data
63512724Snikos.nikoleris@arm.com     * exchange between the packet and the block. The flags of the
63612724Snikos.nikoleris@arm.com     * packet are also set accordingly.
63712724Snikos.nikoleris@arm.com     *
63812724Snikos.nikoleris@arm.com     * @param pkt Request packet from upstream that hit a block
63912724Snikos.nikoleris@arm.com     * @param blk Cache block that the packet hit
64012724Snikos.nikoleris@arm.com     * @param deferred_response Whether this request originally missed
64112724Snikos.nikoleris@arm.com     * @param pending_downgrade Whether the writable flag is to be removed
64212724Snikos.nikoleris@arm.com     */
64312724Snikos.nikoleris@arm.com    virtual void satisfyRequest(PacketPtr pkt, CacheBlk *blk,
64412724Snikos.nikoleris@arm.com                                bool deferred_response = false,
64512724Snikos.nikoleris@arm.com                                bool pending_downgrade = false);
64612724Snikos.nikoleris@arm.com
64712724Snikos.nikoleris@arm.com    /**
64812724Snikos.nikoleris@arm.com     * Maintain the clusivity of this cache by potentially
64912724Snikos.nikoleris@arm.com     * invalidating a block. This method works in conjunction with
65012724Snikos.nikoleris@arm.com     * satisfyRequest, but is separate to allow us to handle all MSHR
65112724Snikos.nikoleris@arm.com     * targets before potentially dropping a block.
65212724Snikos.nikoleris@arm.com     *
65312724Snikos.nikoleris@arm.com     * @param from_cache Whether we have dealt with a packet from a cache
65412724Snikos.nikoleris@arm.com     * @param blk The block that should potentially be dropped
65512724Snikos.nikoleris@arm.com     */
65612724Snikos.nikoleris@arm.com    void maintainClusivity(bool from_cache, CacheBlk *blk);
65712724Snikos.nikoleris@arm.com
65812724Snikos.nikoleris@arm.com    /**
65912724Snikos.nikoleris@arm.com     * Handle a fill operation caused by a received packet.
66012724Snikos.nikoleris@arm.com     *
66112724Snikos.nikoleris@arm.com     * Populates a cache block and handles all outstanding requests for the
66212724Snikos.nikoleris@arm.com     * satisfied fill request. This version takes two memory requests. One
66312724Snikos.nikoleris@arm.com     * contains the fill data, the other is an optional target to satisfy.
66412724Snikos.nikoleris@arm.com     * Note that the reason we return a list of writebacks rather than
66512724Snikos.nikoleris@arm.com     * inserting them directly in the write buffer is that this function
66612724Snikos.nikoleris@arm.com     * is called by both atomic and timing-mode accesses, and in atomic
66712724Snikos.nikoleris@arm.com     * mode we don't mess with the write buffer (we just perform the
66812724Snikos.nikoleris@arm.com     * writebacks atomically once the original request is complete).
66912724Snikos.nikoleris@arm.com     *
67012724Snikos.nikoleris@arm.com     * @param pkt The memory request with the fill data.
67112724Snikos.nikoleris@arm.com     * @param blk The cache block if it already exists.
67212724Snikos.nikoleris@arm.com     * @param writebacks List for any writebacks that need to be performed.
67312724Snikos.nikoleris@arm.com     * @param allocate Whether to allocate a block or use the temp block
67412724Snikos.nikoleris@arm.com     * @return Pointer to the new cache block.
67512724Snikos.nikoleris@arm.com     */
67612724Snikos.nikoleris@arm.com    CacheBlk *handleFill(PacketPtr pkt, CacheBlk *blk,
67712724Snikos.nikoleris@arm.com                         PacketList &writebacks, bool allocate);
67812724Snikos.nikoleris@arm.com
67912724Snikos.nikoleris@arm.com    /**
68012724Snikos.nikoleris@arm.com     * Allocate a new block and perform any necessary writebacks
68112724Snikos.nikoleris@arm.com     *
68212724Snikos.nikoleris@arm.com     * Find a victim block and if necessary prepare writebacks for any
68312724Snikos.nikoleris@arm.com     * existing data. May return nullptr if there are no replaceable
68412754Sodanrc@yahoo.com.br     * blocks. If a replaceable block is found, it inserts the new block in
68512754Sodanrc@yahoo.com.br     * its place. The new block, however, is not set as valid yet.
68612724Snikos.nikoleris@arm.com     *
68712754Sodanrc@yahoo.com.br     * @param pkt Packet holding the address to update
68812724Snikos.nikoleris@arm.com     * @param writebacks A list of writeback packets for the evicted blocks
68912724Snikos.nikoleris@arm.com     * @return the allocated block
69012724Snikos.nikoleris@arm.com     */
69112754Sodanrc@yahoo.com.br    CacheBlk *allocateBlock(const PacketPtr pkt, PacketList &writebacks);
69212724Snikos.nikoleris@arm.com    /**
69312724Snikos.nikoleris@arm.com     * Evict a cache block.
69412724Snikos.nikoleris@arm.com     *
69512724Snikos.nikoleris@arm.com     * Performs a writeback if necesssary and invalidates the block
69612724Snikos.nikoleris@arm.com     *
69712724Snikos.nikoleris@arm.com     * @param blk Block to invalidate
69812724Snikos.nikoleris@arm.com     * @return A packet with the writeback, can be nullptr
69912724Snikos.nikoleris@arm.com     */
70012724Snikos.nikoleris@arm.com    M5_NODISCARD virtual PacketPtr evictBlock(CacheBlk *blk) = 0;
70112724Snikos.nikoleris@arm.com
70212724Snikos.nikoleris@arm.com    /**
70312724Snikos.nikoleris@arm.com     * Evict a cache block.
70412724Snikos.nikoleris@arm.com     *
70512724Snikos.nikoleris@arm.com     * Performs a writeback if necesssary and invalidates the block
70612724Snikos.nikoleris@arm.com     *
70712724Snikos.nikoleris@arm.com     * @param blk Block to invalidate
70812724Snikos.nikoleris@arm.com     * @param writebacks Return a list of packets with writebacks
70912724Snikos.nikoleris@arm.com     */
71013358Sodanrc@yahoo.com.br    void evictBlock(CacheBlk *blk, PacketList &writebacks);
71112724Snikos.nikoleris@arm.com
71212724Snikos.nikoleris@arm.com    /**
71312724Snikos.nikoleris@arm.com     * Invalidate a cache block.
71412724Snikos.nikoleris@arm.com     *
71512724Snikos.nikoleris@arm.com     * @param blk Block to invalidate
71612724Snikos.nikoleris@arm.com     */
71712724Snikos.nikoleris@arm.com    void invalidateBlock(CacheBlk *blk);
71812724Snikos.nikoleris@arm.com
71912724Snikos.nikoleris@arm.com    /**
72012724Snikos.nikoleris@arm.com     * Create a writeback request for the given block.
72112724Snikos.nikoleris@arm.com     *
72212724Snikos.nikoleris@arm.com     * @param blk The block to writeback.
72312724Snikos.nikoleris@arm.com     * @return The writeback request for the block.
72412724Snikos.nikoleris@arm.com     */
72512724Snikos.nikoleris@arm.com    PacketPtr writebackBlk(CacheBlk *blk);
72612724Snikos.nikoleris@arm.com
72712724Snikos.nikoleris@arm.com    /**
72812724Snikos.nikoleris@arm.com     * Create a writeclean request for the given block.
72912724Snikos.nikoleris@arm.com     *
73012724Snikos.nikoleris@arm.com     * Creates a request that writes the block to the cache below
73112724Snikos.nikoleris@arm.com     * without evicting the block from the current cache.
73212724Snikos.nikoleris@arm.com     *
73312724Snikos.nikoleris@arm.com     * @param blk The block to write clean.
73412724Snikos.nikoleris@arm.com     * @param dest The destination of the write clean operation.
73512724Snikos.nikoleris@arm.com     * @param id Use the given packet id for the write clean operation.
73612724Snikos.nikoleris@arm.com     * @return The generated write clean packet.
73712724Snikos.nikoleris@arm.com     */
73812724Snikos.nikoleris@arm.com    PacketPtr writecleanBlk(CacheBlk *blk, Request::Flags dest, PacketId id);
73911197Sandreas.hansson@arm.com
74011197Sandreas.hansson@arm.com    /**
7419347SAndreas.Sandberg@arm.com     * Write back dirty blocks in the cache using functional accesses.
7429347SAndreas.Sandberg@arm.com     */
74312724Snikos.nikoleris@arm.com    virtual void memWriteback() override;
74412724Snikos.nikoleris@arm.com
7459347SAndreas.Sandberg@arm.com    /**
7469347SAndreas.Sandberg@arm.com     * Invalidates all blocks in the cache.
7479347SAndreas.Sandberg@arm.com     *
7489347SAndreas.Sandberg@arm.com     * @warn Dirty cache lines will not be written back to
7499347SAndreas.Sandberg@arm.com     * memory. Make sure to call functionalWriteback() first if you
7509347SAndreas.Sandberg@arm.com     * want the to write them to memory.
7519347SAndreas.Sandberg@arm.com     */
75212724Snikos.nikoleris@arm.com    virtual void memInvalidate() override;
75312724Snikos.nikoleris@arm.com
7549347SAndreas.Sandberg@arm.com    /**
7559347SAndreas.Sandberg@arm.com     * Determine if there are any dirty blocks in the cache.
7569347SAndreas.Sandberg@arm.com     *
75712724Snikos.nikoleris@arm.com     * @return true if at least one block is dirty, false otherwise.
7589347SAndreas.Sandberg@arm.com     */
75912724Snikos.nikoleris@arm.com    bool isDirty() const;
7609347SAndreas.Sandberg@arm.com
76110821Sandreas.hansson@arm.com    /**
76210821Sandreas.hansson@arm.com     * Determine if an address is in the ranges covered by this
76310821Sandreas.hansson@arm.com     * cache. This is useful to filter snoops.
76410821Sandreas.hansson@arm.com     *
76510821Sandreas.hansson@arm.com     * @param addr Address to check against
76610821Sandreas.hansson@arm.com     *
76710821Sandreas.hansson@arm.com     * @return If the address in question is in range
76810821Sandreas.hansson@arm.com     */
76910821Sandreas.hansson@arm.com    bool inRange(Addr addr) const;
77010821Sandreas.hansson@arm.com
77112724Snikos.nikoleris@arm.com    /**
77212724Snikos.nikoleris@arm.com     * Find next request ready time from among possible sources.
77312724Snikos.nikoleris@arm.com     */
77412724Snikos.nikoleris@arm.com    Tick nextQueueReadyTime() const;
77512724Snikos.nikoleris@arm.com
7764626SN/A    /** Block size of this cache */
7776227Snate@binkert.org    const unsigned blkSize;
7784626SN/A
7794630SN/A    /**
78010693SMarco.Balboni@ARM.com     * The latency of tag lookup of a cache. It occurs when there is
78110693SMarco.Balboni@ARM.com     * an access to the cache.
7824630SN/A     */
78310693SMarco.Balboni@ARM.com    const Cycles lookupLatency;
7849263Smrinmoy.ghosh@arm.com
7859263Smrinmoy.ghosh@arm.com    /**
78611722Ssophiane.senni@gmail.com     * The latency of data access of a cache. It occurs when there is
78711722Ssophiane.senni@gmail.com     * an access to the cache.
78811722Ssophiane.senni@gmail.com     */
78911722Ssophiane.senni@gmail.com    const Cycles dataLatency;
79011722Ssophiane.senni@gmail.com
79111722Ssophiane.senni@gmail.com    /**
79210693SMarco.Balboni@ARM.com     * This is the forward latency of the cache. It occurs when there
79310693SMarco.Balboni@ARM.com     * is a cache miss and a request is forwarded downstream, in
79410693SMarco.Balboni@ARM.com     * particular an outbound miss.
79510693SMarco.Balboni@ARM.com     */
79610693SMarco.Balboni@ARM.com    const Cycles forwardLatency;
79710693SMarco.Balboni@ARM.com
79810693SMarco.Balboni@ARM.com    /** The latency to fill a cache block */
79910693SMarco.Balboni@ARM.com    const Cycles fillLatency;
80010693SMarco.Balboni@ARM.com
80110693SMarco.Balboni@ARM.com    /**
80210693SMarco.Balboni@ARM.com     * The latency of sending reponse to its upper level cache/core on
80310693SMarco.Balboni@ARM.com     * a linefill. The responseLatency parameter captures this
80410693SMarco.Balboni@ARM.com     * latency.
8059263Smrinmoy.ghosh@arm.com     */
8069288Sandreas.hansson@arm.com    const Cycles responseLatency;
8074630SN/A
8084626SN/A    /** The number of targets for each MSHR. */
8094626SN/A    const int numTarget;
8104626SN/A
8116122SSteve.Reinhardt@amd.com    /** Do we forward snoops from mem side port through to cpu side port? */
81211331Sandreas.hansson@arm.com    bool forwardSnoops;
8134626SN/A
8142810SN/A    /**
81512724Snikos.nikoleris@arm.com     * Clusivity with respect to the upstream cache, determining if we
81612724Snikos.nikoleris@arm.com     * fill into both this cache and the cache above on a miss. Note
81712724Snikos.nikoleris@arm.com     * that we currently do not support strict clusivity policies.
81812724Snikos.nikoleris@arm.com     */
81912724Snikos.nikoleris@arm.com    const Enums::Clusivity clusivity;
82012724Snikos.nikoleris@arm.com
82112724Snikos.nikoleris@arm.com    /**
82210884Sandreas.hansson@arm.com     * Is this cache read only, for example the instruction cache, or
82310884Sandreas.hansson@arm.com     * table-walker cache. A cache that is read only should never see
82410884Sandreas.hansson@arm.com     * any writes, and should never get any dirty data (and hence
82510884Sandreas.hansson@arm.com     * never have to do any writebacks).
82610884Sandreas.hansson@arm.com     */
82710884Sandreas.hansson@arm.com    const bool isReadOnly;
82810884Sandreas.hansson@arm.com
82910884Sandreas.hansson@arm.com    /**
8302810SN/A     * Bit vector of the blocking reasons for the access path.
8312810SN/A     * @sa #BlockedCause
8322810SN/A     */
8332810SN/A    uint8_t blocked;
8342810SN/A
8356122SSteve.Reinhardt@amd.com    /** Increasing order number assigned to each incoming request. */
8366122SSteve.Reinhardt@amd.com    uint64_t order;
8376122SSteve.Reinhardt@amd.com
8382810SN/A    /** Stores time the cache blocked for statistics. */
8399288Sandreas.hansson@arm.com    Cycles blockedCycle;
8402810SN/A
8414626SN/A    /** Pointer to the MSHR that has no targets. */
8424626SN/A    MSHR *noTargetMSHR;
8432810SN/A
8442810SN/A    /** The number of misses to trigger an exit event. */
8452810SN/A    Counter missCount;
8462810SN/A
8476122SSteve.Reinhardt@amd.com    /**
8486122SSteve.Reinhardt@amd.com     * The address range to which the cache responds on the CPU side.
8496122SSteve.Reinhardt@amd.com     * Normally this is all possible memory addresses. */
8509529Sandreas.hansson@arm.com    const AddrRangeList addrRanges;
8516122SSteve.Reinhardt@amd.com
8528833Sdam.sunwoo@arm.com  public:
8538833Sdam.sunwoo@arm.com    /** System we are currently operating in. */
8548833Sdam.sunwoo@arm.com    System *system;
8556978SLisa.Hsu@amd.com
8562810SN/A    // Statistics
8572810SN/A    /**
8582810SN/A     * @addtogroup CacheStatistics
8592810SN/A     * @{
8602810SN/A     */
8612810SN/A
86211483Snikos.nikoleris@arm.com    /** Number of hits per thread for each type of command.
86311483Snikos.nikoleris@arm.com        @sa Packet::Command */
8645999Snate@binkert.org    Stats::Vector hits[MemCmd::NUM_MEM_CMDS];
8652810SN/A    /** Number of hits for demand accesses. */
8662810SN/A    Stats::Formula demandHits;
8672810SN/A    /** Number of hit for all accesses. */
8682810SN/A    Stats::Formula overallHits;
8692810SN/A
87011483Snikos.nikoleris@arm.com    /** Number of misses per thread for each type of command.
87111483Snikos.nikoleris@arm.com        @sa Packet::Command */
8725999Snate@binkert.org    Stats::Vector misses[MemCmd::NUM_MEM_CMDS];
8732810SN/A    /** Number of misses for demand accesses. */
8742810SN/A    Stats::Formula demandMisses;
8752810SN/A    /** Number of misses for all accesses. */
8762810SN/A    Stats::Formula overallMisses;
8772810SN/A
8782810SN/A    /**
8792810SN/A     * Total number of cycles per thread/command spent waiting for a miss.
8802810SN/A     * Used to calculate the average miss latency.
8812810SN/A     */
8825999Snate@binkert.org    Stats::Vector missLatency[MemCmd::NUM_MEM_CMDS];
8832810SN/A    /** Total number of cycles spent waiting for demand misses. */
8842810SN/A    Stats::Formula demandMissLatency;
8852810SN/A    /** Total number of cycles spent waiting for all misses. */
8862810SN/A    Stats::Formula overallMissLatency;
8872810SN/A
8882810SN/A    /** The number of accesses per command and thread. */
8894022SN/A    Stats::Formula accesses[MemCmd::NUM_MEM_CMDS];
8902810SN/A    /** The number of demand accesses. */
8912810SN/A    Stats::Formula demandAccesses;
8922810SN/A    /** The number of overall accesses. */
8932810SN/A    Stats::Formula overallAccesses;
8942810SN/A
8952810SN/A    /** The miss rate per command and thread. */
8964022SN/A    Stats::Formula missRate[MemCmd::NUM_MEM_CMDS];
8972810SN/A    /** The miss rate of all demand accesses. */
8982810SN/A    Stats::Formula demandMissRate;
8992810SN/A    /** The miss rate for all accesses. */
9002810SN/A    Stats::Formula overallMissRate;
9012810SN/A
9022810SN/A    /** The average miss latency per command and thread. */
9034022SN/A    Stats::Formula avgMissLatency[MemCmd::NUM_MEM_CMDS];
9042810SN/A    /** The average miss latency for demand misses. */
9052810SN/A    Stats::Formula demandAvgMissLatency;
9062810SN/A    /** The average miss latency for all misses. */
9072810SN/A    Stats::Formula overallAvgMissLatency;
9082810SN/A
9092810SN/A    /** The total number of cycles blocked for each blocked cause. */
9105999Snate@binkert.org    Stats::Vector blocked_cycles;
9112810SN/A    /** The number of times this cache blocked for each blocked cause. */
9125999Snate@binkert.org    Stats::Vector blocked_causes;
9132810SN/A
9142810SN/A    /** The average number of cycles blocked for each blocked cause. */
9152810SN/A    Stats::Formula avg_blocked;
9162810SN/A
91711436SRekai.GonzalezAlberquilla@arm.com    /** The number of times a HW-prefetched block is evicted w/o reference. */
91811436SRekai.GonzalezAlberquilla@arm.com    Stats::Scalar unusedPrefetches;
91911436SRekai.GonzalezAlberquilla@arm.com
9204626SN/A    /** Number of blocks written back per thread. */
9215999Snate@binkert.org    Stats::Vector writebacks;
9224626SN/A
9234626SN/A    /** Number of misses that hit in the MSHRs per command and thread. */
9245999Snate@binkert.org    Stats::Vector mshr_hits[MemCmd::NUM_MEM_CMDS];
9254626SN/A    /** Demand misses that hit in the MSHRs. */
9264626SN/A    Stats::Formula demandMshrHits;
9274626SN/A    /** Total number of misses that hit in the MSHRs. */
9284626SN/A    Stats::Formula overallMshrHits;
9294626SN/A
9304626SN/A    /** Number of misses that miss in the MSHRs, per command and thread. */
9315999Snate@binkert.org    Stats::Vector mshr_misses[MemCmd::NUM_MEM_CMDS];
9324626SN/A    /** Demand misses that miss in the MSHRs. */
9334626SN/A    Stats::Formula demandMshrMisses;
9344626SN/A    /** Total number of misses that miss in the MSHRs. */
9354626SN/A    Stats::Formula overallMshrMisses;
9364626SN/A
9374626SN/A    /** Number of misses that miss in the MSHRs, per command and thread. */
9385999Snate@binkert.org    Stats::Vector mshr_uncacheable[MemCmd::NUM_MEM_CMDS];
9394626SN/A    /** Total number of misses that miss in the MSHRs. */
9404626SN/A    Stats::Formula overallMshrUncacheable;
9414626SN/A
9424626SN/A    /** Total cycle latency of each MSHR miss, per command and thread. */
9435999Snate@binkert.org    Stats::Vector mshr_miss_latency[MemCmd::NUM_MEM_CMDS];
9444626SN/A    /** Total cycle latency of demand MSHR misses. */
9454626SN/A    Stats::Formula demandMshrMissLatency;
9464626SN/A    /** Total cycle latency of overall MSHR misses. */
9474626SN/A    Stats::Formula overallMshrMissLatency;
9484626SN/A
9494626SN/A    /** Total cycle latency of each MSHR miss, per command and thread. */
9505999Snate@binkert.org    Stats::Vector mshr_uncacheable_lat[MemCmd::NUM_MEM_CMDS];
9514626SN/A    /** Total cycle latency of overall MSHR misses. */
9524626SN/A    Stats::Formula overallMshrUncacheableLatency;
9534626SN/A
9547461Snate@binkert.org#if 0
9554626SN/A    /** The total number of MSHR accesses per command and thread. */
9564626SN/A    Stats::Formula mshrAccesses[MemCmd::NUM_MEM_CMDS];
9574626SN/A    /** The total number of demand MSHR accesses. */
9584626SN/A    Stats::Formula demandMshrAccesses;
9594626SN/A    /** The total number of MSHR accesses. */
9604626SN/A    Stats::Formula overallMshrAccesses;
9617461Snate@binkert.org#endif
9624626SN/A
9634626SN/A    /** The miss rate in the MSHRs pre command and thread. */
9644626SN/A    Stats::Formula mshrMissRate[MemCmd::NUM_MEM_CMDS];
9654626SN/A    /** The demand miss rate in the MSHRs. */
9664626SN/A    Stats::Formula demandMshrMissRate;
9674626SN/A    /** The overall miss rate in the MSHRs. */
9684626SN/A    Stats::Formula overallMshrMissRate;
9694626SN/A
9704626SN/A    /** The average latency of an MSHR miss, per command and thread. */
9714626SN/A    Stats::Formula avgMshrMissLatency[MemCmd::NUM_MEM_CMDS];
9724626SN/A    /** The average latency of a demand MSHR miss. */
9734626SN/A    Stats::Formula demandAvgMshrMissLatency;
9744626SN/A    /** The average overall latency of an MSHR miss. */
9754626SN/A    Stats::Formula overallAvgMshrMissLatency;
9764626SN/A
9774626SN/A    /** The average latency of an MSHR miss, per command and thread. */
9784626SN/A    Stats::Formula avgMshrUncacheableLatency[MemCmd::NUM_MEM_CMDS];
9794626SN/A    /** The average overall latency of an MSHR miss. */
9804626SN/A    Stats::Formula overallAvgMshrUncacheableLatency;
9814626SN/A
98212702Snikos.nikoleris@arm.com    /** Number of replacements of valid blocks. */
98312702Snikos.nikoleris@arm.com    Stats::Scalar replacements;
98412702Snikos.nikoleris@arm.com
9852810SN/A    /**
9862810SN/A     * @}
9872810SN/A     */
9882810SN/A
9892810SN/A    /**
9902810SN/A     * Register stats for this object.
9912810SN/A     */
99212724Snikos.nikoleris@arm.com    void regStats() override;
9932810SN/A
99413416Sjavier.bueno@metempsy.com    /** Registers probes. */
99513416Sjavier.bueno@metempsy.com    void regProbePoints() override;
99613416Sjavier.bueno@metempsy.com
9972810SN/A  public:
99811053Sandreas.hansson@arm.com    BaseCache(const BaseCacheParams *p, unsigned blk_size);
99912724Snikos.nikoleris@arm.com    ~BaseCache();
10003606SN/A
100112724Snikos.nikoleris@arm.com    void init() override;
10022858SN/A
100312724Snikos.nikoleris@arm.com    BaseMasterPort &getMasterPort(const std::string &if_name,
100412724Snikos.nikoleris@arm.com                                  PortID idx = InvalidPortID) override;
100512724Snikos.nikoleris@arm.com    BaseSlavePort &getSlavePort(const std::string &if_name,
100612724Snikos.nikoleris@arm.com                                PortID idx = InvalidPortID) override;
10078922Swilliam.wang@arm.com
10082810SN/A    /**
10092810SN/A     * Query block size of a cache.
10102810SN/A     * @return  The block size
10112810SN/A     */
10126227Snate@binkert.org    unsigned
10136227Snate@binkert.org    getBlockSize() const
10142810SN/A    {
10152810SN/A        return blkSize;
10162810SN/A    }
10172810SN/A
10188883SAli.Saidi@ARM.com    const AddrRangeList &getAddrRanges() const { return addrRanges; }
10196122SSteve.Reinhardt@amd.com
102010942Sandreas.hansson@arm.com    MSHR *allocateMissBuffer(PacketPtr pkt, Tick time, bool sched_send = true)
10214628SN/A    {
102211892Snikos.nikoleris@arm.com        MSHR *mshr = mshrQueue.allocate(pkt->getBlockAddr(blkSize), blkSize,
102311375Sandreas.hansson@arm.com                                        pkt, time, order++,
102411375Sandreas.hansson@arm.com                                        allocOnFill(pkt->cmd));
102511375Sandreas.hansson@arm.com
102611375Sandreas.hansson@arm.com        if (mshrQueue.isFull()) {
102711375Sandreas.hansson@arm.com            setBlocked((BlockedCause)MSHRQueue_MSHRs);
102811375Sandreas.hansson@arm.com        }
102911375Sandreas.hansson@arm.com
103011375Sandreas.hansson@arm.com        if (sched_send) {
103111375Sandreas.hansson@arm.com            // schedule the send
103211375Sandreas.hansson@arm.com            schedMemSideSendEvent(time);
103311375Sandreas.hansson@arm.com        }
103411375Sandreas.hansson@arm.com
103511375Sandreas.hansson@arm.com        return mshr;
10364628SN/A    }
10374628SN/A
103811375Sandreas.hansson@arm.com    void allocateWriteBuffer(PacketPtr pkt, Tick time)
10394628SN/A    {
104011191Sandreas.hansson@arm.com        // should only see writes or clean evicts here
104111191Sandreas.hansson@arm.com        assert(pkt->isWrite() || pkt->cmd == MemCmd::CleanEvict);
104211191Sandreas.hansson@arm.com
104311892Snikos.nikoleris@arm.com        Addr blk_addr = pkt->getBlockAddr(blkSize);
104411375Sandreas.hansson@arm.com
104511375Sandreas.hansson@arm.com        WriteQueueEntry *wq_entry =
104611375Sandreas.hansson@arm.com            writeBuffer.findMatch(blk_addr, pkt->isSecure());
104711375Sandreas.hansson@arm.com        if (wq_entry && !wq_entry->inService) {
104811744Snikos.nikoleris@arm.com            DPRINTF(Cache, "Potential to merge writeback %s", pkt->print());
104911375Sandreas.hansson@arm.com        }
105011375Sandreas.hansson@arm.com
105111375Sandreas.hansson@arm.com        writeBuffer.allocate(blk_addr, blkSize, pkt, time, order++);
105211375Sandreas.hansson@arm.com
105311375Sandreas.hansson@arm.com        if (writeBuffer.isFull()) {
105411375Sandreas.hansson@arm.com            setBlocked((BlockedCause)MSHRQueue_WriteBuffer);
105511375Sandreas.hansson@arm.com        }
105611375Sandreas.hansson@arm.com
105711375Sandreas.hansson@arm.com        // schedule the send
105811375Sandreas.hansson@arm.com        schedMemSideSendEvent(time);
10594628SN/A    }
10604628SN/A
10612810SN/A    /**
10622810SN/A     * Returns true if the cache is blocked for accesses.
10632810SN/A     */
10649529Sandreas.hansson@arm.com    bool isBlocked() const
10652810SN/A    {
10662810SN/A        return blocked != 0;
10672810SN/A    }
10682810SN/A
10692810SN/A    /**
10702810SN/A     * Marks the access path of the cache as blocked for the given cause. This
10712810SN/A     * also sets the blocked flag in the slave interface.
10722810SN/A     * @param cause The reason for the cache blocking.
10732810SN/A     */
10742810SN/A    void setBlocked(BlockedCause cause)
10752810SN/A    {
10762810SN/A        uint8_t flag = 1 << cause;
10772810SN/A        if (blocked == 0) {
10782810SN/A            blocked_causes[cause]++;
10799288Sandreas.hansson@arm.com            blockedCycle = curCycle();
108012724Snikos.nikoleris@arm.com            cpuSidePort.setBlocked();
10812810SN/A        }
10824630SN/A        blocked |= flag;
10834630SN/A        DPRINTF(Cache,"Blocking for cause %d, mask=%d\n", cause, blocked);
10842810SN/A    }
10852810SN/A
10862810SN/A    /**
10872810SN/A     * Marks the cache as unblocked for the given cause. This also clears the
10882810SN/A     * blocked flags in the appropriate interfaces.
10892810SN/A     * @param cause The newly unblocked cause.
10902810SN/A     * @warning Calling this function can cause a blocked request on the bus to
10912810SN/A     * access the cache. The cache must be in a state to handle that request.
10922810SN/A     */
10932810SN/A    void clearBlocked(BlockedCause cause)
10942810SN/A    {
10952810SN/A        uint8_t flag = 1 << cause;
10964630SN/A        blocked &= ~flag;
10974630SN/A        DPRINTF(Cache,"Unblocking for cause %d, mask=%d\n", cause, blocked);
10984630SN/A        if (blocked == 0) {
10999288Sandreas.hansson@arm.com            blocked_cycles[cause] += curCycle() - blockedCycle;
110012724Snikos.nikoleris@arm.com            cpuSidePort.clearBlocked();
11012810SN/A        }
11022810SN/A    }
11032810SN/A
11042810SN/A    /**
110510942Sandreas.hansson@arm.com     * Schedule a send event for the memory-side port. If already
110610942Sandreas.hansson@arm.com     * scheduled, this may reschedule the event at an earlier
110710942Sandreas.hansson@arm.com     * time. When the specified time is reached, the port is free to
110810942Sandreas.hansson@arm.com     * send either a response, a request, or a prefetch request.
110910942Sandreas.hansson@arm.com     *
111010942Sandreas.hansson@arm.com     * @param time The time when to attempt sending a packet.
11112810SN/A     */
111210942Sandreas.hansson@arm.com    void schedMemSideSendEvent(Tick time)
11132810SN/A    {
111412724Snikos.nikoleris@arm.com        memSidePort.schedSendEvent(time);
11152811SN/A    }
11163503SN/A
111712724Snikos.nikoleris@arm.com    bool inCache(Addr addr, bool is_secure) const {
111812724Snikos.nikoleris@arm.com        return tags->findBlock(addr, is_secure);
111912724Snikos.nikoleris@arm.com    }
11204626SN/A
112112724Snikos.nikoleris@arm.com    bool inMissQueue(Addr addr, bool is_secure) const {
112212724Snikos.nikoleris@arm.com        return mshrQueue.findMatch(addr, is_secure);
112312724Snikos.nikoleris@arm.com    }
11244626SN/A
11258833Sdam.sunwoo@arm.com    void incMissCount(PacketPtr pkt)
11263503SN/A    {
11278833Sdam.sunwoo@arm.com        assert(pkt->req->masterId() < system->maxMasters());
11288833Sdam.sunwoo@arm.com        misses[pkt->cmdToIndex()][pkt->req->masterId()]++;
112910020Smatt.horsnell@ARM.com        pkt->req->incAccessDepth();
11304626SN/A        if (missCount) {
11314626SN/A            --missCount;
11324626SN/A            if (missCount == 0)
11334626SN/A                exitSimLoop("A cache reached the maximum miss count");
11343503SN/A        }
11353503SN/A    }
11368833Sdam.sunwoo@arm.com    void incHitCount(PacketPtr pkt)
11376978SLisa.Hsu@amd.com    {
11388833Sdam.sunwoo@arm.com        assert(pkt->req->masterId() < system->maxMasters());
11398833Sdam.sunwoo@arm.com        hits[pkt->cmdToIndex()][pkt->req->masterId()]++;
11406978SLisa.Hsu@amd.com
11416978SLisa.Hsu@amd.com    }
11423503SN/A
114312724Snikos.nikoleris@arm.com    /**
114413416Sjavier.bueno@metempsy.com     * Checks if the cache is coalescing writes
114513416Sjavier.bueno@metempsy.com     *
114613416Sjavier.bueno@metempsy.com     * @return True if the cache is coalescing writes
114713416Sjavier.bueno@metempsy.com     */
114813416Sjavier.bueno@metempsy.com    bool coalesce() const;
114913416Sjavier.bueno@metempsy.com
115013416Sjavier.bueno@metempsy.com
115113416Sjavier.bueno@metempsy.com    /**
115212724Snikos.nikoleris@arm.com     * Cache block visitor that writes back dirty cache blocks using
115312724Snikos.nikoleris@arm.com     * functional writes.
115412724Snikos.nikoleris@arm.com     */
115512728Snikos.nikoleris@arm.com    void writebackVisitor(CacheBlk &blk);
115612724Snikos.nikoleris@arm.com
115712724Snikos.nikoleris@arm.com    /**
115812724Snikos.nikoleris@arm.com     * Cache block visitor that invalidates all blocks in the cache.
115912724Snikos.nikoleris@arm.com     *
116012724Snikos.nikoleris@arm.com     * @warn Dirty cache lines will not be written back to memory.
116112724Snikos.nikoleris@arm.com     */
116212728Snikos.nikoleris@arm.com    void invalidateVisitor(CacheBlk &blk);
116312724Snikos.nikoleris@arm.com
116412724Snikos.nikoleris@arm.com    /**
116512724Snikos.nikoleris@arm.com     * Take an MSHR, turn it into a suitable downstream packet, and
116612724Snikos.nikoleris@arm.com     * send it out. This construct allows a queue entry to choose a suitable
116712724Snikos.nikoleris@arm.com     * approach based on its type.
116812724Snikos.nikoleris@arm.com     *
116912724Snikos.nikoleris@arm.com     * @param mshr The MSHR to turn into a packet and send
117012724Snikos.nikoleris@arm.com     * @return True if the port is waiting for a retry
117112724Snikos.nikoleris@arm.com     */
117212724Snikos.nikoleris@arm.com    virtual bool sendMSHRQueuePacket(MSHR* mshr);
117312724Snikos.nikoleris@arm.com
117412724Snikos.nikoleris@arm.com    /**
117512724Snikos.nikoleris@arm.com     * Similar to sendMSHR, but for a write-queue entry
117612724Snikos.nikoleris@arm.com     * instead. Create the packet, and send it, and if successful also
117712724Snikos.nikoleris@arm.com     * mark the entry in service.
117812724Snikos.nikoleris@arm.com     *
117912724Snikos.nikoleris@arm.com     * @param wq_entry The write-queue entry to turn into a packet and send
118012724Snikos.nikoleris@arm.com     * @return True if the port is waiting for a retry
118112724Snikos.nikoleris@arm.com     */
118212724Snikos.nikoleris@arm.com    bool sendWriteQueuePacket(WriteQueueEntry* wq_entry);
118312724Snikos.nikoleris@arm.com
118412724Snikos.nikoleris@arm.com    /**
118512724Snikos.nikoleris@arm.com     * Serialize the state of the caches
118612724Snikos.nikoleris@arm.com     *
118712724Snikos.nikoleris@arm.com     * We currently don't support checkpointing cache state, so this panics.
118812724Snikos.nikoleris@arm.com     */
118912724Snikos.nikoleris@arm.com    void serialize(CheckpointOut &cp) const override;
119012724Snikos.nikoleris@arm.com    void unserialize(CheckpointIn &cp) override;
119112724Snikos.nikoleris@arm.com};
119212724Snikos.nikoleris@arm.com
119313352Snikos.nikoleris@arm.com/**
119413352Snikos.nikoleris@arm.com * The write allocator inspects write packets and detects streaming
119513352Snikos.nikoleris@arm.com * patterns. The write allocator supports a single stream where writes
119613352Snikos.nikoleris@arm.com * are expected to access consecutive locations and keeps track of
119713352Snikos.nikoleris@arm.com * size of the area covered by the concecutive writes in byteCount.
119813352Snikos.nikoleris@arm.com *
119913352Snikos.nikoleris@arm.com * 1) When byteCount has surpassed the coallesceLimit the mode
120013352Snikos.nikoleris@arm.com * switches from ALLOCATE to COALESCE where writes should be delayed
120113352Snikos.nikoleris@arm.com * until the whole block is written at which point a single packet
120213352Snikos.nikoleris@arm.com * (whole line write) can service them.
120313352Snikos.nikoleris@arm.com *
120413352Snikos.nikoleris@arm.com * 2) When byteCount has also exceeded the noAllocateLimit (whole
120513352Snikos.nikoleris@arm.com * line) we switch to NO_ALLOCATE when writes should not allocate in
120613352Snikos.nikoleris@arm.com * the cache but rather send a whole line write to the memory below.
120713352Snikos.nikoleris@arm.com */
120813352Snikos.nikoleris@arm.comclass WriteAllocator : public SimObject {
120913352Snikos.nikoleris@arm.com  public:
121013352Snikos.nikoleris@arm.com    WriteAllocator(const WriteAllocatorParams *p) :
121113352Snikos.nikoleris@arm.com        SimObject(p),
121213352Snikos.nikoleris@arm.com        coalesceLimit(p->coalesce_limit * p->block_size),
121313352Snikos.nikoleris@arm.com        noAllocateLimit(p->no_allocate_limit * p->block_size),
121413352Snikos.nikoleris@arm.com        delayThreshold(p->delay_threshold)
121513352Snikos.nikoleris@arm.com    {
121613352Snikos.nikoleris@arm.com        reset();
121713352Snikos.nikoleris@arm.com    }
121813352Snikos.nikoleris@arm.com
121913352Snikos.nikoleris@arm.com    /**
122013352Snikos.nikoleris@arm.com     * Should writes be coalesced? This is true if the mode is set to
122113352Snikos.nikoleris@arm.com     * NO_ALLOCATE.
122213352Snikos.nikoleris@arm.com     *
122313352Snikos.nikoleris@arm.com     * @return return true if the cache should coalesce writes.
122413352Snikos.nikoleris@arm.com     */
122513352Snikos.nikoleris@arm.com    bool coalesce() const {
122613352Snikos.nikoleris@arm.com        return mode != WriteMode::ALLOCATE;
122713352Snikos.nikoleris@arm.com    }
122813352Snikos.nikoleris@arm.com
122913352Snikos.nikoleris@arm.com    /**
123013352Snikos.nikoleris@arm.com     * Should writes allocate?
123113352Snikos.nikoleris@arm.com     *
123213352Snikos.nikoleris@arm.com     * @return return true if the cache should not allocate for writes.
123313352Snikos.nikoleris@arm.com     */
123413352Snikos.nikoleris@arm.com    bool allocate() const {
123513352Snikos.nikoleris@arm.com        return mode != WriteMode::NO_ALLOCATE;
123613352Snikos.nikoleris@arm.com    }
123713352Snikos.nikoleris@arm.com
123813352Snikos.nikoleris@arm.com    /**
123913352Snikos.nikoleris@arm.com     * Reset the write allocator state, meaning that it allocates for
124013352Snikos.nikoleris@arm.com     * writes and has not recorded any information about qualifying
124113352Snikos.nikoleris@arm.com     * writes that might trigger a switch to coalescing and later no
124213352Snikos.nikoleris@arm.com     * allocation.
124313352Snikos.nikoleris@arm.com     */
124413352Snikos.nikoleris@arm.com    void reset() {
124513352Snikos.nikoleris@arm.com        mode = WriteMode::ALLOCATE;
124613352Snikos.nikoleris@arm.com        byteCount = 0;
124713352Snikos.nikoleris@arm.com        nextAddr = 0;
124813352Snikos.nikoleris@arm.com    }
124913352Snikos.nikoleris@arm.com
125013352Snikos.nikoleris@arm.com    /**
125113352Snikos.nikoleris@arm.com     * Access whether we need to delay the current write.
125213352Snikos.nikoleris@arm.com     *
125313352Snikos.nikoleris@arm.com     * @param blk_addr The block address the packet writes to
125413352Snikos.nikoleris@arm.com     * @return true if the current packet should be delayed
125513352Snikos.nikoleris@arm.com     */
125613352Snikos.nikoleris@arm.com    bool delay(Addr blk_addr) {
125713352Snikos.nikoleris@arm.com        if (delayCtr[blk_addr] > 0) {
125813352Snikos.nikoleris@arm.com            --delayCtr[blk_addr];
125913352Snikos.nikoleris@arm.com            return true;
126013352Snikos.nikoleris@arm.com        } else {
126113352Snikos.nikoleris@arm.com            return false;
126213352Snikos.nikoleris@arm.com        }
126313352Snikos.nikoleris@arm.com    }
126413352Snikos.nikoleris@arm.com
126513352Snikos.nikoleris@arm.com    /**
126613352Snikos.nikoleris@arm.com     * Clear delay counter for the input block
126713352Snikos.nikoleris@arm.com     *
126813352Snikos.nikoleris@arm.com     * @param blk_addr The accessed cache block
126913352Snikos.nikoleris@arm.com     */
127013352Snikos.nikoleris@arm.com    void resetDelay(Addr blk_addr) {
127113352Snikos.nikoleris@arm.com        delayCtr.erase(blk_addr);
127213352Snikos.nikoleris@arm.com    }
127313352Snikos.nikoleris@arm.com
127413352Snikos.nikoleris@arm.com    /**
127513352Snikos.nikoleris@arm.com     * Update the write mode based on the current write
127613352Snikos.nikoleris@arm.com     * packet. This method compares the packet's address with any
127713352Snikos.nikoleris@arm.com     * current stream, and updates the tracking and the mode
127813352Snikos.nikoleris@arm.com     * accordingly.
127913352Snikos.nikoleris@arm.com     *
128013352Snikos.nikoleris@arm.com     * @param write_addr Start address of the write request
128113352Snikos.nikoleris@arm.com     * @param write_size Size of the write request
128213352Snikos.nikoleris@arm.com     * @param blk_addr The block address that this packet writes to
128313352Snikos.nikoleris@arm.com     */
128413352Snikos.nikoleris@arm.com    void updateMode(Addr write_addr, unsigned write_size, Addr blk_addr);
128513352Snikos.nikoleris@arm.com
128613352Snikos.nikoleris@arm.com  private:
128713352Snikos.nikoleris@arm.com    /**
128813352Snikos.nikoleris@arm.com     * The current mode for write coalescing and allocation, either
128913352Snikos.nikoleris@arm.com     * normal operation (ALLOCATE), write coalescing (COALESCE), or
129013352Snikos.nikoleris@arm.com     * write coalescing without allocation (NO_ALLOCATE).
129113352Snikos.nikoleris@arm.com     */
129213352Snikos.nikoleris@arm.com    enum class WriteMode : char {
129313352Snikos.nikoleris@arm.com        ALLOCATE,
129413352Snikos.nikoleris@arm.com        COALESCE,
129513352Snikos.nikoleris@arm.com        NO_ALLOCATE,
129613352Snikos.nikoleris@arm.com    };
129713352Snikos.nikoleris@arm.com    WriteMode mode;
129813352Snikos.nikoleris@arm.com
129913352Snikos.nikoleris@arm.com    /** Address to match writes against to detect streams. */
130013352Snikos.nikoleris@arm.com    Addr nextAddr;
130113352Snikos.nikoleris@arm.com
130213352Snikos.nikoleris@arm.com    /**
130313352Snikos.nikoleris@arm.com     * Bytes written contiguously. Saturating once we no longer
130413352Snikos.nikoleris@arm.com     * allocate.
130513352Snikos.nikoleris@arm.com     */
130613352Snikos.nikoleris@arm.com    uint32_t byteCount;
130713352Snikos.nikoleris@arm.com
130813352Snikos.nikoleris@arm.com    /**
130913352Snikos.nikoleris@arm.com     * Limits for when to switch between the different write modes.
131013352Snikos.nikoleris@arm.com     */
131113352Snikos.nikoleris@arm.com    const uint32_t coalesceLimit;
131213352Snikos.nikoleris@arm.com    const uint32_t noAllocateLimit;
131313352Snikos.nikoleris@arm.com    /**
131413352Snikos.nikoleris@arm.com     * The number of times the allocator will delay an WriteReq MSHR.
131513352Snikos.nikoleris@arm.com     */
131613352Snikos.nikoleris@arm.com    const uint32_t delayThreshold;
131713352Snikos.nikoleris@arm.com
131813352Snikos.nikoleris@arm.com    /**
131913352Snikos.nikoleris@arm.com     * Keep track of the number of times the allocator has delayed an
132013352Snikos.nikoleris@arm.com     * WriteReq MSHR.
132113352Snikos.nikoleris@arm.com     */
132213352Snikos.nikoleris@arm.com    std::unordered_map<Addr, Counter> delayCtr;
132313352Snikos.nikoleris@arm.com};
132413352Snikos.nikoleris@arm.com
132511051Sandreas.hansson@arm.com#endif //__MEM_CACHE_BASE_HH__
1326