]> git.proxmox.com Git - mirror_qemu.git/blame - exec-obsolete.h
memory: change dirty setting APIs to take a size
[mirror_qemu.git] / exec-obsolete.h
CommitLineData
67d95c15
AK
1/*
2 * Declarations for obsolete exec.c functions
3 *
4 * Copyright 2011 Red Hat, Inc. and/or its affiliates
5 *
6 * Authors:
7 * Avi Kivity <avi@redhat.com>
8 *
6b620ca3
PB
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.
67d95c15
AK
11 *
12 */
13
14/*
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.
17 */
18
19#ifndef EXEC_OBSOLETE_H
20#define EXEC_OBSOLETE_H
21
22#ifndef WANT_EXEC_OBSOLETE
23#error Do not include exec-obsolete.h
24#endif
25
26#ifndef CONFIG_USER_ONLY
27
c5705a77 28ram_addr_t qemu_ram_alloc_from_ptr(ram_addr_t size, void *host,
67d95c15 29 MemoryRegion *mr);
c5705a77 30ram_addr_t qemu_ram_alloc(ram_addr_t size, MemoryRegion *mr);
67d95c15
AK
31void qemu_ram_free(ram_addr_t addr);
32void qemu_ram_free_from_ptr(ram_addr_t addr);
33
a621f38d
AK
34struct MemoryRegion;
35int cpu_register_io_memory(MemoryRegion *mr);
67d95c15
AK
36void cpu_unregister_io_memory(int table_address);
37
dd81124b
AK
38struct MemoryRegionSection;
39void cpu_register_physical_memory_log(struct MemoryRegionSection *section,
40 bool readable, bool readonly);
67d95c15
AK
41
42void qemu_register_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size);
43void qemu_unregister_coalesced_mmio(target_phys_addr_t addr, ram_addr_t size);
44
8f77558f
AK
45int cpu_physical_memory_set_dirty_tracking(int enable);
46
7638e0d2
AK
47#define VGA_DIRTY_FLAG 0x01
48#define CODE_DIRTY_FLAG 0x02
49#define MIGRATION_DIRTY_FLAG 0x08
50
51/* read dirty bit (return 0 or 1) */
52static inline int cpu_physical_memory_is_dirty(ram_addr_t addr)
53{
54 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] == 0xff;
55}
56
57static inline int cpu_physical_memory_get_dirty_flags(ram_addr_t addr)
58{
59 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS];
60}
61
62static inline int cpu_physical_memory_get_dirty(ram_addr_t addr,
63 int dirty_flags)
64{
65 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] & dirty_flags;
66}
67
68static inline void cpu_physical_memory_set_dirty(ram_addr_t addr)
69{
70 ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] = 0xff;
71}
72
73static inline int cpu_physical_memory_set_dirty_flags(ram_addr_t addr,
74 int dirty_flags)
75{
76 return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] |= dirty_flags;
77}
78
fd4aa979
BS
79static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start,
80 ram_addr_t length,
81 int dirty_flags)
82{
83 uint8_t *p;
84 ram_addr_t addr, end;
85
86 end = start + length;
87 p = ram_list.phys_dirty + (start >> TARGET_PAGE_BITS);
88 for (addr = start; addr <= end; addr += TARGET_PAGE_SIZE) {
89 *p++ |= dirty_flags;
90 }
91}
92
7638e0d2 93static inline void cpu_physical_memory_mask_dirty_range(ram_addr_t start,
59abb061 94 ram_addr_t length,
7638e0d2
AK
95 int dirty_flags)
96{
59abb061 97 int mask;
7638e0d2 98 uint8_t *p;
59abb061 99 ram_addr_t addr, end;
7638e0d2 100
59abb061 101 end = start + length;
7638e0d2
AK
102 mask = ~dirty_flags;
103 p = ram_list.phys_dirty + (start >> TARGET_PAGE_BITS);
59abb061
BS
104 for (addr = start; addr <= end; addr += TARGET_PAGE_SIZE) {
105 *p++ &= mask;
7638e0d2
AK
106 }
107}
108
109void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
110 int dirty_flags);
67d95c15
AK
111#endif
112
113#endif