mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
target-arm: Implement abs_i32 inline rather than as a helper
Implement abs_i32 inline (with movcond) rather than using a helper function. Reviewed-by: Aurelien Jarno <aurelien@aurel32.net> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
parent
ee6fa5593e
commit
36c91fd115
3 changed files with 9 additions and 8 deletions
|
@ -462,8 +462,15 @@ static void gen_sar(TCGv dest, TCGv t0, TCGv t1)
|
|||
tcg_temp_free_i32(tmp1);
|
||||
}
|
||||
|
||||
/* FIXME: Implement this natively. */
|
||||
#define tcg_gen_abs_i32(t0, t1) gen_helper_abs(t0, t1)
|
||||
static void tcg_gen_abs_i32(TCGv dest, TCGv src)
|
||||
{
|
||||
TCGv c0 = tcg_const_i32(0);
|
||||
TCGv tmp = tcg_temp_new_i32();
|
||||
tcg_gen_neg_i32(tmp, src);
|
||||
tcg_gen_movcond_i32(TCG_COND_GT, dest, src, c0, src, tmp);
|
||||
tcg_temp_free_i32(c0);
|
||||
tcg_temp_free_i32(tmp);
|
||||
}
|
||||
|
||||
static void shifter_out_im(TCGv var, int shift)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue