[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 14/22] target/sparc: Remove qt0, qt1 temporaries
|
From: |
Richard Henderson |
|
Subject: |
[PATCH 14/22] target/sparc: Remove qt0, qt1 temporaries |
|
Date: |
Fri, 3 Nov 2023 10:38:33 -0700 |
These are no longer used for passing data to/from helpers.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/sparc/cpu.h | 2 --
target/sparc/fop_helper.c | 3 ---
target/sparc/ldst_helper.c | 3 ---
3 files changed, 8 deletions(-)
diff --git a/target/sparc/cpu.h b/target/sparc/cpu.h
index 3e361a5b75..446b38f3df 100644
--- a/target/sparc/cpu.h
+++ b/target/sparc/cpu.h
@@ -509,8 +509,6 @@ struct CPUArchState {
uint64_t mmubpregs[4];
uint64_t prom_addr;
#endif
- /* temporary float registers */
- float128 qt0, qt1;
float_status fp_status;
#if defined(TARGET_SPARC64)
#define MAXTL_MAX 8
diff --git a/target/sparc/fop_helper.c b/target/sparc/fop_helper.c
index cd9b212597..7353a61237 100644
--- a/target/sparc/fop_helper.c
+++ b/target/sparc/fop_helper.c
@@ -23,9 +23,6 @@
#include "exec/helper-proto.h"
#include "fpu/softfloat.h"
-#define QT0 (env->qt0)
-#define QT1 (env->qt1)
-
static inline float128 f128_in(Int128 i)
{
union {
diff --git a/target/sparc/ldst_helper.c b/target/sparc/ldst_helper.c
index 09066d5487..fe984d44d7 100644
--- a/target/sparc/ldst_helper.c
+++ b/target/sparc/ldst_helper.c
@@ -66,9 +66,6 @@
#endif
#endif
-#define QT0 (env->qt0)
-#define QT1 (env->qt1)
-
#if defined(TARGET_SPARC64) && !defined(CONFIG_USER_ONLY)
/* Calculates TSB pointer value for fault page size
* UltraSPARC IIi has fixed sizes (8k or 64k) for the page pointers
--
2.34.1
- [PATCH 07/22] target/sparc: Use i128 for FADDq, FSUBq, FMULq, FDIVq, (continued)
- [PATCH 07/22] target/sparc: Use i128 for FADDq, FSUBq, FMULq, FDIVq, Richard Henderson, 2023/11/03
- [PATCH 03/22] target/sparc: Remove gen_dest_fpr_F, Richard Henderson, 2023/11/03
- [PATCH 10/22] target/sparc: Use i128 for FCMPq, FCMPEq, Richard Henderson, 2023/11/03
- [PATCH 05/22] target/sparc: Inline FNEG, FABS, Richard Henderson, 2023/11/03
- [PATCH 13/22] target/sparc: Use i128 for Fdmulq, Richard Henderson, 2023/11/03
- [PATCH 04/22] target/sparc: Introduce gen_{load,store}_fpr_Q, Richard Henderson, 2023/11/03
- [PATCH 08/22] target/sparc: Use i128 for FqTOs, FqTOi, Richard Henderson, 2023/11/03
- [PATCH 17/22] target/sparc: Clear cexc and ftt in do_check_ieee_exceptions, Richard Henderson, 2023/11/03
- [PATCH 18/22] target/sparc: Merge check_ieee_exceptions with FPop helpers, Richard Henderson, 2023/11/03
- [PATCH 22/22] target/sparc: Remove FSR_FTT_NMASK, FSR_FTT_CEXC_NMASK, Richard Henderson, 2023/11/03
- [PATCH 14/22] target/sparc: Remove qt0, qt1 temporaries,
Richard Henderson <=
- [PATCH 19/22] target/sparc: Split cexc and ftt from env->fsr, Richard Henderson, 2023/11/03
- [PATCH 20/22] target/sparc: Remove cpu_fsr, Richard Henderson, 2023/11/03
- [PATCH 15/22] target/sparc: Introduce cpu_get_fsr, cpu_put_fsr, Richard Henderson, 2023/11/03
- [PATCH 21/22] target/sparc: Split fcc out of env->fsr, Richard Henderson, 2023/11/03