memory: all users of cpu_physical_memory_get_dirty used only one flag
[qemu.git] / include / exec / memory-internal.h
blob53cfe83d2fd822952cfd23d9b1ce312b4917e74a
1 /*
2 * Declarations for obsolete exec.c functions
4 * Copyright 2011 Red Hat, Inc. and/or its affiliates
6 * Authors:
7 * Avi Kivity <avi@redhat.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or
10 * later. See the COPYING file in the top-level directory.
15 * This header is for use by exec.c and memory.c ONLY. Do not include it.
16 * The functions declared here will be removed soon.
19 #ifndef MEMORY_INTERNAL_H
20 #define MEMORY_INTERNAL_H
22 #ifndef CONFIG_USER_ONLY
23 #include "hw/xen/xen.h"
26 typedef struct AddressSpaceDispatch AddressSpaceDispatch;
28 void address_space_init_dispatch(AddressSpace *as);
29 void address_space_destroy_dispatch(AddressSpace *as);
31 extern const MemoryRegionOps unassigned_mem_ops;
33 bool memory_region_access_valid(MemoryRegion *mr, hwaddr addr,
34 unsigned size, bool is_write);
36 ram_addr_t qemu_ram_alloc_from_ptr(ram_addr_t size, void *host,
37 MemoryRegion *mr);
38 ram_addr_t qemu_ram_alloc(ram_addr_t size, MemoryRegion *mr);
39 void *qemu_get_ram_ptr(ram_addr_t addr);
40 void qemu_ram_free(ram_addr_t addr);
41 void qemu_ram_free_from_ptr(ram_addr_t addr);
43 #define VGA_DIRTY_FLAG 0x01
44 #define CODE_DIRTY_FLAG 0x02
45 #define MIGRATION_DIRTY_FLAG 0x08
47 static inline bool cpu_physical_memory_get_dirty_flag(ram_addr_t addr,
48 int dirty_flag)
50 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] & dirty_flag;
53 /* read dirty bit (return 0 or 1) */
54 static inline bool cpu_physical_memory_is_dirty(ram_addr_t addr)
56 bool vga = cpu_physical_memory_get_dirty_flag(addr, VGA_DIRTY_FLAG);
57 bool code = cpu_physical_memory_get_dirty_flag(addr, CODE_DIRTY_FLAG);
58 bool migration =
59 cpu_physical_memory_get_dirty_flag(addr, MIGRATION_DIRTY_FLAG);
60 return vga && code && migration;
63 static inline int cpu_physical_memory_get_dirty(ram_addr_t start,
64 ram_addr_t length,
65 int dirty_flag)
67 int ret = 0;
68 ram_addr_t addr, end;
70 end = TARGET_PAGE_ALIGN(start + length);
71 start &= TARGET_PAGE_MASK;
72 for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
73 ret |= cpu_physical_memory_get_dirty_flag(addr, dirty_flag);
75 return ret;
78 static inline void cpu_physical_memory_set_dirty_flags(ram_addr_t addr,
79 int dirty_flags)
81 ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] |= dirty_flags;
84 static inline void cpu_physical_memory_set_dirty_flag(ram_addr_t addr,
85 int dirty_flag)
87 ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] |= dirty_flag;
90 static inline void cpu_physical_memory_set_dirty(ram_addr_t addr)
92 cpu_physical_memory_set_dirty_flags(addr, 0xff);
95 static inline int cpu_physical_memory_clear_dirty_flags(ram_addr_t addr,
96 int dirty_flags)
98 int mask = ~dirty_flags;
100 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] &= mask;
103 static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start,
104 ram_addr_t length,
105 int dirty_flags)
107 ram_addr_t addr, end;
109 end = TARGET_PAGE_ALIGN(start + length);
110 start &= TARGET_PAGE_MASK;
111 for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
112 cpu_physical_memory_set_dirty_flags(addr, dirty_flags);
114 xen_modified_memory(addr, length);
117 static inline void cpu_physical_memory_mask_dirty_range(ram_addr_t start,
118 ram_addr_t length,
119 int dirty_flags)
121 ram_addr_t addr, end;
123 end = TARGET_PAGE_ALIGN(start + length);
124 start &= TARGET_PAGE_MASK;
125 for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
126 cpu_physical_memory_clear_dirty_flags(addr, dirty_flags);
130 void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
131 int dirty_flags);
133 #endif
135 #endif