Skip to content

Commit

Permalink
target/mips/tx79: Introduce SQ opcode (Store Quadword)
Browse files Browse the repository at this point in the history
Introduce the SQ opcode (Store Quadword).

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210214175912.732946-27-f4bug@amsat.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
  • Loading branch information
philmd committed Jul 11, 2021
1 parent aaaa82a commit 80ad630
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions target/mips/tcg/tx79.decode
Expand Up @@ -70,3 +70,4 @@ PCPYH 011100 00000 ..... ..... 11011 101001 @rt_rd
# SPECIAL

LQ 011110 ..... ..... ................ @ldst
SQ 011111 ..... ..... ................ @ldst
27 changes: 27 additions & 0 deletions target/mips/tcg/tx79_translate.c
Expand Up @@ -369,6 +369,33 @@ static bool trans_LQ(DisasContext *ctx, arg_itype *a)
return true;
}

static bool trans_SQ(DisasContext *ctx, arg_itype *a)
{
TCGv_i64 t0 = tcg_temp_new_i64();
TCGv addr = tcg_temp_new();

gen_base_offset_addr(ctx, addr, a->base, a->offset);
/*
* Clear least-significant four bits of the effective
* address, effectively creating an aligned address.
*/
tcg_gen_andi_tl(addr, addr, ~0xf);

/* Lower half */
gen_load_gpr(t0, a->rt);
tcg_gen_qemu_st_i64(t0, addr, ctx->mem_idx, MO_TEQ);

/* Upper half */
tcg_gen_addi_i64(addr, addr, 8);
gen_load_gpr_hi(t0, a->rt);
tcg_gen_qemu_st_i64(t0, addr, ctx->mem_idx, MO_TEQ);

tcg_temp_free(addr);
tcg_temp_free(t0);

return true;
}

/*
* Multiply and Divide (19 instructions)
* -------------------------------------
Expand Down

0 comments on commit 80ad630

Please sign in to comment.