diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-04-14 14:56:48 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-05-01 10:45:05 +0000 |
commit | cc5bea608df30263f8d20facfd55d8b6ce15053d (patch) | |
tree | 487fb5df88f3a2011b640ceb05b430a2dc52e3ec /cputlb.h | |
parent | 0cac1b66c88c4cd3ec1d358091486787837215a3 (diff) |
cputlb: prepare private memory API for public consumption
Fold is_ram_rom and is_ram_rom_romd() into callers.
Change is_romd() and section_addr() to take MemoryRegion
instead of MemoryRegionSection for consistency and
use memory_region_ prefix.
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'cputlb.h')
-rw-r--r-- | cputlb.h | 18 |
1 files changed, 3 insertions, 15 deletions
@@ -32,8 +32,8 @@ void tlb_set_dirty(CPUArchState *env, target_ulong vaddr); extern int tlb_flush_count; /* exec.c */ -target_phys_addr_t section_addr(MemoryRegionSection *section, - target_phys_addr_t addr); +target_phys_addr_t memory_region_section_addr(MemoryRegionSection *section, + target_phys_addr_t addr); void tb_flush_jmp_cache(CPUArchState *env, target_ulong addr); target_phys_addr_t memory_region_section_get_iotlb(CPUArchState *env, MemoryRegionSection *section, @@ -43,21 +43,9 @@ target_phys_addr_t memory_region_section_get_iotlb(CPUArchState *env, target_ulong *address); bool memory_region_is_unassigned(MemoryRegion *mr); -static inline bool is_ram_rom(MemoryRegionSection *s) +static inline bool memory_region_is_romd(MemoryRegion *mr) { - return memory_region_is_ram(s->mr); -} - -static inline bool is_romd(MemoryRegionSection *s) -{ - MemoryRegion *mr = s->mr; - return mr->rom_device && mr->readable; } -static inline bool is_ram_rom_romd(MemoryRegionSection *s) -{ - return is_ram_rom(s) || is_romd(s); -} - #endif #endif |