cache.cc revision 11352:4e195fb9ec4f
1/*
2 * Copyright (c) 2010-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,2015 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 *          Nathan Binkert
44 *          Steve Reinhardt
45 *          Ron Dreslinski
46 *          Andreas Sandberg
47 */
48
49/**
50 * @file
51 * Cache definitions.
52 */
53
54#include "mem/cache/cache.hh"
55
56#include "base/misc.hh"
57#include "base/types.hh"
58#include "debug/Cache.hh"
59#include "debug/CachePort.hh"
60#include "debug/CacheTags.hh"
61#include "debug/CacheVerbose.hh"
62#include "mem/cache/blk.hh"
63#include "mem/cache/mshr.hh"
64#include "mem/cache/prefetch/base.hh"
65#include "sim/sim_exit.hh"
66
67Cache::Cache(const CacheParams *p)
68    : BaseCache(p, p->system->cacheLineSize()),
69      tags(p->tags),
70      prefetcher(p->prefetcher),
71      doFastWrites(true),
72      prefetchOnAccess(p->prefetch_on_access),
73      clusivity(p->clusivity),
74      writebackClean(p->writeback_clean),
75      tempBlockWriteback(nullptr),
76      writebackTempBlockAtomicEvent(this, false,
77                                    EventBase::Delayed_Writeback_Pri)
78{
79    tempBlock = new CacheBlk();
80    tempBlock->data = new uint8_t[blkSize];
81
82    cpuSidePort = new CpuSidePort(p->name + ".cpu_side", this,
83                                  "CpuSidePort");
84    memSidePort = new MemSidePort(p->name + ".mem_side", this,
85                                  "MemSidePort");
86
87    tags->setCache(this);
88    if (prefetcher)
89        prefetcher->setCache(this);
90}
91
92Cache::~Cache()
93{
94    delete [] tempBlock->data;
95    delete tempBlock;
96
97    delete cpuSidePort;
98    delete memSidePort;
99}
100
101void
102Cache::regStats()
103{
104    BaseCache::regStats();
105}
106
107void
108Cache::cmpAndSwap(CacheBlk *blk, PacketPtr pkt)
109{
110    assert(pkt->isRequest());
111
112    uint64_t overwrite_val;
113    bool overwrite_mem;
114    uint64_t condition_val64;
115    uint32_t condition_val32;
116
117    int offset = tags->extractBlkOffset(pkt->getAddr());
118    uint8_t *blk_data = blk->data + offset;
119
120    assert(sizeof(uint64_t) >= pkt->getSize());
121
122    overwrite_mem = true;
123    // keep a copy of our possible write value, and copy what is at the
124    // memory address into the packet
125    pkt->writeData((uint8_t *)&overwrite_val);
126    pkt->setData(blk_data);
127
128    if (pkt->req->isCondSwap()) {
129        if (pkt->getSize() == sizeof(uint64_t)) {
130            condition_val64 = pkt->req->getExtraData();
131            overwrite_mem = !std::memcmp(&condition_val64, blk_data,
132                                         sizeof(uint64_t));
133        } else if (pkt->getSize() == sizeof(uint32_t)) {
134            condition_val32 = (uint32_t)pkt->req->getExtraData();
135            overwrite_mem = !std::memcmp(&condition_val32, blk_data,
136                                         sizeof(uint32_t));
137        } else
138            panic("Invalid size for conditional read/write\n");
139    }
140
141    if (overwrite_mem) {
142        std::memcpy(blk_data, &overwrite_val, pkt->getSize());
143        blk->status |= BlkDirty;
144    }
145}
146
147
148void
149Cache::satisfyCpuSideRequest(PacketPtr pkt, CacheBlk *blk,
150                             bool deferred_response, bool pending_downgrade)
151{
152    assert(pkt->isRequest());
153
154    assert(blk && blk->isValid());
155    // Occasionally this is not true... if we are a lower-level cache
156    // satisfying a string of Read and ReadEx requests from
157    // upper-level caches, a Read will mark the block as shared but we
158    // can satisfy a following ReadEx anyway since we can rely on the
159    // Read requester(s) to have buffered the ReadEx snoop and to
160    // invalidate their blocks after receiving them.
161    // assert(!pkt->needsWritable() || blk->isWritable());
162    assert(pkt->getOffset(blkSize) + pkt->getSize() <= blkSize);
163
164    // Check RMW operations first since both isRead() and
165    // isWrite() will be true for them
166    if (pkt->cmd == MemCmd::SwapReq) {
167        cmpAndSwap(blk, pkt);
168    } else if (pkt->isWrite()) {
169        // we have the block in a writable state and can go ahead,
170        // note that the line may be also be considered writable in
171        // downstream caches along the path to memory, but always
172        // Exclusive, and never Modified
173        assert(blk->isWritable());
174        // Write or WriteLine at the first cache with block in writable state
175        if (blk->checkWrite(pkt)) {
176            pkt->writeDataToBlock(blk->data, blkSize);
177        }
178        // Always mark the line as dirty (and thus transition to the
179        // Modified state) even if we are a failed StoreCond so we
180        // supply data to any snoops that have appended themselves to
181        // this cache before knowing the store will fail.
182        blk->status |= BlkDirty;
183        DPRINTF(CacheVerbose, "%s for %s addr %#llx size %d (write)\n",
184                __func__, pkt->cmdString(), pkt->getAddr(), pkt->getSize());
185    } else if (pkt->isRead()) {
186        if (pkt->isLLSC()) {
187            blk->trackLoadLocked(pkt);
188        }
189
190        // all read responses have a data payload
191        assert(pkt->hasRespData());
192        pkt->setDataFromBlock(blk->data, blkSize);
193
194        // determine if this read is from a (coherent) cache, or not
195        // by looking at the command type; we could potentially add a
196        // packet attribute such as 'FromCache' to make this check a
197        // bit cleaner
198        if (pkt->cmd == MemCmd::ReadExReq ||
199            pkt->cmd == MemCmd::ReadSharedReq ||
200            pkt->cmd == MemCmd::ReadCleanReq ||
201            pkt->cmd == MemCmd::SCUpgradeFailReq) {
202            assert(pkt->getSize() == blkSize);
203            // special handling for coherent block requests from
204            // upper-level caches
205            if (pkt->needsWritable()) {
206                // sanity check
207                assert(pkt->cmd == MemCmd::ReadExReq ||
208                       pkt->cmd == MemCmd::SCUpgradeFailReq);
209
210                // if we have a dirty copy, make sure the recipient
211                // keeps it marked dirty (in the modified state)
212                if (blk->isDirty()) {
213                    pkt->setCacheResponding();
214                }
215                // on ReadExReq we give up our copy unconditionally,
216                // even if this cache is mostly inclusive, we may want
217                // to revisit this
218                invalidateBlock(blk);
219            } else if (blk->isWritable() && !pending_downgrade &&
220                       !pkt->hasSharers() &&
221                       pkt->cmd != MemCmd::ReadCleanReq) {
222                // we can give the requester a writable copy on a read
223                // request if:
224                // - we have a writable copy at this level (& below)
225                // - we don't have a pending snoop from below
226                //   signaling another read request
227                // - no other cache above has a copy (otherwise it
228                //   would have set hasSharers flag when
229                //   snooping the packet)
230                // - the read has explicitly asked for a clean
231                //   copy of the line
232                if (blk->isDirty()) {
233                    // special considerations if we're owner:
234                    if (!deferred_response) {
235                        // respond with the line in Modified state
236                        // (cacheResponding set, hasSharers not set)
237                        pkt->setCacheResponding();
238
239                        if (clusivity == Enums::mostly_excl) {
240                            // if this cache is mostly exclusive with
241                            // respect to the cache above, drop the
242                            // block, no need to first unset the dirty
243                            // bit
244                            invalidateBlock(blk);
245                        } else {
246                            // if this cache is mostly inclusive, we
247                            // keep the block in the Exclusive state,
248                            // and pass it upwards as Modified
249                            // (writable and dirty), hence we have
250                            // multiple caches, all on the same path
251                            // towards memory, all considering the
252                            // same block writable, but only one
253                            // considering it Modified
254
255                            // we get away with multiple caches (on
256                            // the same path to memory) considering
257                            // the block writeable as we always enter
258                            // the cache hierarchy through a cache,
259                            // and first snoop upwards in all other
260                            // branches
261                            blk->status &= ~BlkDirty;
262                        }
263                    } else {
264                        // if we're responding after our own miss,
265                        // there's a window where the recipient didn't
266                        // know it was getting ownership and may not
267                        // have responded to snoops correctly, so we
268                        // have to respond with a shared line
269                        pkt->setHasSharers();
270                    }
271                }
272            } else {
273                // otherwise only respond with a shared copy
274                pkt->setHasSharers();
275            }
276        }
277    } else {
278        // Upgrade or Invalidate
279        assert(pkt->isUpgrade() || pkt->isInvalidate());
280
281        // for invalidations we could be looking at the temp block
282        // (for upgrades we always allocate)
283        invalidateBlock(blk);
284        DPRINTF(CacheVerbose, "%s for %s addr %#llx size %d (invalidation)\n",
285                __func__, pkt->cmdString(), pkt->getAddr(), pkt->getSize());
286    }
287}
288
289
290/////////////////////////////////////////////////////
291//
292// MSHR helper functions
293//
294/////////////////////////////////////////////////////
295
296
297void
298Cache::markInService(MSHR *mshr, bool pending_modified_resp)
299{
300    markInServiceInternal(mshr, pending_modified_resp);
301}
302
303/////////////////////////////////////////////////////
304//
305// Access path: requests coming in from the CPU side
306//
307/////////////////////////////////////////////////////
308
309bool
310Cache::access(PacketPtr pkt, CacheBlk *&blk, Cycles &lat,
311              PacketList &writebacks)
312{
313    // sanity check
314    assert(pkt->isRequest());
315
316    chatty_assert(!(isReadOnly && pkt->isWrite()),
317                  "Should never see a write in a read-only cache %s\n",
318                  name());
319
320    DPRINTF(CacheVerbose, "%s for %s addr %#llx size %d\n", __func__,
321            pkt->cmdString(), pkt->getAddr(), pkt->getSize());
322
323    if (pkt->req->isUncacheable()) {
324        DPRINTF(Cache, "%s%s addr %#llx uncacheable\n", pkt->cmdString(),
325                pkt->req->isInstFetch() ? " (ifetch)" : "",
326                pkt->getAddr());
327
328        // flush and invalidate any existing block
329        CacheBlk *old_blk(tags->findBlock(pkt->getAddr(), pkt->isSecure()));
330        if (old_blk && old_blk->isValid()) {
331            if (old_blk->isDirty() || writebackClean)
332                writebacks.push_back(writebackBlk(old_blk));
333            else
334                writebacks.push_back(cleanEvictBlk(old_blk));
335            tags->invalidate(old_blk);
336            old_blk->invalidate();
337        }
338
339        blk = NULL;
340        // lookupLatency is the latency in case the request is uncacheable.
341        lat = lookupLatency;
342        return false;
343    }
344
345    ContextID id = pkt->req->hasContextId() ?
346        pkt->req->contextId() : InvalidContextID;
347    // Here lat is the value passed as parameter to accessBlock() function
348    // that can modify its value.
349    blk = tags->accessBlock(pkt->getAddr(), pkt->isSecure(), lat, id);
350
351    DPRINTF(Cache, "%s%s addr %#llx size %d (%s) %s\n", pkt->cmdString(),
352            pkt->req->isInstFetch() ? " (ifetch)" : "",
353            pkt->getAddr(), pkt->getSize(), pkt->isSecure() ? "s" : "ns",
354            blk ? "hit " + blk->print() : "miss");
355
356
357    if (pkt->isEviction()) {
358        // We check for presence of block in above caches before issuing
359        // Writeback or CleanEvict to write buffer. Therefore the only
360        // possible cases can be of a CleanEvict packet coming from above
361        // encountering a Writeback generated in this cache peer cache and
362        // waiting in the write buffer. Cases of upper level peer caches
363        // generating CleanEvict and Writeback or simply CleanEvict and
364        // CleanEvict almost simultaneously will be caught by snoops sent out
365        // by crossbar.
366        std::vector<MSHR *> outgoing;
367        if (writeBuffer.findMatches(pkt->getAddr(), pkt->isSecure(),
368                                   outgoing)) {
369            assert(outgoing.size() == 1);
370            MSHR *wb_entry = outgoing[0];
371            assert(wb_entry->getNumTargets() == 1);
372            PacketPtr wbPkt = wb_entry->getTarget()->pkt;
373            assert(wbPkt->isWriteback());
374
375            if (pkt->isCleanEviction()) {
376                // The CleanEvict and WritebackClean snoops into other
377                // peer caches of the same level while traversing the
378                // crossbar. If a copy of the block is found, the
379                // packet is deleted in the crossbar. Hence, none of
380                // the other upper level caches connected to this
381                // cache have the block, so we can clear the
382                // BLOCK_CACHED flag in the Writeback if set and
383                // discard the CleanEvict by returning true.
384                wbPkt->clearBlockCached();
385                return true;
386            } else {
387                assert(pkt->cmd == MemCmd::WritebackDirty);
388                // Dirty writeback from above trumps our clean
389                // writeback... discard here
390                // Note: markInService will remove entry from writeback buffer.
391                markInService(wb_entry, false);
392                delete wbPkt;
393            }
394        }
395    }
396
397    // Writeback handling is special case.  We can write the block into
398    // the cache without having a writeable copy (or any copy at all).
399    if (pkt->isWriteback()) {
400        assert(blkSize == pkt->getSize());
401
402        // we could get a clean writeback while we are having
403        // outstanding accesses to a block, do the simple thing for
404        // now and drop the clean writeback so that we do not upset
405        // any ordering/decisions about ownership already taken
406        if (pkt->cmd == MemCmd::WritebackClean &&
407            mshrQueue.findMatch(pkt->getAddr(), pkt->isSecure())) {
408            DPRINTF(Cache, "Clean writeback %#llx to block with MSHR, "
409                    "dropping\n", pkt->getAddr());
410            return true;
411        }
412
413        if (blk == NULL) {
414            // need to do a replacement
415            blk = allocateBlock(pkt->getAddr(), pkt->isSecure(), writebacks);
416            if (blk == NULL) {
417                // no replaceable block available: give up, fwd to next level.
418                incMissCount(pkt);
419                return false;
420            }
421            tags->insertBlock(pkt, blk);
422
423            blk->status = (BlkValid | BlkReadable);
424            if (pkt->isSecure()) {
425                blk->status |= BlkSecure;
426            }
427        }
428        // only mark the block dirty if we got a writeback command,
429        // and leave it as is for a clean writeback
430        if (pkt->cmd == MemCmd::WritebackDirty) {
431            blk->status |= BlkDirty;
432        }
433        // if the packet does not have sharers, it is passing
434        // writable, and we got the writeback in Modified or Exclusive
435        // state, if not we are in the Owned or Shared state
436        if (!pkt->hasSharers()) {
437            blk->status |= BlkWritable;
438        }
439        // nothing else to do; writeback doesn't expect response
440        assert(!pkt->needsResponse());
441        std::memcpy(blk->data, pkt->getConstPtr<uint8_t>(), blkSize);
442        DPRINTF(Cache, "%s new state is %s\n", __func__, blk->print());
443        incHitCount(pkt);
444        return true;
445    } else if (pkt->cmd == MemCmd::CleanEvict) {
446        if (blk != NULL) {
447            // Found the block in the tags, need to stop CleanEvict from
448            // propagating further down the hierarchy. Returning true will
449            // treat the CleanEvict like a satisfied write request and delete
450            // it.
451            return true;
452        }
453        // We didn't find the block here, propagate the CleanEvict further
454        // down the memory hierarchy. Returning false will treat the CleanEvict
455        // like a Writeback which could not find a replaceable block so has to
456        // go to next level.
457        return false;
458    } else if ((blk != NULL) &&
459               (pkt->needsWritable() ? blk->isWritable() : blk->isReadable())) {
460        // OK to satisfy access
461        incHitCount(pkt);
462        satisfyCpuSideRequest(pkt, blk);
463        return true;
464    }
465
466    // Can't satisfy access normally... either no block (blk == NULL)
467    // or have block but need writable
468
469    incMissCount(pkt);
470
471    if (blk == NULL && pkt->isLLSC() && pkt->isWrite()) {
472        // complete miss on store conditional... just give up now
473        pkt->req->setExtraData(0);
474        return true;
475    }
476
477    return false;
478}
479
480void
481Cache::doWritebacks(PacketList& writebacks, Tick forward_time)
482{
483    while (!writebacks.empty()) {
484        PacketPtr wbPkt = writebacks.front();
485        // We use forwardLatency here because we are copying writebacks to
486        // write buffer.  Call isCachedAbove for both Writebacks and
487        // CleanEvicts. If isCachedAbove returns true we set BLOCK_CACHED flag
488        // in Writebacks and discard CleanEvicts.
489        if (isCachedAbove(wbPkt)) {
490            if (wbPkt->cmd == MemCmd::CleanEvict) {
491                // Delete CleanEvict because cached copies exist above. The
492                // packet destructor will delete the request object because
493                // this is a non-snoop request packet which does not require a
494                // response.
495                delete wbPkt;
496            } else if (wbPkt->cmd == MemCmd::WritebackClean) {
497                // clean writeback, do not send since the block is
498                // still cached above
499                assert(writebackClean);
500                delete wbPkt;
501            } else {
502                assert(wbPkt->cmd == MemCmd::WritebackDirty);
503                // Set BLOCK_CACHED flag in Writeback and send below, so that
504                // the Writeback does not reset the bit corresponding to this
505                // address in the snoop filter below.
506                wbPkt->setBlockCached();
507                allocateWriteBuffer(wbPkt, forward_time);
508            }
509        } else {
510            // If the block is not cached above, send packet below. Both
511            // CleanEvict and Writeback with BLOCK_CACHED flag cleared will
512            // reset the bit corresponding to this address in the snoop filter
513            // below.
514            allocateWriteBuffer(wbPkt, forward_time);
515        }
516        writebacks.pop_front();
517    }
518}
519
520void
521Cache::doWritebacksAtomic(PacketList& writebacks)
522{
523    while (!writebacks.empty()) {
524        PacketPtr wbPkt = writebacks.front();
525        // Call isCachedAbove for both Writebacks and CleanEvicts. If
526        // isCachedAbove returns true we set BLOCK_CACHED flag in Writebacks
527        // and discard CleanEvicts.
528        if (isCachedAbove(wbPkt, false)) {
529            if (wbPkt->cmd == MemCmd::WritebackDirty) {
530                // Set BLOCK_CACHED flag in Writeback and send below,
531                // so that the Writeback does not reset the bit
532                // corresponding to this address in the snoop filter
533                // below. We can discard CleanEvicts because cached
534                // copies exist above. Atomic mode isCachedAbove
535                // modifies packet to set BLOCK_CACHED flag
536                memSidePort->sendAtomic(wbPkt);
537            }
538        } else {
539            // If the block is not cached above, send packet below. Both
540            // CleanEvict and Writeback with BLOCK_CACHED flag cleared will
541            // reset the bit corresponding to this address in the snoop filter
542            // below.
543            memSidePort->sendAtomic(wbPkt);
544        }
545        writebacks.pop_front();
546        // In case of CleanEvicts, the packet destructor will delete the
547        // request object because this is a non-snoop request packet which
548        // does not require a response.
549        delete wbPkt;
550    }
551}
552
553
554void
555Cache::recvTimingSnoopResp(PacketPtr pkt)
556{
557    DPRINTF(Cache, "%s for %s addr %#llx size %d\n", __func__,
558            pkt->cmdString(), pkt->getAddr(), pkt->getSize());
559
560    assert(pkt->isResponse());
561    assert(!system->bypassCaches());
562
563    // determine if the response is from a snoop request we created
564    // (in which case it should be in the outstandingSnoop), or if we
565    // merely forwarded someone else's snoop request
566    const bool forwardAsSnoop = outstandingSnoop.find(pkt->req) ==
567        outstandingSnoop.end();
568
569    if (!forwardAsSnoop) {
570        // the packet came from this cache, so sink it here and do not
571        // forward it
572        assert(pkt->cmd == MemCmd::HardPFResp);
573
574        outstandingSnoop.erase(pkt->req);
575
576        DPRINTF(Cache, "Got prefetch response from above for addr "
577                "%#llx (%s)\n", pkt->getAddr(), pkt->isSecure() ? "s" : "ns");
578        recvTimingResp(pkt);
579        return;
580    }
581
582    // forwardLatency is set here because there is a response from an
583    // upper level cache.
584    // To pay the delay that occurs if the packet comes from the bus,
585    // we charge also headerDelay.
586    Tick snoop_resp_time = clockEdge(forwardLatency) + pkt->headerDelay;
587    // Reset the timing of the packet.
588    pkt->headerDelay = pkt->payloadDelay = 0;
589    memSidePort->schedTimingSnoopResp(pkt, snoop_resp_time);
590}
591
592void
593Cache::promoteWholeLineWrites(PacketPtr pkt)
594{
595    // Cache line clearing instructions
596    if (doFastWrites && (pkt->cmd == MemCmd::WriteReq) &&
597        (pkt->getSize() == blkSize) && (pkt->getOffset(blkSize) == 0)) {
598        pkt->cmd = MemCmd::WriteLineReq;
599        DPRINTF(Cache, "packet promoted from Write to WriteLineReq\n");
600    }
601}
602
603bool
604Cache::recvTimingReq(PacketPtr pkt)
605{
606    DPRINTF(CacheTags, "%s tags: %s\n", __func__, tags->print());
607
608    assert(pkt->isRequest());
609
610    // Just forward the packet if caches are disabled.
611    if (system->bypassCaches()) {
612        // @todo This should really enqueue the packet rather
613        bool M5_VAR_USED success = memSidePort->sendTimingReq(pkt);
614        assert(success);
615        return true;
616    }
617
618    promoteWholeLineWrites(pkt);
619
620    if (pkt->cacheResponding()) {
621        // a cache above us (but not where the packet came from) is
622        // responding to the request, in other words it has the line
623        // in Modified or Owned state
624        DPRINTF(Cache, "Cache above responding to %#llx (%s): "
625                "not responding\n",
626                pkt->getAddr(), pkt->isSecure() ? "s" : "ns");
627
628        // if the packet needs the block to be writable, and the cache
629        // that has promised to respond (setting the cache responding
630        // flag) is not providing writable (it is in Owned rather than
631        // the Modified state), we know that there may be other Shared
632        // copies in the system; go out and invalidate them all
633        assert(pkt->needsWritable() && !pkt->responderHadWritable());
634
635        // an upstream cache that had the line in Owned state
636        // (dirty, but not writable), is responding and thus
637        // transferring the dirty line from one branch of the
638        // cache hierarchy to another
639
640        // send out an express snoop and invalidate all other
641        // copies (snooping a packet that needs writable is the
642        // same as an invalidation), thus turning the Owned line
643        // into a Modified line, note that we don't invalidate the
644        // block in the current cache or any other cache on the
645        // path to memory
646
647        // create a downstream express snoop with cleared packet
648        // flags, there is no need to allocate any data as the
649        // packet is merely used to co-ordinate state transitions
650        Packet *snoop_pkt = new Packet(pkt, true, false);
651
652        // also reset the bus time that the original packet has
653        // not yet paid for
654        snoop_pkt->headerDelay = snoop_pkt->payloadDelay = 0;
655
656        // make this an instantaneous express snoop, and let the
657        // other caches in the system know that the another cache
658        // is responding, because we have found the authorative
659        // copy (Modified or Owned) that will supply the right
660        // data
661        snoop_pkt->setExpressSnoop();
662        snoop_pkt->setCacheResponding();
663
664        // this express snoop travels towards the memory, and at
665        // every crossbar it is snooped upwards thus reaching
666        // every cache in the system
667        bool M5_VAR_USED success = memSidePort->sendTimingReq(snoop_pkt);
668        // express snoops always succeed
669        assert(success);
670
671        // main memory will delete the snoop packet
672
673        // queue for deletion, as opposed to immediate deletion, as
674        // the sending cache is still relying on the packet
675        pendingDelete.reset(pkt);
676
677        // no need to take any further action in this particular cache
678        // as an upstram cache has already committed to responding,
679        // and we have already sent out any express snoops in the
680        // section above to ensure all other copies in the system are
681        // invalidated
682        return true;
683    }
684
685    // anything that is merely forwarded pays for the forward latency and
686    // the delay provided by the crossbar
687    Tick forward_time = clockEdge(forwardLatency) + pkt->headerDelay;
688
689    // We use lookupLatency here because it is used to specify the latency
690    // to access.
691    Cycles lat = lookupLatency;
692    CacheBlk *blk = NULL;
693    bool satisfied = false;
694    {
695        PacketList writebacks;
696        // Note that lat is passed by reference here. The function
697        // access() calls accessBlock() which can modify lat value.
698        satisfied = access(pkt, blk, lat, writebacks);
699
700        // copy writebacks to write buffer here to ensure they logically
701        // proceed anything happening below
702        doWritebacks(writebacks, forward_time);
703    }
704
705    // Here we charge the headerDelay that takes into account the latencies
706    // of the bus, if the packet comes from it.
707    // The latency charged it is just lat that is the value of lookupLatency
708    // modified by access() function, or if not just lookupLatency.
709    // In case of a hit we are neglecting response latency.
710    // In case of a miss we are neglecting forward latency.
711    Tick request_time = clockEdge(lat) + pkt->headerDelay;
712    // Here we reset the timing of the packet.
713    pkt->headerDelay = pkt->payloadDelay = 0;
714
715    // track time of availability of next prefetch, if any
716    Tick next_pf_time = MaxTick;
717
718    bool needsResponse = pkt->needsResponse();
719
720    if (satisfied) {
721        // should never be satisfying an uncacheable access as we
722        // flush and invalidate any existing block as part of the
723        // lookup
724        assert(!pkt->req->isUncacheable());
725
726        // hit (for all other request types)
727
728        if (prefetcher && (prefetchOnAccess || (blk && blk->wasPrefetched()))) {
729            if (blk)
730                blk->status &= ~BlkHWPrefetched;
731
732            // Don't notify on SWPrefetch
733            if (!pkt->cmd.isSWPrefetch())
734                next_pf_time = prefetcher->notify(pkt);
735        }
736
737        if (needsResponse) {
738            pkt->makeTimingResponse();
739            // @todo: Make someone pay for this
740            pkt->headerDelay = pkt->payloadDelay = 0;
741
742            // In this case we are considering request_time that takes
743            // into account the delay of the xbar, if any, and just
744            // lat, neglecting responseLatency, modelling hit latency
745            // just as lookupLatency or or the value of lat overriden
746            // by access(), that calls accessBlock() function.
747            cpuSidePort->schedTimingResp(pkt, request_time, true);
748        } else {
749            DPRINTF(Cache, "%s satisfied %s addr %#llx, no response needed\n",
750                    __func__, pkt->cmdString(), pkt->getAddr(),
751                    pkt->getSize());
752
753            // queue the packet for deletion, as the sending cache is
754            // still relying on it; if the block is found in access(),
755            // CleanEvict and Writeback messages will be deleted
756            // here as well
757            pendingDelete.reset(pkt);
758        }
759    } else {
760        // miss
761
762        Addr blk_addr = blockAlign(pkt->getAddr());
763
764        // ignore any existing MSHR if we are dealing with an
765        // uncacheable request
766        MSHR *mshr = pkt->req->isUncacheable() ? nullptr :
767            mshrQueue.findMatch(blk_addr, pkt->isSecure());
768
769        // Software prefetch handling:
770        // To keep the core from waiting on data it won't look at
771        // anyway, send back a response with dummy data. Miss handling
772        // will continue asynchronously. Unfortunately, the core will
773        // insist upon freeing original Packet/Request, so we have to
774        // create a new pair with a different lifecycle. Note that this
775        // processing happens before any MSHR munging on the behalf of
776        // this request because this new Request will be the one stored
777        // into the MSHRs, not the original.
778        if (pkt->cmd.isSWPrefetch()) {
779            assert(needsResponse);
780            assert(pkt->req->hasPaddr());
781            assert(!pkt->req->isUncacheable());
782
783            // There's no reason to add a prefetch as an additional target
784            // to an existing MSHR. If an outstanding request is already
785            // in progress, there is nothing for the prefetch to do.
786            // If this is the case, we don't even create a request at all.
787            PacketPtr pf = nullptr;
788
789            if (!mshr) {
790                // copy the request and create a new SoftPFReq packet
791                RequestPtr req = new Request(pkt->req->getPaddr(),
792                                             pkt->req->getSize(),
793                                             pkt->req->getFlags(),
794                                             pkt->req->masterId());
795                pf = new Packet(req, pkt->cmd);
796                pf->allocate();
797                assert(pf->getAddr() == pkt->getAddr());
798                assert(pf->getSize() == pkt->getSize());
799            }
800
801            pkt->makeTimingResponse();
802
803            // request_time is used here, taking into account lat and the delay
804            // charged if the packet comes from the xbar.
805            cpuSidePort->schedTimingResp(pkt, request_time, true);
806
807            // If an outstanding request is in progress (we found an
808            // MSHR) this is set to null
809            pkt = pf;
810        }
811
812        if (mshr) {
813            /// MSHR hit
814            /// @note writebacks will be checked in getNextMSHR()
815            /// for any conflicting requests to the same block
816
817            //@todo remove hw_pf here
818
819            // Coalesce unless it was a software prefetch (see above).
820            if (pkt) {
821                assert(!pkt->isWriteback());
822                // CleanEvicts corresponding to blocks which have
823                // outstanding requests in MSHRs are simply sunk here
824                if (pkt->cmd == MemCmd::CleanEvict) {
825                    pendingDelete.reset(pkt);
826                } else {
827                    DPRINTF(Cache, "%s coalescing MSHR for %s addr %#llx size %d\n",
828                            __func__, pkt->cmdString(), pkt->getAddr(),
829                            pkt->getSize());
830
831                    assert(pkt->req->masterId() < system->maxMasters());
832                    mshr_hits[pkt->cmdToIndex()][pkt->req->masterId()]++;
833                    // We use forward_time here because it is the same
834                    // considering new targets. We have multiple
835                    // requests for the same address here. It
836                    // specifies the latency to allocate an internal
837                    // buffer and to schedule an event to the queued
838                    // port and also takes into account the additional
839                    // delay of the xbar.
840                    mshr->allocateTarget(pkt, forward_time, order++,
841                                         allocOnFill(pkt->cmd));
842                    if (mshr->getNumTargets() == numTarget) {
843                        noTargetMSHR = mshr;
844                        setBlocked(Blocked_NoTargets);
845                        // need to be careful with this... if this mshr isn't
846                        // ready yet (i.e. time > curTick()), we don't want to
847                        // move it ahead of mshrs that are ready
848                        // mshrQueue.moveToFront(mshr);
849                    }
850                }
851                // We should call the prefetcher reguardless if the request is
852                // satisfied or not, reguardless if the request is in the MSHR or
853                // not.  The request could be a ReadReq hit, but still not
854                // satisfied (potentially because of a prior write to the same
855                // cache line.  So, even when not satisfied, tehre is an MSHR
856                // already allocated for this, we need to let the prefetcher know
857                // about the request
858                if (prefetcher) {
859                    // Don't notify on SWPrefetch
860                    if (!pkt->cmd.isSWPrefetch())
861                        next_pf_time = prefetcher->notify(pkt);
862                }
863            }
864        } else {
865            // no MSHR
866            assert(pkt->req->masterId() < system->maxMasters());
867            if (pkt->req->isUncacheable()) {
868                mshr_uncacheable[pkt->cmdToIndex()][pkt->req->masterId()]++;
869            } else {
870                mshr_misses[pkt->cmdToIndex()][pkt->req->masterId()]++;
871            }
872
873            if (pkt->isEviction() ||
874                (pkt->req->isUncacheable() && pkt->isWrite())) {
875                // We use forward_time here because there is an
876                // uncached memory write, forwarded to WriteBuffer.
877                allocateWriteBuffer(pkt, forward_time);
878            } else {
879                if (blk && blk->isValid()) {
880                    // should have flushed and have no valid block
881                    assert(!pkt->req->isUncacheable());
882
883                    // If we have a write miss to a valid block, we
884                    // need to mark the block non-readable.  Otherwise
885                    // if we allow reads while there's an outstanding
886                    // write miss, the read could return stale data
887                    // out of the cache block... a more aggressive
888                    // system could detect the overlap (if any) and
889                    // forward data out of the MSHRs, but we don't do
890                    // that yet.  Note that we do need to leave the
891                    // block valid so that it stays in the cache, in
892                    // case we get an upgrade response (and hence no
893                    // new data) when the write miss completes.
894                    // As long as CPUs do proper store/load forwarding
895                    // internally, and have a sufficiently weak memory
896                    // model, this is probably unnecessary, but at some
897                    // point it must have seemed like we needed it...
898                    assert(pkt->needsWritable());
899                    assert(!blk->isWritable());
900                    blk->status &= ~BlkReadable;
901                }
902                // Here we are using forward_time, modelling the latency of
903                // a miss (outbound) just as forwardLatency, neglecting the
904                // lookupLatency component.
905                allocateMissBuffer(pkt, forward_time);
906            }
907
908            if (prefetcher) {
909                // Don't notify on SWPrefetch
910                if (!pkt->cmd.isSWPrefetch())
911                    next_pf_time = prefetcher->notify(pkt);
912            }
913        }
914    }
915
916    if (next_pf_time != MaxTick)
917        schedMemSideSendEvent(next_pf_time);
918
919    return true;
920}
921
922
923// See comment in cache.hh.
924PacketPtr
925Cache::getBusPacket(PacketPtr cpu_pkt, CacheBlk *blk,
926                    bool needsWritable) const
927{
928    bool blkValid = blk && blk->isValid();
929
930    if (cpu_pkt->req->isUncacheable()) {
931        // note that at the point we see the uncacheable request we
932        // flush any block, but there could be an outstanding MSHR,
933        // and the cache could have filled again before we actually
934        // send out the forwarded uncacheable request (blk could thus
935        // be non-null)
936        return NULL;
937    }
938
939    if (!blkValid &&
940        (cpu_pkt->isUpgrade() ||
941         cpu_pkt->isEviction())) {
942        // Writebacks that weren't allocated in access() and upgrades
943        // from upper-level caches that missed completely just go
944        // through.
945        return NULL;
946    }
947
948    assert(cpu_pkt->needsResponse());
949
950    MemCmd cmd;
951    // @TODO make useUpgrades a parameter.
952    // Note that ownership protocols require upgrade, otherwise a
953    // write miss on a shared owned block will generate a ReadExcl,
954    // which will clobber the owned copy.
955    const bool useUpgrades = true;
956    if (blkValid && useUpgrades) {
957        // only reason to be here is that blk is read only and we need
958        // it to be writable
959        assert(needsWritable);
960        assert(!blk->isWritable());
961        cmd = cpu_pkt->isLLSC() ? MemCmd::SCUpgradeReq : MemCmd::UpgradeReq;
962    } else if (cpu_pkt->cmd == MemCmd::SCUpgradeFailReq ||
963               cpu_pkt->cmd == MemCmd::StoreCondFailReq) {
964        // Even though this SC will fail, we still need to send out the
965        // request and get the data to supply it to other snoopers in the case
966        // where the determination the StoreCond fails is delayed due to
967        // all caches not being on the same local bus.
968        cmd = MemCmd::SCUpgradeFailReq;
969    } else if (cpu_pkt->cmd == MemCmd::WriteLineReq ||
970               cpu_pkt->cmd == MemCmd::InvalidateReq) {
971        // forward as invalidate to all other caches, this gives us
972        // the line in Exclusive state, and invalidates all other
973        // copies
974        cmd = MemCmd::InvalidateReq;
975    } else {
976        // block is invalid
977        cmd = needsWritable ? MemCmd::ReadExReq :
978            (isReadOnly ? MemCmd::ReadCleanReq : MemCmd::ReadSharedReq);
979    }
980    PacketPtr pkt = new Packet(cpu_pkt->req, cmd, blkSize);
981
982    // if there are upstream caches that have already marked the
983    // packet as having sharers (not passing writable), pass that info
984    // downstream
985    if (cpu_pkt->hasSharers()) {
986        // note that cpu_pkt may have spent a considerable time in the
987        // MSHR queue and that the information could possibly be out
988        // of date, however, there is no harm in conservatively
989        // assuming the block has sharers
990        pkt->setHasSharers();
991        DPRINTF(Cache, "%s passing hasSharers from %s to %s addr %#llx "
992                "size %d\n",
993                __func__, cpu_pkt->cmdString(), pkt->cmdString(),
994                pkt->getAddr(), pkt->getSize());
995    }
996
997    // the packet should be block aligned
998    assert(pkt->getAddr() == blockAlign(pkt->getAddr()));
999
1000    pkt->allocate();
1001    DPRINTF(Cache, "%s created %s from %s for  addr %#llx size %d\n",
1002            __func__, pkt->cmdString(), cpu_pkt->cmdString(), pkt->getAddr(),
1003            pkt->getSize());
1004    return pkt;
1005}
1006
1007
1008Tick
1009Cache::recvAtomic(PacketPtr pkt)
1010{
1011    // We are in atomic mode so we pay just for lookupLatency here.
1012    Cycles lat = lookupLatency;
1013
1014    // Forward the request if the system is in cache bypass mode.
1015    if (system->bypassCaches())
1016        return ticksToCycles(memSidePort->sendAtomic(pkt));
1017
1018    promoteWholeLineWrites(pkt);
1019
1020    // follow the same flow as in recvTimingReq, and check if a cache
1021    // above us is responding
1022    if (pkt->cacheResponding()) {
1023        DPRINTF(Cache, "Cache above responding to %#llx (%s): "
1024                "not responding\n",
1025                pkt->getAddr(), pkt->isSecure() ? "s" : "ns");
1026
1027        // if a cache is responding, and it had the line in Owned
1028        // rather than Modified state, we need to invalidate any
1029        // copies that are not on the same path to memory
1030        assert(pkt->needsWritable() && !pkt->responderHadWritable());
1031        lat += ticksToCycles(memSidePort->sendAtomic(pkt));
1032
1033        return lat * clockPeriod();
1034    }
1035
1036    // should assert here that there are no outstanding MSHRs or
1037    // writebacks... that would mean that someone used an atomic
1038    // access in timing mode
1039
1040    CacheBlk *blk = NULL;
1041    PacketList writebacks;
1042    bool satisfied = access(pkt, blk, lat, writebacks);
1043
1044    // handle writebacks resulting from the access here to ensure they
1045    // logically proceed anything happening below
1046    doWritebacksAtomic(writebacks);
1047
1048    if (!satisfied) {
1049        // MISS
1050
1051        PacketPtr bus_pkt = getBusPacket(pkt, blk, pkt->needsWritable());
1052
1053        bool is_forward = (bus_pkt == NULL);
1054
1055        if (is_forward) {
1056            // just forwarding the same request to the next level
1057            // no local cache operation involved
1058            bus_pkt = pkt;
1059        }
1060
1061        DPRINTF(Cache, "Sending an atomic %s for %#llx (%s)\n",
1062                bus_pkt->cmdString(), bus_pkt->getAddr(),
1063                bus_pkt->isSecure() ? "s" : "ns");
1064
1065#if TRACING_ON
1066        CacheBlk::State old_state = blk ? blk->status : 0;
1067#endif
1068
1069        lat += ticksToCycles(memSidePort->sendAtomic(bus_pkt));
1070
1071        // We are now dealing with the response handling
1072        DPRINTF(Cache, "Receive response: %s for addr %#llx (%s) in state %i\n",
1073                bus_pkt->cmdString(), bus_pkt->getAddr(),
1074                bus_pkt->isSecure() ? "s" : "ns",
1075                old_state);
1076
1077        // If packet was a forward, the response (if any) is already
1078        // in place in the bus_pkt == pkt structure, so we don't need
1079        // to do anything.  Otherwise, use the separate bus_pkt to
1080        // generate response to pkt and then delete it.
1081        if (!is_forward) {
1082            if (pkt->needsResponse()) {
1083                assert(bus_pkt->isResponse());
1084                if (bus_pkt->isError()) {
1085                    pkt->makeAtomicResponse();
1086                    pkt->copyError(bus_pkt);
1087                } else if (pkt->cmd == MemCmd::InvalidateReq) {
1088                    if (blk) {
1089                        // invalidate response to a cache that received
1090                        // an invalidate request
1091                        satisfyCpuSideRequest(pkt, blk);
1092                    }
1093                } else if (pkt->cmd == MemCmd::WriteLineReq) {
1094                    // note the use of pkt, not bus_pkt here.
1095
1096                    // write-line request to the cache that promoted
1097                    // the write to a whole line
1098                    blk = handleFill(pkt, blk, writebacks,
1099                                     allocOnFill(pkt->cmd));
1100                    satisfyCpuSideRequest(pkt, blk);
1101                } else if (bus_pkt->isRead() ||
1102                           bus_pkt->cmd == MemCmd::UpgradeResp) {
1103                    // we're updating cache state to allow us to
1104                    // satisfy the upstream request from the cache
1105                    blk = handleFill(bus_pkt, blk, writebacks,
1106                                     allocOnFill(pkt->cmd));
1107                    satisfyCpuSideRequest(pkt, blk);
1108                } else {
1109                    // we're satisfying the upstream request without
1110                    // modifying cache state, e.g., a write-through
1111                    pkt->makeAtomicResponse();
1112                }
1113            }
1114            delete bus_pkt;
1115        }
1116    }
1117
1118    // Note that we don't invoke the prefetcher at all in atomic mode.
1119    // It's not clear how to do it properly, particularly for
1120    // prefetchers that aggressively generate prefetch candidates and
1121    // rely on bandwidth contention to throttle them; these will tend
1122    // to pollute the cache in atomic mode since there is no bandwidth
1123    // contention.  If we ever do want to enable prefetching in atomic
1124    // mode, though, this is the place to do it... see timingAccess()
1125    // for an example (though we'd want to issue the prefetch(es)
1126    // immediately rather than calling requestMemSideBus() as we do
1127    // there).
1128
1129    // do any writebacks resulting from the response handling
1130    doWritebacksAtomic(writebacks);
1131
1132    // if we used temp block, check to see if its valid and if so
1133    // clear it out, but only do so after the call to recvAtomic is
1134    // finished so that any downstream observers (such as a snoop
1135    // filter), first see the fill, and only then see the eviction
1136    if (blk == tempBlock && tempBlock->isValid()) {
1137        // the atomic CPU calls recvAtomic for fetch and load/store
1138        // sequentuially, and we may already have a tempBlock
1139        // writeback from the fetch that we have not yet sent
1140        if (tempBlockWriteback) {
1141            // if that is the case, write the prevoius one back, and
1142            // do not schedule any new event
1143            writebackTempBlockAtomic();
1144        } else {
1145            // the writeback/clean eviction happens after the call to
1146            // recvAtomic has finished (but before any successive
1147            // calls), so that the response handling from the fill is
1148            // allowed to happen first
1149            schedule(writebackTempBlockAtomicEvent, curTick());
1150        }
1151
1152        tempBlockWriteback = (blk->isDirty() || writebackClean) ?
1153            writebackBlk(blk) : cleanEvictBlk(blk);
1154        blk->invalidate();
1155    }
1156
1157    if (pkt->needsResponse()) {
1158        pkt->makeAtomicResponse();
1159    }
1160
1161    return lat * clockPeriod();
1162}
1163
1164
1165void
1166Cache::functionalAccess(PacketPtr pkt, bool fromCpuSide)
1167{
1168    if (system->bypassCaches()) {
1169        // Packets from the memory side are snoop request and
1170        // shouldn't happen in bypass mode.
1171        assert(fromCpuSide);
1172
1173        // The cache should be flushed if we are in cache bypass mode,
1174        // so we don't need to check if we need to update anything.
1175        memSidePort->sendFunctional(pkt);
1176        return;
1177    }
1178
1179    Addr blk_addr = blockAlign(pkt->getAddr());
1180    bool is_secure = pkt->isSecure();
1181    CacheBlk *blk = tags->findBlock(pkt->getAddr(), is_secure);
1182    MSHR *mshr = mshrQueue.findMatch(blk_addr, is_secure);
1183
1184    pkt->pushLabel(name());
1185
1186    CacheBlkPrintWrapper cbpw(blk);
1187
1188    // Note that just because an L2/L3 has valid data doesn't mean an
1189    // L1 doesn't have a more up-to-date modified copy that still
1190    // needs to be found.  As a result we always update the request if
1191    // we have it, but only declare it satisfied if we are the owner.
1192
1193    // see if we have data at all (owned or otherwise)
1194    bool have_data = blk && blk->isValid()
1195        && pkt->checkFunctional(&cbpw, blk_addr, is_secure, blkSize,
1196                                blk->data);
1197
1198    // data we have is dirty if marked as such or if we have an
1199    // in-service MSHR that is pending a modified line
1200    bool have_dirty =
1201        have_data && (blk->isDirty() ||
1202                      (mshr && mshr->inService && mshr->isPendingModified()));
1203
1204    bool done = have_dirty
1205        || cpuSidePort->checkFunctional(pkt)
1206        || mshrQueue.checkFunctional(pkt, blk_addr)
1207        || writeBuffer.checkFunctional(pkt, blk_addr)
1208        || memSidePort->checkFunctional(pkt);
1209
1210    DPRINTF(CacheVerbose, "functional %s %#llx (%s) %s%s%s\n",
1211            pkt->cmdString(), pkt->getAddr(), is_secure ? "s" : "ns",
1212            (blk && blk->isValid()) ? "valid " : "",
1213            have_data ? "data " : "", done ? "done " : "");
1214
1215    // We're leaving the cache, so pop cache->name() label
1216    pkt->popLabel();
1217
1218    if (done) {
1219        pkt->makeResponse();
1220    } else {
1221        // if it came as a request from the CPU side then make sure it
1222        // continues towards the memory side
1223        if (fromCpuSide) {
1224            memSidePort->sendFunctional(pkt);
1225        } else if (forwardSnoops && cpuSidePort->isSnooping()) {
1226            // if it came from the memory side, it must be a snoop request
1227            // and we should only forward it if we are forwarding snoops
1228            cpuSidePort->sendFunctionalSnoop(pkt);
1229        }
1230    }
1231}
1232
1233
1234/////////////////////////////////////////////////////
1235//
1236// Response handling: responses from the memory side
1237//
1238/////////////////////////////////////////////////////
1239
1240
1241void
1242Cache::recvTimingResp(PacketPtr pkt)
1243{
1244    assert(pkt->isResponse());
1245
1246    // all header delay should be paid for by the crossbar, unless
1247    // this is a prefetch response from above
1248    panic_if(pkt->headerDelay != 0 && pkt->cmd != MemCmd::HardPFResp,
1249             "%s saw a non-zero packet delay\n", name());
1250
1251    MSHR *mshr = dynamic_cast<MSHR*>(pkt->senderState);
1252    bool is_error = pkt->isError();
1253
1254    assert(mshr);
1255
1256    if (is_error) {
1257        DPRINTF(Cache, "Cache received packet with error for addr %#llx (%s), "
1258                "cmd: %s\n", pkt->getAddr(), pkt->isSecure() ? "s" : "ns",
1259                pkt->cmdString());
1260    }
1261
1262    DPRINTF(Cache, "Handling response %s for addr %#llx size %d (%s)\n",
1263            pkt->cmdString(), pkt->getAddr(), pkt->getSize(),
1264            pkt->isSecure() ? "s" : "ns");
1265
1266    MSHRQueue *mq = mshr->queue;
1267    bool wasFull = mq->isFull();
1268
1269    if (mshr == noTargetMSHR) {
1270        // we always clear at least one target
1271        clearBlocked(Blocked_NoTargets);
1272        noTargetMSHR = NULL;
1273    }
1274
1275    // Initial target is used just for stats
1276    MSHR::Target *initial_tgt = mshr->getTarget();
1277    int stats_cmd_idx = initial_tgt->pkt->cmdToIndex();
1278    Tick miss_latency = curTick() - initial_tgt->recvTime;
1279    PacketList writebacks;
1280    // We need forward_time here because we have a call of
1281    // allocateWriteBuffer() that need this parameter to specify the
1282    // time to request the bus.  In this case we use forward latency
1283    // because there is a writeback.  We pay also here for headerDelay
1284    // that is charged of bus latencies if the packet comes from the
1285    // bus.
1286    Tick forward_time = clockEdge(forwardLatency) + pkt->headerDelay;
1287
1288    if (pkt->req->isUncacheable()) {
1289        assert(pkt->req->masterId() < system->maxMasters());
1290        mshr_uncacheable_lat[stats_cmd_idx][pkt->req->masterId()] +=
1291            miss_latency;
1292    } else {
1293        assert(pkt->req->masterId() < system->maxMasters());
1294        mshr_miss_latency[stats_cmd_idx][pkt->req->masterId()] +=
1295            miss_latency;
1296    }
1297
1298    // upgrade deferred targets if the response has no sharers, and is
1299    // thus passing writable
1300    if (!pkt->hasSharers()) {
1301        mshr->promoteWritable();
1302    }
1303
1304    bool is_fill = !mshr->isForward &&
1305        (pkt->isRead() || pkt->cmd == MemCmd::UpgradeResp);
1306
1307    CacheBlk *blk = tags->findBlock(pkt->getAddr(), pkt->isSecure());
1308
1309    if (is_fill && !is_error) {
1310        DPRINTF(Cache, "Block for addr %#llx being updated in Cache\n",
1311                pkt->getAddr());
1312
1313        blk = handleFill(pkt, blk, writebacks, mshr->allocOnFill);
1314        assert(blk != NULL);
1315    }
1316
1317    // allow invalidation responses originating from write-line
1318    // requests to be discarded
1319    bool is_invalidate = pkt->isInvalidate();
1320
1321    // First offset for critical word first calculations
1322    int initial_offset = initial_tgt->pkt->getOffset(blkSize);
1323
1324    while (mshr->hasTargets()) {
1325        MSHR::Target *target = mshr->getTarget();
1326        Packet *tgt_pkt = target->pkt;
1327
1328        switch (target->source) {
1329          case MSHR::Target::FromCPU:
1330            Tick completion_time;
1331            // Here we charge on completion_time the delay of the xbar if the
1332            // packet comes from it, charged on headerDelay.
1333            completion_time = pkt->headerDelay;
1334
1335            // Software prefetch handling for cache closest to core
1336            if (tgt_pkt->cmd.isSWPrefetch()) {
1337                // a software prefetch would have already been ack'd immediately
1338                // with dummy data so the core would be able to retire it.
1339                // this request completes right here, so we deallocate it.
1340                delete tgt_pkt->req;
1341                delete tgt_pkt;
1342                break; // skip response
1343            }
1344
1345            // unlike the other packet flows, where data is found in other
1346            // caches or memory and brought back, write-line requests always
1347            // have the data right away, so the above check for "is fill?"
1348            // cannot actually be determined until examining the stored MSHR
1349            // state. We "catch up" with that logic here, which is duplicated
1350            // from above.
1351            if (tgt_pkt->cmd == MemCmd::WriteLineReq) {
1352                assert(!is_error);
1353                // we got the block in a writable state, so promote
1354                // any deferred targets if possible
1355                mshr->promoteWritable();
1356                // NB: we use the original packet here and not the response!
1357                blk = handleFill(tgt_pkt, blk, writebacks, mshr->allocOnFill);
1358                assert(blk != NULL);
1359
1360                // treat as a fill, and discard the invalidation
1361                // response
1362                is_fill = true;
1363                is_invalidate = false;
1364            }
1365
1366            if (is_fill) {
1367                satisfyCpuSideRequest(tgt_pkt, blk,
1368                                      true, mshr->hasPostDowngrade());
1369
1370                // How many bytes past the first request is this one
1371                int transfer_offset =
1372                    tgt_pkt->getOffset(blkSize) - initial_offset;
1373                if (transfer_offset < 0) {
1374                    transfer_offset += blkSize;
1375                }
1376
1377                // If not critical word (offset) return payloadDelay.
1378                // responseLatency is the latency of the return path
1379                // from lower level caches/memory to an upper level cache or
1380                // the core.
1381                completion_time += clockEdge(responseLatency) +
1382                    (transfer_offset ? pkt->payloadDelay : 0);
1383
1384                assert(!tgt_pkt->req->isUncacheable());
1385
1386                assert(tgt_pkt->req->masterId() < system->maxMasters());
1387                missLatency[tgt_pkt->cmdToIndex()][tgt_pkt->req->masterId()] +=
1388                    completion_time - target->recvTime;
1389            } else if (pkt->cmd == MemCmd::UpgradeFailResp) {
1390                // failed StoreCond upgrade
1391                assert(tgt_pkt->cmd == MemCmd::StoreCondReq ||
1392                       tgt_pkt->cmd == MemCmd::StoreCondFailReq ||
1393                       tgt_pkt->cmd == MemCmd::SCUpgradeFailReq);
1394                // responseLatency is the latency of the return path
1395                // from lower level caches/memory to an upper level cache or
1396                // the core.
1397                completion_time += clockEdge(responseLatency) +
1398                    pkt->payloadDelay;
1399                tgt_pkt->req->setExtraData(0);
1400            } else {
1401                // not a cache fill, just forwarding response
1402                // responseLatency is the latency of the return path
1403                // from lower level cahces/memory to the core.
1404                completion_time += clockEdge(responseLatency) +
1405                    pkt->payloadDelay;
1406                if (pkt->isRead() && !is_error) {
1407                    // sanity check
1408                    assert(pkt->getAddr() == tgt_pkt->getAddr());
1409                    assert(pkt->getSize() >= tgt_pkt->getSize());
1410
1411                    tgt_pkt->setData(pkt->getConstPtr<uint8_t>());
1412                }
1413            }
1414            tgt_pkt->makeTimingResponse();
1415            // if this packet is an error copy that to the new packet
1416            if (is_error)
1417                tgt_pkt->copyError(pkt);
1418            if (tgt_pkt->cmd == MemCmd::ReadResp &&
1419                (is_invalidate || mshr->hasPostInvalidate())) {
1420                // If intermediate cache got ReadRespWithInvalidate,
1421                // propagate that.  Response should not have
1422                // isInvalidate() set otherwise.
1423                tgt_pkt->cmd = MemCmd::ReadRespWithInvalidate;
1424                DPRINTF(Cache, "%s updated cmd to %s for addr %#llx\n",
1425                        __func__, tgt_pkt->cmdString(), tgt_pkt->getAddr());
1426            }
1427            // Reset the bus additional time as it is now accounted for
1428            tgt_pkt->headerDelay = tgt_pkt->payloadDelay = 0;
1429            cpuSidePort->schedTimingResp(tgt_pkt, completion_time, true);
1430            break;
1431
1432          case MSHR::Target::FromPrefetcher:
1433            assert(tgt_pkt->cmd == MemCmd::HardPFReq);
1434            if (blk)
1435                blk->status |= BlkHWPrefetched;
1436            delete tgt_pkt->req;
1437            delete tgt_pkt;
1438            break;
1439
1440          case MSHR::Target::FromSnoop:
1441            // I don't believe that a snoop can be in an error state
1442            assert(!is_error);
1443            // response to snoop request
1444            DPRINTF(Cache, "processing deferred snoop...\n");
1445            assert(!(is_invalidate && !mshr->hasPostInvalidate()));
1446            handleSnoop(tgt_pkt, blk, true, true, mshr->hasPostInvalidate());
1447            break;
1448
1449          default:
1450            panic("Illegal target->source enum %d\n", target->source);
1451        }
1452
1453        mshr->popTarget();
1454    }
1455
1456    if (blk && blk->isValid()) {
1457        // an invalidate response stemming from a write line request
1458        // should not invalidate the block, so check if the
1459        // invalidation should be discarded
1460        if (is_invalidate || mshr->hasPostInvalidate()) {
1461            invalidateBlock(blk);
1462        } else if (mshr->hasPostDowngrade()) {
1463            blk->status &= ~BlkWritable;
1464        }
1465    }
1466
1467    if (mshr->promoteDeferredTargets()) {
1468        // avoid later read getting stale data while write miss is
1469        // outstanding.. see comment in timingAccess()
1470        if (blk) {
1471            blk->status &= ~BlkReadable;
1472        }
1473        mq = mshr->queue;
1474        mq->markPending(mshr);
1475        schedMemSideSendEvent(clockEdge() + pkt->payloadDelay);
1476    } else {
1477        mq->deallocate(mshr);
1478        if (wasFull && !mq->isFull()) {
1479            clearBlocked((BlockedCause)mq->index);
1480        }
1481
1482        // Request the bus for a prefetch if this deallocation freed enough
1483        // MSHRs for a prefetch to take place
1484        if (prefetcher && mq == &mshrQueue && mshrQueue.canPrefetch()) {
1485            Tick next_pf_time = std::max(prefetcher->nextPrefetchReadyTime(),
1486                                         clockEdge());
1487            if (next_pf_time != MaxTick)
1488                schedMemSideSendEvent(next_pf_time);
1489        }
1490    }
1491    // reset the xbar additional timinig  as it is now accounted for
1492    pkt->headerDelay = pkt->payloadDelay = 0;
1493
1494    // copy writebacks to write buffer
1495    doWritebacks(writebacks, forward_time);
1496
1497    // if we used temp block, check to see if its valid and then clear it out
1498    if (blk == tempBlock && tempBlock->isValid()) {
1499        // We use forwardLatency here because we are copying
1500        // Writebacks/CleanEvicts to write buffer. It specifies the latency to
1501        // allocate an internal buffer and to schedule an event to the
1502        // queued port.
1503        if (blk->isDirty() || writebackClean) {
1504            PacketPtr wbPkt = writebackBlk(blk);
1505            allocateWriteBuffer(wbPkt, forward_time);
1506            // Set BLOCK_CACHED flag if cached above.
1507            if (isCachedAbove(wbPkt))
1508                wbPkt->setBlockCached();
1509        } else {
1510            PacketPtr wcPkt = cleanEvictBlk(blk);
1511            // Check to see if block is cached above. If not allocate
1512            // write buffer
1513            if (isCachedAbove(wcPkt))
1514                delete wcPkt;
1515            else
1516                allocateWriteBuffer(wcPkt, forward_time);
1517        }
1518        blk->invalidate();
1519    }
1520
1521    DPRINTF(CacheVerbose, "Leaving %s with %s for addr %#llx\n", __func__,
1522            pkt->cmdString(), pkt->getAddr());
1523    delete pkt;
1524}
1525
1526PacketPtr
1527Cache::writebackBlk(CacheBlk *blk)
1528{
1529    chatty_assert(!isReadOnly || writebackClean,
1530                  "Writeback from read-only cache");
1531    assert(blk && blk->isValid() && (blk->isDirty() || writebackClean));
1532
1533    writebacks[Request::wbMasterId]++;
1534
1535    Request *req = new Request(tags->regenerateBlkAddr(blk->tag, blk->set),
1536                               blkSize, 0, Request::wbMasterId);
1537    if (blk->isSecure())
1538        req->setFlags(Request::SECURE);
1539
1540    req->taskId(blk->task_id);
1541    blk->task_id= ContextSwitchTaskId::Unknown;
1542    blk->tickInserted = curTick();
1543
1544    PacketPtr pkt =
1545        new Packet(req, blk->isDirty() ?
1546                   MemCmd::WritebackDirty : MemCmd::WritebackClean);
1547
1548    DPRINTF(Cache, "Create Writeback %#llx writable: %d, dirty: %d\n",
1549            pkt->getAddr(), blk->isWritable(), blk->isDirty());
1550
1551    if (blk->isWritable()) {
1552        // not asserting shared means we pass the block in modified
1553        // state, mark our own block non-writeable
1554        blk->status &= ~BlkWritable;
1555    } else {
1556        // we are in the Owned state, tell the receiver
1557        pkt->setHasSharers();
1558    }
1559
1560    // make sure the block is not marked dirty
1561    blk->status &= ~BlkDirty;
1562
1563    pkt->allocate();
1564    std::memcpy(pkt->getPtr<uint8_t>(), blk->data, blkSize);
1565
1566    return pkt;
1567}
1568
1569PacketPtr
1570Cache::cleanEvictBlk(CacheBlk *blk)
1571{
1572    assert(!writebackClean);
1573    assert(blk && blk->isValid() && !blk->isDirty());
1574    // Creating a zero sized write, a message to the snoop filter
1575    Request *req =
1576        new Request(tags->regenerateBlkAddr(blk->tag, blk->set), blkSize, 0,
1577                    Request::wbMasterId);
1578    if (blk->isSecure())
1579        req->setFlags(Request::SECURE);
1580
1581    req->taskId(blk->task_id);
1582    blk->task_id = ContextSwitchTaskId::Unknown;
1583    blk->tickInserted = curTick();
1584
1585    PacketPtr pkt = new Packet(req, MemCmd::CleanEvict);
1586    pkt->allocate();
1587    DPRINTF(Cache, "%s%s %x Create CleanEvict\n", pkt->cmdString(),
1588            pkt->req->isInstFetch() ? " (ifetch)" : "",
1589            pkt->getAddr());
1590
1591    return pkt;
1592}
1593
1594void
1595Cache::memWriteback()
1596{
1597    CacheBlkVisitorWrapper visitor(*this, &Cache::writebackVisitor);
1598    tags->forEachBlk(visitor);
1599}
1600
1601void
1602Cache::memInvalidate()
1603{
1604    CacheBlkVisitorWrapper visitor(*this, &Cache::invalidateVisitor);
1605    tags->forEachBlk(visitor);
1606}
1607
1608bool
1609Cache::isDirty() const
1610{
1611    CacheBlkIsDirtyVisitor visitor;
1612    tags->forEachBlk(visitor);
1613
1614    return visitor.isDirty();
1615}
1616
1617bool
1618Cache::writebackVisitor(CacheBlk &blk)
1619{
1620    if (blk.isDirty()) {
1621        assert(blk.isValid());
1622
1623        Request request(tags->regenerateBlkAddr(blk.tag, blk.set),
1624                        blkSize, 0, Request::funcMasterId);
1625        request.taskId(blk.task_id);
1626
1627        Packet packet(&request, MemCmd::WriteReq);
1628        packet.dataStatic(blk.data);
1629
1630        memSidePort->sendFunctional(&packet);
1631
1632        blk.status &= ~BlkDirty;
1633    }
1634
1635    return true;
1636}
1637
1638bool
1639Cache::invalidateVisitor(CacheBlk &blk)
1640{
1641
1642    if (blk.isDirty())
1643        warn_once("Invalidating dirty cache lines. Expect things to break.\n");
1644
1645    if (blk.isValid()) {
1646        assert(!blk.isDirty());
1647        tags->invalidate(&blk);
1648        blk.invalidate();
1649    }
1650
1651    return true;
1652}
1653
1654CacheBlk*
1655Cache::allocateBlock(Addr addr, bool is_secure, PacketList &writebacks)
1656{
1657    CacheBlk *blk = tags->findVictim(addr);
1658
1659    // It is valid to return NULL if there is no victim
1660    if (!blk)
1661        return nullptr;
1662
1663    if (blk->isValid()) {
1664        Addr repl_addr = tags->regenerateBlkAddr(blk->tag, blk->set);
1665        MSHR *repl_mshr = mshrQueue.findMatch(repl_addr, blk->isSecure());
1666        if (repl_mshr) {
1667            // must be an outstanding upgrade request
1668            // on a block we're about to replace...
1669            assert(!blk->isWritable() || blk->isDirty());
1670            assert(repl_mshr->needsWritable());
1671            // too hard to replace block with transient state
1672            // allocation failed, block not inserted
1673            return NULL;
1674        } else {
1675            DPRINTF(Cache, "replacement: replacing %#llx (%s) with %#llx (%s): %s\n",
1676                    repl_addr, blk->isSecure() ? "s" : "ns",
1677                    addr, is_secure ? "s" : "ns",
1678                    blk->isDirty() ? "writeback" : "clean");
1679
1680            // Will send up Writeback/CleanEvict snoops via isCachedAbove
1681            // when pushing this writeback list into the write buffer.
1682            if (blk->isDirty() || writebackClean) {
1683                // Save writeback packet for handling by caller
1684                writebacks.push_back(writebackBlk(blk));
1685            } else {
1686                writebacks.push_back(cleanEvictBlk(blk));
1687            }
1688        }
1689    }
1690
1691    return blk;
1692}
1693
1694void
1695Cache::invalidateBlock(CacheBlk *blk)
1696{
1697    if (blk != tempBlock)
1698        tags->invalidate(blk);
1699    blk->invalidate();
1700}
1701
1702// Note that the reason we return a list of writebacks rather than
1703// inserting them directly in the write buffer is that this function
1704// is called by both atomic and timing-mode accesses, and in atomic
1705// mode we don't mess with the write buffer (we just perform the
1706// writebacks atomically once the original request is complete).
1707CacheBlk*
1708Cache::handleFill(PacketPtr pkt, CacheBlk *blk, PacketList &writebacks,
1709                  bool allocate)
1710{
1711    assert(pkt->isResponse() || pkt->cmd == MemCmd::WriteLineReq);
1712    Addr addr = pkt->getAddr();
1713    bool is_secure = pkt->isSecure();
1714#if TRACING_ON
1715    CacheBlk::State old_state = blk ? blk->status : 0;
1716#endif
1717
1718    // When handling a fill, discard any CleanEvicts for the
1719    // same address in write buffer.
1720    Addr M5_VAR_USED blk_addr = blockAlign(pkt->getAddr());
1721    std::vector<MSHR *> M5_VAR_USED wbs;
1722    assert (!writeBuffer.findMatches(blk_addr, is_secure, wbs));
1723
1724    if (blk == NULL) {
1725        // better have read new data...
1726        assert(pkt->hasData());
1727
1728        // only read responses and write-line requests have data;
1729        // note that we don't write the data here for write-line - that
1730        // happens in the subsequent satisfyCpuSideRequest.
1731        assert(pkt->isRead() || pkt->cmd == MemCmd::WriteLineReq);
1732
1733        // need to do a replacement if allocating, otherwise we stick
1734        // with the temporary storage
1735        blk = allocate ? allocateBlock(addr, is_secure, writebacks) : NULL;
1736
1737        if (blk == NULL) {
1738            // No replaceable block or a mostly exclusive
1739            // cache... just use temporary storage to complete the
1740            // current request and then get rid of it
1741            assert(!tempBlock->isValid());
1742            blk = tempBlock;
1743            tempBlock->set = tags->extractSet(addr);
1744            tempBlock->tag = tags->extractTag(addr);
1745            // @todo: set security state as well...
1746            DPRINTF(Cache, "using temp block for %#llx (%s)\n", addr,
1747                    is_secure ? "s" : "ns");
1748        } else {
1749            tags->insertBlock(pkt, blk);
1750        }
1751
1752        // we should never be overwriting a valid block
1753        assert(!blk->isValid());
1754    } else {
1755        // existing block... probably an upgrade
1756        assert(blk->tag == tags->extractTag(addr));
1757        // either we're getting new data or the block should already be valid
1758        assert(pkt->hasData() || blk->isValid());
1759        // don't clear block status... if block is already dirty we
1760        // don't want to lose that
1761    }
1762
1763    if (is_secure)
1764        blk->status |= BlkSecure;
1765    blk->status |= BlkValid | BlkReadable;
1766
1767    // sanity check for whole-line writes, which should always be
1768    // marked as writable as part of the fill, and then later marked
1769    // dirty as part of satisfyCpuSideRequest
1770    if (pkt->cmd == MemCmd::WriteLineReq) {
1771        assert(!pkt->hasSharers());
1772        // at the moment other caches do not respond to the
1773        // invalidation requests corresponding to a whole-line write
1774        assert(!pkt->cacheResponding());
1775    }
1776
1777    // here we deal with setting the appropriate state of the line,
1778    // and we start by looking at the hasSharers flag, and ignore the
1779    // cacheResponding flag (normally signalling dirty data) if the
1780    // packet has sharers, thus the line is never allocated as Owned
1781    // (dirty but not writable), and always ends up being either
1782    // Shared, Exclusive or Modified, see Packet::setCacheResponding
1783    // for more details
1784    if (!pkt->hasSharers()) {
1785        // we could get a writable line from memory (rather than a
1786        // cache) even in a read-only cache, note that we set this bit
1787        // even for a read-only cache, possibly revisit this decision
1788        blk->status |= BlkWritable;
1789
1790        // check if we got this via cache-to-cache transfer (i.e., from a
1791        // cache that had the block in Modified or Owned state)
1792        if (pkt->cacheResponding()) {
1793            // we got the block in Modified state, and invalidated the
1794            // owners copy
1795            blk->status |= BlkDirty;
1796
1797            chatty_assert(!isReadOnly, "Should never see dirty snoop response "
1798                          "in read-only cache %s\n", name());
1799        }
1800    }
1801
1802    DPRINTF(Cache, "Block addr %#llx (%s) moving from state %x to %s\n",
1803            addr, is_secure ? "s" : "ns", old_state, blk->print());
1804
1805    // if we got new data, copy it in (checking for a read response
1806    // and a response that has data is the same in the end)
1807    if (pkt->isRead()) {
1808        // sanity checks
1809        assert(pkt->hasData());
1810        assert(pkt->getSize() == blkSize);
1811
1812        std::memcpy(blk->data, pkt->getConstPtr<uint8_t>(), blkSize);
1813    }
1814    // We pay for fillLatency here.
1815    blk->whenReady = clockEdge() + fillLatency * clockPeriod() +
1816        pkt->payloadDelay;
1817
1818    return blk;
1819}
1820
1821
1822/////////////////////////////////////////////////////
1823//
1824// Snoop path: requests coming in from the memory side
1825//
1826/////////////////////////////////////////////////////
1827
1828void
1829Cache::doTimingSupplyResponse(PacketPtr req_pkt, const uint8_t *blk_data,
1830                              bool already_copied, bool pending_inval)
1831{
1832    // sanity check
1833    assert(req_pkt->isRequest());
1834    assert(req_pkt->needsResponse());
1835
1836    DPRINTF(Cache, "%s for %s addr %#llx size %d\n", __func__,
1837            req_pkt->cmdString(), req_pkt->getAddr(), req_pkt->getSize());
1838    // timing-mode snoop responses require a new packet, unless we
1839    // already made a copy...
1840    PacketPtr pkt = req_pkt;
1841    if (!already_copied)
1842        // do not clear flags, and allocate space for data if the
1843        // packet needs it (the only packets that carry data are read
1844        // responses)
1845        pkt = new Packet(req_pkt, false, req_pkt->isRead());
1846
1847    assert(req_pkt->req->isUncacheable() || req_pkt->isInvalidate() ||
1848           pkt->hasSharers());
1849    pkt->makeTimingResponse();
1850    if (pkt->isRead()) {
1851        pkt->setDataFromBlock(blk_data, blkSize);
1852    }
1853    if (pkt->cmd == MemCmd::ReadResp && pending_inval) {
1854        // Assume we defer a response to a read from a far-away cache
1855        // A, then later defer a ReadExcl from a cache B on the same
1856        // bus as us. We'll assert cacheResponding in both cases, but
1857        // in the latter case cacheResponding will keep the
1858        // invalidation from reaching cache A. This special response
1859        // tells cache A that it gets the block to satisfy its read,
1860        // but must immediately invalidate it.
1861        pkt->cmd = MemCmd::ReadRespWithInvalidate;
1862    }
1863    // Here we consider forward_time, paying for just forward latency and
1864    // also charging the delay provided by the xbar.
1865    // forward_time is used as send_time in next allocateWriteBuffer().
1866    Tick forward_time = clockEdge(forwardLatency) + pkt->headerDelay;
1867    // Here we reset the timing of the packet.
1868    pkt->headerDelay = pkt->payloadDelay = 0;
1869    DPRINTF(CacheVerbose,
1870            "%s created response: %s addr %#llx size %d tick: %lu\n",
1871            __func__, pkt->cmdString(), pkt->getAddr(), pkt->getSize(),
1872            forward_time);
1873    memSidePort->schedTimingSnoopResp(pkt, forward_time, true);
1874}
1875
1876uint32_t
1877Cache::handleSnoop(PacketPtr pkt, CacheBlk *blk, bool is_timing,
1878                   bool is_deferred, bool pending_inval)
1879{
1880    DPRINTF(CacheVerbose, "%s for %s addr %#llx size %d\n", __func__,
1881            pkt->cmdString(), pkt->getAddr(), pkt->getSize());
1882    // deferred snoops can only happen in timing mode
1883    assert(!(is_deferred && !is_timing));
1884    // pending_inval only makes sense on deferred snoops
1885    assert(!(pending_inval && !is_deferred));
1886    assert(pkt->isRequest());
1887
1888    // the packet may get modified if we or a forwarded snooper
1889    // responds in atomic mode, so remember a few things about the
1890    // original packet up front
1891    bool invalidate = pkt->isInvalidate();
1892    bool M5_VAR_USED needs_writable = pkt->needsWritable();
1893
1894    // at the moment we could get an uncacheable write which does not
1895    // have the invalidate flag, and we need a suitable way of dealing
1896    // with this case
1897    panic_if(invalidate && pkt->req->isUncacheable(),
1898             "%s got an invalidating uncacheable snoop request %s to %#llx",
1899             name(), pkt->cmdString(), pkt->getAddr());
1900
1901    uint32_t snoop_delay = 0;
1902
1903    if (forwardSnoops) {
1904        // first propagate snoop upward to see if anyone above us wants to
1905        // handle it.  save & restore packet src since it will get
1906        // rewritten to be relative to cpu-side bus (if any)
1907        bool alreadyResponded = pkt->cacheResponding();
1908        if (is_timing) {
1909            // copy the packet so that we can clear any flags before
1910            // forwarding it upwards, we also allocate data (passing
1911            // the pointer along in case of static data), in case
1912            // there is a snoop hit in upper levels
1913            Packet snoopPkt(pkt, true, true);
1914            snoopPkt.setExpressSnoop();
1915            // the snoop packet does not need to wait any additional
1916            // time
1917            snoopPkt.headerDelay = snoopPkt.payloadDelay = 0;
1918            cpuSidePort->sendTimingSnoopReq(&snoopPkt);
1919
1920            // add the header delay (including crossbar and snoop
1921            // delays) of the upward snoop to the snoop delay for this
1922            // cache
1923            snoop_delay += snoopPkt.headerDelay;
1924
1925            if (snoopPkt.cacheResponding()) {
1926                // cache-to-cache response from some upper cache
1927                assert(!alreadyResponded);
1928                pkt->setCacheResponding();
1929            }
1930            // upstream cache has the block, or has an outstanding
1931            // MSHR, pass the flag on
1932            if (snoopPkt.hasSharers()) {
1933                pkt->setHasSharers();
1934            }
1935            // If this request is a prefetch or clean evict and an upper level
1936            // signals block present, make sure to propagate the block
1937            // presence to the requester.
1938            if (snoopPkt.isBlockCached()) {
1939                pkt->setBlockCached();
1940            }
1941        } else {
1942            cpuSidePort->sendAtomicSnoop(pkt);
1943            if (!alreadyResponded && pkt->cacheResponding()) {
1944                // cache-to-cache response from some upper cache:
1945                // forward response to original requester
1946                assert(pkt->isResponse());
1947            }
1948        }
1949    }
1950
1951    if (!blk || !blk->isValid()) {
1952        DPRINTF(CacheVerbose, "%s snoop miss for %s addr %#llx size %d\n",
1953                __func__, pkt->cmdString(), pkt->getAddr(), pkt->getSize());
1954        return snoop_delay;
1955    } else {
1956        DPRINTF(Cache, "%s snoop hit for %s addr %#llx size %d, "
1957                "old state is %s\n", __func__, pkt->cmdString(),
1958                pkt->getAddr(), pkt->getSize(), blk->print());
1959    }
1960
1961    chatty_assert(!(isReadOnly && blk->isDirty()),
1962                  "Should never have a dirty block in a read-only cache %s\n",
1963                  name());
1964
1965    // We may end up modifying both the block state and the packet (if
1966    // we respond in atomic mode), so just figure out what to do now
1967    // and then do it later. If we find dirty data while snooping for
1968    // an invalidate, we don't need to send a response. The
1969    // invalidation itself is taken care of below.
1970    bool respond = blk->isDirty() && pkt->needsResponse() &&
1971        pkt->cmd != MemCmd::InvalidateReq;
1972    bool have_writable = blk->isWritable();
1973
1974    // Invalidate any prefetch's from below that would strip write permissions
1975    // MemCmd::HardPFReq is only observed by upstream caches.  After missing
1976    // above and in it's own cache, a new MemCmd::ReadReq is created that
1977    // downstream caches observe.
1978    if (pkt->mustCheckAbove()) {
1979        DPRINTF(Cache, "Found addr %#llx in upper level cache for snoop %s from"
1980                " lower cache\n", pkt->getAddr(), pkt->cmdString());
1981        pkt->setBlockCached();
1982        return snoop_delay;
1983    }
1984
1985    if (pkt->isRead() && !invalidate) {
1986        // reading without requiring the line in a writable state
1987        assert(!needs_writable);
1988        pkt->setHasSharers();
1989
1990        // if the requesting packet is uncacheable, retain the line in
1991        // the current state, otherwhise unset the writable flag,
1992        // which means we go from Modified to Owned (and will respond
1993        // below), remain in Owned (and will respond below), from
1994        // Exclusive to Shared, or remain in Shared
1995        if (!pkt->req->isUncacheable())
1996            blk->status &= ~BlkWritable;
1997    }
1998
1999    if (respond) {
2000        // prevent anyone else from responding, cache as well as
2001        // memory, and also prevent any memory from even seeing the
2002        // request
2003        pkt->setCacheResponding();
2004        if (have_writable) {
2005            // inform the cache hierarchy that this cache had the line
2006            // in the Modified state so that we avoid unnecessary
2007            // invalidations (see Packet::setResponderHadWritable)
2008            pkt->setResponderHadWritable();
2009
2010            // in the case of an uncacheable request there is no point
2011            // in setting the responderHadWritable flag, but since the
2012            // recipient does not care there is no harm in doing so
2013        } else {
2014            // if the packet has needsWritable set we invalidate our
2015            // copy below and all other copies will be invalidates
2016            // through express snoops, and if needsWritable is not set
2017            // we already called setHasSharers above
2018        }
2019
2020        // if we are returning a writable and dirty (Modified) line,
2021        // we should be invalidating the line
2022        panic_if(!invalidate && !pkt->hasSharers(),
2023                 "%s is passing a Modified line through %s to %#llx, "
2024                 "but keeping the block",
2025                 name(), pkt->cmdString(), pkt->getAddr());
2026
2027        if (is_timing) {
2028            doTimingSupplyResponse(pkt, blk->data, is_deferred, pending_inval);
2029        } else {
2030            pkt->makeAtomicResponse();
2031            // packets such as upgrades do not actually have any data
2032            // payload
2033            if (pkt->hasData())
2034                pkt->setDataFromBlock(blk->data, blkSize);
2035        }
2036    }
2037
2038    if (!respond && is_timing && is_deferred) {
2039        // if it's a deferred timing snoop to which we are not
2040        // responding, then we've made a copy of both the request and
2041        // the packet, delete them here
2042        assert(pkt->needsResponse());
2043        delete pkt->req;
2044        delete pkt;
2045    }
2046
2047    // Do this last in case it deallocates block data or something
2048    // like that
2049    if (invalidate) {
2050        invalidateBlock(blk);
2051    }
2052
2053    DPRINTF(Cache, "new state is %s\n", blk->print());
2054
2055    return snoop_delay;
2056}
2057
2058
2059void
2060Cache::recvTimingSnoopReq(PacketPtr pkt)
2061{
2062    DPRINTF(CacheVerbose, "%s for %s addr %#llx size %d\n", __func__,
2063            pkt->cmdString(), pkt->getAddr(), pkt->getSize());
2064
2065    // Snoops shouldn't happen when bypassing caches
2066    assert(!system->bypassCaches());
2067
2068    // no need to snoop requests that are not in range
2069    if (!inRange(pkt->getAddr())) {
2070        return;
2071    }
2072
2073    bool is_secure = pkt->isSecure();
2074    CacheBlk *blk = tags->findBlock(pkt->getAddr(), is_secure);
2075
2076    Addr blk_addr = blockAlign(pkt->getAddr());
2077    MSHR *mshr = mshrQueue.findMatch(blk_addr, is_secure);
2078
2079    // Update the latency cost of the snoop so that the crossbar can
2080    // account for it. Do not overwrite what other neighbouring caches
2081    // have already done, rather take the maximum. The update is
2082    // tentative, for cases where we return before an upward snoop
2083    // happens below.
2084    pkt->snoopDelay = std::max<uint32_t>(pkt->snoopDelay,
2085                                         lookupLatency * clockPeriod());
2086
2087    // Inform request(Prefetch, CleanEvict or Writeback) from below of
2088    // MSHR hit, set setBlockCached.
2089    if (mshr && pkt->mustCheckAbove()) {
2090        DPRINTF(Cache, "Setting block cached for %s from"
2091                "lower cache on mshr hit %#x\n",
2092                pkt->cmdString(), pkt->getAddr());
2093        pkt->setBlockCached();
2094        return;
2095    }
2096
2097    // Let the MSHR itself track the snoop and decide whether we want
2098    // to go ahead and do the regular cache snoop
2099    if (mshr && mshr->handleSnoop(pkt, order++)) {
2100        DPRINTF(Cache, "Deferring snoop on in-service MSHR to blk %#llx (%s)."
2101                "mshrs: %s\n", blk_addr, is_secure ? "s" : "ns",
2102                mshr->print());
2103
2104        if (mshr->getNumTargets() > numTarget)
2105            warn("allocating bonus target for snoop"); //handle later
2106        return;
2107    }
2108
2109    //We also need to check the writeback buffers and handle those
2110    std::vector<MSHR *> writebacks;
2111    if (writeBuffer.findMatches(blk_addr, is_secure, writebacks)) {
2112        DPRINTF(Cache, "Snoop hit in writeback to addr %#llx (%s)\n",
2113                pkt->getAddr(), is_secure ? "s" : "ns");
2114
2115        // Look through writebacks for any cachable writes.
2116        // We should only ever find a single match
2117        assert(writebacks.size() == 1);
2118        MSHR *wb_entry = writebacks[0];
2119        // Expect to see only Writebacks and/or CleanEvicts here, both of
2120        // which should not be generated for uncacheable data.
2121        assert(!wb_entry->isUncacheable());
2122        // There should only be a single request responsible for generating
2123        // Writebacks/CleanEvicts.
2124        assert(wb_entry->getNumTargets() == 1);
2125        PacketPtr wb_pkt = wb_entry->getTarget()->pkt;
2126        assert(wb_pkt->isEviction());
2127
2128        if (pkt->isEviction()) {
2129            // if the block is found in the write queue, set the BLOCK_CACHED
2130            // flag for Writeback/CleanEvict snoop. On return the snoop will
2131            // propagate the BLOCK_CACHED flag in Writeback packets and prevent
2132            // any CleanEvicts from travelling down the memory hierarchy.
2133            pkt->setBlockCached();
2134            DPRINTF(Cache, "Squashing %s from lower cache on writequeue hit"
2135                    " %#x\n", pkt->cmdString(), pkt->getAddr());
2136            return;
2137        }
2138
2139        // conceptually writebacks are no different to other blocks in
2140        // this cache, so the behaviour is modelled after handleSnoop,
2141        // the difference being that instead of querying the block
2142        // state to determine if it is dirty and writable, we use the
2143        // command and fields of the writeback packet
2144        bool respond = wb_pkt->cmd == MemCmd::WritebackDirty &&
2145            pkt->needsResponse() && pkt->cmd != MemCmd::InvalidateReq;
2146        bool have_writable = !wb_pkt->hasSharers();
2147        bool invalidate = pkt->isInvalidate();
2148
2149        if (!pkt->req->isUncacheable() && pkt->isRead() && !invalidate) {
2150            assert(!pkt->needsWritable());
2151            pkt->setHasSharers();
2152            wb_pkt->setHasSharers();
2153        }
2154
2155        if (respond) {
2156            pkt->setCacheResponding();
2157
2158            if (have_writable) {
2159                pkt->setResponderHadWritable();
2160            }
2161
2162            doTimingSupplyResponse(pkt, wb_pkt->getConstPtr<uint8_t>(),
2163                                   false, false);
2164        }
2165
2166        if (invalidate) {
2167            // Invalidation trumps our writeback... discard here
2168            // Note: markInService will remove entry from writeback buffer.
2169            markInService(wb_entry, false);
2170            delete wb_pkt;
2171        }
2172    }
2173
2174    // If this was a shared writeback, there may still be
2175    // other shared copies above that require invalidation.
2176    // We could be more selective and return here if the
2177    // request is non-exclusive or if the writeback is
2178    // exclusive.
2179    uint32_t snoop_delay = handleSnoop(pkt, blk, true, false, false);
2180
2181    // Override what we did when we first saw the snoop, as we now
2182    // also have the cost of the upwards snoops to account for
2183    pkt->snoopDelay = std::max<uint32_t>(pkt->snoopDelay, snoop_delay +
2184                                         lookupLatency * clockPeriod());
2185}
2186
2187bool
2188Cache::CpuSidePort::recvTimingSnoopResp(PacketPtr pkt)
2189{
2190    // Express snoop responses from master to slave, e.g., from L1 to L2
2191    cache->recvTimingSnoopResp(pkt);
2192    return true;
2193}
2194
2195Tick
2196Cache::recvAtomicSnoop(PacketPtr pkt)
2197{
2198    // Snoops shouldn't happen when bypassing caches
2199    assert(!system->bypassCaches());
2200
2201    // no need to snoop requests that are not in range.
2202    if (!inRange(pkt->getAddr())) {
2203        return 0;
2204    }
2205
2206    CacheBlk *blk = tags->findBlock(pkt->getAddr(), pkt->isSecure());
2207    uint32_t snoop_delay = handleSnoop(pkt, blk, false, false, false);
2208    return snoop_delay + lookupLatency * clockPeriod();
2209}
2210
2211
2212MSHR *
2213Cache::getNextMSHR()
2214{
2215    // Check both MSHR queue and write buffer for potential requests,
2216    // note that null does not mean there is no request, it could
2217    // simply be that it is not ready
2218    MSHR *miss_mshr  = mshrQueue.getNextMSHR();
2219    MSHR *write_mshr = writeBuffer.getNextMSHR();
2220
2221    // If we got a write buffer request ready, first priority is a
2222    // full write buffer, otherwhise we favour the miss requests
2223    if (write_mshr &&
2224        ((writeBuffer.isFull() && writeBuffer.inServiceEntries == 0) ||
2225         !miss_mshr)) {
2226        // need to search MSHR queue for conflicting earlier miss.
2227        MSHR *conflict_mshr =
2228            mshrQueue.findPending(write_mshr->blkAddr,
2229                                  write_mshr->isSecure);
2230
2231        if (conflict_mshr && conflict_mshr->order < write_mshr->order) {
2232            // Service misses in order until conflict is cleared.
2233            return conflict_mshr;
2234
2235            // @todo Note that we ignore the ready time of the conflict here
2236        }
2237
2238        // No conflicts; issue write
2239        return write_mshr;
2240    } else if (miss_mshr) {
2241        // need to check for conflicting earlier writeback
2242        MSHR *conflict_mshr =
2243            writeBuffer.findPending(miss_mshr->blkAddr,
2244                                    miss_mshr->isSecure);
2245        if (conflict_mshr) {
2246            // not sure why we don't check order here... it was in the
2247            // original code but commented out.
2248
2249            // The only way this happens is if we are
2250            // doing a write and we didn't have permissions
2251            // then subsequently saw a writeback (owned got evicted)
2252            // We need to make sure to perform the writeback first
2253            // To preserve the dirty data, then we can issue the write
2254
2255            // should we return write_mshr here instead?  I.e. do we
2256            // have to flush writes in order?  I don't think so... not
2257            // for Alpha anyway.  Maybe for x86?
2258            return conflict_mshr;
2259
2260            // @todo Note that we ignore the ready time of the conflict here
2261        }
2262
2263        // No conflicts; issue read
2264        return miss_mshr;
2265    }
2266
2267    // fall through... no pending requests.  Try a prefetch.
2268    assert(!miss_mshr && !write_mshr);
2269    if (prefetcher && mshrQueue.canPrefetch()) {
2270        // If we have a miss queue slot, we can try a prefetch
2271        PacketPtr pkt = prefetcher->getPacket();
2272        if (pkt) {
2273            Addr pf_addr = blockAlign(pkt->getAddr());
2274            if (!tags->findBlock(pf_addr, pkt->isSecure()) &&
2275                !mshrQueue.findMatch(pf_addr, pkt->isSecure()) &&
2276                !writeBuffer.findMatch(pf_addr, pkt->isSecure())) {
2277                // Update statistic on number of prefetches issued
2278                // (hwpf_mshr_misses)
2279                assert(pkt->req->masterId() < system->maxMasters());
2280                mshr_misses[pkt->cmdToIndex()][pkt->req->masterId()]++;
2281
2282                // allocate an MSHR and return it, note
2283                // that we send the packet straight away, so do not
2284                // schedule the send
2285                return allocateMissBuffer(pkt, curTick(), false);
2286            } else {
2287                // free the request and packet
2288                delete pkt->req;
2289                delete pkt;
2290            }
2291        }
2292    }
2293
2294    return NULL;
2295}
2296
2297bool
2298Cache::isCachedAbove(PacketPtr pkt, bool is_timing) const
2299{
2300    if (!forwardSnoops)
2301        return false;
2302    // Mirroring the flow of HardPFReqs, the cache sends CleanEvict and
2303    // Writeback snoops into upper level caches to check for copies of the
2304    // same block. Using the BLOCK_CACHED flag with the Writeback/CleanEvict
2305    // packet, the cache can inform the crossbar below of presence or absence
2306    // of the block.
2307    if (is_timing) {
2308        Packet snoop_pkt(pkt, true, false);
2309        snoop_pkt.setExpressSnoop();
2310        // Assert that packet is either Writeback or CleanEvict and not a
2311        // prefetch request because prefetch requests need an MSHR and may
2312        // generate a snoop response.
2313        assert(pkt->isEviction());
2314        snoop_pkt.senderState = NULL;
2315        cpuSidePort->sendTimingSnoopReq(&snoop_pkt);
2316        // Writeback/CleanEvict snoops do not generate a snoop response.
2317        assert(!(snoop_pkt.cacheResponding()));
2318        return snoop_pkt.isBlockCached();
2319    } else {
2320        cpuSidePort->sendAtomicSnoop(pkt);
2321        return pkt->isBlockCached();
2322    }
2323}
2324
2325PacketPtr
2326Cache::getTimingPacket()
2327{
2328    MSHR *mshr = getNextMSHR();
2329
2330    if (mshr == NULL) {
2331        return NULL;
2332    }
2333
2334    // use request from 1st target
2335    PacketPtr tgt_pkt = mshr->getTarget()->pkt;
2336    PacketPtr pkt = NULL;
2337
2338    DPRINTF(CachePort, "%s %s for addr %#llx size %d\n", __func__,
2339            tgt_pkt->cmdString(), tgt_pkt->getAddr(), tgt_pkt->getSize());
2340
2341    CacheBlk *blk = tags->findBlock(mshr->blkAddr, mshr->isSecure);
2342
2343    if (tgt_pkt->cmd == MemCmd::HardPFReq && forwardSnoops) {
2344        // We need to check the caches above us to verify that
2345        // they don't have a copy of this block in the dirty state
2346        // at the moment. Without this check we could get a stale
2347        // copy from memory that might get used in place of the
2348        // dirty one.
2349        Packet snoop_pkt(tgt_pkt, true, false);
2350        snoop_pkt.setExpressSnoop();
2351        // We are sending this packet upwards, but if it hits we will
2352        // get a snoop response that we end up treating just like a
2353        // normal response, hence it needs the MSHR as its sender
2354        // state
2355        snoop_pkt.senderState = mshr;
2356        cpuSidePort->sendTimingSnoopReq(&snoop_pkt);
2357
2358        // Check to see if the prefetch was squashed by an upper cache (to
2359        // prevent us from grabbing the line) or if a Check to see if a
2360        // writeback arrived between the time the prefetch was placed in
2361        // the MSHRs and when it was selected to be sent or if the
2362        // prefetch was squashed by an upper cache.
2363
2364        // It is important to check cacheResponding before
2365        // prefetchSquashed. If another cache has committed to
2366        // responding, it will be sending a dirty response which will
2367        // arrive at the MSHR allocated for this request. Checking the
2368        // prefetchSquash first may result in the MSHR being
2369        // prematurely deallocated.
2370        if (snoop_pkt.cacheResponding()) {
2371            auto M5_VAR_USED r = outstandingSnoop.insert(snoop_pkt.req);
2372            assert(r.second);
2373
2374            // if we are getting a snoop response with no sharers it
2375            // will be allocated as Modified
2376            bool pending_modified_resp = !snoop_pkt.hasSharers();
2377            markInService(mshr, pending_modified_resp);
2378
2379            DPRINTF(Cache, "Upward snoop of prefetch for addr"
2380                    " %#x (%s) hit\n",
2381                    tgt_pkt->getAddr(), tgt_pkt->isSecure()? "s": "ns");
2382            return NULL;
2383        }
2384
2385        if (snoop_pkt.isBlockCached() || blk != NULL) {
2386            DPRINTF(Cache, "Block present, prefetch squashed by cache.  "
2387                    "Deallocating mshr target %#x.\n",
2388                    mshr->blkAddr);
2389            // Deallocate the mshr target
2390            if (mshr->queue->forceDeallocateTarget(mshr)) {
2391                // Clear block if this deallocation resulted freed an
2392                // mshr when all had previously been utilized
2393                clearBlocked((BlockedCause)(mshr->queue->index));
2394            }
2395            return NULL;
2396        }
2397    }
2398
2399    if (mshr->isForwardNoResponse()) {
2400        // no response expected, just forward packet as it is
2401        assert(tags->findBlock(mshr->blkAddr, mshr->isSecure) == NULL);
2402        pkt = tgt_pkt;
2403    } else {
2404        pkt = getBusPacket(tgt_pkt, blk, mshr->needsWritable());
2405
2406        mshr->isForward = (pkt == NULL);
2407
2408        if (mshr->isForward) {
2409            // not a cache block request, but a response is expected
2410            // make copy of current packet to forward, keep current
2411            // copy for response handling
2412            pkt = new Packet(tgt_pkt, false, true);
2413            if (pkt->isWrite()) {
2414                pkt->setData(tgt_pkt->getConstPtr<uint8_t>());
2415            }
2416        }
2417    }
2418
2419    assert(pkt != NULL);
2420    // play it safe and append (rather than set) the sender state, as
2421    // forwarded packets may already have existing state
2422    pkt->pushSenderState(mshr);
2423    return pkt;
2424}
2425
2426
2427Tick
2428Cache::nextMSHRReadyTime() const
2429{
2430    Tick nextReady = std::min(mshrQueue.nextMSHRReadyTime(),
2431                              writeBuffer.nextMSHRReadyTime());
2432
2433    // Don't signal prefetch ready time if no MSHRs available
2434    // Will signal once enoguh MSHRs are deallocated
2435    if (prefetcher && mshrQueue.canPrefetch()) {
2436        nextReady = std::min(nextReady,
2437                             prefetcher->nextPrefetchReadyTime());
2438    }
2439
2440    return nextReady;
2441}
2442
2443void
2444Cache::serialize(CheckpointOut &cp) const
2445{
2446    bool dirty(isDirty());
2447
2448    if (dirty) {
2449        warn("*** The cache still contains dirty data. ***\n");
2450        warn("    Make sure to drain the system using the correct flags.\n");
2451        warn("    This checkpoint will not restore correctly and dirty data in "
2452             "the cache will be lost!\n");
2453    }
2454
2455    // Since we don't checkpoint the data in the cache, any dirty data
2456    // will be lost when restoring from a checkpoint of a system that
2457    // wasn't drained properly. Flag the checkpoint as invalid if the
2458    // cache contains dirty data.
2459    bool bad_checkpoint(dirty);
2460    SERIALIZE_SCALAR(bad_checkpoint);
2461}
2462
2463void
2464Cache::unserialize(CheckpointIn &cp)
2465{
2466    bool bad_checkpoint;
2467    UNSERIALIZE_SCALAR(bad_checkpoint);
2468    if (bad_checkpoint) {
2469        fatal("Restoring from checkpoints with dirty caches is not supported "
2470              "in the classic memory system. Please remove any caches or "
2471              " drain them properly before taking checkpoints.\n");
2472    }
2473}
2474
2475///////////////
2476//
2477// CpuSidePort
2478//
2479///////////////
2480
2481AddrRangeList
2482Cache::CpuSidePort::getAddrRanges() const
2483{
2484    return cache->getAddrRanges();
2485}
2486
2487bool
2488Cache::CpuSidePort::recvTimingReq(PacketPtr pkt)
2489{
2490    assert(!cache->system->bypassCaches());
2491
2492    bool success = false;
2493
2494    // always let express snoop packets through if even if blocked
2495    if (pkt->isExpressSnoop()) {
2496        // do not change the current retry state
2497        bool M5_VAR_USED bypass_success = cache->recvTimingReq(pkt);
2498        assert(bypass_success);
2499        return true;
2500    } else if (blocked || mustSendRetry) {
2501        // either already committed to send a retry, or blocked
2502        success = false;
2503    } else {
2504        // pass it on to the cache, and let the cache decide if we
2505        // have to retry or not
2506        success = cache->recvTimingReq(pkt);
2507    }
2508
2509    // remember if we have to retry
2510    mustSendRetry = !success;
2511    return success;
2512}
2513
2514Tick
2515Cache::CpuSidePort::recvAtomic(PacketPtr pkt)
2516{
2517    return cache->recvAtomic(pkt);
2518}
2519
2520void
2521Cache::CpuSidePort::recvFunctional(PacketPtr pkt)
2522{
2523    // functional request
2524    cache->functionalAccess(pkt, true);
2525}
2526
2527Cache::
2528CpuSidePort::CpuSidePort(const std::string &_name, Cache *_cache,
2529                         const std::string &_label)
2530    : BaseCache::CacheSlavePort(_name, _cache, _label), cache(_cache)
2531{
2532}
2533
2534Cache*
2535CacheParams::create()
2536{
2537    assert(tags);
2538
2539    return new Cache(this);
2540}
2541///////////////
2542//
2543// MemSidePort
2544//
2545///////////////
2546
2547bool
2548Cache::MemSidePort::recvTimingResp(PacketPtr pkt)
2549{
2550    cache->recvTimingResp(pkt);
2551    return true;
2552}
2553
2554// Express snooping requests to memside port
2555void
2556Cache::MemSidePort::recvTimingSnoopReq(PacketPtr pkt)
2557{
2558    // handle snooping requests
2559    cache->recvTimingSnoopReq(pkt);
2560}
2561
2562Tick
2563Cache::MemSidePort::recvAtomicSnoop(PacketPtr pkt)
2564{
2565    return cache->recvAtomicSnoop(pkt);
2566}
2567
2568void
2569Cache::MemSidePort::recvFunctionalSnoop(PacketPtr pkt)
2570{
2571    // functional snoop (note that in contrast to atomic we don't have
2572    // a specific functionalSnoop method, as they have the same
2573    // behaviour regardless)
2574    cache->functionalAccess(pkt, false);
2575}
2576
2577void
2578Cache::CacheReqPacketQueue::sendDeferredPacket()
2579{
2580    // sanity check
2581    assert(!waitingOnRetry);
2582
2583    // there should never be any deferred request packets in the
2584    // queue, instead we resly on the cache to provide the packets
2585    // from the MSHR queue or write queue
2586    assert(deferredPacketReadyTime() == MaxTick);
2587
2588    // check for request packets (requests & writebacks)
2589    PacketPtr pkt = cache.getTimingPacket();
2590    if (pkt == NULL) {
2591        // can happen if e.g. we attempt a writeback and fail, but
2592        // before the retry, the writeback is eliminated because
2593        // we snoop another cache's ReadEx.
2594    } else {
2595        MSHR *mshr = dynamic_cast<MSHR*>(pkt->senderState);
2596        // in most cases getTimingPacket allocates a new packet, and
2597        // we must delete it unless it is successfully sent
2598        bool delete_pkt = !mshr->isForwardNoResponse();
2599
2600        // let our snoop responses go first if there are responses to
2601        // the same addresses we are about to writeback, note that
2602        // this creates a dependency between requests and snoop
2603        // responses, but that should not be a problem since there is
2604        // a chain already and the key is that the snoop responses can
2605        // sink unconditionally
2606        if (snoopRespQueue.hasAddr(pkt->getAddr())) {
2607            DPRINTF(CachePort, "Waiting for snoop response to be sent\n");
2608            Tick when = snoopRespQueue.deferredPacketReadyTime();
2609            schedSendEvent(when);
2610
2611            if (delete_pkt)
2612                delete pkt;
2613
2614            return;
2615        }
2616
2617
2618        waitingOnRetry = !masterPort.sendTimingReq(pkt);
2619
2620        if (waitingOnRetry) {
2621            DPRINTF(CachePort, "now waiting on a retry\n");
2622            if (delete_pkt) {
2623                // we are awaiting a retry, but we
2624                // delete the packet and will be creating a new packet
2625                // when we get the opportunity
2626                delete pkt;
2627            }
2628            // note that we have now masked any requestBus and
2629            // schedSendEvent (we will wait for a retry before
2630            // doing anything), and this is so even if we do not
2631            // care about this packet and might override it before
2632            // it gets retried
2633        } else {
2634            // As part of the call to sendTimingReq the packet is
2635            // forwarded to all neighbouring caches (and any caches
2636            // above them) as a snoop. Thus at this point we know if
2637            // any of the neighbouring caches are responding, and if
2638            // so, we know it is dirty, and we can determine if it is
2639            // being passed as Modified, making our MSHR the ordering
2640            // point
2641            bool pending_modified_resp = !pkt->hasSharers() &&
2642                pkt->cacheResponding();
2643
2644            cache.markInService(mshr, pending_modified_resp);
2645        }
2646    }
2647
2648    // if we succeeded and are not waiting for a retry, schedule the
2649    // next send considering when the next MSHR is ready, note that
2650    // snoop responses have their own packet queue and thus schedule
2651    // their own events
2652    if (!waitingOnRetry) {
2653        schedSendEvent(cache.nextMSHRReadyTime());
2654    }
2655}
2656
2657Cache::
2658MemSidePort::MemSidePort(const std::string &_name, Cache *_cache,
2659                         const std::string &_label)
2660    : BaseCache::CacheMasterPort(_name, _cache, _reqQueue, _snoopRespQueue),
2661      _reqQueue(*_cache, *this, _snoopRespQueue, _label),
2662      _snoopRespQueue(*_cache, *this, _label), cache(_cache)
2663{
2664}
2665