diff options
author | Claudio Fontana | 2020-12-12 16:55:10 +0100 |
---|---|---|
committer | Eduardo Habkost | 2020-12-16 20:06:53 +0100 |
commit | 7fdef0d4f240208daf973e85ba1d498242e4fefc (patch) | |
tree | 1a0fd70be9674fd204c4ec174f13eaf3d156f9fa /target | |
parent | i386: move whpx accel files into whpx/ (diff) | |
download | qemu-7fdef0d4f240208daf973e85ba1d498242e4fefc.tar.gz qemu-7fdef0d4f240208daf973e85ba1d498242e4fefc.tar.xz qemu-7fdef0d4f240208daf973e85ba1d498242e4fefc.zip |
i386: move hax accel files into hax/
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20201212155530.23098-4-cfontana@suse.de>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target')
-rw-r--r-- | target/i386/hax/hax-all.c (renamed from target/i386/hax-all.c) | 0 | ||||
-rw-r--r-- | target/i386/hax/hax-cpus.c (renamed from target/i386/hax-cpus.c) | 0 | ||||
-rw-r--r-- | target/i386/hax/hax-cpus.h (renamed from target/i386/hax-cpus.h) | 0 | ||||
-rw-r--r-- | target/i386/hax/hax-i386.h (renamed from target/i386/hax-i386.h) | 6 | ||||
-rw-r--r-- | target/i386/hax/hax-interface.h (renamed from target/i386/hax-interface.h) | 0 | ||||
-rw-r--r-- | target/i386/hax/hax-mem.c (renamed from target/i386/hax-mem.c) | 0 | ||||
-rw-r--r-- | target/i386/hax/hax-posix.c (renamed from target/i386/hax-posix.c) | 0 | ||||
-rw-r--r-- | target/i386/hax/hax-posix.h (renamed from target/i386/hax-posix.h) | 0 | ||||
-rw-r--r-- | target/i386/hax/hax-windows.c (renamed from target/i386/hax-windows.c) | 0 | ||||
-rw-r--r-- | target/i386/hax/hax-windows.h (renamed from target/i386/hax-windows.h) | 0 | ||||
-rw-r--r-- | target/i386/hax/meson.build | 7 | ||||
-rw-r--r-- | target/i386/meson.build | 8 |
12 files changed, 11 insertions, 10 deletions
diff --git a/target/i386/hax-all.c b/target/i386/hax/hax-all.c index fecfe8cd6e..fecfe8cd6e 100644 --- a/target/i386/hax-all.c +++ b/target/i386/hax/hax-all.c diff --git a/target/i386/hax-cpus.c b/target/i386/hax/hax-cpus.c index f72c85bd49..f72c85bd49 100644 --- a/target/i386/hax-cpus.c +++ b/target/i386/hax/hax-cpus.c diff --git a/target/i386/hax-cpus.h b/target/i386/hax/hax-cpus.h index ee8ab7a631..ee8ab7a631 100644 --- a/target/i386/hax-cpus.h +++ b/target/i386/hax/hax-cpus.h diff --git a/target/i386/hax-i386.h b/target/i386/hax/hax-i386.h index 48c4abe14e..efbb346238 100644 --- a/target/i386/hax-i386.h +++ b/target/i386/hax/hax-i386.h @@ -84,13 +84,13 @@ void hax_memory_init(void); #ifdef CONFIG_POSIX -#include "target/i386/hax-posix.h" +#include "hax-posix.h" #endif #ifdef CONFIG_WIN32 -#include "target/i386/hax-windows.h" +#include "hax-windows.h" #endif -#include "target/i386/hax-interface.h" +#include "hax-interface.h" #endif diff --git a/target/i386/hax-interface.h b/target/i386/hax/hax-interface.h index 537ae084e9..537ae084e9 100644 --- a/target/i386/hax-interface.h +++ b/target/i386/hax/hax-interface.h diff --git a/target/i386/hax-mem.c b/target/i386/hax/hax-mem.c index 71e637cf16..71e637cf16 100644 --- a/target/i386/hax-mem.c +++ b/target/i386/hax/hax-mem.c diff --git a/target/i386/hax-posix.c b/target/i386/hax/hax-posix.c index 735a749d4b..735a749d4b 100644 --- a/target/i386/hax-posix.c +++ b/target/i386/hax/hax-posix.c diff --git a/target/i386/hax-posix.h b/target/i386/hax/hax-posix.h index fb7c64426d..fb7c64426d 100644 --- a/target/i386/hax-posix.h +++ b/target/i386/hax/hax-posix.h diff --git a/target/i386/hax-windows.c b/target/i386/hax/hax-windows.c index 6c82dfb54f..6c82dfb54f 100644 --- a/target/i386/hax-windows.c +++ b/target/i386/hax/hax-windows.c diff --git a/target/i386/hax-windows.h b/target/i386/hax/hax-windows.h index a5ce12d663..a5ce12d663 100644 --- a/target/i386/hax-windows.h +++ b/target/i386/hax/hax-windows.h diff --git a/target/i386/hax/meson.build b/target/i386/hax/meson.build new file mode 100644 index 0000000000..77ea431b30 --- /dev/null +++ b/target/i386/hax/meson.build @@ -0,0 +1,7 @@ +i386_softmmu_ss.add(when: 'CONFIG_HAX', if_true: files( + 'hax-all.c', + 'hax-mem.c', + 'hax-cpus.c', +)) +i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_POSIX'], if_true: files('hax-posix.c')) +i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_WIN32'], if_true: files('hax-windows.c')) diff --git a/target/i386/meson.build b/target/i386/meson.build index 62cd042915..284d52ab81 100644 --- a/target/i386/meson.build +++ b/target/i386/meson.build @@ -27,15 +27,9 @@ i386_softmmu_ss.add(files( 'machine.c', 'monitor.c', )) -i386_softmmu_ss.add(when: 'CONFIG_HAX', if_true: files( - 'hax-all.c', - 'hax-mem.c', - 'hax-cpus.c', -)) -i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_POSIX'], if_true: files('hax-posix.c')) -i386_softmmu_ss.add(when: ['CONFIG_HAX', 'CONFIG_WIN32'], if_true: files('hax-windows.c')) subdir('kvm') +subdir('hax') subdir('whpx') subdir('hvf') |