mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
accel/tcg: Hoist cpu_get_tb_cpu_state decl to accl/tcg/cpu-ops.h
For some targets, simply remove the local definition. For other targets, move the inline definition out of line. Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
c2d5897d3b
commit
a59a876999
37 changed files with 243 additions and 285 deletions
|
@ -205,24 +205,6 @@ enum {
|
|||
TB_FLAGS_SKIP = 2,
|
||||
};
|
||||
|
||||
static inline void cpu_get_tb_cpu_state(CPUAVRState *env, vaddr *pc,
|
||||
uint64_t *cs_base, uint32_t *pflags)
|
||||
{
|
||||
uint32_t flags = 0;
|
||||
|
||||
*pc = env->pc_w * 2;
|
||||
*cs_base = 0;
|
||||
|
||||
if (env->fullacc) {
|
||||
flags |= TB_FLAGS_FULL_ACCESS;
|
||||
}
|
||||
if (env->skip) {
|
||||
flags |= TB_FLAGS_SKIP;
|
||||
}
|
||||
|
||||
*pflags = flags;
|
||||
}
|
||||
|
||||
static inline int cpu_interrupts_enabled(CPUAVRState *env)
|
||||
{
|
||||
return env->sregI != 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue