From: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, rth@twiddle.net
Subject: [Qemu-devel] [PATCH 07/15] target-tricore: Add instructions of SRR opcode format
Date: Mon, 7 Jul 2014 19:13:34 +0100 [thread overview]
Message-ID: <1404756822-3253-8-git-send-email-kbastian@mail.uni-paderborn.de> (raw)
In-Reply-To: <1404756822-3253-1-git-send-email-kbastian@mail.uni-paderborn.de>
Add instructions of SRR opcode format.
Add micro-op generator function for ssov.
Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
---
target-tricore/translate.c | 140 ++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 139 insertions(+), 1 deletion(-)
diff --git a/target-tricore/translate.c b/target-tricore/translate.c
index ad595b2..108619c 100644
--- a/target-tricore/translate.c
+++ b/target-tricore/translate.c
@@ -203,14 +203,34 @@ static void gen_shaci(TCGv ret, TCGv r1, int32_t con)
tcg_temp_free(temp);
}
+static inline void gen_ssov(TCGv ret, TCGv arg, int32_t cons)
+{
+ int l1 = gen_new_label();
+ TCGv temp = tcg_temp_local_new();
+ int32_t max_pos = (0x1u << (cons - 1)) - 1;
+ int32_t max_neg = -(0x1u << (cons - 1));
+
+ tcg_gen_movi_tl(temp, max_pos);
+ tcg_gen_brcondi_tl(TCG_COND_GT, arg, max_pos, l1);
+ tcg_gen_movi_tl(temp, max_neg);
+ tcg_gen_brcondi_tl(TCG_COND_LT, arg, max_neg, l1);
+ tcg_gen_mov_tl(temp, arg);
+ gen_set_label(l1);
+ tcg_gen_mov_tl(ret, temp);
+
+ tcg_temp_free(temp);
+}
+
/*
* Functions for decoding instructions
*/
static void decode_16Bit_opc(CPUTRICOREState *env, DisasContext *ctx)
{
target_ulong op1;
- int r1;
+ int r1, r2;
uint16_t const16;
+ TCGv temp;
+
op1 = MASK_OP_MAJOR(ctx->opcode);
switch (op1) {
@@ -294,6 +314,124 @@ static void decode_16Bit_opc(CPUTRICOREState *env, DisasContext *ctx)
/* FIXME: const too long */
gen_shaci(cpu_gpr_d[r1], cpu_gpr_d[r1], const16 & 0x1f);
break;
+/* SRR-Format */
+ case OPC1_16_SRR_ADD:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ tcg_gen_add_tl(cpu_gpr_d[r1], cpu_gpr_d[r1], cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_ADD_A15:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ tcg_gen_add_tl(cpu_gpr_d[r1], cpu_gpr_d[15], cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_ADD_15A:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ tcg_gen_add_tl(cpu_gpr_d[15], cpu_gpr_d[r1], cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_ADD_A:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ tcg_gen_add_tl(cpu_gpr_a[r1], cpu_gpr_a[r1], cpu_gpr_a[r2]);
+ break;
+ case OPC1_16_SRR_ADDS:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+
+ temp = tcg_temp_local_new();
+ tcg_gen_add_tl(temp, cpu_gpr_d[r1], cpu_gpr_d[r2]);
+ gen_ssov(cpu_gpr_d[r1], temp, 32);
+ tcg_temp_free(temp);
+ break;
+ case OPC1_16_SRR_AND:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ tcg_gen_and_tl(cpu_gpr_d[r1], cpu_gpr_d[r1], cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_CMOV:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ gen_cond_mov(TCG_COND_EQ, cpu_gpr_d[r1], cpu_gpr_d[r2],
+ cpu_gpr_d[r1], cpu_gpr_d[15]);
+ break;
+ case OPC1_16_SRR_CMOVN:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ gen_cond_mov(TCG_COND_NE, cpu_gpr_d[r1], cpu_gpr_d[r2],
+ cpu_gpr_d[r1], cpu_gpr_d[15]);
+ break;
+ case OPC1_16_SRR_EQ:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+
+ tcg_gen_setcond_tl(TCG_COND_EQ, cpu_gpr_d[15], cpu_gpr_d[r1],
+ cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_LT:
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ tcg_gen_setcond_tl(TCG_COND_LT, cpu_gpr_d[15], cpu_gpr_d[r1],
+ cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_MOV:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ tcg_gen_mov_tl(cpu_gpr_d[r1], cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_MOV_A:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ tcg_gen_mov_tl(cpu_gpr_a[r1], cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_MOV_AA:
+ r1 = MASK_OP_SRR_S2(ctx->opcode);
+ r2 = MASK_OP_SRR_S1D(ctx->opcode);
+ tcg_gen_mov_tl(cpu_gpr_a[r2], cpu_gpr_a[r1]);
+ break;
+ case OPC1_16_SRR_MOV_D:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ tcg_gen_mov_tl(cpu_gpr_d[r1], cpu_gpr_a[r2]);
+ break;
+ case OPC1_16_SRR_MUL:
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ tcg_gen_mul_tl(cpu_gpr_d[r1], cpu_gpr_d[r1], cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_OR:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ tcg_gen_or_tl(cpu_gpr_d[r1], cpu_gpr_d[r1], cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_SUB:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ tcg_gen_sub_tl(cpu_gpr_d[r1], cpu_gpr_d[r1], cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_SUB_A15B:
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ tcg_gen_sub_tl(cpu_gpr_d[r1], cpu_gpr_d[15], cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_SUB_15AB:
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ tcg_gen_sub_tl(cpu_gpr_d[15], cpu_gpr_d[r1], cpu_gpr_d[r2]);
+ break;
+ case OPC1_16_SRR_SUBS:
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ temp = tcg_temp_local_new();
+ tcg_gen_sub_tl(temp, cpu_gpr_d[r1], cpu_gpr_d[r2]);
+ gen_ssov(cpu_gpr_d[r1], temp, 32);
+ tcg_temp_free(temp);
+ break;
+ case OPC1_16_SRR_XOR:
+ r1 = MASK_OP_SRR_S1D(ctx->opcode);
+ r2 = MASK_OP_SRR_S2(ctx->opcode);
+ tcg_gen_xor_tl(cpu_gpr_d[r1], cpu_gpr_d[r1], cpu_gpr_d[r2]);
+ break;
}
}
--
2.0.1
next prev parent reply other threads:[~2014-07-07 17:10 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-07 18:13 [Qemu-devel] [PATCH 00/15] TriCore architecture guest implementation Bastian Koppelmann
2014-07-07 18:13 ` [Qemu-devel] [PATCH 01/15] target-tricore: Add target stubs and qom-cpu Bastian Koppelmann
2014-07-07 19:09 ` Richard Henderson
2014-07-07 19:14 ` Richard Henderson
2014-07-07 19:24 ` Peter Maydell
2014-07-11 11:05 ` Bastian Koppelmann
2014-07-11 11:10 ` Peter Maydell
2014-07-07 18:13 ` [Qemu-devel] [PATCH 02/15] target-tricore: Add board for systemmode Bastian Koppelmann
2014-07-07 18:13 ` [Qemu-devel] [PATCH 03/15] target-tricore: Add softmmu support Bastian Koppelmann
2014-07-07 18:13 ` [Qemu-devel] [PATCH 04/15] target-tricore: Add initialization for translation Bastian Koppelmann
2014-07-07 18:13 ` [Qemu-devel] [PATCH 05/15] target-tricore: Add masks and opcodes for decoding Bastian Koppelmann
2014-07-07 19:37 ` Richard Henderson
2014-07-07 18:13 ` [Qemu-devel] [PATCH 06/15] target-tricore: Add instructions of SRC opcode format Bastian Koppelmann
2014-07-07 20:06 ` Richard Henderson
2014-07-07 20:56 ` Max Filippov
2014-07-07 18:13 ` Bastian Koppelmann [this message]
2014-07-07 20:17 ` [Qemu-devel] [PATCH 07/15] target-tricore: Add instructions of SRR " Richard Henderson
2014-07-07 18:13 ` [Qemu-devel] [PATCH 08/15] target-tricore: Add instructions of SSR " Bastian Koppelmann
2014-07-07 20:22 ` Richard Henderson
2014-07-07 18:13 ` [Qemu-devel] [PATCH 09/15] target-tricore: Add instructions of SRRS and SLRO " Bastian Koppelmann
2014-07-07 20:30 ` Richard Henderson
2014-07-07 18:13 ` [Qemu-devel] [PATCH 10/15] target-tricore: Add instructions of SB " Bastian Koppelmann
2014-07-08 4:41 ` Richard Henderson
2014-07-07 18:13 ` [Qemu-devel] [PATCH 11/15] target-tricore: Add instructions of SBC and SBRN " Bastian Koppelmann
2014-07-08 4:47 ` Richard Henderson
2014-07-07 18:13 ` [Qemu-devel] [PATCH 12/15] target-tricore: Add instructions of SBR " Bastian Koppelmann
2014-07-08 5:26 ` Richard Henderson
2014-07-07 18:13 ` [Qemu-devel] [PATCH 13/15] target-tricore: Add instructions of SC " Bastian Koppelmann
2014-07-08 5:32 ` Richard Henderson
2014-07-07 18:13 ` [Qemu-devel] [PATCH 14/15] target-tricore: Add instructions of SLR, SSRO and SRO " Bastian Koppelmann
2014-07-08 5:36 ` Richard Henderson
2014-07-07 18:13 ` [Qemu-devel] [PATCH 15/15] target-tricore: Add instructions of SR " Bastian Koppelmann
2014-07-08 5:58 ` 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=1404756822-3253-8-git-send-email-kbastian@mail.uni-paderborn.de \
--to=kbastian@mail.uni-paderborn.de \
--cc=peter.maydell@linaro.org \
--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).