~vcs-imports/qemu/git

« back to all changes in this revision

Viewing changes to target-sh4/cpu.h

  • Committer: j_mayer
  • Date: 2007-10-14 07:07:08 UTC
  • Revision ID: git-v1:6ebbf390003270afece028facef4d9834df81a8c
Replace is_user variable with mmu_idx in softmmu core,
  allowing support of more than 2 mmu access modes.
Add backward compatibility is_user variable in targets code when needed.
Implement per target cpu_mmu_index function, avoiding duplicated code
  and #ifdef TARGET_xxx in softmmu core functions.
Implement per target mmu modes definitions. As an example, add PowerPC
  hypervisor mode definition and Alpha executive and kernel modes definitions.
Optimize PowerPC case, precomputing mmu_idx when MSR register changes
  and using the same definition in code translation code.


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3384 c046a42c-6fe2-441c-8c8c-71466251a162

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
#define UTLB_SIZE 64
78
78
#define ITLB_SIZE 4
79
79
 
 
80
#define NB_MMU_MODES 2
 
81
 
80
82
typedef struct CPUSH4State {
81
83
    uint32_t flags;             /* general execution flags */
82
84
    uint32_t gregs[24];         /* general registers */
134
136
#define cpu_gen_code cpu_sh4_gen_code
135
137
#define cpu_signal_handler cpu_sh4_signal_handler
136
138
 
 
139
/* MMU modes definitions */
 
140
#define MMU_MODE0_SUFFIX _kernel
 
141
#define MMU_MODE1_SUFFIX _user
 
142
#define MMU_USER_IDX 1
 
143
static inline int cpu_mmu_index (CPUState *env)
 
144
{
 
145
    return (env->sr & SR_MD) == 0 ? 1 : 0;
 
146
}
 
147
 
137
148
#include "cpu-all.h"
138
149
 
139
150
/* Memory access type */