2 * arch/s390/math-emu/math.c
5 * Copyright (C) 1999-2001 IBM Deutschland Entwicklung GmbH, IBM Corporation
6 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com),
8 * 'math.c' emulates IEEE instructions on a S390 processor
9 * that does not have the IEEE fpu (all processors before G5).
12 #include <linux/types.h>
13 #include <linux/sched.h>
15 #include <asm/uaccess.h>
16 #include <asm/lowcore.h>
18 #include <asm/sfp-util.h>
19 #include <math-emu/soft-fp.h>
20 #include <math-emu/single.h>
21 #include <math-emu/double.h>
22 #include <math-emu/quad.h>
25 * I miss a macro to round a floating point number to the
26 * nearest integer in the same floating point format.
28 #define _FP_TO_FPINT_ROUND(fs, wc, X) \
33 if (X##_e > _FP_FRACBITS_##fs + _FP_EXPBIAS_##fs) \
34 { /* floating point number has no bits after the dot. */ \
36 else if (X##_e <= _FP_FRACBITS_##fs + _FP_EXPBIAS_##fs && \
37 X##_e > _FP_EXPBIAS_##fs) \
38 { /* some bits before the dot, some after it. */ \
39 _FP_FRAC_SRS_##wc(X, _FP_WFRACBITS_##fs, \
40 X##_e - _FP_EXPBIAS_##fs \
41 + _FP_FRACBITS_##fs); \
43 _FP_FRAC_SLL_##wc(X, X##_e - _FP_EXPBIAS_##fs \
44 + _FP_FRACBITS_##fs); \
47 { /* all bits after the dot. */ \
48 FP_SET_EXCEPTION(FP_EX_INEXACT); \
49 X##_c = FP_CLS_ZERO; \
59 #define FP_TO_FPINT_ROUND_S(X) _FP_TO_FPINT_ROUND(S,1,X)
60 #define FP_TO_FPINT_ROUND_D(X) _FP_TO_FPINT_ROUND(D,2,X)
61 #define FP_TO_FPINT_ROUND_Q(X) _FP_TO_FPINT_ROUND(Q,4,X)
72 int sysctl_ieee_emulation_warnings
=1;
75 #define mathemu_put_user(x, p) \
77 if (put_user((x),(p))) \
81 #define mathemu_get_user(x, p) \
83 if (get_user((x),(p))) \
87 #define mathemu_copy_from_user(d, s, n)\
89 if (copy_from_user((d),(s),(n)) != 0) \
93 #define mathemu_copy_to_user(d, s, n) \
95 if (copy_to_user((d),(s),(n)) != 0) \
99 static void display_emulation_not_implemented(struct pt_regs
*regs
, char *instr
)
104 if(sysctl_ieee_emulation_warnings
)
107 location
= (__u16
*)(regs
->psw
.addr
-S390_lowcore
.pgm_ilc
);
108 printk("%s ieee fpu instruction not emulated "
109 "process name: %s pid: %d \n",
110 instr
, current
->comm
, current
->pid
);
111 printk("%s's PSW: %08lx %08lx\n", instr
,
112 (unsigned long) regs
->psw
.mask
,
113 (unsigned long) location
);
117 static inline void emu_set_CC (struct pt_regs
*regs
, int cc
)
119 regs
->psw
.mask
= (regs
->psw
.mask
& 0xFFFFCFFF) | ((cc
&3) << 12);
123 * Set the condition code in the user psw.
125 * 1 : Result is less than zero
126 * 2 : Result is greater than zero
127 * 3 : Result is NaN or INF
129 static inline void emu_set_CC_cs(struct pt_regs
*regs
, int class, int sign
)
134 emu_set_CC(regs
, sign
? 1 : 2);
145 /* Add long double */
146 static int emu_axbr (struct pt_regs
*regs
, int rx
, int ry
) {
147 FP_DECL_Q(QA
); FP_DECL_Q(QB
); FP_DECL_Q(QR
);
152 mode
= current
->thread
.fp_regs
.fpc
& 3;
153 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[rx
].ui
;
154 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[rx
+2].ui
;
155 FP_UNPACK_QP(QA
, &cvt
.ld
);
156 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
157 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
158 FP_UNPACK_QP(QB
, &cvt
.ld
);
159 FP_ADD_Q(QR
, QA
, QB
);
160 FP_PACK_QP(&cvt
.ld
, QR
);
161 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
162 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
163 emu_set_CC_cs(regs
, QR_c
, QR_s
);
168 static int emu_adbr (struct pt_regs
*regs
, int rx
, int ry
) {
169 FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DR
);
173 mode
= current
->thread
.fp_regs
.fpc
& 3;
174 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
175 FP_UNPACK_DP(DB
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
176 FP_ADD_D(DR
, DA
, DB
);
177 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
178 emu_set_CC_cs(regs
, DR_c
, DR_s
);
183 static int emu_adb (struct pt_regs
*regs
, int rx
, double *val
) {
184 FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DR
);
188 mode
= current
->thread
.fp_regs
.fpc
& 3;
189 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
190 FP_UNPACK_DP(DB
, val
);
191 FP_ADD_D(DR
, DA
, DB
);
192 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
193 emu_set_CC_cs(regs
, DR_c
, DR_s
);
198 static int emu_aebr (struct pt_regs
*regs
, int rx
, int ry
) {
199 FP_DECL_S(SA
); FP_DECL_S(SB
); FP_DECL_S(SR
);
203 mode
= current
->thread
.fp_regs
.fpc
& 3;
204 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
205 FP_UNPACK_SP(SB
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
206 FP_ADD_S(SR
, SA
, SB
);
207 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
208 emu_set_CC_cs(regs
, SR_c
, SR_s
);
213 static int emu_aeb (struct pt_regs
*regs
, int rx
, float *val
) {
214 FP_DECL_S(SA
); FP_DECL_S(SB
); FP_DECL_S(SR
);
218 mode
= current
->thread
.fp_regs
.fpc
& 3;
219 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
220 FP_UNPACK_SP(SB
, val
);
221 FP_ADD_S(SR
, SA
, SB
);
222 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
223 emu_set_CC_cs(regs
, SR_c
, SR_s
);
227 /* Compare long double */
228 static int emu_cxbr (struct pt_regs
*regs
, int rx
, int ry
) {
229 FP_DECL_Q(QA
); FP_DECL_Q(QB
);
233 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[rx
].ui
;
234 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[rx
+2].ui
;
235 FP_UNPACK_RAW_QP(QA
, &cvt
.ld
);
236 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
237 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
238 FP_UNPACK_RAW_QP(QB
, &cvt
.ld
);
239 FP_CMP_Q(IR
, QA
, QB
, 3);
241 * IR == -1 if DA < DB, IR == 0 if DA == DB,
242 * IR == 1 if DA > DB and IR == 3 if unorderded
244 emu_set_CC(regs
, (IR
== -1) ? 1 : (IR
== 1) ? 2 : IR
);
249 static int emu_cdbr (struct pt_regs
*regs
, int rx
, int ry
) {
250 FP_DECL_D(DA
); FP_DECL_D(DB
);
253 FP_UNPACK_RAW_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
254 FP_UNPACK_RAW_DP(DB
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
255 FP_CMP_D(IR
, DA
, DB
, 3);
257 * IR == -1 if DA < DB, IR == 0 if DA == DB,
258 * IR == 1 if DA > DB and IR == 3 if unorderded
260 emu_set_CC(regs
, (IR
== -1) ? 1 : (IR
== 1) ? 2 : IR
);
265 static int emu_cdb (struct pt_regs
*regs
, int rx
, double *val
) {
266 FP_DECL_D(DA
); FP_DECL_D(DB
);
269 FP_UNPACK_RAW_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
270 FP_UNPACK_RAW_DP(DB
, val
);
271 FP_CMP_D(IR
, DA
, DB
, 3);
273 * IR == -1 if DA < DB, IR == 0 if DA == DB,
274 * IR == 1 if DA > DB and IR == 3 if unorderded
276 emu_set_CC(regs
, (IR
== -1) ? 1 : (IR
== 1) ? 2 : IR
);
281 static int emu_cebr (struct pt_regs
*regs
, int rx
, int ry
) {
282 FP_DECL_S(SA
); FP_DECL_S(SB
);
285 FP_UNPACK_RAW_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
286 FP_UNPACK_RAW_SP(SB
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
287 FP_CMP_S(IR
, SA
, SB
, 3);
289 * IR == -1 if DA < DB, IR == 0 if DA == DB,
290 * IR == 1 if DA > DB and IR == 3 if unorderded
292 emu_set_CC(regs
, (IR
== -1) ? 1 : (IR
== 1) ? 2 : IR
);
297 static int emu_ceb (struct pt_regs
*regs
, int rx
, float *val
) {
298 FP_DECL_S(SA
); FP_DECL_S(SB
);
301 FP_UNPACK_RAW_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
302 FP_UNPACK_RAW_SP(SB
, val
);
303 FP_CMP_S(IR
, SA
, SB
, 3);
305 * IR == -1 if DA < DB, IR == 0 if DA == DB,
306 * IR == 1 if DA > DB and IR == 3 if unorderded
308 emu_set_CC(regs
, (IR
== -1) ? 1 : (IR
== 1) ? 2 : IR
);
312 /* Compare and signal long double */
313 static int emu_kxbr (struct pt_regs
*regs
, int rx
, int ry
) {
314 FP_DECL_Q(QA
); FP_DECL_Q(QB
);
319 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[rx
].ui
;
320 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[rx
+2].ui
;
321 FP_UNPACK_RAW_QP(QA
, &cvt
.ld
);
322 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
323 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
324 FP_UNPACK_QP(QB
, &cvt
.ld
);
325 FP_CMP_Q(IR
, QA
, QB
, 3);
327 * IR == -1 if DA < DB, IR == 0 if DA == DB,
328 * IR == 1 if DA > DB and IR == 3 if unorderded
330 emu_set_CC(regs
, (IR
== -1) ? 1 : (IR
== 1) ? 2 : IR
);
332 FP_SET_EXCEPTION (FP_EX_INVALID
);
336 /* Compare and signal double */
337 static int emu_kdbr (struct pt_regs
*regs
, int rx
, int ry
) {
338 FP_DECL_D(DA
); FP_DECL_D(DB
);
342 FP_UNPACK_RAW_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
343 FP_UNPACK_RAW_DP(DB
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
344 FP_CMP_D(IR
, DA
, DB
, 3);
346 * IR == -1 if DA < DB, IR == 0 if DA == DB,
347 * IR == 1 if DA > DB and IR == 3 if unorderded
349 emu_set_CC(regs
, (IR
== -1) ? 1 : (IR
== 1) ? 2 : IR
);
351 FP_SET_EXCEPTION (FP_EX_INVALID
);
355 /* Compare and signal double */
356 static int emu_kdb (struct pt_regs
*regs
, int rx
, double *val
) {
357 FP_DECL_D(DA
); FP_DECL_D(DB
);
361 FP_UNPACK_RAW_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
362 FP_UNPACK_RAW_DP(DB
, val
);
363 FP_CMP_D(IR
, DA
, DB
, 3);
365 * IR == -1 if DA < DB, IR == 0 if DA == DB,
366 * IR == 1 if DA > DB and IR == 3 if unorderded
368 emu_set_CC(regs
, (IR
== -1) ? 1 : (IR
== 1) ? 2 : IR
);
370 FP_SET_EXCEPTION (FP_EX_INVALID
);
374 /* Compare and signal float */
375 static int emu_kebr (struct pt_regs
*regs
, int rx
, int ry
) {
376 FP_DECL_S(SA
); FP_DECL_S(SB
);
380 FP_UNPACK_RAW_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
381 FP_UNPACK_RAW_SP(SB
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
382 FP_CMP_S(IR
, SA
, SB
, 3);
384 * IR == -1 if DA < DB, IR == 0 if DA == DB,
385 * IR == 1 if DA > DB and IR == 3 if unorderded
387 emu_set_CC(regs
, (IR
== -1) ? 1 : (IR
== 1) ? 2 : IR
);
389 FP_SET_EXCEPTION (FP_EX_INVALID
);
393 /* Compare and signal float */
394 static int emu_keb (struct pt_regs
*regs
, int rx
, float *val
) {
395 FP_DECL_S(SA
); FP_DECL_S(SB
);
399 FP_UNPACK_RAW_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
400 FP_UNPACK_RAW_SP(SB
, val
);
401 FP_CMP_S(IR
, SA
, SB
, 3);
403 * IR == -1 if DA < DB, IR == 0 if DA == DB,
404 * IR == 1 if DA > DB and IR == 3 if unorderded
406 emu_set_CC(regs
, (IR
== -1) ? 1 : (IR
== 1) ? 2 : IR
);
408 FP_SET_EXCEPTION (FP_EX_INVALID
);
412 /* Convert from fixed long double */
413 static int emu_cxfbr (struct pt_regs
*regs
, int rx
, int ry
) {
420 mode
= current
->thread
.fp_regs
.fpc
& 3;
422 FP_FROM_INT_Q(QR
, si
, 32, int);
423 FP_PACK_QP(&cvt
.ld
, QR
);
424 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
425 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
429 /* Convert from fixed double */
430 static int emu_cdfbr (struct pt_regs
*regs
, int rx
, int ry
) {
436 mode
= current
->thread
.fp_regs
.fpc
& 3;
438 FP_FROM_INT_D(DR
, si
, 32, int);
439 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
443 /* Convert from fixed float */
444 static int emu_cefbr (struct pt_regs
*regs
, int rx
, int ry
) {
450 mode
= current
->thread
.fp_regs
.fpc
& 3;
452 FP_FROM_INT_S(SR
, si
, 32, int);
453 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
457 /* Convert to fixed long double */
458 static int emu_cfxbr (struct pt_regs
*regs
, int rx
, int ry
, int mask
) {
466 mode
= current
->thread
.fp_regs
.fpc
& 3;
468 mode
= FP_RND_NEAREST
;
471 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
472 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
473 FP_UNPACK_QP(QA
, &cvt
.ld
);
474 FP_TO_INT_ROUND_Q(si
, QA
, 32, 1);
476 emu_set_CC_cs(regs
, QA_c
, QA_s
);
480 /* Convert to fixed double */
481 static int emu_cfdbr (struct pt_regs
*regs
, int rx
, int ry
, int mask
) {
488 mode
= current
->thread
.fp_regs
.fpc
& 3;
490 mode
= FP_RND_NEAREST
;
493 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
494 FP_TO_INT_ROUND_D(si
, DA
, 32, 1);
496 emu_set_CC_cs(regs
, DA_c
, DA_s
);
500 /* Convert to fixed float */
501 static int emu_cfebr (struct pt_regs
*regs
, int rx
, int ry
, int mask
) {
508 mode
= current
->thread
.fp_regs
.fpc
& 3;
510 mode
= FP_RND_NEAREST
;
513 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
514 FP_TO_INT_ROUND_S(si
, SA
, 32, 1);
516 emu_set_CC_cs(regs
, SA_c
, SA_s
);
520 /* Divide long double */
521 static int emu_dxbr (struct pt_regs
*regs
, int rx
, int ry
) {
522 FP_DECL_Q(QA
); FP_DECL_Q(QB
); FP_DECL_Q(QR
);
527 mode
= current
->thread
.fp_regs
.fpc
& 3;
528 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[rx
].ui
;
529 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[rx
+2].ui
;
530 FP_UNPACK_QP(QA
, &cvt
.ld
);
531 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
532 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
533 FP_UNPACK_QP(QB
, &cvt
.ld
);
534 FP_DIV_Q(QR
, QA
, QB
);
535 FP_PACK_QP(&cvt
.ld
, QR
);
536 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
537 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
542 static int emu_ddbr (struct pt_regs
*regs
, int rx
, int ry
) {
543 FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DR
);
547 mode
= current
->thread
.fp_regs
.fpc
& 3;
548 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
549 FP_UNPACK_DP(DB
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
550 FP_DIV_D(DR
, DA
, DB
);
551 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
556 static int emu_ddb (struct pt_regs
*regs
, int rx
, double *val
) {
557 FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DR
);
561 mode
= current
->thread
.fp_regs
.fpc
& 3;
562 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
563 FP_UNPACK_DP(DB
, val
);
564 FP_DIV_D(DR
, DA
, DB
);
565 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
570 static int emu_debr (struct pt_regs
*regs
, int rx
, int ry
) {
571 FP_DECL_S(SA
); FP_DECL_S(SB
); FP_DECL_S(SR
);
575 mode
= current
->thread
.fp_regs
.fpc
& 3;
576 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
577 FP_UNPACK_SP(SB
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
578 FP_DIV_S(SR
, SA
, SB
);
579 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
584 static int emu_deb (struct pt_regs
*regs
, int rx
, float *val
) {
585 FP_DECL_S(SA
); FP_DECL_S(SB
); FP_DECL_S(SR
);
589 mode
= current
->thread
.fp_regs
.fpc
& 3;
590 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
591 FP_UNPACK_SP(SB
, val
);
592 FP_DIV_S(SR
, SA
, SB
);
593 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
597 /* Divide to integer double */
598 static int emu_didbr (struct pt_regs
*regs
, int rx
, int ry
, int mask
) {
599 display_emulation_not_implemented(regs
, "didbr");
603 /* Divide to integer float */
604 static int emu_diebr (struct pt_regs
*regs
, int rx
, int ry
, int mask
) {
605 display_emulation_not_implemented(regs
, "diebr");
610 static int emu_efpc (struct pt_regs
*regs
, int rx
, int ry
) {
611 regs
->gprs
[rx
] = current
->thread
.fp_regs
.fpc
;
615 /* Load and test long double */
616 static int emu_ltxbr (struct pt_regs
*regs
, int rx
, int ry
) {
617 s390_fp_regs
*fp_regs
= ¤t
->thread
.fp_regs
;
622 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
623 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
624 FP_UNPACK_QP(QA
, &cvt
.ld
);
625 fp_regs
->fprs
[rx
].ui
= fp_regs
->fprs
[ry
].ui
;
626 fp_regs
->fprs
[rx
+2].ui
= fp_regs
->fprs
[ry
+2].ui
;
627 emu_set_CC_cs(regs
, QA_c
, QA_s
);
631 /* Load and test double */
632 static int emu_ltdbr (struct pt_regs
*regs
, int rx
, int ry
) {
633 s390_fp_regs
*fp_regs
= ¤t
->thread
.fp_regs
;
637 FP_UNPACK_DP(DA
, &fp_regs
->fprs
[ry
].d
);
638 fp_regs
->fprs
[rx
].ui
= fp_regs
->fprs
[ry
].ui
;
639 emu_set_CC_cs(regs
, DA_c
, DA_s
);
643 /* Load and test double */
644 static int emu_ltebr (struct pt_regs
*regs
, int rx
, int ry
) {
645 s390_fp_regs
*fp_regs
= ¤t
->thread
.fp_regs
;
649 FP_UNPACK_SP(SA
, &fp_regs
->fprs
[ry
].f
);
650 fp_regs
->fprs
[rx
].ui
= fp_regs
->fprs
[ry
].ui
;
651 emu_set_CC_cs(regs
, SA_c
, SA_s
);
655 /* Load complement long double */
656 static int emu_lcxbr (struct pt_regs
*regs
, int rx
, int ry
) {
657 FP_DECL_Q(QA
); FP_DECL_Q(QR
);
662 mode
= current
->thread
.fp_regs
.fpc
& 3;
663 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
664 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
665 FP_UNPACK_QP(QA
, &cvt
.ld
);
667 FP_PACK_QP(&cvt
.ld
, QR
);
668 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
669 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
670 emu_set_CC_cs(regs
, QR_c
, QR_s
);
674 /* Load complement double */
675 static int emu_lcdbr (struct pt_regs
*regs
, int rx
, int ry
) {
676 FP_DECL_D(DA
); FP_DECL_D(DR
);
680 mode
= current
->thread
.fp_regs
.fpc
& 3;
681 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
683 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
684 emu_set_CC_cs(regs
, DR_c
, DR_s
);
688 /* Load complement float */
689 static int emu_lcebr (struct pt_regs
*regs
, int rx
, int ry
) {
690 FP_DECL_S(SA
); FP_DECL_S(SR
);
694 mode
= current
->thread
.fp_regs
.fpc
& 3;
695 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
697 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
698 emu_set_CC_cs(regs
, SR_c
, SR_s
);
702 /* Load floating point integer long double */
703 static int emu_fixbr (struct pt_regs
*regs
, int rx
, int ry
, int mask
) {
704 s390_fp_regs
*fp_regs
= ¤t
->thread
.fp_regs
;
712 mode
= fp_regs
->fpc
& 3;
714 mode
= FP_RND_NEAREST
;
717 cvt
.w
.high
= fp_regs
->fprs
[ry
].ui
;
718 cvt
.w
.low
= fp_regs
->fprs
[ry
+2].ui
;
719 FP_UNPACK_QP(QA
, &cvt
.ld
);
720 FP_TO_FPINT_ROUND_Q(QA
);
721 FP_PACK_QP(&cvt
.ld
, QA
);
722 fp_regs
->fprs
[rx
].ui
= cvt
.w
.high
;
723 fp_regs
->fprs
[rx
+2].ui
= cvt
.w
.low
;
727 /* Load floating point integer double */
728 static int emu_fidbr (struct pt_regs
*regs
, int rx
, int ry
, int mask
) {
729 /* FIXME: rounding mode !! */
730 s390_fp_regs
*fp_regs
= ¤t
->thread
.fp_regs
;
737 mode
= fp_regs
->fpc
& 3;
739 mode
= FP_RND_NEAREST
;
742 FP_UNPACK_DP(DA
, &fp_regs
->fprs
[ry
].d
);
743 FP_TO_FPINT_ROUND_D(DA
);
744 FP_PACK_DP(&fp_regs
->fprs
[rx
].d
, DA
);
748 /* Load floating point integer float */
749 static int emu_fiebr (struct pt_regs
*regs
, int rx
, int ry
, int mask
) {
750 s390_fp_regs
*fp_regs
= ¤t
->thread
.fp_regs
;
757 mode
= fp_regs
->fpc
& 3;
759 mode
= FP_RND_NEAREST
;
762 FP_UNPACK_SP(SA
, &fp_regs
->fprs
[ry
].f
);
763 FP_TO_FPINT_ROUND_S(SA
);
764 FP_PACK_SP(&fp_regs
->fprs
[rx
].f
, SA
);
768 /* Load lengthened double to long double */
769 static int emu_lxdbr (struct pt_regs
*regs
, int rx
, int ry
) {
770 FP_DECL_D(DA
); FP_DECL_Q(QR
);
775 mode
= current
->thread
.fp_regs
.fpc
& 3;
776 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
777 FP_CONV (Q
, D
, 4, 2, QR
, DA
);
778 FP_PACK_QP(&cvt
.ld
, QR
);
779 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
780 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
784 /* Load lengthened double to long double */
785 static int emu_lxdb (struct pt_regs
*regs
, int rx
, double *val
) {
786 FP_DECL_D(DA
); FP_DECL_Q(QR
);
791 mode
= current
->thread
.fp_regs
.fpc
& 3;
792 FP_UNPACK_DP(DA
, val
);
793 FP_CONV (Q
, D
, 4, 2, QR
, DA
);
794 FP_PACK_QP(&cvt
.ld
, QR
);
795 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
796 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
800 /* Load lengthened float to long double */
801 static int emu_lxebr (struct pt_regs
*regs
, int rx
, int ry
) {
802 FP_DECL_S(SA
); FP_DECL_Q(QR
);
807 mode
= current
->thread
.fp_regs
.fpc
& 3;
808 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
809 FP_CONV (Q
, S
, 4, 1, QR
, SA
);
810 FP_PACK_QP(&cvt
.ld
, QR
);
811 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
812 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
816 /* Load lengthened float to long double */
817 static int emu_lxeb (struct pt_regs
*regs
, int rx
, float *val
) {
818 FP_DECL_S(SA
); FP_DECL_Q(QR
);
823 mode
= current
->thread
.fp_regs
.fpc
& 3;
824 FP_UNPACK_SP(SA
, val
);
825 FP_CONV (Q
, S
, 4, 1, QR
, SA
);
826 FP_PACK_QP(&cvt
.ld
, QR
);
827 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
828 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
832 /* Load lengthened float to double */
833 static int emu_ldebr (struct pt_regs
*regs
, int rx
, int ry
) {
834 FP_DECL_S(SA
); FP_DECL_D(DR
);
838 mode
= current
->thread
.fp_regs
.fpc
& 3;
839 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
840 FP_CONV (D
, S
, 2, 1, DR
, SA
);
841 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
845 /* Load lengthened float to double */
846 static int emu_ldeb (struct pt_regs
*regs
, int rx
, float *val
) {
847 FP_DECL_S(SA
); FP_DECL_D(DR
);
851 mode
= current
->thread
.fp_regs
.fpc
& 3;
852 FP_UNPACK_SP(SA
, val
);
853 FP_CONV (D
, S
, 2, 1, DR
, SA
);
854 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
858 /* Load negative long double */
859 static int emu_lnxbr (struct pt_regs
*regs
, int rx
, int ry
) {
860 FP_DECL_Q(QA
); FP_DECL_Q(QR
);
865 mode
= current
->thread
.fp_regs
.fpc
& 3;
866 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
867 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
868 FP_UNPACK_QP(QA
, &cvt
.ld
);
871 FP_PACK_QP(&cvt
.ld
, QR
);
872 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
873 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
875 current
->thread
.fp_regs
.fprs
[rx
].ui
=
876 current
->thread
.fp_regs
.fprs
[ry
].ui
;
877 current
->thread
.fp_regs
.fprs
[rx
+2].ui
=
878 current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
880 emu_set_CC_cs(regs
, QR_c
, QR_s
);
884 /* Load negative double */
885 static int emu_lndbr (struct pt_regs
*regs
, int rx
, int ry
) {
886 FP_DECL_D(DA
); FP_DECL_D(DR
);
890 mode
= current
->thread
.fp_regs
.fpc
& 3;
891 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
894 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
896 current
->thread
.fp_regs
.fprs
[rx
].ui
=
897 current
->thread
.fp_regs
.fprs
[ry
].ui
;
898 emu_set_CC_cs(regs
, DR_c
, DR_s
);
902 /* Load negative float */
903 static int emu_lnebr (struct pt_regs
*regs
, int rx
, int ry
) {
904 FP_DECL_S(SA
); FP_DECL_S(SR
);
908 mode
= current
->thread
.fp_regs
.fpc
& 3;
909 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
912 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
914 current
->thread
.fp_regs
.fprs
[rx
].ui
=
915 current
->thread
.fp_regs
.fprs
[ry
].ui
;
916 emu_set_CC_cs(regs
, SR_c
, SR_s
);
920 /* Load positive long double */
921 static int emu_lpxbr (struct pt_regs
*regs
, int rx
, int ry
) {
922 FP_DECL_Q(QA
); FP_DECL_Q(QR
);
927 mode
= current
->thread
.fp_regs
.fpc
& 3;
928 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
929 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
930 FP_UNPACK_QP(QA
, &cvt
.ld
);
933 FP_PACK_QP(&cvt
.ld
, QR
);
934 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
935 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
937 current
->thread
.fp_regs
.fprs
[rx
].ui
=
938 current
->thread
.fp_regs
.fprs
[ry
].ui
;
939 current
->thread
.fp_regs
.fprs
[rx
+2].ui
=
940 current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
942 emu_set_CC_cs(regs
, QR_c
, QR_s
);
946 /* Load positive double */
947 static int emu_lpdbr (struct pt_regs
*regs
, int rx
, int ry
) {
948 FP_DECL_D(DA
); FP_DECL_D(DR
);
952 mode
= current
->thread
.fp_regs
.fpc
& 3;
953 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
956 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
958 current
->thread
.fp_regs
.fprs
[rx
].ui
=
959 current
->thread
.fp_regs
.fprs
[ry
].ui
;
960 emu_set_CC_cs(regs
, DR_c
, DR_s
);
964 /* Load positive float */
965 static int emu_lpebr (struct pt_regs
*regs
, int rx
, int ry
) {
966 FP_DECL_S(SA
); FP_DECL_S(SR
);
970 mode
= current
->thread
.fp_regs
.fpc
& 3;
971 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
974 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
976 current
->thread
.fp_regs
.fprs
[rx
].ui
=
977 current
->thread
.fp_regs
.fprs
[ry
].ui
;
978 emu_set_CC_cs(regs
, SR_c
, SR_s
);
982 /* Load rounded long double to double */
983 static int emu_ldxbr (struct pt_regs
*regs
, int rx
, int ry
) {
984 FP_DECL_Q(QA
); FP_DECL_D(DR
);
989 mode
= current
->thread
.fp_regs
.fpc
& 3;
990 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
991 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
992 FP_UNPACK_QP(QA
, &cvt
.ld
);
993 FP_CONV (D
, Q
, 2, 4, DR
, QA
);
994 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, DR
);
998 /* Load rounded long double to float */
999 static int emu_lexbr (struct pt_regs
*regs
, int rx
, int ry
) {
1000 FP_DECL_Q(QA
); FP_DECL_S(SR
);
1005 mode
= current
->thread
.fp_regs
.fpc
& 3;
1006 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
1007 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
1008 FP_UNPACK_QP(QA
, &cvt
.ld
);
1009 FP_CONV (S
, Q
, 1, 4, SR
, QA
);
1010 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
1014 /* Load rounded double to float */
1015 static int emu_ledbr (struct pt_regs
*regs
, int rx
, int ry
) {
1016 FP_DECL_D(DA
); FP_DECL_S(SR
);
1020 mode
= current
->thread
.fp_regs
.fpc
& 3;
1021 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
1022 FP_CONV (S
, D
, 1, 2, SR
, DA
);
1023 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
1027 /* Multiply long double */
1028 static int emu_mxbr (struct pt_regs
*regs
, int rx
, int ry
) {
1029 FP_DECL_Q(QA
); FP_DECL_Q(QB
); FP_DECL_Q(QR
);
1034 mode
= current
->thread
.fp_regs
.fpc
& 3;
1035 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[rx
].ui
;
1036 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[rx
+2].ui
;
1037 FP_UNPACK_QP(QA
, &cvt
.ld
);
1038 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
1039 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
1040 FP_UNPACK_QP(QB
, &cvt
.ld
);
1041 FP_MUL_Q(QR
, QA
, QB
);
1042 FP_PACK_QP(&cvt
.ld
, QR
);
1043 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
1044 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
1048 /* Multiply double */
1049 static int emu_mdbr (struct pt_regs
*regs
, int rx
, int ry
) {
1050 FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DR
);
1054 mode
= current
->thread
.fp_regs
.fpc
& 3;
1055 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
1056 FP_UNPACK_DP(DB
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
1057 FP_MUL_D(DR
, DA
, DB
);
1058 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
1062 /* Multiply double */
1063 static int emu_mdb (struct pt_regs
*regs
, int rx
, double *val
) {
1064 FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DR
);
1068 mode
= current
->thread
.fp_regs
.fpc
& 3;
1069 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
1070 FP_UNPACK_DP(DB
, val
);
1071 FP_MUL_D(DR
, DA
, DB
);
1072 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
1076 /* Multiply double to long double */
1077 static int emu_mxdbr (struct pt_regs
*regs
, int rx
, int ry
) {
1078 FP_DECL_D(DA
); FP_DECL_Q(QA
); FP_DECL_Q(QB
); FP_DECL_Q(QR
);
1083 mode
= current
->thread
.fp_regs
.fpc
& 3;
1084 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
1085 FP_CONV (Q
, D
, 4, 2, QA
, DA
);
1086 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
1087 FP_CONV (Q
, D
, 4, 2, QB
, DA
);
1088 FP_MUL_Q(QR
, QA
, QB
);
1089 FP_PACK_QP(&cvt
.ld
, QR
);
1090 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
1091 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
1095 /* Multiply double to long double */
1096 static int emu_mxdb (struct pt_regs
*regs
, int rx
, long double *val
) {
1097 FP_DECL_Q(QA
); FP_DECL_Q(QB
); FP_DECL_Q(QR
);
1102 mode
= current
->thread
.fp_regs
.fpc
& 3;
1103 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[rx
].ui
;
1104 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[rx
+2].ui
;
1105 FP_UNPACK_QP(QA
, &cvt
.ld
);
1106 FP_UNPACK_QP(QB
, val
);
1107 FP_MUL_Q(QR
, QA
, QB
);
1108 FP_PACK_QP(&cvt
.ld
, QR
);
1109 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
1110 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
1114 /* Multiply float */
1115 static int emu_meebr (struct pt_regs
*regs
, int rx
, int ry
) {
1116 FP_DECL_S(SA
); FP_DECL_S(SB
); FP_DECL_S(SR
);
1120 mode
= current
->thread
.fp_regs
.fpc
& 3;
1121 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
1122 FP_UNPACK_SP(SB
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
1123 FP_MUL_S(SR
, SA
, SB
);
1124 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
1128 /* Multiply float */
1129 static int emu_meeb (struct pt_regs
*regs
, int rx
, float *val
) {
1130 FP_DECL_S(SA
); FP_DECL_S(SB
); FP_DECL_S(SR
);
1134 mode
= current
->thread
.fp_regs
.fpc
& 3;
1135 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
1136 FP_UNPACK_SP(SB
, val
);
1137 FP_MUL_S(SR
, SA
, SB
);
1138 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
1142 /* Multiply float to double */
1143 static int emu_mdebr (struct pt_regs
*regs
, int rx
, int ry
) {
1144 FP_DECL_S(SA
); FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DR
);
1148 mode
= current
->thread
.fp_regs
.fpc
& 3;
1149 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
1150 FP_CONV (D
, S
, 2, 1, DA
, SA
);
1151 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
1152 FP_CONV (D
, S
, 2, 1, DB
, SA
);
1153 FP_MUL_D(DR
, DA
, DB
);
1154 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
1158 /* Multiply float to double */
1159 static int emu_mdeb (struct pt_regs
*regs
, int rx
, float *val
) {
1160 FP_DECL_S(SA
); FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DR
);
1164 mode
= current
->thread
.fp_regs
.fpc
& 3;
1165 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
1166 FP_CONV (D
, S
, 2, 1, DA
, SA
);
1167 FP_UNPACK_SP(SA
, val
);
1168 FP_CONV (D
, S
, 2, 1, DB
, SA
);
1169 FP_MUL_D(DR
, DA
, DB
);
1170 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
1174 /* Multiply and add double */
1175 static int emu_madbr (struct pt_regs
*regs
, int rx
, int ry
, int rz
) {
1176 FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DC
); FP_DECL_D(DR
);
1180 mode
= current
->thread
.fp_regs
.fpc
& 3;
1181 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
1182 FP_UNPACK_DP(DB
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
1183 FP_UNPACK_DP(DC
, ¤t
->thread
.fp_regs
.fprs
[rz
].d
);
1184 FP_MUL_D(DR
, DA
, DB
);
1185 FP_ADD_D(DR
, DR
, DC
);
1186 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rz
].d
, DR
);
1190 /* Multiply and add double */
1191 static int emu_madb (struct pt_regs
*regs
, int rx
, double *val
, int rz
) {
1192 FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DC
); FP_DECL_D(DR
);
1196 mode
= current
->thread
.fp_regs
.fpc
& 3;
1197 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
1198 FP_UNPACK_DP(DB
, val
);
1199 FP_UNPACK_DP(DC
, ¤t
->thread
.fp_regs
.fprs
[rz
].d
);
1200 FP_MUL_D(DR
, DA
, DB
);
1201 FP_ADD_D(DR
, DR
, DC
);
1202 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rz
].d
, DR
);
1206 /* Multiply and add float */
1207 static int emu_maebr (struct pt_regs
*regs
, int rx
, int ry
, int rz
) {
1208 FP_DECL_S(SA
); FP_DECL_S(SB
); FP_DECL_S(SC
); FP_DECL_S(SR
);
1212 mode
= current
->thread
.fp_regs
.fpc
& 3;
1213 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
1214 FP_UNPACK_SP(SB
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
1215 FP_UNPACK_SP(SC
, ¤t
->thread
.fp_regs
.fprs
[rz
].f
);
1216 FP_MUL_S(SR
, SA
, SB
);
1217 FP_ADD_S(SR
, SR
, SC
);
1218 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rz
].f
, SR
);
1222 /* Multiply and add float */
1223 static int emu_maeb (struct pt_regs
*regs
, int rx
, float *val
, int rz
) {
1224 FP_DECL_S(SA
); FP_DECL_S(SB
); FP_DECL_S(SC
); FP_DECL_S(SR
);
1228 mode
= current
->thread
.fp_regs
.fpc
& 3;
1229 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
1230 FP_UNPACK_SP(SB
, val
);
1231 FP_UNPACK_SP(SC
, ¤t
->thread
.fp_regs
.fprs
[rz
].f
);
1232 FP_MUL_S(SR
, SA
, SB
);
1233 FP_ADD_S(SR
, SR
, SC
);
1234 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rz
].f
, SR
);
1238 /* Multiply and subtract double */
1239 static int emu_msdbr (struct pt_regs
*regs
, int rx
, int ry
, int rz
) {
1240 FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DC
); FP_DECL_D(DR
);
1244 mode
= current
->thread
.fp_regs
.fpc
& 3;
1245 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
1246 FP_UNPACK_DP(DB
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
1247 FP_UNPACK_DP(DC
, ¤t
->thread
.fp_regs
.fprs
[rz
].d
);
1248 FP_MUL_D(DR
, DA
, DB
);
1249 FP_SUB_D(DR
, DR
, DC
);
1250 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rz
].d
, DR
);
1254 /* Multiply and subtract double */
1255 static int emu_msdb (struct pt_regs
*regs
, int rx
, double *val
, int rz
) {
1256 FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DC
); FP_DECL_D(DR
);
1260 mode
= current
->thread
.fp_regs
.fpc
& 3;
1261 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
1262 FP_UNPACK_DP(DB
, val
);
1263 FP_UNPACK_DP(DC
, ¤t
->thread
.fp_regs
.fprs
[rz
].d
);
1264 FP_MUL_D(DR
, DA
, DB
);
1265 FP_SUB_D(DR
, DR
, DC
);
1266 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rz
].d
, DR
);
1270 /* Multiply and subtract float */
1271 static int emu_msebr (struct pt_regs
*regs
, int rx
, int ry
, int rz
) {
1272 FP_DECL_S(SA
); FP_DECL_S(SB
); FP_DECL_S(SC
); FP_DECL_S(SR
);
1276 mode
= current
->thread
.fp_regs
.fpc
& 3;
1277 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
1278 FP_UNPACK_SP(SB
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
1279 FP_UNPACK_SP(SC
, ¤t
->thread
.fp_regs
.fprs
[rz
].f
);
1280 FP_MUL_S(SR
, SA
, SB
);
1281 FP_SUB_S(SR
, SR
, SC
);
1282 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rz
].f
, SR
);
1286 /* Multiply and subtract float */
1287 static int emu_mseb (struct pt_regs
*regs
, int rx
, float *val
, int rz
) {
1288 FP_DECL_S(SA
); FP_DECL_S(SB
); FP_DECL_S(SC
); FP_DECL_S(SR
);
1292 mode
= current
->thread
.fp_regs
.fpc
& 3;
1293 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
1294 FP_UNPACK_SP(SB
, val
);
1295 FP_UNPACK_SP(SC
, ¤t
->thread
.fp_regs
.fprs
[rz
].f
);
1296 FP_MUL_S(SR
, SA
, SB
);
1297 FP_SUB_S(SR
, SR
, SC
);
1298 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rz
].f
, SR
);
1302 /* Set floating point control word */
1303 static int emu_sfpc (struct pt_regs
*regs
, int rx
, int ry
) {
1306 temp
= regs
->gprs
[rx
];
1307 if ((temp
& ~FPC_VALID_MASK
) != 0)
1309 current
->thread
.fp_regs
.fpc
= temp
;
1313 /* Square root long double */
1314 static int emu_sqxbr (struct pt_regs
*regs
, int rx
, int ry
) {
1315 FP_DECL_Q(QA
); FP_DECL_Q(QR
);
1320 mode
= current
->thread
.fp_regs
.fpc
& 3;
1321 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
1322 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
1323 FP_UNPACK_QP(QA
, &cvt
.ld
);
1325 FP_PACK_QP(&cvt
.ld
, QR
);
1326 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
1327 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
1328 emu_set_CC_cs(regs
, QR_c
, QR_s
);
1332 /* Square root double */
1333 static int emu_sqdbr (struct pt_regs
*regs
, int rx
, int ry
) {
1334 FP_DECL_D(DA
); FP_DECL_D(DR
);
1338 mode
= current
->thread
.fp_regs
.fpc
& 3;
1339 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
1341 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
1342 emu_set_CC_cs(regs
, DR_c
, DR_s
);
1346 /* Square root double */
1347 static int emu_sqdb (struct pt_regs
*regs
, int rx
, double *val
) {
1348 FP_DECL_D(DA
); FP_DECL_D(DR
);
1352 mode
= current
->thread
.fp_regs
.fpc
& 3;
1353 FP_UNPACK_DP(DA
, val
);
1355 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
1356 emu_set_CC_cs(regs
, DR_c
, DR_s
);
1360 /* Square root float */
1361 static int emu_sqebr (struct pt_regs
*regs
, int rx
, int ry
) {
1362 FP_DECL_S(SA
); FP_DECL_S(SR
);
1366 mode
= current
->thread
.fp_regs
.fpc
& 3;
1367 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
1369 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
1370 emu_set_CC_cs(regs
, SR_c
, SR_s
);
1374 /* Square root float */
1375 static int emu_sqeb (struct pt_regs
*regs
, int rx
, float *val
) {
1376 FP_DECL_S(SA
); FP_DECL_S(SR
);
1380 mode
= current
->thread
.fp_regs
.fpc
& 3;
1381 FP_UNPACK_SP(SA
, val
);
1383 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
1384 emu_set_CC_cs(regs
, SR_c
, SR_s
);
1388 /* Subtract long double */
1389 static int emu_sxbr (struct pt_regs
*regs
, int rx
, int ry
) {
1390 FP_DECL_Q(QA
); FP_DECL_Q(QB
); FP_DECL_Q(QR
);
1395 mode
= current
->thread
.fp_regs
.fpc
& 3;
1396 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[rx
].ui
;
1397 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[rx
+2].ui
;
1398 FP_UNPACK_QP(QA
, &cvt
.ld
);
1399 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[ry
].ui
;
1400 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[ry
+2].ui
;
1401 FP_UNPACK_QP(QB
, &cvt
.ld
);
1402 FP_SUB_Q(QR
, QA
, QB
);
1403 FP_PACK_QP(&cvt
.ld
, QR
);
1404 current
->thread
.fp_regs
.fprs
[rx
].ui
= cvt
.w
.high
;
1405 current
->thread
.fp_regs
.fprs
[rx
+2].ui
= cvt
.w
.low
;
1406 emu_set_CC_cs(regs
, QR_c
, QR_s
);
1410 /* Subtract double */
1411 static int emu_sdbr (struct pt_regs
*regs
, int rx
, int ry
) {
1412 FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DR
);
1416 mode
= current
->thread
.fp_regs
.fpc
& 3;
1417 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
1418 FP_UNPACK_DP(DB
, ¤t
->thread
.fp_regs
.fprs
[ry
].d
);
1419 FP_SUB_D(DR
, DA
, DB
);
1420 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
1421 emu_set_CC_cs(regs
, DR_c
, DR_s
);
1425 /* Subtract double */
1426 static int emu_sdb (struct pt_regs
*regs
, int rx
, double *val
) {
1427 FP_DECL_D(DA
); FP_DECL_D(DB
); FP_DECL_D(DR
);
1431 mode
= current
->thread
.fp_regs
.fpc
& 3;
1432 FP_UNPACK_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
1433 FP_UNPACK_DP(DB
, val
);
1434 FP_SUB_D(DR
, DA
, DB
);
1435 FP_PACK_DP(¤t
->thread
.fp_regs
.fprs
[rx
].d
, DR
);
1436 emu_set_CC_cs(regs
, DR_c
, DR_s
);
1440 /* Subtract float */
1441 static int emu_sebr (struct pt_regs
*regs
, int rx
, int ry
) {
1442 FP_DECL_S(SA
); FP_DECL_S(SB
); FP_DECL_S(SR
);
1446 mode
= current
->thread
.fp_regs
.fpc
& 3;
1447 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
1448 FP_UNPACK_SP(SB
, ¤t
->thread
.fp_regs
.fprs
[ry
].f
);
1449 FP_SUB_S(SR
, SA
, SB
);
1450 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
1451 emu_set_CC_cs(regs
, SR_c
, SR_s
);
1455 /* Subtract float */
1456 static int emu_seb (struct pt_regs
*regs
, int rx
, float *val
) {
1457 FP_DECL_S(SA
); FP_DECL_S(SB
); FP_DECL_S(SR
);
1461 mode
= current
->thread
.fp_regs
.fpc
& 3;
1462 FP_UNPACK_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
1463 FP_UNPACK_SP(SB
, val
);
1464 FP_SUB_S(SR
, SA
, SB
);
1465 FP_PACK_SP(¤t
->thread
.fp_regs
.fprs
[rx
].f
, SR
);
1466 emu_set_CC_cs(regs
, SR_c
, SR_s
);
1470 /* Test data class long double */
1471 static int emu_tcxb (struct pt_regs
*regs
, int rx
, long val
) {
1476 cvt
.w
.high
= current
->thread
.fp_regs
.fprs
[rx
].ui
;
1477 cvt
.w
.low
= current
->thread
.fp_regs
.fprs
[rx
+2].ui
;
1478 FP_UNPACK_RAW_QP(QA
, &cvt
.ld
);
1481 bit
= 8; /* normalized number */
1484 if (_FP_FRAC_ZEROP_4(QA
))
1485 bit
= 10; /* zero */
1487 bit
= 6; /* denormalized number */
1490 if (_FP_FRAC_ZEROP_4(QA
))
1491 bit
= 4; /* infinity */
1492 else if (_FP_FRAC_HIGH_RAW_Q(QA
) & _FP_QNANBIT_Q
)
1493 bit
= 2; /* quiet NAN */
1495 bit
= 0; /* signaling NAN */
1500 emu_set_CC(regs
, ((__u32
) val
>> bit
) & 1);
1504 /* Test data class double */
1505 static int emu_tcdb (struct pt_regs
*regs
, int rx
, long val
) {
1509 FP_UNPACK_RAW_DP(DA
, ¤t
->thread
.fp_regs
.fprs
[rx
].d
);
1512 bit
= 8; /* normalized number */
1515 if (_FP_FRAC_ZEROP_2(DA
))
1516 bit
= 10; /* zero */
1518 bit
= 6; /* denormalized number */
1521 if (_FP_FRAC_ZEROP_2(DA
))
1522 bit
= 4; /* infinity */
1523 else if (_FP_FRAC_HIGH_RAW_D(DA
) & _FP_QNANBIT_D
)
1524 bit
= 2; /* quiet NAN */
1526 bit
= 0; /* signaling NAN */
1531 emu_set_CC(regs
, ((__u32
) val
>> bit
) & 1);
1535 /* Test data class float */
1536 static int emu_tceb (struct pt_regs
*regs
, int rx
, long val
) {
1540 FP_UNPACK_RAW_SP(SA
, ¤t
->thread
.fp_regs
.fprs
[rx
].f
);
1543 bit
= 8; /* normalized number */
1546 if (_FP_FRAC_ZEROP_1(SA
))
1547 bit
= 10; /* zero */
1549 bit
= 6; /* denormalized number */
1552 if (_FP_FRAC_ZEROP_1(SA
))
1553 bit
= 4; /* infinity */
1554 else if (_FP_FRAC_HIGH_RAW_S(SA
) & _FP_QNANBIT_S
)
1555 bit
= 2; /* quiet NAN */
1557 bit
= 0; /* signaling NAN */
1562 emu_set_CC(regs
, ((__u32
) val
>> bit
) & 1);
1566 static inline void emu_load_regd(int reg
) {
1567 if ((reg
&9) != 0) /* test if reg in {0,2,4,6} */
1569 asm volatile( /* load reg from fp_regs.fprs[reg] */
1574 : "a" (reg
<<4),"a" (¤t
->thread
.fp_regs
.fprs
[reg
].d
)
1578 static inline void emu_load_rege(int reg
) {
1579 if ((reg
&9) != 0) /* test if reg in {0,2,4,6} */
1581 asm volatile( /* load reg from fp_regs.fprs[reg] */
1586 : "a" (reg
<<4), "a" (¤t
->thread
.fp_regs
.fprs
[reg
].f
)
1590 static inline void emu_store_regd(int reg
) {
1591 if ((reg
&9) != 0) /* test if reg in {0,2,4,6} */
1593 asm volatile( /* store reg to fp_regs.fprs[reg] */
1598 : "a" (reg
<<4), "a" (¤t
->thread
.fp_regs
.fprs
[reg
].d
)
1603 static inline void emu_store_rege(int reg
) {
1604 if ((reg
&9) != 0) /* test if reg in {0,2,4,6} */
1606 asm volatile( /* store reg to fp_regs.fprs[reg] */
1611 : "a" (reg
<<4), "a" (¤t
->thread
.fp_regs
.fprs
[reg
].f
)
1615 int math_emu_b3(__u8
*opcode
, struct pt_regs
* regs
) {
1617 static const __u8 format_table
[256] = {
1618 [0x00] = 0x03,[0x01] = 0x03,[0x02] = 0x03,[0x03] = 0x03,
1619 [0x04] = 0x0f,[0x05] = 0x0d,[0x06] = 0x0e,[0x07] = 0x0d,
1620 [0x08] = 0x03,[0x09] = 0x03,[0x0a] = 0x03,[0x0b] = 0x03,
1621 [0x0c] = 0x0f,[0x0d] = 0x03,[0x0e] = 0x06,[0x0f] = 0x06,
1622 [0x10] = 0x02,[0x11] = 0x02,[0x12] = 0x02,[0x13] = 0x02,
1623 [0x14] = 0x03,[0x15] = 0x02,[0x16] = 0x01,[0x17] = 0x03,
1624 [0x18] = 0x02,[0x19] = 0x02,[0x1a] = 0x02,[0x1b] = 0x02,
1625 [0x1c] = 0x02,[0x1d] = 0x02,[0x1e] = 0x05,[0x1f] = 0x05,
1626 [0x40] = 0x01,[0x41] = 0x01,[0x42] = 0x01,[0x43] = 0x01,
1627 [0x44] = 0x12,[0x45] = 0x0d,[0x46] = 0x11,[0x47] = 0x04,
1628 [0x48] = 0x01,[0x49] = 0x01,[0x4a] = 0x01,[0x4b] = 0x01,
1629 [0x4c] = 0x01,[0x4d] = 0x01,[0x53] = 0x06,[0x57] = 0x06,
1630 [0x5b] = 0x05,[0x5f] = 0x05,[0x84] = 0x13,[0x8c] = 0x13,
1631 [0x94] = 0x09,[0x95] = 0x08,[0x96] = 0x07,[0x98] = 0x0c,
1632 [0x99] = 0x0b,[0x9a] = 0x0a
1634 static const void *jump_table
[256]= {
1635 [0x00] = emu_lpebr
,[0x01] = emu_lnebr
,[0x02] = emu_ltebr
,
1636 [0x03] = emu_lcebr
,[0x04] = emu_ldebr
,[0x05] = emu_lxdbr
,
1637 [0x06] = emu_lxebr
,[0x07] = emu_mxdbr
,[0x08] = emu_kebr
,
1638 [0x09] = emu_cebr
, [0x0a] = emu_aebr
, [0x0b] = emu_sebr
,
1639 [0x0c] = emu_mdebr
,[0x0d] = emu_debr
, [0x0e] = emu_maebr
,
1640 [0x0f] = emu_msebr
,[0x10] = emu_lpdbr
,[0x11] = emu_lndbr
,
1641 [0x12] = emu_ltdbr
,[0x13] = emu_lcdbr
,[0x14] = emu_sqebr
,
1642 [0x15] = emu_sqdbr
,[0x16] = emu_sqxbr
,[0x17] = emu_meebr
,
1643 [0x18] = emu_kdbr
, [0x19] = emu_cdbr
, [0x1a] = emu_adbr
,
1644 [0x1b] = emu_sdbr
, [0x1c] = emu_mdbr
, [0x1d] = emu_ddbr
,
1645 [0x1e] = emu_madbr
,[0x1f] = emu_msdbr
,[0x40] = emu_lpxbr
,
1646 [0x41] = emu_lnxbr
,[0x42] = emu_ltxbr
,[0x43] = emu_lcxbr
,
1647 [0x44] = emu_ledbr
,[0x45] = emu_ldxbr
,[0x46] = emu_lexbr
,
1648 [0x47] = emu_fixbr
,[0x48] = emu_kxbr
, [0x49] = emu_cxbr
,
1649 [0x4a] = emu_axbr
, [0x4b] = emu_sxbr
, [0x4c] = emu_mxbr
,
1650 [0x4d] = emu_dxbr
, [0x53] = emu_diebr
,[0x57] = emu_fiebr
,
1651 [0x5b] = emu_didbr
,[0x5f] = emu_fidbr
,[0x84] = emu_sfpc
,
1652 [0x8c] = emu_efpc
, [0x94] = emu_cefbr
,[0x95] = emu_cdfbr
,
1653 [0x96] = emu_cxfbr
,[0x98] = emu_cfebr
,[0x99] = emu_cfdbr
,
1657 switch (format_table
[opcode
[1]]) {
1658 case 1: /* RRE format, long double operation */
1659 if (opcode
[3] & 0x22)
1661 emu_store_regd((opcode
[3] >> 4) & 15);
1662 emu_store_regd(((opcode
[3] >> 4) & 15) + 2);
1663 emu_store_regd(opcode
[3] & 15);
1664 emu_store_regd((opcode
[3] & 15) + 2);
1665 /* call the emulation function */
1666 _fex
= ((int (*)(struct pt_regs
*,int, int))
1667 jump_table
[opcode
[1]])
1668 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1669 emu_load_regd((opcode
[3] >> 4) & 15);
1670 emu_load_regd(((opcode
[3] >> 4) & 15) + 2);
1671 emu_load_regd(opcode
[3] & 15);
1672 emu_load_regd((opcode
[3] & 15) + 2);
1674 case 2: /* RRE format, double operation */
1675 emu_store_regd((opcode
[3] >> 4) & 15);
1676 emu_store_regd(opcode
[3] & 15);
1677 /* call the emulation function */
1678 _fex
= ((int (*)(struct pt_regs
*, int, int))
1679 jump_table
[opcode
[1]])
1680 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1681 emu_load_regd((opcode
[3] >> 4) & 15);
1682 emu_load_regd(opcode
[3] & 15);
1684 case 3: /* RRE format, float operation */
1685 emu_store_rege((opcode
[3] >> 4) & 15);
1686 emu_store_rege(opcode
[3] & 15);
1687 /* call the emulation function */
1688 _fex
= ((int (*)(struct pt_regs
*, int, int))
1689 jump_table
[opcode
[1]])
1690 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1691 emu_load_rege((opcode
[3] >> 4) & 15);
1692 emu_load_rege(opcode
[3] & 15);
1694 case 4: /* RRF format, long double operation */
1695 if (opcode
[3] & 0x22)
1697 emu_store_regd((opcode
[3] >> 4) & 15);
1698 emu_store_regd(((opcode
[3] >> 4) & 15) + 2);
1699 emu_store_regd(opcode
[3] & 15);
1700 emu_store_regd((opcode
[3] & 15) + 2);
1701 /* call the emulation function */
1702 _fex
= ((int (*)(struct pt_regs
*, int, int, int))
1703 jump_table
[opcode
[1]])
1704 (regs
, opcode
[3] >> 4, opcode
[3] & 15, opcode
[2] >> 4);
1705 emu_load_regd((opcode
[3] >> 4) & 15);
1706 emu_load_regd(((opcode
[3] >> 4) & 15) + 2);
1707 emu_load_regd(opcode
[3] & 15);
1708 emu_load_regd((opcode
[3] & 15) + 2);
1710 case 5: /* RRF format, double operation */
1711 emu_store_regd((opcode
[2] >> 4) & 15);
1712 emu_store_regd((opcode
[3] >> 4) & 15);
1713 emu_store_regd(opcode
[3] & 15);
1714 /* call the emulation function */
1715 _fex
= ((int (*)(struct pt_regs
*, int, int, int))
1716 jump_table
[opcode
[1]])
1717 (regs
, opcode
[3] >> 4, opcode
[3] & 15, opcode
[2] >> 4);
1718 emu_load_regd((opcode
[2] >> 4) & 15);
1719 emu_load_regd((opcode
[3] >> 4) & 15);
1720 emu_load_regd(opcode
[3] & 15);
1722 case 6: /* RRF format, float operation */
1723 emu_store_rege((opcode
[2] >> 4) & 15);
1724 emu_store_rege((opcode
[3] >> 4) & 15);
1725 emu_store_rege(opcode
[3] & 15);
1726 /* call the emulation function */
1727 _fex
= ((int (*)(struct pt_regs
*, int, int, int))
1728 jump_table
[opcode
[1]])
1729 (regs
, opcode
[3] >> 4, opcode
[3] & 15, opcode
[2] >> 4);
1730 emu_load_rege((opcode
[2] >> 4) & 15);
1731 emu_load_rege((opcode
[3] >> 4) & 15);
1732 emu_load_rege(opcode
[3] & 15);
1734 case 7: /* RRE format, cxfbr instruction */
1735 /* call the emulation function */
1736 if (opcode
[3] & 0x20)
1738 _fex
= ((int (*)(struct pt_regs
*, int, int))
1739 jump_table
[opcode
[1]])
1740 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1741 emu_load_regd((opcode
[3] >> 4) & 15);
1742 emu_load_regd(((opcode
[3] >> 4) & 15) + 2);
1744 case 8: /* RRE format, cdfbr instruction */
1745 /* call the emulation function */
1746 _fex
= ((int (*)(struct pt_regs
*, int, int))
1747 jump_table
[opcode
[1]])
1748 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1749 emu_load_regd((opcode
[3] >> 4) & 15);
1751 case 9: /* RRE format, cefbr instruction */
1752 /* call the emulation function */
1753 _fex
= ((int (*)(struct pt_regs
*, int, int))
1754 jump_table
[opcode
[1]])
1755 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1756 emu_load_rege((opcode
[3] >> 4) & 15);
1758 case 10: /* RRF format, cfxbr instruction */
1759 if ((opcode
[2] & 128) == 128 || (opcode
[2] & 96) == 32)
1760 /* mask of { 2,3,8-15 } is invalid */
1764 emu_store_regd(opcode
[3] & 15);
1765 emu_store_regd((opcode
[3] & 15) + 2);
1766 /* call the emulation function */
1767 _fex
= ((int (*)(struct pt_regs
*, int, int, int))
1768 jump_table
[opcode
[1]])
1769 (regs
, opcode
[3] >> 4, opcode
[3] & 15, opcode
[2] >> 4);
1771 case 11: /* RRF format, cfdbr instruction */
1772 if ((opcode
[2] & 128) == 128 || (opcode
[2] & 96) == 32)
1773 /* mask of { 2,3,8-15 } is invalid */
1775 emu_store_regd(opcode
[3] & 15);
1776 /* call the emulation function */
1777 _fex
= ((int (*)(struct pt_regs
*, int, int, int))
1778 jump_table
[opcode
[1]])
1779 (regs
, opcode
[3] >> 4, opcode
[3] & 15, opcode
[2] >> 4);
1781 case 12: /* RRF format, cfebr instruction */
1782 if ((opcode
[2] & 128) == 128 || (opcode
[2] & 96) == 32)
1783 /* mask of { 2,3,8-15 } is invalid */
1785 emu_store_rege(opcode
[3] & 15);
1786 /* call the emulation function */
1787 _fex
= ((int (*)(struct pt_regs
*, int, int, int))
1788 jump_table
[opcode
[1]])
1789 (regs
, opcode
[3] >> 4, opcode
[3] & 15, opcode
[2] >> 4);
1791 case 13: /* RRE format, ldxbr & mdxbr instruction */
1792 /* double store but long double load */
1793 if (opcode
[3] & 0x20)
1795 emu_store_regd((opcode
[3] >> 4) & 15);
1796 emu_store_regd(opcode
[3] & 15);
1797 /* call the emulation function */
1798 _fex
= ((int (*)(struct pt_regs
*, int, int))
1799 jump_table
[opcode
[1]])
1800 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1801 emu_load_regd((opcode
[3] >> 4) & 15);
1802 emu_load_regd(((opcode
[3] >> 4) & 15) + 2);
1804 case 14: /* RRE format, ldxbr & mdxbr instruction */
1805 /* float store but long double load */
1806 if (opcode
[3] & 0x20)
1808 emu_store_rege((opcode
[3] >> 4) & 15);
1809 emu_store_rege(opcode
[3] & 15);
1810 /* call the emulation function */
1811 _fex
= ((int (*)(struct pt_regs
*, int, int))
1812 jump_table
[opcode
[1]])
1813 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1814 emu_load_regd((opcode
[3] >> 4) & 15);
1815 emu_load_regd(((opcode
[3] >> 4) & 15) + 2);
1817 case 15: /* RRE format, ldebr & mdebr instruction */
1818 /* float store but double load */
1819 emu_store_rege((opcode
[3] >> 4) & 15);
1820 emu_store_rege(opcode
[3] & 15);
1821 /* call the emulation function */
1822 _fex
= ((int (*)(struct pt_regs
*, int, int))
1823 jump_table
[opcode
[1]])
1824 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1825 emu_load_regd((opcode
[3] >> 4) & 15);
1827 case 16: /* RRE format, ldxbr instruction */
1828 /* long double store but double load */
1831 emu_store_regd(opcode
[3] & 15);
1832 emu_store_regd((opcode
[3] & 15) + 2);
1833 /* call the emulation function */
1834 _fex
= ((int (*)(struct pt_regs
*, int, int))
1835 jump_table
[opcode
[1]])
1836 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1837 emu_load_regd((opcode
[3] >> 4) & 15);
1839 case 17: /* RRE format, ldxbr instruction */
1840 /* long double store but float load */
1843 emu_store_regd(opcode
[3] & 15);
1844 emu_store_regd((opcode
[3] & 15) + 2);
1845 /* call the emulation function */
1846 _fex
= ((int (*)(struct pt_regs
*, int, int))
1847 jump_table
[opcode
[1]])
1848 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1849 emu_load_rege((opcode
[3] >> 4) & 15);
1851 case 18: /* RRE format, ledbr instruction */
1852 /* double store but float load */
1853 emu_store_regd(opcode
[3] & 15);
1854 /* call the emulation function */
1855 _fex
= ((int (*)(struct pt_regs
*, int, int))
1856 jump_table
[opcode
[1]])
1857 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1858 emu_load_rege((opcode
[3] >> 4) & 15);
1860 case 19: /* RRE format, efpc & sfpc instruction */
1861 /* call the emulation function */
1862 _fex
= ((int (*)(struct pt_regs
*, int, int))
1863 jump_table
[opcode
[1]])
1864 (regs
, opcode
[3] >> 4, opcode
[3] & 15);
1866 default: /* invalid operation */
1870 current
->thread
.fp_regs
.fpc
|= _fex
;
1871 if (current
->thread
.fp_regs
.fpc
& (_fex
<< 8))
1877 static void* calc_addr(struct pt_regs
*regs
, int rx
, int rb
, int disp
)
1883 addr
= disp
& 0xfff;
1884 addr
+= (rx
!= 0) ? regs
->gprs
[rx
] : 0; /* + index */
1885 addr
+= (rb
!= 0) ? regs
->gprs
[rb
] : 0; /* + base */
1886 return (void*) addr
;
1889 int math_emu_ed(__u8
*opcode
, struct pt_regs
* regs
) {
1892 static const __u8 format_table
[256] = {
1893 [0x04] = 0x06,[0x05] = 0x05,[0x06] = 0x07,[0x07] = 0x05,
1894 [0x08] = 0x02,[0x09] = 0x02,[0x0a] = 0x02,[0x0b] = 0x02,
1895 [0x0c] = 0x06,[0x0d] = 0x02,[0x0e] = 0x04,[0x0f] = 0x04,
1896 [0x10] = 0x08,[0x11] = 0x09,[0x12] = 0x0a,[0x14] = 0x02,
1897 [0x15] = 0x01,[0x17] = 0x02,[0x18] = 0x01,[0x19] = 0x01,
1898 [0x1a] = 0x01,[0x1b] = 0x01,[0x1c] = 0x01,[0x1d] = 0x01,
1899 [0x1e] = 0x03,[0x1f] = 0x03,
1901 static const void *jump_table
[]= {
1902 [0x04] = emu_ldeb
,[0x05] = emu_lxdb
,[0x06] = emu_lxeb
,
1903 [0x07] = emu_mxdb
,[0x08] = emu_keb
, [0x09] = emu_ceb
,
1904 [0x0a] = emu_aeb
, [0x0b] = emu_seb
, [0x0c] = emu_mdeb
,
1905 [0x0d] = emu_deb
, [0x0e] = emu_maeb
,[0x0f] = emu_mseb
,
1906 [0x10] = emu_tceb
,[0x11] = emu_tcdb
,[0x12] = emu_tcxb
,
1907 [0x14] = emu_sqeb
,[0x15] = emu_sqdb
,[0x17] = emu_meeb
,
1908 [0x18] = emu_kdb
, [0x19] = emu_cdb
, [0x1a] = emu_adb
,
1909 [0x1b] = emu_sdb
, [0x1c] = emu_mdb
, [0x1d] = emu_ddb
,
1910 [0x1e] = emu_madb
,[0x1f] = emu_msdb
1913 switch (format_table
[opcode
[5]]) {
1914 case 1: /* RXE format, double constant */ {
1918 emu_store_regd((opcode
[1] >> 4) & 15);
1919 opc
= *((__u32
*) opcode
);
1920 dxb
= (__u64
*) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
1921 mathemu_copy_from_user(&temp
, dxb
, 8);
1922 /* call the emulation function */
1923 _fex
= ((int (*)(struct pt_regs
*, int, double *))
1924 jump_table
[opcode
[5]])
1925 (regs
, opcode
[1] >> 4, (double *) &temp
);
1926 emu_load_regd((opcode
[1] >> 4) & 15);
1929 case 2: /* RXE format, float constant */ {
1933 emu_store_rege((opcode
[1] >> 4) & 15);
1934 opc
= *((__u32
*) opcode
);
1935 dxb
= (__u32
*) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
1936 mathemu_get_user(temp
, dxb
);
1937 /* call the emulation function */
1938 _fex
= ((int (*)(struct pt_regs
*, int, float *))
1939 jump_table
[opcode
[5]])
1940 (regs
, opcode
[1] >> 4, (float *) &temp
);
1941 emu_load_rege((opcode
[1] >> 4) & 15);
1944 case 3: /* RXF format, double constant */ {
1948 emu_store_regd((opcode
[1] >> 4) & 15);
1949 emu_store_regd((opcode
[4] >> 4) & 15);
1950 opc
= *((__u32
*) opcode
);
1951 dxb
= (__u64
*) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
1952 mathemu_copy_from_user(&temp
, dxb
, 8);
1953 /* call the emulation function */
1954 _fex
= ((int (*)(struct pt_regs
*, int, double *, int))
1955 jump_table
[opcode
[5]])
1956 (regs
, opcode
[1] >> 4, (double *) &temp
, opcode
[4] >> 4);
1957 emu_load_regd((opcode
[1] >> 4) & 15);
1960 case 4: /* RXF format, float constant */ {
1964 emu_store_rege((opcode
[1] >> 4) & 15);
1965 emu_store_rege((opcode
[4] >> 4) & 15);
1966 opc
= *((__u32
*) opcode
);
1967 dxb
= (__u32
*) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
1968 mathemu_get_user(temp
, dxb
);
1969 /* call the emulation function */
1970 _fex
= ((int (*)(struct pt_regs
*, int, float *, int))
1971 jump_table
[opcode
[5]])
1972 (regs
, opcode
[1] >> 4, (float *) &temp
, opcode
[4] >> 4);
1973 emu_load_rege((opcode
[4] >> 4) & 15);
1976 case 5: /* RXE format, double constant */
1977 /* store double and load long double */
1981 if ((opcode
[1] >> 4) & 0x20)
1983 emu_store_regd((opcode
[1] >> 4) & 15);
1984 opc
= *((__u32
*) opcode
);
1985 dxb
= (__u64
*) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
1986 mathemu_copy_from_user(&temp
, dxb
, 8);
1987 /* call the emulation function */
1988 _fex
= ((int (*)(struct pt_regs
*, int, double *))
1989 jump_table
[opcode
[5]])
1990 (regs
, opcode
[1] >> 4, (double *) &temp
);
1991 emu_load_regd((opcode
[1] >> 4) & 15);
1992 emu_load_regd(((opcode
[1] >> 4) & 15) + 2);
1995 case 6: /* RXE format, float constant */
1996 /* store float and load double */
2000 emu_store_rege((opcode
[1] >> 4) & 15);
2001 opc
= *((__u32
*) opcode
);
2002 dxb
= (__u32
*) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
2003 mathemu_get_user(temp
, dxb
);
2004 /* call the emulation function */
2005 _fex
= ((int (*)(struct pt_regs
*, int, float *))
2006 jump_table
[opcode
[5]])
2007 (regs
, opcode
[1] >> 4, (float *) &temp
);
2008 emu_load_regd((opcode
[1] >> 4) & 15);
2011 case 7: /* RXE format, float constant */
2012 /* store float and load long double */
2016 if ((opcode
[1] >> 4) & 0x20)
2018 emu_store_rege((opcode
[1] >> 4) & 15);
2019 opc
= *((__u32
*) opcode
);
2020 dxb
= (__u32
*) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
2021 mathemu_get_user(temp
, dxb
);
2022 /* call the emulation function */
2023 _fex
= ((int (*)(struct pt_regs
*, int, float *))
2024 jump_table
[opcode
[5]])
2025 (regs
, opcode
[1] >> 4, (float *) &temp
);
2026 emu_load_regd((opcode
[1] >> 4) & 15);
2027 emu_load_regd(((opcode
[1] >> 4) & 15) + 2);
2030 case 8: /* RXE format, RX address used as int value */ {
2034 emu_store_rege((opcode
[1] >> 4) & 15);
2035 opc
= *((__u32
*) opcode
);
2036 dxb
= (__u64
) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
2037 /* call the emulation function */
2038 _fex
= ((int (*)(struct pt_regs
*, int, long))
2039 jump_table
[opcode
[5]])
2040 (regs
, opcode
[1] >> 4, dxb
);
2043 case 9: /* RXE format, RX address used as int value */ {
2047 emu_store_regd((opcode
[1] >> 4) & 15);
2048 opc
= *((__u32
*) opcode
);
2049 dxb
= (__u64
) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
2050 /* call the emulation function */
2051 _fex
= ((int (*)(struct pt_regs
*, int, long))
2052 jump_table
[opcode
[5]])
2053 (regs
, opcode
[1] >> 4, dxb
);
2056 case 10: /* RXE format, RX address used as int value */ {
2060 if ((opcode
[1] >> 4) & 2)
2062 emu_store_regd((opcode
[1] >> 4) & 15);
2063 emu_store_regd(((opcode
[1] >> 4) & 15) + 2);
2064 opc
= *((__u32
*) opcode
);
2065 dxb
= (__u64
) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
2066 /* call the emulation function */
2067 _fex
= ((int (*)(struct pt_regs
*, int, long))
2068 jump_table
[opcode
[5]])
2069 (regs
, opcode
[1] >> 4, dxb
);
2072 default: /* invalid operation */
2076 current
->thread
.fp_regs
.fpc
|= _fex
;
2077 if (current
->thread
.fp_regs
.fpc
& (_fex
<< 8))
2084 * Emulate LDR Rx,Ry with Rx or Ry not in {0, 2, 4, 6}
2086 int math_emu_ldr(__u8
*opcode
) {
2087 s390_fp_regs
*fp_regs
= ¤t
->thread
.fp_regs
;
2088 __u16 opc
= *((__u16
*) opcode
);
2090 if ((opc
& 0x90) == 0) { /* test if rx in {0,2,4,6} */
2091 /* we got an exception therefore ry can't be in {0,2,4,6} */
2092 asm volatile( /* load rx from fp_regs.fprs[ry] */
2097 : "a" (opc
& 0xf0), "a" (&fp_regs
->fprs
[opc
& 0xf].d
)
2099 } else if ((opc
& 0x9) == 0) { /* test if ry in {0,2,4,6} */
2100 asm volatile ( /* store ry to fp_regs.fprs[rx] */
2105 : "a" ((opc
& 0xf) << 4),
2106 "a" (&fp_regs
->fprs
[(opc
& 0xf0)>>4].d
)
2108 } else /* move fp_regs.fprs[ry] to fp_regs.fprs[rx] */
2109 fp_regs
->fprs
[(opc
& 0xf0) >> 4] = fp_regs
->fprs
[opc
& 0xf];
2114 * Emulate LER Rx,Ry with Rx or Ry not in {0, 2, 4, 6}
2116 int math_emu_ler(__u8
*opcode
) {
2117 s390_fp_regs
*fp_regs
= ¤t
->thread
.fp_regs
;
2118 __u16 opc
= *((__u16
*) opcode
);
2120 if ((opc
& 0x90) == 0) { /* test if rx in {0,2,4,6} */
2121 /* we got an exception therefore ry can't be in {0,2,4,6} */
2122 asm volatile( /* load rx from fp_regs.fprs[ry] */
2127 : "a" (opc
& 0xf0), "a" (&fp_regs
->fprs
[opc
& 0xf].f
)
2129 } else if ((opc
& 0x9) == 0) { /* test if ry in {0,2,4,6} */
2130 asm volatile( /* store ry to fp_regs.fprs[rx] */
2135 : "a" ((opc
& 0xf) << 4),
2136 "a" (&fp_regs
->fprs
[(opc
& 0xf0) >> 4].f
)
2138 } else /* move fp_regs.fprs[ry] to fp_regs.fprs[rx] */
2139 fp_regs
->fprs
[(opc
& 0xf0) >> 4] = fp_regs
->fprs
[opc
& 0xf];
2144 * Emulate LD R,D(X,B) with R not in {0, 2, 4, 6}
2146 int math_emu_ld(__u8
*opcode
, struct pt_regs
* regs
) {
2147 s390_fp_regs
*fp_regs
= ¤t
->thread
.fp_regs
;
2148 __u32 opc
= *((__u32
*) opcode
);
2151 dxb
= (__u64
*) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
2152 mathemu_copy_from_user(&fp_regs
->fprs
[(opc
>> 20) & 0xf].d
, dxb
, 8);
2157 * Emulate LE R,D(X,B) with R not in {0, 2, 4, 6}
2159 int math_emu_le(__u8
*opcode
, struct pt_regs
* regs
) {
2160 s390_fp_regs
*fp_regs
= ¤t
->thread
.fp_regs
;
2161 __u32 opc
= *((__u32
*) opcode
);
2164 dxb
= (__u32
*) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
2165 mem
= (__u32
*) (&fp_regs
->fprs
[(opc
>> 20) & 0xf].f
);
2166 mathemu_get_user(mem
[0], dxb
);
2171 * Emulate STD R,D(X,B) with R not in {0, 2, 4, 6}
2173 int math_emu_std(__u8
*opcode
, struct pt_regs
* regs
) {
2174 s390_fp_regs
*fp_regs
= ¤t
->thread
.fp_regs
;
2175 __u32 opc
= *((__u32
*) opcode
);
2178 dxb
= (__u64
*) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
2179 mathemu_copy_to_user(dxb
, &fp_regs
->fprs
[(opc
>> 20) & 0xf].d
, 8);
2184 * Emulate STE R,D(X,B) with R not in {0, 2, 4, 6}
2186 int math_emu_ste(__u8
*opcode
, struct pt_regs
* regs
) {
2187 s390_fp_regs
*fp_regs
= ¤t
->thread
.fp_regs
;
2188 __u32 opc
= *((__u32
*) opcode
);
2191 dxb
= (__u32
*) calc_addr(regs
, opc
>> 16, opc
>> 12, opc
);
2192 mem
= (__u32
*) (&fp_regs
->fprs
[(opc
>> 20) & 0xf].f
);
2193 mathemu_put_user(mem
[0], dxb
);
2200 int math_emu_lfpc(__u8
*opcode
, struct pt_regs
*regs
) {
2201 __u32 opc
= *((__u32
*) opcode
);
2204 dxb
= (__u32
*) calc_addr(regs
, 0, opc
>>12, opc
);
2205 mathemu_get_user(temp
, dxb
);
2206 if ((temp
& ~FPC_VALID_MASK
) != 0)
2208 current
->thread
.fp_regs
.fpc
= temp
;
2213 * Emulate STFPC D(B)
2215 int math_emu_stfpc(__u8
*opcode
, struct pt_regs
*regs
) {
2216 __u32 opc
= *((__u32
*) opcode
);
2219 dxb
= (__u32
*) calc_addr(regs
, 0, opc
>>12, opc
);
2220 mathemu_put_user(current
->thread
.fp_regs
.fpc
, dxb
);
2227 int math_emu_srnm(__u8
*opcode
, struct pt_regs
*regs
) {
2228 __u32 opc
= *((__u32
*) opcode
);
2231 temp
= calc_addr(regs
, 0, opc
>>12, opc
);
2232 current
->thread
.fp_regs
.fpc
&= ~3;
2233 current
->thread
.fp_regs
.fpc
|= (temp
& 3);
2237 /* broken compiler ... */
2239 __negdi2 (long long u
)
2252 w
.s
[0] = -uu
.s
[0] - ((int) w
.s
[1] != 0);