mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 10:34:58 -06:00
tcg: Allow target-specific implementation of NOR.
Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
9940a96bc8
commit
32d98fbd10
10 changed files with 29 additions and 0 deletions
11
tcg/tcg-op.h
11
tcg/tcg-op.h
|
@ -1786,14 +1786,25 @@ static inline void tcg_gen_nand_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
|
|||
|
||||
static inline void tcg_gen_nor_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
|
||||
{
|
||||
#ifdef TCG_TARGET_HAS_nor_i32
|
||||
tcg_gen_op3_i32(INDEX_op_nor_i32, ret, arg1, arg2);
|
||||
#else
|
||||
tcg_gen_or_i32(ret, arg1, arg2);
|
||||
tcg_gen_not_i32(ret, ret);
|
||||
#endif
|
||||
}
|
||||
|
||||
static inline void tcg_gen_nor_i64(TCGv_i64 ret, TCGv_i64 arg1, TCGv_i64 arg2)
|
||||
{
|
||||
#ifdef TCG_TARGET_HAS_nor_i64
|
||||
tcg_gen_op3_i64(INDEX_op_nor_i64, ret, arg1, arg2);
|
||||
#elif defined(TCG_TARGET_HAS_nor_i32) && TCG_TARGET_REG_BITS == 32
|
||||
tcg_gen_nor_i32(TCGV_LOW(ret), TCGV_LOW(arg1), TCGV_LOW(arg2));
|
||||
tcg_gen_nor_i32(TCGV_HIGH(ret), TCGV_HIGH(arg1), TCGV_HIGH(arg2));
|
||||
#else
|
||||
tcg_gen_or_i64(ret, arg1, arg2);
|
||||
tcg_gen_not_i64(ret, ret);
|
||||
#endif
|
||||
}
|
||||
|
||||
static inline void tcg_gen_orc_i32(TCGv_i32 ret, TCGv_i32 arg1, TCGv_i32 arg2)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue