You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to block_size being an int in caching_device_t, we can't have TLBs with a page size above 2^32, even though such pages can exist in real systems. Changing the type of the member will solve this.
The text was updated successfully, but these errors were encountered:
Changed `block_size` to `long int` in order to allow larger pages in
TLB. Also added two minor fixes that came up while working on the
feature:
- Argument name mismatches in `cache_lru_t` and `cache_fifo_t`
between the header and body.
- Clearer error messages in `tlb_simulator_t`, so you can know
exactly what failed to build.
Fixes#7291
Due to
block_size
being an int incaching_device_t
, we can't have TLBs with a page size above 2^32, even though such pages can exist in real systems. Changing the type of the member will solve this.The text was updated successfully, but these errors were encountered: