]> Git Repo - qemu.git/commitdiff
tcg: enable MTTCG by default for PPC64 on x86
authorNikunj A Dadhania <[email protected]>
Thu, 27 Apr 2017 05:18:23 +0000 (10:48 +0530)
committerDavid Gibson <[email protected]>
Wed, 10 May 2017 23:45:15 +0000 (09:45 +1000)
This enables the multi-threaded system emulation by default for PPC64
guests using the x86_64 TCG back-end.

Signed-off-by: Nikunj A Dadhania <[email protected]>
Reviewed-by: Alex BennĂ©e <[email protected]>
Signed-off-by: David Gibson <[email protected]>
configure
target/ppc/cpu.h

index 7c020c076b1d32199de735f6f94dbc6ea2b39f79..84c37d411554aa8547e1b6ae0d46b73573ee927f 100755 (executable)
--- a/configure
+++ b/configure
@@ -6110,12 +6110,14 @@ case "$target_name" in
   ppc64)
     TARGET_BASE_ARCH=ppc
     TARGET_ABI_DIR=ppc
+    mttcg=yes
     gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
   ;;
   ppc64le)
     TARGET_ARCH=ppc64
     TARGET_BASE_ARCH=ppc
     TARGET_ABI_DIR=ppc
+    mttcg=yes
     gdb_xml_files="power64-core.xml power-fpu.xml power-altivec.xml power-spe.xml power-vsx.xml"
   ;;
   ppc64abi32)
index e0ff0412d63860cdb7a82a81750f46ae912a1833..ece535d6115c6d1d36c051536c0dd9faf96fe7c2 100644 (file)
@@ -30,6 +30,8 @@
 #define TARGET_LONG_BITS 64
 #define TARGET_PAGE_BITS 12
 
+#define TCG_GUEST_DEFAULT_MO 0
+
 /* Note that the official physical address space bits is 62-M where M
    is implementation dependent.  I've not looked up M for the set of
    cpus we emulate at the system level.  */
This page took 0.036566 seconds and 4 git commands to generate.