]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
i386: move TCG accel files into tcg/
authorClaudio Fontana <cfontana@suse.de>
Sat, 12 Dec 2020 15:55:12 +0000 (16:55 +0100)
committerEduardo Habkost <ehabkost@redhat.com>
Wed, 16 Dec 2020 19:06:53 +0000 (14:06 -0500)
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>
[claudio: moved cc_helper_template.h to tcg/ too]

Signed-off-by: Claudio Fontana <cfontana@suse.de>
Message-Id: <20201212155530.23098-6-cfontana@suse.de>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
16 files changed:
target/i386/meson.build
target/i386/tcg/bpt_helper.c [moved from target/i386/bpt_helper.c with 100% similarity]
target/i386/tcg/cc_helper.c [moved from target/i386/cc_helper.c with 100% similarity]
target/i386/tcg/cc_helper_template.h [moved from target/i386/cc_helper_template.h with 100% similarity]
target/i386/tcg/excp_helper.c [moved from target/i386/excp_helper.c with 100% similarity]
target/i386/tcg/fpu_helper.c [moved from target/i386/fpu_helper.c with 100% similarity]
target/i386/tcg/int_helper.c [moved from target/i386/int_helper.c with 100% similarity]
target/i386/tcg/mem_helper.c [moved from target/i386/mem_helper.c with 100% similarity]
target/i386/tcg/meson.build [new file with mode: 0644]
target/i386/tcg/misc_helper.c [moved from target/i386/misc_helper.c with 100% similarity]
target/i386/tcg/mpx_helper.c [moved from target/i386/mpx_helper.c with 100% similarity]
target/i386/tcg/seg_helper.c [moved from target/i386/seg_helper.c with 100% similarity]
target/i386/tcg/smm_helper.c [moved from target/i386/smm_helper.c with 100% similarity]
target/i386/tcg/svm_helper.c [moved from target/i386/svm_helper.c with 100% similarity]
target/i386/tcg/tcg-stub.c [moved from target/i386/tcg-stub.c with 100% similarity]
target/i386/tcg/translate.c [moved from target/i386/translate.c with 100% similarity]

index 284d52ab8135e8685b7fe5a36b68e246f5df08c4..750471c9f36a5ba387dbf392a181ed40cdfcb3dc 100644 (file)
@@ -5,19 +5,6 @@ i386_ss.add(files(
   'helper.c',
   'xsave_helper.c',
 ))
-i386_ss.add(when: 'CONFIG_TCG', if_true: files(
-  'bpt_helper.c',
-  'cc_helper.c',
-  'excp_helper.c',
-  'fpu_helper.c',
-  'int_helper.c',
-  'mem_helper.c',
-  'misc_helper.c',
-  'mpx_helper.c',
-  'seg_helper.c',
-  'smm_helper.c',
-  'svm_helper.c',
-  'translate.c'), if_false: files('tcg-stub.c'))
 i386_ss.add(when: 'CONFIG_SEV', if_true: files('sev.c'), if_false: files('sev-stub.c'))
 
 i386_softmmu_ss = ss.source_set()
@@ -32,6 +19,7 @@ subdir('kvm')
 subdir('hax')
 subdir('whpx')
 subdir('hvf')
+subdir('tcg')
 
 target_arch += {'i386': i386_ss}
 target_softmmu_arch += {'i386': i386_softmmu_ss}
diff --git a/target/i386/tcg/meson.build b/target/i386/tcg/meson.build
new file mode 100644 (file)
index 0000000..0279422
--- /dev/null
@@ -0,0 +1,13 @@
+i386_ss.add(when: 'CONFIG_TCG', if_true: files(
+  'bpt_helper.c',
+  'cc_helper.c',
+  'excp_helper.c',
+  'fpu_helper.c',
+  'int_helper.c',
+  'mem_helper.c',
+  'misc_helper.c',
+  'mpx_helper.c',
+  'seg_helper.c',
+  'smm_helper.c',
+  'svm_helper.c',
+  'translate.c'), if_false: files('tcg-stub.c'))