Re: [Qemu-devel] [PATCH 4/4] target-lm32: rewrite gen_compare()

2016-10-13 Thread Peter Maydell
On 12 October 2016 at 23:35, Michael Walle  wrote:
> Drop the rX, rY and rZ stuff and use dc->r{0,1,2} directly. This should
> also fix the false positive in coverity CID 1005720.
>
> Signed-off-by: Michael Walle 
> ---
>  target-lm32/translate.c | 7 ++-
>  1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/target-lm32/translate.c b/target-lm32/translate.c
> index 792637f..842af63 100644
> --- a/target-lm32/translate.c
> +++ b/target-lm32/translate.c
> @@ -344,9 +344,6 @@ static void dec_calli(DisasContext *dc)
>
>  static inline void gen_compare(DisasContext *dc, int cond)
>  {
> -int rX = (dc->format == OP_FMT_RR) ? dc->r2 : dc->r1;
> -int rY = dc->r0;
> -int rZ = (dc->format == OP_FMT_RR) ? dc->r1 : -1;
>  int i;
>
>  if (dc->format == OP_FMT_RI) {
> @@ -360,9 +357,9 @@ static inline void gen_compare(DisasContext *dc, int cond)
>  break;
>  }
>
> -tcg_gen_setcondi_tl(cond, cpu_R[rX], cpu_R[rY], i);
> +tcg_gen_setcondi_tl(cond, cpu_R[dc->r1], cpu_R[dc->r0], i);
>  } else {
> -tcg_gen_setcond_tl(cond, cpu_R[rX], cpu_R[rY], cpu_R[rZ]);
> +tcg_gen_setcond_tl(cond, cpu_R[dc->r2], cpu_R[dc->r0], 
> cpu_R[dc->r1]);
>  }
>  }
>

Reviewed-by: Peter Maydell 

thanks
-- PMM



[Qemu-devel] [PATCH 4/4] target-lm32: rewrite gen_compare()

2016-10-12 Thread Michael Walle
Drop the rX, rY and rZ stuff and use dc->r{0,1,2} directly. This should
also fix the false positive in coverity CID 1005720.

Signed-off-by: Michael Walle 
---
 target-lm32/translate.c | 7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/target-lm32/translate.c b/target-lm32/translate.c
index 792637f..842af63 100644
--- a/target-lm32/translate.c
+++ b/target-lm32/translate.c
@@ -344,9 +344,6 @@ static void dec_calli(DisasContext *dc)
 
 static inline void gen_compare(DisasContext *dc, int cond)
 {
-int rX = (dc->format == OP_FMT_RR) ? dc->r2 : dc->r1;
-int rY = dc->r0;
-int rZ = (dc->format == OP_FMT_RR) ? dc->r1 : -1;
 int i;
 
 if (dc->format == OP_FMT_RI) {
@@ -360,9 +357,9 @@ static inline void gen_compare(DisasContext *dc, int cond)
 break;
 }
 
-tcg_gen_setcondi_tl(cond, cpu_R[rX], cpu_R[rY], i);
+tcg_gen_setcondi_tl(cond, cpu_R[dc->r1], cpu_R[dc->r0], i);
 } else {
-tcg_gen_setcond_tl(cond, cpu_R[rX], cpu_R[rY], cpu_R[rZ]);
+tcg_gen_setcond_tl(cond, cpu_R[dc->r2], cpu_R[dc->r0], cpu_R[dc->r1]);
 }
 }
 
-- 
2.1.4