mirror of https://gitee.com/openkylin/qemu.git
target/mips: introduce MTTCG-enabled builds
Introduce MTTCG-enabled QEMU builds for mips32, mipsn32, and mips64. Signed-off-by: Miodrag Dinic <miodrag.dinic@imgtec.com> Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com> Acked-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
This commit is contained in:
parent
f5117fd285
commit
0454728c22
|
@ -7192,11 +7192,13 @@ case "$target_name" in
|
||||||
target_compiler=$cross_cc_microblaze
|
target_compiler=$cross_cc_microblaze
|
||||||
;;
|
;;
|
||||||
mips|mipsel)
|
mips|mipsel)
|
||||||
|
mttcg="yes"
|
||||||
TARGET_ARCH=mips
|
TARGET_ARCH=mips
|
||||||
target_compiler=$cross_cc_mips
|
target_compiler=$cross_cc_mips
|
||||||
echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
|
echo "TARGET_ABI_MIPSO32=y" >> $config_target_mak
|
||||||
;;
|
;;
|
||||||
mipsn32|mipsn32el)
|
mipsn32|mipsn32el)
|
||||||
|
mttcg="yes"
|
||||||
TARGET_ARCH=mips64
|
TARGET_ARCH=mips64
|
||||||
TARGET_BASE_ARCH=mips
|
TARGET_BASE_ARCH=mips
|
||||||
target_compiler=$cross_cc_mipsn32
|
target_compiler=$cross_cc_mipsn32
|
||||||
|
@ -7204,6 +7206,7 @@ case "$target_name" in
|
||||||
echo "TARGET_ABI32=y" >> $config_target_mak
|
echo "TARGET_ABI32=y" >> $config_target_mak
|
||||||
;;
|
;;
|
||||||
mips64|mips64el)
|
mips64|mips64el)
|
||||||
|
mttcg="yes"
|
||||||
TARGET_ARCH=mips64
|
TARGET_ARCH=mips64
|
||||||
TARGET_BASE_ARCH=mips
|
TARGET_BASE_ARCH=mips
|
||||||
target_compiler=$cross_cc_mips64
|
target_compiler=$cross_cc_mips64
|
||||||
|
|
|
@ -11,6 +11,8 @@
|
||||||
#include "exec/cpu-defs.h"
|
#include "exec/cpu-defs.h"
|
||||||
#include "fpu/softfloat.h"
|
#include "fpu/softfloat.h"
|
||||||
|
|
||||||
|
#define TCG_GUEST_DEFAULT_MO (0)
|
||||||
|
|
||||||
struct CPUMIPSState;
|
struct CPUMIPSState;
|
||||||
|
|
||||||
typedef struct CPUMIPSTLBContext CPUMIPSTLBContext;
|
typedef struct CPUMIPSTLBContext CPUMIPSTLBContext;
|
||||||
|
|
Loading…
Reference in New Issue