mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 15:23:53 -06:00
Split TLB addend and target_phys_addr_t
Historically the qemu tlb "addend" field was used for both RAM and IO accesses, so needed to be able to hold both host addresses (unsigned long) and guest physical addresses (target_phys_addr_t). However since the introduction of the iotlb field it has only been used for RAM accesses. This means we can change the type of addend to unsigned long, and remove associated hacks in the big-endian TCG backends. We can also remove the host dependence from target_phys_addr_t. Signed-off-by: Paul Brook <paul@codesourcery.com>
This commit is contained in:
parent
5bd2c0d7a6
commit
355b194369
9 changed files with 32 additions and 59 deletions
2
exec.c
2
exec.c
|
@ -2188,7 +2188,7 @@ void tlb_set_page(CPUState *env, target_ulong vaddr,
|
|||
unsigned int index;
|
||||
target_ulong address;
|
||||
target_ulong code_address;
|
||||
target_phys_addr_t addend;
|
||||
unsigned long addend;
|
||||
CPUTLBEntry *te;
|
||||
CPUWatchpoint *wp;
|
||||
target_phys_addr_t iotlb;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue