prefetcher: Make prefetcher a sim object instead of it being a parameter on cache
[gem5.git] / src / mem / cache / cache_impl.hh
1 /*
2 * Copyright (c) 2010-2012 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2002-2005 The Regents of The University of Michigan
15 * Copyright (c) 2010 Advanced Micro Devices, Inc.
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Erik Hallnor
42 * Dave Greene
43 * Nathan Binkert
44 * Steve Reinhardt
45 * Ron Dreslinski
46 */
47
48 /**
49 * @file
50 * Cache definitions.
51 */
52
53 #include "base/fast_alloc.hh"
54 #include "base/misc.hh"
55 #include "base/range.hh"
56 #include "base/types.hh"
57 #include "debug/Cache.hh"
58 #include "debug/CachePort.hh"
59 #include "mem/cache/prefetch/base.hh"
60 #include "mem/cache/blk.hh"
61 #include "mem/cache/cache.hh"
62 #include "mem/cache/mshr.hh"
63 #include "sim/sim_exit.hh"
64
65 template<class TagStore>
66 Cache<TagStore>::Cache(const Params *p, TagStore *tags)
67 : BaseCache(p),
68 tags(tags),
69 prefetcher(p->prefetcher),
70 doFastWrites(true),
71 prefetchOnAccess(p->prefetch_on_access)
72 {
73 tempBlock = new BlkType();
74 tempBlock->data = new uint8_t[blkSize];
75
76 cpuSidePort = new CpuSidePort(p->name + "-cpu_side_port", this,
77 "CpuSidePort");
78 memSidePort = new MemSidePort(p->name + "-mem_side_port", this,
79 "MemSidePort");
80
81 tags->setCache(this);
82 if (prefetcher)
83 prefetcher->setCache(this);
84 }
85
86 template<class TagStore>
87 void
88 Cache<TagStore>::regStats()
89 {
90 BaseCache::regStats();
91 tags->regStats(name());
92 }
93
94 template<class TagStore>
95 Port *
96 Cache<TagStore>::getPort(const std::string &if_name, int idx)
97 {
98 if (if_name == "" || if_name == "cpu_side") {
99 return cpuSidePort;
100 } else if (if_name == "mem_side") {
101 return memSidePort;
102 } else {
103 panic("Port name %s unrecognized\n", if_name);
104 }
105 }
106
107 template<class TagStore>
108 void
109 Cache<TagStore>::cmpAndSwap(BlkType *blk, PacketPtr pkt)
110 {
111 uint64_t overwrite_val;
112 bool overwrite_mem;
113 uint64_t condition_val64;
114 uint32_t condition_val32;
115
116 int offset = tags->extractBlkOffset(pkt->getAddr());
117 uint8_t *blk_data = blk->data + offset;
118
119 assert(sizeof(uint64_t) >= pkt->getSize());
120
121 overwrite_mem = true;
122 // keep a copy of our possible write value, and copy what is at the
123 // memory address into the packet
124 pkt->writeData((uint8_t *)&overwrite_val);
125 pkt->setData(blk_data);
126
127 if (pkt->req->isCondSwap()) {
128 if (pkt->getSize() == sizeof(uint64_t)) {
129 condition_val64 = pkt->req->getExtraData();
130 overwrite_mem = !std::memcmp(&condition_val64, blk_data,
131 sizeof(uint64_t));
132 } else if (pkt->getSize() == sizeof(uint32_t)) {
133 condition_val32 = (uint32_t)pkt->req->getExtraData();
134 overwrite_mem = !std::memcmp(&condition_val32, blk_data,
135 sizeof(uint32_t));
136 } else
137 panic("Invalid size for conditional read/write\n");
138 }
139
140 if (overwrite_mem) {
141 std::memcpy(blk_data, &overwrite_val, pkt->getSize());
142 blk->status |= BlkDirty;
143 }
144 }
145
146
147 template<class TagStore>
148 void
149 Cache<TagStore>::satisfyCpuSideRequest(PacketPtr pkt, BlkType *blk,
150 bool deferred_response,
151 bool pending_downgrade)
152 {
153 assert(blk && blk->isValid());
154 // Occasionally this is not true... if we are a lower-level cache
155 // satisfying a string of Read and ReadEx requests from
156 // upper-level caches, a Read will mark the block as shared but we
157 // can satisfy a following ReadEx anyway since we can rely on the
158 // Read requester(s) to have buffered the ReadEx snoop and to
159 // invalidate their blocks after receiving them.
160 // assert(!pkt->needsExclusive() || blk->isWritable());
161 assert(pkt->getOffset(blkSize) + pkt->getSize() <= blkSize);
162
163 // Check RMW operations first since both isRead() and
164 // isWrite() will be true for them
165 if (pkt->cmd == MemCmd::SwapReq) {
166 cmpAndSwap(blk, pkt);
167 } else if (pkt->isWrite()) {
168 if (blk->checkWrite(pkt)) {
169 pkt->writeDataToBlock(blk->data, blkSize);
170 blk->status |= BlkDirty;
171 }
172 } else if (pkt->isRead()) {
173 if (pkt->isLLSC()) {
174 blk->trackLoadLocked(pkt);
175 }
176 pkt->setDataFromBlock(blk->data, blkSize);
177 if (pkt->getSize() == blkSize) {
178 // special handling for coherent block requests from
179 // upper-level caches
180 if (pkt->needsExclusive()) {
181 // if we have a dirty copy, make sure the recipient
182 // keeps it marked dirty
183 if (blk->isDirty()) {
184 pkt->assertMemInhibit();
185 }
186 // on ReadExReq we give up our copy unconditionally
187 tags->invalidateBlk(blk);
188 } else if (blk->isWritable() && !pending_downgrade
189 && !pkt->sharedAsserted()) {
190 // we can give the requester an exclusive copy (by not
191 // asserting shared line) on a read request if:
192 // - we have an exclusive copy at this level (& below)
193 // - we don't have a pending snoop from below
194 // signaling another read request
195 // - no other cache above has a copy (otherwise it
196 // would have asseretd shared line on request)
197
198 if (blk->isDirty()) {
199 // special considerations if we're owner:
200 if (!deferred_response && !isTopLevel) {
201 // if we are responding immediately and can
202 // signal that we're transferring ownership
203 // along with exclusivity, do so
204 pkt->assertMemInhibit();
205 blk->status &= ~BlkDirty;
206 } else {
207 // if we're responding after our own miss,
208 // there's a window where the recipient didn't
209 // know it was getting ownership and may not
210 // have responded to snoops correctly, so we
211 // can't pass off ownership *or* exclusivity
212 pkt->assertShared();
213 }
214 }
215 } else {
216 // otherwise only respond with a shared copy
217 pkt->assertShared();
218 }
219 }
220 } else {
221 // Not a read or write... must be an upgrade. it's OK
222 // to just ack those as long as we have an exclusive
223 // copy at this level.
224 assert(pkt->isUpgrade());
225 tags->invalidateBlk(blk);
226 }
227 }
228
229
230 /////////////////////////////////////////////////////
231 //
232 // MSHR helper functions
233 //
234 /////////////////////////////////////////////////////
235
236
237 template<class TagStore>
238 void
239 Cache<TagStore>::markInService(MSHR *mshr, PacketPtr pkt)
240 {
241 markInServiceInternal(mshr, pkt);
242 #if 0
243 if (mshr->originalCmd == MemCmd::HardPFReq) {
244 DPRINTF(HWPrefetch, "%s:Marking a HW_PF in service\n",
245 name());
246 //Also clear pending if need be
247 if (!prefetcher->havePending())
248 {
249 deassertMemSideBusRequest(Request_PF);
250 }
251 }
252 #endif
253 }
254
255
256 template<class TagStore>
257 void
258 Cache<TagStore>::squash(int threadNum)
259 {
260 bool unblock = false;
261 BlockedCause cause = NUM_BLOCKED_CAUSES;
262
263 if (noTargetMSHR && noTargetMSHR->threadNum == threadNum) {
264 noTargetMSHR = NULL;
265 unblock = true;
266 cause = Blocked_NoTargets;
267 }
268 if (mshrQueue.isFull()) {
269 unblock = true;
270 cause = Blocked_NoMSHRs;
271 }
272 mshrQueue.squash(threadNum);
273 if (unblock && !mshrQueue.isFull()) {
274 clearBlocked(cause);
275 }
276 }
277
278 /////////////////////////////////////////////////////
279 //
280 // Access path: requests coming in from the CPU side
281 //
282 /////////////////////////////////////////////////////
283
284 template<class TagStore>
285 bool
286 Cache<TagStore>::access(PacketPtr pkt, BlkType *&blk,
287 int &lat, PacketList &writebacks)
288 {
289 if (pkt->req->isUncacheable()) {
290 if (pkt->req->isClearLL()) {
291 tags->clearLocks();
292 } else {
293 blk = tags->findBlock(pkt->getAddr());
294 if (blk != NULL) {
295 tags->invalidateBlk(blk);
296 }
297 }
298
299 blk = NULL;
300 lat = hitLatency;
301 return false;
302 }
303
304 int id = pkt->req->hasContextId() ? pkt->req->contextId() : -1;
305 blk = tags->accessBlock(pkt->getAddr(), lat, id);
306
307 DPRINTF(Cache, "%s%s %x %s\n", pkt->cmdString(),
308 pkt->req->isInstFetch() ? " (ifetch)" : "",
309 pkt->getAddr(), (blk) ? "hit" : "miss");
310
311 if (blk != NULL) {
312
313 if (pkt->needsExclusive() ? blk->isWritable() : blk->isReadable()) {
314 // OK to satisfy access
315 incHitCount(pkt, id);
316 satisfyCpuSideRequest(pkt, blk);
317 return true;
318 }
319 }
320
321 // Can't satisfy access normally... either no block (blk == NULL)
322 // or have block but need exclusive & only have shared.
323
324 // Writeback handling is special case. We can write the block
325 // into the cache without having a writeable copy (or any copy at
326 // all).
327 if (pkt->cmd == MemCmd::Writeback) {
328 assert(blkSize == pkt->getSize());
329 if (blk == NULL) {
330 // need to do a replacement
331 blk = allocateBlock(pkt->getAddr(), writebacks);
332 if (blk == NULL) {
333 // no replaceable block available, give up.
334 // writeback will be forwarded to next level.
335 incMissCount(pkt, id);
336 return false;
337 }
338 int id = pkt->req->hasContextId() ? pkt->req->contextId() : -1;
339 tags->insertBlock(pkt->getAddr(), blk, id);
340 blk->status = BlkValid | BlkReadable;
341 }
342 std::memcpy(blk->data, pkt->getPtr<uint8_t>(), blkSize);
343 blk->status |= BlkDirty;
344 if (pkt->isSupplyExclusive()) {
345 blk->status |= BlkWritable;
346 }
347 // nothing else to do; writeback doesn't expect response
348 assert(!pkt->needsResponse());
349 incHitCount(pkt, id);
350 return true;
351 }
352
353 incMissCount(pkt, id);
354
355 if (blk == NULL && pkt->isLLSC() && pkt->isWrite()) {
356 // complete miss on store conditional... just give up now
357 pkt->req->setExtraData(0);
358 return true;
359 }
360
361 return false;
362 }
363
364
365 class ForwardResponseRecord : public Packet::SenderState, public FastAlloc
366 {
367 Packet::SenderState *prevSenderState;
368 int prevSrc;
369 #ifndef NDEBUG
370 BaseCache *cache;
371 #endif
372 public:
373 ForwardResponseRecord(Packet *pkt, BaseCache *_cache)
374 : prevSenderState(pkt->senderState), prevSrc(pkt->getSrc())
375 #ifndef NDEBUG
376 , cache(_cache)
377 #endif
378 {}
379 void restore(Packet *pkt, BaseCache *_cache)
380 {
381 assert(_cache == cache);
382 pkt->senderState = prevSenderState;
383 pkt->setDest(prevSrc);
384 }
385 };
386
387
388 template<class TagStore>
389 bool
390 Cache<TagStore>::timingAccess(PacketPtr pkt)
391 {
392 //@todo Add back in MemDebug Calls
393 // MemDebug::cacheAccess(pkt);
394
395 // we charge hitLatency for doing just about anything here
396 Tick time = curTick() + hitLatency;
397
398 if (pkt->isResponse()) {
399 // must be cache-to-cache response from upper to lower level
400 ForwardResponseRecord *rec =
401 dynamic_cast<ForwardResponseRecord *>(pkt->senderState);
402
403 if (rec == NULL) {
404 assert(pkt->cmd == MemCmd::HardPFResp);
405 // Check if it's a prefetch response and handle it. We shouldn't
406 // get any other kinds of responses without FRRs.
407 DPRINTF(Cache, "Got prefetch response from above for addr %#x\n",
408 pkt->getAddr());
409 handleResponse(pkt);
410 return true;
411 }
412
413 rec->restore(pkt, this);
414 delete rec;
415 memSidePort->respond(pkt, time);
416 return true;
417 }
418
419 assert(pkt->isRequest());
420
421 if (pkt->memInhibitAsserted()) {
422 DPRINTF(Cache, "mem inhibited on 0x%x: not responding\n",
423 pkt->getAddr());
424 assert(!pkt->req->isUncacheable());
425 // Special tweak for multilevel coherence: snoop downward here
426 // on invalidates since there may be other caches below here
427 // that have shared copies. Not necessary if we know that
428 // supplier had exclusive copy to begin with.
429 if (pkt->needsExclusive() && !pkt->isSupplyExclusive()) {
430 Packet *snoopPkt = new Packet(pkt, true); // clear flags
431 snoopPkt->setExpressSnoop();
432 snoopPkt->assertMemInhibit();
433 memSidePort->sendTiming(snoopPkt);
434 // main memory will delete snoopPkt
435 }
436 // since we're the official target but we aren't responding,
437 // delete the packet now.
438 delete pkt;
439 return true;
440 }
441
442 if (pkt->req->isUncacheable()) {
443 if (pkt->req->isClearLL()) {
444 tags->clearLocks();
445 } else {
446 BlkType *blk = tags->findBlock(pkt->getAddr());
447 if (blk != NULL) {
448 tags->invalidateBlk(blk);
449 }
450 }
451
452 // writes go in write buffer, reads use MSHR
453 if (pkt->isWrite() && !pkt->isRead()) {
454 allocateWriteBuffer(pkt, time, true);
455 } else {
456 allocateUncachedReadBuffer(pkt, time, true);
457 }
458 assert(pkt->needsResponse()); // else we should delete it here??
459 return true;
460 }
461
462 int lat = hitLatency;
463 BlkType *blk = NULL;
464 PacketList writebacks;
465
466 bool satisfied = access(pkt, blk, lat, writebacks);
467
468 #if 0
469 /** @todo make the fast write alloc (wh64) work with coherence. */
470
471 // If this is a block size write/hint (WH64) allocate the block here
472 // if the coherence protocol allows it.
473 if (!blk && pkt->getSize() >= blkSize && coherence->allowFastWrites() &&
474 (pkt->cmd == MemCmd::WriteReq
475 || pkt->cmd == MemCmd::WriteInvalidateReq) ) {
476 // not outstanding misses, can do this
477 MSHR *outstanding_miss = mshrQueue.findMatch(pkt->getAddr());
478 if (pkt->cmd == MemCmd::WriteInvalidateReq || !outstanding_miss) {
479 if (outstanding_miss) {
480 warn("WriteInv doing a fastallocate"
481 "with an outstanding miss to the same address\n");
482 }
483 blk = handleFill(NULL, pkt, BlkValid | BlkWritable,
484 writebacks);
485 ++fastWrites;
486 }
487 }
488 #endif
489
490 // track time of availability of next prefetch, if any
491 Tick next_pf_time = 0;
492
493 bool needsResponse = pkt->needsResponse();
494
495 if (satisfied) {
496 if (prefetcher && (prefetchOnAccess || (blk && blk->wasPrefetched()))) {
497 if (blk)
498 blk->status &= ~BlkHWPrefetched;
499 next_pf_time = prefetcher->notify(pkt, time);
500 }
501
502 if (needsResponse) {
503 pkt->makeTimingResponse();
504 cpuSidePort->respond(pkt, curTick()+lat);
505 } else {
506 delete pkt;
507 }
508 } else {
509 // miss
510
511 Addr blk_addr = blockAlign(pkt->getAddr());
512 MSHR *mshr = mshrQueue.findMatch(blk_addr);
513
514 if (mshr) {
515 // MSHR hit
516 //@todo remove hw_pf here
517 mshr_hits[pkt->cmdToIndex()][0/*pkt->req->threadId()*/]++;
518 if (mshr->threadNum != 0/*pkt->req->threadId()*/) {
519 mshr->threadNum = -1;
520 }
521 mshr->allocateTarget(pkt, time, order++);
522 if (mshr->getNumTargets() == numTarget) {
523 noTargetMSHR = mshr;
524 setBlocked(Blocked_NoTargets);
525 // need to be careful with this... if this mshr isn't
526 // ready yet (i.e. time > curTick()_, we don't want to
527 // move it ahead of mshrs that are ready
528 // mshrQueue.moveToFront(mshr);
529 }
530 } else {
531 // no MSHR
532 mshr_misses[pkt->cmdToIndex()][0/*pkt->req->threadId()*/]++;
533 // always mark as cache fill for now... if we implement
534 // no-write-allocate or bypass accesses this will have to
535 // be changed.
536 if (pkt->cmd == MemCmd::Writeback) {
537 allocateWriteBuffer(pkt, time, true);
538 } else {
539 if (blk && blk->isValid()) {
540 // If we have a write miss to a valid block, we
541 // need to mark the block non-readable. Otherwise
542 // if we allow reads while there's an outstanding
543 // write miss, the read could return stale data
544 // out of the cache block... a more aggressive
545 // system could detect the overlap (if any) and
546 // forward data out of the MSHRs, but we don't do
547 // that yet. Note that we do need to leave the
548 // block valid so that it stays in the cache, in
549 // case we get an upgrade response (and hence no
550 // new data) when the write miss completes.
551 // As long as CPUs do proper store/load forwarding
552 // internally, and have a sufficiently weak memory
553 // model, this is probably unnecessary, but at some
554 // point it must have seemed like we needed it...
555 assert(pkt->needsExclusive() && !blk->isWritable());
556 blk->status &= ~BlkReadable;
557 }
558
559 allocateMissBuffer(pkt, time, true);
560 }
561
562 if (prefetcher) {
563 next_pf_time = prefetcher->notify(pkt, time);
564 }
565 }
566 }
567
568 if (next_pf_time != 0)
569 requestMemSideBus(Request_PF, std::max(time, next_pf_time));
570
571 // copy writebacks to write buffer
572 while (!writebacks.empty()) {
573 PacketPtr wbPkt = writebacks.front();
574 allocateWriteBuffer(wbPkt, time, true);
575 writebacks.pop_front();
576 }
577
578 return true;
579 }
580
581
582 // See comment in cache.hh.
583 template<class TagStore>
584 PacketPtr
585 Cache<TagStore>::getBusPacket(PacketPtr cpu_pkt, BlkType *blk,
586 bool needsExclusive)
587 {
588 bool blkValid = blk && blk->isValid();
589
590 if (cpu_pkt->req->isUncacheable()) {
591 //assert(blk == NULL);
592 return NULL;
593 }
594
595 if (!blkValid &&
596 (cpu_pkt->cmd == MemCmd::Writeback || cpu_pkt->isUpgrade())) {
597 // Writebacks that weren't allocated in access() and upgrades
598 // from upper-level caches that missed completely just go
599 // through.
600 return NULL;
601 }
602
603 assert(cpu_pkt->needsResponse());
604
605 MemCmd cmd;
606 // @TODO make useUpgrades a parameter.
607 // Note that ownership protocols require upgrade, otherwise a
608 // write miss on a shared owned block will generate a ReadExcl,
609 // which will clobber the owned copy.
610 const bool useUpgrades = true;
611 if (blkValid && useUpgrades) {
612 // only reason to be here is that blk is shared
613 // (read-only) and we need exclusive
614 assert(needsExclusive && !blk->isWritable());
615 cmd = cpu_pkt->isLLSC() ? MemCmd::SCUpgradeReq : MemCmd::UpgradeReq;
616 } else {
617 // block is invalid
618 cmd = needsExclusive ? MemCmd::ReadExReq : MemCmd::ReadReq;
619 }
620 PacketPtr pkt = new Packet(cpu_pkt->req, cmd, Packet::Broadcast, blkSize);
621
622 pkt->allocate();
623 return pkt;
624 }
625
626
627 template<class TagStore>
628 Tick
629 Cache<TagStore>::atomicAccess(PacketPtr pkt)
630 {
631 int lat = hitLatency;
632
633 // @TODO: make this a parameter
634 bool last_level_cache = false;
635
636 if (pkt->memInhibitAsserted()) {
637 assert(!pkt->req->isUncacheable());
638 // have to invalidate ourselves and any lower caches even if
639 // upper cache will be responding
640 if (pkt->isInvalidate()) {
641 BlkType *blk = tags->findBlock(pkt->getAddr());
642 if (blk && blk->isValid()) {
643 tags->invalidateBlk(blk);
644 DPRINTF(Cache, "rcvd mem-inhibited %s on 0x%x: invalidating\n",
645 pkt->cmdString(), pkt->getAddr());
646 }
647 if (!last_level_cache) {
648 DPRINTF(Cache, "forwarding mem-inhibited %s on 0x%x\n",
649 pkt->cmdString(), pkt->getAddr());
650 lat += memSidePort->sendAtomic(pkt);
651 }
652 } else {
653 DPRINTF(Cache, "rcvd mem-inhibited %s on 0x%x: not responding\n",
654 pkt->cmdString(), pkt->getAddr());
655 }
656
657 return lat;
658 }
659
660 // should assert here that there are no outstanding MSHRs or
661 // writebacks... that would mean that someone used an atomic
662 // access in timing mode
663
664 BlkType *blk = NULL;
665 PacketList writebacks;
666
667 if (!access(pkt, blk, lat, writebacks)) {
668 // MISS
669 PacketPtr bus_pkt = getBusPacket(pkt, blk, pkt->needsExclusive());
670
671 bool is_forward = (bus_pkt == NULL);
672
673 if (is_forward) {
674 // just forwarding the same request to the next level
675 // no local cache operation involved
676 bus_pkt = pkt;
677 }
678
679 DPRINTF(Cache, "Sending an atomic %s for %x\n",
680 bus_pkt->cmdString(), bus_pkt->getAddr());
681
682 #if TRACING_ON
683 CacheBlk::State old_state = blk ? blk->status : 0;
684 #endif
685
686 lat += memSidePort->sendAtomic(bus_pkt);
687
688 DPRINTF(Cache, "Receive response: %s for addr %x in state %i\n",
689 bus_pkt->cmdString(), bus_pkt->getAddr(), old_state);
690
691 assert(!bus_pkt->wasNacked());
692
693 // If packet was a forward, the response (if any) is already
694 // in place in the bus_pkt == pkt structure, so we don't need
695 // to do anything. Otherwise, use the separate bus_pkt to
696 // generate response to pkt and then delete it.
697 if (!is_forward) {
698 if (pkt->needsResponse()) {
699 assert(bus_pkt->isResponse());
700 if (bus_pkt->isError()) {
701 pkt->makeAtomicResponse();
702 pkt->copyError(bus_pkt);
703 } else if (bus_pkt->isRead() ||
704 bus_pkt->cmd == MemCmd::UpgradeResp) {
705 // we're updating cache state to allow us to
706 // satisfy the upstream request from the cache
707 blk = handleFill(bus_pkt, blk, writebacks);
708 satisfyCpuSideRequest(pkt, blk);
709 } else {
710 // we're satisfying the upstream request without
711 // modifying cache state, e.g., a write-through
712 pkt->makeAtomicResponse();
713 }
714 }
715 delete bus_pkt;
716 }
717 }
718
719 // Note that we don't invoke the prefetcher at all in atomic mode.
720 // It's not clear how to do it properly, particularly for
721 // prefetchers that aggressively generate prefetch candidates and
722 // rely on bandwidth contention to throttle them; these will tend
723 // to pollute the cache in atomic mode since there is no bandwidth
724 // contention. If we ever do want to enable prefetching in atomic
725 // mode, though, this is the place to do it... see timingAccess()
726 // for an example (though we'd want to issue the prefetch(es)
727 // immediately rather than calling requestMemSideBus() as we do
728 // there).
729
730 // Handle writebacks if needed
731 while (!writebacks.empty()){
732 PacketPtr wbPkt = writebacks.front();
733 memSidePort->sendAtomic(wbPkt);
734 writebacks.pop_front();
735 delete wbPkt;
736 }
737
738 // We now have the block one way or another (hit or completed miss)
739
740 if (pkt->needsResponse()) {
741 pkt->makeAtomicResponse();
742 }
743
744 return lat;
745 }
746
747
748 template<class TagStore>
749 void
750 Cache<TagStore>::functionalAccess(PacketPtr pkt, bool fromCpuSide)
751 {
752 Addr blk_addr = blockAlign(pkt->getAddr());
753 BlkType *blk = tags->findBlock(pkt->getAddr());
754 MSHR *mshr = mshrQueue.findMatch(blk_addr);
755
756 pkt->pushLabel(name());
757
758 CacheBlkPrintWrapper cbpw(blk);
759
760 // Note that just because an L2/L3 has valid data doesn't mean an
761 // L1 doesn't have a more up-to-date modified copy that still
762 // needs to be found. As a result we always update the request if
763 // we have it, but only declare it satisfied if we are the owner.
764
765 // see if we have data at all (owned or otherwise)
766 bool have_data = blk && blk->isValid()
767 && pkt->checkFunctional(&cbpw, blk_addr, blkSize, blk->data);
768
769 // data we have is dirty if marked as such or if valid & ownership
770 // pending due to outstanding UpgradeReq
771 bool have_dirty =
772 have_data && (blk->isDirty() ||
773 (mshr && mshr->inService && mshr->isPendingDirty()));
774
775 bool done = have_dirty
776 || cpuSidePort->checkFunctional(pkt)
777 || mshrQueue.checkFunctional(pkt, blk_addr)
778 || writeBuffer.checkFunctional(pkt, blk_addr)
779 || memSidePort->checkFunctional(pkt);
780
781 DPRINTF(Cache, "functional %s %x %s%s%s\n",
782 pkt->cmdString(), pkt->getAddr(),
783 (blk && blk->isValid()) ? "valid " : "",
784 have_data ? "data " : "", done ? "done " : "");
785
786 // We're leaving the cache, so pop cache->name() label
787 pkt->popLabel();
788
789 if (done) {
790 pkt->makeResponse();
791 } else {
792 // if it came as a request from the CPU side then make sure it
793 // continues towards the memory side
794 if (fromCpuSide) {
795 memSidePort->sendFunctional(pkt);
796 } else if (forwardSnoops) {
797 // if it came from the memory side, it must be a snoop request
798 // and we should only forward it if we are forwarding snoops
799 cpuSidePort->sendFunctional(pkt);
800 }
801 }
802 }
803
804
805 /////////////////////////////////////////////////////
806 //
807 // Response handling: responses from the memory side
808 //
809 /////////////////////////////////////////////////////
810
811
812 template<class TagStore>
813 void
814 Cache<TagStore>::handleResponse(PacketPtr pkt)
815 {
816 Tick time = curTick() + hitLatency;
817 MSHR *mshr = dynamic_cast<MSHR*>(pkt->senderState);
818 bool is_error = pkt->isError();
819
820 assert(mshr);
821
822 if (pkt->wasNacked()) {
823 //pkt->reinitFromRequest();
824 warn("NACKs from devices not connected to the same bus "
825 "not implemented\n");
826 return;
827 }
828 if (is_error) {
829 DPRINTF(Cache, "Cache received packet with error for address %x, "
830 "cmd: %s\n", pkt->getAddr(), pkt->cmdString());
831 }
832
833 DPRINTF(Cache, "Handling response to %x\n", pkt->getAddr());
834
835 MSHRQueue *mq = mshr->queue;
836 bool wasFull = mq->isFull();
837
838 if (mshr == noTargetMSHR) {
839 // we always clear at least one target
840 clearBlocked(Blocked_NoTargets);
841 noTargetMSHR = NULL;
842 }
843
844 // Initial target is used just for stats
845 MSHR::Target *initial_tgt = mshr->getTarget();
846 BlkType *blk = tags->findBlock(pkt->getAddr());
847 int stats_cmd_idx = initial_tgt->pkt->cmdToIndex();
848 Tick miss_latency = curTick() - initial_tgt->recvTime;
849 PacketList writebacks;
850
851 if (pkt->req->isUncacheable()) {
852 mshr_uncacheable_lat[stats_cmd_idx][0/*pkt->req->threadId()*/] +=
853 miss_latency;
854 } else {
855 mshr_miss_latency[stats_cmd_idx][0/*pkt->req->threadId()*/] +=
856 miss_latency;
857 }
858
859 bool is_fill = !mshr->isForward &&
860 (pkt->isRead() || pkt->cmd == MemCmd::UpgradeResp);
861
862 if (is_fill && !is_error) {
863 DPRINTF(Cache, "Block for addr %x being updated in Cache\n",
864 pkt->getAddr());
865
866 // give mshr a chance to do some dirty work
867 mshr->handleFill(pkt, blk);
868
869 blk = handleFill(pkt, blk, writebacks);
870 assert(blk != NULL);
871 }
872
873 // First offset for critical word first calculations
874 int initial_offset = 0;
875
876 if (mshr->hasTargets()) {
877 initial_offset = mshr->getTarget()->pkt->getOffset(blkSize);
878 }
879
880 while (mshr->hasTargets()) {
881 MSHR::Target *target = mshr->getTarget();
882
883 switch (target->source) {
884 case MSHR::Target::FromCPU:
885 Tick completion_time;
886 if (is_fill) {
887 satisfyCpuSideRequest(target->pkt, blk,
888 true, mshr->hasPostDowngrade());
889 // How many bytes past the first request is this one
890 int transfer_offset =
891 target->pkt->getOffset(blkSize) - initial_offset;
892 if (transfer_offset < 0) {
893 transfer_offset += blkSize;
894 }
895
896 // If critical word (no offset) return first word time
897 completion_time = tags->getHitLatency() +
898 (transfer_offset ? pkt->finishTime : pkt->firstWordTime);
899
900 assert(!target->pkt->req->isUncacheable());
901 missLatency[target->pkt->cmdToIndex()][0/*pkt->req->threadId()*/] +=
902 completion_time - target->recvTime;
903 } else if (pkt->cmd == MemCmd::UpgradeFailResp) {
904 // failed StoreCond upgrade
905 assert(target->pkt->cmd == MemCmd::StoreCondReq ||
906 target->pkt->cmd == MemCmd::StoreCondFailReq ||
907 target->pkt->cmd == MemCmd::SCUpgradeFailReq);
908 completion_time = tags->getHitLatency() + pkt->finishTime;
909 target->pkt->req->setExtraData(0);
910 } else {
911 // not a cache fill, just forwarding response
912 completion_time = tags->getHitLatency() + pkt->finishTime;
913 if (pkt->isRead() && !is_error) {
914 target->pkt->setData(pkt->getPtr<uint8_t>());
915 }
916 }
917 target->pkt->makeTimingResponse();
918 // if this packet is an error copy that to the new packet
919 if (is_error)
920 target->pkt->copyError(pkt);
921 if (target->pkt->cmd == MemCmd::ReadResp &&
922 (pkt->isInvalidate() || mshr->hasPostInvalidate())) {
923 // If intermediate cache got ReadRespWithInvalidate,
924 // propagate that. Response should not have
925 // isInvalidate() set otherwise.
926 target->pkt->cmd = MemCmd::ReadRespWithInvalidate;
927 }
928 cpuSidePort->respond(target->pkt, completion_time);
929 break;
930
931 case MSHR::Target::FromPrefetcher:
932 assert(target->pkt->cmd == MemCmd::HardPFReq);
933 if (blk)
934 blk->status |= BlkHWPrefetched;
935 delete target->pkt->req;
936 delete target->pkt;
937 break;
938
939 case MSHR::Target::FromSnoop:
940 // I don't believe that a snoop can be in an error state
941 assert(!is_error);
942 // response to snoop request
943 DPRINTF(Cache, "processing deferred snoop...\n");
944 assert(!(pkt->isInvalidate() && !mshr->hasPostInvalidate()));
945 handleSnoop(target->pkt, blk, true, true,
946 mshr->hasPostInvalidate());
947 break;
948
949 default:
950 panic("Illegal target->source enum %d\n", target->source);
951 }
952
953 mshr->popTarget();
954 }
955
956 if (blk) {
957 if (pkt->isInvalidate() || mshr->hasPostInvalidate()) {
958 tags->invalidateBlk(blk);
959 } else if (mshr->hasPostDowngrade()) {
960 blk->status &= ~BlkWritable;
961 }
962 }
963
964 if (mshr->promoteDeferredTargets()) {
965 // avoid later read getting stale data while write miss is
966 // outstanding.. see comment in timingAccess()
967 if (blk) {
968 blk->status &= ~BlkReadable;
969 }
970 MSHRQueue *mq = mshr->queue;
971 mq->markPending(mshr);
972 requestMemSideBus((RequestCause)mq->index, pkt->finishTime);
973 } else {
974 mq->deallocate(mshr);
975 if (wasFull && !mq->isFull()) {
976 clearBlocked((BlockedCause)mq->index);
977 }
978 }
979
980 // copy writebacks to write buffer
981 while (!writebacks.empty()) {
982 PacketPtr wbPkt = writebacks.front();
983 allocateWriteBuffer(wbPkt, time, true);
984 writebacks.pop_front();
985 }
986 // if we used temp block, clear it out
987 if (blk == tempBlock) {
988 if (blk->isDirty()) {
989 allocateWriteBuffer(writebackBlk(blk), time, true);
990 }
991 tags->invalidateBlk(blk);
992 }
993
994 delete pkt;
995 }
996
997
998
999
1000 template<class TagStore>
1001 PacketPtr
1002 Cache<TagStore>::writebackBlk(BlkType *blk)
1003 {
1004 assert(blk && blk->isValid() && blk->isDirty());
1005
1006 writebacks[0/*pkt->req->threadId()*/]++;
1007
1008 Request *writebackReq =
1009 new Request(tags->regenerateBlkAddr(blk->tag, blk->set), blkSize, 0);
1010 PacketPtr writeback = new Packet(writebackReq, MemCmd::Writeback, -1);
1011 if (blk->isWritable()) {
1012 writeback->setSupplyExclusive();
1013 }
1014 writeback->allocate();
1015 std::memcpy(writeback->getPtr<uint8_t>(), blk->data, blkSize);
1016
1017 blk->status &= ~BlkDirty;
1018 return writeback;
1019 }
1020
1021
1022 template<class TagStore>
1023 typename Cache<TagStore>::BlkType*
1024 Cache<TagStore>::allocateBlock(Addr addr, PacketList &writebacks)
1025 {
1026 BlkType *blk = tags->findVictim(addr, writebacks);
1027
1028 if (blk->isValid()) {
1029 Addr repl_addr = tags->regenerateBlkAddr(blk->tag, blk->set);
1030 MSHR *repl_mshr = mshrQueue.findMatch(repl_addr);
1031 if (repl_mshr) {
1032 // must be an outstanding upgrade request on block
1033 // we're about to replace...
1034 assert(!blk->isWritable());
1035 assert(repl_mshr->needsExclusive());
1036 // too hard to replace block with transient state
1037 // allocation failed, block not inserted
1038 return NULL;
1039 } else {
1040 DPRINTF(Cache, "replacement: replacing %x with %x: %s\n",
1041 repl_addr, addr,
1042 blk->isDirty() ? "writeback" : "clean");
1043
1044 if (blk->isDirty()) {
1045 // Save writeback packet for handling by caller
1046 writebacks.push_back(writebackBlk(blk));
1047 }
1048 }
1049 }
1050
1051 return blk;
1052 }
1053
1054
1055 // Note that the reason we return a list of writebacks rather than
1056 // inserting them directly in the write buffer is that this function
1057 // is called by both atomic and timing-mode accesses, and in atomic
1058 // mode we don't mess with the write buffer (we just perform the
1059 // writebacks atomically once the original request is complete).
1060 template<class TagStore>
1061 typename Cache<TagStore>::BlkType*
1062 Cache<TagStore>::handleFill(PacketPtr pkt, BlkType *blk,
1063 PacketList &writebacks)
1064 {
1065 Addr addr = pkt->getAddr();
1066 #if TRACING_ON
1067 CacheBlk::State old_state = blk ? blk->status : 0;
1068 #endif
1069
1070 if (blk == NULL) {
1071 // better have read new data...
1072 assert(pkt->hasData());
1073 // need to do a replacement
1074 blk = allocateBlock(addr, writebacks);
1075 if (blk == NULL) {
1076 // No replaceable block... just use temporary storage to
1077 // complete the current request and then get rid of it
1078 assert(!tempBlock->isValid());
1079 blk = tempBlock;
1080 tempBlock->set = tags->extractSet(addr);
1081 tempBlock->tag = tags->extractTag(addr);
1082 DPRINTF(Cache, "using temp block for %x\n", addr);
1083 } else {
1084 int id = pkt->req->hasContextId() ? pkt->req->contextId() : -1;
1085 tags->insertBlock(pkt->getAddr(), blk, id);
1086 }
1087
1088 // starting from scratch with a new block
1089 blk->status = 0;
1090 } else {
1091 // existing block... probably an upgrade
1092 assert(blk->tag == tags->extractTag(addr));
1093 // either we're getting new data or the block should already be valid
1094 assert(pkt->hasData() || blk->isValid());
1095 // don't clear block status... if block is already dirty we
1096 // don't want to lose that
1097 }
1098
1099 blk->status |= BlkValid | BlkReadable;
1100
1101 if (!pkt->sharedAsserted()) {
1102 blk->status |= BlkWritable;
1103 // If we got this via cache-to-cache transfer (i.e., from a
1104 // cache that was an owner) and took away that owner's copy,
1105 // then we need to write it back. Normally this happens
1106 // anyway as a side effect of getting a copy to write it, but
1107 // there are cases (such as failed store conditionals or
1108 // compare-and-swaps) where we'll demand an exclusive copy but
1109 // end up not writing it.
1110 if (pkt->memInhibitAsserted())
1111 blk->status |= BlkDirty;
1112 }
1113
1114 DPRINTF(Cache, "Block addr %x moving from state %i to %i\n",
1115 addr, old_state, blk->status);
1116
1117 // if we got new data, copy it in
1118 if (pkt->isRead()) {
1119 std::memcpy(blk->data, pkt->getPtr<uint8_t>(), blkSize);
1120 }
1121
1122 blk->whenReady = pkt->finishTime;
1123
1124 return blk;
1125 }
1126
1127
1128 /////////////////////////////////////////////////////
1129 //
1130 // Snoop path: requests coming in from the memory side
1131 //
1132 /////////////////////////////////////////////////////
1133
1134 template<class TagStore>
1135 void
1136 Cache<TagStore>::
1137 doTimingSupplyResponse(PacketPtr req_pkt, uint8_t *blk_data,
1138 bool already_copied, bool pending_inval)
1139 {
1140 // timing-mode snoop responses require a new packet, unless we
1141 // already made a copy...
1142 PacketPtr pkt = already_copied ? req_pkt : new Packet(req_pkt);
1143 assert(req_pkt->isInvalidate() || pkt->sharedAsserted());
1144 pkt->allocate();
1145 pkt->makeTimingResponse();
1146 if (pkt->isRead()) {
1147 pkt->setDataFromBlock(blk_data, blkSize);
1148 }
1149 if (pkt->cmd == MemCmd::ReadResp && pending_inval) {
1150 // Assume we defer a response to a read from a far-away cache
1151 // A, then later defer a ReadExcl from a cache B on the same
1152 // bus as us. We'll assert MemInhibit in both cases, but in
1153 // the latter case MemInhibit will keep the invalidation from
1154 // reaching cache A. This special response tells cache A that
1155 // it gets the block to satisfy its read, but must immediately
1156 // invalidate it.
1157 pkt->cmd = MemCmd::ReadRespWithInvalidate;
1158 }
1159 memSidePort->respond(pkt, curTick() + hitLatency);
1160 }
1161
1162 template<class TagStore>
1163 void
1164 Cache<TagStore>::handleSnoop(PacketPtr pkt, BlkType *blk,
1165 bool is_timing, bool is_deferred,
1166 bool pending_inval)
1167 {
1168 // deferred snoops can only happen in timing mode
1169 assert(!(is_deferred && !is_timing));
1170 // pending_inval only makes sense on deferred snoops
1171 assert(!(pending_inval && !is_deferred));
1172 assert(pkt->isRequest());
1173
1174 // the packet may get modified if we or a forwarded snooper
1175 // responds in atomic mode, so remember a few things about the
1176 // original packet up front
1177 bool invalidate = pkt->isInvalidate();
1178 bool M5_VAR_USED needs_exclusive = pkt->needsExclusive();
1179
1180 if (forwardSnoops) {
1181 // first propagate snoop upward to see if anyone above us wants to
1182 // handle it. save & restore packet src since it will get
1183 // rewritten to be relative to cpu-side bus (if any)
1184 bool alreadyResponded = pkt->memInhibitAsserted();
1185 if (is_timing) {
1186 Packet *snoopPkt = new Packet(pkt, true); // clear flags
1187 snoopPkt->setExpressSnoop();
1188 snoopPkt->senderState = new ForwardResponseRecord(pkt, this);
1189 cpuSidePort->sendTiming(snoopPkt);
1190 if (snoopPkt->memInhibitAsserted()) {
1191 // cache-to-cache response from some upper cache
1192 assert(!alreadyResponded);
1193 pkt->assertMemInhibit();
1194 } else {
1195 delete snoopPkt->senderState;
1196 }
1197 if (snoopPkt->sharedAsserted()) {
1198 pkt->assertShared();
1199 }
1200 delete snoopPkt;
1201 } else {
1202 int origSrc = pkt->getSrc();
1203 cpuSidePort->sendAtomic(pkt);
1204 if (!alreadyResponded && pkt->memInhibitAsserted()) {
1205 // cache-to-cache response from some upper cache:
1206 // forward response to original requester
1207 assert(pkt->isResponse());
1208 }
1209 pkt->setSrc(origSrc);
1210 }
1211 }
1212
1213 if (!blk || !blk->isValid()) {
1214 return;
1215 }
1216
1217 // we may end up modifying both the block state and the packet (if
1218 // we respond in atomic mode), so just figure out what to do now
1219 // and then do it later
1220 bool respond = blk->isDirty() && pkt->needsResponse();
1221 bool have_exclusive = blk->isWritable();
1222
1223 if (pkt->isRead() && !invalidate) {
1224 assert(!needs_exclusive);
1225 pkt->assertShared();
1226 int bits_to_clear = BlkWritable;
1227 const bool haveOwnershipState = true; // for now
1228 if (!haveOwnershipState) {
1229 // if we don't support pure ownership (dirty && !writable),
1230 // have to clear dirty bit here, assume memory snarfs data
1231 // on cache-to-cache xfer
1232 bits_to_clear |= BlkDirty;
1233 }
1234 blk->status &= ~bits_to_clear;
1235 }
1236
1237 DPRINTF(Cache, "snooped a %s request for addr %x, %snew state is %i\n",
1238 pkt->cmdString(), blockAlign(pkt->getAddr()),
1239 respond ? "responding, " : "", invalidate ? 0 : blk->status);
1240
1241 if (respond) {
1242 assert(!pkt->memInhibitAsserted());
1243 pkt->assertMemInhibit();
1244 if (have_exclusive) {
1245 pkt->setSupplyExclusive();
1246 }
1247 if (is_timing) {
1248 doTimingSupplyResponse(pkt, blk->data, is_deferred, pending_inval);
1249 } else {
1250 pkt->makeAtomicResponse();
1251 pkt->setDataFromBlock(blk->data, blkSize);
1252 }
1253 } else if (is_timing && is_deferred) {
1254 // if it's a deferred timing snoop then we've made a copy of
1255 // the packet, and so if we're not using that copy to respond
1256 // then we need to delete it here.
1257 delete pkt;
1258 }
1259
1260 // Do this last in case it deallocates block data or something
1261 // like that
1262 if (invalidate) {
1263 tags->invalidateBlk(blk);
1264 }
1265 }
1266
1267
1268 template<class TagStore>
1269 void
1270 Cache<TagStore>::snoopTiming(PacketPtr pkt)
1271 {
1272 // Note that some deferred snoops don't have requests, since the
1273 // original access may have already completed
1274 if ((pkt->req && pkt->req->isUncacheable()) ||
1275 pkt->cmd == MemCmd::Writeback) {
1276 //Can't get a hit on an uncacheable address
1277 //Revisit this for multi level coherence
1278 return;
1279 }
1280
1281 BlkType *blk = tags->findBlock(pkt->getAddr());
1282
1283 Addr blk_addr = blockAlign(pkt->getAddr());
1284 MSHR *mshr = mshrQueue.findMatch(blk_addr);
1285
1286 // Let the MSHR itself track the snoop and decide whether we want
1287 // to go ahead and do the regular cache snoop
1288 if (mshr && mshr->handleSnoop(pkt, order++)) {
1289 DPRINTF(Cache, "Deferring snoop on in-service MSHR to blk %x\n",
1290 blk_addr);
1291 if (mshr->getNumTargets() > numTarget)
1292 warn("allocating bonus target for snoop"); //handle later
1293 return;
1294 }
1295
1296 //We also need to check the writeback buffers and handle those
1297 std::vector<MSHR *> writebacks;
1298 if (writeBuffer.findMatches(blk_addr, writebacks)) {
1299 DPRINTF(Cache, "Snoop hit in writeback to addr: %x\n",
1300 pkt->getAddr());
1301
1302 //Look through writebacks for any non-uncachable writes, use that
1303 for (int i = 0; i < writebacks.size(); i++) {
1304 mshr = writebacks[i];
1305 assert(!mshr->isUncacheable());
1306 assert(mshr->getNumTargets() == 1);
1307 PacketPtr wb_pkt = mshr->getTarget()->pkt;
1308 assert(wb_pkt->cmd == MemCmd::Writeback);
1309
1310 assert(!pkt->memInhibitAsserted());
1311 pkt->assertMemInhibit();
1312 if (!pkt->needsExclusive()) {
1313 pkt->assertShared();
1314 // the writeback is no longer the exclusive copy in the system
1315 wb_pkt->clearSupplyExclusive();
1316 } else {
1317 // if we're not asserting the shared line, we need to
1318 // invalidate our copy. we'll do that below as long as
1319 // the packet's invalidate flag is set...
1320 assert(pkt->isInvalidate());
1321 }
1322 doTimingSupplyResponse(pkt, wb_pkt->getPtr<uint8_t>(),
1323 false, false);
1324
1325 if (pkt->isInvalidate()) {
1326 // Invalidation trumps our writeback... discard here
1327 markInService(mshr);
1328 delete wb_pkt;
1329 }
1330
1331 // If this was a shared writeback, there may still be
1332 // other shared copies above that require invalidation.
1333 // We could be more selective and return here if the
1334 // request is non-exclusive or if the writeback is
1335 // exclusive.
1336 break;
1337 }
1338 }
1339
1340 handleSnoop(pkt, blk, true, false, false);
1341 }
1342
1343
1344 template<class TagStore>
1345 Tick
1346 Cache<TagStore>::snoopAtomic(PacketPtr pkt)
1347 {
1348 if (pkt->req->isUncacheable() || pkt->cmd == MemCmd::Writeback) {
1349 // Can't get a hit on an uncacheable address
1350 // Revisit this for multi level coherence
1351 return hitLatency;
1352 }
1353
1354 BlkType *blk = tags->findBlock(pkt->getAddr());
1355 handleSnoop(pkt, blk, false, false, false);
1356 return hitLatency;
1357 }
1358
1359
1360 template<class TagStore>
1361 MSHR *
1362 Cache<TagStore>::getNextMSHR()
1363 {
1364 // Check both MSHR queue and write buffer for potential requests
1365 MSHR *miss_mshr = mshrQueue.getNextMSHR();
1366 MSHR *write_mshr = writeBuffer.getNextMSHR();
1367
1368 // Now figure out which one to send... some cases are easy
1369 if (miss_mshr && !write_mshr) {
1370 return miss_mshr;
1371 }
1372 if (write_mshr && !miss_mshr) {
1373 return write_mshr;
1374 }
1375
1376 if (miss_mshr && write_mshr) {
1377 // We have one of each... normally we favor the miss request
1378 // unless the write buffer is full
1379 if (writeBuffer.isFull() && writeBuffer.inServiceEntries == 0) {
1380 // Write buffer is full, so we'd like to issue a write;
1381 // need to search MSHR queue for conflicting earlier miss.
1382 MSHR *conflict_mshr =
1383 mshrQueue.findPending(write_mshr->addr, write_mshr->size);
1384
1385 if (conflict_mshr && conflict_mshr->order < write_mshr->order) {
1386 // Service misses in order until conflict is cleared.
1387 return conflict_mshr;
1388 }
1389
1390 // No conflicts; issue write
1391 return write_mshr;
1392 }
1393
1394 // Write buffer isn't full, but need to check it for
1395 // conflicting earlier writeback
1396 MSHR *conflict_mshr =
1397 writeBuffer.findPending(miss_mshr->addr, miss_mshr->size);
1398 if (conflict_mshr) {
1399 // not sure why we don't check order here... it was in the
1400 // original code but commented out.
1401
1402 // The only way this happens is if we are
1403 // doing a write and we didn't have permissions
1404 // then subsequently saw a writeback (owned got evicted)
1405 // We need to make sure to perform the writeback first
1406 // To preserve the dirty data, then we can issue the write
1407
1408 // should we return write_mshr here instead? I.e. do we
1409 // have to flush writes in order? I don't think so... not
1410 // for Alpha anyway. Maybe for x86?
1411 return conflict_mshr;
1412 }
1413
1414 // No conflicts; issue read
1415 return miss_mshr;
1416 }
1417
1418 // fall through... no pending requests. Try a prefetch.
1419 assert(!miss_mshr && !write_mshr);
1420 if (prefetcher && !mshrQueue.isFull()) {
1421 // If we have a miss queue slot, we can try a prefetch
1422 PacketPtr pkt = prefetcher->getPacket();
1423 if (pkt) {
1424 Addr pf_addr = blockAlign(pkt->getAddr());
1425 if (!tags->findBlock(pf_addr) && !mshrQueue.findMatch(pf_addr) &&
1426 !writeBuffer.findMatch(pf_addr)) {
1427 // Update statistic on number of prefetches issued
1428 // (hwpf_mshr_misses)
1429 mshr_misses[pkt->cmdToIndex()][0/*pkt->req->threadId()*/]++;
1430 // Don't request bus, since we already have it
1431 return allocateMissBuffer(pkt, curTick(), false);
1432 } else {
1433 // free the request and packet
1434 delete pkt->req;
1435 delete pkt;
1436 }
1437 }
1438 }
1439
1440 return NULL;
1441 }
1442
1443
1444 template<class TagStore>
1445 PacketPtr
1446 Cache<TagStore>::getTimingPacket()
1447 {
1448 MSHR *mshr = getNextMSHR();
1449
1450 if (mshr == NULL) {
1451 return NULL;
1452 }
1453
1454 // use request from 1st target
1455 PacketPtr tgt_pkt = mshr->getTarget()->pkt;
1456 PacketPtr pkt = NULL;
1457
1458 if (tgt_pkt->cmd == MemCmd::SCUpgradeFailReq ||
1459 tgt_pkt->cmd == MemCmd::StoreCondFailReq) {
1460 // SCUpgradeReq or StoreCondReq saw invalidation while queued
1461 // in MSHR, so now that we are getting around to processing
1462 // it, just treat it as if we got a failure response
1463 pkt = new Packet(tgt_pkt);
1464 pkt->cmd = MemCmd::UpgradeFailResp;
1465 pkt->senderState = mshr;
1466 pkt->firstWordTime = pkt->finishTime = curTick();
1467 handleResponse(pkt);
1468 return NULL;
1469 } else if (mshr->isForwardNoResponse()) {
1470 // no response expected, just forward packet as it is
1471 assert(tags->findBlock(mshr->addr) == NULL);
1472 pkt = tgt_pkt;
1473 } else {
1474 BlkType *blk = tags->findBlock(mshr->addr);
1475
1476 if (tgt_pkt->cmd == MemCmd::HardPFReq) {
1477 // It might be possible for a writeback to arrive between
1478 // the time the prefetch is placed in the MSHRs and when
1479 // it's selected to send... if so, this assert will catch
1480 // that, and then we'll have to figure out what to do.
1481 assert(blk == NULL);
1482
1483 // We need to check the caches above us to verify that they don't have
1484 // a copy of this block in the dirty state at the moment. Without this
1485 // check we could get a stale copy from memory that might get used
1486 // in place of the dirty one.
1487 PacketPtr snoop_pkt = new Packet(tgt_pkt, true);
1488 snoop_pkt->setExpressSnoop();
1489 snoop_pkt->senderState = mshr;
1490 cpuSidePort->sendTiming(snoop_pkt);
1491
1492 if (snoop_pkt->memInhibitAsserted()) {
1493 markInService(mshr, snoop_pkt);
1494 DPRINTF(Cache, "Upward snoop of prefetch for addr %#x hit\n",
1495 tgt_pkt->getAddr());
1496 delete snoop_pkt;
1497 return NULL;
1498 }
1499 delete snoop_pkt;
1500 }
1501
1502 pkt = getBusPacket(tgt_pkt, blk, mshr->needsExclusive());
1503
1504 mshr->isForward = (pkt == NULL);
1505
1506 if (mshr->isForward) {
1507 // not a cache block request, but a response is expected
1508 // make copy of current packet to forward, keep current
1509 // copy for response handling
1510 pkt = new Packet(tgt_pkt);
1511 pkt->allocate();
1512 if (pkt->isWrite()) {
1513 pkt->setData(tgt_pkt->getPtr<uint8_t>());
1514 }
1515 }
1516 }
1517
1518 assert(pkt != NULL);
1519 pkt->senderState = mshr;
1520 return pkt;
1521 }
1522
1523
1524 template<class TagStore>
1525 Tick
1526 Cache<TagStore>::nextMSHRReadyTime()
1527 {
1528 Tick nextReady = std::min(mshrQueue.nextMSHRReadyTime(),
1529 writeBuffer.nextMSHRReadyTime());
1530
1531 if (prefetcher) {
1532 nextReady = std::min(nextReady,
1533 prefetcher->nextPrefetchReadyTime());
1534 }
1535
1536 return nextReady;
1537 }
1538
1539
1540 ///////////////
1541 //
1542 // CpuSidePort
1543 //
1544 ///////////////
1545
1546 template<class TagStore>
1547 AddrRangeList
1548 Cache<TagStore>::CpuSidePort::
1549 getAddrRanges()
1550 {
1551 // CPU side port doesn't snoop; it's a target only. It can
1552 // potentially respond to any address.
1553 AddrRangeList ranges;
1554 ranges.push_back(myCache()->getAddrRange());
1555 return ranges;
1556 }
1557
1558
1559 template<class TagStore>
1560 bool
1561 Cache<TagStore>::CpuSidePort::recvTiming(PacketPtr pkt)
1562 {
1563 // illegal to block responses... can lead to deadlock
1564 if (pkt->isRequest() && !pkt->memInhibitAsserted() && blocked) {
1565 DPRINTF(Cache,"Scheduling a retry while blocked\n");
1566 mustSendRetry = true;
1567 return false;
1568 }
1569
1570 myCache()->timingAccess(pkt);
1571 return true;
1572 }
1573
1574
1575 template<class TagStore>
1576 Tick
1577 Cache<TagStore>::CpuSidePort::recvAtomic(PacketPtr pkt)
1578 {
1579 return myCache()->atomicAccess(pkt);
1580 }
1581
1582
1583 template<class TagStore>
1584 void
1585 Cache<TagStore>::CpuSidePort::recvFunctional(PacketPtr pkt)
1586 {
1587 myCache()->functionalAccess(pkt, true);
1588 }
1589
1590
1591 template<class TagStore>
1592 Cache<TagStore>::
1593 CpuSidePort::CpuSidePort(const std::string &_name, Cache<TagStore> *_cache,
1594 const std::string &_label)
1595 : BaseCache::CachePort(_name, _cache, _label)
1596 {
1597 }
1598
1599 ///////////////
1600 //
1601 // MemSidePort
1602 //
1603 ///////////////
1604
1605 template<class TagStore>
1606 bool
1607 Cache<TagStore>::MemSidePort::isSnooping()
1608 {
1609 // Memory-side port always snoops, but never passes requests
1610 // through to targets on the cpu side (so we don't add anything to
1611 // the address range list).
1612 return true;
1613 }
1614
1615
1616 template<class TagStore>
1617 bool
1618 Cache<TagStore>::MemSidePort::recvTiming(PacketPtr pkt)
1619 {
1620 // this needs to be fixed so that the cache updates the mshr and sends the
1621 // packet back out on the link, but it probably won't happen so until this
1622 // gets fixed, just panic when it does
1623 if (pkt->wasNacked())
1624 panic("Need to implement cache resending nacked packets!\n");
1625
1626 if (pkt->isRequest() && blocked) {
1627 DPRINTF(Cache,"Scheduling a retry while blocked\n");
1628 mustSendRetry = true;
1629 return false;
1630 }
1631
1632 if (pkt->isResponse()) {
1633 myCache()->handleResponse(pkt);
1634 } else {
1635 myCache()->snoopTiming(pkt);
1636 }
1637 return true;
1638 }
1639
1640
1641 template<class TagStore>
1642 Tick
1643 Cache<TagStore>::MemSidePort::recvAtomic(PacketPtr pkt)
1644 {
1645 // in atomic mode, responses go back to the sender via the
1646 // function return from sendAtomic(), not via a separate
1647 // sendAtomic() from the responder. Thus we should never see a
1648 // response packet in recvAtomic() (anywhere, not just here).
1649 assert(!pkt->isResponse());
1650 return myCache()->snoopAtomic(pkt);
1651 }
1652
1653
1654 template<class TagStore>
1655 void
1656 Cache<TagStore>::MemSidePort::recvFunctional(PacketPtr pkt)
1657 {
1658 myCache()->functionalAccess(pkt, false);
1659 }
1660
1661
1662
1663 template<class TagStore>
1664 void
1665 Cache<TagStore>::MemSidePort::sendPacket()
1666 {
1667 // if we have responses that are ready, they take precedence
1668 if (deferredPacketReady()) {
1669 bool success = sendTiming(transmitList.front().pkt);
1670
1671 if (success) {
1672 //send successful, remove packet
1673 transmitList.pop_front();
1674 }
1675
1676 waitingOnRetry = !success;
1677 } else {
1678 // check for non-response packets (requests & writebacks)
1679 PacketPtr pkt = myCache()->getTimingPacket();
1680 if (pkt == NULL) {
1681 // can happen if e.g. we attempt a writeback and fail, but
1682 // before the retry, the writeback is eliminated because
1683 // we snoop another cache's ReadEx.
1684 waitingOnRetry = false;
1685 } else {
1686 MSHR *mshr = dynamic_cast<MSHR*>(pkt->senderState);
1687
1688 bool success = sendTiming(pkt);
1689
1690 waitingOnRetry = !success;
1691 if (waitingOnRetry) {
1692 DPRINTF(CachePort, "now waiting on a retry\n");
1693 if (!mshr->isForwardNoResponse()) {
1694 delete pkt;
1695 }
1696 } else {
1697 myCache()->markInService(mshr, pkt);
1698 }
1699 }
1700 }
1701
1702
1703 // tried to send packet... if it was successful (no retry), see if
1704 // we need to rerequest bus or not
1705 if (!waitingOnRetry) {
1706 Tick nextReady = std::min(deferredPacketReadyTime(),
1707 myCache()->nextMSHRReadyTime());
1708 // @TODO: need to facotr in prefetch requests here somehow
1709 if (nextReady != MaxTick) {
1710 DPRINTF(CachePort, "more packets to send @ %d\n", nextReady);
1711 cache->schedule(sendEvent, std::max(nextReady, curTick() + 1));
1712 } else {
1713 // no more to send right now: if we're draining, we may be done
1714 if (drainEvent && !sendEvent->scheduled()) {
1715 drainEvent->process();
1716 drainEvent = NULL;
1717 }
1718 }
1719 }
1720 }
1721
1722 template<class TagStore>
1723 void
1724 Cache<TagStore>::MemSidePort::recvRetry()
1725 {
1726 assert(waitingOnRetry);
1727 sendPacket();
1728 }
1729
1730
1731 template<class TagStore>
1732 void
1733 Cache<TagStore>::MemSidePort::processSendEvent()
1734 {
1735 assert(!waitingOnRetry);
1736 sendPacket();
1737 }
1738
1739
1740 template<class TagStore>
1741 Cache<TagStore>::
1742 MemSidePort::MemSidePort(const std::string &_name, Cache<TagStore> *_cache,
1743 const std::string &_label)
1744 : BaseCache::CachePort(_name, _cache, _label)
1745 {
1746 // override default send event from SimpleTimingPort
1747 delete sendEvent;
1748 sendEvent = new SendEvent(this);
1749 }