[gem5-users] Small entry table creation in gem5

2017-10-09 Thread Muhammad Avais
Hi, I want to create small table (256 entries) in gem5 that is accessed on each cache miss and follows LRU replacement policy. Can someone guide me how to do it? (Which classes i should use or inherit) Many Thanks Avais ___ gem5-users mailing list gem

Re: [gem5-users] Small entry table creation in gem5

2017-10-10 Thread 조해윤
Hello. I think it depends on the purpose of the table and modeling features. For example, let's look a cache tag modeling case. BaseTags class (/mem/cache/tags/base.hh), which is a kind of table to store tags, inherits the ClockedObject, because BaseTags needs to model the clock latency. However