#include <cassert>
-#include "arch/generic/tlb.hh"
+#include "arch/generic/mmu.hh"
#include "debug/Vma.hh"
#include "mem/se_translating_port_proxy.hh"
#include "sim/process.hh"
* that can flush just part of the address space.
*/
for (auto *tc: _ownerProcess->system->threads) {
- tc->getDTBPtr()->flushAll();
- tc->getITBPtr()->flushAll();
+ tc->getMMUPtr()->flushAll();
}
do {
* that can flush just part of the address space.
*/
for (auto *tc: _ownerProcess->system->threads) {
- tc->getDTBPtr()->flushAll();
- tc->getITBPtr()->flushAll();
+ tc->getMMUPtr()->flushAll();
}
do {