early-access version 3971

This commit is contained in:
pineappleEA
2023-11-11 17:36:08 +01:00
parent b1b49d9789
commit 44caed8bb2
18 changed files with 88 additions and 62 deletions

View File

@@ -68,10 +68,6 @@ public:
}
};
void InvalidateEntireInstructionCache(Core::System& system) {
system.InvalidateCpuInstructionCaches();
}
template <typename AddressType>
void InvalidateInstructionCache(Core::System& system, AddressType addr, u64 size) {
system.InvalidateCpuInstructionCacheRange(GetInteger(addr), size);
@@ -435,9 +431,6 @@ void KPageTableBase::Finalize() {
m_mapped_ipc_server_memory);
}
// Invalidate the entire instruction cache.
InvalidateEntireInstructionCache(m_system);
// Close the backing page table, as the destructor is not called for guest objects.
m_impl.reset();
}