From: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
To: qemu-devel@nongnu.org
Cc: rth@twiddle.net, Peer Adelt <peer.adelt@c-lab.de>
Subject: [Qemu-devel] [PATCH v2 3/5] target-tricore: Added new MOV instruction variant
Date: Mon, 7 Nov 2016 15:44:43 +0100 [thread overview]
Message-ID: <20161107144445.14069-4-kbastian@mail.uni-paderborn.de> (raw)
In-Reply-To: <20161107144445.14069-1-kbastian@mail.uni-paderborn.de>
From: Peer Adelt <peer.adelt@c-lab.de>
Puts the content of data register D[a] into E[c][63:32] and the
content of data register D[b] into E[c][31:0].
[BK: fix style error]
Signed-off-by: Peer Adelt <peer.adelt@c-lab.de>
Message-Id: <1465314555-11501-4-git-send-email-peer.adelt@c-lab.de>
---
target-tricore/translate.c | 15 +++++++++++++++
target-tricore/tricore-opcodes.h | 1 +
2 files changed, 16 insertions(+)
diff --git a/target-tricore/translate.c b/target-tricore/translate.c
index 3fec353..4fe8a5f 100644
--- a/target-tricore/translate.c
+++ b/target-tricore/translate.c
@@ -6034,11 +6034,15 @@ static void decode_rr_accumulator(CPUTriCoreState *env, DisasContext *ctx)
uint32_t op2;
int r3, r2, r1;
+ TCGv temp;
+
r3 = MASK_OP_RR_D(ctx->opcode);
r2 = MASK_OP_RR_S2(ctx->opcode);
r1 = MASK_OP_RR_S1(ctx->opcode);
op2 = MASK_OP_RR_OP2(ctx->opcode);
+ temp = tcg_temp_new();
+
switch (op2) {
case OPC2_32_RR_ABS:
gen_abs(cpu_gpr_d[r3], cpu_gpr_d[r2]);
@@ -6224,6 +6228,16 @@ static void decode_rr_accumulator(CPUTriCoreState *env, DisasContext *ctx)
case OPC2_32_RR_MOV:
tcg_gen_mov_tl(cpu_gpr_d[r3], cpu_gpr_d[r2]);
break;
+ case OPC2_32_RR_MOV_64:
+ if (tricore_feature(env, TRICORE_FEATURE_16)) {
+ CHECK_REG_PAIR(r3);
+ tcg_gen_mov_tl(temp, cpu_gpr_d[r1]);
+ tcg_gen_mov_tl(cpu_gpr_d[r3], cpu_gpr_d[r2]);
+ tcg_gen_mov_tl(cpu_gpr_d[r3 + 1], temp);
+ } else {
+ generate_trap(ctx, TRAPC_INSN_ERR, TIN2_IOPC);
+ }
+ break;
case OPC2_32_RR_NE:
tcg_gen_setcond_tl(TCG_COND_NE, cpu_gpr_d[r3], cpu_gpr_d[r1],
cpu_gpr_d[r2]);
@@ -6344,6 +6358,7 @@ static void decode_rr_accumulator(CPUTriCoreState *env, DisasContext *ctx)
default:
generate_trap(ctx, TRAPC_INSN_ERR, TIN2_IOPC);
}
+ tcg_temp_free(temp);
}
static void decode_rr_logical_shift(CPUTriCoreState *env, DisasContext *ctx)
diff --git a/target-tricore/tricore-opcodes.h b/target-tricore/tricore-opcodes.h
index df666b0..78ba338 100644
--- a/target-tricore/tricore-opcodes.h
+++ b/target-tricore/tricore-opcodes.h
@@ -1062,6 +1062,7 @@ enum {
OPC2_32_RR_MIN_H = 0x78,
OPC2_32_RR_MIN_HU = 0x79,
OPC2_32_RR_MOV = 0x1f,
+ OPC2_32_RR_MOV_64 = 0x81,
OPC2_32_RR_NE = 0x11,
OPC2_32_RR_OR_EQ = 0x27,
OPC2_32_RR_OR_GE = 0x2b,
--
2.10.2
next prev parent reply other threads:[~2016-11-07 14:45 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-07 14:44 [Qemu-devel] [PATCH v2 0/5] Bastian Koppelmann
2016-11-07 14:44 ` [Qemu-devel] [PATCH v2 1/5] target-tricore: Added FTOUZ instruction Bastian Koppelmann
2016-11-08 11:36 ` Richard Henderson
2016-11-08 13:37 ` Bastian Koppelmann
2016-11-08 15:06 ` Richard Henderson
2016-11-08 15:12 ` Bastian Koppelmann
2016-11-08 15:25 ` Richard Henderson
2016-11-09 15:46 ` Bastian Koppelmann
2016-11-07 14:44 ` [Qemu-devel] [PATCH v2 2/5] target-tricore: Added MADD.F and MSUB.F instructions Bastian Koppelmann
2016-11-08 11:42 ` Richard Henderson
2016-11-08 15:08 ` Bastian Koppelmann
2016-11-08 15:10 ` Richard Henderson
2016-11-07 14:44 ` Bastian Koppelmann [this message]
2016-11-08 11:44 ` [Qemu-devel] [PATCH v2 3/5] target-tricore: Added new MOV instruction variant Richard Henderson
2016-11-07 14:44 ` [Qemu-devel] [PATCH v2 4/5] target-tricore: Added new JNE " Bastian Koppelmann
2016-11-07 14:44 ` [Qemu-devel] [PATCH v2 5/5] target-tricore: Add updfl instruction Bastian Koppelmann
2016-11-08 11:49 ` Richard Henderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20161107144445.14069-4-kbastian@mail.uni-paderborn.de \
--to=kbastian@mail.uni-paderborn.de \
--cc=peer.adelt@c-lab.de \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).