[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 6/6] target/mips: introduce MTTCG-enabled builds
From: |
Aleksandar Markovic |
Subject: |
[Qemu-devel] [PATCH v2 6/6] target/mips: introduce MTTCG-enabled builds |
Date: |
Thu, 22 Feb 2018 19:31:43 +0100 |
From: Aleksandar Markovic <address@hidden>
Introduce MTTCG-enabled QEMU builds for mips32, mipsn32, and mips64.
Signed-off-by: Miodrag Dinic <address@hidden>
Signed-off-by: Aleksandar Markovic <address@hidden>
---
configure | 3 +++
target/mips/cpu.h | 2 ++
2 files changed, 5 insertions(+)
diff --git a/configure b/configure
index ed45a3c..9b338dd 100755
--- a/configure
+++ b/configure
@@ -6735,16 +6735,19 @@ case "$target_name" in
bflt="yes"
;;
mips|mipsel)
+ mttcg="yes"
TARGET_ARCH=mips
echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
;;
mipsn32|mipsn32el)
+ mttcg="yes"
TARGET_ARCH=mips64
TARGET_BASE_ARCH=mips
echo "TARGET_ABI_MIPSN32=y" >> $config_target_mak
echo "TARGET_ABI32=y" >> $config_target_mak
;;
mips64|mips64el)
+ mttcg="yes"
TARGET_ARCH=mips64
TARGET_BASE_ARCH=mips
echo "TARGET_ABI_MIPSN64=y" >> $config_target_mak
diff --git a/target/mips/cpu.h b/target/mips/cpu.h
index 3fa85b0..8f41952 100644
--- a/target/mips/cpu.h
+++ b/target/mips/cpu.h
@@ -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;
--
2.7.4
- [Qemu-devel] [PATCH v2 0/6] target-mips: support MTTCG feature, Aleksandar Markovic, 2018/02/22
- [Qemu-devel] [PATCH v2 5/6] hw/mips_cpc: kick a VP when putting it into Run state, Aleksandar Markovic, 2018/02/22
- [Qemu-devel] [PATCH v2 4/6] target/mips: hold BQL in mips_vpe_wake(), Aleksandar Markovic, 2018/02/22
- [Qemu-devel] [PATCH v2 6/6] target/mips: introduce MTTCG-enabled builds,
Aleksandar Markovic <=
- [Qemu-devel] [PATCH v2 3/6] hw/mips_int: hold BQL for all interrupt requests, Aleksandar Markovic, 2018/02/22
- [Qemu-devel] [PATCH v2 1/6] target/mips: compare virtual addresses in LL/SC sequence, Aleksandar Markovic, 2018/02/22
- [Qemu-devel] [PATCH v2 2/6] target/mips: reimplement SC instruction emulation and use cmpxchg, Aleksandar Markovic, 2018/02/22