cache.hh revision 8948
12810Srdreslin@umich.edu/*
28702Sandreas.hansson@arm.com * Copyright (c) 2012 ARM Limited
38702Sandreas.hansson@arm.com * All rights reserved.
48702Sandreas.hansson@arm.com *
58702Sandreas.hansson@arm.com * The license below extends only to copyright in the software and shall
68702Sandreas.hansson@arm.com * not be construed as granting a license to any other intellectual
78702Sandreas.hansson@arm.com * property including but not limited to intellectual property relating
88702Sandreas.hansson@arm.com * to a hardware implementation of the functionality of the software
98702Sandreas.hansson@arm.com * licensed hereunder.  You may use the software subject to the license
108702Sandreas.hansson@arm.com * terms below provided that you ensure that this notice is replicated
118702Sandreas.hansson@arm.com * unmodified and in its entirety in all distributions of the software,
128702Sandreas.hansson@arm.com * modified or unmodified, in source code or in binary form.
138702Sandreas.hansson@arm.com *
142810Srdreslin@umich.edu * Copyright (c) 2002-2005 The Regents of The University of Michigan
152810Srdreslin@umich.edu * All rights reserved.
162810Srdreslin@umich.edu *
172810Srdreslin@umich.edu * Redistribution and use in source and binary forms, with or without
182810Srdreslin@umich.edu * modification, are permitted provided that the following conditions are
192810Srdreslin@umich.edu * met: redistributions of source code must retain the above copyright
202810Srdreslin@umich.edu * notice, this list of conditions and the following disclaimer;
212810Srdreslin@umich.edu * redistributions in binary form must reproduce the above copyright
222810Srdreslin@umich.edu * notice, this list of conditions and the following disclaimer in the
232810Srdreslin@umich.edu * documentation and/or other materials provided with the distribution;
242810Srdreslin@umich.edu * neither the name of the copyright holders nor the names of its
252810Srdreslin@umich.edu * contributors may be used to endorse or promote products derived from
262810Srdreslin@umich.edu * this software without specific prior written permission.
272810Srdreslin@umich.edu *
282810Srdreslin@umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
292810Srdreslin@umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
302810Srdreslin@umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
312810Srdreslin@umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
322810Srdreslin@umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
332810Srdreslin@umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
342810Srdreslin@umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
352810Srdreslin@umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
362810Srdreslin@umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
372810Srdreslin@umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
382810Srdreslin@umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
392810Srdreslin@umich.edu *
402810Srdreslin@umich.edu * Authors: Erik Hallnor
412810Srdreslin@umich.edu *          Dave Greene
422810Srdreslin@umich.edu *          Steve Reinhardt
434458Sstever@eecs.umich.edu *          Ron Dreslinski
448856Sandreas.hansson@arm.com *          Andreas Hansson
452810Srdreslin@umich.edu */
462810Srdreslin@umich.edu
472810Srdreslin@umich.edu/**
482810Srdreslin@umich.edu * @file
492810Srdreslin@umich.edu * Describes a cache based on template policies.
502810Srdreslin@umich.edu */
512810Srdreslin@umich.edu
522810Srdreslin@umich.edu#ifndef __CACHE_HH__
532810Srdreslin@umich.edu#define __CACHE_HH__
542810Srdreslin@umich.edu
552810Srdreslin@umich.edu#include "base/misc.hh" // fatal, panic, and warn
565338Sstever@gmail.com#include "mem/cache/base.hh"
575338Sstever@gmail.com#include "mem/cache/blk.hh"
585338Sstever@gmail.com#include "mem/cache/mshr.hh"
594458Sstever@eecs.umich.edu#include "sim/eventq.hh"
604458Sstever@eecs.umich.edu
612813Srdreslin@umich.edu//Forward decleration
623861Sstever@eecs.umich.educlass BasePrefetcher;
632810Srdreslin@umich.edu
642810Srdreslin@umich.edu/**
652810Srdreslin@umich.edu * A template-policy based cache. The behavior of the cache can be altered by
662810Srdreslin@umich.edu * supplying different template policies. TagStore handles all tag and data
674672Sstever@eecs.umich.edu * storage @sa TagStore.
682810Srdreslin@umich.edu */
694672Sstever@eecs.umich.edutemplate <class TagStore>
702810Srdreslin@umich.educlass Cache : public BaseCache
712810Srdreslin@umich.edu{
722810Srdreslin@umich.edu  public:
732810Srdreslin@umich.edu    /** Define the type of cache block to use. */
742810Srdreslin@umich.edu    typedef typename TagStore::BlkType BlkType;
753860Sstever@eecs.umich.edu    /** A typedef for a list of BlkType pointers. */
763860Sstever@eecs.umich.edu    typedef typename TagStore::BlkList BlkList;
772810Srdreslin@umich.edu
782810Srdreslin@umich.edu  protected:
792810Srdreslin@umich.edu
808856Sandreas.hansson@arm.com    /**
818856Sandreas.hansson@arm.com     * The CPU-side port extends the base cache slave port with access
828856Sandreas.hansson@arm.com     * functions for functional, atomic and timing requests.
838856Sandreas.hansson@arm.com     */
848856Sandreas.hansson@arm.com    class CpuSidePort : public CacheSlavePort
853738Sstever@eecs.umich.edu    {
868856Sandreas.hansson@arm.com      private:
873738Sstever@eecs.umich.edu
888856Sandreas.hansson@arm.com        // a pointer to our specific cache implementation
898856Sandreas.hansson@arm.com        Cache<TagStore> *cache;
903738Sstever@eecs.umich.edu
918856Sandreas.hansson@arm.com      protected:
924478Sstever@eecs.umich.edu
938948Sandreas.hansson@arm.com        virtual bool recvTimingSnoop(PacketPtr pkt);
948948Sandreas.hansson@arm.com
953738Sstever@eecs.umich.edu        virtual bool recvTiming(PacketPtr pkt);
963738Sstever@eecs.umich.edu
973738Sstever@eecs.umich.edu        virtual Tick recvAtomic(PacketPtr pkt);
983738Sstever@eecs.umich.edu
993738Sstever@eecs.umich.edu        virtual void recvFunctional(PacketPtr pkt);
1008856Sandreas.hansson@arm.com
1018856Sandreas.hansson@arm.com        virtual unsigned deviceBlockSize() const
1028856Sandreas.hansson@arm.com        { return cache->getBlockSize(); }
1038856Sandreas.hansson@arm.com
1048856Sandreas.hansson@arm.com        virtual AddrRangeList getAddrRanges();
1058856Sandreas.hansson@arm.com
1068856Sandreas.hansson@arm.com      public:
1078856Sandreas.hansson@arm.com
1088856Sandreas.hansson@arm.com        CpuSidePort(const std::string &_name, Cache<TagStore> *_cache,
1098856Sandreas.hansson@arm.com                    const std::string &_label);
1108856Sandreas.hansson@arm.com
1113738Sstever@eecs.umich.edu    };
1123738Sstever@eecs.umich.edu
1138856Sandreas.hansson@arm.com    /**
1148914Sandreas.hansson@arm.com     * Override the default behaviour of sendDeferredPacket to enable
1158914Sandreas.hansson@arm.com     * the memory-side cache port to also send requests based on the
1168914Sandreas.hansson@arm.com     * current MSHR status. This queue has a pointer to our specific
1178914Sandreas.hansson@arm.com     * cache implementation and is used by the MemSidePort.
1188914Sandreas.hansson@arm.com     */
1198914Sandreas.hansson@arm.com    class MemSidePacketQueue : public PacketQueue
1208914Sandreas.hansson@arm.com    {
1218914Sandreas.hansson@arm.com
1228914Sandreas.hansson@arm.com      protected:
1238914Sandreas.hansson@arm.com
1248914Sandreas.hansson@arm.com        Cache<TagStore> &cache;
1258914Sandreas.hansson@arm.com
1268914Sandreas.hansson@arm.com      public:
1278914Sandreas.hansson@arm.com
1288914Sandreas.hansson@arm.com        MemSidePacketQueue(Cache<TagStore> &cache, Port &port,
1298914Sandreas.hansson@arm.com                           const std::string &label) :
1308914Sandreas.hansson@arm.com            PacketQueue(cache, port, label), cache(cache) { }
1318914Sandreas.hansson@arm.com
1328914Sandreas.hansson@arm.com        /**
1338914Sandreas.hansson@arm.com         * Override the normal sendDeferredPacket and do not only
1348914Sandreas.hansson@arm.com         * consider the transmit list (used for responses), but also
1358914Sandreas.hansson@arm.com         * requests.
1368914Sandreas.hansson@arm.com         */
1378914Sandreas.hansson@arm.com        virtual void sendDeferredPacket();
1388914Sandreas.hansson@arm.com
1398914Sandreas.hansson@arm.com    };
1408914Sandreas.hansson@arm.com
1418914Sandreas.hansson@arm.com    /**
1428856Sandreas.hansson@arm.com     * The memory-side port extends the base cache master port with
1438856Sandreas.hansson@arm.com     * access functions for functional, atomic and timing snoops.
1448856Sandreas.hansson@arm.com     */
1458856Sandreas.hansson@arm.com    class MemSidePort : public CacheMasterPort
1463738Sstever@eecs.umich.edu    {
1478856Sandreas.hansson@arm.com      private:
1483738Sstever@eecs.umich.edu
1498914Sandreas.hansson@arm.com        /** The cache-specific queue. */
1508914Sandreas.hansson@arm.com        MemSidePacketQueue _queue;
1518914Sandreas.hansson@arm.com
1528856Sandreas.hansson@arm.com        // a pointer to our specific cache implementation
1538856Sandreas.hansson@arm.com        Cache<TagStore> *cache;
1543738Sstever@eecs.umich.edu
1558856Sandreas.hansson@arm.com      protected:
1564478Sstever@eecs.umich.edu
1578948Sandreas.hansson@arm.com        virtual bool recvTimingSnoop(PacketPtr pkt);
1588948Sandreas.hansson@arm.com
1593738Sstever@eecs.umich.edu        virtual bool recvTiming(PacketPtr pkt);
1603738Sstever@eecs.umich.edu
1618948Sandreas.hansson@arm.com        virtual Tick recvAtomicSnoop(PacketPtr pkt);
1623738Sstever@eecs.umich.edu
1638948Sandreas.hansson@arm.com        virtual void recvFunctionalSnoop(PacketPtr pkt);
1644458Sstever@eecs.umich.edu
1658856Sandreas.hansson@arm.com        virtual unsigned deviceBlockSize() const
1668856Sandreas.hansson@arm.com        { return cache->getBlockSize(); }
1678856Sandreas.hansson@arm.com
1688856Sandreas.hansson@arm.com      public:
1698856Sandreas.hansson@arm.com
1708856Sandreas.hansson@arm.com        MemSidePort(const std::string &_name, Cache<TagStore> *_cache,
1718856Sandreas.hansson@arm.com                    const std::string &_label);
1723738Sstever@eecs.umich.edu    };
1733738Sstever@eecs.umich.edu
1742810Srdreslin@umich.edu    /** Tag and data Storage */
1752810Srdreslin@umich.edu    TagStore *tags;
1764626Sstever@eecs.umich.edu
1772810Srdreslin@umich.edu    /** Prefetcher */
1783861Sstever@eecs.umich.edu    BasePrefetcher *prefetcher;
1792810Srdreslin@umich.edu
1804671Sstever@eecs.umich.edu    /** Temporary cache block for occasional transitory use */
1814671Sstever@eecs.umich.edu    BlkType *tempBlock;
1824671Sstever@eecs.umich.edu
1832810Srdreslin@umich.edu    /**
1845707Shsul@eecs.umich.edu     * This cache should allocate a block on a line-sized write miss.
1853860Sstever@eecs.umich.edu     */
1863860Sstever@eecs.umich.edu    const bool doFastWrites;
1873860Sstever@eecs.umich.edu
1885875Ssteve.reinhardt@amd.com    /**
1895875Ssteve.reinhardt@amd.com     * Notify the prefetcher on every access, not just misses.
1905875Ssteve.reinhardt@amd.com     */
1915875Ssteve.reinhardt@amd.com    const bool prefetchOnAccess;
1923860Sstever@eecs.umich.edu
1933860Sstever@eecs.umich.edu    /**
1943860Sstever@eecs.umich.edu     * Does all the processing necessary to perform the provided request.
1953860Sstever@eecs.umich.edu     * @param pkt The memory request to perform.
1963860Sstever@eecs.umich.edu     * @param lat The latency of the access.
1973860Sstever@eecs.umich.edu     * @param writebacks List for any writebacks that need to be performed.
1983860Sstever@eecs.umich.edu     * @param update True if the replacement data should be updated.
1995707Shsul@eecs.umich.edu     * @return Boolean indicating whether the request was satisfied.
2003860Sstever@eecs.umich.edu     */
2015388Sstever@gmail.com    bool access(PacketPtr pkt, BlkType *&blk,
2025388Sstever@gmail.com                int &lat, PacketList &writebacks);
2034219Srdreslin@umich.edu
2044219Srdreslin@umich.edu    /**
2054219Srdreslin@umich.edu     *Handle doing the Compare and Swap function for SPARC.
2064219Srdreslin@umich.edu     */
2074626Sstever@eecs.umich.edu    void cmpAndSwap(BlkType *blk, PacketPtr pkt);
2083860Sstever@eecs.umich.edu
2093860Sstever@eecs.umich.edu    /**
2105350Sstever@gmail.com     * Find a block frame for new block at address addr, assuming that
2115350Sstever@gmail.com     * the block is not currently in the cache.  Append writebacks if
2125350Sstever@gmail.com     * any to provided packet list.  Return free block frame.  May
2135350Sstever@gmail.com     * return NULL if there are no replaceable blocks at the moment.
2145350Sstever@gmail.com     */
2155350Sstever@gmail.com    BlkType *allocateBlock(Addr addr, PacketList &writebacks);
2165350Sstever@gmail.com
2175350Sstever@gmail.com    /**
2183860Sstever@eecs.umich.edu     * Populates a cache block and handles all outstanding requests for the
2193860Sstever@eecs.umich.edu     * satisfied fill request. This version takes two memory requests. One
2203860Sstever@eecs.umich.edu     * contains the fill data, the other is an optional target to satisfy.
2214626Sstever@eecs.umich.edu     * @param pkt The memory request with the fill data.
2223860Sstever@eecs.umich.edu     * @param blk The cache block if it already exists.
2233860Sstever@eecs.umich.edu     * @param writebacks List for any writebacks that need to be performed.
2243860Sstever@eecs.umich.edu     * @return Pointer to the new cache block.
2253860Sstever@eecs.umich.edu     */
2264626Sstever@eecs.umich.edu    BlkType *handleFill(PacketPtr pkt, BlkType *blk,
2274626Sstever@eecs.umich.edu                        PacketList &writebacks);
2283860Sstever@eecs.umich.edu
2297667Ssteve.reinhardt@amd.com    void satisfyCpuSideRequest(PacketPtr pkt, BlkType *blk,
2307667Ssteve.reinhardt@amd.com                               bool deferred_response = false,
2317667Ssteve.reinhardt@amd.com                               bool pending_downgrade = false);
2324628Sstever@eecs.umich.edu    bool satisfyMSHR(MSHR *mshr, PacketPtr pkt, BlkType *blk);
2334626Sstever@eecs.umich.edu
2344670Sstever@eecs.umich.edu    void doTimingSupplyResponse(PacketPtr req_pkt, uint8_t *blk_data,
2355319Sstever@gmail.com                                bool already_copied, bool pending_inval);
2363860Sstever@eecs.umich.edu
2373860Sstever@eecs.umich.edu    /**
2383860Sstever@eecs.umich.edu     * Sets the blk to the new state.
2393860Sstever@eecs.umich.edu     * @param blk The cache block being snooped.
2403860Sstever@eecs.umich.edu     * @param new_state The new coherence state for the block.
2413860Sstever@eecs.umich.edu     */
2424670Sstever@eecs.umich.edu    void handleSnoop(PacketPtr ptk, BlkType *blk,
2435319Sstever@gmail.com                     bool is_timing, bool is_deferred, bool pending_inval);
2443860Sstever@eecs.umich.edu
2453860Sstever@eecs.umich.edu    /**
2463860Sstever@eecs.umich.edu     * Create a writeback request for the given block.
2473860Sstever@eecs.umich.edu     * @param blk The block to writeback.
2483860Sstever@eecs.umich.edu     * @return The writeback request for the block.
2493860Sstever@eecs.umich.edu     */
2503860Sstever@eecs.umich.edu    PacketPtr writebackBlk(BlkType *blk);
2513860Sstever@eecs.umich.edu
2522810Srdreslin@umich.edu  public:
2532810Srdreslin@umich.edu    /** Instantiates a basic cache object. */
2548831Smrinmoy.ghosh@arm.com    Cache(const Params *p, TagStore *tags);
2552810Srdreslin@umich.edu
2562810Srdreslin@umich.edu    void regStats();
2572810Srdreslin@umich.edu
2582810Srdreslin@umich.edu    /**
2592810Srdreslin@umich.edu     * Performs the access specified by the request.
2602982Sstever@eecs.umich.edu     * @param pkt The request to perform.
2612810Srdreslin@umich.edu     * @return The result of the access.
2622810Srdreslin@umich.edu     */
2634626Sstever@eecs.umich.edu    bool timingAccess(PacketPtr pkt);
2642810Srdreslin@umich.edu
2652810Srdreslin@umich.edu    /**
2664626Sstever@eecs.umich.edu     * Performs the access specified by the request.
2674626Sstever@eecs.umich.edu     * @param pkt The request to perform.
2684626Sstever@eecs.umich.edu     * @return The result of the access.
2692810Srdreslin@umich.edu     */
2704626Sstever@eecs.umich.edu    Tick atomicAccess(PacketPtr pkt);
2712810Srdreslin@umich.edu
2722810Srdreslin@umich.edu    /**
2734626Sstever@eecs.umich.edu     * Performs the access specified by the request.
2744626Sstever@eecs.umich.edu     * @param pkt The request to perform.
2758702Sandreas.hansson@arm.com     * @param fromCpuSide from the CPU side port or the memory side port
2762810Srdreslin@umich.edu     */
2778702Sandreas.hansson@arm.com    void functionalAccess(PacketPtr pkt, bool fromCpuSide);
2783293Srdreslin@umich.edu
2793293Srdreslin@umich.edu    /**
2802810Srdreslin@umich.edu     * Handles a response (cache line fill/write ack) from the bus.
2812982Sstever@eecs.umich.edu     * @param pkt The request being responded to.
2822810Srdreslin@umich.edu     */
2834626Sstever@eecs.umich.edu    void handleResponse(PacketPtr pkt);
2842810Srdreslin@umich.edu
2852810Srdreslin@umich.edu    /**
2862810Srdreslin@umich.edu     * Snoops bus transactions to maintain coherence.
2872982Sstever@eecs.umich.edu     * @param pkt The current bus transaction.
2882810Srdreslin@umich.edu     */
2894626Sstever@eecs.umich.edu    void snoopTiming(PacketPtr pkt);
2902810Srdreslin@umich.edu
2914626Sstever@eecs.umich.edu    /**
2924626Sstever@eecs.umich.edu     * Snoop for the provided request in the cache and return the estimated
2934626Sstever@eecs.umich.edu     * time of completion.
2944626Sstever@eecs.umich.edu     * @param pkt The memory request to snoop
2954626Sstever@eecs.umich.edu     * @return The estimated completion time.
2964626Sstever@eecs.umich.edu     */
2974626Sstever@eecs.umich.edu    Tick snoopAtomic(PacketPtr pkt);
2982810Srdreslin@umich.edu
2992810Srdreslin@umich.edu    /**
3002982Sstever@eecs.umich.edu     * Squash all requests associated with specified thread.
3012810Srdreslin@umich.edu     * intended for use by I-cache.
3022982Sstever@eecs.umich.edu     * @param threadNum The thread to squash.
3032810Srdreslin@umich.edu     */
3044626Sstever@eecs.umich.edu    void squash(int threadNum);
3054626Sstever@eecs.umich.edu
3064626Sstever@eecs.umich.edu    /**
3075365Sstever@gmail.com     * Generate an appropriate downstream bus request packet for the
3085365Sstever@gmail.com     * given parameters.
3095365Sstever@gmail.com     * @param cpu_pkt  The upstream request that needs to be satisfied.
3105365Sstever@gmail.com     * @param blk The block currently in the cache corresponding to
3115365Sstever@gmail.com     * cpu_pkt (NULL if none).
3125365Sstever@gmail.com     * @param needsExclusive  Indicates that an exclusive copy is required
3135365Sstever@gmail.com     * even if the request in cpu_pkt doesn't indicate that.
3145365Sstever@gmail.com     * @return A new Packet containing the request, or NULL if the
3155365Sstever@gmail.com     * current request in cpu_pkt should just be forwarded on.
3164626Sstever@eecs.umich.edu     */
3174628Sstever@eecs.umich.edu    PacketPtr getBusPacket(PacketPtr cpu_pkt, BlkType *blk,
3184628Sstever@eecs.umich.edu                           bool needsExclusive);
3195365Sstever@gmail.com
3205365Sstever@gmail.com    /**
3215365Sstever@gmail.com     * Return the next MSHR to service, either a pending miss from the
3225365Sstever@gmail.com     * mshrQueue, a buffered write from the write buffer, or something
3235365Sstever@gmail.com     * from the prefetcher.  This function is responsible for
3245365Sstever@gmail.com     * prioritizing among those sources on the fly.
3255365Sstever@gmail.com     */
3264626Sstever@eecs.umich.edu    MSHR *getNextMSHR();
3275365Sstever@gmail.com
3285365Sstever@gmail.com    /**
3295365Sstever@gmail.com     * Selects an outstanding request to service.  Called when the
3305365Sstever@gmail.com     * cache gets granted the downstream bus in timing mode.
3315365Sstever@gmail.com     * @return The request to service, NULL if none found.
3325365Sstever@gmail.com     */
3334628Sstever@eecs.umich.edu    PacketPtr getTimingPacket();
3344626Sstever@eecs.umich.edu
3354626Sstever@eecs.umich.edu    /**
3364626Sstever@eecs.umich.edu     * Marks a request as in service (sent on the bus). This can have side
3374626Sstever@eecs.umich.edu     * effect since storage for no response commands is deallocated once they
3384626Sstever@eecs.umich.edu     * are successfully sent.
3394626Sstever@eecs.umich.edu     * @param pkt The request that was sent on the bus.
3404626Sstever@eecs.umich.edu     */
3417667Ssteve.reinhardt@amd.com    void markInService(MSHR *mshr, PacketPtr pkt = 0);
3424626Sstever@eecs.umich.edu
3434626Sstever@eecs.umich.edu    /**
3444626Sstever@eecs.umich.edu     * Perform the given writeback request.
3454626Sstever@eecs.umich.edu     * @param pkt The writeback request.
3464626Sstever@eecs.umich.edu     */
3474626Sstever@eecs.umich.edu    void doWriteback(PacketPtr pkt);
3484626Sstever@eecs.umich.edu
3494626Sstever@eecs.umich.edu    /**
3504626Sstever@eecs.umich.edu     * Return whether there are any outstanding misses.
3514626Sstever@eecs.umich.edu     */
3524626Sstever@eecs.umich.edu    bool outstandingMisses() const
3532810Srdreslin@umich.edu    {
3544626Sstever@eecs.umich.edu        return mshrQueue.allocated != 0;
3552810Srdreslin@umich.edu    }
3562810Srdreslin@umich.edu
3574626Sstever@eecs.umich.edu    CacheBlk *findBlock(Addr addr) {
3584626Sstever@eecs.umich.edu        return tags->findBlock(addr);
3592810Srdreslin@umich.edu    }
3602810Srdreslin@umich.edu
3613861Sstever@eecs.umich.edu    bool inCache(Addr addr) {
3623861Sstever@eecs.umich.edu        return (tags->findBlock(addr) != 0);
3633861Sstever@eecs.umich.edu    }
3643861Sstever@eecs.umich.edu
3653861Sstever@eecs.umich.edu    bool inMissQueue(Addr addr) {
3664626Sstever@eecs.umich.edu        return (mshrQueue.findMatch(addr) != 0);
3673861Sstever@eecs.umich.edu    }
3685875Ssteve.reinhardt@amd.com
3695875Ssteve.reinhardt@amd.com    /**
3705875Ssteve.reinhardt@amd.com     * Find next request ready time from among possible sources.
3715875Ssteve.reinhardt@amd.com     */
3725875Ssteve.reinhardt@amd.com    Tick nextMSHRReadyTime();
3732810Srdreslin@umich.edu};
3742810Srdreslin@umich.edu
3752810Srdreslin@umich.edu#endif // __CACHE_HH__
376