block size of store object #818
-
hi, I'm studying about gem5. But in my case, I want make a new store object which stores data from main memory as its packet size, i mean that variable size. I would like to know if there is a specific part I should look at to solve this problem. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
My bet is that you're getting a functionally incorrect value out of the cache. I would use the |
Beta Was this translation helpful? Give feedback.
My bet is that you're getting a functionally incorrect value out of the cache. I would use the
Exec
debug flag to get a trace of all instructions and compare the trace from the old cache and your new design. I expect the trace will differ at some point, and that will help you pinpoint the bug.