diff mbox

tcg/arm: Use tcg_out_mov_reg rather than inline equivalent code

Message ID 1348754143-18251-1-git-send-email-peter.maydell@linaro.org
State New
Headers show

Commit Message

Peter Maydell Sept. 27, 2012, 1:55 p.m. UTC
Use the recently introduced tcg_out_mov_reg() function rather than
the equivalent inline code.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
This is a minor follow-on cleanup patch after commit 9716ef3b1.

 tcg/arm/tcg-target.c |   15 +++------------
 1 file changed, 3 insertions(+), 12 deletions(-)

Comments

Aurelien Jarno Sept. 27, 2012, 7:57 p.m. UTC | #1
On Thu, Sep 27, 2012 at 02:55:43PM +0100, Peter Maydell wrote:
> Use the recently introduced tcg_out_mov_reg() function rather than
> the equivalent inline code.
> 
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> This is a minor follow-on cleanup patch after commit 9716ef3b1.
> 
>  tcg/arm/tcg-target.c |   15 +++------------
>  1 file changed, 3 insertions(+), 12 deletions(-)
> 
> diff --git a/tcg/arm/tcg-target.c b/tcg/arm/tcg-target.c
> index 2bad0a2..5e8dbdd 100644
> --- a/tcg/arm/tcg-target.c
> +++ b/tcg/arm/tcg-target.c
> @@ -1197,20 +1197,11 @@ static inline void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args, int opc)
>      case 1:
>      case 2:
>      default:
> -        if (data_reg != TCG_REG_R0) {
> -            tcg_out_dat_reg(s, COND_AL, ARITH_MOV,
> -                            data_reg, 0, TCG_REG_R0, SHIFT_IMM_LSL(0));
> -        }
> +        tcg_out_mov_reg(s, COND_AL, data_reg, TCG_REG_R0);
>          break;
>      case 3:
> -        if (data_reg != TCG_REG_R0) {
> -            tcg_out_dat_reg(s, COND_AL, ARITH_MOV,
> -                            data_reg, 0, TCG_REG_R0, SHIFT_IMM_LSL(0));
> -        }
> -        if (data_reg2 != TCG_REG_R1) {
> -            tcg_out_dat_reg(s, COND_AL, ARITH_MOV,
> -                            data_reg2, 0, TCG_REG_R1, SHIFT_IMM_LSL(0));
> -        }
> +        tcg_out_mov_reg(s, COND_AL, data_reg, TCG_REG_R0);
> +        tcg_out_mov_reg(s, COND_AL, data_reg2, TCG_REG_R1);
>          break;
>      }

Reviewed-by: Aurelien Jarno <aurelien@aurel32.net>
Stefan Hajnoczi Oct. 5, 2012, 12:21 p.m. UTC | #2
On Thu, Sep 27, 2012 at 02:55:43PM +0100, Peter Maydell wrote:
> Use the recently introduced tcg_out_mov_reg() function rather than
> the equivalent inline code.
> 
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> This is a minor follow-on cleanup patch after commit 9716ef3b1.
> 
>  tcg/arm/tcg-target.c |   15 +++------------
>  1 file changed, 3 insertions(+), 12 deletions(-)

Thanks, applied to the trivial patches tree:
https://github.com/stefanha/qemu/commits/trivial-patches

Stefan
diff mbox

Patch

diff --git a/tcg/arm/tcg-target.c b/tcg/arm/tcg-target.c
index 2bad0a2..5e8dbdd 100644
--- a/tcg/arm/tcg-target.c
+++ b/tcg/arm/tcg-target.c
@@ -1197,20 +1197,11 @@  static inline void tcg_out_qemu_ld(TCGContext *s, const TCGArg *args, int opc)
     case 1:
     case 2:
     default:
-        if (data_reg != TCG_REG_R0) {
-            tcg_out_dat_reg(s, COND_AL, ARITH_MOV,
-                            data_reg, 0, TCG_REG_R0, SHIFT_IMM_LSL(0));
-        }
+        tcg_out_mov_reg(s, COND_AL, data_reg, TCG_REG_R0);
         break;
     case 3:
-        if (data_reg != TCG_REG_R0) {
-            tcg_out_dat_reg(s, COND_AL, ARITH_MOV,
-                            data_reg, 0, TCG_REG_R0, SHIFT_IMM_LSL(0));
-        }
-        if (data_reg2 != TCG_REG_R1) {
-            tcg_out_dat_reg(s, COND_AL, ARITH_MOV,
-                            data_reg2, 0, TCG_REG_R1, SHIFT_IMM_LSL(0));
-        }
+        tcg_out_mov_reg(s, COND_AL, data_reg, TCG_REG_R0);
+        tcg_out_mov_reg(s, COND_AL, data_reg2, TCG_REG_R1);
         break;
     }