mshr.hh revision 5337:f81512eb8bdf
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Erik Hallnor
29 */
30
31/**
32 * @file
33 * Miss Status and Handling Register (MSHR) declaration.
34 */
35
36#ifndef __MSHR_HH__
37#define __MSHR_HH__
38
39#include <list>
40
41#include "base/printable.hh"
42#include "mem/packet.hh"
43
44class CacheBlk;
45class MSHRQueue;
46
47/**
48 * Miss Status and handling Register. This class keeps all the information
49 * needed to handle a cache miss including a list of target requests.
50 */
51class MSHR : public Packet::SenderState, public Printable
52{
53
54  public:
55
56    class Target {
57      public:
58        Tick recvTime;  //!< Time when request was received (for stats)
59        Tick readyTime; //!< Time when request is ready to be serviced
60        Counter order;  //!< Global order (for memory consistency mgmt)
61        PacketPtr pkt;  //!< Pending request packet.
62        bool cpuSide;   //!< Did request come from cpu side or mem side?
63        bool markedPending; //!< Did we mark upstream MSHR
64                            //!<  as downstreamPending?
65
66        bool isCpuSide() const { return cpuSide; }
67
68        Target(PacketPtr _pkt, Tick _readyTime, Counter _order,
69               bool _cpuSide, bool _markedPending)
70            : recvTime(curTick), readyTime(_readyTime), order(_order),
71              pkt(_pkt), cpuSide(_cpuSide), markedPending(_markedPending)
72        {}
73    };
74
75    class TargetList : public std::list<Target> {
76        /** Target list iterator. */
77        typedef std::list<Target>::iterator Iterator;
78        typedef std::list<Target>::const_iterator ConstIterator;
79
80      public:
81        bool needsExclusive;
82        bool hasUpgrade;
83
84        TargetList();
85        void resetFlags() { needsExclusive = hasUpgrade = false; }
86        bool isReset()    { return !needsExclusive && !hasUpgrade; }
87        void add(PacketPtr pkt, Tick readyTime, Counter order,
88                 bool cpuSide, bool markPending);
89        void replaceUpgrades();
90        void clearDownstreamPending();
91        bool checkFunctional(PacketPtr pkt);
92        void print(std::ostream &os, int verbosity,
93                   const std::string &prefix) const;
94    };
95
96    /** A list of MSHRs. */
97    typedef std::list<MSHR *> List;
98    /** MSHR list iterator. */
99    typedef List::iterator Iterator;
100    /** MSHR list const_iterator. */
101    typedef List::const_iterator ConstIterator;
102
103    /** Pointer to queue containing this MSHR. */
104    MSHRQueue *queue;
105
106    /** Cycle when ready to issue */
107    Tick readyTime;
108
109    /** Order number assigned by the miss queue. */
110    Counter order;
111
112    /** Address of the request. */
113    Addr addr;
114
115    /** Size of the request. */
116    int size;
117
118    /** True if the request has been sent to the bus. */
119    bool inService;
120
121    /** True if we will be putting the returned block in the cache */
122    bool isCacheFill;
123
124    /** True if we need to get an exclusive copy of the block. */
125    bool needsExclusive() const { return targets->needsExclusive; }
126
127    /** True if the request is uncacheable */
128    bool _isUncacheable;
129
130    bool downstreamPending;
131
132    bool pendingInvalidate;
133    bool pendingShared;
134
135    /** Thread number of the miss. */
136    short threadNum;
137    /** The number of currently allocated targets. */
138    short ntargets;
139
140
141    /** Data buffer (if needed).  Currently used only for pending
142     * upgrade handling. */
143    uint8_t *data;
144
145    /**
146     * Pointer to this MSHR on the ready list.
147     * @sa MissQueue, MSHRQueue::readyList
148     */
149    Iterator readyIter;
150
151    /**
152     * Pointer to this MSHR on the allocated list.
153     * @sa MissQueue, MSHRQueue::allocatedList
154     */
155    Iterator allocIter;
156
157private:
158    /** List of all requests that match the address */
159    TargetList *targets;
160
161    TargetList *deferredTargets;
162
163public:
164
165    bool isUncacheable() { return _isUncacheable; }
166
167    /**
168     * Allocate a miss to this MSHR.
169     * @param cmd The requesting command.
170     * @param addr The address of the miss.
171     * @param asid The address space id of the miss.
172     * @param size The number of bytes to request.
173     * @param pkt  The original miss.
174     */
175    void allocate(Addr addr, int size, PacketPtr pkt,
176                  Tick when, Counter _order);
177
178    bool markInService();
179
180    void clearDownstreamPending();
181
182    /**
183     * Mark this MSHR as free.
184     */
185    void deallocate();
186
187    /**
188     * Add a request to the list of targets.
189     * @param target The target.
190     */
191    void allocateTarget(PacketPtr target, Tick when, Counter order);
192    bool handleSnoop(PacketPtr target, Counter order);
193
194    /** A simple constructor. */
195    MSHR();
196    /** A simple destructor. */
197    ~MSHR();
198
199    /**
200     * Returns the current number of allocated targets.
201     * @return The current number of allocated targets.
202     */
203    int getNumTargets() { return ntargets; }
204
205    /**
206     * Returns a pointer to the target list.
207     * @return a pointer to the target list.
208     */
209    TargetList *getTargetList() { return targets; }
210
211    /**
212     * Returns true if there are targets left.
213     * @return true if there are targets
214     */
215    bool hasTargets() { return !targets->empty(); }
216
217    /**
218     * Returns a reference to the first target.
219     * @return A pointer to the first target.
220     */
221    Target *getTarget() { assert(hasTargets());  return &targets->front(); }
222
223    /**
224     * Pop first target.
225     */
226    void popTarget()
227    {
228        --ntargets;
229        targets->pop_front();
230    }
231
232    bool isSimpleForward()
233    {
234        if (getNumTargets() != 1)
235            return false;
236        Target *tgt = getTarget();
237        return tgt->isCpuSide() && !tgt->pkt->needsResponse();
238    }
239
240    bool promoteDeferredTargets();
241
242    void handleFill(Packet *pkt, CacheBlk *blk);
243
244    bool checkFunctional(PacketPtr pkt);
245
246    /**
247     * Prints the contents of this MSHR for debugging.
248     */
249    void print(std::ostream &os,
250               int verbosity = 0,
251               const std::string &prefix = "") const;
252};
253
254#endif //__MSHR_HH__
255