diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-11-20 10:32:34 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-11-20 10:32:34 +0000 |
commit | a316d3353cefb6634f8007c8bb18f4744a66766b (patch) | |
tree | 4f3161b2dc1f0697e94ae890f3a40fb792c5ae11 /target-sparc | |
parent | 6e256c935cbd5ce9bf1891477188549bbb43e55b (diff) |
added CPU_COMMON and CPUState.tb_jmp_cache[]
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1630 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-sparc')
-rw-r--r-- | target-sparc/cpu.h | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/target-sparc/cpu.h b/target-sparc/cpu.h index 999d5d7e68..baff0c4602 100644 --- a/target-sparc/cpu.h +++ b/target-sparc/cpu.h @@ -166,21 +166,11 @@ typedef struct CPUSPARCState { int exception_index; int interrupt_index; int interrupt_request; - struct TranslationBlock *current_tb; - void *opaque; /* NOTE: we allow 8 more registers to handle wrapping */ target_ulong regbase[NWINDOWS * 16 + 8]; - /* in order to avoid passing too many arguments to the memory - write helpers, we store some rarely used information in the CPU - context) */ - unsigned long mem_write_pc; /* host pc at which the memory was - written */ - target_ulong mem_write_vaddr; /* target virtual addr at which the - memory was written */ - /* 0 = kernel, 1 = user (may have 2 = kernel code, 3 = user code ?) */ - CPUTLBEntry tlb_read[2][CPU_TLB_SIZE]; - CPUTLBEntry tlb_write[2][CPU_TLB_SIZE]; + CPU_COMMON + /* MMU regs */ #if defined(TARGET_SPARC64) uint64_t lsu; @@ -222,12 +212,6 @@ typedef struct CPUSPARCState { #if !defined(TARGET_SPARC64) && !defined(reg_T2) target_ulong t2; #endif - - /* ice debug support */ - target_ulong breakpoints[MAX_BREAKPOINTS]; - int nb_breakpoints; - int singlestep_enabled; /* XXX: should use CPU single step mode instead */ - } CPUSPARCState; #if defined(TARGET_SPARC64) #define GET_FSR32(env) (env->fsr & 0xcfc1ffff) |