[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 3/7] target/mips: Use FloatRoundMode enum for FCR31 modes convers
From: |
Philippe Mathieu-Daudé |
Subject: |
[PATCH 3/7] target/mips: Use FloatRoundMode enum for FCR31 modes conversion |
Date: |
Tue, 8 Dec 2020 00:55:35 +0100 |
Use the FloatRoundMode enum type introduced in commit 3dede407cc6
("softfloat: Name rounding mode enum") instead of 'unsigned int'.
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20201123204448.3260804-2-f4bug@amsat.org>
---
target/mips/internal.h | 3 ++-
target/mips/fpu_helper.c | 2 +-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/target/mips/internal.h b/target/mips/internal.h
index d290c1afe30..5d8a8a1838e 100644
--- a/target/mips/internal.h
+++ b/target/mips/internal.h
@@ -226,7 +226,8 @@ bool mips_cpu_tlb_fill(CPUState *cs, vaddr address, int
size,
uint32_t float_class_s(uint32_t arg, float_status *fst);
uint64_t float_class_d(uint64_t arg, float_status *fst);
-extern unsigned int ieee_rm[];
+extern const FloatRoundMode ieee_rm[4];
+
void update_pagemask(CPUMIPSState *env, target_ulong arg1, int32_t *pagemask);
static inline void restore_rounding_mode(CPUMIPSState *env)
diff --git a/target/mips/fpu_helper.c b/target/mips/fpu_helper.c
index 020b768e87b..501bd401a16 100644
--- a/target/mips/fpu_helper.c
+++ b/target/mips/fpu_helper.c
@@ -42,7 +42,7 @@
#define FP_TO_INT64_OVERFLOW 0x7fffffffffffffffULL
/* convert MIPS rounding mode in FCR31 to IEEE library */
-unsigned int ieee_rm[] = {
+const FloatRoundMode ieee_rm[4] = {
float_round_nearest_even,
float_round_to_zero,
float_round_up,
--
2.26.2
- [PATCH 0/7] target/mips: Add translate.h and fpu_translate.h headers, Philippe Mathieu-Daudé, 2020/12/07
- [PATCH 1/7] target/mips/translate: Extract DisasContext structure, Philippe Mathieu-Daudé, 2020/12/07
- [PATCH 2/7] target/mips/translate: Add declarations for generic code, Philippe Mathieu-Daudé, 2020/12/07
- [PATCH 4/7] target/mips: Extract FPU helpers to 'fpu_helper.h', Philippe Mathieu-Daudé, 2020/12/07
- [PATCH 5/7] target/mips/fpu_helper: Remove unused headers, Philippe Mathieu-Daudé, 2020/12/07
- [PATCH 3/7] target/mips: Use FloatRoundMode enum for FCR31 modes conversion,
Philippe Mathieu-Daudé <=
- [PATCH 6/7] target/mips: Declare generic FPU functions in 'fpu_translate.h', Philippe Mathieu-Daudé, 2020/12/07
- [PATCH 7/7] target/mips: Extract FPU specific definitions to fpu_translate.h, Philippe Mathieu-Daudé, 2020/12/07