Commit bd7d9a6d7bed629cf8363cf8283f1d88946faddd
1 parent
f78fb44e
ppc: cleanup register types
- use target_ulong for gpr and dyngen registers - remove ppc_gpr_t type - define 64-bit dyngen registers for GPE register on 32-bit targets Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5154 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
4 changed files
with
21 additions
and
21 deletions
target-ppc/cpu.h
@@ -27,13 +27,11 @@ | @@ -27,13 +27,11 @@ | ||
27 | 27 | ||
28 | #if defined (TARGET_PPC64) | 28 | #if defined (TARGET_PPC64) |
29 | /* PowerPC 64 definitions */ | 29 | /* PowerPC 64 definitions */ |
30 | -typedef uint64_t ppc_gpr_t; | ||
31 | #define TARGET_LONG_BITS 64 | 30 | #define TARGET_LONG_BITS 64 |
32 | #define TARGET_PAGE_BITS 12 | 31 | #define TARGET_PAGE_BITS 12 |
33 | 32 | ||
34 | #else /* defined (TARGET_PPC64) */ | 33 | #else /* defined (TARGET_PPC64) */ |
35 | /* PowerPC 32 definitions */ | 34 | /* PowerPC 32 definitions */ |
36 | -typedef uint32_t ppc_gpr_t; | ||
37 | #define TARGET_LONG_BITS 32 | 35 | #define TARGET_LONG_BITS 32 |
38 | 36 | ||
39 | #if defined(TARGET_PPCEMB) | 37 | #if defined(TARGET_PPCEMB) |
@@ -531,19 +529,22 @@ struct CPUPPCState { | @@ -531,19 +529,22 @@ struct CPUPPCState { | ||
531 | /* First are the most commonly used resources | 529 | /* First are the most commonly used resources |
532 | * during translated code execution | 530 | * during translated code execution |
533 | */ | 531 | */ |
534 | -#if (TARGET_LONG_BITS > HOST_LONG_BITS) || !defined(TARGET_PPC64) | 532 | +#if TARGET_LONG_BITS > HOST_LONG_BITS |
533 | + target_ulong t0, t1, t2; | ||
534 | +#endif | ||
535 | +#if !defined(TARGET_PPC64) | ||
535 | /* temporary fixed-point registers | 536 | /* temporary fixed-point registers |
536 | - * used to emulate 64 bits registers on 32 bits hosts | 537 | + * used to emulate 64 bits registers on 32 bits targets |
537 | */ | 538 | */ |
538 | - uint64_t t0, t1, t2; | 539 | + uint64_t t0_64, t1_64, t2_64; |
539 | #endif | 540 | #endif |
540 | ppc_avr_t avr0, avr1, avr2; | 541 | ppc_avr_t avr0, avr1, avr2; |
541 | 542 | ||
542 | /* general purpose registers */ | 543 | /* general purpose registers */ |
543 | - ppc_gpr_t gpr[32]; | 544 | + target_ulong gpr[32]; |
544 | #if !defined(TARGET_PPC64) | 545 | #if !defined(TARGET_PPC64) |
545 | /* Storage for GPR MSB, used by the SPE extension */ | 546 | /* Storage for GPR MSB, used by the SPE extension */ |
546 | - ppc_gpr_t gprh[32]; | 547 | + target_ulong gprh[32]; |
547 | #endif | 548 | #endif |
548 | /* LR */ | 549 | /* LR */ |
549 | target_ulong lr; | 550 | target_ulong lr; |
@@ -561,7 +562,7 @@ struct CPUPPCState { | @@ -561,7 +562,7 @@ struct CPUPPCState { | ||
561 | /* machine state register */ | 562 | /* machine state register */ |
562 | target_ulong msr; | 563 | target_ulong msr; |
563 | /* temporary general purpose registers */ | 564 | /* temporary general purpose registers */ |
564 | - ppc_gpr_t tgpr[4]; /* Used to speed-up TLB assist handlers */ | 565 | + target_ulong tgpr[4]; /* Used to speed-up TLB assist handlers */ |
565 | 566 | ||
566 | /* Floating point execution context */ | 567 | /* Floating point execution context */ |
567 | /* temporary float registers */ | 568 | /* temporary float registers */ |
@@ -614,7 +615,7 @@ struct CPUPPCState { | @@ -614,7 +615,7 @@ struct CPUPPCState { | ||
614 | ppc_avr_t avr[32]; | 615 | ppc_avr_t avr[32]; |
615 | uint32_t vscr; | 616 | uint32_t vscr; |
616 | /* SPE registers */ | 617 | /* SPE registers */ |
617 | - ppc_gpr_t spe_acc; | 618 | + target_ulong spe_acc; |
618 | float_status spe_status; | 619 | float_status spe_status; |
619 | uint32_t spe_fscr; | 620 | uint32_t spe_fscr; |
620 | 621 |
target-ppc/exec.h
@@ -39,17 +39,16 @@ register struct CPUPPCState *env asm(AREG0); | @@ -39,17 +39,16 @@ register struct CPUPPCState *env asm(AREG0); | ||
39 | #define T2 (env->t2) | 39 | #define T2 (env->t2) |
40 | #define TDX "%016" PRIx64 | 40 | #define TDX "%016" PRIx64 |
41 | #else | 41 | #else |
42 | -register unsigned long T0 asm(AREG1); | ||
43 | -register unsigned long T1 asm(AREG2); | ||
44 | -register unsigned long T2 asm(AREG3); | 42 | +register target_ulong T0 asm(AREG1); |
43 | +register target_ulong T1 asm(AREG2); | ||
44 | +register target_ulong T2 asm(AREG3); | ||
45 | #define TDX "%016lx" | 45 | #define TDX "%016lx" |
46 | #endif | 46 | #endif |
47 | /* We may, sometime, need 64 bits registers on 32 bits targets */ | 47 | /* We may, sometime, need 64 bits registers on 32 bits targets */ |
48 | -#if (HOST_LONG_BITS == 32) | ||
49 | -/* no registers can be used */ | ||
50 | -#define T0_64 (env->t0) | ||
51 | -#define T1_64 (env->t1) | ||
52 | -#define T2_64 (env->t2) | 48 | +#if !defined(TARGET_PPC64) |
49 | +#define T0_64 (env->t0_64) | ||
50 | +#define T1_64 (env->t1_64) | ||
51 | +#define T2_64 (env->t2_64) | ||
53 | #else | 52 | #else |
54 | #define T0_64 T0 | 53 | #define T0_64 T0 |
55 | #define T1_64 T1 | 54 | #define T1_64 T1 |
target-ppc/helper_regs.h
@@ -42,7 +42,7 @@ static always_inline void hreg_store_xer (CPUPPCState *env, target_ulong value) | @@ -42,7 +42,7 @@ static always_inline void hreg_store_xer (CPUPPCState *env, target_ulong value) | ||
42 | /* Swap temporary saved registers with GPRs */ | 42 | /* Swap temporary saved registers with GPRs */ |
43 | static always_inline void hreg_swap_gpr_tgpr (CPUPPCState *env) | 43 | static always_inline void hreg_swap_gpr_tgpr (CPUPPCState *env) |
44 | { | 44 | { |
45 | - ppc_gpr_t tmp; | 45 | + target_ulong tmp; |
46 | 46 | ||
47 | tmp = env->gpr[0]; | 47 | tmp = env->gpr[0]; |
48 | env->gpr[0] = env->tgpr[0]; | 48 | env->gpr[0] = env->tgpr[0]; |
target-ppc/translate.c
@@ -90,13 +90,13 @@ void ppc_translate_init(void) | @@ -90,13 +90,13 @@ void ppc_translate_init(void) | ||
90 | #endif | 90 | #endif |
91 | #if !defined(TARGET_PPC64) | 91 | #if !defined(TARGET_PPC64) |
92 | cpu_T64[0] = tcg_global_mem_new(TCG_TYPE_I64, | 92 | cpu_T64[0] = tcg_global_mem_new(TCG_TYPE_I64, |
93 | - TCG_AREG0, offsetof(CPUState, t0), | 93 | + TCG_AREG0, offsetof(CPUState, t0_64), |
94 | "T0_64"); | 94 | "T0_64"); |
95 | cpu_T64[1] = tcg_global_mem_new(TCG_TYPE_I64, | 95 | cpu_T64[1] = tcg_global_mem_new(TCG_TYPE_I64, |
96 | - TCG_AREG0, offsetof(CPUState, t1), | 96 | + TCG_AREG0, offsetof(CPUState, t1_64), |
97 | "T1_64"); | 97 | "T1_64"); |
98 | cpu_T64[2] = tcg_global_mem_new(TCG_TYPE_I64, | 98 | cpu_T64[2] = tcg_global_mem_new(TCG_TYPE_I64, |
99 | - TCG_AREG0, offsetof(CPUState, t2), | 99 | + TCG_AREG0, offsetof(CPUState, t2_64), |
100 | "T2_64"); | 100 | "T2_64"); |
101 | #endif | 101 | #endif |
102 | 102 |