dont use explicit page size, use TARGET_PAGE_SIZE
This commit is contained in:
16
uc.c
16
uc.c
@ -32,8 +32,8 @@
|
||||
#include "qemu/include/hw/boards.h"
|
||||
|
||||
//keep this a power of two!
|
||||
#define UC_BLOCK_SIZE 0x1000
|
||||
#define UC_ALIGN_MASK (UC_BLOCK_SIZE - 1)
|
||||
#define UC_PAGE_SIZE 0x1000
|
||||
#define UC_ALIGN_MASK (UC_PAGE_SIZE - 1)
|
||||
|
||||
static uint8_t *copy_region(uch uc, MemoryRegion *mr);
|
||||
static bool split_region(uch handle, MemoryRegion *mr, uint64_t address, size_t size, bool do_delete);
|
||||
@ -629,11 +629,11 @@ uc_err uc_mem_map(uch handle, uint64_t address, size_t size, uint32_t perms)
|
||||
// invalid memory mapping
|
||||
return UC_ERR_MAP;
|
||||
|
||||
// address must be aligned to UC_BLOCK_SIZE
|
||||
// address must be aligned to UC_PAGE_SIZE
|
||||
if ((address & UC_ALIGN_MASK) != 0)
|
||||
return UC_ERR_MAP;
|
||||
|
||||
// size must be multiple of UC_BLOCK_SIZE
|
||||
// size must be multiple of UC_PAGE_SIZE
|
||||
if ((size & UC_ALIGN_MASK) != 0)
|
||||
return UC_ERR_MAP;
|
||||
|
||||
@ -773,11 +773,11 @@ uc_err uc_mem_protect(uch handle, uint64_t address, size_t size, uint32_t perms)
|
||||
// invalid memory mapping
|
||||
return UC_ERR_MAP;
|
||||
|
||||
// address must be aligned to UC_BLOCK_SIZE
|
||||
// address must be aligned to UC_PAGE_SIZE
|
||||
if ((address & UC_ALIGN_MASK) != 0)
|
||||
return UC_ERR_MAP;
|
||||
|
||||
// size must be multiple of UC_BLOCK_SIZE
|
||||
// size must be multiple of UC_PAGE_SIZE
|
||||
if ((size & UC_ALIGN_MASK) != 0)
|
||||
return UC_ERR_MAP;
|
||||
|
||||
@ -833,11 +833,11 @@ uc_err uc_mem_unmap(uch handle, uint64_t address, size_t size)
|
||||
// nothing to unmap
|
||||
return UC_ERR_OK;
|
||||
|
||||
// address must be aligned to UC_BLOCK_SIZE
|
||||
// address must be aligned to UC_PAGE_SIZE
|
||||
if ((address & UC_ALIGN_MASK) != 0)
|
||||
return UC_ERR_MAP;
|
||||
|
||||
// size must be multiple of UC_BLOCK_SIZE
|
||||
// size must be multiple of UC_PAGE_SIZE
|
||||
if ((size & UC_ALIGN_MASK) != 0)
|
||||
return UC_ERR_MAP;
|
||||
|
||||
|
Reference in New Issue
Block a user