123,124c123,124
< DPRINTF(BusAddrRanges, "Creating backing store for range %x:%x\n",
< range.start, range.end);
---
> DPRINTF(BusAddrRanges, "Creating backing store for range %s\n",
> range.to_string());
132,133c132,133
< fatal("Could not mmap %d bytes for range %x:%x!\n", range.size(),
< range.start, range.end);
---
> fatal("Could not mmap %d bytes for range %s!\n", range.size(),
> range.to_string());
160,161c160,161
< fatal("Some, but not all memories in range %x:%x are set zero\n",
< range.start, range.end);
---
> fatal("Some, but not all memories in range %s are set zero\n",
> range.to_string());
179c179
< if (addr != rangeCache) {
---
> if (!rangeCache.contains(addr)) {