00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #include "config.h"
00021 #include "dyngen-exec.h"
00022
00023 register struct CPUARMState *env asm(AREG0);
00024 register uint32_t T0 asm(AREG1);
00025 register uint32_t T1 asm(AREG2);
00026
00027 #define M0 env->iwmmxt.val
00028
00029 #include "cpu.h"
00030 #include "exec-all.h"
00031
00032 static inline void env_to_regs(void)
00033 {
00034 }
00035
00036 static inline void regs_to_env(void)
00037 {
00038 }
00039
00040 static inline int cpu_halted(CPUState *env) {
00041 if (!env->halted)
00042 return 0;
00043
00044
00045
00046 if (env->interrupt_request &
00047 (CPU_INTERRUPT_FIQ | CPU_INTERRUPT_HARD | CPU_INTERRUPT_EXITTB)) {
00048 env->halted = 0;
00049 return 0;
00050 }
00051 return EXCP_HALTED;
00052 }
00053
00054 #if !defined(CONFIG_USER_ONLY)
00055 #include "softmmu_exec.h"
00056 #endif
00057
00058 void raise_exception(int);