2 * UniCore-F64 simulation helpers for QEMU.
4 * Copyright (C) 2010-2012 Guan Xuetao
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation, or any later version.
9 * See the COPYING file in the top-level directory.
11 #include "qemu/osdep.h"
13 #include "exec/helper-proto.h"
14 #include "fpu/softfloat.h"
17 * The convention used for UniCore-F64 instructions:
18 * Single precition routines have a "s" suffix
19 * Double precision routines have a "d" suffix.
22 /* Convert host exception flags to f64 form. */
23 static inline int ucf64_exceptbits_from_host(int host_bits
)
27 if (host_bits
& float_flag_invalid
) {
28 target_bits
|= UCF64_FPSCR_FLAG_INVALID
;
30 if (host_bits
& float_flag_divbyzero
) {
31 target_bits
|= UCF64_FPSCR_FLAG_DIVZERO
;
33 if (host_bits
& float_flag_overflow
) {
34 target_bits
|= UCF64_FPSCR_FLAG_OVERFLOW
;
36 if (host_bits
& float_flag_underflow
) {
37 target_bits
|= UCF64_FPSCR_FLAG_UNDERFLOW
;
39 if (host_bits
& float_flag_inexact
) {
40 target_bits
|= UCF64_FPSCR_FLAG_INEXACT
;
45 uint32_t HELPER(ucf64_get_fpscr
)(CPUUniCore32State
*env
)
50 fpscr
= (env
->ucf64
.xregs
[UC32_UCF64_FPSCR
] & UCF64_FPSCR_MASK
);
51 i
= get_float_exception_flags(&env
->ucf64
.fp_status
);
52 fpscr
|= ucf64_exceptbits_from_host(i
);
56 /* Convert ucf64 exception flags to target form. */
57 static inline int ucf64_exceptbits_to_host(int target_bits
)
61 if (target_bits
& UCF64_FPSCR_FLAG_INVALID
) {
62 host_bits
|= float_flag_invalid
;
64 if (target_bits
& UCF64_FPSCR_FLAG_DIVZERO
) {
65 host_bits
|= float_flag_divbyzero
;
67 if (target_bits
& UCF64_FPSCR_FLAG_OVERFLOW
) {
68 host_bits
|= float_flag_overflow
;
70 if (target_bits
& UCF64_FPSCR_FLAG_UNDERFLOW
) {
71 host_bits
|= float_flag_underflow
;
73 if (target_bits
& UCF64_FPSCR_FLAG_INEXACT
) {
74 host_bits
|= float_flag_inexact
;
79 void HELPER(ucf64_set_fpscr
)(CPUUniCore32State
*env
, uint32_t val
)
81 UniCore32CPU
*cpu
= env_archcpu(env
);
85 changed
= env
->ucf64
.xregs
[UC32_UCF64_FPSCR
];
86 env
->ucf64
.xregs
[UC32_UCF64_FPSCR
] = (val
& UCF64_FPSCR_MASK
);
89 if (changed
& (UCF64_FPSCR_RND_MASK
)) {
90 i
= UCF64_FPSCR_RND(val
);
93 i
= float_round_nearest_even
;
96 i
= float_round_to_zero
;
102 i
= float_round_down
;
104 default: /* 100 and 101 not implement */
105 cpu_abort(CPU(cpu
), "Unsupported UniCore-F64 round mode");
107 set_float_rounding_mode(i
, &env
->ucf64
.fp_status
);
110 i
= ucf64_exceptbits_to_host(UCF64_FPSCR_TRAPEN(val
));
111 set_float_exception_flags(i
, &env
->ucf64
.fp_status
);
114 float32
HELPER(ucf64_adds
)(float32 a
, float32 b
, CPUUniCore32State
*env
)
116 return float32_add(a
, b
, &env
->ucf64
.fp_status
);
119 float64
HELPER(ucf64_addd
)(float64 a
, float64 b
, CPUUniCore32State
*env
)
121 return float64_add(a
, b
, &env
->ucf64
.fp_status
);
124 float32
HELPER(ucf64_subs
)(float32 a
, float32 b
, CPUUniCore32State
*env
)
126 return float32_sub(a
, b
, &env
->ucf64
.fp_status
);
129 float64
HELPER(ucf64_subd
)(float64 a
, float64 b
, CPUUniCore32State
*env
)
131 return float64_sub(a
, b
, &env
->ucf64
.fp_status
);
134 float32
HELPER(ucf64_muls
)(float32 a
, float32 b
, CPUUniCore32State
*env
)
136 return float32_mul(a
, b
, &env
->ucf64
.fp_status
);
139 float64
HELPER(ucf64_muld
)(float64 a
, float64 b
, CPUUniCore32State
*env
)
141 return float64_mul(a
, b
, &env
->ucf64
.fp_status
);
144 float32
HELPER(ucf64_divs
)(float32 a
, float32 b
, CPUUniCore32State
*env
)
146 return float32_div(a
, b
, &env
->ucf64
.fp_status
);
149 float64
HELPER(ucf64_divd
)(float64 a
, float64 b
, CPUUniCore32State
*env
)
151 return float64_div(a
, b
, &env
->ucf64
.fp_status
);
154 float32
HELPER(ucf64_negs
)(float32 a
)
156 return float32_chs(a
);
159 float64
HELPER(ucf64_negd
)(float64 a
)
161 return float64_chs(a
);
164 float32
HELPER(ucf64_abss
)(float32 a
)
166 return float32_abs(a
);
169 float64
HELPER(ucf64_absd
)(float64 a
)
171 return float64_abs(a
);
174 void HELPER(ucf64_cmps
)(float32 a
, float32 b
, uint32_t c
,
175 CPUUniCore32State
*env
)
177 FloatRelation flag
= float32_compare_quiet(a
, b
, &env
->ucf64
.fp_status
);
193 if ((flag
== 0) || (flag
== 2)) {
203 if ((flag
== -1) || (flag
== 2)) {
208 if ((flag
== -1) || (flag
== 0)) {
218 env
->ucf64
.xregs
[UC32_UCF64_FPSCR
] = (env
->CF
<< 29)
219 | (env
->ucf64
.xregs
[UC32_UCF64_FPSCR
] & 0x0fffffff);
222 void HELPER(ucf64_cmpd
)(float64 a
, float64 b
, uint32_t c
,
223 CPUUniCore32State
*env
)
225 FloatRelation flag
= float64_compare_quiet(a
, b
, &env
->ucf64
.fp_status
);
241 if ((flag
== 0) || (flag
== 2)) {
251 if ((flag
== -1) || (flag
== 2)) {
256 if ((flag
== -1) || (flag
== 0)) {
266 env
->ucf64
.xregs
[UC32_UCF64_FPSCR
] = (env
->CF
<< 29)
267 | (env
->ucf64
.xregs
[UC32_UCF64_FPSCR
] & 0x0fffffff);
270 /* Helper routines to perform bitwise copies between float and int. */
271 static inline float32
ucf64_itos(uint32_t i
)
282 static inline uint32_t ucf64_stoi(float32 s
)
293 /* Integer to float conversion. */
294 float32
HELPER(ucf64_si2sf
)(float32 x
, CPUUniCore32State
*env
)
296 return int32_to_float32(ucf64_stoi(x
), &env
->ucf64
.fp_status
);
299 float64
HELPER(ucf64_si2df
)(float32 x
, CPUUniCore32State
*env
)
301 return int32_to_float64(ucf64_stoi(x
), &env
->ucf64
.fp_status
);
304 /* Float to integer conversion. */
305 float32
HELPER(ucf64_sf2si
)(float32 x
, CPUUniCore32State
*env
)
307 return ucf64_itos(float32_to_int32(x
, &env
->ucf64
.fp_status
));
310 float32
HELPER(ucf64_df2si
)(float64 x
, CPUUniCore32State
*env
)
312 return ucf64_itos(float64_to_int32(x
, &env
->ucf64
.fp_status
));
315 /* floating point conversion */
316 float64
HELPER(ucf64_sf2df
)(float32 x
, CPUUniCore32State
*env
)
318 return float32_to_float64(x
, &env
->ucf64
.fp_status
);
321 float32
HELPER(ucf64_df2sf
)(float64 x
, CPUUniCore32State
*env
)
323 return float64_to_float32(x
, &env
->ucf64
.fp_status
);