snoop_filter.cc revision 11603
110399Sstephan.diestelhorst@arm.com/*
211603Sandreas.hansson@arm.com * Copyright (c) 2013-2016 ARM Limited
310399Sstephan.diestelhorst@arm.com * All rights reserved
410399Sstephan.diestelhorst@arm.com *
510399Sstephan.diestelhorst@arm.com * The license below extends only to copyright in the software and shall
610399Sstephan.diestelhorst@arm.com * not be construed as granting a license to any other intellectual
710399Sstephan.diestelhorst@arm.com * property including but not limited to intellectual property relating
810399Sstephan.diestelhorst@arm.com * to a hardware implementation of the functionality of the software
910399Sstephan.diestelhorst@arm.com * licensed hereunder.  You may use the software subject to the license
1010399Sstephan.diestelhorst@arm.com * terms below provided that you ensure that this notice is replicated
1110399Sstephan.diestelhorst@arm.com * unmodified and in its entirety in all distributions of the software,
1210399Sstephan.diestelhorst@arm.com * modified or unmodified, in source code or in binary form.
1310399Sstephan.diestelhorst@arm.com *
1410399Sstephan.diestelhorst@arm.com * Redistribution and use in source and binary forms, with or without
1510399Sstephan.diestelhorst@arm.com * modification, are permitted provided that the following conditions are
1610399Sstephan.diestelhorst@arm.com * met: redistributions of source code must retain the above copyright
1710399Sstephan.diestelhorst@arm.com * notice, this list of conditions and the following disclaimer;
1810399Sstephan.diestelhorst@arm.com * redistributions in binary form must reproduce the above copyright
1910399Sstephan.diestelhorst@arm.com * notice, this list of conditions and the following disclaimer in the
2010399Sstephan.diestelhorst@arm.com * documentation and/or other materials provided with the distribution;
2110399Sstephan.diestelhorst@arm.com * neither the name of the copyright holders nor the names of its
2210399Sstephan.diestelhorst@arm.com * contributors may be used to endorse or promote products derived from
2310399Sstephan.diestelhorst@arm.com * this software without specific prior written permission.
2410399Sstephan.diestelhorst@arm.com *
2510399Sstephan.diestelhorst@arm.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2610399Sstephan.diestelhorst@arm.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2710399Sstephan.diestelhorst@arm.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2810399Sstephan.diestelhorst@arm.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2910399Sstephan.diestelhorst@arm.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
3010399Sstephan.diestelhorst@arm.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
3110399Sstephan.diestelhorst@arm.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3210399Sstephan.diestelhorst@arm.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3310399Sstephan.diestelhorst@arm.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3410399Sstephan.diestelhorst@arm.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3510399Sstephan.diestelhorst@arm.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3610399Sstephan.diestelhorst@arm.com *
3711135Sandreas.hansson@arm.com * Authors: Stephan Diestelhorst
3810399Sstephan.diestelhorst@arm.com */
3910399Sstephan.diestelhorst@arm.com
4010399Sstephan.diestelhorst@arm.com/**
4110399Sstephan.diestelhorst@arm.com * @file
4211135Sandreas.hansson@arm.com * Implementation of a snoop filter.
4310399Sstephan.diestelhorst@arm.com */
4410399Sstephan.diestelhorst@arm.com
4510399Sstephan.diestelhorst@arm.com#include "base/misc.hh"
4610399Sstephan.diestelhorst@arm.com#include "base/trace.hh"
4710399Sstephan.diestelhorst@arm.com#include "debug/SnoopFilter.hh"
4810399Sstephan.diestelhorst@arm.com#include "mem/snoop_filter.hh"
4910399Sstephan.diestelhorst@arm.com#include "sim/system.hh"
5010399Sstephan.diestelhorst@arm.com
5111129Sali.jafri@arm.comvoid
5211129Sali.jafri@arm.comSnoopFilter::eraseIfNullEntry(SnoopFilterCache::iterator& sf_it)
5311129Sali.jafri@arm.com{
5411129Sali.jafri@arm.com    SnoopItem& sf_item = sf_it->second;
5511129Sali.jafri@arm.com    if (!(sf_item.requested | sf_item.holder)) {
5611129Sali.jafri@arm.com        cachedLocations.erase(sf_it);
5711129Sali.jafri@arm.com        DPRINTF(SnoopFilter, "%s:   Removed SF entry.\n",
5811129Sali.jafri@arm.com                __func__);
5911129Sali.jafri@arm.com    }
6011129Sali.jafri@arm.com}
6111129Sali.jafri@arm.com
6210399Sstephan.diestelhorst@arm.comstd::pair<SnoopFilter::SnoopList, Cycles>
6310399Sstephan.diestelhorst@arm.comSnoopFilter::lookupRequest(const Packet* cpkt, const SlavePort& slave_port)
6410399Sstephan.diestelhorst@arm.com{
6510399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s: packet src %s addr 0x%x cmd %s\n",
6610399Sstephan.diestelhorst@arm.com            __func__, slave_port.name(), cpkt->getAddr(), cpkt->cmdString());
6710399Sstephan.diestelhorst@arm.com
6811603Sandreas.hansson@arm.com    // check if the packet came from a cache
6911603Sandreas.hansson@arm.com    bool allocate = !cpkt->req->isUncacheable() && slave_port.isSnooping() &&
7011603Sandreas.hansson@arm.com        cpkt->fromCache();
7111128Sali.jafri@arm.com    Addr line_addr = cpkt->getBlockAddr(linesize);
7210399Sstephan.diestelhorst@arm.com    SnoopMask req_port = portToMask(slave_port);
7311131Sandreas.hansson@arm.com    reqLookupResult = cachedLocations.find(line_addr);
7411131Sandreas.hansson@arm.com    bool is_hit = (reqLookupResult != cachedLocations.end());
7511128Sali.jafri@arm.com
7611128Sali.jafri@arm.com    // If the snoop filter has no entry, and we should not allocate,
7711128Sali.jafri@arm.com    // do not create a new snoop filter entry, simply return a NULL
7811128Sali.jafri@arm.com    // portlist.
7911128Sali.jafri@arm.com    if (!is_hit && !allocate)
8011128Sali.jafri@arm.com        return snoopDown(lookupLatency);
8111128Sali.jafri@arm.com
8211131Sandreas.hansson@arm.com    // If no hit in snoop filter create a new element and update iterator
8311131Sandreas.hansson@arm.com    if (!is_hit)
8411131Sandreas.hansson@arm.com        reqLookupResult = cachedLocations.emplace(line_addr, SnoopItem()).first;
8511131Sandreas.hansson@arm.com    SnoopItem& sf_item = reqLookupResult->second;
8610403Sstephan.diestelhorst@arm.com    SnoopMask interested = sf_item.holder | sf_item.requested;
8710403Sstephan.diestelhorst@arm.com
8811129Sali.jafri@arm.com    // Store unmodified value of snoop filter item in temp storage in
8911129Sali.jafri@arm.com    // case we need to revert because of a send retry in
9011129Sali.jafri@arm.com    // updateRequest.
9111129Sali.jafri@arm.com    retryItem = sf_item;
9211129Sali.jafri@arm.com
9310403Sstephan.diestelhorst@arm.com    totRequests++;
9410403Sstephan.diestelhorst@arm.com    if (is_hit) {
9510403Sstephan.diestelhorst@arm.com        // Single bit set -> value is a power of two
9610403Sstephan.diestelhorst@arm.com        if (isPow2(interested))
9710403Sstephan.diestelhorst@arm.com            hitSingleRequests++;
9810403Sstephan.diestelhorst@arm.com        else
9910403Sstephan.diestelhorst@arm.com            hitMultiRequests++;
10010403Sstephan.diestelhorst@arm.com    }
10110399Sstephan.diestelhorst@arm.com
10210399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s:   SF value %x.%x\n",
10310399Sstephan.diestelhorst@arm.com            __func__, sf_item.requested, sf_item.holder);
10410399Sstephan.diestelhorst@arm.com
10511129Sali.jafri@arm.com    // If we are not allocating, we are done
10611129Sali.jafri@arm.com    if (!allocate)
10711129Sali.jafri@arm.com        return snoopSelected(maskToPortList(interested & ~req_port),
10811129Sali.jafri@arm.com                             lookupLatency);
10911129Sali.jafri@arm.com
11011129Sali.jafri@arm.com    if (cpkt->needsResponse()) {
11111284Sandreas.hansson@arm.com        if (!cpkt->cacheResponding()) {
11210399Sstephan.diestelhorst@arm.com            // Max one request per address per port
11311129Sali.jafri@arm.com            panic_if(sf_item.requested & req_port, "double request :( " \
11410399Sstephan.diestelhorst@arm.com                     "SF value %x.%x\n", sf_item.requested, sf_item.holder);
11510399Sstephan.diestelhorst@arm.com
11610399Sstephan.diestelhorst@arm.com            // Mark in-flight requests to distinguish later on
11710399Sstephan.diestelhorst@arm.com            sf_item.requested |= req_port;
11811129Sali.jafri@arm.com            DPRINTF(SnoopFilter, "%s:   new SF value %x.%x\n",
11911129Sali.jafri@arm.com                    __func__,  sf_item.requested, sf_item.holder);
12010399Sstephan.diestelhorst@arm.com        } else {
12110399Sstephan.diestelhorst@arm.com            // NOTE: The memInhibit might have been asserted by a cache closer
12210399Sstephan.diestelhorst@arm.com            // to the CPU, already -> the response will not be seen by this
12310399Sstephan.diestelhorst@arm.com            // filter -> we do not need to keep the in-flight request, but make
12410399Sstephan.diestelhorst@arm.com            // sure that we know that that cluster has a copy
12510399Sstephan.diestelhorst@arm.com            panic_if(!(sf_item.holder & req_port), "Need to hold the value!");
12611129Sali.jafri@arm.com            DPRINTF(SnoopFilter,
12711129Sali.jafri@arm.com                    "%s: not marking request. SF value %x.%x\n",
12810399Sstephan.diestelhorst@arm.com                    __func__,  sf_item.requested, sf_item.holder);
12910399Sstephan.diestelhorst@arm.com        }
13011129Sali.jafri@arm.com    } else { // if (!cpkt->needsResponse())
13111199Sandreas.hansson@arm.com        assert(cpkt->isEviction());
13211129Sali.jafri@arm.com        // make sure that the sender actually had the line
13311129Sali.jafri@arm.com        panic_if(!(sf_item.holder & req_port), "requester %x is not a " \
13411129Sali.jafri@arm.com                 "holder :( SF value %x.%x\n", req_port,
13511129Sali.jafri@arm.com                 sf_item.requested, sf_item.holder);
13611129Sali.jafri@arm.com        // CleanEvicts and Writebacks -> the sender and all caches above
13711129Sali.jafri@arm.com        // it may not have the line anymore.
13811129Sali.jafri@arm.com        if (!cpkt->isBlockCached()) {
13911129Sali.jafri@arm.com            sf_item.holder &= ~req_port;
14011129Sali.jafri@arm.com            DPRINTF(SnoopFilter, "%s:   new SF value %x.%x\n",
14111129Sali.jafri@arm.com                    __func__,  sf_item.requested, sf_item.holder);
14211129Sali.jafri@arm.com        }
14310399Sstephan.diestelhorst@arm.com    }
14411129Sali.jafri@arm.com
14510403Sstephan.diestelhorst@arm.com    return snoopSelected(maskToPortList(interested & ~req_port), lookupLatency);
14610399Sstephan.diestelhorst@arm.com}
14710399Sstephan.diestelhorst@arm.com
14810399Sstephan.diestelhorst@arm.comvoid
14911544Snikos.nikoleris@arm.comSnoopFilter::finishRequest(bool will_retry, const Addr addr)
15010399Sstephan.diestelhorst@arm.com{
15111131Sandreas.hansson@arm.com    if (reqLookupResult != cachedLocations.end()) {
15211131Sandreas.hansson@arm.com        // since we rely on the caller, do a basic check to ensure
15311131Sandreas.hansson@arm.com        // that finishRequest is being called following lookupRequest
15411544Snikos.nikoleris@arm.com        assert(reqLookupResult->first == (addr & ~(Addr(linesize - 1))));
15511131Sandreas.hansson@arm.com        if (will_retry) {
15611131Sandreas.hansson@arm.com            // Undo any changes made in lookupRequest to the snoop filter
15711131Sandreas.hansson@arm.com            // entry if the request will come again. retryItem holds
15811131Sandreas.hansson@arm.com            // the previous value of the snoopfilter entry.
15911131Sandreas.hansson@arm.com            reqLookupResult->second = retryItem;
16010399Sstephan.diestelhorst@arm.com
16111131Sandreas.hansson@arm.com            DPRINTF(SnoopFilter, "%s:   restored SF value %x.%x\n",
16211131Sandreas.hansson@arm.com                    __func__,  retryItem.requested, retryItem.holder);
16311131Sandreas.hansson@arm.com        }
16410821Sandreas.hansson@arm.com
16511131Sandreas.hansson@arm.com        eraseIfNullEntry(reqLookupResult);
16610399Sstephan.diestelhorst@arm.com    }
16710399Sstephan.diestelhorst@arm.com}
16810399Sstephan.diestelhorst@arm.com
16910399Sstephan.diestelhorst@arm.comstd::pair<SnoopFilter::SnoopList, Cycles>
17010399Sstephan.diestelhorst@arm.comSnoopFilter::lookupSnoop(const Packet* cpkt)
17110399Sstephan.diestelhorst@arm.com{
17210399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s: packet addr 0x%x cmd %s\n",
17310399Sstephan.diestelhorst@arm.com            __func__, cpkt->getAddr(), cpkt->cmdString());
17410399Sstephan.diestelhorst@arm.com
17510399Sstephan.diestelhorst@arm.com    assert(cpkt->isRequest());
17610399Sstephan.diestelhorst@arm.com
17711128Sali.jafri@arm.com    Addr line_addr = cpkt->getBlockAddr(linesize);
17810403Sstephan.diestelhorst@arm.com    auto sf_it = cachedLocations.find(line_addr);
17910403Sstephan.diestelhorst@arm.com    bool is_hit = (sf_it != cachedLocations.end());
18011129Sali.jafri@arm.com
18111132Sali.jafri@arm.com    panic_if(!is_hit && (cachedLocations.size() >= maxEntryCount),
18211132Sali.jafri@arm.com             "snoop filter exceeded capacity of %d cache blocks\n",
18311132Sali.jafri@arm.com             maxEntryCount);
18411132Sali.jafri@arm.com
18511134Sandreas.hansson@arm.com    // If the snoop filter has no entry, simply return a NULL
18611134Sandreas.hansson@arm.com    // portlist, there is no point creating an entry only to remove it
18711134Sandreas.hansson@arm.com    // later
18811134Sandreas.hansson@arm.com    if (!is_hit)
18911129Sali.jafri@arm.com        return snoopDown(lookupLatency);
19011129Sali.jafri@arm.com
19111129Sali.jafri@arm.com    SnoopItem& sf_item = sf_it->second;
19210399Sstephan.diestelhorst@arm.com
19310399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s:   old SF value %x.%x\n",
19410399Sstephan.diestelhorst@arm.com            __func__, sf_item.requested, sf_item.holder);
19510399Sstephan.diestelhorst@arm.com
19610399Sstephan.diestelhorst@arm.com    SnoopMask interested = (sf_item.holder | sf_item.requested);
19710403Sstephan.diestelhorst@arm.com
19810403Sstephan.diestelhorst@arm.com    totSnoops++;
19911134Sandreas.hansson@arm.com    // Single bit set -> value is a power of two
20011134Sandreas.hansson@arm.com    if (isPow2(interested))
20111134Sandreas.hansson@arm.com        hitSingleSnoops++;
20211134Sandreas.hansson@arm.com    else
20311134Sandreas.hansson@arm.com        hitMultiSnoops++;
20411134Sandreas.hansson@arm.com
20510883Sali.jafri@arm.com    // ReadEx and Writes require both invalidation and exlusivity, while reads
20610883Sali.jafri@arm.com    // require neither. Writebacks on the other hand require exclusivity but
20710883Sali.jafri@arm.com    // not the invalidation. Previously Writebacks did not generate upward
20810883Sali.jafri@arm.com    // snoops so this was never an aissue. Now that Writebacks generate snoops
20910883Sali.jafri@arm.com    // we need to special case for Writebacks.
21011199Sandreas.hansson@arm.com    assert(cpkt->isWriteback() || cpkt->req->isUncacheable() ||
21111284Sandreas.hansson@arm.com           (cpkt->isInvalidate() == cpkt->needsWritable()));
21210399Sstephan.diestelhorst@arm.com    if (cpkt->isInvalidate() && !sf_item.requested) {
21310399Sstephan.diestelhorst@arm.com        // Early clear of the holder, if no other request is currently going on
21410399Sstephan.diestelhorst@arm.com        // @todo: This should possibly be updated even though we do not filter
21510399Sstephan.diestelhorst@arm.com        // upward snoops
21610399Sstephan.diestelhorst@arm.com        sf_item.holder = 0;
21710399Sstephan.diestelhorst@arm.com    }
21810399Sstephan.diestelhorst@arm.com
21911129Sali.jafri@arm.com    eraseIfNullEntry(sf_it);
22010399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s:   new SF value %x.%x interest: %x \n",
22110399Sstephan.diestelhorst@arm.com            __func__, sf_item.requested, sf_item.holder, interested);
22210399Sstephan.diestelhorst@arm.com
22310399Sstephan.diestelhorst@arm.com    return snoopSelected(maskToPortList(interested), lookupLatency);
22410399Sstephan.diestelhorst@arm.com}
22510399Sstephan.diestelhorst@arm.com
22610399Sstephan.diestelhorst@arm.comvoid
22710399Sstephan.diestelhorst@arm.comSnoopFilter::updateSnoopResponse(const Packet* cpkt,
22810399Sstephan.diestelhorst@arm.com                                 const SlavePort& rsp_port,
22910399Sstephan.diestelhorst@arm.com                                 const SlavePort& req_port)
23010399Sstephan.diestelhorst@arm.com{
23110399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s: packet rsp %s req %s addr 0x%x cmd %s\n",
23210399Sstephan.diestelhorst@arm.com            __func__, rsp_port.name(), req_port.name(), cpkt->getAddr(),
23310399Sstephan.diestelhorst@arm.com            cpkt->cmdString());
23410399Sstephan.diestelhorst@arm.com
23510821Sandreas.hansson@arm.com    assert(cpkt->isResponse());
23611284Sandreas.hansson@arm.com    assert(cpkt->cacheResponding());
23710821Sandreas.hansson@arm.com
23811603Sandreas.hansson@arm.com    // if this snoop response is due to an uncacheable request, or is
23911603Sandreas.hansson@arm.com    // being turned into a normal response, there is nothing more to
24011603Sandreas.hansson@arm.com    // do
24111603Sandreas.hansson@arm.com    if (cpkt->req->isUncacheable() || !req_port.isSnooping()) {
24210821Sandreas.hansson@arm.com        return;
24311603Sandreas.hansson@arm.com    }
24410821Sandreas.hansson@arm.com
24511128Sali.jafri@arm.com    Addr line_addr = cpkt->getBlockAddr(linesize);
24610399Sstephan.diestelhorst@arm.com    SnoopMask rsp_mask = portToMask(rsp_port);
24710399Sstephan.diestelhorst@arm.com    SnoopMask req_mask = portToMask(req_port);
24810399Sstephan.diestelhorst@arm.com    SnoopItem& sf_item = cachedLocations[line_addr];
24910399Sstephan.diestelhorst@arm.com
25010399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s:   old SF value %x.%x\n",
25110399Sstephan.diestelhorst@arm.com            __func__,  sf_item.requested, sf_item.holder);
25210399Sstephan.diestelhorst@arm.com
25310399Sstephan.diestelhorst@arm.com    // The source should have the line
25410399Sstephan.diestelhorst@arm.com    panic_if(!(sf_item.holder & rsp_mask), "SF value %x.%x does not have "\
25510399Sstephan.diestelhorst@arm.com             "the line\n", sf_item.requested, sf_item.holder);
25610399Sstephan.diestelhorst@arm.com
25710399Sstephan.diestelhorst@arm.com    // The destination should have had a request in
25810399Sstephan.diestelhorst@arm.com    panic_if(!(sf_item.requested & req_mask), "SF value %x.%x missing "\
25910399Sstephan.diestelhorst@arm.com             "the original request\n",  sf_item.requested, sf_item.holder);
26010399Sstephan.diestelhorst@arm.com
26111287Sandreas.hansson@arm.com    // If the snoop response has no sharers the line is passed in
26211287Sandreas.hansson@arm.com    // Modified state, and we know that there are no other copies, or
26311287Sandreas.hansson@arm.com    // they will all be invalidated imminently
26411287Sandreas.hansson@arm.com    if (!cpkt->hasSharers()) {
26511287Sandreas.hansson@arm.com        DPRINTF(SnoopFilter,
26611287Sandreas.hansson@arm.com                "%s: dropping %x because non-shared snoop "
26711287Sandreas.hansson@arm.com                "response SF val: %x.%x\n", __func__,  rsp_mask,
26810399Sstephan.diestelhorst@arm.com                sf_item.requested, sf_item.holder);
26910399Sstephan.diestelhorst@arm.com        sf_item.holder = 0;
27010399Sstephan.diestelhorst@arm.com    }
27111199Sandreas.hansson@arm.com    assert(!cpkt->isWriteback());
27211603Sandreas.hansson@arm.com    // @todo Deal with invalidating responses
27310399Sstephan.diestelhorst@arm.com    sf_item.holder |=  req_mask;
27410399Sstephan.diestelhorst@arm.com    sf_item.requested &= ~req_mask;
27511129Sali.jafri@arm.com    assert(sf_item.requested | sf_item.holder);
27610399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s:   new SF value %x.%x\n",
27710399Sstephan.diestelhorst@arm.com            __func__, sf_item.requested, sf_item.holder);
27810399Sstephan.diestelhorst@arm.com}
27910399Sstephan.diestelhorst@arm.com
28010399Sstephan.diestelhorst@arm.comvoid
28110399Sstephan.diestelhorst@arm.comSnoopFilter::updateSnoopForward(const Packet* cpkt,
28210399Sstephan.diestelhorst@arm.com        const SlavePort& rsp_port, const MasterPort& req_port)
28310399Sstephan.diestelhorst@arm.com{
28410399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s: packet rsp %s req %s addr 0x%x cmd %s\n",
28510399Sstephan.diestelhorst@arm.com            __func__, rsp_port.name(), req_port.name(), cpkt->getAddr(),
28610399Sstephan.diestelhorst@arm.com            cpkt->cmdString());
28710399Sstephan.diestelhorst@arm.com
28811134Sandreas.hansson@arm.com    assert(cpkt->isResponse());
28911284Sandreas.hansson@arm.com    assert(cpkt->cacheResponding());
29011134Sandreas.hansson@arm.com
29111128Sali.jafri@arm.com    Addr line_addr = cpkt->getBlockAddr(linesize);
29211129Sali.jafri@arm.com    auto sf_it = cachedLocations.find(line_addr);
29311134Sandreas.hansson@arm.com    bool is_hit = sf_it != cachedLocations.end();
29411134Sandreas.hansson@arm.com
29511134Sandreas.hansson@arm.com    // Nothing to do if it is not a hit
29611134Sandreas.hansson@arm.com    if (!is_hit)
29711134Sandreas.hansson@arm.com        return;
29811134Sandreas.hansson@arm.com
29911129Sali.jafri@arm.com    SnoopItem& sf_item = sf_it->second;
30010399Sstephan.diestelhorst@arm.com
30110399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s:   old SF value %x.%x\n",
30210399Sstephan.diestelhorst@arm.com            __func__,  sf_item.requested, sf_item.holder);
30310399Sstephan.diestelhorst@arm.com
30411287Sandreas.hansson@arm.com    // If the snoop response has no sharers the line is passed in
30511287Sandreas.hansson@arm.com    // Modified state, and we know that there are no other copies, or
30611287Sandreas.hansson@arm.com    // they will all be invalidated imminently
30711287Sandreas.hansson@arm.com    if (!cpkt->hasSharers()) {
30810399Sstephan.diestelhorst@arm.com        sf_item.holder = 0;
30910399Sstephan.diestelhorst@arm.com    }
31010399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s:   new SF value %x.%x\n",
31110399Sstephan.diestelhorst@arm.com            __func__, sf_item.requested, sf_item.holder);
31211129Sali.jafri@arm.com    eraseIfNullEntry(sf_it);
31311134Sandreas.hansson@arm.com
31410399Sstephan.diestelhorst@arm.com}
31510399Sstephan.diestelhorst@arm.com
31610399Sstephan.diestelhorst@arm.comvoid
31710399Sstephan.diestelhorst@arm.comSnoopFilter::updateResponse(const Packet* cpkt, const SlavePort& slave_port)
31810399Sstephan.diestelhorst@arm.com{
31910399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s: packet src %s addr 0x%x cmd %s\n",
32010399Sstephan.diestelhorst@arm.com            __func__, slave_port.name(), cpkt->getAddr(), cpkt->cmdString());
32110399Sstephan.diestelhorst@arm.com
32210821Sandreas.hansson@arm.com    assert(cpkt->isResponse());
32310821Sandreas.hansson@arm.com
32411603Sandreas.hansson@arm.com    // we only allocate if the packet actually came from a cache, but
32511603Sandreas.hansson@arm.com    // start by checking if the port is snooping
32611603Sandreas.hansson@arm.com    if (cpkt->req->isUncacheable() || !slave_port.isSnooping())
32710821Sandreas.hansson@arm.com        return;
32810821Sandreas.hansson@arm.com
32911603Sandreas.hansson@arm.com    // next check if we actually allocated an entry
33011128Sali.jafri@arm.com    Addr line_addr = cpkt->getBlockAddr(linesize);
33111603Sandreas.hansson@arm.com    auto sf_it = cachedLocations.find(line_addr);
33211603Sandreas.hansson@arm.com    if (sf_it == cachedLocations.end())
33311603Sandreas.hansson@arm.com        return;
33411603Sandreas.hansson@arm.com
33510399Sstephan.diestelhorst@arm.com    SnoopMask slave_mask = portToMask(slave_port);
33611603Sandreas.hansson@arm.com    SnoopItem& sf_item = sf_it->second;
33710399Sstephan.diestelhorst@arm.com
33810399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s:   old SF value %x.%x\n",
33910399Sstephan.diestelhorst@arm.com            __func__,  sf_item.requested, sf_item.holder);
34010399Sstephan.diestelhorst@arm.com
34110399Sstephan.diestelhorst@arm.com    // Make sure we have seen the actual request, too
34210399Sstephan.diestelhorst@arm.com    panic_if(!(sf_item.requested & slave_mask), "SF value %x.%x missing "\
34310399Sstephan.diestelhorst@arm.com             "request bit\n", sf_item.requested, sf_item.holder);
34410399Sstephan.diestelhorst@arm.com
34511287Sandreas.hansson@arm.com    // Update the residency of the cache line. If the response has no
34611287Sandreas.hansson@arm.com    // sharers we know that the line has been invalidated in all
34711287Sandreas.hansson@arm.com    // branches that are not where we are responding to.
34811287Sandreas.hansson@arm.com     if (!cpkt->hasSharers())
34910399Sstephan.diestelhorst@arm.com        sf_item.holder = 0;
35010399Sstephan.diestelhorst@arm.com    sf_item.holder |=  slave_mask;
35110399Sstephan.diestelhorst@arm.com    sf_item.requested &= ~slave_mask;
35211129Sali.jafri@arm.com    assert(sf_item.holder | sf_item.requested);
35310399Sstephan.diestelhorst@arm.com    DPRINTF(SnoopFilter, "%s:   new SF value %x.%x\n",
35410399Sstephan.diestelhorst@arm.com            __func__, sf_item.requested, sf_item.holder);
35510399Sstephan.diestelhorst@arm.com}
35610399Sstephan.diestelhorst@arm.com
35710403Sstephan.diestelhorst@arm.comvoid
35810403Sstephan.diestelhorst@arm.comSnoopFilter::regStats()
35910403Sstephan.diestelhorst@arm.com{
36011523Sdavid.guillen@arm.com    SimObject::regStats();
36111523Sdavid.guillen@arm.com
36210403Sstephan.diestelhorst@arm.com    totRequests
36310403Sstephan.diestelhorst@arm.com        .name(name() + ".tot_requests")
36410403Sstephan.diestelhorst@arm.com        .desc("Total number of requests made to the snoop filter.");
36510403Sstephan.diestelhorst@arm.com
36610403Sstephan.diestelhorst@arm.com    hitSingleRequests
36710403Sstephan.diestelhorst@arm.com        .name(name() + ".hit_single_requests")
36810403Sstephan.diestelhorst@arm.com        .desc("Number of requests hitting in the snoop filter with a single "\
36910403Sstephan.diestelhorst@arm.com              "holder of the requested data.");
37010403Sstephan.diestelhorst@arm.com
37110403Sstephan.diestelhorst@arm.com    hitMultiRequests
37210403Sstephan.diestelhorst@arm.com        .name(name() + ".hit_multi_requests")
37310403Sstephan.diestelhorst@arm.com        .desc("Number of requests hitting in the snoop filter with multiple "\
37410403Sstephan.diestelhorst@arm.com              "(>1) holders of the requested data.");
37510403Sstephan.diestelhorst@arm.com
37610403Sstephan.diestelhorst@arm.com    totSnoops
37710403Sstephan.diestelhorst@arm.com        .name(name() + ".tot_snoops")
37810403Sstephan.diestelhorst@arm.com        .desc("Total number of snoops made to the snoop filter.");
37910403Sstephan.diestelhorst@arm.com
38010403Sstephan.diestelhorst@arm.com    hitSingleSnoops
38110403Sstephan.diestelhorst@arm.com        .name(name() + ".hit_single_snoops")
38210403Sstephan.diestelhorst@arm.com        .desc("Number of snoops hitting in the snoop filter with a single "\
38310403Sstephan.diestelhorst@arm.com              "holder of the requested data.");
38410403Sstephan.diestelhorst@arm.com
38510403Sstephan.diestelhorst@arm.com    hitMultiSnoops
38610403Sstephan.diestelhorst@arm.com        .name(name() + ".hit_multi_snoops")
38710403Sstephan.diestelhorst@arm.com        .desc("Number of snoops hitting in the snoop filter with multiple "\
38810403Sstephan.diestelhorst@arm.com              "(>1) holders of the requested data.");
38910403Sstephan.diestelhorst@arm.com}
39010403Sstephan.diestelhorst@arm.com
39110399Sstephan.diestelhorst@arm.comSnoopFilter *
39210399Sstephan.diestelhorst@arm.comSnoopFilterParams::create()
39310399Sstephan.diestelhorst@arm.com{
39410399Sstephan.diestelhorst@arm.com    return new SnoopFilter(this);
39510399Sstephan.diestelhorst@arm.com}
396