mirror of
https://github.com/Cxbx-Reloaded/unicorn.git
synced 2024-12-13 14:06:33 +00:00
move macros in qemu/target-*/unicorn*.c
to uc_priv.h
This commit is contained in:
parent
1cd3c3093b
commit
c5888e5670
@ -22,6 +22,17 @@
|
|||||||
|
|
||||||
#define ARR_SIZE(a) (sizeof(a)/sizeof(a[0]))
|
#define ARR_SIZE(a) (sizeof(a)/sizeof(a[0]))
|
||||||
|
|
||||||
|
#define READ_QWORD(x) ((uint64)x)
|
||||||
|
#define READ_DWORD(x) (x & 0xffffffff)
|
||||||
|
#define READ_WORD(x) (x & 0xffff)
|
||||||
|
#define READ_BYTE_H(x) ((x & 0xffff) >> 8)
|
||||||
|
#define READ_BYTE_L(x) (x & 0xff)
|
||||||
|
#define WRITE_DWORD(x, w) (x = (x & ~0xffffffff) | (w & 0xffffffff))
|
||||||
|
#define WRITE_WORD(x, w) (x = (x & ~0xffff) | (w & 0xffff))
|
||||||
|
#define WRITE_BYTE_H(x, b) (x = (x & ~0xff00) | ((b & 0xff) << 8))
|
||||||
|
#define WRITE_BYTE_L(x, b) (x = (x & ~0xff) | (b & 0xff))
|
||||||
|
|
||||||
|
|
||||||
QTAILQ_HEAD(CPUTailQ, CPUState);
|
QTAILQ_HEAD(CPUTailQ, CPUState);
|
||||||
|
|
||||||
typedef struct ModuleEntry {
|
typedef struct ModuleEntry {
|
||||||
|
@ -3,21 +3,11 @@
|
|||||||
|
|
||||||
#include "hw/boards.h"
|
#include "hw/boards.h"
|
||||||
#include "hw/arm/arm.h"
|
#include "hw/arm/arm.h"
|
||||||
|
|
||||||
#include "sysemu/cpus.h"
|
#include "sysemu/cpus.h"
|
||||||
|
|
||||||
#include "unicorn.h"
|
#include "unicorn.h"
|
||||||
|
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
|
|
||||||
#include "unicorn_common.h"
|
#include "unicorn_common.h"
|
||||||
|
#include "uc_priv.h"
|
||||||
|
|
||||||
#define READ_QWORD(x) ((uint64)x)
|
|
||||||
#define READ_DWORD(x) (x & 0xffffffff)
|
|
||||||
#define READ_WORD(x) (x & 0xffff)
|
|
||||||
#define READ_BYTE_H(x) ((x & 0xffff) >> 8)
|
|
||||||
#define READ_BYTE_L(x) (x & 0xff)
|
|
||||||
|
|
||||||
|
|
||||||
static void arm64_set_pc(struct uc_struct *uc, uint64_t address)
|
static void arm64_set_pc(struct uc_struct *uc, uint64_t address)
|
||||||
@ -60,11 +50,6 @@ int arm64_reg_read(struct uc_struct *uc, unsigned int regid, void *value)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define WRITE_DWORD(x, w) (x = (x & ~0xffffffff) | (w & 0xffffffff))
|
|
||||||
#define WRITE_WORD(x, w) (x = (x & ~0xffff) | (w & 0xffff))
|
|
||||||
#define WRITE_BYTE_H(x, b) (x = (x & ~0xff00) | ((b & 0xff) << 8))
|
|
||||||
#define WRITE_BYTE_L(x, b) (x = (x & ~0xff) | (b & 0xff))
|
|
||||||
|
|
||||||
int arm64_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
int arm64_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
||||||
{
|
{
|
||||||
CPUState *mycpu = first_cpu;
|
CPUState *mycpu = first_cpu;
|
||||||
|
@ -3,20 +3,11 @@
|
|||||||
|
|
||||||
#include "hw/boards.h"
|
#include "hw/boards.h"
|
||||||
#include "hw/arm/arm.h"
|
#include "hw/arm/arm.h"
|
||||||
|
|
||||||
#include "sysemu/cpus.h"
|
#include "sysemu/cpus.h"
|
||||||
|
|
||||||
#include "unicorn.h"
|
#include "unicorn.h"
|
||||||
|
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
#include "unicorn_common.h"
|
#include "unicorn_common.h"
|
||||||
|
#include "uc_priv.h"
|
||||||
|
|
||||||
#define READ_QWORD(x) ((uint64)x)
|
|
||||||
#define READ_DWORD(x) (x & 0xffffffff)
|
|
||||||
#define READ_WORD(x) (x & 0xffff)
|
|
||||||
#define READ_BYTE_H(x) ((x & 0xffff) >> 8)
|
|
||||||
#define READ_BYTE_L(x) (x & 0xff)
|
|
||||||
|
|
||||||
|
|
||||||
static void arm_set_pc(struct uc_struct *uc, uint64_t address)
|
static void arm_set_pc(struct uc_struct *uc, uint64_t address)
|
||||||
@ -67,11 +58,6 @@ int arm_reg_read(struct uc_struct *uc, unsigned int regid, void *value)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define WRITE_DWORD(x, w) (x = (x & ~0xffffffff) | (w & 0xffffffff))
|
|
||||||
#define WRITE_WORD(x, w) (x = (x & ~0xffff) | (w & 0xffff))
|
|
||||||
#define WRITE_BYTE_H(x, b) (x = (x & ~0xff00) | ((b & 0xff) << 8))
|
|
||||||
#define WRITE_BYTE_L(x, b) (x = (x & ~0xff) | (b & 0xff))
|
|
||||||
|
|
||||||
int arm_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
int arm_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
||||||
{
|
{
|
||||||
CPUState *mycpu = first_cpu;
|
CPUState *mycpu = first_cpu;
|
||||||
|
@ -2,20 +2,14 @@
|
|||||||
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2015 */
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2015 */
|
||||||
|
|
||||||
#include "hw/boards.h"
|
#include "hw/boards.h"
|
||||||
#include "sysemu/cpus.h"
|
|
||||||
#include "hw/i386/pc.h"
|
#include "hw/i386/pc.h"
|
||||||
|
#include "sysemu/cpus.h"
|
||||||
#include "unicorn.h"
|
#include "unicorn.h"
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
#include "tcg.h"
|
#include "tcg.h"
|
||||||
|
|
||||||
#include "unicorn_common.h"
|
#include "unicorn_common.h"
|
||||||
#include <unicorn/x86.h> /* needed for uc_x86_mmr */
|
#include <unicorn/x86.h> /* needed for uc_x86_mmr */
|
||||||
|
#include "uc_priv.h"
|
||||||
#define READ_QWORD(x) ((uint64)x)
|
|
||||||
#define READ_DWORD(x) (x & 0xffffffff)
|
|
||||||
#define READ_WORD(x) (x & 0xffff)
|
|
||||||
#define READ_BYTE_H(x) ((x & 0xffff) >> 8)
|
|
||||||
#define READ_BYTE_L(x) (x & 0xff)
|
|
||||||
|
|
||||||
|
|
||||||
static void x86_set_pc(struct uc_struct *uc, uint64_t address)
|
static void x86_set_pc(struct uc_struct *uc, uint64_t address)
|
||||||
@ -575,12 +569,6 @@ int x86_reg_read(struct uc_struct *uc, unsigned int regid, void *value)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#define WRITE_DWORD(x, w) (x = (x & ~0xffffffff) | (w & 0xffffffff))
|
|
||||||
#define WRITE_WORD(x, w) (x = (x & ~0xffff) | (w & 0xffff))
|
|
||||||
#define WRITE_BYTE_H(x, b) (x = (x & ~0xff00) | ((b & 0xff) << 8))
|
|
||||||
#define WRITE_BYTE_L(x, b) (x = (x & ~0xff) | (b & 0xff))
|
|
||||||
|
|
||||||
int x86_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
int x86_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
||||||
{
|
{
|
||||||
CPUState *mycpu = first_cpu;
|
CPUState *mycpu = first_cpu;
|
||||||
|
@ -6,14 +6,8 @@
|
|||||||
#include "sysemu/cpus.h"
|
#include "sysemu/cpus.h"
|
||||||
#include "unicorn.h"
|
#include "unicorn.h"
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
|
|
||||||
#include "unicorn_common.h"
|
#include "unicorn_common.h"
|
||||||
|
#include "uc_priv.h"
|
||||||
#define READ_QWORD(x) ((uint64)x)
|
|
||||||
#define READ_DWORD(x) (x & 0xffffffff)
|
|
||||||
#define READ_WORD(x) (x & 0xffff)
|
|
||||||
#define READ_BYTE_H(x) ((x & 0xffff) >> 8)
|
|
||||||
#define READ_BYTE_L(x) (x & 0xff)
|
|
||||||
|
|
||||||
|
|
||||||
static void m68k_set_pc(struct uc_struct *uc, uint64_t address)
|
static void m68k_set_pc(struct uc_struct *uc, uint64_t address)
|
||||||
@ -51,12 +45,6 @@ int m68k_reg_read(struct uc_struct *uc, unsigned int regid, void *value)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#define WRITE_DWORD(x, w) (x = (x & ~0xffffffff) | (w & 0xffffffff))
|
|
||||||
#define WRITE_WORD(x, w) (x = (x & ~0xffff) | (w & 0xffff))
|
|
||||||
#define WRITE_BYTE_H(x, b) (x = (x & ~0xff00) | ((b & 0xff) << 8))
|
|
||||||
#define WRITE_BYTE_L(x, b) (x = (x & ~0xff) | (b & 0xff))
|
|
||||||
|
|
||||||
int m68k_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
int m68k_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
||||||
{
|
{
|
||||||
CPUState *mycpu = first_cpu;
|
CPUState *mycpu = first_cpu;
|
||||||
|
@ -6,15 +6,8 @@
|
|||||||
#include "sysemu/cpus.h"
|
#include "sysemu/cpus.h"
|
||||||
#include "unicorn.h"
|
#include "unicorn.h"
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
|
|
||||||
#include "unicorn_common.h"
|
#include "unicorn_common.h"
|
||||||
|
#include "uc_priv.h"
|
||||||
|
|
||||||
#define READ_QWORD(x) ((uint64)x)
|
|
||||||
#define READ_DWORD(x) (x & 0xffffffff)
|
|
||||||
#define READ_WORD(x) (x & 0xffff)
|
|
||||||
#define READ_BYTE_H(x) ((x & 0xffff) >> 8)
|
|
||||||
#define READ_BYTE_L(x) (x & 0xff)
|
|
||||||
|
|
||||||
|
|
||||||
static uint64_t mips_mem_redirect(uint64_t address)
|
static uint64_t mips_mem_redirect(uint64_t address)
|
||||||
@ -64,12 +57,6 @@ int mips_reg_read(struct uc_struct *uc, unsigned int regid, void *value)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#define WRITE_DWORD(x, w) (x = (x & ~0xffffffff) | (w & 0xffffffff))
|
|
||||||
#define WRITE_WORD(x, w) (x = (x & ~0xffff) | (w & 0xffff))
|
|
||||||
#define WRITE_BYTE_H(x, b) (x = (x & ~0xff00) | ((b & 0xff) << 8))
|
|
||||||
#define WRITE_BYTE_L(x, b) (x = (x & ~0xff) | (b & 0xff))
|
|
||||||
|
|
||||||
int mips_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
int mips_reg_write(struct uc_struct *uc, unsigned int regid, const void *value)
|
||||||
{
|
{
|
||||||
CPUState *mycpu = first_cpu;
|
CPUState *mycpu = first_cpu;
|
||||||
|
@ -7,13 +7,7 @@
|
|||||||
#include "unicorn.h"
|
#include "unicorn.h"
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
#include "unicorn_common.h"
|
#include "unicorn_common.h"
|
||||||
|
#include "uc_priv.h"
|
||||||
|
|
||||||
#define READ_QWORD(x) ((uint64)x)
|
|
||||||
#define READ_DWORD(x) (x & 0xffffffff)
|
|
||||||
#define READ_WORD(x) (x & 0xffff)
|
|
||||||
#define READ_BYTE_H(x) ((x & 0xffff) >> 8)
|
|
||||||
#define READ_BYTE_L(x) (x & 0xff)
|
|
||||||
|
|
||||||
|
|
||||||
static bool sparc_stop_interrupt(int intno)
|
static bool sparc_stop_interrupt(int intno)
|
||||||
|
@ -7,13 +7,7 @@
|
|||||||
#include "unicorn.h"
|
#include "unicorn.h"
|
||||||
#include "cpu.h"
|
#include "cpu.h"
|
||||||
#include "unicorn_common.h"
|
#include "unicorn_common.h"
|
||||||
|
#include "uc_priv.h"
|
||||||
|
|
||||||
#define READ_QWORD(x) ((uint64)x)
|
|
||||||
#define READ_DWORD(x) (x & 0xffffffff)
|
|
||||||
#define READ_WORD(x) (x & 0xffff)
|
|
||||||
#define READ_BYTE_H(x) ((x & 0xffff) >> 8)
|
|
||||||
#define READ_BYTE_L(x) (x & 0xff)
|
|
||||||
|
|
||||||
|
|
||||||
static bool sparc_stop_interrupt(int intno)
|
static bool sparc_stop_interrupt(int intno)
|
||||||
|
Loading…
Reference in New Issue
Block a user