mshr.cc revision 10766:b2071d0eb5f1
1/*
2 * Copyright (c) 2012-2013, 2015 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),
66               postInvalidate(false), postDowngrade(false),
67               queue(NULL), order(0), blkAddr(0),
68               blkSize(0), isSecure(false), inService(false),
69               isForward(false), threadNum(InvalidThreadID), data(NULL)
70{
71}
72
73
74MSHR::TargetList::TargetList()
75    : needsExclusive(false), hasUpgrade(false)
76{}
77
78
79inline void
80MSHR::TargetList::add(PacketPtr pkt, Tick readyTime,
81                      Counter order, Target::Source source, bool markPending)
82{
83    if (source != Target::FromSnoop) {
84        if (pkt->needsExclusive()) {
85            needsExclusive = true;
86        }
87
88        // StoreCondReq is effectively an upgrade if it's in an MSHR
89        // since it would have been failed already if we didn't have a
90        // read-only copy
91        if (pkt->isUpgrade() || pkt->cmd == MemCmd::StoreCondReq) {
92            hasUpgrade = true;
93        }
94    }
95
96    if (markPending) {
97        // Iterate over the SenderState stack and see if we find
98        // an MSHR entry. If we do, set the downstreamPending
99        // flag. Otherwise, do nothing.
100        MSHR *mshr = pkt->findNextSenderState<MSHR>();
101        if (mshr != NULL) {
102            assert(!mshr->downstreamPending);
103            mshr->downstreamPending = true;
104        }
105    }
106
107    emplace_back(Target(pkt, readyTime, order, source, markPending));
108}
109
110
111static void
112replaceUpgrade(PacketPtr pkt)
113{
114    if (pkt->cmd == MemCmd::UpgradeReq) {
115        pkt->cmd = MemCmd::ReadExReq;
116        DPRINTF(Cache, "Replacing UpgradeReq with ReadExReq\n");
117    } else if (pkt->cmd == MemCmd::SCUpgradeReq) {
118        pkt->cmd = MemCmd::SCUpgradeFailReq;
119        DPRINTF(Cache, "Replacing SCUpgradeReq with SCUpgradeFailReq\n");
120    } else if (pkt->cmd == MemCmd::StoreCondReq) {
121        pkt->cmd = MemCmd::StoreCondFailReq;
122        DPRINTF(Cache, "Replacing StoreCondReq with StoreCondFailReq\n");
123    }
124}
125
126
127void
128MSHR::TargetList::replaceUpgrades()
129{
130    if (!hasUpgrade)
131        return;
132
133    for (auto& t : *this) {
134        replaceUpgrade(t.pkt);
135    }
136
137    hasUpgrade = false;
138}
139
140
141void
142MSHR::TargetList::clearDownstreamPending()
143{
144    for (auto& t : *this) {
145        if (t.markedPending) {
146            // Iterate over the SenderState stack and see if we find
147            // an MSHR entry. If we find one, clear the
148            // downstreamPending flag by calling
149            // clearDownstreamPending(). This recursively clears the
150            // downstreamPending flag in all caches this packet has
151            // passed through.
152            MSHR *mshr = t.pkt->findNextSenderState<MSHR>();
153            if (mshr != NULL) {
154                mshr->clearDownstreamPending();
155            }
156        }
157    }
158}
159
160
161bool
162MSHR::TargetList::checkFunctional(PacketPtr pkt)
163{
164    for (auto& t : *this) {
165        if (pkt->checkFunctional(t.pkt)) {
166            return true;
167        }
168    }
169
170    return false;
171}
172
173
174void
175MSHR::TargetList::print(std::ostream &os, int verbosity,
176                        const std::string &prefix) const
177{
178    for (auto& t : *this) {
179        const char *s;
180        switch (t.source) {
181          case Target::FromCPU:
182            s = "FromCPU";
183            break;
184          case Target::FromSnoop:
185            s = "FromSnoop";
186            break;
187          case Target::FromPrefetcher:
188            s = "FromPrefetcher";
189            break;
190          default:
191            s = "";
192            break;
193        }
194        ccprintf(os, "%s%s: ", prefix, s);
195        t.pkt->print(os, verbosity, "");
196    }
197}
198
199
200void
201MSHR::allocate(Addr blk_addr, unsigned blk_size, PacketPtr target,
202               Tick when_ready, Counter _order)
203{
204    blkAddr = blk_addr;
205    blkSize = blk_size;
206    isSecure = target->isSecure();
207    readyTime = when_ready;
208    order = _order;
209    assert(target);
210    isForward = false;
211    _isUncacheable = target->req->isUncacheable();
212    inService = false;
213    downstreamPending = false;
214    threadNum = 0;
215    assert(targets.isReset());
216    // Don't know of a case where we would allocate a new MSHR for a
217    // snoop (mem-side request), so set source according to request here
218    Target::Source source = (target->cmd == MemCmd::HardPFReq) ?
219        Target::FromPrefetcher : Target::FromCPU;
220    targets.add(target, when_ready, _order, source, true);
221    assert(deferredTargets.isReset());
222    data = NULL;
223}
224
225
226void
227MSHR::clearDownstreamPending()
228{
229    assert(downstreamPending);
230    downstreamPending = false;
231    // recursively clear flag on any MSHRs we will be forwarding
232    // responses to
233    targets.clearDownstreamPending();
234}
235
236bool
237MSHR::markInService(bool pending_dirty_resp)
238{
239    assert(!inService);
240    if (isForwardNoResponse()) {
241        // we just forwarded the request packet & don't expect a
242        // response, so get rid of it
243        assert(getNumTargets() == 1);
244        popTarget();
245        return true;
246    }
247
248    inService = true;
249    pendingDirty = targets.needsExclusive || pending_dirty_resp;
250    postInvalidate = postDowngrade = false;
251
252    if (!downstreamPending) {
253        // let upstream caches know that the request has made it to a
254        // level where it's going to get a response
255        targets.clearDownstreamPending();
256    }
257    return false;
258}
259
260
261void
262MSHR::deallocate()
263{
264    assert(targets.empty());
265    targets.resetFlags();
266    assert(deferredTargets.isReset());
267    inService = false;
268}
269
270/*
271 * Adds a target to an MSHR
272 */
273void
274MSHR::allocateTarget(PacketPtr pkt, Tick whenReady, Counter _order)
275{
276    // if there's a request already in service for this MSHR, we will
277    // have to defer the new target until after the response if any of
278    // the following are true:
279    // - there are other targets already deferred
280    // - there's a pending invalidate to be applied after the response
281    //   comes back (but before this target is processed)
282    // - this target requires an exclusive block and either we're not
283    //   getting an exclusive block back or we have already snooped
284    //   another read request that will downgrade our exclusive block
285    //   to shared
286
287    // assume we'd never issue a prefetch when we've got an
288    // outstanding miss
289    assert(pkt->cmd != MemCmd::HardPFReq);
290
291    if (inService &&
292        (!deferredTargets.empty() || hasPostInvalidate() ||
293         (pkt->needsExclusive() &&
294          (!isPendingDirty() || hasPostDowngrade() || isForward)))) {
295        // need to put on deferred list
296        if (hasPostInvalidate())
297            replaceUpgrade(pkt);
298        deferredTargets.add(pkt, whenReady, _order, Target::FromCPU, true);
299    } else {
300        // No request outstanding, or still OK to append to
301        // outstanding request: append to regular target list.  Only
302        // mark pending if current request hasn't been issued yet
303        // (isn't in service).
304        targets.add(pkt, whenReady, _order, Target::FromCPU, !inService);
305    }
306}
307
308bool
309MSHR::handleSnoop(PacketPtr pkt, Counter _order)
310{
311    DPRINTF(Cache, "%s for %s addr %#llx size %d\n", __func__,
312            pkt->cmdString(), pkt->getAddr(), pkt->getSize());
313    if (!inService || (pkt->isExpressSnoop() && downstreamPending)) {
314        // Request has not been issued yet, or it's been issued
315        // locally but is buffered unissued at some downstream cache
316        // which is forwarding us this snoop.  Either way, the packet
317        // we're snooping logically precedes this MSHR's request, so
318        // the snoop has no impact on the MSHR, but must be processed
319        // in the standard way by the cache.  The only exception is
320        // that if we're an L2+ cache buffering an UpgradeReq from a
321        // higher-level cache, and the snoop is invalidating, then our
322        // buffered upgrades must be converted to read exclusives,
323        // since the upper-level cache no longer has a valid copy.
324        // That is, even though the upper-level cache got out on its
325        // local bus first, some other invalidating transaction
326        // reached the global bus before the upgrade did.
327        if (pkt->needsExclusive()) {
328            targets.replaceUpgrades();
329            deferredTargets.replaceUpgrades();
330        }
331
332        return false;
333    }
334
335    // From here on down, the request issued by this MSHR logically
336    // precedes the request we're snooping.
337    if (pkt->needsExclusive()) {
338        // snooped request still precedes the re-request we'll have to
339        // issue for deferred targets, if any...
340        deferredTargets.replaceUpgrades();
341    }
342
343    if (hasPostInvalidate()) {
344        // a prior snoop has already appended an invalidation, so
345        // logically we don't have the block anymore; no need for
346        // further snooping.
347        return true;
348    }
349
350    if (isPendingDirty() || pkt->isInvalidate()) {
351        // We need to save and replay the packet in two cases:
352        // 1. We're awaiting an exclusive copy, so ownership is pending,
353        //    and we need to respond after we receive data.
354        // 2. It's an invalidation (e.g., UpgradeReq), and we need
355        //    to forward the snoop up the hierarchy after the current
356        //    transaction completes.
357
358        // Actual target device (typ. a memory) will delete the
359        // packet on reception, so we need to save a copy here.
360
361        // Clear flags and also allocate new data as the original
362        // packet data storage may have been deleted by the time we
363        // get to send this packet.
364        PacketPtr cp_pkt = new Packet(pkt, true, true);
365        targets.add(cp_pkt, curTick(), _order, Target::FromSnoop,
366                     downstreamPending && targets.needsExclusive);
367
368        if (isPendingDirty()) {
369            pkt->assertMemInhibit();
370            pkt->setSupplyExclusive();
371        }
372
373        if (pkt->needsExclusive()) {
374            // This transaction will take away our pending copy
375            postInvalidate = true;
376        }
377    }
378
379    if (!pkt->needsExclusive()) {
380        // This transaction will get a read-shared copy, downgrading
381        // our copy if we had an exclusive one
382        postDowngrade = true;
383        pkt->assertShared();
384    }
385
386    return true;
387}
388
389
390bool
391MSHR::promoteDeferredTargets()
392{
393    assert(targets.empty());
394    if (deferredTargets.empty()) {
395        return false;
396    }
397
398    // swap targets & deferredTargets lists
399    std::swap(targets, deferredTargets);
400
401    // clear deferredTargets flags
402    deferredTargets.resetFlags();
403
404    order = targets.front().order;
405    readyTime = std::max(curTick(), targets.front().readyTime);
406
407    return true;
408}
409
410
411void
412MSHR::handleFill(PacketPtr pkt, CacheBlk *blk)
413{
414    if (!pkt->sharedAsserted()
415        && !(hasPostInvalidate() || hasPostDowngrade())
416        && deferredTargets.needsExclusive) {
417        // We got an exclusive response, but we have deferred targets
418        // which are waiting to request an exclusive copy (not because
419        // of a pending invalidate).  This can happen if the original
420        // request was for a read-only (non-exclusive) block, but we
421        // got an exclusive copy anyway because of the E part of the
422        // MOESI/MESI protocol.  Since we got the exclusive copy
423        // there's no need to defer the targets, so move them up to
424        // the regular target list.
425        assert(!targets.needsExclusive);
426        targets.needsExclusive = true;
427        // if any of the deferred targets were upper-level cache
428        // requests marked downstreamPending, need to clear that
429        assert(!downstreamPending);  // not pending here anymore
430        deferredTargets.clearDownstreamPending();
431        // this clears out deferredTargets too
432        targets.splice(targets.end(), deferredTargets);
433        deferredTargets.resetFlags();
434    }
435}
436
437
438bool
439MSHR::checkFunctional(PacketPtr pkt)
440{
441    // For printing, we treat the MSHR as a whole as single entity.
442    // For other requests, we iterate over the individual targets
443    // since that's where the actual data lies.
444    if (pkt->isPrint()) {
445        pkt->checkFunctional(this, blkAddr, isSecure, blkSize, NULL);
446        return false;
447    } else {
448        return (targets.checkFunctional(pkt) ||
449                deferredTargets.checkFunctional(pkt));
450    }
451}
452
453
454void
455MSHR::print(std::ostream &os, int verbosity, const std::string &prefix) const
456{
457    ccprintf(os, "%s[%#llx:%#llx](%s) %s %s %s state: %s %s %s %s %s\n",
458             prefix, blkAddr, blkAddr + blkSize - 1,
459             isSecure ? "s" : "ns",
460             isForward ? "Forward" : "",
461             isForwardNoResponse() ? "ForwNoResp" : "",
462             needsExclusive() ? "Excl" : "",
463             _isUncacheable ? "Unc" : "",
464             inService ? "InSvc" : "",
465             downstreamPending ? "DwnPend" : "",
466             hasPostInvalidate() ? "PostInv" : "",
467             hasPostDowngrade() ? "PostDowngr" : "");
468
469    ccprintf(os, "%s  Targets:\n", prefix);
470    targets.print(os, verbosity, prefix + "    ");
471    if (!deferredTargets.empty()) {
472        ccprintf(os, "%s  Deferred Targets:\n", prefix);
473        deferredTargets.print(os, verbosity, prefix + "      ");
474    }
475}
476
477std::string
478MSHR::print() const
479{
480    ostringstream str;
481    print(str);
482    return str.str();
483}
484