39c39
< LRUPolicy(Index num_sets, Index assoc);
---
> LRUPolicy(int64 num_sets, int64 assoc);
42,43c42,43
< void touch(Index set, Index way, Tick time);
< Index getVictim(Index set) const;
---
> void touch(int64 set, int64 way, Tick time);
> int64 getVictim(int64 set) const;
47c47
< LRUPolicy::LRUPolicy(Index num_sets, Index assoc)
---
> LRUPolicy::LRUPolicy(int64 num_sets, int64 assoc)
58c58
< LRUPolicy::touch(Index set, Index index, Tick time)
---
> LRUPolicy::touch(int64 set, int64 index, Tick time)
66,67c66,67
< inline Index
< LRUPolicy::getVictim(Index set) const
---
> inline int64
> LRUPolicy::getVictim(int64 set) const
71c71
< Index smallest_index;
---
> int64 smallest_index;