At the moment, mipsevm's Page data structure uses a bitmap of 128 bits for the invalid address tracking. While this is efficient, it is somewhat restrictive because the page size can no longer be increased without breaking the datastructure. It would be nice to have an alternative solution that is quick to read/write to, does not require much memory, and supports adjustable page sizes.
Overview
At the moment,
mipsevm
'sPage
data structure uses a bitmap of 128 bits for the invalid address tracking. While this is efficient, it is somewhat restrictive because the page size can no longer be increased without breaking the datastructure. It would be nice to have an alternative solution that is quick to read/write to, does not require much memory, and supports adjustable page sizes.