mshr.cc revision 10424:a910aeb89098
1/*
2 * Copyright (c) 2012-2013 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder.  You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2002-2005 The Regents of The University of Michigan
15 * Copyright (c) 2010 Advanced Micro Devices, Inc.
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Erik Hallnor
42 *          Dave Greene
43 */
44
45/**
46 * @file
47 * Miss Status and Handling Register (MSHR) definitions.
48 */
49
50#include <algorithm>
51#include <cassert>
52#include <string>
53#include <vector>
54
55#include "base/misc.hh"
56#include "base/types.hh"
57#include "debug/Cache.hh"
58#include "mem/cache/cache.hh"
59#include "mem/cache/mshr.hh"
60#include "sim/core.hh"
61
62using namespace std;
63
64MSHR::MSHR() : readyTime(0), _isUncacheable(false), downstreamPending(false),
65               pendingDirty(false), postInvalidate(false),
66               postDowngrade(false), queue(NULL), order(0), addr(0), size(0),
67               isSecure(false), inService(false), isForward(false),
68               threadNum(InvalidThreadID), data(NULL)
69{
70}
71
72
73MSHR::TargetList::TargetList()
74    : needsExclusive(false), hasUpgrade(false)
75{}
76
77
78inline void
79MSHR::TargetList::add(PacketPtr pkt, Tick readyTime,
80                      Counter order, Target::Source source, bool markPending)
81{
82    if (source != Target::FromSnoop) {
83        if (pkt->needsExclusive()) {
84            needsExclusive = true;
85        }
86
87        // StoreCondReq is effectively an upgrade if it's in an MSHR
88        // since it would have been failed already if we didn't have a
89        // read-only copy
90        if (pkt->isUpgrade() || pkt->cmd == MemCmd::StoreCondReq) {
91            hasUpgrade = true;
92        }
93    }
94
95    if (markPending) {
96        // Iterate over the SenderState stack and see if we find
97        // an MSHR entry. If we do, set the downstreamPending
98        // flag. Otherwise, do nothing.
99        MSHR *mshr = pkt->findNextSenderState<MSHR>();
100        if (mshr != NULL) {
101            assert(!mshr->downstreamPending);
102            mshr->downstreamPending = true;
103        }
104    }
105
106    push_back(Target(pkt, readyTime, order, source, markPending));
107}
108
109
110static void
111replaceUpgrade(PacketPtr pkt)
112{
113    if (pkt->cmd == MemCmd::UpgradeReq) {
114        pkt->cmd = MemCmd::ReadExReq;
115        DPRINTF(Cache, "Replacing UpgradeReq with ReadExReq\n");
116    } else if (pkt->cmd == MemCmd::SCUpgradeReq) {
117        pkt->cmd = MemCmd::SCUpgradeFailReq;
118        DPRINTF(Cache, "Replacing SCUpgradeReq with SCUpgradeFailReq\n");
119    } else if (pkt->cmd == MemCmd::StoreCondReq) {
120        pkt->cmd = MemCmd::StoreCondFailReq;
121        DPRINTF(Cache, "Replacing StoreCondReq with StoreCondFailReq\n");
122    }
123}
124
125
126void
127MSHR::TargetList::replaceUpgrades()
128{
129    if (!hasUpgrade)
130        return;
131
132    Iterator end_i = end();
133    for (Iterator i = begin(); i != end_i; ++i) {
134        replaceUpgrade(i->pkt);
135    }
136
137    hasUpgrade = false;
138}
139
140
141void
142MSHR::TargetList::clearDownstreamPending()
143{
144    Iterator end_i = end();
145    for (Iterator i = begin(); i != end_i; ++i) {
146        if (i->markedPending) {
147            // Iterate over the SenderState stack and see if we find
148            // an MSHR entry. If we find one, clear the
149            // downstreamPending flag by calling
150            // clearDownstreamPending(). This recursively clears the
151            // downstreamPending flag in all caches this packet has
152            // passed through.
153            MSHR *mshr = i->pkt->findNextSenderState<MSHR>();
154            if (mshr != NULL) {
155                mshr->clearDownstreamPending();
156            }
157        }
158    }
159}
160
161
162bool
163MSHR::TargetList::checkFunctional(PacketPtr pkt)
164{
165    Iterator end_i = end();
166    for (Iterator i = begin(); i != end_i; ++i) {
167        if (pkt->checkFunctional(i->pkt)) {
168            return true;
169        }
170    }
171
172    return false;
173}
174
175
176void
177MSHR::TargetList::
178print(std::ostream &os, int verbosity, const std::string &prefix) const
179{
180    ConstIterator end_i = end();
181    for (ConstIterator i = begin(); i != end_i; ++i) {
182        const char *s;
183        switch (i->source) {
184          case Target::FromCPU:
185            s = "FromCPU";
186            break;
187          case Target::FromSnoop:
188            s = "FromSnoop";
189            break;
190          case Target::FromPrefetcher:
191            s = "FromPrefetcher";
192            break;
193          default:
194            s = "";
195            break;
196        }
197        ccprintf(os, "%s%s: ", prefix, s);
198        i->pkt->print(os, verbosity, "");
199    }
200}
201
202
203void
204MSHR::allocate(Addr _addr, int _size, PacketPtr target, Tick whenReady,
205               Counter _order)
206{
207    addr = _addr;
208    size = _size;
209    isSecure = target->isSecure();
210    readyTime = whenReady;
211    order = _order;
212    assert(target);
213    isForward = false;
214    _isUncacheable = target->req->isUncacheable();
215    inService = false;
216    downstreamPending = false;
217    threadNum = 0;
218    assert(targets.isReset());
219    // Don't know of a case where we would allocate a new MSHR for a
220    // snoop (mem-side request), so set source according to request here
221    Target::Source source = (target->cmd == MemCmd::HardPFReq) ?
222        Target::FromPrefetcher : Target::FromCPU;
223    targets.add(target, whenReady, _order, source, true);
224    assert(deferredTargets.isReset());
225    data = NULL;
226}
227
228
229void
230MSHR::clearDownstreamPending()
231{
232    assert(downstreamPending);
233    downstreamPending = false;
234    // recursively clear flag on any MSHRs we will be forwarding
235    // responses to
236    targets.clearDownstreamPending();
237}
238
239bool
240MSHR::markInService(PacketPtr pkt)
241{
242    assert(!inService);
243    if (isForwardNoResponse()) {
244        // we just forwarded the request packet & don't expect a
245        // response, so get rid of it
246        assert(getNumTargets() == 1);
247        popTarget();
248        return true;
249    }
250
251    assert(pkt != NULL);
252    inService = true;
253    pendingDirty = (targets.needsExclusive ||
254                    (!pkt->sharedAsserted() && pkt->memInhibitAsserted()));
255    postInvalidate = postDowngrade = false;
256
257    if (!downstreamPending) {
258        // let upstream caches know that the request has made it to a
259        // level where it's going to get a response
260        targets.clearDownstreamPending();
261    }
262    return false;
263}
264
265
266void
267MSHR::deallocate()
268{
269    assert(targets.empty());
270    targets.resetFlags();
271    assert(deferredTargets.isReset());
272    inService = false;
273}
274
275/*
276 * Adds a target to an MSHR
277 */
278void
279MSHR::allocateTarget(PacketPtr pkt, Tick whenReady, Counter _order)
280{
281    // if there's a request already in service for this MSHR, we will
282    // have to defer the new target until after the response if any of
283    // the following are true:
284    // - there are other targets already deferred
285    // - there's a pending invalidate to be applied after the response
286    //   comes back (but before this target is processed)
287    // - this target requires an exclusive block and either we're not
288    //   getting an exclusive block back or we have already snooped
289    //   another read request that will downgrade our exclusive block
290    //   to shared
291
292    // assume we'd never issue a prefetch when we've got an
293    // outstanding miss
294    assert(pkt->cmd != MemCmd::HardPFReq);
295
296    if (inService &&
297        (!deferredTargets.empty() || hasPostInvalidate() ||
298         (pkt->needsExclusive() &&
299          (!isPendingDirty() || hasPostDowngrade() || isForward)))) {
300        // need to put on deferred list
301        if (hasPostInvalidate())
302            replaceUpgrade(pkt);
303        deferredTargets.add(pkt, whenReady, _order, Target::FromCPU, true);
304    } else {
305        // No request outstanding, or still OK to append to
306        // outstanding request: append to regular target list.  Only
307        // mark pending if current request hasn't been issued yet
308        // (isn't in service).
309        targets.add(pkt, whenReady, _order, Target::FromCPU, !inService);
310    }
311}
312
313bool
314MSHR::handleSnoop(PacketPtr pkt, Counter _order)
315{
316    DPRINTF(Cache, "%s for %s address %x size %d\n", __func__,
317            pkt->cmdString(), pkt->getAddr(), pkt->getSize());
318    if (!inService || (pkt->isExpressSnoop() && downstreamPending)) {
319        // Request has not been issued yet, or it's been issued
320        // locally but is buffered unissued at some downstream cache
321        // which is forwarding us this snoop.  Either way, the packet
322        // we're snooping logically precedes this MSHR's request, so
323        // the snoop has no impact on the MSHR, but must be processed
324        // in the standard way by the cache.  The only exception is
325        // that if we're an L2+ cache buffering an UpgradeReq from a
326        // higher-level cache, and the snoop is invalidating, then our
327        // buffered upgrades must be converted to read exclusives,
328        // since the upper-level cache no longer has a valid copy.
329        // That is, even though the upper-level cache got out on its
330        // local bus first, some other invalidating transaction
331        // reached the global bus before the upgrade did.
332        if (pkt->needsExclusive()) {
333            targets.replaceUpgrades();
334            deferredTargets.replaceUpgrades();
335        }
336
337        return false;
338    }
339
340    // From here on down, the request issued by this MSHR logically
341    // precedes the request we're snooping.
342    if (pkt->needsExclusive()) {
343        // snooped request still precedes the re-request we'll have to
344        // issue for deferred targets, if any...
345        deferredTargets.replaceUpgrades();
346    }
347
348    if (hasPostInvalidate()) {
349        // a prior snoop has already appended an invalidation, so
350        // logically we don't have the block anymore; no need for
351        // further snooping.
352        return true;
353    }
354
355    if (isPendingDirty() || pkt->isInvalidate()) {
356        // We need to save and replay the packet in two cases:
357        // 1. We're awaiting an exclusive copy, so ownership is pending,
358        //    and we need to respond after we receive data.
359        // 2. It's an invalidation (e.g., UpgradeReq), and we need
360        //    to forward the snoop up the hierarchy after the current
361        //    transaction completes.
362
363        // Actual target device (typ. a memory) will delete the
364        // packet on reception, so we need to save a copy here.
365        PacketPtr cp_pkt = new Packet(pkt, true);
366        targets.add(cp_pkt, curTick(), _order, Target::FromSnoop,
367                     downstreamPending && targets.needsExclusive);
368
369        if (isPendingDirty()) {
370            pkt->assertMemInhibit();
371            pkt->setSupplyExclusive();
372        }
373
374        if (pkt->needsExclusive()) {
375            // This transaction will take away our pending copy
376            postInvalidate = true;
377        }
378    }
379
380    if (!pkt->needsExclusive()) {
381        // This transaction will get a read-shared copy, downgrading
382        // our copy if we had an exclusive one
383        postDowngrade = true;
384        pkt->assertShared();
385    }
386
387    return true;
388}
389
390
391bool
392MSHR::promoteDeferredTargets()
393{
394    assert(targets.empty());
395    if (deferredTargets.empty()) {
396        return false;
397    }
398
399    // swap targets & deferredTargets lists
400    std::swap(targets, deferredTargets);
401
402    // clear deferredTargets flags
403    deferredTargets.resetFlags();
404
405    order = targets.front().order;
406    readyTime = std::max(curTick(), targets.front().readyTime);
407
408    return true;
409}
410
411
412void
413MSHR::handleFill(Packet *pkt, CacheBlk *blk)
414{
415    if (!pkt->sharedAsserted()
416        && !(hasPostInvalidate() || hasPostDowngrade())
417        && deferredTargets.needsExclusive) {
418        // We got an exclusive response, but we have deferred targets
419        // which are waiting to request an exclusive copy (not because
420        // of a pending invalidate).  This can happen if the original
421        // request was for a read-only (non-exclusive) block, but we
422        // got an exclusive copy anyway because of the E part of the
423        // MOESI/MESI protocol.  Since we got the exclusive copy
424        // there's no need to defer the targets, so move them up to
425        // the regular target list.
426        assert(!targets.needsExclusive);
427        targets.needsExclusive = true;
428        // if any of the deferred targets were upper-level cache
429        // requests marked downstreamPending, need to clear that
430        assert(!downstreamPending);  // not pending here anymore
431        deferredTargets.clearDownstreamPending();
432        // this clears out deferredTargets too
433        targets.splice(targets.end(), deferredTargets);
434        deferredTargets.resetFlags();
435    }
436}
437
438
439bool
440MSHR::checkFunctional(PacketPtr pkt)
441{
442    // For printing, we treat the MSHR as a whole as single entity.
443    // For other requests, we iterate over the individual targets
444    // since that's where the actual data lies.
445    if (pkt->isPrint()) {
446        pkt->checkFunctional(this, addr, isSecure, size, NULL);
447        return false;
448    } else {
449        return (targets.checkFunctional(pkt) ||
450                deferredTargets.checkFunctional(pkt));
451    }
452}
453
454
455void
456MSHR::print(std::ostream &os, int verbosity, const std::string &prefix) const
457{
458    ccprintf(os, "%s[%x:%x](%s) %s %s %s state: %s %s %s %s %s\n",
459             prefix, addr, addr+size-1,
460             isSecure ? "s" : "ns",
461             isForward ? "Forward" : "",
462             isForwardNoResponse() ? "ForwNoResp" : "",
463             needsExclusive() ? "Excl" : "",
464             _isUncacheable ? "Unc" : "",
465             inService ? "InSvc" : "",
466             downstreamPending ? "DwnPend" : "",
467             hasPostInvalidate() ? "PostInv" : "",
468             hasPostDowngrade() ? "PostDowngr" : "");
469
470    ccprintf(os, "%s  Targets:\n", prefix);
471    targets.print(os, verbosity, prefix + "    ");
472    if (!deferredTargets.empty()) {
473        ccprintf(os, "%s  Deferred Targets:\n", prefix);
474        deferredTargets.print(os, verbosity, prefix + "      ");
475    }
476}
477
478std::string
479MSHR::print() const
480{
481    ostringstream str;
482    print(str);
483    return str.str();
484}
485