2011-12-15 14:25:22 +01:00
|
|
|
/*
|
|
|
|
* Declarations for obsolete exec.c functions
|
|
|
|
*
|
|
|
|
* Copyright 2011 Red Hat, Inc. and/or its affiliates
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Avi Kivity <avi@redhat.com>
|
|
|
|
*
|
2012-01-13 17:44:23 +01:00
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or
|
|
|
|
* later. See the COPYING file in the top-level directory.
|
2011-12-15 14:25:22 +01:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This header is for use by exec.c and memory.c ONLY. Do not include it.
|
|
|
|
* The functions declared here will be removed soon.
|
|
|
|
*/
|
|
|
|
|
2012-09-20 15:02:51 +02:00
|
|
|
#ifndef MEMORY_INTERNAL_H
|
|
|
|
#define MEMORY_INTERNAL_H
|
2011-12-15 14:25:22 +01:00
|
|
|
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/xen/xen.h"
|
2011-12-15 14:25:22 +01:00
|
|
|
|
2012-10-03 16:22:53 +02:00
|
|
|
|
|
|
|
typedef struct AddressSpaceDispatch AddressSpaceDispatch;
|
|
|
|
|
|
|
|
void address_space_init_dispatch(AddressSpace *as);
|
2012-10-07 12:59:55 +02:00
|
|
|
void address_space_destroy_dispatch(AddressSpace *as);
|
2012-10-03 16:22:53 +02:00
|
|
|
|
2013-05-24 13:23:38 +02:00
|
|
|
extern const MemoryRegionOps unassigned_mem_ops;
|
|
|
|
|
2013-05-24 11:55:06 +02:00
|
|
|
bool memory_region_access_valid(MemoryRegion *mr, hwaddr addr,
|
|
|
|
unsigned size, bool is_write);
|
|
|
|
|
2011-12-20 14:59:12 +01:00
|
|
|
ram_addr_t qemu_ram_alloc_from_ptr(ram_addr_t size, void *host,
|
2011-12-15 14:25:22 +01:00
|
|
|
MemoryRegion *mr);
|
2011-12-20 14:59:12 +01:00
|
|
|
ram_addr_t qemu_ram_alloc(ram_addr_t size, MemoryRegion *mr);
|
2013-05-14 11:47:56 +02:00
|
|
|
void *qemu_get_ram_ptr(ram_addr_t addr);
|
2011-12-15 14:25:22 +01:00
|
|
|
void qemu_ram_free(ram_addr_t addr);
|
|
|
|
void qemu_ram_free_from_ptr(ram_addr_t addr);
|
|
|
|
|
2011-12-21 13:16:38 +01:00
|
|
|
#define VGA_DIRTY_FLAG 0x01
|
|
|
|
#define CODE_DIRTY_FLAG 0x02
|
|
|
|
#define MIGRATION_DIRTY_FLAG 0x08
|
|
|
|
|
2012-06-22 13:14:17 +02:00
|
|
|
static inline int cpu_physical_memory_get_dirty_flags(ram_addr_t addr)
|
2011-12-21 13:16:38 +01:00
|
|
|
{
|
2012-06-22 13:14:17 +02:00
|
|
|
return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS];
|
2011-12-21 13:16:38 +01:00
|
|
|
}
|
|
|
|
|
2012-06-22 13:14:17 +02:00
|
|
|
/* read dirty bit (return 0 or 1) */
|
|
|
|
static inline int cpu_physical_memory_is_dirty(ram_addr_t addr)
|
2011-12-21 13:16:38 +01:00
|
|
|
{
|
2012-06-22 13:14:17 +02:00
|
|
|
return cpu_physical_memory_get_dirty_flags(addr) == 0xff;
|
2011-12-21 13:16:38 +01:00
|
|
|
}
|
|
|
|
|
2012-01-22 17:38:21 +01:00
|
|
|
static inline int cpu_physical_memory_get_dirty(ram_addr_t start,
|
|
|
|
ram_addr_t length,
|
2011-12-21 13:16:38 +01:00
|
|
|
int dirty_flags)
|
|
|
|
{
|
2012-01-22 17:38:21 +01:00
|
|
|
int ret = 0;
|
|
|
|
ram_addr_t addr, end;
|
|
|
|
|
|
|
|
end = TARGET_PAGE_ALIGN(start + length);
|
|
|
|
start &= TARGET_PAGE_MASK;
|
|
|
|
for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
|
2012-06-22 13:14:17 +02:00
|
|
|
ret |= cpu_physical_memory_get_dirty_flags(addr) & dirty_flags;
|
2012-01-22 17:38:21 +01:00
|
|
|
}
|
|
|
|
return ret;
|
2011-12-21 13:16:38 +01:00
|
|
|
}
|
|
|
|
|
2012-06-22 13:14:17 +02:00
|
|
|
static inline int cpu_physical_memory_set_dirty_flags(ram_addr_t addr,
|
|
|
|
int dirty_flags)
|
|
|
|
{
|
|
|
|
return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] |= dirty_flags;
|
|
|
|
}
|
|
|
|
|
2011-12-21 13:16:38 +01:00
|
|
|
static inline void cpu_physical_memory_set_dirty(ram_addr_t addr)
|
|
|
|
{
|
2012-06-22 13:14:17 +02:00
|
|
|
cpu_physical_memory_set_dirty_flags(addr, 0xff);
|
2011-12-21 13:16:38 +01:00
|
|
|
}
|
|
|
|
|
2012-06-22 13:14:17 +02:00
|
|
|
static inline int cpu_physical_memory_clear_dirty_flags(ram_addr_t addr,
|
|
|
|
int dirty_flags)
|
2011-12-21 13:16:38 +01:00
|
|
|
{
|
2012-06-22 13:14:17 +02:00
|
|
|
int mask = ~dirty_flags;
|
|
|
|
|
|
|
|
return ram_list.phys_dirty[addr >> TARGET_PAGE_BITS] &= mask;
|
2011-12-21 13:16:38 +01:00
|
|
|
}
|
|
|
|
|
2011-10-16 18:04:59 +02:00
|
|
|
static inline void cpu_physical_memory_set_dirty_range(ram_addr_t start,
|
|
|
|
ram_addr_t length,
|
|
|
|
int dirty_flags)
|
|
|
|
{
|
|
|
|
ram_addr_t addr, end;
|
|
|
|
|
2012-01-29 15:47:47 +01:00
|
|
|
end = TARGET_PAGE_ALIGN(start + length);
|
|
|
|
start &= TARGET_PAGE_MASK;
|
|
|
|
for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
|
2012-06-22 13:14:17 +02:00
|
|
|
cpu_physical_memory_set_dirty_flags(addr, dirty_flags);
|
2011-10-16 18:04:59 +02:00
|
|
|
}
|
2012-10-03 15:49:22 +02:00
|
|
|
xen_modified_memory(addr, length);
|
2011-10-16 18:04:59 +02:00
|
|
|
}
|
|
|
|
|
2011-12-21 13:16:38 +01:00
|
|
|
static inline void cpu_physical_memory_mask_dirty_range(ram_addr_t start,
|
2012-01-22 12:00:44 +01:00
|
|
|
ram_addr_t length,
|
2011-12-21 13:16:38 +01:00
|
|
|
int dirty_flags)
|
|
|
|
{
|
2012-01-22 12:00:44 +01:00
|
|
|
ram_addr_t addr, end;
|
2011-12-21 13:16:38 +01:00
|
|
|
|
2012-01-29 15:47:47 +01:00
|
|
|
end = TARGET_PAGE_ALIGN(start + length);
|
|
|
|
start &= TARGET_PAGE_MASK;
|
|
|
|
for (addr = start; addr < end; addr += TARGET_PAGE_SIZE) {
|
2012-06-22 13:14:17 +02:00
|
|
|
cpu_physical_memory_clear_dirty_flags(addr, dirty_flags);
|
2011-12-21 13:16:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void cpu_physical_memory_reset_dirty(ram_addr_t start, ram_addr_t end,
|
|
|
|
int dirty_flags);
|
2012-02-08 15:54:16 +01:00
|
|
|
|
2011-12-15 14:25:22 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|