From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [PATCH 3/8] target-arm: Translate with VFP-enabled from TB flags, not CPUState
Date: Tue, 11 Jan 2011 22:12:13 +0000 [thread overview]
Message-ID: <1294783938-19629-4-git-send-email-peter.maydell@linaro.org> (raw)
In-Reply-To: <1294783938-19629-1-git-send-email-peter.maydell@linaro.org>
When translating code, whether the VFP unit is enabled for this TB
is stored in a bit in the TB flags. Use this rather than incorrectly
reading the FPEXC from the CPUState passed to translation.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
target-arm/translate.c | 14 +++++---------
1 files changed, 5 insertions(+), 9 deletions(-)
diff --git a/target-arm/translate.c b/target-arm/translate.c
index c391398..9e0b0b1 100644
--- a/target-arm/translate.c
+++ b/target-arm/translate.c
@@ -59,6 +59,7 @@ typedef struct DisasContext {
#if !defined(CONFIG_USER_ONLY)
int user;
#endif
+ int vfp_enabled;
} DisasContext;
#if defined(CONFIG_USER_ONLY)
@@ -2603,12 +2604,6 @@ static void gen_vfp_msr(TCGv tmp)
dead_tmp(tmp);
}
-static inline int
-vfp_enabled(CPUState * env)
-{
- return ((env->vfp.xregs[ARM_VFP_FPEXC] & (1 << 30)) != 0);
-}
-
static void gen_neon_dup_u8(TCGv var, int shift)
{
TCGv tmp = new_tmp();
@@ -2653,7 +2648,7 @@ static int disas_vfp_insn(CPUState * env, DisasContext *s, uint32_t insn)
if (!arm_feature(env, ARM_FEATURE_VFP))
return 1;
- if (!vfp_enabled(env)) {
+ if (!s->vfp_enabled) {
/* VFP disabled. Only allow fmxr/fmrx to/from some control regs. */
if ((insn & 0x0fe00fff) != 0x0ee00a10)
return 1;
@@ -3804,7 +3799,7 @@ static int disas_neon_ls_insn(CPUState * env, DisasContext *s, uint32_t insn)
TCGv tmp2;
TCGv_i64 tmp64;
- if (!vfp_enabled(env))
+ if (!s->vfp_enabled)
return 1;
VFP_DREG_D(rd, insn);
rn = (insn >> 16) & 0xf;
@@ -4199,7 +4194,7 @@ static int disas_neon_data_insn(CPUState * env, DisasContext *s, uint32_t insn)
TCGv tmp, tmp2, tmp3, tmp4, tmp5;
TCGv_i64 tmp64;
- if (!vfp_enabled(env))
+ if (!s->vfp_enabled)
return 1;
q = (insn & (1 << 6)) != 0;
u = (insn >> 24) & 1;
@@ -9087,6 +9082,7 @@ static inline void gen_intermediate_code_internal(CPUState *env,
dc->user = (env->uncached_cpsr & 0x1f) == ARM_CPU_MODE_USR;
}
#endif
+ dc->vfp_enabled = ARM_TBFLAG_VFPEN(tb->flags);
cpu_F0s = tcg_temp_new_i32();
cpu_F1s = tcg_temp_new_i32();
cpu_F0d = tcg_temp_new_i64();
--
1.6.3.3
next prev parent reply other threads:[~2011-01-11 22:12 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-01-11 22:12 [Qemu-devel] [PATCH v2 0/8] target-arm: Translate based on TB flags, not CPUState Peter Maydell
2011-01-11 22:12 ` [Qemu-devel] [PATCH 1/8] target-arm: Don't generate code specific to current CPU mode for SRS Peter Maydell
2011-01-12 10:21 ` Aurelien Jarno
2011-01-11 22:12 ` [Qemu-devel] [PATCH 2/8] target-arm: Add symbolic constants for bitfields in TB flags Peter Maydell
2011-01-12 10:21 ` Aurelien Jarno
2011-01-11 22:12 ` Peter Maydell [this message]
2011-01-12 10:21 ` [Qemu-devel] [PATCH 3/8] target-arm: Translate with VFP-enabled from TB flags, not CPUState Aurelien Jarno
2011-01-11 22:12 ` [Qemu-devel] [PATCH 4/8] target-arm: Translate with VFP len/stride " Peter Maydell
2011-01-12 10:21 ` Aurelien Jarno
2011-01-11 22:12 ` [Qemu-devel] [PATCH 5/8] target-arm: Translate with Thumb state " Peter Maydell
2011-01-12 10:21 ` Aurelien Jarno
2011-01-11 22:12 ` [Qemu-devel] [PATCH 6/8] target-arm: Translate with condexec bits " Peter Maydell
2011-01-12 10:22 ` Aurelien Jarno
2011-01-11 22:12 ` [Qemu-devel] [PATCH 7/8] target-arm: Set privileged bit in TB flags correctly for M profile Peter Maydell
2011-01-12 10:22 ` Aurelien Jarno
2011-01-11 22:12 ` [Qemu-devel] [PATCH 8/8] target-arm: Translate with user-state from TB flags, not CPUState Peter Maydell
2011-01-12 10:22 ` Aurelien Jarno
2011-01-14 19:40 ` [Qemu-devel] [PATCH v2 0/8] target-arm: Translate based on " Aurelien Jarno
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=1294783938-19629-4-git-send-email-peter.maydell@linaro.org \
--to=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
/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).