~vcs-imports/qemu/git

« back to all changes in this revision

Viewing changes to target-alpha/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:
256
256
    void (*call_pal)(CPUAlphaState *env, uint32_t palcode);
257
257
};
258
258
 
 
259
#define NB_MMU_MODES 4
 
260
 
259
261
struct CPUAlphaState {
260
262
    uint64_t ir[31];
261
263
    float64  fir[31];
302
304
#define cpu_gen_code cpu_alpha_gen_code
303
305
#define cpu_signal_handler cpu_alpha_signal_handler
304
306
 
 
307
/* MMU modes definitions */
 
308
#define MMU_MODE0_SUFFIX _kernel
 
309
#define MMU_MODE1_SUFFIX _executive
 
310
#define MMU_MODE2_SUFFIX _supervisor
 
311
#define MMU_MODE3_SUFFIX _user
 
312
#define MMU_USER_IDX 3
 
313
static inline int cpu_mmu_index (CPUState *env)
 
314
{
 
315
    return (env->ps >> 3) & 3;
 
316
}
 
317
 
305
318
#include "cpu-all.h"
306
319
 
307
320
enum {