target/arm: fold do_raise_exception into raise_exception
Now that there are no other users of do_raise_exception, fold it into raise_exception. Cc: Richard Henderson <richard.henderson@linaro.org> Cc: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Jamie Iles <jamie@nuviainc.com> Reviewed-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
6e0c60a2be
commit
154acaba0e
@ -27,8 +27,8 @@
|
|||||||
#define SIGNBIT (uint32_t)0x80000000
|
#define SIGNBIT (uint32_t)0x80000000
|
||||||
#define SIGNBIT64 ((uint64_t)1 << 63)
|
#define SIGNBIT64 ((uint64_t)1 << 63)
|
||||||
|
|
||||||
static CPUState *do_raise_exception(CPUARMState *env, uint32_t excp,
|
void raise_exception(CPUARMState *env, uint32_t excp,
|
||||||
uint32_t syndrome, uint32_t target_el)
|
uint32_t syndrome, uint32_t target_el)
|
||||||
{
|
{
|
||||||
CPUState *cs = env_cpu(env);
|
CPUState *cs = env_cpu(env);
|
||||||
|
|
||||||
@ -49,14 +49,6 @@ static CPUState *do_raise_exception(CPUARMState *env, uint32_t excp,
|
|||||||
cs->exception_index = excp;
|
cs->exception_index = excp;
|
||||||
env->exception.syndrome = syndrome;
|
env->exception.syndrome = syndrome;
|
||||||
env->exception.target_el = target_el;
|
env->exception.target_el = target_el;
|
||||||
|
|
||||||
return cs;
|
|
||||||
}
|
|
||||||
|
|
||||||
void raise_exception(CPUARMState *env, uint32_t excp,
|
|
||||||
uint32_t syndrome, uint32_t target_el)
|
|
||||||
{
|
|
||||||
CPUState *cs = do_raise_exception(env, excp, syndrome, target_el);
|
|
||||||
cpu_loop_exit(cs);
|
cpu_loop_exit(cs);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user