HomeSort by relevance Sort by last modified time
    Searched refs:CPUARMState (Results 1 - 5 of 5) sorted by null

  /external/qemu/target-arm/
cpu.h 27 #define CPUState struct CPUARMState
73 typedef struct CPUARMState {
167 int (*get_irq_vector)(struct CPUARMState *);
207 } CPUARMState;
209 CPUARMState *cpu_arm_init(const char *cpu_model);
211 int cpu_arm_exec(CPUARMState *s);
212 void cpu_arm_close(CPUARMState *s);
213 void do_interrupt(CPUARMState *);
214 void switch_mode(CPUARMState *, int);
215 uint32_t do_arm_semihosting(CPUARMState *env)
    [all...]
exec.h 23 register struct CPUARMState *env asm(AREG0);
machine.c 7 CPUARMState *env = (CPUARMState *)opaque;
98 CPUARMState *env = (CPUARMState *)opaque;
helper.c 37 static inline void set_feature(CPUARMState *env, int feature)
42 static void cpu_reset_model_id(CPUARMState *env, uint32_t id)
165 void cpu_reset(CPUARMState *env)
175 memset(env, 0, offsetof(CPUARMState, breakpoints));
247 CPUARMState *cpu_arm_init(const char *cpu_model)
249 CPUARMState *env;
256 env = qemu_mallocz(sizeof(CPUARMState));
337 void cpu_arm_close(CPUARMState *env)
342 uint32_t cpsr_read(CPUARMState *env)
353 void cpsr_write(CPUARMState *env, uint32_t val, uint32_t mask
    [all...]
translate.c 1176 return offsetof(CPUARMState, vfp.regs[reg]);
1178 return offsetof(CPUARMState, vfp.regs[reg >> 1])
1181 return offsetof(CPUARMState, vfp.regs[reg >> 1])
    [all...]

Completed in 35 milliseconds