324c324
< BaseXBar::findPort(Addr addr)
---
> BaseXBar::findPort(AddrRange addr_range)
331c331
< auto i = portMap.contains(addr);
---
> auto i = portMap.contains(addr_range);
338,340c338,340
< if (defaultRange.contains(addr)) {
< DPRINTF(AddrRanges, " found addr %#llx on default\n",
< addr);
---
> if (addr_range.isSubset(defaultRange)) {
> DPRINTF(AddrRanges, " found addr %s on default\n",
> addr_range.to_string());
344,345c344,345
< DPRINTF(AddrRanges, "Unable to find destination for addr %#llx, "
< "will use default port\n", addr);
---
> DPRINTF(AddrRanges, "Unable to find destination for %s, "
> "will use default port\n", addr_range.to_string());
351c351
< fatal("Unable to find destination for addr %#llx on %s\n", addr,
---
> fatal("Unable to find destination for %s on %s\n", addr_range.to_string(),