1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
|
/* $OpenBSD: fpu.c,v 1.6 2002/07/10 20:30:14 jsyn Exp $ */
/* $NetBSD: fpu.c,v 1.11 2000/12/06 01:47:50 mrg Exp $ */
/*
* Copyright (c) 2001 Jason L. Wright (jason@thought.net)
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Jason L. Wright
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* Copyright (c) 1992, 1993
* The Regents of the University of California. All rights reserved.
*
* This software was developed by the Computer Systems Engineering group
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
* contributed to Berkeley.
*
* All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Lawrence Berkeley Laboratory.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)fpu.c 8.1 (Berkeley) 6/11/93
*/
#include <sys/param.h>
#include <sys/proc.h>
#include <sys/signal.h>
#include <sys/systm.h>
#include <sys/syslog.h>
#include <sys/signalvar.h>
#include <machine/instr.h>
#include <machine/reg.h>
#include <sparc64/fpu/fpu_emu.h>
#include <sparc64/fpu/fpu_extern.h>
int fpu_regoffset(int, int);
int fpu_insn_fmov(struct fpstate64 *, struct fpemu *, union instr);
int fpu_insn_fabs(struct fpstate64 *, struct fpemu *, union instr);
int fpu_insn_fneg(struct fpstate64 *, struct fpemu *, union instr);
int fpu_insn_itof(struct fpemu *, union instr, int, int *,
int *, u_int *);
int fpu_insn_ftoi(struct fpemu *, union instr, int *, int, u_int *);
int fpu_insn_ftof(struct fpemu *, union instr, int *, int *, u_int *);
int fpu_insn_fsqrt(struct fpemu *, union instr, int *, int *, u_int *);
int fpu_insn_fcmp(struct fpstate64 *, struct fpemu *, union instr, int);
int fpu_insn_fmul(struct fpemu *, union instr, int *, int *, u_int *);
int fpu_insn_fmulx(struct fpemu *, union instr, int *, int *, u_int *);
int fpu_insn_fdiv(struct fpemu *, union instr, int *, int *, u_int *);
int fpu_insn_fadd(struct fpemu *, union instr, int *, int *, u_int *);
int fpu_insn_fsub(struct fpemu *, union instr, int *, int *, u_int *);
int fpu_insn_fmovcc(struct fpstate64 *, union instr);
int fpu_insn_fmovr(struct fpstate64 *, union instr);
void fpu_fcopy(u_int *, u_int *, int);
#ifdef DEBUG
int fpe_debug = 0;
/*
* Dump a `fpn' structure.
*/
void
fpu_dumpfpn(struct fpn *fp)
{
static char *class[] = { "SNAN", "QNAN", "ZERO", "NUM", "INF" };
printf("%s %c.%x %x %x %xE%d", class[fp->fp_class + 2],
fp->fp_sign ? '-' : ' ', fp->fp_mant[0], fp->fp_mant[1],
fp->fp_mant[2], fp->fp_mant[3], fp->fp_exp);
}
void
fpu_dumpstate(struct fpstate64 *fs)
{
int i;
for (i = 0; i < 64; i++)
printf("%%f%02d: %08x%s",
i, fs->fs_regs[i], ((i & 3) == 3) ? "\n" : " ");
}
#endif
/*
* fpu_execute returns the following error numbers (0 = no error):
*/
#define FPE 1 /* take a floating point exception */
#define NOTFPU 2 /* not an FPU instruction */
/*
* Translate current exceptions into `first' exception. The
* bits go the wrong way for ffs() (0x10 is most important, etc).
* There are only 5, so do it the obvious way.
*/
#define X1(x) x
#define X2(x) x,x
#define X4(x) x,x,x,x
#define X8(x) X4(x),X4(x)
#define X16(x) X8(x),X8(x)
static char cx_to_trapx[] = {
X1(FSR_NX),
X2(FSR_DZ),
X4(FSR_UF),
X8(FSR_OF),
X16(FSR_NV)
};
static u_char fpu_codes[] = {
X1(FPE_FLTINEX_TRAP),
X2(FPE_FLTDIV_TRAP),
X4(FPE_FLTUND_TRAP),
X8(FPE_FLTOVF_TRAP),
X16(FPE_FLTOPERR_TRAP)
};
static int fpu_types[] = {
FPE_FLTRES,
FPE_FLTDIV,
FPE_FLTUND,
FPE_FLTOVF,
FPE_FLTINV,
};
void
fpu_fcopy(src, dst, type)
u_int *src, *dst;
int type;
{
*dst++ = *src++;
if (type == FTYPE_SNG || type == FTYPE_INT)
return;
*dst++ = *src++;
if (type != FTYPE_EXT)
return;
*dst++ = *src++;
*dst = *src;
}
/*
* The FPU gave us an exception. Clean up the mess. Note that the
* fp queue can only have FPops in it, never load/store FP registers
* nor FBfcc instructions. Experiments with `crashme' prove that
* unknown FPops do enter the queue, however.
*/
void
fpu_cleanup(p, fs)
register struct proc *p;
#ifndef SUN4U
register struct fpstate *fs;
#else /* SUN4U */
register struct fpstate64 *fs;
#endif /* SUN4U */
{
register int i, fsr = fs->fs_fsr, error;
union instr instr;
union sigval sv;
struct fpemu fe;
sv.sival_int = p->p_md.md_tf->tf_pc; /* XXX only approximate */
switch ((fsr >> FSR_FTT_SHIFT) & FSR_FTT_MASK) {
case FSR_TT_NONE:
#if 0
/* XXX I'm not sure how we get here, but ignoring the trap */
/* XXX seems to work in my limited tests */
/* XXX More research to be done =) */
panic("fpu_cleanup 1"); /* ??? */
#else
printf("fpu_cleanup 1\n");
#endif
break;
case FSR_TT_IEEE:
if ((i = fsr & FSR_CX) == 0)
panic("fpu ieee trap, but no exception");
trapsignal(p, SIGFPE, fpu_codes[i - 1], fpu_types[i - i], sv);
break; /* XXX should return, but queue remains */
case FSR_TT_UNFIN:
#ifdef SUN4U
if (fs->fs_qsize == 0) {
printf("fpu_cleanup: unfinished fpop");
/* The book says reexecute or emulate. */
return;
}
break;
#endif /* SUN4U */
case FSR_TT_UNIMP:
if (fs->fs_qsize == 0)
panic("fpu_cleanup: unimplemented fpop");
break;
case FSR_TT_SEQ:
panic("fpu sequence error");
/* NOTREACHED */
case FSR_TT_HWERR:
log(LOG_ERR, "fpu hardware error (%s[%d])\n",
p->p_comm, p->p_pid);
uprintf("%s[%d]: fpu hardware error\n", p->p_comm, p->p_pid);
trapsignal(p, SIGFPE, -1, FPE_FLTINV, sv); /* ??? */
goto out;
default:
printf("fsr=0x%x\n", fsr);
panic("fpu error");
}
/* emulate the instructions left in the queue */
fe.fe_fpstate = fs;
for (i = 0; i < fs->fs_qsize; i++) {
instr.i_int = fs->fs_queue[i].fq_instr;
if (instr.i_any.i_op != IOP_reg ||
(instr.i_op3.i_op3 != IOP3_FPop1 &&
instr.i_op3.i_op3 != IOP3_FPop2))
panic("bogus fpu queue");
error = fpu_execute(&fe, instr);
switch (error) {
case 0:
continue;
case FPE:
trapsignal(p, SIGFPE,
fpu_codes[(fs->fs_fsr & FSR_CX) - 1],
fpu_types[(fs->fs_fsr & FSR_CX) - 1], sv);
break;
case NOTFPU:
trapsignal(p, SIGILL, 0, ILL_COPROC, sv);
break;
default:
panic("fpu_cleanup 3");
/* NOTREACHED */
}
/* XXX should stop here, but queue remains */
}
out:
fs->fs_qsize = 0;
}
#ifdef notyet
/*
* If we have no FPU at all (are there any machines like this out
* there!?) we have to emulate each instruction, and we need a pointer
* to the trapframe so that we can step over them and do FBfcc's.
* We know the `queue' is empty, though; we just want to emulate
* the instruction at tf->tf_pc.
*/
fpu_emulate(p, tf, fs)
struct proc *p;
register struct trapframe *tf;
#ifndef SUN4U
register struct fpstate *fs;
#else /* SUN4U */
register struct fpstate64 *fs;
#endif /* SUN4U */
{
do {
fetch instr from pc
decode
if (integer instr) {
/*
* We do this here, rather than earlier, to avoid
* losing even more badly than usual.
*/
if (p->p_addr->u_pcb.pcb_uw) {
write_user_windows();
if (rwindow_save(p))
sigexit(p, SIGILL);
}
if (loadstore) {
do_it;
pc = npc, npc += 4
} else if (fbfcc) {
do_annul_stuff;
} else
return;
} else if (fpu instr) {
fe.fe_fsr = fs->fs_fsr &= ~FSR_CX;
error = fpu_execute(&fe, fs, instr);
switch (error) {
etc;
}
} else
return;
if (want to reschedule)
return;
} while (error == 0);
}
#endif
/*
* Compute offset given a register and type. For 32 bit sparc, bits 1 and 0
* must be zero for ext types, and bit 0 must be 0 for double and long types.
* For 64bit sparc, bit 1 must be zero for quad types, and bit 0 becomes bit
* 5 in the register offset for long, double, and quad types.
*/
int
fpu_regoffset(rx, type)
int rx, type;
{
if (type == FTYPE_LNG || type == FTYPE_DBL || type == FTYPE_EXT) {
rx |= (rx & 1) << 5;
rx &= 0x3e;
if ((type == FTYPE_EXT) && (rx & 2))
return (-1);
}
return (rx);
}
/*
* Execute an FPU instruction (one that runs entirely in the FPU; not
* FBfcc or STF, for instance). On return, fe->fe_fs->fs_fsr will be
* modified to reflect the setting the hardware would have left.
*/
int
fpu_execute(fe, instr)
struct fpemu *fe;
union instr instr;
{
struct fpstate *fs;
int opf, rdtype, rd, err, mask, cx, fsr;
u_int space[4];
DPRINTF(FPE_INSN, ("op3: %x, opf %x\n", instr.i_opf.i_op3,
instr.i_opf.i_opf));
DPRINTF(FPE_STATE, ("BEFORE:\n"));
DUMPSTATE(FPE_STATE, fe->fe_fpstate);
opf = instr.i_opf.i_opf;
fs = fe->fe_fpstate;
fe->fe_fsr = fs->fs_fsr & ~FSR_CX;
fe->fe_cx = 0;
if ((instr.i_int & 0xc0000000) != 0x80000000)
return (NOTFPU);
if (instr.i_opf.i_op3 == IOP3_FPop2) {
switch (opf) {
case FCMPS: case FCMPD: case FCMPQ:
return (fpu_insn_fcmp(fs, fe, instr, 0));
case FCMPES: case FCMPED: case FCMPEQ:
return (fpu_insn_fcmp(fs, fe, instr, 1));
case FMVFC0S: case FMVFC0D: case FMVFC0Q:
case FMVFC1S: case FMVFC1D: case FMVFC1Q:
case FMVFC2S: case FMVFC2D: case FMVFC2Q:
case FMVFC3S: case FMVFC3D: case FMVFC3Q:
case FMVICS: case FMVICD: case FMVICQ:
case FMVXCS: case FMVXCD: case FMVXCQ:
return (fpu_insn_fmovcc(fs, instr));
case FMOVZS: case FMOVZD: case FMOVZQ:
case FMOVLEZS: case FMOVLEZD: case FMOVLEZQ:
case FMOVLZS: case FMOVLZD: case FMOVLZQ:
case FMOVNZS: case FMOVNZD: case FMOVNZQ:
case FMOVGZS: case FMOVGZD: case FMOVGZQ:
case FMOVGEZS: case FMOVGEZD: case FMOVGEZQ:
return (fpu_insn_fmovr(fs, instr));
}
return (NOTFPU);
}
if (instr.i_opf.i_op3 != IOP3_FPop1)
return (NOTFPU);
switch (instr.i_opf.i_opf) {
case FSTOX: case FDTOX: case FQTOX:
rdtype = FTYPE_LNG;
if ((err = fpu_insn_ftoi(fe, instr, &rd, rdtype, space)) != 0)
return (err);
break;
case FSTOI: case FDTOI: case FQTOI:
rdtype = FTYPE_INT;
if ((err = fpu_insn_ftoi(fe, instr, &rd, rdtype, space)) != 0)
return (err);
break;
case FITOS: case FITOD: case FITOQ:
if ((err = fpu_insn_itof(fe, instr, FTYPE_INT, &rd,
&rdtype, space)) != 0)
return (err);
break;
case FXTOS: case FXTOD: case FXTOQ:
if ((err = fpu_insn_itof(fe, instr, FTYPE_LNG, &rd,
&rdtype, space)) != 0)
return (err);
break;
case FSTOD: case FSTOQ:
case FDTOS: case FDTOQ:
case FQTOS: case FQTOD:
if ((err = fpu_insn_ftof(fe, instr, &rd, &rdtype, space)) != 0)
return (err);
break;
case FMOVS: case FMOVD: case FMOVQ:
return (fpu_insn_fmov(fs, fe, instr));
case FNEGS: case FNEGD: case FNEGQ:
return (fpu_insn_fneg(fs, fe, instr));
case FABSS: case FABSD: case FABSQ:
return (fpu_insn_fabs(fs, fe, instr));
case FSQRTS: case FSQRTD: case FSQRTQ:
if ((err = fpu_insn_fsqrt(fe, instr, &rd, &rdtype, space)) != 0)
return (err);
break;
case FMULS: case FMULD: case FMULQ:
if ((err = fpu_insn_fmul(fe, instr, &rd, &rdtype, space)) != 0)
return (err);
break;
case FDIVS: case FDIVD: case FDIVQ:
if ((err = fpu_insn_fdiv(fe, instr, &rd, &rdtype, space)) != 0)
return (err);
break;
case FSMULD: case FDMULQ:
if ((err = fpu_insn_fmulx(fe, instr, &rd, &rdtype, space)) != 0)
return (err);
break;
case FADDS: case FADDD: case FADDQ:
if ((err = fpu_insn_fadd(fe, instr, &rd, &rdtype, space)) != 0)
return (err);
break;
case FSUBS: case FSUBD: case FSUBQ:
if ((err = fpu_insn_fsub(fe, instr, &rd, &rdtype, space)) != 0)
return (err);
break;
default:
return (NOTFPU);
}
cx = fe->fe_cx;
fsr = fe->fe_fsr;
if (cx != 0) {
mask = (fsr >> FSR_TEM_SHIFT) & FSR_TEM_MASK;
if (cx & mask) {
/* not accrued??? */
fs->fs_fsr = (fsr & ~FSR_FTT) |
(FSR_TT_IEEE << FSR_FTT_SHIFT) |
(cx_to_trapx[(cx & mask) - 1] << FSR_CX_SHIFT);
return (FPE);
}
fsr |= (cx << FSR_CX_SHIFT) | (cx << FSR_AX_SHIFT);
}
fs->fs_fsr = fsr;
fpu_fcopy(space, fs->fs_regs + rd, rdtype);
DPRINTF(FPE_STATE, ("AFTER:\n"));
DUMPSTATE(FPE_STATE, fs);
return (0);
}
/*
* Handler for FMOV[SDQ] emulation.
*/
int
fpu_insn_fmov(fs, fe, instr)
struct fpstate64 *fs;
struct fpemu *fe;
union instr instr;
{
int opf = instr.i_opf.i_opf, rs, rd, rtype;
rtype = opf & 3;
if (rtype == 0)
return (NOTFPU);
if ((rs = fpu_regoffset(instr.i_opf.i_rs2, rtype)) < 0)
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_opf.i_rd, rtype)) < 0)
return (NOTFPU);
fpu_fcopy(fs->fs_regs + rs, fs->fs_regs + rd, rtype);
fs->fs_fsr = fe->fe_fsr;
return (0);
}
/*
* Handler for FABS[SDQ] emulation.
*/
int
fpu_insn_fabs(fs, fe, instr)
struct fpstate64 *fs;
struct fpemu *fe;
union instr instr;
{
int opf = instr.i_opf.i_opf, rs, rd, rtype;
rtype = opf & 3;
if (rtype == 0)
return (NOTFPU);
if ((rs = fpu_regoffset(instr.i_opf.i_rs2, rtype)) < 0)
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_opf.i_rd, rtype)) < 0)
return (NOTFPU);
fpu_fcopy(fs->fs_regs + rs, fs->fs_regs + rd, rtype);
fs->fs_regs[rd] = fs->fs_regs[rd] & ~(1 << 31);
fs->fs_fsr = fe->fe_fsr;
return (0);
}
/*
* Handler for FNEG[SDQ] emulation.
*/
int
fpu_insn_fneg(fs, fe, instr)
struct fpstate64 *fs;
struct fpemu *fe;
union instr instr;
{
int opf = instr.i_opf.i_opf, rs, rd, rtype;
rtype = opf & 3;
if (rtype == 0)
return (NOTFPU);
if ((rs = fpu_regoffset(instr.i_opf.i_rs2, rtype)) < 0)
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_opf.i_rd, rtype)) < 0)
return (NOTFPU);
fpu_fcopy(fs->fs_regs + rs, fs->fs_regs + rd, rtype);
fs->fs_regs[rd] = fs->fs_regs[rd] ^ (1 << 31);
fs->fs_fsr = fe->fe_fsr;
return (0);
}
/*
* Handler for F[XI]TO[SDQ] emulation.
*/
int
fpu_insn_itof(fe, instr, rstype, rdp, rdtypep, space)
struct fpemu *fe;
union instr instr;
u_int *space;
int rstype, *rdp, *rdtypep;
{
int opf = instr.i_opf.i_opf, rs, rd, rdtype;
if ((rs = fpu_regoffset(instr.i_opf.i_rs2, rstype)) < 0)
return (NOTFPU);
rdtype = (opf >> 2) & 3;
if (rdtype == 0)
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_opf.i_rd, rdtype)) < 0)
return (NOTFPU);
DPRINTF(FPE_INSN, ("itof %%f%d(%d, %d) -> %%f%d(%d, %d)\n",
rs, rstype, instr.i_opf.i_rs2, rd, rdtype, instr.i_opf.i_rd));
fpu_explode(fe, &fe->fe_f1, rstype, rs);
fpu_implode(fe, &fe->fe_f1, rdtype, space);
*rdp = rd;
*rdtypep = rdtype;
return (0);
}
/*
* Handler for F[SDQ]TO[XI] emulation.
*/
int
fpu_insn_ftoi(fe, instr, rdp, rdtype, space)
struct fpemu *fe;
union instr instr;
u_int *space;
int *rdp, rdtype;
{
int opf = instr.i_opf.i_opf, rd, rstype, rs;
rstype = opf & 3;
if (rstype == 0)
return (NOTFPU);
if ((rs = fpu_regoffset(instr.i_opf.i_rs2, rstype)) < 0)
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_opf.i_rd, rdtype)) < 0)
return (NOTFPU);
fpu_explode(fe, &fe->fe_f1, rstype, rs);
fpu_implode(fe, &fe->fe_f1, rdtype, space);
*rdp = rd;
return (0);
}
/*
* Handler for F[SDQ]TO[SDQ] emulation.
*/
int
fpu_insn_ftof(fe, instr, rdp, rdtypep, space)
struct fpemu *fe;
union instr instr;
u_int *space;
int *rdp, *rdtypep;
{
int opf = instr.i_opf.i_opf, rd, rs, rdtype, rstype;
rstype = opf & 3;
rdtype = (opf >> 2) & 3;
if ((rstype == rdtype) || (rstype == 0) || (rdtype == 0))
return (NOTFPU);
if ((rs = fpu_regoffset(instr.i_opf.i_rs2, rstype)) < 0)
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_opf.i_rd, rdtype)) < 0)
return (NOTFPU);
DPRINTF(FPE_INSN, ("ftof %%f%d(%d, %d) -> %%f%d(%d, %d)\n",
rs, rstype, instr.i_opf.i_rs2, rd, rdtype, instr.i_opf.i_rd));
fpu_explode(fe, &fe->fe_f1, rstype, rs);
fpu_implode(fe, &fe->fe_f1, rdtype, space);
*rdp = rd;
*rdtypep = rdtype;
return (0);
}
/*
* Handler for FQSRT[SDQ] emulation.
*/
int
fpu_insn_fsqrt(fe, instr, rdp, rdtypep, space)
struct fpemu *fe;
union instr instr;
u_int *space;
int *rdp, *rdtypep;
{
int opf = instr.i_opf.i_opf, rd, rs, rtype;
struct fpn *fp;
rtype = opf & 3;
if (rtype == 0)
return (NOTFPU);
if ((rs = fpu_regoffset(instr.i_opf.i_rs2, rtype)) < 0)
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_opf.i_rd, rtype)) < 0)
return (NOTFPU);
fpu_explode(fe, &fe->fe_f1, rtype, rs);
fp = fpu_sqrt(fe);
fpu_implode(fe, fp, rtype, space);
*rdp = rd;
*rdtypep = rtype;
return (0);
}
/*
* Handler for FCMP{E}[SDQ] emulation.
*/
int
fpu_insn_fcmp(fs, fe, instr, cmpe)
struct fpstate64 *fs;
struct fpemu *fe;
union instr instr;
int cmpe;
{
int opf = instr.i_opf.i_opf, rs1, rs2, rtype, cx, fsr;
rtype = opf & 3;
if (rtype == 0)
return (NOTFPU);
if ((rs1 = fpu_regoffset(instr.i_opf.i_rs1, rtype)) < 0)
return (NOTFPU);
if ((rs2 = fpu_regoffset(instr.i_opf.i_rs2, rtype)) < 0)
return (NOTFPU);
fpu_explode(fe, &fe->fe_f1, rtype, rs1);
fpu_explode(fe, &fe->fe_f2, rtype, rs2);
fpu_compare(fe, cmpe);
/*
* The only possible exception here is NV; catch it early
* and get out, as there is no result register.
*/
cx = fe->fe_cx;
fsr = fe->fe_fsr | (cx << FSR_CX_SHIFT);
if (cx != 0) {
if (fsr & (FSR_NV << FSR_TEM_SHIFT)) {
fs->fs_fsr = (fsr & ~FSR_FTT) |
(FSR_TT_IEEE << FSR_FTT_SHIFT);
return (FPE);
}
fsr |= FSR_NV << FSR_AX_SHIFT;
}
fs->fs_fsr = fsr;
return (0);
}
/*
* Handler for FMUL[SDQ] emulation.
*/
int
fpu_insn_fmul(fe, instr, rdp, rdtypep, space)
struct fpemu *fe;
union instr instr;
int *rdp, *rdtypep;
u_int *space;
{
struct fpn *fp;
int opf = instr.i_opf.i_opf, rd, rtype, rs1, rs2;
rtype = opf & 3;
if (rtype == 0)
return (NOTFPU);
if ((rs1 = fpu_regoffset(instr.i_opf.i_rs1, rtype)) < 0)
return (NOTFPU);
if ((rs2 = fpu_regoffset(instr.i_opf.i_rs2, rtype)) < 0)
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_opf.i_rd, rtype)) < 0)
return (NOTFPU);
fpu_explode(fe, &fe->fe_f1, rtype, rs1);
fpu_explode(fe, &fe->fe_f2, rtype, rs2);
fp = fpu_mul(fe);
fpu_implode(fe, fp, rtype, space);
*rdp = rd;
*rdtypep = rtype;
return (0);
}
/*
* Handler for FSMULD, FDMULQ emulation.
*/
int
fpu_insn_fmulx(fe, instr, rdp, rdtypep, space)
struct fpemu *fe;
union instr instr;
int *rdp, *rdtypep;
u_int *space;
{
struct fpn *fp;
int opf = instr.i_opf.i_opf, rd, rdtype, rstype, rs1, rs2;
rstype = opf & 3;
rdtype = (opf >> 2) & 3;
if ((rstype != rdtype + 1) || (rstype == 0) || (rdtype == 0))
return (NOTFPU);
if ((rs1 = fpu_regoffset(instr.i_opf.i_rs1, rstype)) < 0)
return (NOTFPU);
if ((rs2 = fpu_regoffset(instr.i_opf.i_rs2, rstype)) < 0)
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_opf.i_rd, rdtype)) < 0)
return (NOTFPU);
fpu_explode(fe, &fe->fe_f1, rstype, rs1);
fpu_explode(fe, &fe->fe_f2, rstype, rs2);
fp = fpu_mul(fe);
fpu_implode(fe, fp, rdtype, space);
*rdp = rd;
*rdtypep = rdtype;
return (0);
}
/*
* Handler for FDIV[SDQ] emulation.
*/
int
fpu_insn_fdiv(fe, instr, rdp, rdtypep, space)
struct fpemu *fe;
union instr instr;
int *rdp, *rdtypep;
u_int *space;
{
struct fpn *fp;
int opf = instr.i_opf.i_opf, rd, rtype, rs1, rs2;
rtype = opf & 3;
if (rtype == 0)
return (NOTFPU);
if ((rs1 = fpu_regoffset(instr.i_opf.i_rs1, rtype)) < 0)
return (NOTFPU);
if ((rs2 = fpu_regoffset(instr.i_opf.i_rs2, rtype)) < 0)
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_opf.i_rd, rtype)) < 0)
return (NOTFPU);
fpu_explode(fe, &fe->fe_f1, rtype, rs1);
fpu_explode(fe, &fe->fe_f2, rtype, rs2);
fp = fpu_div(fe);
fpu_implode(fe, fp, rtype, space);
*rdp = rd;
*rdtypep = rtype;
return (0);
}
/*
* Handler for FADD[SDQ] emulation.
*/
int
fpu_insn_fadd(fe, instr, rdp, rdtypep, space)
struct fpemu *fe;
union instr instr;
int *rdp, *rdtypep;
u_int *space;
{
struct fpn *fp;
int opf = instr.i_opf.i_opf, rd, rtype, rs1, rs2;
rtype = opf & 3;
if (rtype == 0)
return (NOTFPU);
if ((rs1 = fpu_regoffset(instr.i_opf.i_rs1, rtype)) < 0)
return (NOTFPU);
if ((rs2 = fpu_regoffset(instr.i_opf.i_rs2, rtype)) < 0)
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_opf.i_rd, rtype)) < 0)
return (NOTFPU);
fpu_explode(fe, &fe->fe_f1, rtype, rs1);
fpu_explode(fe, &fe->fe_f2, rtype, rs2);
fp = fpu_add(fe);
fpu_implode(fe, fp, rtype, space);
*rdp = rd;
*rdtypep = rtype;
return (0);
}
/*
* Handler for FSUB[SDQ] emulation.
*/
int
fpu_insn_fsub(fe, instr, rdp, rdtypep, space)
struct fpemu *fe;
union instr instr;
int *rdp, *rdtypep;
u_int *space;
{
struct fpn *fp;
int opf = instr.i_opf.i_opf, rd, rtype, rs1, rs2;
rtype = opf & 3;
if (rtype == 0)
return (NOTFPU);
if ((rs1 = fpu_regoffset(instr.i_opf.i_rs1, rtype)) < 0)
return (NOTFPU);
if ((rs2 = fpu_regoffset(instr.i_opf.i_rs2, rtype)) < 0)
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_opf.i_rd, rtype)) < 0)
return (NOTFPU);
fpu_explode(fe, &fe->fe_f1, rtype, rs1);
fpu_explode(fe, &fe->fe_f2, rtype, rs2);
fp = fpu_sub(fe);
fpu_implode(fe, fp, rtype, space);
*rdp = rd;
*rdtypep = rtype;
return (0);
}
/*
* Handler for FMOV[SDQ][cond] emulation. XXX Assumes we are curproc.
*/
int
fpu_insn_fmovcc(fs, instr)
struct fpstate64 *fs;
union instr instr;
{
int rtype, rd, rs, cond;
rtype = instr.i_fmovcc.i_opf_low & 3;
if ((rtype == 0) || (instr.i_int & 0x00040000))
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_fmovcc.i_rd, rtype)) < 0)
return (NOTFPU);
if ((rs = fpu_regoffset(instr.i_fmovcc.i_rs2, rtype)) < 0)
return (NOTFPU);
switch (instr.i_fmovcc.i_opf_cc) {
case 0:
cond = (fs->fs_fsr >> FSR_FCC_SHIFT) & FSR_FCC_MASK;
break;
case 1:
cond = (fs->fs_fsr >> FSR_FCC1_SHIFT) & FSR_FCC_MASK;
break;
case 2:
cond = (fs->fs_fsr >> FSR_FCC2_SHIFT) & FSR_FCC_MASK;
break;
case 3:
cond = (fs->fs_fsr >> FSR_FCC3_SHIFT) & FSR_FCC_MASK;
break;
case 4:
cond = (curproc->p_md.md_tf->tf_tstate >> TSTATE_CCR_SHIFT) &
PSR_ICC;
break;
case 6:
cond = (curproc->p_md.md_tf->tf_tstate >>
(TSTATE_CCR_SHIFT + XCC_SHIFT)) & PSR_ICC;
break;
default:
return (NOTFPU);
}
if (instr.i_fmovcc.i_cond != cond)
return (0);
fpu_fcopy(fs->fs_regs + rs, fs->fs_regs + rd, rtype);
return (0);
}
/*
* Handler for FMOVR[icond][SDQ] emulation. XXX Assumes we are curproc.
*/
int
fpu_insn_fmovr(fs, instr)
struct fpstate64 *fs;
union instr instr;
{
int rtype, rd, rs2, rs1;
rtype = instr.i_fmovcc.i_opf_low & 3;
if ((rtype == 0) || (instr.i_int & 0x00002000))
return (NOTFPU);
if ((rd = fpu_regoffset(instr.i_fmovr.i_rd, rtype)) < 0)
return (NOTFPU);
if ((rs2 = fpu_regoffset(instr.i_fmovr.i_rs2, rtype)) < 0)
return (NOTFPU);
rs1 = instr.i_fmovr.i_rs1;
switch (instr.i_fmovr.i_rcond) {
case 1: /* Z */
if (rs1 != 0 &&
(int64_t)curproc->p_md.md_tf->tf_global[rs1] != 0)
return (0);
break;
case 2: /* LEZ */
if (rs1 != 0 &&
(int64_t)curproc->p_md.md_tf->tf_global[rs1] > 0)
return (0);
break;
case 3: /* LZ */
if (rs1 == 0 ||
(int64_t)curproc->p_md.md_tf->tf_global[rs1] >= 0)
return (0);
break;
case 5: /* NZ */
if (rs1 == 0 ||
(int64_t)curproc->p_md.md_tf->tf_global[rs1] == 0)
return (0);
break;
case 6: /* NGZ */
if (rs1 == 0 ||
(int64_t)curproc->p_md.md_tf->tf_global[rs1] <= 0)
return (0);
break;
case 7: /* NGEZ */
if (rs1 != 0 &&
(int64_t)curproc->p_md.md_tf->tf_global[rs1] < 0)
return (0);
break;
default:
return (NOTFPU);
}
fpu_fcopy(fs->fs_regs + rs2, fs->fs_regs + rd, rtype);
return (0);
}
|