diff mbox

[1/7] target-mips: fix DSP loads with rd = 0

Message ID 1353063863-11446-2-git-send-email-aurelien@aurel32.net
State New
Headers show

Commit Message

Aurelien Jarno Nov. 16, 2012, 11:04 a.m. UTC
When rd is 0, which still need to do the actually load to possibly
generate a TLB exception.

Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
---
 target-mips/translate.c |    5 -----
 1 file changed, 5 deletions(-)

Comments

Eric Johnson Nov. 21, 2012, 6:28 a.m. UTC | #1
> -----Original Message-----

> From: qemu-devel-bounces+ericj=mips.com@nongnu.org [mailto:qemu-devel-

> bounces+ericj=mips.com@nongnu.org] On Behalf Of Aurelien Jarno

> Sent: Friday, November 16, 2012 3:04 AM

> To: qemu-devel@nongnu.org

> Cc: Aurelien Jarno

> Subject: [Qemu-devel] [PATCH 1/7] target-mips: fix DSP loads with rd = 0

> 

> When rd is 0, which still need to do the actually load to possibly

> generate a TLB exception.

> 

> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>

> ---

>  target-mips/translate.c |    5 -----

>  1 file changed, 5 deletions(-)

> 

> diff --git a/target-mips/translate.c b/target-mips/translate.c

> index 01b48fa..c3e00c5 100644

> --- a/target-mips/translate.c

> +++ b/target-mips/translate.c

> @@ -12631,11 +12631,6 @@ static void gen_mipsdsp_ld(CPUMIPSState *env,

> DisasContext *ctx, uint32_t opc,

>      const char *opn = "ldx";

>      TCGv t0;

> 

> -    if (rd == 0) {

> -        MIPS_DEBUG("NOP");

> -        return;

> -    }

> -

>      check_dsp(ctx);

>      t0 = tcg_temp_new();

> 

> --

> 1.7.10.4

> 


Reviewed-by: Eric Johnson <ericj@mips.com>
diff mbox

Patch

diff --git a/target-mips/translate.c b/target-mips/translate.c
index 01b48fa..c3e00c5 100644
--- a/target-mips/translate.c
+++ b/target-mips/translate.c
@@ -12631,11 +12631,6 @@  static void gen_mipsdsp_ld(CPUMIPSState *env, DisasContext *ctx, uint32_t opc,
     const char *opn = "ldx";
     TCGv t0;
 
-    if (rd == 0) {
-        MIPS_DEBUG("NOP");
-        return;
-    }
-
     check_dsp(ctx);
     t0 = tcg_temp_new();