summaryrefslogtreecommitdiff
path: root/src/util/softfloat.c
blob: 591128efd474e9e0bb114e56428c5a3988f6b2ce (plain)
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
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
/*
 * License for Berkeley SoftFloat Release 3e
 *
 * John R. Hauser
 * 2018 January 20
 *
 * The following applies to the whole of SoftFloat Release 3e as well as to
 * each source file individually.
 *
 * Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 The Regents of the
 * University of California.  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. 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.
 *
 *
 * The functions listed in this file are modified versions of the ones
 * from the Berkeley SoftFloat 3e Library.
 *
 * Their implementation correctness has been checked with the Berkeley
 * TestFloat Release 3e tool for x86_64.
 */

#include "rounding.h"
#include "bitscan.h"
#include "softfloat.h"

#if defined(BIG_ENDIAN)
#define word_incr -1
#define index_word(total, n) ((total) - 1 - (n))
#define index_word_hi(total) 0
#define index_word_lo(total) ((total) - 1)
#define index_multiword_hi(total, n) 0
#define index_multiword_lo(total, n) ((total) - (n))
#define index_multiword_hi_but(total, n) 0
#define index_multiword_lo_but(total, n) (n)
#else
#define word_incr 1
#define index_word(total, n) (n)
#define index_word_hi(total) ((total) - 1)
#define index_word_lo(total) 0
#define index_multiword_hi(total, n) ((total) - (n))
#define index_multiword_lo(total, n) 0
#define index_multiword_hi_but(total, n) (n)
#define index_multiword_lo_but(total, n) 0
#endif

typedef union { double f; int64_t i; uint64_t u; } di_type;
typedef union { float f; int32_t i; uint32_t u; } fi_type;

const uint8_t count_leading_zeros8[256] = {
    8, 7, 6, 6, 5, 5, 5, 5, 4, 4, 4, 4, 4, 4, 4, 4,
    3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
    2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
    2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
    1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
};

/**
 * \brief Shifts 'a' right by the number of bits given in 'dist', which must be in
 * the range 1 to 63.  If any nonzero bits are shifted off, they are "jammed"
 * into the least-significant bit of the shifted value by setting the
 * least-significant bit to 1.  This shifted-and-jammed value is returned.
 *
 * From softfloat_shortShiftRightJam64()
 */
static inline
uint64_t _mesa_short_shift_right_jam64(uint64_t a, uint8_t dist)
{
    return a >> dist | ((a & (((uint64_t) 1 << dist) - 1)) != 0);
}

/**
 * \brief Shifts 'a' right by the number of bits given in 'dist', which must not
 * be zero.  If any nonzero bits are shifted off, they are "jammed" into the
 * least-significant bit of the shifted value by setting the least-significant
 * bit to 1.  This shifted-and-jammed value is returned.
 * The value of 'dist' can be arbitrarily large.  In particular, if 'dist' is
 * greater than 64, the result will be either 0 or 1, depending on whether 'a'
 * is zero or nonzero.
 *
 * From softfloat_shiftRightJam64()
 */
static inline
uint64_t _mesa_shift_right_jam64(uint64_t a, uint32_t dist)
{
    return
        (dist < 63) ? a >> dist | ((uint64_t) (a << (-dist & 63)) != 0) : (a != 0);
}

/**
 * \brief Shifts 'a' right by the number of bits given in 'dist', which must not be
 * zero.  If any nonzero bits are shifted off, they are "jammed" into the
 * least-significant bit of the shifted value by setting the least-significant
 * bit to 1.  This shifted-and-jammed value is returned.
 * The value of 'dist' can be arbitrarily large.  In particular, if 'dist' is
 * greater than 32, the result will be either 0 or 1, depending on whether 'a'
 * is zero or nonzero.
 *
 * From softfloat_shiftRightJam32()
 */
static inline
uint32_t _mesa_shift_right_jam32(uint32_t a, uint16_t dist)
{
    return
        (dist < 31) ? a >> dist | ((uint32_t) (a << (-dist & 31)) != 0) : (a != 0);
}

/**
 * \brief Extracted from softfloat_roundPackToF64()
 */
static inline
double _mesa_roundtozero_f64(int64_t s, int64_t e, int64_t m)
{
    di_type result;

    if ((uint64_t) e >= 0x7fd) {
        if (e < 0) {
            m = _mesa_shift_right_jam64(m, -e);
            e = 0;
        } else if ((e > 0x7fd) || (0x8000000000000000 <= m)) {
            e = 0x7ff;
            m = 0;
            result.u = (s << 63) + (e << 52) + m;
            result.u -= 1;
            return result.f;
        }
    }

    m >>= 10;
    if (m == 0)
        e = 0;

    result.u = (s << 63) + (e << 52) + m;
    return result.f;
}

/**
 * \brief Extracted from softfloat_roundPackToF32()
 */
static inline
float _mesa_round_f32(int32_t s, int32_t e, int32_t m, bool rtz)
{
    fi_type result;
    uint8_t round_increment = rtz ? 0 : 0x40;

    if ((uint32_t) e >= 0xfd) {
        if (e < 0) {
            m = _mesa_shift_right_jam32(m, -e);
            e = 0;
        } else if ((e > 0xfd) || (0x80000000 <= m + round_increment)) {
            e = 0xff;
            m = 0;
            result.u = (s << 31) + (e << 23) + m;
            result.u -= !round_increment;
            return result.f;
        }
    }

    uint8_t round_bits;
    round_bits = m & 0x7f;
    m = ((uint32_t) m + round_increment) >> 7;
    m &= ~(uint32_t) (! (round_bits ^ 0x40) & !rtz);
    if (m == 0)
        e = 0;

    result.u = (s << 31) + (e << 23) + m;
    return result.f;
}

/**
 * \brief Extracted from softfloat_roundPackToF16()
 */
static inline
uint16_t _mesa_roundtozero_f16(int16_t s, int16_t e, int16_t m)
{
    if ((uint16_t) e >= 0x1d) {
        if (e < 0) {
            m = _mesa_shift_right_jam32(m, -e);
            e = 0;
        } else if ((e > 0x1d) || (0x8000 <= m)) {
            e = 0x1f;
            m = 0;
            return (s << 15) + (e << 10) + m - 1;
        }
    }

    m >>= 4;
    if (m == 0)
        e = 0;

    return (s << 15) + (e << 10) + m;
}

/**
 * \brief Shifts the N-bit unsigned integer pointed to by 'a' left by the number of
 * bits given in 'dist', where N = 'size_words' * 32.  The value of 'dist'
 * must be in the range 1 to 31.  Any nonzero bits shifted off are lost.  The
 * shifted N-bit result is stored at the location pointed to by 'm_out'.  Each
 * of 'a' and 'm_out' points to a 'size_words'-long array of 32-bit elements
 * that concatenate in the platform's normal endian order to form an N-bit
 * integer.
 *
 * From softfloat_shortShiftLeftM()
 */
static inline void
_mesa_short_shift_left_m(uint8_t size_words, const uint32_t *a, uint8_t dist, uint32_t *m_out)
{
    uint8_t neg_dist;
    unsigned index, last_index;
    uint32_t part_word, a_word;

    neg_dist = -dist;
    index = index_word_hi(size_words);
    last_index = index_word_lo(size_words);
    part_word = a[index] << dist;
    while (index != last_index) {
        a_word = a[index - word_incr];
        m_out[index] = part_word | a_word >> (neg_dist & 31);
        index -= word_incr;
        part_word = a_word << dist;
    }
    m_out[index] = part_word;
}

/**
 * \brief Shifts the N-bit unsigned integer pointed to by 'a' left by the number of
 * bits given in 'dist', where N = 'size_words' * 32.  The value of 'dist'
 * must not be zero.  Any nonzero bits shifted off are lost.  The shifted
 * N-bit result is stored at the location pointed to by 'm_out'.  Each of 'a'
 * and 'm_out' points to a 'size_words'-long array of 32-bit elements that
 * concatenate in the platform's normal endian order to form an N-bit
 * integer. The value of 'dist' can be arbitrarily large.  In particular, if
 * 'dist' is greater than N, the stored result will be 0.
 *
 * From softfloat_shiftLeftM()
 */
static inline void
_mesa_shift_left_m(uint8_t size_words, const uint32_t *a, uint32_t dist, uint32_t *m_out)
{
    uint32_t word_dist;
    uint8_t inner_dist;
    uint8_t i;

    word_dist = dist >> 5;
    if (word_dist < size_words) {
        a += index_multiword_lo_but(size_words, word_dist);
        inner_dist = dist & 31;
        if (inner_dist) {
            _mesa_short_shift_left_m(size_words - word_dist, a, inner_dist,
                                     m_out + index_multiword_hi_but(size_words, word_dist));
            if (!word_dist)
                return;
        } else {
            uint32_t *dest = m_out + index_word_hi(size_words);
            a += index_word_hi(size_words - word_dist);
            for (i = size_words - word_dist; i; --i) {
                *dest = *a;
                a -= word_incr;
                dest -= word_incr;
            }
        }
        m_out += index_multiword_lo(size_words, word_dist);
    } else {
        word_dist = size_words;
    }
    do {
        *m_out++ = 0;
        --word_dist;
    } while (word_dist);
}

/**
 * \brief Shifts the N-bit unsigned integer pointed to by 'a' right by the number of
 * bits given in 'dist', where N = 'size_words' * 32.  The value of 'dist'
 * must be in the range 1 to 31.  Any nonzero bits shifted off are lost.  The
 * shifted N-bit result is stored at the location pointed to by 'm_out'.  Each
 * of 'a' and 'm_out' points to a 'size_words'-long array of 32-bit elements
 * that concatenate in the platform's normal endian order to form an N-bit
 * integer.
 *
 * From softfloat_shortShiftRightM()
 */
static inline void
_mesa_short_shift_right_m(uint8_t size_words, const uint32_t *a, uint8_t dist, uint32_t *m_out)
{
    uint8_t neg_dist;
    unsigned index, last_index;
    uint32_t part_word, a_word;

    neg_dist = -dist;
    index = index_word_lo(size_words);
    last_index = index_word_hi(size_words);
    part_word = a[index] >> dist;
    while (index != last_index) {
        a_word = a[index + word_incr];
        m_out[index] = a_word << (neg_dist & 31) | part_word;
        index += word_incr;
        part_word = a_word >> dist;
    }
    m_out[index] = part_word;
}

/**
 * \brief Shifts the N-bit unsigned integer pointed to by 'a' right by the number of
 * bits given in 'dist', where N = 'size_words' * 32.  The value of 'dist'
 * must be in the range 1 to 31.  If any nonzero bits are shifted off, they
 * are "jammed" into the least-significant bit of the shifted value by setting
 * the least-significant bit to 1.  This shifted-and-jammed N-bit result is
 * stored at the location pointed to by 'm_out'.  Each of 'a' and 'm_out'
 * points to a 'size_words'-long array of 32-bit elements that concatenate in
 * the platform's normal endian order to form an N-bit integer.
 *
 *
 * From softfloat_shortShiftRightJamM()
 */
static inline void
_mesa_short_shift_right_jam_m(uint8_t size_words, const uint32_t *a, uint8_t dist, uint32_t *m_out)
{
    uint8_t neg_dist;
    unsigned index, last_index;
    uint64_t part_word, a_word;

    neg_dist = -dist;
    index = index_word_lo(size_words);
    last_index = index_word_hi(size_words);
    a_word = a[index];
    part_word = a_word >> dist;
    if (part_word << dist != a_word )
        part_word |= 1;
    while (index != last_index) {
        a_word = a[index + word_incr];
        m_out[index] = a_word << (neg_dist & 31) | part_word;
        index += word_incr;
        part_word = a_word >> dist;
    }
    m_out[index] = part_word;
}

/**
 * \brief Shifts the N-bit unsigned integer pointed to by 'a' right by the number of
 * bits given in 'dist', where N = 'size_words' * 32.  The value of 'dist'
 * must not be zero.  If any nonzero bits are shifted off, they are "jammed"
 * into the least-significant bit of the shifted value by setting the
 * least-significant bit to 1.  This shifted-and-jammed N-bit result is stored
 * at the location pointed to by 'm_out'.  Each of 'a' and 'm_out' points to a
 * 'size_words'-long array of 32-bit elements that concatenate in the
 * platform's normal endian order to form an N-bit integer.  The value of
 * 'dist' can be arbitrarily large.  In particular, if 'dist' is greater than
 * N, the stored result will be either 0 or 1, depending on whether the
 * original N bits are all zeros.
 *
 * From softfloat_shiftRightJamM()
 */
static inline void
_mesa_shift_right_jam_m(uint8_t size_words, const uint32_t *a, uint32_t dist, uint32_t *m_out)
{
    uint32_t word_jam, word_dist, *tmp;
    uint8_t i, inner_dist;

    word_jam = 0;
    word_dist = dist >> 5;
    if (word_dist) {
        if (size_words < word_dist)
            word_dist = size_words;
        tmp = (uint32_t *) (a + index_multiword_lo(size_words, word_dist));
        i = word_dist;
        do {
            word_jam = *tmp++;
            if (word_jam)
                break;
            --i;
        } while (i);
        tmp = m_out;
    }
    if (word_dist < size_words) {
        a += index_multiword_hi_but(size_words, word_dist);
        inner_dist = dist & 31;
        if (inner_dist) {
            _mesa_short_shift_right_jam_m(size_words - word_dist, a, inner_dist,
                                          m_out + index_multiword_lo_but(size_words, word_dist));
            if (!word_dist) {
                if (word_jam)
                    m_out[index_word_lo(size_words)] |= 1;
                return;
            }
        } else {
            a += index_word_lo(size_words - word_dist);
            tmp = m_out + index_word_lo(size_words);
            for (i = size_words - word_dist; i; --i) {
                *tmp = *a;
                a += word_incr;
                tmp += word_incr;
            }
        }
        tmp = m_out + index_multiword_hi(size_words, word_dist);
    }
    do {
        *tmp++ = 0;
        --word_dist;
    } while (word_dist);
    if (word_jam)
        m_out[index_word_lo(size_words)] |= 1;
}

/**
 * \brief Calculate a + b but rounding to zero.
 *
 * Notice that this mainly differs from the original Berkeley SoftFloat 3e
 * implementation in that we don't really treat NaNs, Zeroes nor the
 * signalling flags. Any NaN is good for us and the sign of the Zero is not
 * important.
 *
 * From f64_add()
 */
double
_mesa_double_add_rtz(double a, double b)
{
    const di_type a_di = {a};
    uint64_t a_flt_m = a_di.u & 0x0fffffffffffff;
    uint64_t a_flt_e = (a_di.u >> 52) & 0x7ff;
    uint64_t a_flt_s = (a_di.u >> 63) & 0x1;
    const di_type b_di = {b};
    uint64_t b_flt_m = b_di.u & 0x0fffffffffffff;
    uint64_t b_flt_e = (b_di.u >> 52) & 0x7ff;
    uint64_t b_flt_s = (b_di.u >> 63) & 0x1;
    int64_t s, e, m = 0;

    s = a_flt_s;

    const int64_t exp_diff = a_flt_e - b_flt_e;

    /* Handle special cases */

    if (a_flt_s != b_flt_s) {
        return _mesa_double_sub_rtz(a, -b);
    } else if ((a_flt_e == 0) && (a_flt_m == 0)) {
        /* 'a' is zero, return 'b' */
        return b;
    } else if ((b_flt_e == 0) && (b_flt_m == 0)) {
        /* 'b' is zero, return 'a' */
        return a;
    } else if (a_flt_e == 0x7ff && a_flt_m != 0) {
        /* 'a' is a NaN, return NaN */
        return a;
    } else if (b_flt_e == 0x7ff && b_flt_m != 0) {
        /* 'b' is a NaN, return NaN */
        return b;
    } else if (a_flt_e == 0x7ff && a_flt_m == 0) {
        /* Inf + x = Inf */
        return a;
    } else if (b_flt_e == 0x7ff && b_flt_m == 0) {
        /* x + Inf = Inf */
        return b;
    } else if (exp_diff == 0 && a_flt_e == 0) {
        di_type result_di;
        result_di.u = a_di.u + b_flt_m;
        return result_di.f;
    } else if (exp_diff == 0) {
        e = a_flt_e;
        m = 0x0020000000000000 + a_flt_m + b_flt_m;
        m <<= 9;
    } else if (exp_diff < 0) {
        a_flt_m <<= 9;
        b_flt_m <<= 9;
        e = b_flt_e;

        if (a_flt_e != 0)
            a_flt_m += 0x2000000000000000;
        else
            a_flt_m <<= 1;

        a_flt_m = _mesa_shift_right_jam64(a_flt_m, -exp_diff);
        m = 0x2000000000000000 + a_flt_m + b_flt_m;
        if (m < 0x4000000000000000) {
            --e;
            m <<= 1;
        }
    } else {
        a_flt_m <<= 9;
        b_flt_m <<= 9;
        e = a_flt_e;

        if (b_flt_e != 0)
            b_flt_m += 0x2000000000000000;
        else
            b_flt_m <<= 1;

        b_flt_m = _mesa_shift_right_jam64(b_flt_m, exp_diff);
        m = 0x2000000000000000 + a_flt_m + b_flt_m;
        if (m < 0x4000000000000000) {
            --e;
            m <<= 1;
        }
    }

    return _mesa_roundtozero_f64(s, e, m);
}

/**
 * \brief Returns the number of leading 0 bits before the most-significant 1 bit of
 * 'a'.  If 'a' is zero, 64 is returned.
 */
static inline unsigned
_mesa_count_leading_zeros64(uint64_t a)
{
    return 64 - util_last_bit64(a);
}

/**
 * \brief Returns the number of leading 0 bits before the most-significant 1 bit of
 * 'a'.  If 'a' is zero, 32 is returned.
 */
static inline unsigned
_mesa_count_leading_zeros32(uint32_t a)
{
    return 32 - util_last_bit(a);
}

static inline double
_mesa_norm_round_pack_f64(int64_t s, int64_t e, int64_t m)
{
    int8_t shift_dist;

    shift_dist = _mesa_count_leading_zeros64(m) - 1;
    e -= shift_dist;
    if ((10 <= shift_dist) && ((unsigned) e < 0x7fd)) {
        di_type result;
        result.u = (s << 63) + ((m ? e : 0) << 52) + (m << (shift_dist - 10));
        return result.f;
    } else {
        return _mesa_roundtozero_f64(s, e, m << shift_dist);
    }
}

/**
 * \brief Replaces the N-bit unsigned integer pointed to by 'm_out' by the
 * 2s-complement of itself, where N = 'size_words' * 32.  Argument 'm_out'
 * points to a 'size_words'-long array of 32-bit elements that concatenate in
 * the platform's normal endian order to form an N-bit integer.
 *
 * From softfloat_negXM()
 */
static inline void
_mesa_neg_x_m(uint8_t size_words, uint32_t *m_out)
{
    unsigned index, last_index;
    uint8_t carry;
    uint32_t word;

    index = index_word_lo(size_words);
    last_index = index_word_hi(size_words);
    carry = 1;
    for (;;) {
        word = ~m_out[index] + carry;
        m_out[index] = word;
        if (index == last_index)
            break;
        index += word_incr;
        if (word)
            carry = 0;
    }
}

/**
 * \brief Adds the two N-bit integers pointed to by 'a' and 'b', where N =
 * 'size_words' * 32.  The addition is modulo 2^N, so any carry out is
 * lost. The N-bit sum is stored at the location pointed to by 'm_out'.  Each
 * of 'a', 'b', and 'm_out' points to a 'size_words'-long array of 32-bit
 * elements that concatenate in the platform's normal endian order to form an
 * N-bit integer.
 *
 * From softfloat_addM()
 */
static inline void
_mesa_add_m(uint8_t size_words, const uint32_t *a, const uint32_t *b, uint32_t *m_out)
{
    unsigned index, last_index;
    uint8_t carry;
    uint32_t a_word, word;

    index = index_word_lo(size_words);
    last_index = index_word_hi(size_words);
    carry = 0;
    for (;;) {
        a_word = a[index];
        word = a_word + b[index] + carry;
        m_out[index] = word;
        if (index == last_index)
            break;
        if (word != a_word)
            carry = (word < a_word);
        index += word_incr;
    }
}

/**
 * \brief Subtracts the two N-bit integers pointed to by 'a' and 'b', where N =
 * 'size_words' * 32.  The subtraction is modulo 2^N, so any borrow out (carry
 * out) is lost.  The N-bit difference is stored at the location pointed to by
 * 'm_out'.  Each of 'a', 'b', and 'm_out' points to a 'size_words'-long array
 * of 32-bit elements that concatenate in the platform's normal endian order
 * to form an N-bit integer.
 *
 * From softfloat_subM()
 */
static inline void
_mesa_sub_m(uint8_t size_words, const uint32_t *a, const uint32_t *b, uint32_t *m_out)
{
    unsigned index, last_index;
    uint8_t borrow;
    uint32_t a_word, b_word;

    index = index_word_lo(size_words);
    last_index = index_word_hi(size_words);
    borrow = 0;
    for (;;) {
        a_word = a[index];
        b_word = b[index];
        m_out[index] = a_word - b_word - borrow;
        if (index == last_index)
            break;
        borrow = borrow ? (a_word <= b_word) : (a_word < b_word);
        index += word_incr;
    }
}

/* Calculate a - b but rounding to zero.
 *
 * Notice that this mainly differs from the original Berkeley SoftFloat 3e
 * implementation in that we don't really treat NaNs, Zeroes nor the
 * signalling flags. Any NaN is good for us and the sign of the Zero is not
 * important.
 *
 * From f64_sub()
 */
double
_mesa_double_sub_rtz(double a, double b)
{
    const di_type a_di = {a};
    uint64_t a_flt_m = a_di.u & 0x0fffffffffffff;
    uint64_t a_flt_e = (a_di.u >> 52) & 0x7ff;
    uint64_t a_flt_s = (a_di.u >> 63) & 0x1;
    const di_type b_di = {b};
    uint64_t b_flt_m = b_di.u & 0x0fffffffffffff;
    uint64_t b_flt_e = (b_di.u >> 52) & 0x7ff;
    uint64_t b_flt_s = (b_di.u >> 63) & 0x1;
    int64_t s, e, m = 0;
    int64_t m_diff = 0;
    unsigned shift_dist = 0;

    s = a_flt_s;

    const int64_t exp_diff = a_flt_e - b_flt_e;

    /* Handle special cases */

    if (a_flt_s != b_flt_s) {
        return _mesa_double_add_rtz(a, -b);
    } else if ((a_flt_e == 0) && (a_flt_m == 0)) {
        /* 'a' is zero, return '-b' */
        return -b;
    } else if ((b_flt_e == 0) && (b_flt_m == 0)) {
        /* 'b' is zero, return 'a' */
        return a;
    } else if (a_flt_e == 0x7ff && a_flt_m != 0) {
        /* 'a' is a NaN, return NaN */
        return a;
    } else if (b_flt_e == 0x7ff && b_flt_m != 0) {
        /* 'b' is a NaN, return NaN */
        return b;
    } else if (a_flt_e == 0x7ff && a_flt_m == 0) {
        if (b_flt_e == 0x7ff && b_flt_m == 0) {
            /* Inf - Inf =  NaN */
            di_type result;
            e = 0x7ff;
            result.u = (s << 63) + (e << 52) + 0x1;
            return result.f;
        }
        /* Inf - x = Inf */
        return a;
    } else if (b_flt_e == 0x7ff && b_flt_m == 0) {
        /* x - Inf = -Inf */
        return -b;
    } else if (exp_diff == 0) {
        m_diff = a_flt_m - b_flt_m;

        if (m_diff == 0)
            return 0;
        if (a_flt_e)
            --a_flt_e;
        if (m_diff < 0) {
            s = !s;
            m_diff = -m_diff;
        }

        shift_dist = _mesa_count_leading_zeros64(m_diff) - 11;
        e = a_flt_e - shift_dist;
        if (e < 0) {
            shift_dist = a_flt_e;
            e = 0;
        }

        di_type result;
        result.u = (s << 63) + (e << 52) + (m_diff << shift_dist);
        return result.f;
    } else if (exp_diff < 0) {
        a_flt_m <<= 10;
        b_flt_m <<= 10;
        s = !s;

        a_flt_m += (a_flt_e) ? 0x4000000000000000 : a_flt_m;
        a_flt_m = _mesa_shift_right_jam64(a_flt_m, -exp_diff);
        b_flt_m |= 0x4000000000000000;
        e = b_flt_e;
        m = b_flt_m - a_flt_m;
    } else {
        a_flt_m <<= 10;
        b_flt_m <<= 10;

        b_flt_m += (b_flt_e) ? 0x4000000000000000 : b_flt_m;
        b_flt_m = _mesa_shift_right_jam64(b_flt_m, exp_diff);
        a_flt_m |= 0x4000000000000000;
        e = a_flt_e;
        m = a_flt_m - b_flt_m;
    }

    return _mesa_norm_round_pack_f64(s, e - 1, m);
}

static inline void
_mesa_norm_subnormal_mantissa_f64(uint64_t m, uint64_t *exp, uint64_t *m_out)
{
    int shift_dist;

    shift_dist = _mesa_count_leading_zeros64(m) - 11;
    *exp = 1 - shift_dist;
    *m_out = m << shift_dist;
}

static inline void
_mesa_norm_subnormal_mantissa_f32(uint32_t m, uint32_t *exp, uint32_t *m_out)
{
    int shift_dist;

    shift_dist = _mesa_count_leading_zeros32(m) - 8;
    *exp = 1 - shift_dist;
    *m_out = m << shift_dist;
}

/**
 * \brief Multiplies 'a' and 'b' and stores the 128-bit product at the location
 * pointed to by 'zPtr'.  Argument 'zPtr' points to an array of four 32-bit
 * elements that concatenate in the platform's normal endian order to form a
 * 128-bit integer.
 *
 * From softfloat_mul64To128M()
 */
static inline void
_mesa_softfloat_mul_f64_to_f128_m(uint64_t a, uint64_t b, uint32_t *m_out)
{
    uint32_t a32, a0, b32, b0;
    uint64_t z0, mid1, z64, mid;

    a32 = a >> 32;
    a0 = a;
    b32 = b >> 32;
    b0 = b;
    z0 = (uint64_t) a0 * b0;
    mid1 = (uint64_t) a32 * b0;
    mid = mid1 + (uint64_t) a0 * b32;
    z64 = (uint64_t) a32 * b32;
    z64 += (uint64_t) (mid < mid1) << 32 | mid >> 32;
    mid <<= 32;
    z0 += mid;
    m_out[index_word(4, 1)] = z0 >> 32;
    m_out[index_word(4, 0)] = z0;
    z64 += (z0 < mid);
    m_out[index_word(4, 3)] = z64 >> 32;
    m_out[index_word(4, 2)] = z64;
}

/* Calculate a * b but rounding to zero.
 *
 * Notice that this mainly differs from the original Berkeley SoftFloat 3e
 * implementation in that we don't really treat NaNs, Zeroes nor the
 * signalling flags. Any NaN is good for us and the sign of the Zero is not
 * important.
 *
 * From f64_mul()
 */
double
_mesa_double_mul_rtz(double a, double b)
{
    const di_type a_di = {a};
    uint64_t a_flt_m = a_di.u & 0x0fffffffffffff;
    uint64_t a_flt_e = (a_di.u >> 52) & 0x7ff;
    uint64_t a_flt_s = (a_di.u >> 63) & 0x1;
    const di_type b_di = {b};
    uint64_t b_flt_m = b_di.u & 0x0fffffffffffff;
    uint64_t b_flt_e = (b_di.u >> 52) & 0x7ff;
    uint64_t b_flt_s = (b_di.u >> 63) & 0x1;
    int64_t s, e, m = 0;

    s = a_flt_s ^ b_flt_s;

    if (a_flt_e == 0x7ff) {
        if (a_flt_m != 0) {
            /* 'a' is a NaN, return NaN */
            return a;
        } else if (b_flt_e == 0x7ff && b_flt_m != 0) {
            /* 'b' is a NaN, return NaN */
            return b;
        }

        if (!(b_flt_e | b_flt_m)) {
            /* Inf * 0 = NaN */
            di_type result;
            e = 0x7ff;
            result.u = (s << 63) + (e << 52) + 0x1;
            return result.f;
        }
        /* Inf * x = Inf */
        di_type result;
        e = 0x7ff;
        result.u = (s << 63) + (e << 52) + 0;
        return result.f;
    }

    if (b_flt_e == 0x7ff) {
        if (b_flt_m != 0) {
            /* 'b' is a NaN, return NaN */
            return b;
        }
        if (!(a_flt_e | a_flt_m)) {
            /* 0 * Inf = NaN */
            di_type result;
            e = 0x7ff;
            result.u = (s << 63) + (e << 52) + 0x1;
            return result.f;
        }
        /* x * Inf = Inf */
        di_type result;
        e = 0x7ff;
        result.u = (s << 63) + (e << 52) + 0;
        return result.f;
    }

    if (a_flt_e == 0) {
        if (a_flt_m == 0) {
            /* 'a' is zero. Return zero */
            di_type result;
            result.u = (s << 63) + 0;
            return result.f;
        }
        _mesa_norm_subnormal_mantissa_f64(a_flt_m , &a_flt_e, &a_flt_m);
    }
    if (b_flt_e == 0) {
        if (b_flt_m == 0) {
            /* 'b' is zero. Return zero */
            di_type result;
            result.u = (s << 63) + 0;
            return result.f;
        }
        _mesa_norm_subnormal_mantissa_f64(b_flt_m , &b_flt_e, &b_flt_m);
    }

    e = a_flt_e + b_flt_e - 0x3ff;
    a_flt_m = (a_flt_m | 0x0010000000000000) << 10;
    b_flt_m = (b_flt_m | 0x0010000000000000) << 11;

    uint32_t m_128[4];
    _mesa_softfloat_mul_f64_to_f128_m(a_flt_m, b_flt_m, m_128);

    m = (uint64_t) m_128[index_word(4, 3)] << 32 | m_128[index_word(4, 2)];
    if (m_128[index_word(4, 1)] || m_128[index_word(4, 0)])
        m |= 1;

    if (m < 0x4000000000000000) {
        --e;
        m <<= 1;
    }

    return _mesa_roundtozero_f64(s, e, m);
}


/**
 * \brief Calculate a * b + c but rounding to zero.
 *
 * Notice that this mainly differs from the original Berkeley SoftFloat 3e
 * implementation in that we don't really treat NaNs, Zeroes nor the
 * signalling flags. Any NaN is good for us and the sign of the Zero is not
 * important.
 *
 * From f64_mulAdd()
 */
double
_mesa_double_fma_rtz(double a, double b, double c)
{
    const di_type a_di = {a};
    uint64_t a_flt_m = a_di.u & 0x0fffffffffffff;
    uint64_t a_flt_e = (a_di.u >> 52) & 0x7ff;
    uint64_t a_flt_s = (a_di.u >> 63) & 0x1;
    const di_type b_di = {b};
    uint64_t b_flt_m = b_di.u & 0x0fffffffffffff;
    uint64_t b_flt_e = (b_di.u >> 52) & 0x7ff;
    uint64_t b_flt_s = (b_di.u >> 63) & 0x1;
    const di_type c_di = {c};
    uint64_t c_flt_m = c_di.u & 0x0fffffffffffff;
    uint64_t c_flt_e = (c_di.u >> 52) & 0x7ff;
    uint64_t c_flt_s = (c_di.u >> 63) & 0x1;
    int64_t s, e, m = 0;

    c_flt_s ^= 0;
    s = a_flt_s ^ b_flt_s ^ 0;

    if (a_flt_e == 0x7ff) {
        if (a_flt_m != 0) {
            /* 'a' is a NaN, return NaN */
            return a;
        } else if (b_flt_e == 0x7ff && b_flt_m != 0) {
            /* 'b' is a NaN, return NaN */
            return b;
        } else if (c_flt_e == 0x7ff && c_flt_m != 0) {
            /* 'c' is a NaN, return NaN */
            return c;
        }

        if (!(b_flt_e | b_flt_m)) {
            /* Inf * 0 + y = NaN */
            di_type result;
            e = 0x7ff;
            result.u = (s << 63) + (e << 52) + 0x1;
            return result.f;
        }

        if ((c_flt_e == 0x7ff && c_flt_m == 0) && (s != c_flt_s)) {
            /* Inf * x - Inf = NaN */
            di_type result;
            e = 0x7ff;
            result.u = (s << 63) + (e << 52) + 0x1;
            return result.f;
        }

        /* Inf * x + y = Inf */
        di_type result;
        e = 0x7ff;
        result.u = (s << 63) + (e << 52) + 0;
        return result.f;
    }

    if (b_flt_e == 0x7ff) {
        if (b_flt_m != 0) {
            /* 'b' is a NaN, return NaN */
            return b;
        } else if (c_flt_e == 0x7ff && c_flt_m != 0) {
            /* 'c' is a NaN, return NaN */
            return c;
        }

        if (!(a_flt_e | a_flt_m)) {
            /* 0 * Inf + y = NaN */
            di_type result;
            e = 0x7ff;
            result.u = (s << 63) + (e << 52) + 0x1;
            return result.f;
        }

        if ((c_flt_e == 0x7ff && c_flt_m == 0) && (s != c_flt_s)) {
            /* x * Inf - Inf = NaN */
            di_type result;
            e = 0x7ff;
            result.u = (s << 63) + (e << 52) + 0x1;
            return result.f;
        }

        /* x * Inf + y = Inf */
        di_type result;
        e = 0x7ff;
        result.u = (s << 63) + (e << 52) + 0;
        return result.f;
    }

    if (c_flt_e == 0x7ff) {
        if (c_flt_m != 0) {
            /* 'c' is a NaN, return NaN */
            return c;
        }

        /* x * y + Inf = Inf */
        return c;
    }

    if (a_flt_e == 0) {
        if (a_flt_m == 0) {
            /* 'a' is zero, return 'c' */
            return c;
        }
        _mesa_norm_subnormal_mantissa_f64(a_flt_m , &a_flt_e, &a_flt_m);
    }

    if (b_flt_e == 0) {
        if (b_flt_m == 0) {
            /* 'b' is zero, return 'c' */
            return c;
        }
        _mesa_norm_subnormal_mantissa_f64(b_flt_m , &b_flt_e, &b_flt_m);
    }

    e = a_flt_e + b_flt_e - 0x3fe;
    a_flt_m = (a_flt_m | 0x0010000000000000) << 10;
    b_flt_m = (b_flt_m | 0x0010000000000000) << 11;

    uint32_t m_128[4];
    _mesa_softfloat_mul_f64_to_f128_m(a_flt_m, b_flt_m, m_128);

    m = (uint64_t) m_128[index_word(4, 3)] << 32 | m_128[index_word(4, 2)];

    int64_t shift_dist = 0;
    if (!(m & 0x4000000000000000)) {
        --e;
        shift_dist = -1;
    }

    if (c_flt_e == 0) {
        if (c_flt_m == 0) {
            /* 'c' is zero, return 'a * b' */
            if (shift_dist)
                m <<= 1;

            if (m_128[index_word(4, 1)] || m_128[index_word(4, 0)])
                m |= 1;
            return _mesa_roundtozero_f64(s, e - 1, m);
        }
        _mesa_norm_subnormal_mantissa_f64(c_flt_m , &c_flt_e, &c_flt_m);
    }
    c_flt_m = (c_flt_m | 0x0010000000000000) << 10;

    uint32_t c_flt_m_128[4];
    int64_t exp_diff = e - c_flt_e;
    if (exp_diff < 0) {
        e = c_flt_e;
        if ((s == c_flt_s) || (exp_diff < -1)) {
            shift_dist -= exp_diff;
            if (shift_dist) {
                m = _mesa_shift_right_jam64(m, shift_dist);
            }
        } else {
            if (!shift_dist) {
                _mesa_short_shift_right_m(4, m_128, 1, m_128);
            }
        }
    } else {
        if (shift_dist)
            _mesa_add_m(4, m_128, m_128, m_128);
        if (!exp_diff) {
            m = (uint64_t) m_128[index_word(4, 3)] << 32
                | m_128[index_word(4, 2)];
        } else {
            c_flt_m_128[index_word(4, 3)] = c_flt_m >> 32;
            c_flt_m_128[index_word(4, 2)] = c_flt_m;
            c_flt_m_128[index_word(4, 1)] = 0;
            c_flt_m_128[index_word(4, 0)] = 0;
            _mesa_shift_right_jam_m(4, c_flt_m_128, exp_diff, c_flt_m_128);
        }
    }

    if (s == c_flt_s) {
        if (exp_diff <= 0) {
            m += c_flt_m;
        } else {
            _mesa_add_m(4, m_128, c_flt_m_128, m_128);
            m = (uint64_t) m_128[index_word(4, 3)] << 32
                | m_128[index_word(4, 2)];
        }
        if (m & 0x8000000000000000) {
            e++;
            m = _mesa_short_shift_right_jam64(m, 1);
        }
    } else {
        if (exp_diff < 0) {
            s = c_flt_s;
            if (exp_diff < -1) {
                m = c_flt_m - m;
                if (m_128[index_word(4, 1)] || m_128[index_word(4, 0)]) {
                    m = (m - 1) | 1;
                }
                if (!(m & 0x4000000000000000)) {
                    --e;
                    m <<= 1;
                }
                return _mesa_roundtozero_f64(s, e - 1, m);
            } else {
                c_flt_m_128[index_word(4, 3)] = c_flt_m >> 32;
                c_flt_m_128[index_word(4, 2)] = c_flt_m;
                c_flt_m_128[index_word(4, 1)] = 0;
                c_flt_m_128[index_word(4, 0)] = 0;
                _mesa_sub_m(4, c_flt_m_128, m_128, m_128);
            }
        } else if (!exp_diff) {
            m -= c_flt_m;
            if (!m && !m_128[index_word(4, 1)] && !m_128[index_word(4, 0)]) {
                /* Return zero */
                di_type result;
                result.u = (s << 63) + 0;
                return result.f;
            }
            m_128[index_word(4, 3)] = m >> 32;
            m_128[index_word(4, 2)] = m;
            if (m & 0x8000000000000000) {
                s = !s;
                _mesa_neg_x_m(4, m_128);
            }
        } else {
            _mesa_sub_m(4, m_128, c_flt_m_128, m_128);
            if (1 < exp_diff) {
                m = (uint64_t) m_128[index_word(4, 3)] << 32
                    | m_128[index_word(4, 2)];
                if (!(m & 0x4000000000000000)) {
                    --e;
                    m <<= 1;
                }
                if (m_128[index_word(4, 1)] || m_128[index_word(4, 0)])
                    m |= 1;
                return _mesa_roundtozero_f64(s, e - 1, m);
            }
        }

        shift_dist = 0;
        m = (uint64_t) m_128[index_word(4, 3)] << 32
            | m_128[index_word(4, 2)];
        if (!m) {
            shift_dist = 64;
            m = (uint64_t) m_128[index_word(4, 1)] << 32
                | m_128[index_word(4, 0)];
        }
        shift_dist += _mesa_count_leading_zeros64(m) - 1;
        if (shift_dist) {
            e -= shift_dist;
            _mesa_shift_left_m(4, m_128, shift_dist, m_128);
            m = (uint64_t) m_128[index_word(4, 3)] << 32
                | m_128[index_word(4, 2)];
        }
    }

    if (m_128[index_word(4, 1)] || m_128[index_word(4, 0)])
        m |= 1;
    return _mesa_roundtozero_f64(s, e - 1, m);
}


/**
 * \brief Calculate a * b + c but rounding to zero.
 *
 * Notice that this mainly differs from the original Berkeley SoftFloat 3e
 * implementation in that we don't really treat NaNs, Zeroes nor the
 * signalling flags. Any NaN is good for us and the sign of the Zero is not
 * important.
 *
 * From f32_mulAdd()
 */
float
_mesa_float_fma_rtz(float a, float b, float c)
{
    const fi_type a_fi = {a};
    uint32_t a_flt_m = a_fi.u & 0x07fffff;
    uint32_t a_flt_e = (a_fi.u >> 23) & 0xff;
    uint32_t a_flt_s = (a_fi.u >> 31) & 0x1;
    const fi_type b_fi = {b};
    uint32_t b_flt_m = b_fi.u & 0x07fffff;
    uint32_t b_flt_e = (b_fi.u >> 23) & 0xff;
    uint32_t b_flt_s = (b_fi.u >> 31) & 0x1;
    const fi_type c_fi = {c};
    uint32_t c_flt_m = c_fi.u & 0x07fffff;
    uint32_t c_flt_e = (c_fi.u >> 23) & 0xff;
    uint32_t c_flt_s = (c_fi.u >> 31) & 0x1;
    int32_t s, e, m = 0;

    c_flt_s ^= 0;
    s = a_flt_s ^ b_flt_s ^ 0;

    if (a_flt_e == 0xff) {
        if (a_flt_m != 0) {
            /* 'a' is a NaN, return NaN */
            return a;
        } else if (b_flt_e == 0xff && b_flt_m != 0) {
            /* 'b' is a NaN, return NaN */
            return b;
        } else if (c_flt_e == 0xff && c_flt_m != 0) {
            /* 'c' is a NaN, return NaN */
            return c;
        }

        if (!(b_flt_e | b_flt_m)) {
            /* Inf * 0 + y = NaN */
            fi_type result;
            e = 0xff;
            result.u = (s << 31) + (e << 23) + 0x1;
            return result.f;
        }

        if ((c_flt_e == 0xff && c_flt_m == 0) && (s != c_flt_s)) {
            /* Inf * x - Inf = NaN */
            fi_type result;
            e = 0xff;
            result.u = (s << 31) + (e << 23) + 0x1;
            return result.f;
        }

        /* Inf * x + y = Inf */
        fi_type result;
        e = 0xff;
        result.u = (s << 31) + (e << 23) + 0;
        return result.f;
    }

    if (b_flt_e == 0xff) {
        if (b_flt_m != 0) {
            /* 'b' is a NaN, return NaN */
            return b;
        } else if (c_flt_e == 0xff && c_flt_m != 0) {
            /* 'c' is a NaN, return NaN */
            return c;
        }

        if (!(a_flt_e | a_flt_m)) {
            /* 0 * Inf + y = NaN */
            fi_type result;
            e = 0xff;
            result.u = (s << 31) + (e << 23) + 0x1;
            return result.f;
        }

        if ((c_flt_e == 0xff && c_flt_m == 0) && (s != c_flt_s)) {
            /* x * Inf - Inf = NaN */
            fi_type result;
            e = 0xff;
            result.u = (s << 31) + (e << 23) + 0x1;
            return result.f;
        }

        /* x * Inf + y = Inf */
        fi_type result;
        e = 0xff;
        result.u = (s << 31) + (e << 23) + 0;
        return result.f;
    }

    if (c_flt_e == 0xff) {
        if (c_flt_m != 0) {
            /* 'c' is a NaN, return NaN */
            return c;
        }

        /* x * y + Inf = Inf */
        return c;
    }

    if (a_flt_e == 0) {
        if (a_flt_m == 0) {
            /* 'a' is zero, return 'c' */
            return c;
        }
        _mesa_norm_subnormal_mantissa_f32(a_flt_m , &a_flt_e, &a_flt_m);
    }

    if (b_flt_e == 0) {
        if (b_flt_m == 0) {
            /* 'b' is zero, return 'c' */
            return c;
        }
        _mesa_norm_subnormal_mantissa_f32(b_flt_m , &b_flt_e, &b_flt_m);
    }

    e = a_flt_e + b_flt_e - 0x7e;
    a_flt_m = (a_flt_m | 0x00800000) << 7;
    b_flt_m = (b_flt_m | 0x00800000) << 7;

    uint64_t m_64 = (uint64_t) a_flt_m * b_flt_m;
    if (m_64 < 0x2000000000000000) {
        --e;
        m_64 <<= 1;
    }

    if (c_flt_e == 0) {
        if (c_flt_m == 0) {
            /* 'c' is zero, return 'a * b' */
            m = _mesa_short_shift_right_jam64(m_64, 31);
            return _mesa_round_f32(s, e - 1, m, true);
        }
        _mesa_norm_subnormal_mantissa_f32(c_flt_m , &c_flt_e, &c_flt_m);
    }
    c_flt_m = (c_flt_m | 0x00800000) << 6;

    int16_t exp_diff = e - c_flt_e;
    if (s == c_flt_s) {
        if (exp_diff <= 0) {
            e = c_flt_e;
            m = c_flt_m + _mesa_shift_right_jam64(m_64, 32 - exp_diff);
        } else {
            m_64 += _mesa_shift_right_jam64((uint64_t) c_flt_m << 32, exp_diff);
            m = _mesa_short_shift_right_jam64(m_64, 32);
        }
        if (m < 0x40000000) {
            --e;
            m <<= 1;
        }
    } else {
        uint64_t c_flt_m_64 = (uint64_t) c_flt_m << 32;
        if (exp_diff < 0) {
            s = c_flt_s;
            e = c_flt_e;
            m_64 = c_flt_m_64 - _mesa_shift_right_jam64(m_64, -exp_diff);
        } else if (!exp_diff) {
            m_64 -= c_flt_m_64;
            if (!m_64) {
                /* Return zero */
                fi_type result;
                result.u = (s << 31) + 0;
                return result.f;
            }
            if (m_64 & 0x8000000000000000) {
                s = !s;
                m_64 = -m_64;
            }
        } else {
            m_64 -= _mesa_shift_right_jam64(c_flt_m_64, exp_diff);
        }
        int8_t shift_dist = _mesa_count_leading_zeros64(m_64) - 1;
        e -= shift_dist;
        shift_dist -= 32;
        if (shift_dist < 0) {
            m = _mesa_short_shift_right_jam64(m_64, -shift_dist);
        } else {
            m = (uint32_t) m_64 << shift_dist;
        }
    }

    return _mesa_round_f32(s, e, m, true);
}


/**
 * \brief Converts from 64bits to 32bits float and rounds according to
 * instructed.
 *
 * From f64_to_f32()
 */
float
_mesa_double_to_f32(double val, bool rtz)
{
    const di_type di = {val};
    uint64_t flt_m = di.u & 0x0fffffffffffff;
    uint64_t flt_e = (di.u >> 52) & 0x7ff;
    uint64_t flt_s = (di.u >> 63) & 0x1;
    int32_t s, e, m = 0;

    s = flt_s;

    if (flt_e == 0x7ff) {
        if (flt_m != 0) {
            /* 'val' is a NaN, return NaN */
            fi_type result;
            e = 0xff;
            m = 0x1;
            result.u = (s << 31) + (e << 23) + m;
            return result.f;
        }

        /* 'val' is Inf, return Inf */
        fi_type result;
        e = 0xff;
        result.u = (s << 31) + (e << 23) + m;
        return result.f;
    }

    if (!(flt_e | flt_m)) {
        /* 'val' is zero, return zero */
        fi_type result;
        e = 0;
        result.u = (s << 31) + (e << 23) + m;
        return result.f;
    }

    m = _mesa_short_shift_right_jam64(flt_m, 22);
    if ( ! (flt_e | m) ) {
        /* 'val' is denorm, return zero */
        fi_type result;
        e = 0;
        result.u = (s << 31) + (e << 23) + m;
        return result.f;
    }

    return _mesa_round_f32(s, flt_e - 0x381, m | 0x40000000, rtz);
}


/**
 * \brief Converts from 32bits to 16bits float and rounds the result to zero.
 *
 * From f32_to_f16()
 */
uint16_t
_mesa_float_to_half_rtz(float val)
{
    const fi_type fi = {val};
    const uint32_t flt_m = fi.u & 0x7fffff;
    const uint32_t flt_e = (fi.u >> 23) & 0xff;
    const uint32_t flt_s = (fi.u >> 31) & 0x1;
    int16_t s, e, m = 0;

    s = flt_s;

    if (flt_e == 0xff) {
        if (flt_m != 0) {
            /* 'val' is a NaN, return NaN */
            e = 0x1f;
            m = 0x1;
            return (s << 15) + (e << 10) + m;
        }

        /* 'val' is Inf, return Inf */
        e = 0x1f;
        return (s << 15) + (e << 10) + m;
    }

    if (!(flt_e | flt_m)) {
        /* 'val' is zero, return zero */
        e = 0;
        return (s << 15) + (e << 10) + m;
    }

    m = flt_m >> 9 | ((flt_m & 0x1ff) != 0);
    if ( ! (flt_e | m) ) {
        /* 'val' is denorm, return zero */
        e = 0;
        return (s << 15) + (e << 10) + m;
    }

    return _mesa_roundtozero_f16(s, flt_e - 0x71, m | 0x4000);
}