Lines Matching refs:CPUState
25 void cpu_exec_step_atomic(CPUState *cpu);
38 void tcg_iommu_init_notifier_list(CPUState *cpu);
39 void tcg_iommu_free_notifier_list(CPUState *cpu);
123 void cpu_address_space_init(CPUState *cpu, int asidx,
132 void cpu_destroy_address_spaces(CPUState *cpu);
170 bool cpu_unwind_state_data(CPUState *cpu, uintptr_t host_pc, uint64_t *data);
182 bool cpu_restore_state(CPUState *cpu, uintptr_t host_pc);
196 static inline bool cpu_loop_exit_requested(CPUState *cpu)
201 G_NORETURN void cpu_loop_exit_noexc(CPUState *cpu);
202 G_NORETURN void cpu_loop_exit_atomic(CPUState *cpu, uintptr_t pc);
203 G_NORETURN void cpu_loop_exit_restore(CPUState *cpu, uintptr_t pc);
205 G_NORETURN void cpu_loop_exit(CPUState *cpu);
208 int cpu_exec(CPUState *cpu);
218 return (void *)env - sizeof(CPUState);
225 * Return the CPUState associated with the environment.
227 static inline const CPUState *env_cpu_const(const CPUArchState *env)
229 return (void *)env - sizeof(CPUState);
236 * Return the CPUState associated with the environment.
238 static inline CPUState *env_cpu(CPUArchState *env)
240 return (CPUState *)env_cpu_const(env);