mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
exec: move include files to include/exec/
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
+2
-2
@@ -40,9 +40,9 @@
|
||||
#include "hw/audiodev.h"
|
||||
#include "kvm.h"
|
||||
#include "migration.h"
|
||||
#include "gdbstub.h"
|
||||
#include "exec/gdbstub.h"
|
||||
#include "hw/smbios.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "hw/pcspk.h"
|
||||
#include "qemu/page_cache.h"
|
||||
#include "qemu-config.h"
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
*/
|
||||
|
||||
#include "monitor.h"
|
||||
#include "cpu-common.h"
|
||||
#include "exec/cpu-common.h"
|
||||
#include "kvm.h"
|
||||
#include "balloon.h"
|
||||
#include "trace.h"
|
||||
|
||||
+2
-2
@@ -11,7 +11,7 @@
|
||||
#include <stdlib.h>
|
||||
#endif /* DEBUG_REMAP */
|
||||
|
||||
#include "qemu-user-types.h"
|
||||
#include "exec/user/abitypes.h"
|
||||
|
||||
enum BSDType {
|
||||
target_freebsd,
|
||||
@@ -23,7 +23,7 @@ extern enum BSDType bsd_type;
|
||||
#include "syscall_defs.h"
|
||||
#include "syscall.h"
|
||||
#include "target_signal.h"
|
||||
#include "gdbstub.h"
|
||||
#include "exec/gdbstub.h"
|
||||
|
||||
#if defined(CONFIG_USE_NPTL)
|
||||
#define THREAD __thread
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
#include "monitor.h"
|
||||
#include "sysemu.h"
|
||||
#include "gdbstub.h"
|
||||
#include "exec/gdbstub.h"
|
||||
#include "dma.h"
|
||||
#include "kvm.h"
|
||||
#include "qmp-commands.h"
|
||||
|
||||
@@ -19,13 +19,13 @@
|
||||
|
||||
#include "config.h"
|
||||
#include "cpu.h"
|
||||
#include "exec-all.h"
|
||||
#include "memory.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/exec-all.h"
|
||||
#include "exec/memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#include "cputlb.h"
|
||||
#include "exec/cputlb.h"
|
||||
|
||||
#include "memory-internal.h"
|
||||
#include "exec/memory-internal.h"
|
||||
|
||||
//#define DEBUG_TLB
|
||||
//#define DEBUG_TLB_CHECK
|
||||
@@ -347,15 +347,15 @@ tb_page_addr_t get_page_addr_code(CPUArchState *env1, target_ulong addr)
|
||||
#define SOFTMMU_CODE_ACCESS
|
||||
|
||||
#define SHIFT 0
|
||||
#include "softmmu_template.h"
|
||||
#include "exec/softmmu_template.h"
|
||||
|
||||
#define SHIFT 1
|
||||
#include "softmmu_template.h"
|
||||
#include "exec/softmmu_template.h"
|
||||
|
||||
#define SHIFT 2
|
||||
#include "softmmu_template.h"
|
||||
#include "exec/softmmu_template.h"
|
||||
|
||||
#define SHIFT 3
|
||||
#include "softmmu_template.h"
|
||||
#include "exec/softmmu_template.h"
|
||||
|
||||
#undef env
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
#define DMA_H
|
||||
|
||||
#include <stdio.h>
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "hw/hw.h"
|
||||
#include "block/block.h"
|
||||
#include "kvm.h"
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
#include "qemu-common.h"
|
||||
#include "elf.h"
|
||||
#include "cpu.h"
|
||||
#include "cpu-all.h"
|
||||
#include "hwaddr.h"
|
||||
#include "exec/cpu-all.h"
|
||||
#include "exec/hwaddr.h"
|
||||
#include "monitor.h"
|
||||
#include "kvm.h"
|
||||
#include "dump.h"
|
||||
@@ -23,7 +23,7 @@
|
||||
#include "memory_mapping.h"
|
||||
#include "qapi/error.h"
|
||||
#include "qmp-commands.h"
|
||||
#include "gdbstub.h"
|
||||
#include "exec/gdbstub.h"
|
||||
|
||||
static uint16_t cpu_convert_to_target16(uint16_t val, int endian)
|
||||
{
|
||||
|
||||
@@ -34,9 +34,9 @@
|
||||
#include "hw/xen.h"
|
||||
#include "qemu-timer.h"
|
||||
#include "qemu-config.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "dma.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#if defined(CONFIG_USER_ONLY)
|
||||
#include <qemu.h>
|
||||
#else /* !CONFIG_USER_ONLY */
|
||||
@@ -44,10 +44,10 @@
|
||||
#include "trace.h"
|
||||
#endif
|
||||
|
||||
#include "cputlb.h"
|
||||
#include "exec/cputlb.h"
|
||||
#include "translate-all.h"
|
||||
|
||||
#include "memory-internal.h"
|
||||
#include "exec/memory-internal.h"
|
||||
|
||||
//#define DEBUG_UNASSIGNED
|
||||
//#define DEBUG_SUBPAGE
|
||||
|
||||
@@ -32,7 +32,7 @@
|
||||
#include "monitor.h"
|
||||
#include "qemu-char.h"
|
||||
#include "sysemu.h"
|
||||
#include "gdbstub.h"
|
||||
#include "exec/gdbstub.h"
|
||||
#endif
|
||||
|
||||
#define MAX_PACKET_LENGTH 4096
|
||||
|
||||
+1
-1
@@ -30,7 +30,7 @@
|
||||
#include "sysemu.h"
|
||||
#include "acpi.h"
|
||||
#include "kvm.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#include "ich9.h"
|
||||
|
||||
|
||||
+2
-2
@@ -26,9 +26,9 @@
|
||||
#include "acpi.h"
|
||||
#include "sysemu.h"
|
||||
#include "range.h"
|
||||
#include "ioport.h"
|
||||
#include "exec/ioport.h"
|
||||
#include "fw_cfg.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
//#define DEBUG
|
||||
|
||||
|
||||
+2
-2
@@ -7,12 +7,12 @@
|
||||
*/
|
||||
|
||||
#include "cpu.h"
|
||||
#include "exec-all.h"
|
||||
#include "exec/exec-all.h"
|
||||
#include "hw.h"
|
||||
#include "devices.h"
|
||||
#include "sysemu.h"
|
||||
#include "alpha_sys.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
|
||||
#define TYPE_TYPHOON_PCI_HOST_BRIDGE "typhoon-pcihost"
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@
|
||||
#include "boards.h"
|
||||
#include "loader.h"
|
||||
#include "elf.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define KERNEL_LOAD_ADDR 0x10000
|
||||
#define AN5206_MBAR_ADDR 0x10000000
|
||||
|
||||
+1
-1
@@ -33,7 +33,7 @@
|
||||
#include "pci/pci_bus.h"
|
||||
#include "apb_pci.h"
|
||||
#include "sysemu.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
/* debug APB */
|
||||
//#define DEBUG_APB
|
||||
|
||||
+1
-1
@@ -20,7 +20,7 @@
|
||||
#ifndef QEMU_APIC_INTERNAL_H
|
||||
#define QEMU_APIC_INTERNAL_H
|
||||
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "sysbus.h"
|
||||
#include "qemu-timer.h"
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <stdint.h>
|
||||
#include "qemu-common.h"
|
||||
#include "hw.h"
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
|
||||
typedef void (*apm_ctrl_changed_t)(uint32_t val, void *arg);
|
||||
|
||||
|
||||
+1
-1
@@ -11,7 +11,7 @@
|
||||
#ifndef ARM_MISC_H
|
||||
#define ARM_MISC_H 1
|
||||
|
||||
#include "memory.h"
|
||||
#include "exec/memory.h"
|
||||
#include "hw/irq.h"
|
||||
|
||||
/* The CPU is also modeled as an interrupt controller. */
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@
|
||||
#include "sysbus.h"
|
||||
#include "qemu-timer.h"
|
||||
#include "arm-misc.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
#include "arm_gic_internal.h"
|
||||
|
||||
typedef struct {
|
||||
|
||||
+1
-1
@@ -31,7 +31,7 @@
|
||||
#include "elf.h"
|
||||
#include "cris-boot.h"
|
||||
#include "blockdev.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#define D(x)
|
||||
#define DNAND(x)
|
||||
|
||||
+1
-1
@@ -45,7 +45,7 @@
|
||||
#include "mips.h"
|
||||
#include "pci/pci_host.h"
|
||||
#include "sysemu.h"
|
||||
#include "exec-memory.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
//#define DEBUG_BONITO
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user