mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-04-01 23:07:03 +00:00
exec: store RAMBlock pointer into memory region
Each RAM memory region has a unique corresponding RAMBlock. In the current realization, the memory region only stored the ram_addr which means the offset of RAM address space, We need to qurey the global ram.list to find the ram block by ram_addr if we want to get the ram block, which is very expensive. Now, we store the RAMBlock pointer into memory region structure. So, if we know the mr, we can easily get the RAMBlock. Backports commit 58eaa2174e99d9a05172d03fd2799ab8fd9e6f60 from qemu
This commit is contained in:
parent
764c2d09e5
commit
39e4d63e68
|
@ -1197,6 +1197,7 @@ ram_addr_t qemu_ram_alloc_internal(ram_addr_t size, ram_addr_t max_size,
|
|||
error_propagate(errp, local_err);
|
||||
return -1;
|
||||
}
|
||||
mr->ram_block = new_block;
|
||||
return addr;
|
||||
}
|
||||
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
#include "qemu/int128.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qom/object.h"
|
||||
#include "qemu/typedefs.h"
|
||||
|
||||
|
||||
#define MAX_PHYS_ADDR_SPACE_BITS 62
|
||||
#define MAX_PHYS_ADDR (((hwaddr)1 << MAX_PHYS_ADDR_SPACE_BITS) - 1)
|
||||
|
@ -158,6 +160,7 @@ struct MemoryRegion {
|
|||
bool global_locking;
|
||||
uint8_t dirty_log_mask;
|
||||
ram_addr_t ram_addr;
|
||||
RAMBlock *ram_block;
|
||||
const MemoryRegionIOMMUOps *iommu_ops;
|
||||
Object *owner;
|
||||
|
||||
|
|
|
@ -869,6 +869,7 @@ void memory_region_init(struct uc_struct *uc, MemoryRegion *mr,
|
|||
}
|
||||
mr->name = g_strdup(name);
|
||||
mr->owner = owner;
|
||||
mr->ram_block = NULL;
|
||||
|
||||
if (name) {
|
||||
char *escaped_name = memory_region_escape_name(name);
|
||||
|
|
Loading…
Reference in a new issue