mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
tcg: optimize tcg_gen_bswap16_i32
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6831 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
84aafb06ff
commit
dfa1a3f1c4
1 changed files with 5 additions and 8 deletions
13
tcg/tcg-op.h
13
tcg/tcg-op.h
|
@ -1207,16 +1207,13 @@ static inline void tcg_gen_bswap16_i32(TCGv_i32 ret, TCGv_i32 arg)
|
|||
#ifdef TCG_TARGET_HAS_bswap16_i32
|
||||
tcg_gen_op2_i32(INDEX_op_bswap16_i32, ret, arg);
|
||||
#else
|
||||
TCGv_i32 t0, t1;
|
||||
t0 = tcg_temp_new_i32();
|
||||
t1 = tcg_temp_new_i32();
|
||||
TCGv_i32 t0 = tcg_temp_new_i32();
|
||||
|
||||
tcg_gen_shri_i32(t0, arg, 8);
|
||||
tcg_gen_andi_i32(t1, arg, 0x000000ff);
|
||||
tcg_gen_shli_i32(t1, t1, 8);
|
||||
tcg_gen_or_i32(ret, t0, t1);
|
||||
tcg_gen_ext8u_i32(t0, arg);
|
||||
tcg_gen_shli_i32(t0, t0, 8);
|
||||
tcg_gen_shri_i32(ret, arg, 8);
|
||||
tcg_gen_or_i32(ret, ret, t0);
|
||||
tcg_temp_free_i32(t0);
|
||||
tcg_temp_free_i32(t1);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue