38 #ifndef __CPU_UTILS_HH__ 39 #define __CPU_UTILS_HH__ 52 return addr & (block_size - 1);
65 return addr & ~(block_size - 1);
89 auto it_tmp = it_start;
90 for (;it_tmp != it_end && !(*it_tmp); ++it_tmp);
91 return (it_tmp != it_end);
94 #endif // __CPU_UTILS_HH__ Addr addrBlockOffset(Addr addr, Addr block_size)
Calculates the offset of a given address wrt aligned fixed-size blocks.
bool transferNeedsBurst(Addr addr, unsigned int size, unsigned int block_size)
Returns true if the given memory access (address, size) needs to be fragmented across aligned fixed-s...
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
bool isAnyActiveElement(const std::vector< bool >::const_iterator &it_start, const std::vector< bool >::const_iterator &it_end)
Test if there is any active element in an enablement range.
Addr addrBlockAlign(Addr addr, Addr block_size)
Returns the address of the closest aligned fixed-size block to the given address. ...