From af5ad10728f8265846f64274edd69c01e6da77e5 Mon Sep 17 00:00:00 2001 From: bellard Date: Sun, 4 Jan 2004 23:28:12 +0000 Subject: [PATCH] infer access type git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@530 c046a42c-6fe2-441c-8c8c-71466251a162 --- translate-all.c | 38 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/translate-all.c b/translate-all.c index b02c87a..c8f3457 100644 --- a/translate-all.c +++ b/translate-all.c @@ -25,7 +25,7 @@ #include "config.h" -#define IN_OP_I386 +#define NO_CPU_IO_DEFS #include "cpu.h" #include "exec-all.h" #include "disas.h" @@ -192,7 +192,41 @@ int cpu_restore_state(TranslationBlock *tb, #elif defined(TARGET_SPARC) env->pc = gen_opc_pc[j]; #elif defined(TARGET_PPC) - env->nip = gen_opc_pc[j]; + { + int type; + /* for PPC, we need to look at the micro operation to get the + access type */ + env->nip = gen_opc_pc[j]; + switch(c) { +#if defined(CONFIG_USER_ONLY) +#define CASE3(op)\ + case INDEX_op_ ## op ## _raw +#else +#define CASE3(op)\ + case INDEX_op_ ## op ## _raw:\ + case INDEX_op_ ## op ## _user:\ + case INDEX_op_ ## op ## _kernel +#endif + + CASE3(stfd): + CASE3(stfs): + CASE3(lfd): + CASE3(lfs): + type = ACCESS_FLOAT; + break; + CASE3(stwcx): + type = ACCESS_RES; + break; + CASE3(eciwx): + CASE3(ecowx): + type = ACCESS_EXT; + break; + default: + type = ACCESS_INT; + break; + } + env->access_type = type; + } #endif return 0; } -- 1.7.9.5