diff options
author | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-16 14:11:28 +0000 |
---|---|---|
committer | j_mayer <j_mayer@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-16 14:11:28 +0000 |
commit | 7863667f35531557f10e7f920e4361f621a14e3f (patch) | |
tree | 87b0adcf62fc8f3f7cb3f331fad68f7d5b39a6eb /translate-all.c | |
parent | suppressed tgetx and tputx (initial patch by Thayne Harbaugh) (diff) | |
download | qemu-kvm-7863667f35531557f10e7f920e4361f621a14e3f.tar.gz qemu-kvm-7863667f35531557f10e7f920e4361f621a14e3f.tar.bz2 qemu-kvm-7863667f35531557f10e7f920e4361f621a14e3f.zip |
Always make PowerPC hypervisor mode memory accesses and instructions
available for full system emulation, then removing all #if TARGET_PPC64H
from micro-ops and code translator.
Add new macros to dramatically simplify memory access tables definitions
in target-ppc/translate.c.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3654 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'translate-all.c')
-rw-r--r-- | translate-all.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/translate-all.c b/translate-all.c index 9f602be36..e9eef65d5 100644 --- a/translate-all.c +++ b/translate-all.c @@ -264,7 +264,8 @@ int cpu_restore_state(TranslationBlock *tb, #else #define CASE3(op)\ case INDEX_op_ ## op ## _user:\ - case INDEX_op_ ## op ## _kernel + case INDEX_op_ ## op ## _kernel:\ + case INDEX_op_ ## op ## _hypv #endif CASE3(stfd): |