mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
Make MIPS MT implementation more cache friendly.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3981 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
577d8dd437
commit
d0dc7dc327
12 changed files with 96 additions and 96 deletions
|
@ -142,7 +142,7 @@ typedef struct mips_def_t mips_def_t;
|
|||
typedef struct CPUMIPSState CPUMIPSState;
|
||||
struct CPUMIPSState {
|
||||
/* General integer registers */
|
||||
target_ulong gpr[32][MIPS_SHADOW_SET_MAX];
|
||||
target_ulong gpr[MIPS_SHADOW_SET_MAX][32];
|
||||
/* Special registers */
|
||||
target_ulong PC[MIPS_TC_MAX];
|
||||
#if TARGET_LONG_BITS > HOST_LONG_BITS
|
||||
|
@ -150,9 +150,9 @@ struct CPUMIPSState {
|
|||
target_ulong t1;
|
||||
target_ulong t2;
|
||||
#endif
|
||||
target_ulong HI[MIPS_DSP_ACC][MIPS_TC_MAX];
|
||||
target_ulong LO[MIPS_DSP_ACC][MIPS_TC_MAX];
|
||||
target_ulong ACX[MIPS_DSP_ACC][MIPS_TC_MAX];
|
||||
target_ulong HI[MIPS_TC_MAX][MIPS_DSP_ACC];
|
||||
target_ulong LO[MIPS_TC_MAX][MIPS_DSP_ACC];
|
||||
target_ulong ACX[MIPS_TC_MAX][MIPS_DSP_ACC];
|
||||
target_ulong DSPControl[MIPS_TC_MAX];
|
||||
|
||||
CPUMIPSMVPContext *mvp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue