]> Git Repo - qemu.git/commitdiff
target/mips: introduce MTTCG-enabled builds
authorAleksandar Markovic <[email protected]>
Mon, 11 Feb 2019 16:09:29 +0000 (17:09 +0100)
committerAleksandar Markovic <[email protected]>
Thu, 14 Feb 2019 16:47:28 +0000 (17:47 +0100)
Introduce MTTCG-enabled QEMU builds for mips32, mipsn32, and mips64.

Signed-off-by: Miodrag Dinic <[email protected]>
Signed-off-by: Aleksandar Markovic <[email protected]>
Acked-by: Alex Bennée <[email protected]>
Reviewed-by: Alex Bennée <[email protected]>
configure
target/mips/cpu.h

index fbd0825488c66b5e2d45c6aba0d2e7ab55ff7886..f0f75186a7fa72ab2e3cccc89493a60be773c87f 100755 (executable)
--- a/configure
+++ b/configure
@@ -7192,11 +7192,13 @@ case "$target_name" in
     target_compiler=$cross_cc_microblaze
   ;;
   mips|mipsel)
+    mttcg="yes"
     TARGET_ARCH=mips
     target_compiler=$cross_cc_mips
     echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
   ;;
   mipsn32|mipsn32el)
+    mttcg="yes"
     TARGET_ARCH=mips64
     TARGET_BASE_ARCH=mips
     target_compiler=$cross_cc_mipsn32
@@ -7204,6 +7206,7 @@ case "$target_name" in
     echo "TARGET_ABI32=y" >> $config_target_mak
   ;;
   mips64|mips64el)
+    mttcg="yes"
     TARGET_ARCH=mips64
     TARGET_BASE_ARCH=mips
     target_compiler=$cross_cc_mips64
index eccee375cb55ca0cb16cbad4cec823123d9d465b..a10eeb0de3a8bb268cdaad569b5d5038be815d08 100644 (file)
@@ -11,6 +11,8 @@
 #include "exec/cpu-defs.h"
 #include "fpu/softfloat.h"
 
+#define TCG_GUEST_DEFAULT_MO (0)
+
 struct CPUMIPSState;
 
 typedef struct CPUMIPSTLBContext CPUMIPSTLBContext;
This page took 0.036785 seconds and 4 git commands to generate.