From 790b22c3e89a8a1e9133680603a1f8110c15ada7 Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Thu, 22 Oct 2009 14:55:37 +0200 Subject: [PATCH] target-ppc: move often used CPU fields at the top of the structure Signed-off-by: Aurelien Jarno --- target-ppc/cpu.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h index 27f523f..f1d7d80 100644 --- a/target-ppc/cpu.h +++ b/target-ppc/cpu.h @@ -579,11 +579,14 @@ struct CPUPPCState { /* floating point status and control register */ uint32_t fpscr; - CPU_COMMON + /* Next instruction pointer */ + target_ulong nip; int access_type; /* when a memory exception occurs, the access type is stored here */ + CPU_COMMON + /* MMU context - only relevant for full system emulation */ #if !defined(CONFIG_USER_ONLY) #if defined(TARGET_PPC64) @@ -663,9 +666,6 @@ struct CPUPPCState { #endif /* Those resources are used only during code translation */ - /* Next instruction pointer */ - target_ulong nip; - /* opcode handlers */ opc_handler_t *opcodes[0x40]; -- 2.7.4