|
|
@ -306,13 +306,18 @@ void ARM_Dynarmic_32::ClearExclusiveState() {
|
|
|
|
|
|
|
|
|
|
|
|
void ARM_Dynarmic_32::PageTableChanged(Common::PageTable& page_table,
|
|
|
|
void ARM_Dynarmic_32::PageTableChanged(Common::PageTable& page_table,
|
|
|
|
std::size_t new_address_space_size_in_bits) {
|
|
|
|
std::size_t new_address_space_size_in_bits) {
|
|
|
|
|
|
|
|
ThreadContext32 ctx{};
|
|
|
|
|
|
|
|
SaveContext(ctx);
|
|
|
|
|
|
|
|
|
|
|
|
auto key = std::make_pair(&page_table, new_address_space_size_in_bits);
|
|
|
|
auto key = std::make_pair(&page_table, new_address_space_size_in_bits);
|
|
|
|
auto iter = jit_cache.find(key);
|
|
|
|
auto iter = jit_cache.find(key);
|
|
|
|
if (iter != jit_cache.end()) {
|
|
|
|
if (iter != jit_cache.end()) {
|
|
|
|
jit = iter->second;
|
|
|
|
jit = iter->second;
|
|
|
|
|
|
|
|
LoadContext(ctx);
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jit = MakeJit(page_table, new_address_space_size_in_bits);
|
|
|
|
jit = MakeJit(page_table, new_address_space_size_in_bits);
|
|
|
|
|
|
|
|
LoadContext(ctx);
|
|
|
|
jit_cache.emplace(key, jit);
|
|
|
|
jit_cache.emplace(key, jit);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|