From ca163a80e27e66027a1e28b7b28ff76b8bd14b01 Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Fri, 25 Sep 2015 07:26:57 -0400 Subject: mem: Only track snooping ports in the snoop filter This patch changes the tracking of ports in the snoop filter to use local dense port IDs so that we can have 64 snooping ports (rather than crossbar slave ports). This is achieved by adding a simple remapping vector that translates the actal port IDs into the local slave IDs used in the SnoopMask. Ultimately this patch allows us to scale to much larger systems without introducing a hierarchy of crossbars. --- src/mem/snoop_filter.hh | 58 ++++++++++++++++++++++++------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) (limited to 'src/mem/snoop_filter.hh') diff --git a/src/mem/snoop_filter.hh b/src/mem/snoop_filter.hh index be3018e6e..557ee9a80 100755 --- a/src/mem/snoop_filter.hh +++ b/src/mem/snoop_filter.hh @@ -96,13 +96,27 @@ class SnoopFilter : public SimObject { } /** - * Init a new snoop filter and tell it about all the slave ports of the - * enclosing bus. + * Init a new snoop filter and tell it about all the + * slave ports of the enclosing bus. * - * @param bus_slave_ports Vector of slave ports that the bus is attached to. + * @param slave_ports Slave ports that the bus is attached to. */ - void setSlavePorts(const SnoopList& bus_slave_ports) { - slavePorts = bus_slave_ports; + void setSlavePorts(const SnoopList& slave_ports) { + localSlavePortIds.resize(slave_ports.size(), InvalidPortID); + + PortID id = 0; + for (const auto& p : slave_ports) { + // no need to track this port if it is not snooping + if (p->isSnooping()) { + slavePorts.push_back(p); + localSlavePortIds[p->getId()] = id++; + } + } + + // make sure we can deal with this many ports + fatal_if(id > 8 * sizeof(SnoopMask), + "Snoop filter only supports %d snooping ports, got %d\n", + 8 * sizeof(SnoopMask), id); } /** @@ -217,12 +231,6 @@ class SnoopFilter : public SimObject { * @return One-hot bitmask corresponding to the port. */ SnoopMask portToMask(const SlavePort& port) const; - /** - * Convert multiple ports to a corresponding bitmask - * @param ports SnoopList that should be converted. - * @return Bitmask corresponding to the ports in the list. - */ - SnoopMask portListToMask(const SnoopList& ports) const; /** * Converts a bitmask of ports into the corresponing list of ports * @param ports SnoopMask of the requested ports @@ -249,8 +257,10 @@ class SnoopFilter : public SimObject { * (because of crossbar retry) */ SnoopItem retryItem; - /** List of all attached slave ports. */ + /** List of all attached snooping slave ports. */ SnoopList slavePorts; + /** Track the mapping from port ids to the local mask ids. */ + std::vector localSlavePortIds; /** Cache line size. */ const unsigned linesize; /** Latency for doing a lookup in the filter */ @@ -271,29 +281,19 @@ class SnoopFilter : public SimObject { inline SnoopFilter::SnoopMask SnoopFilter::portToMask(const SlavePort& port) const { - unsigned id = (unsigned)port.getId(); - assert(id != (unsigned)InvalidPortID); - assert((int)id < 8 * sizeof(SnoopMask)); - - return ((SnoopMask)1) << id; -} - -inline SnoopFilter::SnoopMask -SnoopFilter::portListToMask(const SnoopList& ports) const -{ - SnoopMask m = 0; - for (auto port = ports.begin(); port != ports.end(); ++port) - m |= portToMask(**port); - return m; + assert(port.getId() != InvalidPortID); + // if this is not a snooping port, return a zero mask + return !port.isSnooping() ? 0 : + ((SnoopMask)1) << localSlavePortIds[port.getId()]; } inline SnoopFilter::SnoopList SnoopFilter::maskToPortList(SnoopMask port_mask) const { SnoopList res; - for (auto port = slavePorts.begin(); port != slavePorts.end(); ++port) - if (port_mask & portToMask(**port)) - res.push_back(*port); + for (const auto& p : slavePorts) + if (port_mask & portToMask(*p)) + res.push_back(p); return res; } #endif // __MEM_SNOOP_FILTER_HH__ -- cgit v1.2.3