qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
To: qemu-devel@nongnu.org
Cc: rth@twiddle.net
Subject: [Qemu-devel] [PATCH v2 5/5] target-tricore: Add updfl instruction
Date: Mon,  7 Nov 2016 15:44:45 +0100	[thread overview]
Message-ID: <20161107144445.14069-6-kbastian@mail.uni-paderborn.de> (raw)
In-Reply-To: <20161107144445.14069-1-kbastian@mail.uni-paderborn.de>

Signed-off-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
---
 target-tricore/fpu_helper.c | 12 ++++++++++++
 target-tricore/helper.h     |  1 +
 target-tricore/translate.c  |  3 +++
 3 files changed, 16 insertions(+)

diff --git a/target-tricore/fpu_helper.c b/target-tricore/fpu_helper.c
index d530a0b..89de0ea 100644
--- a/target-tricore/fpu_helper.c
+++ b/target-tricore/fpu_helper.c
@@ -349,3 +349,15 @@ uint32_t helper_ftouz(CPUTriCoreState *env, uint32_t arg)
     }
     return result;
 }
+
+void helper_updfl(CPUTriCoreState *env, uint32_t arg)
+{
+    env->FPU_FS =  extract32(arg, 7, 1) & extract32(arg, 15, 1);
+    env->FPU_FI = (extract32(arg, 6, 1) & extract32(arg, 14, 1)) << 31;
+    env->FPU_FV = (extract32(arg, 5, 1) & extract32(arg, 13, 1)) << 31;
+    env->FPU_FZ = (extract32(arg, 4, 1) & extract32(arg, 12, 1)) << 31;
+    env->FPU_FU = (extract32(arg, 3, 1) & extract32(arg, 11, 1)) << 31;
+    /* clear FX and RM */
+    env->PSW &= ~(extract32(arg, 10, 1) << 26);
+    env->PSW |= (extract32(arg, 2, 1) & extract32(arg, 10, 1)) << 26;
+}
diff --git a/target-tricore/helper.h b/target-tricore/helper.h
index c897a44..012ac96 100644
--- a/target-tricore/helper.h
+++ b/target-tricore/helper.h
@@ -115,6 +115,7 @@ DEF_HELPER_3(fcmp, i32, env, i32, i32)
 DEF_HELPER_2(ftoi, i32, env, i32)
 DEF_HELPER_2(itof, i32, env, i32)
 DEF_HELPER_2(ftouz, i32, env, i32)
+DEF_HELPER_2(updfl, void, env, i32)
 /* dvinit */
 DEF_HELPER_3(dvinit_b_13, i64, env, i32, i32)
 DEF_HELPER_3(dvinit_b_131, i64, env, i32, i32)
diff --git a/target-tricore/translate.c b/target-tricore/translate.c
index be9b6b4..a3f980a 100644
--- a/target-tricore/translate.c
+++ b/target-tricore/translate.c
@@ -6848,6 +6848,9 @@ static void decode_rr1_mul(CPUTriCoreState *env, DisasContext *ctx)
         GEN_HELPER_UU(mulr_h, cpu_gpr_d[r3], cpu_gpr_d[r1], cpu_gpr_d[r2], n);
         gen_calc_usb_mulr_h(cpu_gpr_d[r3]);
         break;
+    case OPC2_32_RR_UPDFL:
+        gen_helper_updfl(cpu_env, cpu_gpr_d[r1]);
+        break;
     default:
         generate_trap(ctx, TRAPC_INSN_ERR, TIN2_IOPC);
     }
-- 
2.10.2

  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 ` [Qemu-devel] [PATCH v2 3/5] target-tricore: Added new MOV instruction variant Bastian Koppelmann
2016-11-08 11:44   ` 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 ` Bastian Koppelmann [this message]
2016-11-08 11:49   ` [Qemu-devel] [PATCH v2 5/5] target-tricore: Add updfl instruction 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-6-kbastian@mail.uni-paderborn.de \
    --to=kbastian@mail.uni-paderborn.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).