48 lines
1.8 KiB
Diff
48 lines
1.8 KiB
Diff
|
|
From bdaf1aecc24fcb74424b00f2fcfe28992aa2e30a Mon Sep 17 00:00:00 2001
|
||
|
|
From: Liu Jing <liujing_yewu@cmss.chinamobile.com>
|
||
|
|
Date: Mon, 14 Oct 2024 16:14:28 +0800
|
||
|
|
Subject: [PATCH] target/ppc: Zero second doubleword of VSR registers for FPR
|
||
|
|
insns
|
||
|
|
MIME-Version: 1.0
|
||
|
|
Content-Type: text/plain; charset=UTF-8
|
||
|
|
Content-Transfer-Encoding: 8bit
|
||
|
|
|
||
|
|
FPR register are mapped to the first doubleword of the VSR registers.
|
||
|
|
Since PowerISA v3.1, the second doubleword of the target register
|
||
|
|
must be zeroed for FP instructions.
|
||
|
|
|
||
|
|
This patch does it by writting 0 to the second dw everytime the
|
||
|
|
first dw is being written using set_fpr.
|
||
|
|
|
||
|
|
Signed-off-by: Víctor Colombo <victor.colombo@eldorado.org.br>
|
||
|
|
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
|
||
|
|
Message-Id: <20220906125523.38765-8-victor.colombo@eldorado.org.br>
|
||
|
|
Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com>
|
||
|
|
Signed-off-by: Liu Jing <liujing_yewu@cmss.chinamobile.com>
|
||
|
|
---
|
||
|
|
target/ppc/translate.c | 8 ++++++++
|
||
|
|
1 file changed, 8 insertions(+)
|
||
|
|
|
||
|
|
diff --git a/target/ppc/translate.c b/target/ppc/translate.c
|
||
|
|
index 9960df6e18..153552ab50 100644
|
||
|
|
--- a/target/ppc/translate.c
|
||
|
|
+++ b/target/ppc/translate.c
|
||
|
|
@@ -7290,6 +7290,14 @@ static inline void get_fpr(TCGv_i64 dst, int regno)
|
||
|
|
static inline void set_fpr(int regno, TCGv_i64 src)
|
||
|
|
{
|
||
|
|
tcg_gen_st_i64(src, cpu_env, fpr_offset(regno));
|
||
|
|
+ /*
|
||
|
|
+ * Before PowerISA v3.1 the result of doubleword 1 of the VSR
|
||
|
|
+ * corresponding to the target FPR was undefined. However,
|
||
|
|
+ * most (if not all) real hardware were setting the result to 0.
|
||
|
|
+ * Starting at ISA v3.1, the result for doubleword 1 is now defined
|
||
|
|
+ * to be 0.
|
||
|
|
+ */
|
||
|
|
+ tcg_gen_st_i64(tcg_constant_i64(0), cpu_env, vsr64_offset(regno, false));
|
||
|
|
}
|
||
|
|
|
||
|
|
static inline void get_avr64(TCGv_i64 dst, int regno, bool high)
|
||
|
|
--
|
||
|
|
2.41.0.windows.1
|
||
|
|
|