mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-09 18:44:58 -06:00
tcg-op.h: reorder _i64 instructions common to 32- and 64-bit targets
Use the same order as the _i32 version (pure code move). Suggested by Laurent Laurent Desnogues. Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5606 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
abbaab5c6d
commit
f02bb954a5
1 changed files with 15 additions and 15 deletions
30
tcg/tcg-op.h
30
tcg/tcg-op.h
|
@ -1055,21 +1055,6 @@ static inline void tcg_gen_addi_i64(TCGv ret, TCGv arg1, int64_t arg2)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline void tcg_gen_brcondi_i64(int cond, TCGv arg1, int64_t arg2,
|
|
||||||
int label_index)
|
|
||||||
{
|
|
||||||
TCGv t0 = tcg_const_i64(arg2);
|
|
||||||
tcg_gen_brcond_i64(cond, arg1, t0, label_index);
|
|
||||||
tcg_temp_free(t0);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void tcg_gen_muli_i64(TCGv ret, TCGv arg1, int64_t arg2)
|
|
||||||
{
|
|
||||||
TCGv t0 = tcg_const_i64(arg2);
|
|
||||||
tcg_gen_mul_i64(ret, arg1, t0);
|
|
||||||
tcg_temp_free(t0);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void tcg_gen_subfi_i64(TCGv ret, int64_t arg1, TCGv arg2)
|
static inline void tcg_gen_subfi_i64(TCGv ret, int64_t arg1, TCGv arg2)
|
||||||
{
|
{
|
||||||
TCGv t0 = tcg_const_i64(arg1);
|
TCGv t0 = tcg_const_i64(arg1);
|
||||||
|
@ -1088,6 +1073,21 @@ static inline void tcg_gen_subi_i64(TCGv ret, TCGv arg1, int64_t arg2)
|
||||||
tcg_temp_free(t0);
|
tcg_temp_free(t0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
static inline void tcg_gen_brcondi_i64(int cond, TCGv arg1, int64_t arg2,
|
||||||
|
int label_index)
|
||||||
|
{
|
||||||
|
TCGv t0 = tcg_const_i64(arg2);
|
||||||
|
tcg_gen_brcond_i64(cond, arg1, t0, label_index);
|
||||||
|
tcg_temp_free(t0);
|
||||||
|
}
|
||||||
|
|
||||||
|
static inline void tcg_gen_muli_i64(TCGv ret, TCGv arg1, int64_t arg2)
|
||||||
|
{
|
||||||
|
TCGv t0 = tcg_const_i64(arg2);
|
||||||
|
tcg_gen_mul_i64(ret, arg1, t0);
|
||||||
|
tcg_temp_free(t0);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/***************************************/
|
/***************************************/
|
||||||
/* optional operations */
|
/* optional operations */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue