Skip to content

Commit

Permalink
exec: move include files to include/exec/
Browse files Browse the repository at this point in the history
Signed-off-by: Paolo Bonzini <[email protected]>
  • Loading branch information
bonzini committed Dec 19, 2012
1 parent 737e150 commit 022c62c
Show file tree
Hide file tree
Showing 277 changed files with 456 additions and 456 deletions.
4 changes: 2 additions & 2 deletions arch_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion balloon.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions bsd-user/qemu.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include <stdlib.h>
#endif /* DEBUG_REMAP */

#include "qemu-user-types.h"
#include "exec/user/abitypes.h"

enum BSDType {
target_freebsd,
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cpus.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
18 changes: 9 additions & 9 deletions cputlb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion dma.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@
#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"
#include "sysemu.h"
#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)
{
Expand Down
8 changes: 4 additions & 4 deletions exec.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,20 +34,20 @@
#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 */
#include "xen-mapcache.h"
#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
Expand Down
2 changes: 1 addition & 1 deletion gdbstub.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hw/acpi_ich9.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions hw/acpi_piix4.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions hw/alpha_typhoon.c
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion hw/an5206.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hw/apb_pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion hw/apic_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
2 changes: 1 addition & 1 deletion hw/apm.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion hw/arm-misc.h
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down
2 changes: 1 addition & 1 deletion hw/armv7m_nvic.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion hw/axis_dev88.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion hw/bonito.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion hw/collie.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include "arm-misc.h"
#include "flash.h"
#include "blockdev.h"
#include "exec-memory.h"
#include "exec/address-spaces.h"

static struct arm_boot_info collie_binfo = {
.loader_start = SA_SDCS0,
Expand Down
2 changes: 1 addition & 1 deletion hw/dummy_m68k.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "boards.h"
#include "loader.h"
#include "elf.h"
#include "exec-memory.h"
#include "exec/address-spaces.h"

#define KERNEL_LOAD_ADDR 0x10000

Expand Down
2 changes: 1 addition & 1 deletion hw/etraxfs_dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <stdio.h>
#include <sys/time.h>
#include "hw.h"
#include "exec-memory.h"
#include "exec/address-spaces.h"
#include "qemu-common.h"
#include "sysemu.h"

Expand Down
2 changes: 1 addition & 1 deletion hw/exynos4210.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#define EXYNOS4210_H_

#include "qemu-common.h"
#include "memory.h"
#include "exec/memory.h"

#define EXYNOS4210_NCPUS 2

Expand Down
2 changes: 1 addition & 1 deletion hw/exynos4210_fimd.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*/

#include "qemu-common.h"
#include "cpu-all.h"
#include "exec/cpu-all.h"
#include "sysbus.h"
#include "ui/console.h"
#include "ui/pixel_ops.h"
Expand Down
2 changes: 1 addition & 1 deletion hw/exynos4_boards.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include "sysbus.h"
#include "net/net.h"
#include "arm-misc.h"
#include "exec-memory.h"
#include "exec/address-spaces.h"
#include "exynos4210.h"
#include "boards.h"

Expand Down
2 changes: 1 addition & 1 deletion hw/flash.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

/* NOR flash devices */

#include "memory.h"
#include "exec/memory.h"

typedef struct pflash_t pflash_t;

Expand Down
2 changes: 1 addition & 1 deletion hw/framebuffer.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef QEMU_FRAMEBUFFER_H
#define QEMU_FRAMEBUFFER_H

#include "memory.h"
#include "exec/memory.h"

/* Framebuffer device helper routines. */

Expand Down
2 changes: 1 addition & 1 deletion hw/gt64xxx.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "pci/pci.h"
#include "pci/pci_host.h"
#include "pc.h"
#include "exec-memory.h"
#include "exec/address-spaces.h"

//#define DEBUG

Expand Down
2 changes: 1 addition & 1 deletion hw/gumstix.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
#include "devices.h"
#include "boards.h"
#include "blockdev.h"
#include "exec-memory.h"
#include "exec/address-spaces.h"

static const int sector_len = 128 * 1024;

Expand Down
2 changes: 1 addition & 1 deletion hw/highbank.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "boards.h"
#include "sysbus.h"
#include "blockdev.h"
#include "exec-memory.h"
#include "exec/address-spaces.h"

#define SMP_BOOT_ADDR 0x100
#define SMP_BOOT_REG 0x40
Expand Down
4 changes: 2 additions & 2 deletions hw/hw.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
#include "qemu-common.h"

#if !defined(CONFIG_USER_ONLY) && !defined(NEED_CPU_H)
#include "cpu-common.h"
#include "exec/cpu-common.h"
#endif

#include "ioport.h"
#include "exec/ioport.h"
#include "irq.h"
#include "block/aio.h"
#include "qemu-file.h"
Expand Down
2 changes: 1 addition & 1 deletion hw/ide.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#include "isa.h"
#include "pci/pci.h"
#include "memory.h"
#include "exec/memory.h"

#define MAX_IDE_DEVS 2

Expand Down
2 changes: 1 addition & 1 deletion hw/ide/ahci.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

#include "monitor.h"
#include "dma.h"
#include "cpu-common.h"
#include "exec/cpu-common.h"
#include "internal.h"
#include <hw/ide/pci.h>
#include <hw/ide/ahci.h>
Expand Down
2 changes: 1 addition & 1 deletion hw/ide/internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*/
#include <hw/ide.h>
#include <hw/isa.h>
#include "iorange.h"
#include "exec/iorange.h"
#include "dma.h"
#include "sysemu.h"
#include "hw/block-common.h"
Expand Down
Loading

0 comments on commit 022c62c

Please sign in to comment.