109,110d108
< /** Mask out all bits that aren't part of the block offset. */
< unsigned blkMask;
325,334d322
< * Align an address to the block size.
< * @param addr the address to align.
< * @return The block address.
< */
< Addr blkAlign(Addr addr) const
< {
< return (addr & ~(Addr)blkMask);
< }
<
< /**