aboutsummaryrefslogtreecommitdiff
path: root/libgcc/config/libbid/bid128_add.c
blob: 79bf9e55c6452480f2a222e43ed61869ef1d915d (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
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
/* Copyright (C) 2007  Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.

In addition to the permissions in the GNU General Public License, the
Free Software Foundation gives you unlimited permission to link the
compiled version of this file into combinations with other programs,
and to distribute those combinations without any restriction coming
from the use of this file.  (The General Public License restrictions
do apply in other respects; for example, they cover modification of
the file, and distribution when not linked into a combine
executable.)

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING.  If not, write to the Free
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.  */

/*****************************************************************************
 *  BID128 add
 ****************************************************************************/

#include "bid_internal.h"

#if DECIMAL_CALL_BY_REFERENCE
void
__bid128_add (UINT128 * pres, UINT128 * px,
            UINT128 *
            py _RND_MODE_PARAM _EXC_FLAGS_PARAM _EXC_MASKS_PARAM
            _EXC_INFO_PARAM) {
  UINT128 x = *px, y = *py;
#if !DECIMAL_GLOBAL_ROUNDING
  unsigned int rnd_mode = *prnd_mode;
#endif
#else
UINT128
__bid128_add (UINT128 x,
            UINT128 y _RND_MODE_PARAM _EXC_FLAGS_PARAM _EXC_MASKS_PARAM
            _EXC_INFO_PARAM) {
#endif

  UINT128 res;
  UINT64 x_sign, y_sign, tmp_sign;
  UINT64 x_exp, y_exp, tmp_exp; // e1 = x_exp, e2 = y_exp
  UINT64 C1_hi, C2_hi, tmp_signif_hi;
  UINT64 C1_lo, C2_lo, tmp_signif_lo;
  // Note: C1.w[1], C1.w[0] represent C1_hi, C1_lo (all are UINT64)
  // Note: C2.w[1], C2.w[0] represent C2_hi, C2_lo (all are UINT64)
  UINT64 tmp64, tmp64A, tmp64B;
  BID_UI64DOUBLE tmp1, tmp2;
  int x_nr_bits, y_nr_bits;
  int q1, q2, delta, scale, x1, ind, shift, tmp_inexact = 0;
  UINT64 halfulp64;
  UINT128 halfulp128;
  UINT128 C1, C2;
  UINT128 __bid_ten2m1;
  UINT128 highf2star; // top 128 bits in f2*; low 128 bits in R256[1], R256[0]
  UINT256 P256, Q256, R256;
  int is_inexact = 0, is_midpoint_lt_even = 0, is_midpoint_gt_even = 0;
  int is_inexact_lt_midpoint = 0, is_inexact_gt_midpoint = 0;
  int second_pass = 0;

  // check for NaN or Infinity
  if (((x.w[1] & MASK_SPECIAL) == MASK_SPECIAL)
      || ((y.w[1] & MASK_SPECIAL) == MASK_SPECIAL)) {
    // x is special or y is special

    if ((x.w[1] & MASK_NAN) == MASK_NAN) { // x is NAN
      if ((x.w[1] & MASK_SNAN) == MASK_SNAN) { // x is SNAN
        // set invalid flag
        *pfpsf |= INVALID_EXCEPTION;
        // return quiet (x)
        res.w[1] = x.w[1] & 0xfdffffffffffffffull;
        res.w[0] = x.w[0];
      } else { // x is QNaN
        if ((y.w[1] & MASK_SNAN) == MASK_SNAN) { // y is SNAN
          // set invalid flag
          *pfpsf |= INVALID_EXCEPTION;
        }
        // return x
        res.w[1] = x.w[1];
        res.w[0] = x.w[0];
      }
      BID_RETURN (res);
    } else if ((y.w[1] & MASK_NAN) == MASK_NAN) { // y is NAN
      if ((y.w[1] & MASK_SNAN) == MASK_SNAN) { // y is SNAN
        // set invalid flag
        *pfpsf |= INVALID_EXCEPTION;
        // return quiet (y)
        res.w[1] = y.w[1] & 0xfdffffffffffffffull;
        res.w[0] = y.w[0];
      } else { // y is QNaN
        // return y
        res.w[1] = y.w[1];
        res.w[0] = y.w[0];
      }
      BID_RETURN (res);
    } else { // neither x not y is NaN; at least one is infinity
      if ((x.w[1] & MASK_ANY_INF) == MASK_INF) { // x is infinity
        if ((y.w[1] & MASK_ANY_INF) == MASK_INF) { // y is infinity
          // if same sign, return either of them
          if ((x.w[1] & MASK_SIGN) == (y.w[1] & MASK_SIGN)) {
            res.w[1] = x.w[1];
            res.w[0] = x.w[0];
          } else { // x and y are infinities of opposite signs
            // set invalid flag
            *pfpsf |= INVALID_EXCEPTION;
            // return QNaN Indefinite
            res.w[1] = 0x7c00000000000000ull;
            res.w[0] = 0x0000000000000000ull;
          }
        } else { // y is 0 or finite
          // return x
          res.w[1] = x.w[1];
          res.w[0] = x.w[0];
        }
      } else { // x is not NaN or infinity, so y must be infinity
        res.w[1] = y.w[1];
        res.w[0] = y.w[0];
      }
      BID_RETURN (res);
    }
  }
  // unpack the arguments
  // unpack x 
  x_sign = x.w[1] & MASK_SIGN; // 0 for positive, MASK_SIGN for negative
  x_exp = x.w[1] & MASK_EXP; // biased and shifted left 49 bit positions
  C1_hi = x.w[1] & MASK_COEFF;
  C1_lo = x.w[0];
  // unpack y 
  y_sign = y.w[1] & MASK_SIGN; // 0 for positive, MASK_SIGN for negative
  y_exp = y.w[1] & MASK_EXP; // biased and shifted left 49 bit positions
  C2_hi = y.w[1] & MASK_COEFF;
  C2_lo = y.w[0];

  // test for non-canonical values:
  // - values whose encoding begins with x00, x01, or x10 and whose 
  //   coefficient is larger than 10^34 -1, or
  // - values whose encoding begins with x1100, x1101, x1110 (if NaNs 
  //   and infinitis were eliminated already this test is reduced to 
  //   checking for x10x) 

  // test for non-canonical values of the argument x
  if ((((C1_hi > 0x0001ed09bead87c0ull)
       || ((C1_hi == 0x0001ed09bead87c0ull)
           && (C1_lo > 0x378d8e63ffffffffull)))
      && ((x.w[1] & 0x6000000000000000ull) != 0x6000000000000000ull))
      || ((x.w[1] & 0x6000000000000000ull) == 0x6000000000000000ull)) {
    // check for the case where the exponent is shifted right by 2 bits!
    if ((x.w[1] & 0x6000000000000000ull) == 0x6000000000000000ull) {
      x_exp = (x.w[1] << 2) & MASK_EXP; // same position as for G[0]G[1] != 11
    }
    x.w[1] = x.w[1] & 0x8000000000000000ull; // preserve the sign bit
    x.w[0] = 0;
    C1_hi = 0;
    C1_lo = 0;
  }
  // test for non-canonical values of the argument y
  if ((((C2_hi > 0x0001ed09bead87c0ull)
       || ((C2_hi == 0x0001ed09bead87c0ull)
           && (C2_lo > 0x378d8e63ffffffffull)))
      && ((y.w[1] & 0x6000000000000000ull) != 0x6000000000000000ull))
      || ((y.w[1] & 0x6000000000000000ull) == 0x6000000000000000ull)) {
    // check for the case where the exponent is shifted right by 2 bits!
    if ((y.w[1] & 0x6000000000000000ull) == 0x6000000000000000ull) {
      y_exp = (y.w[1] << 2) & MASK_EXP; // same position as for G[0]G[1] != 11
    }
    y.w[1] = y.w[1] & 0x8000000000000000ull; // preserve the sign bit
    y.w[0] = 0;
    C2_hi = 0;
    C2_lo = 0;
  }

  if ((C1_hi == 0x0ull) && (C1_lo == 0x0ull)) {
    // x is 0 and y is not special
    // if y is 0 return 0 with the smaller exponent
    if ((C2_hi == 0x0ull) && (C2_lo == 0x0ull)) {
      if (x_exp < y_exp)
        res.w[1] = x_exp;
      else
        res.w[1] = y_exp;
      if (x_sign && y_sign)
        res.w[1] = res.w[1] | x_sign; // both negative
      else if (rnd_mode == ROUNDING_DOWN && x_sign != y_sign)
        res.w[1] = res.w[1] | 0x8000000000000000ull; // -0
      // else; // res = +0
      res.w[0] = 0;
    } else {
      // for 0 + y return y, with the preferred exponent
      if (y_exp <= x_exp) {
        res.w[1] = y.w[1];
        res.w[0] = y.w[0];
      } else { // if y_exp > x_exp
        // return (C2 * 10^scale) * 10^(y_exp - scale)
        // where scale = min (P34-q2, y_exp-x_exp)
        // determine q2 = nr. of decimal digits in y
        //  determine first the nr. of bits in y (y_nr_bits)

        if (C2_hi == 0) { // y_bits is the nr. of bits in C2_lo
          if (C2_lo >= 0x0020000000000000ull) { // y >= 2^53
            // split the 64-bit value in two 32-bit halves to avoid 
            // rounding errors
            if (C2_lo >= 0x0000000100000000ull) { // y >= 2^32
              tmp2.d = (double) (C2_lo >> 32); // exact conversion
              ///tmp2_i64 = *(UINT64 *) & tmp2_d;
              y_nr_bits =
                32 +
                ((((unsigned int) (tmp2.ui64 >> 52)) & 0x7ff) - 0x3ff);
            } else { // y < 2^32
              tmp2.d = (double) (C2_lo); // exact conversion
              ///tmp2_i64 = *(UINT64 *) & tmp2_d;
              y_nr_bits =
                ((((unsigned int) (tmp2.ui64 >> 52)) & 0x7ff) - 0x3ff);
            }
          } else { // if y < 2^53
            tmp2.d = (double) C2_lo; // exact conversion
            ///tmp2_i64 = *(UINT64 *) & tmp2_d;
            y_nr_bits =
              ((((unsigned int) (tmp2.ui64 >> 52)) & 0x7ff) - 0x3ff);
          }
        } else { // C2_hi != 0 => nr. bits = 64 + nr_bits (C2_hi)
          tmp2.d = (double) C2_hi; // exact conversion
          ///tmp2_i64 = *(UINT64 *) & tmp2_d;
          y_nr_bits =
            64 + ((((unsigned int) (tmp2.ui64 >> 52)) & 0x7ff) - 0x3ff);
        }
        q2 = __bid_nr_digits[y_nr_bits].digits;
        if (q2 == 0) {
          q2 = __bid_nr_digits[y_nr_bits].digits1;
          if (C2_hi > __bid_nr_digits[y_nr_bits].threshold_hi
              || (C2_hi == __bid_nr_digits[y_nr_bits].threshold_hi
              && C2_lo >= __bid_nr_digits[y_nr_bits].threshold_lo))
            q2++;
        }
        // return (C2 * 10^scale) * 10^(y_exp - scale)
        // where scale = min (P34-q2, y_exp-x_exp)
        scale = P34 - q2;
        ind = (y_exp - x_exp) >> 49;
        if (ind < scale)
          scale = ind;
        if (scale == 0) {
          res.w[1] = y.w[1];
          res.w[0] = y.w[0];
        } else if (q2 <= 19) { // y fits in 64 bits 
          if (scale <= 19) { // 10^scale fits in 64 bits
            // 64 x 64 C2_lo * __bid_ten2k64[scale]
            __mul_64x64_to_128MACH (res, C2_lo, __bid_ten2k64[scale]);
          } else { // 10^scale fits in 128 bits
            // 64 x 128 C2_lo * __bid_ten2k128[scale - 20]
            __mul_128x64_to_128 (res, C2_lo, __bid_ten2k128[scale - 20]);
          }
        } else { // y fits in 128 bits, but 10^scale must fit in 64 bits 
          // 64 x 128 __bid_ten2k64[scale] * C2
          C2.w[1] = C2_hi;
          C2.w[0] = C2_lo;
          __mul_128x64_to_128 (res, __bid_ten2k64[scale], C2);
        }
        // subtract scale from the exponent
        y_exp = y_exp - ((UINT64) scale << 49);
        res.w[1] = res.w[1] | y_sign | y_exp;
      }
    }
    BID_RETURN (res);
  } else if ((C2_hi == 0x0ull) && (C2_lo == 0x0ull)) {
    // y is 0 and x is not special, and not zero
    // for x + 0 return x, with the preferred exponent
    if (x_exp <= y_exp) {
      res.w[1] = x.w[1];
      res.w[0] = x.w[0];
    } else { // if x_exp > y_exp
      // return (C1 * 10^scale) * 10^(x_exp - scale)
      // where scale = min (P34-q1, x_exp-y_exp)
      // determine q1 = nr. of decimal digits in x
      //  determine first the nr. of bits in x
      if (C1_hi == 0) { // x_bits is the nr. of bits in C1_lo
        if (C1_lo >= 0x0020000000000000ull) { // x >= 2^53
          // split the 64-bit value in two 32-bit halves to avoid 
          // rounding errors
          if (C1_lo >= 0x0000000100000000ull) { // x >= 2^32
            tmp1.d = (double) (C1_lo >> 32); // exact conversion
            x_nr_bits =
              32 + ((((unsigned int) (tmp1.ui64 >> 52)) & 0x7ff) -
                    0x3ff);
          } else { // x < 2^32
            tmp1.d = (double) (C1_lo); // exact conversion
            x_nr_bits =
              ((((unsigned int) (tmp1.ui64 >> 52)) & 0x7ff) - 0x3ff);
          }
        } else { // if x < 2^53
          tmp1.d = (double) C1_lo; // exact conversion
          x_nr_bits =
            ((((unsigned int) (tmp1.ui64 >> 52)) & 0x7ff) - 0x3ff);
        }
      } else { // C1_hi != 0 => nr. bits = 64 + nr_bits (C1_hi)
        tmp1.d = (double) C1_hi; // exact conversion
        x_nr_bits =
          64 + ((((unsigned int) (tmp1.ui64 >> 52)) & 0x7ff) - 0x3ff);
      }
      q1 = __bid_nr_digits[x_nr_bits].digits;
      if (q1 == 0) {
        q1 = __bid_nr_digits[x_nr_bits].digits1;
        if (C1_hi > __bid_nr_digits[x_nr_bits].threshold_hi
            || (C1_hi == __bid_nr_digits[x_nr_bits].threshold_hi
            && C1_lo >= __bid_nr_digits[x_nr_bits].threshold_lo))
          q1++;
      }
      // return (C1 * 10^scale) * 10^(x_exp - scale)
      // where scale = min (P34-q1, x_exp-y_exp)  
      scale = P34 - q1;
      ind = (x_exp - y_exp) >> 49;
      if (ind < scale)
        scale = ind;
      if (scale == 0) {
        res.w[1] = x.w[1];
        res.w[0] = x.w[0];
      } else if (q1 <= 19) { // x fits in 64 bits  
        if (scale <= 19) { // 10^scale fits in 64 bits
          // 64 x 64 C1_lo * __bid_ten2k64[scale] 
          __mul_64x64_to_128MACH (res, C1_lo, __bid_ten2k64[scale]);
        } else { // 10^scale fits in 128 bits
          // 64 x 128 C1_lo * __bid_ten2k128[scale - 20]
          __mul_128x64_to_128 (res, C1_lo, __bid_ten2k128[scale - 20]);
        }
      } else { // x fits in 128 bits, but 10^scale must fit in 64 bits
        // 64 x 128 __bid_ten2k64[scale] * C1
        C1.w[1] = C1_hi;
        C1.w[0] = C1_lo;
        __mul_128x64_to_128 (res, __bid_ten2k64[scale], C1);
      }
      // subtract scale from the exponent
      x_exp = x_exp - ((UINT64) scale << 49);
      res.w[1] = res.w[1] | x_sign | x_exp;
    }
    BID_RETURN (res);
  } else { // x and y are not canonical, not special, and are not zero
    // note that the result may still be zero, and then it has to have the
    // preferred exponent
    if (x_exp < y_exp) { // if exp_x < exp_y then swap x and y 
      tmp_sign = x_sign;
      tmp_exp = x_exp;
      tmp_signif_hi = C1_hi;
      tmp_signif_lo = C1_lo;
      x_sign = y_sign;
      x_exp = y_exp;
      C1_hi = C2_hi;
      C1_lo = C2_lo;
      y_sign = tmp_sign;
      y_exp = tmp_exp;
      C2_hi = tmp_signif_hi;
      C2_lo = tmp_signif_lo;
    }
    // q1 = nr. of decimal digits in x
    //  determine first the nr. of bits in x
    if (C1_hi == 0) { // x_bits is the nr. of bits in C1_lo
      if (C1_lo >= 0x0020000000000000ull) { // x >= 2^53
        //split the 64-bit value in two 32-bit halves to avoid rounding errors
        if (C1_lo >= 0x0000000100000000ull) { // x >= 2^32
          tmp1.d = (double) (C1_lo >> 32); // exact conversion
          x_nr_bits =
            32 + ((((unsigned int) (tmp1.ui64 >> 52)) & 0x7ff) - 0x3ff);
        } else { // x < 2^32
          tmp1.d = (double) (C1_lo); // exact conversion
          x_nr_bits =
            ((((unsigned int) (tmp1.ui64 >> 52)) & 0x7ff) - 0x3ff);
        }
      } else { // if x < 2^53
        tmp1.d = (double) C1_lo; // exact conversion
        x_nr_bits =
          ((((unsigned int) (tmp1.ui64 >> 52)) & 0x7ff) - 0x3ff);
      }
    } else { // C1_hi != 0 => nr. bits = 64 + nr_bits (C1_hi)
      tmp1.d = (double) C1_hi; // exact conversion
      x_nr_bits =
        64 + ((((unsigned int) (tmp1.ui64 >> 52)) & 0x7ff) - 0x3ff);
    }

    q1 = __bid_nr_digits[x_nr_bits].digits;
    if (q1 == 0) {
      q1 = __bid_nr_digits[x_nr_bits].digits1;
      if (C1_hi > __bid_nr_digits[x_nr_bits].threshold_hi
          || (C1_hi == __bid_nr_digits[x_nr_bits].threshold_hi
          && C1_lo >= __bid_nr_digits[x_nr_bits].threshold_lo))
        q1++;
    }
    // q2 = nr. of decimal digits in y
    //  determine first the nr. of bits in y (y_nr_bits)
    if (C2_hi == 0) { // y_bits is the nr. of bits in C2_lo
      if (C2_lo >= 0x0020000000000000ull) { // y >= 2^53
        //split the 64-bit value in two 32-bit halves to avoid rounding errors
        if (C2_lo >= 0x0000000100000000ull) { // y >= 2^32
          tmp2.d = (double) (C2_lo >> 32); // exact conversion
          ///tmp2_i64 = *(UINT64 *) & tmp2_d;
          y_nr_bits =
            32 + ((((unsigned int) (tmp2.ui64 >> 52)) & 0x7ff) - 0x3ff);
        } else { // y < 2^32
          tmp2.d = (double) (C2_lo); // exact conversion
          ///tmp2_i64 = *(UINT64 *) & tmp2_d;
          y_nr_bits =
            ((((unsigned int) (tmp2.ui64 >> 52)) & 0x7ff) - 0x3ff);
        }
      } else { // if y < 2^53
        tmp2.d = (double) C2_lo; // exact conversion
        ///tmp2_i64 = *(UINT64 *) & tmp2_d;
        y_nr_bits =
          ((((unsigned int) (tmp2.ui64 >> 52)) & 0x7ff) - 0x3ff);
      }
    } else { // C2_hi != 0 => nr. bits = 64 + nr_bits (C2_hi)
      tmp2.d = (double) C2_hi; // exact conversion
      ///tmp2_i64 = *(UINT64 *) & tmp2_d;
      y_nr_bits =
        64 + ((((unsigned int) (tmp2.ui64 >> 52)) & 0x7ff) - 0x3ff);
    }

    q2 = __bid_nr_digits[y_nr_bits].digits;
    if (q2 == 0) {
      q2 = __bid_nr_digits[y_nr_bits].digits1;
      if (C2_hi > __bid_nr_digits[y_nr_bits].threshold_hi
          || (C2_hi == __bid_nr_digits[y_nr_bits].threshold_hi
          && C2_lo >= __bid_nr_digits[y_nr_bits].threshold_lo))
        q2++;
    }

    delta = q1 + (int) (x_exp >> 49) - q2 - (int) (y_exp >> 49);

    if (delta >= P34) {
      // round the result directly because 0 < C2 < ulp (C1 * 10^(x_exp-e2))
      // n = C1 * 10^e1 or n = C1 +/- 10^(q1-P34)) * 10^e1
      // the result is inexact; the preferred exponent is the least possible

      if (delta >= P34 + 1) {
        // for RN the result is the operand with the larger magnitude,
        // possibly scaled up by 10^(P34-q1)
        // an overflow cannot occur in this case (rounding to nearest)
        if (q1 < P34) { // scale C1 up by 10^(P34-q1)
          // Note: because delta >= P34+1 it is certain that 
          //     x_exp - ((UINT64)scale << 49) will stay above e_min
          scale = P34 - q1;
          if (q1 <= 19) { // C1 fits in 64 bits
            // 1 <= q1 <= 19 => 15 <= scale <= 33
            if (scale <= 19) { // 10^scale fits in 64 bits
              __mul_64x64_to_128MACH (C1, __bid_ten2k64[scale], C1_lo);
            } else { // if 20 <= scale <= 33
              // C1 * 10^scale = (C1 * 10^(scale-19)) * 10^19 where
              // (C1 * 10^(scale-19)) fits in 64 bits
              C1_lo = C1_lo * __bid_ten2k64[scale - 19];
              __mul_64x64_to_128MACH (C1, __bid_ten2k64[19], C1_lo);
            }
          } else { //if 20 <= q1 <= 33=P34-1 then C1 fits only in 128 bits
            // => 1 <= P34 - q1 <= 14 so 10^(P34-q1) fits in 64 bits
            C1.w[1] = C1_hi;
            C1.w[0] = C1_lo;
            // C1 = __bid_ten2k64[P34 - q1] * C1
            __mul_128x64_to_128 (C1, __bid_ten2k64[P34 - q1], C1);
          }
          x_exp = x_exp - ((UINT64) scale << 49);
          C1_hi = C1.w[1];
          C1_lo = C1.w[0];
        }
        // some special cases arise: if delta = P34 + 1 and C1 = 10^(P34-1) 
        // (after scaling) and x_sign != y_sign and C2 > 5*10^(q2-1) => 
        // subtract 1 ulp
        // Note: do this only for rounding to nearest; for other rounding 
        // modes the correction will be applied next
        if ((rnd_mode == ROUNDING_TO_NEAREST
             || rnd_mode == ROUNDING_TIES_AWAY) && delta == (P34 + 1)
            && C1_hi == 0x0000314dc6448d93ull
            && C1_lo == 0x38c15b0a00000000ull && x_sign != y_sign
            && ((q2 <= 19 && C2_lo > __bid_midpoint64[q2 - 1]) || (q2 >= 20
                && (C2_hi > __bid_midpoint128[q2 - 20].w[1]
                    || (C2_hi == __bid_midpoint128[q2 - 20].w[1]
                    && C2_lo > __bid_midpoint128[q2 - 20].w[0]))))) {
          // C1 = 10^34 - 1 and decrement x_exp by 1 (no underflow possible)
          C1_hi = 0x0001ed09bead87c0ull;
          C1_lo = 0x378d8e63ffffffffull;
          x_exp = x_exp - EXP_P1;
        }
        if (rnd_mode != ROUNDING_TO_NEAREST) {
          if ((rnd_mode == ROUNDING_DOWN && x_sign && y_sign)
              || (rnd_mode == ROUNDING_UP && !x_sign && !y_sign)) {
            // add 1 ulp and then check for overflow
            C1_lo = C1_lo + 1;
            if (C1_lo == 0) { // rounding overflow in the low 64 bits
              C1_hi = C1_hi + 1;
            }
            if (C1_hi == 0x0001ed09bead87c0ull
                && C1_lo == 0x378d8e6400000000ull) {
              // C1 = 10^34 => rounding overflow
              C1_hi = 0x0000314dc6448d93ull;
              C1_lo = 0x38c15b0a00000000ull; // 10^33
              x_exp = x_exp + EXP_P1;
              if (x_exp == EXP_MAX_P1) { // overflow
                C1_hi = 0x7800000000000000ull; // +inf
                C1_lo = 0x0ull;
                x_exp = 0; // x_sign is preserved
                // set overflow flag (the inexact flag was set too)
                *pfpsf |= OVERFLOW_EXCEPTION;
              }
            }
          } else if ((rnd_mode == ROUNDING_DOWN && !x_sign && y_sign)
                     || (rnd_mode == ROUNDING_UP && x_sign && !y_sign)
                     || (rnd_mode == ROUNDING_TO_ZERO && x_sign != y_sign)) {
            // subtract 1 ulp from C1
            // Note: because delta >= P34 + 1 the result cannot be zero
            C1_lo = C1_lo - 1;
            if (C1_lo == 0xffffffffffffffffull)
              C1_hi = C1_hi - 1;
            // if the coefficient is 10^33 - 1 then make it 10^34 - 1 and 
            // decrease the exponent by 1 (because delta >= P34 + 1 the
            // exponent will not become less than e_min)
            // 10^33 - 1 = 0x0000314dc6448d9338c15b09ffffffff
            // 10^34 - 1 = 0x0001ed09bead87c0378d8e63ffffffff
            if (C1_hi == 0x0000314dc6448d93ull
                && C1_lo == 0x38c15b09ffffffffull) {
              // make C1 = 10^34  - 1
              C1_hi = 0x0001ed09bead87c0ull;
              C1_lo = 0x378d8e63ffffffffull;
              x_exp = x_exp - EXP_P1;
            }
          } else {
            ; // the result is already correct
          }
        }
        // set the inexact flag
        *pfpsf |= INEXACT_EXCEPTION;
        // assemble the result
        res.w[1] = x_sign | x_exp | C1_hi;
        res.w[0] = C1_lo;
      } else { // delta = P34 
        // in most cases, the smaller operand may be < or = or > 1/2 ulp of the
        // larger operand
        // however, the case C1 = 10^(q1-1) and x_sign != y_sign is special due
        // to accuracy loss after subtraction, and will be treated separately
        if (x_sign == y_sign || (q1 <= 20
            && (C1_hi != 0 || C1_lo != __bid_ten2k64[q1 - 1])) || (q1 >= 21
            && (C1_hi != __bid_ten2k128[q1 - 21].w[1]
                || C1_lo != __bid_ten2k128[q1 - 21].w[0]))) {
          // if x_sign == y_sign or C1 != 10^(q1-1)
          // compare C2 with 1/2 ulp = 5 * 10^(q2-1), the latter read from table
          // Note: cases q1<=19 and q1>=20 can be coalesced at some latency cost
          if (q2 <= 19) { // C2 and 5*10^(q2-1) both fit in 64 bits
            halfulp64 = __bid_midpoint64[q2 - 1]; // 5 * 10^(q2-1)
            if (C2_lo < halfulp64) { // n2 < 1/2 ulp (n1)
              // for RN the result is the operand with the larger magnitude, 
              // possibly scaled up by 10^(P34-q1)
              // an overflow cannot occur in this case (rounding to nearest)
              if (q1 < P34) { // scale C1 up by 10^(P34-q1)
                // Note: because delta = P34 it is certain that
                //     x_exp - ((UINT64)scale << 49) will stay above e_min
                scale = P34 - q1;
                if (q1 <= 19) { // C1 fits in 64 bits
                  // 1 <= q1 <= 19 => 15 <= scale <= 33
                  if (scale <= 19) { // 10^scale fits in 64 bits
                    __mul_64x64_to_128MACH (C1, __bid_ten2k64[scale], C1_lo);
                  } else { // if 20 <= scale <= 33
                    // C1 * 10^scale = (C1 * 10^(scale-19)) * 10^19 where
                    // (C1 * 10^(scale-19)) fits in 64 bits
                    C1_lo = C1_lo * __bid_ten2k64[scale - 19];
                    __mul_64x64_to_128MACH (C1, __bid_ten2k64[19], C1_lo);
                  }
                } else { //if 20 <= q1 <= 33=P34-1 then C1 fits only in 128 bits
                  // => 1 <= P34 - q1 <= 14 so 10^(P34-q1) fits in 64 bits
                  C1.w[1] = C1_hi;
                  C1.w[0] = C1_lo;
                  // C1 = __bid_ten2k64[P34 - q1] * C1
                  __mul_128x64_to_128 (C1, __bid_ten2k64[P34 - q1], C1);
                }
                x_exp = x_exp - ((UINT64) scale << 49);
                C1_hi = C1.w[1];
                C1_lo = C1.w[0];
              }
              if (rnd_mode != ROUNDING_TO_NEAREST) {
                if ((rnd_mode == ROUNDING_DOWN && x_sign
                    && y_sign) || (rnd_mode == ROUNDING_UP
                    && !x_sign && !y_sign)) {
                  // add 1 ulp and then check for overflow
                  C1_lo = C1_lo + 1;
                  if (C1_lo == 0) { // rounding overflow in the low 64 bits
                    C1_hi = C1_hi + 1;
                  }
                  if (C1_hi == 0x0001ed09bead87c0ull
                      && C1_lo == 0x378d8e6400000000ull) {
                    // C1 = 10^34 => rounding overflow
                    C1_hi = 0x0000314dc6448d93ull;
                    C1_lo = 0x38c15b0a00000000ull; // 10^33
                    x_exp = x_exp + EXP_P1;
                    if (x_exp == EXP_MAX_P1) { // overflow
                      C1_hi = 0x7800000000000000ull; // +inf
                      C1_lo = 0x0ull;
                      x_exp = 0; // x_sign is preserved
                      // set overflow flag (the inexact flag was set too)
                      *pfpsf |= OVERFLOW_EXCEPTION;
                    }
                  }
                } else if ((rnd_mode == ROUNDING_DOWN && !x_sign && y_sign) || 
                    (rnd_mode == ROUNDING_UP && x_sign && !y_sign) || 
                    (rnd_mode == ROUNDING_TO_ZERO && x_sign != y_sign)) {
                  // subtract 1 ulp from C1
                  // Note: because delta >= P34 + 1 the result cannot be zero
                  C1_lo = C1_lo - 1;
                  if (C1_lo == 0xffffffffffffffffull)
                    C1_hi = C1_hi - 1;
                  // if the coefficient is 10^33-1 then make it 10^34-1 and 
                  // decrease the exponent by 1 (because delta >= P34 + 1 the
                  // exponent will not become less than e_min)
                  // 10^33 - 1 = 0x0000314dc6448d9338c15b09ffffffff
                  // 10^34 - 1 = 0x0001ed09bead87c0378d8e63ffffffff
                  if (C1_hi == 0x0000314dc6448d93ull
                      && C1_lo == 0x38c15b09ffffffffull) {
                    // make C1 = 10^34  - 1
                    C1_hi = 0x0001ed09bead87c0ull;
                    C1_lo = 0x378d8e63ffffffffull;
                    x_exp = x_exp - EXP_P1;
                  }
                } else {
                  ; // the result is already correct
                }
              }
              // set the inexact flag
              *pfpsf |= INEXACT_EXCEPTION;
              // assemble the result
              res.w[1] = x_sign | x_exp | C1_hi;
              res.w[0] = C1_lo;
            } else if ((C2_lo == halfulp64)
                       && (q1 < P34 || ((C1_lo & 0x1) == 0))) {
              // n2 = 1/2 ulp (n1) and C1 is even
              // the result is the operand with the larger magnitude,
              // possibly scaled up by 10^(P34-q1)
              // an overflow cannot occur in this case (rounding to nearest)
              if (q1 < P34) { // scale C1 up by 10^(P34-q1)
                // Note: because delta = P34 it is certain that
                //     x_exp - ((UINT64)scale << 49) will stay above e_min
                scale = P34 - q1;
                if (q1 <= 19) { // C1 fits in 64 bits
                  // 1 <= q1 <= 19 => 15 <= scale <= 33
                  if (scale <= 19) { // 10^scale fits in 64 bits
                    __mul_64x64_to_128MACH (C1, __bid_ten2k64[scale], C1_lo);
                  } else { // if 20 <= scale <= 33 
                    // C1 * 10^scale = (C1 * 10^(scale-19)) * 10^19 where
                    // (C1 * 10^(scale-19)) fits in 64 bits  
                    C1_lo = C1_lo * __bid_ten2k64[scale - 19];
                    __mul_64x64_to_128MACH (C1, __bid_ten2k64[19], C1_lo);
                  }
                } else { //if 20 <= q1 <= 33=P34-1 then C1 fits only in 128 bits
                  // => 1 <= P34 - q1 <= 14 so 10^(P34-q1) fits in 64 bits 
                  C1.w[1] = C1_hi;
                  C1.w[0] = C1_lo;
                  // C1 = __bid_ten2k64[P34 - q1] * C1 
                  __mul_128x64_to_128 (C1, __bid_ten2k64[P34 - q1], C1);
                }
                x_exp = x_exp - ((UINT64) scale << 49);
                C1_hi = C1.w[1];
                C1_lo = C1.w[0];
              }
              if ((rnd_mode == ROUNDING_TO_NEAREST
                  && x_sign == y_sign && (C1_lo & 0x01))
                  || (rnd_mode == ROUNDING_TIES_AWAY
                  && x_sign == y_sign) || (rnd_mode == ROUNDING_UP
                  && !x_sign && !y_sign)
                  || (rnd_mode == ROUNDING_DOWN && x_sign && y_sign)) {
                // add 1 ulp and then check for overflow
                C1_lo = C1_lo + 1;
                if (C1_lo == 0) { // rounding overflow in the low 64 bits
                  C1_hi = C1_hi + 1;
                }
                if (C1_hi == 0x0001ed09bead87c0ull
                    && C1_lo == 0x378d8e6400000000ull) {
                  // C1 = 10^34 => rounding overflow
                  C1_hi = 0x0000314dc6448d93ull;
                  C1_lo = 0x38c15b0a00000000ull; // 10^33
                  x_exp = x_exp + EXP_P1;
                  if (x_exp == EXP_MAX_P1) { // overflow
                    C1_hi = 0x7800000000000000ull; // +inf
                    C1_lo = 0x0ull;
                    x_exp = 0; // x_sign is preserved
                    // set overflow flag (the inexact flag was set too)
                    *pfpsf |= OVERFLOW_EXCEPTION;
                  }
                }
              } else if ((rnd_mode == ROUNDING_TO_NEAREST
                         && x_sign != y_sign && (C1_lo & 0x01))
                         || (rnd_mode == ROUNDING_DOWN && !x_sign
                         && y_sign) || (rnd_mode == ROUNDING_UP
                         && x_sign && !y_sign)
                         || (rnd_mode == ROUNDING_TO_ZERO
                         && x_sign != y_sign)) {
                // subtract 1 ulp from C1
                // Note: because delta >= P34 + 1 the result cannot be zero
                C1_lo = C1_lo - 1;
                if (C1_lo == 0xffffffffffffffffull)
                  C1_hi = C1_hi - 1;
                // if the coefficient is 10^33 - 1 then make it 10^34 - 1
                // and decrease the exponent by 1 (because delta >= P34 + 1
                // the exponent will not become less than e_min)
                // 10^33 - 1 = 0x0000314dc6448d9338c15b09ffffffff
                // 10^34 - 1 = 0x0001ed09bead87c0378d8e63ffffffff
                if (C1_hi == 0x0000314dc6448d93ull
                    && C1_lo == 0x38c15b09ffffffffull) {
                  // make C1 = 10^34  - 1
                  C1_hi = 0x0001ed09bead87c0ull;
                  C1_lo = 0x378d8e63ffffffffull;
                  x_exp = x_exp - EXP_P1;
                }
              } else {
                ; // the result is already correct
              }
              // set the inexact flag
              *pfpsf |= INEXACT_EXCEPTION;
              // assemble the result 
              res.w[1] = x_sign | x_exp | C1_hi;
              res.w[0] = C1_lo;
            } else { // if C2_lo > halfulp64 || 
              // (C2_lo == halfulp64 && q1 == P34 && ((C1_lo & 0x1) == 1)), i.e.
              // 1/2 ulp(n1) < n2 < 1 ulp(n1) or n2 = 1/2 ulp(n1) and C1 odd
              // res = x+1 ulp if n1*n2 > 0 and res = x-1 ulp if n1*n2 < 0
              if (q1 < P34) { // then 1 ulp = 10^(e1+q1-P34) < 10^e1
                // Note: if (q1 == P34) then 1 ulp = 10^(e1+q1-P34) = 10^e1
                // because q1 < P34 we must first replace C1 by 
                // C1 * 10^(P34-q1), and must decrease the exponent by 
                // (P34-q1) (it will still be at least e_min)
                scale = P34 - q1;
                if (q1 <= 19) { // C1 fits in 64 bits
                  // 1 <= q1 <= 19 => 15 <= scale <= 33
                  if (scale <= 19) { // 10^scale fits in 64 bits
                    __mul_64x64_to_128MACH (C1, __bid_ten2k64[scale], C1_lo);
                  } else { // if 20 <= scale <= 33
                    // C1 * 10^scale = (C1 * 10^(scale-19)) * 10^19 where
                    // (C1 * 10^(scale-19)) fits in 64 bits
                    C1_lo = C1_lo * __bid_ten2k64[scale - 19];
                    __mul_64x64_to_128MACH (C1, __bid_ten2k64[19], C1_lo);
                  }
                } else { //if 20 <= q1 <= 33=P34-1 then C1 fits only in 128 bits
                  // => 1 <= P34 - q1 <= 14 so 10^(P34-q1) fits in 64 bits
                  C1.w[1] = C1_hi;
                  C1.w[0] = C1_lo;
                  // C1 = __bid_ten2k64[P34 - q1] * C1
                  __mul_128x64_to_128 (C1, __bid_ten2k64[P34 - q1], C1);
                }
                x_exp = x_exp - ((UINT64) scale << 49);
                C1_hi = C1.w[1];
                C1_lo = C1.w[0];
                // check for rounding overflow
                if (C1_hi == 0x0001ed09bead87c0ull
                    && C1_lo == 0x378d8e6400000000ull) {
                  // C1 = 10^34 => rounding overflow 
                  C1_hi = 0x0000314dc6448d93ull;
                  C1_lo = 0x38c15b0a00000000ull; // 10^33
                  x_exp = x_exp + EXP_P1;
                }
              }
              if ((rnd_mode == ROUNDING_TO_NEAREST
                  && x_sign != y_sign)
                  || (rnd_mode == ROUNDING_TIES_AWAY
                  && x_sign != y_sign && C2_lo != halfulp64)
                  || (rnd_mode == ROUNDING_DOWN && !x_sign
                  && y_sign) || (rnd_mode == ROUNDING_UP && x_sign
                  && !y_sign) || (rnd_mode == ROUNDING_TO_ZERO
                  && x_sign != y_sign)) {
                // the result is x - 1
                // for RN n1 * n2 < 0; underflow not possible
                C1_lo = C1_lo - 1;
                if (C1_lo == 0xffffffffffffffffull)
                  C1_hi--;
                // check if we crossed into the lower decade
                if (C1_hi == 0x0000314dc6448d93ull && 
                    C1_lo == 0x38c15b09ffffffffull) { // 10^33 - 1
                  C1_hi = 0x0001ed09bead87c0ull; // 10^34 - 1
                  C1_lo = 0x378d8e63ffffffffull;
                  x_exp = x_exp - EXP_P1; // no underflow, because n1 >> n2
                }
              } else if ((rnd_mode == ROUNDING_TO_NEAREST
                         && x_sign == y_sign)
                         || (rnd_mode == ROUNDING_TIES_AWAY
                         && x_sign == y_sign)
                         || (rnd_mode == ROUNDING_DOWN && x_sign
                         && y_sign) || (rnd_mode == ROUNDING_UP
                         && !x_sign && !y_sign)) {
                // the result is x + 1
                // for RN x_sign = y_sign, i.e. n1*n2 > 0
                C1_lo = C1_lo + 1;
                if (C1_lo == 0) { // rounding overflow in the low 64 bits
                  C1_hi = C1_hi + 1;
                }
                if (C1_hi == 0x0001ed09bead87c0ull
                    && C1_lo == 0x378d8e6400000000ull) {
                  // C1 = 10^34 => rounding overflow
                  C1_hi = 0x0000314dc6448d93ull;
                  C1_lo = 0x38c15b0a00000000ull; // 10^33
                  x_exp = x_exp + EXP_P1;
                  if (x_exp == EXP_MAX_P1) { // overflow
                    C1_hi = 0x7800000000000000ull; // +inf
                    C1_lo = 0x0ull;
                    x_exp = 0; // x_sign is preserved
                    // set the overflow flag
                    *pfpsf |= OVERFLOW_EXCEPTION;
                  }
                }
              } else {
                ; // the result is x
              }
              // set the inexact flag
              *pfpsf |= INEXACT_EXCEPTION;
              // assemble the result
              res.w[1] = x_sign | x_exp | C1_hi;
              res.w[0] = C1_lo;
            }
          } else { // if q2 >= 20 then 5*10^(q2-1) and C2 (the latter in 
            // most cases) fit only in more than 64 bits
            halfulp128 = __bid_midpoint128[q2 - 20]; // 5 * 10^(q2-1)
            if ((C2_hi < halfulp128.w[1])
                || (C2_hi == halfulp128.w[1]
                    && C2_lo < halfulp128.w[0])) {
              // n2 < 1/2 ulp (n1)
              // the result is the operand with the larger magnitude,
              // possibly scaled up by 10^(P34-q1)
              // an overflow cannot occur in this case (rounding to nearest)
              if (q1 < P34) { // scale C1 up by 10^(P34-q1)
                // Note: because delta = P34 it is certain that
                //     x_exp - ((UINT64)scale << 49) will stay above e_min
                scale = P34 - q1;
                if (q1 <= 19) { // C1 fits in 64 bits
                  // 1 <= q1 <= 19 => 15 <= scale <= 33
                  if (scale <= 19) { // 10^scale fits in 64 bits
                    __mul_64x64_to_128MACH (C1, __bid_ten2k64[scale], C1_lo);
                  } else { // if 20 <= scale <= 33 
                    // C1 * 10^scale = (C1 * 10^(scale-19)) * 10^19 where
                    // (C1 * 10^(scale-19)) fits in 64 bits  
                    C1_lo = C1_lo * __bid_ten2k64[scale - 19];
                    __mul_64x64_to_128MACH (C1, __bid_ten2k64[19], C1_lo);
                  }
                } else { //if 20 <= q1 <= 33=P34-1 then C1 fits only in 128 bits
                  // => 1 <= P34 - q1 <= 14 so 10^(P34-q1) fits in 64 bits 
                  C1.w[1] = C1_hi;
                  C1.w[0] = C1_lo;
                  // C1 = __bid_ten2k64[P34 - q1] * C1 
                  __mul_128x64_to_128 (C1, __bid_ten2k64[P34 - q1], C1);
                }
                C1_hi = C1.w[1];
                C1_lo = C1.w[0];
                x_exp = x_exp - ((UINT64) scale << 49);
              }
              if (rnd_mode != ROUNDING_TO_NEAREST) {
                if ((rnd_mode == ROUNDING_DOWN && x_sign
                    && y_sign) || (rnd_mode == ROUNDING_UP
                    && !x_sign && !y_sign)) {
                  // add 1 ulp and then check for overflow
                  C1_lo = C1_lo + 1;
                  if (C1_lo == 0) { // rounding overflow in the low 64 bits
                    C1_hi = C1_hi + 1;
                  }
                  if (C1_hi == 0x0001ed09bead87c0ull
                      && C1_lo == 0x378d8e6400000000ull) {
                    // C1 = 10^34 => rounding overflow
                    C1_hi = 0x0000314dc6448d93ull;
                    C1_lo = 0x38c15b0a00000000ull; // 10^33
                    x_exp = x_exp + EXP_P1;
                    if (x_exp == EXP_MAX_P1) { // overflow
                      C1_hi = 0x7800000000000000ull; // +inf
                      C1_lo = 0x0ull;
                      x_exp = 0; // x_sign is preserved
                      // set overflow flag (the inexact flag was set too)
                      *pfpsf |= OVERFLOW_EXCEPTION;
                    }
                  }
                } else if ((rnd_mode == ROUNDING_DOWN && !x_sign
                           && y_sign) || (rnd_mode == ROUNDING_UP
                           && x_sign && !y_sign)
                           || (rnd_mode == ROUNDING_TO_ZERO
                           && x_sign != y_sign)) {
                  // subtract 1 ulp from C1
                  // Note: because delta >= P34 + 1 the result cannot be zero
                  C1_lo = C1_lo - 1;
                  if (C1_lo == 0xffffffffffffffffull)
                    C1_hi = C1_hi - 1;
                  // if the coefficient is 10^33-1 then make it 10^34-1 and
                  // decrease the exponent by 1 (because delta >= P34 + 1 the
                  // exponent will not become less than e_min)
                  // 10^33 - 1 = 0x0000314dc6448d9338c15b09ffffffff
                  // 10^34 - 1 = 0x0001ed09bead87c0378d8e63ffffffff
                  if (C1_hi == 0x0000314dc6448d93ull
                      && C1_lo == 0x38c15b09ffffffffull) {
                    // make C1 = 10^34  - 1
                    C1_hi = 0x0001ed09bead87c0ull;
                    C1_lo = 0x378d8e63ffffffffull;
                    x_exp = x_exp - EXP_P1;
                  }
                } else {
                  ; // the result is already correct
                }
              }
              // set the inexact flag 
              *pfpsf |= INEXACT_EXCEPTION;
              // assemble the result 
              res.w[1] = x_sign | x_exp | C1_hi;
              res.w[0] = C1_lo;
            } else if ((C2_hi == halfulp128.w[1]
                        && C2_lo == halfulp128.w[0])
                       && (q1 < P34 || ((C1_lo & 0x1) == 0))) {
              // midpoint & lsb in C1 is 0
              // n2 = 1/2 ulp (n1) and C1 is even
              // the result is the operand with the larger magnitude,
              // possibly scaled up by 10^(P34-q1)
              // an overflow cannot occur in this case (rounding to nearest)
              if (q1 < P34) { // scale C1 up by 10^(P34-q1)
                // Note: because delta = P34 it is certain that
                //     x_exp - ((UINT64)scale << 49) will stay above e_min
                scale = P34 - q1;
                if (q1 <= 19) { // C1 fits in 64 bits
                  // 1 <= q1 <= 19 => 15 <= scale <= 33
                  if (scale <= 19) { // 10^scale fits in 64 bits
                    __mul_64x64_to_128MACH (C1, __bid_ten2k64[scale], C1_lo);
                  } else { // if 20 <= scale <= 33
                    // C1 * 10^scale = (C1 * 10^(scale-19)) * 10^19 where
                    // (C1 * 10^(scale-19)) fits in 64 bits
                    C1_lo = C1_lo * __bid_ten2k64[scale - 19];
                    __mul_64x64_to_128MACH (C1, __bid_ten2k64[19], C1_lo);
                  }
                } else { //if 20 <= q1 <= 33=P34-1 then C1 fits only in 128 bits
                  // => 1 <= P34 - q1 <= 14 so 10^(P34-q1) fits in 64 bits
                  C1.w[1] = C1_hi;
                  C1.w[0] = C1_lo;
                  // C1 = __bid_ten2k64[P34 - q1] * C1
                  __mul_128x64_to_128 (C1, __bid_ten2k64[P34 - q1], C1);
                }
                x_exp = x_exp - ((UINT64) scale << 49);
                C1_hi = C1.w[1];
                C1_lo = C1.w[0];
              }
              if (rnd_mode != ROUNDING_TO_NEAREST) {
                if ((rnd_mode == ROUNDING_TIES_AWAY
                    && x_sign == y_sign)
                    || (rnd_mode == ROUNDING_UP && !y_sign)) {
                  // add 1 ulp and then check for overflow
                  C1_lo = C1_lo + 1;
                  if (C1_lo == 0) { // rounding overflow in the low 64 bits
                    C1_hi = C1_hi + 1;
                  }
                  if (C1_hi == 0x0001ed09bead87c0ull
                      && C1_lo == 0x378d8e6400000000ull) {
                    // C1 = 10^34 => rounding overflow
                    C1_hi = 0x0000314dc6448d93ull;
                    C1_lo = 0x38c15b0a00000000ull; // 10^33
                    x_exp = x_exp + EXP_P1;
                    if (x_exp == EXP_MAX_P1) { // overflow
                      C1_hi = 0x7800000000000000ull; // +inf
                      C1_lo = 0x0ull;
                      x_exp = 0; // x_sign is preserved
                      // set overflow flag (the inexact flag was set too)
                      *pfpsf |= OVERFLOW_EXCEPTION;
                    }
                  }
                } else if ((rnd_mode == ROUNDING_DOWN && y_sign)
                           || (rnd_mode == ROUNDING_TO_ZERO
                           && x_sign != y_sign)) {
                  // subtract 1 ulp from C1
                  // Note: because delta >= P34 + 1 the result cannot be zero
                  C1_lo = C1_lo - 1;
                  if (C1_lo == 0xffffffffffffffffull)
                    C1_hi = C1_hi - 1;
                  // if the coefficient is 10^33 - 1 then make it 10^34 - 1
                  // and decrease the exponent by 1 (because delta >= P34 + 1
                  // the exponent will not become less than e_min)
                  // 10^33 - 1 = 0x0000314dc6448d9338c15b09ffffffff
                  // 10^34 - 1 = 0x0001ed09bead87c0378d8e63ffffffff
                  if (C1_hi == 0x0000314dc6448d93ull
                      && C1_lo == 0x38c15b09ffffffffull) {
                    // make C1 = 10^34  - 1
                    C1_hi = 0x0001ed09bead87c0ull;
                    C1_lo = 0x378d8e63ffffffffull;
                    x_exp = x_exp - EXP_P1;
                  }
                } else {
                  ; // the result is already correct
                }
              }
              // set the inexact flag
              *pfpsf |= INEXACT_EXCEPTION;
              // assemble the result
              res.w[1] = x_sign | x_exp | C1_hi;
              res.w[0] = C1_lo;
            } else { // if C2 > halfulp128 ||
              // (C2 == halfulp128 && q1 == P34 && ((C1 & 0x1) == 1)), i.e.
              // 1/2 ulp(n1) < n2 < 1 ulp(n1) or n2 = 1/2 ulp(n1) and C1 odd
              // res = x+1 ulp if n1*n2 > 0 and res = x-1 ulp if n1*n2 < 0
              if (q1 < P34) { // then 1 ulp = 10^(e1+q1-P34) < 10^e1
                // Note: if (q1 == P34) then 1 ulp = 10^(e1+q1-P34) = 10^e1
                // because q1 < P34 we must first replace C1 by C1*10^(P34-q1),
                // and must decrease the exponent by (P34-q1) (it will still be
                // at least e_min)
                scale = P34 - q1;
                if (q1 <= 19) { // C1 fits in 64 bits
                  // 1 <= q1 <= 19 => 15 <= scale <= 33
                  if (scale <= 19) { // 10^scale fits in 64 bits
                    __mul_64x64_to_128MACH (C1, __bid_ten2k64[scale], C1_lo);
                  } else { // if 20 <= scale <= 33
                    // C1 * 10^scale = (C1 * 10^(scale-19)) * 10^19 where
                    // (C1 * 10^(scale-19)) fits in 64 bits
                    C1_lo = C1_lo * __bid_ten2k64[scale - 19];
                    __mul_64x64_to_128MACH (C1, __bid_ten2k64[19], C1_lo);
                  }
                } else { //if 20 <= q1 <= 33=P34-1 then C1 fits only in 128 bits
                  // => 1 <= P34 - q1 <= 14 so 10^(P34-q1) fits in 64 bits
                  C1.w[1] = C1_hi;
                  C1.w[0] = C1_lo;
                  // C1 = __bid_ten2k64[P34 - q1] * C1
                  __mul_128x64_to_128 (C1, __bid_ten2k64[P34 - q1], C1);
                }
                C1_hi = C1.w[1];
                C1_lo = C1.w[0];
                x_exp = x_exp - ((UINT64) scale << 49);
              }
              if ((rnd_mode == ROUNDING_TO_NEAREST
                  && x_sign != y_sign) || (rnd_mode == ROUNDING_TIES_AWAY
                  && x_sign != y_sign && 
                  (C2_hi != halfulp128.w[1] || C2_lo != halfulp128.w[0])) ||
                  (rnd_mode == ROUNDING_DOWN && !x_sign
                  && y_sign) || (rnd_mode == ROUNDING_UP && x_sign
                  && !y_sign) || (rnd_mode == ROUNDING_TO_ZERO
                  && x_sign != y_sign)) {
                // the result is x - 1
                // for RN n1 * n2 < 0; underflow not possible
                C1_lo = C1_lo - 1;
                if (C1_lo == 0xffffffffffffffffull)
                  C1_hi--;
                // check if we crossed into the lower decade
                if (C1_hi == 0x0000314dc6448d93ull && 
                    C1_lo == 0x38c15b09ffffffffull) { // 10^33 - 1
                  C1_hi = 0x0001ed09bead87c0ull; // 10^34 - 1
                  C1_lo = 0x378d8e63ffffffffull;
                  x_exp = x_exp - EXP_P1; // no underflow, because n1 >> n2
                }
              } else if ((rnd_mode == ROUNDING_TO_NEAREST && x_sign == y_sign) 
                  || (rnd_mode == ROUNDING_TIES_AWAY && x_sign == y_sign) || 
                  (rnd_mode == ROUNDING_DOWN && x_sign && y_sign) || 
                  (rnd_mode == ROUNDING_UP && !x_sign && !y_sign)) {
                // the result is x + 1
                // for RN x_sign = y_sign, i.e. n1*n2 > 0
                C1_lo = C1_lo + 1;
                if (C1_lo == 0) { // rounding overflow in the low 64 bits
                  C1_hi = C1_hi + 1;
                }
                if (C1_hi == 0x0001ed09bead87c0ull
                    && C1_lo == 0x378d8e6400000000ull) {
                  // C1 = 10^34 => rounding overflow
                  C1_hi = 0x0000314dc6448d93ull;
                  C1_lo = 0x38c15b0a00000000ull; // 10^33
                  x_exp = x_exp + EXP_P1;
                  if (x_exp == EXP_MAX_P1) { // overflow
                    C1_hi = 0x7800000000000000ull; // +inf
                    C1_lo = 0x0ull;
                    x_exp = 0; // x_sign is preserved
                    // set the overflow flag
                    *pfpsf |= OVERFLOW_EXCEPTION;
                  }
                }
              } else {
                ; // the result is x
              }
              // set the inexact flag
              *pfpsf |= INEXACT_EXCEPTION;
              // assemble the result
              res.w[1] = x_sign | x_exp | C1_hi;
              res.w[0] = C1_lo;
            }
          }        // end q1 >= 20
          // end case where C1 != 10^(q1-1)
        } else { // C1 = 10^(q1-1) and x_sign != y_sign
          // instead of C' = (C1 * 10^(e1-e2) + C2)rnd,P34
          // calculate C' = C1 * 10^(e1-e2-x1) + (C2 * 10^(-x1))rnd,P34 
          // where x1 = q2 - 1, 0 <= x1 <= P34 - 1
          // Because C1 = 10^(q1-1) and x_sign != y_sign, C' will have P34 
          // digits and n = C' * 10^(e2+x1)
          // If the result has P34+1 digits, redo the steps above with x1+1
          // If the result has P34-1 digits or less, redo the steps above with 
          // x1-1 but only if initially x1 >= 1
          // NOTE: these two steps can be improved, e.g we could guess if
          // P34+1 or P34-1 digits will be obtained by adding/subtracting 
          // just the top 64 bits of the two operands
          // The result cannot be zero, and it cannot overflow
          x1 = q2 - 1; // 0 <= x1 <= P34-1
          // Calculate C1 * 10^(e1-e2-x1) where 1 <= e1-e2-x1 <= P34
          // scale = (int)(e1 >> 49) - (int)(e2 >> 49) - x1; 0 <= scale <= P34-1
          scale = P34 - q1 + 1; // scale=e1-e2-x1 = P34+1-q1; 1<=scale<=P34
          // either C1 or 10^(e1-e2-x1) may not fit is 64 bits,
          // but their product fits with certainty in 128 bits
          if (scale >= 20) { //10^(e1-e2-x1) doesn't fit in 64 bits, but C1 does
            __mul_128x64_to_128 (C1, C1_lo, __bid_ten2k128[scale - 20]);
          } else { // if (scale >= 1
            // if 1 <= scale <= 19 then 10^(e1-e2-x1) fits in 64 bits
            if (q1 <= 19) { // C1 fits in 64 bits
              __mul_64x64_to_128MACH (C1, C1_lo, __bid_ten2k64[scale]);
            } else { // q1 >= 20
              C1.w[1] = C1_hi;
              C1.w[0] = C1_lo;
              __mul_128x64_to_128 (C1, __bid_ten2k64[scale], C1);
            }
          }
          tmp64 = C1.w[0]; // C1.w[1], C1.w[0] contains C1 * 10^(e1-e2-x1)

          // now round C2 to q2-x1 = 1 decimal digit
          // C2' = C2 + 1/2 * 10^x1 = C2 + 5 * 10^(x1-1)
          ind = x1 - 1; // -1 <= ind <= P34 - 2
          if (ind >= 0) { // if (x1 >= 1)
            C2.w[0] = C2_lo;
            C2.w[1] = C2_hi;
            if (ind <= 18) {
              C2.w[0] = C2.w[0] + __bid_midpoint64[ind];
              if (C2.w[0] < C2_lo)
                C2.w[1]++;
            } else { // 19 <= ind <= 32
              C2.w[0] = C2.w[0] + __bid_midpoint128[ind - 19].w[0];
              C2.w[1] = C2.w[1] + __bid_midpoint128[ind - 19].w[1];
              if (C2.w[0] < C2_lo)
                C2.w[1]++;
            }
            // the approximation of 10^(-x1) was rounded up to 118 bits
            __mul_128x128_to_256 (R256, C2, __bid_ten2mk128[ind]); // R256 = C2*, f2*
            // calculate C2* and f2*
            // C2* is actually floor(C2*) in this case
            // C2* and f2* need shifting and masking, as shown by
            // __bid_shiftright128[] and __bid_maskhigh128[]
            // the top Ex bits of 10^(-x1) are T* = __bid_ten2mk128trunc[ind], e.g.
            // if x1=1, T*=__bid_ten2mk128trunc[0]=0x19999999999999999999999999999999
            // if (0 < f2* < 10^(-x1)) then
            //   if floor(C1+C2*) is even then C2* = floor(C2*) - logical right
            //       shift; C2* has p decimal digits, correct by Prop. 1)
            //   else if floor(C1+C2*) is odd C2* = floor(C2*)-1 (logical right
            //       shift; C2* has p decimal digits, correct by Pr. 1)
            // else
            //   C2* = floor(C2*) (logical right shift; C has p decimal digits,
            //       correct by Property 1)
            // n = C2* * 10^(e2+x1)

            if (ind <= 2) {
              highf2star.w[1] = 0x0;
              highf2star.w[0] = 0x0; // low f2* ok
            } else if (ind <= 21) {
              highf2star.w[1] = 0x0;
              highf2star.w[0] = R256.w[2] & __bid_maskhigh128[ind]; // low f2* ok
            } else {
              highf2star.w[1] = R256.w[3] & __bid_maskhigh128[ind];
              highf2star.w[0] = R256.w[2]; // low f2* is ok
            }
            // shift right C2* by Ex-128 = __bid_shiftright128[ind]
            if (ind >= 3) {
              shift = __bid_shiftright128[ind];
              if (shift < 64) { // 3 <= shift <= 63
                R256.w[2] =
                  (R256.w[2] >> shift) | (R256.w[3] << (64 - shift));
                R256.w[3] = (R256.w[3] >> shift);
              } else { // 66 <= shift <= 102
                R256.w[2] = (R256.w[3] >> (shift - 64));
                R256.w[3] = 0x0ULL;
              }
            }
            // redundant
            is_inexact_lt_midpoint = 0;
            is_inexact_gt_midpoint = 0;
            is_midpoint_lt_even = 0;
            is_midpoint_gt_even = 0;
            // determine inexactness of the rounding of C2*
            // (cannot be followed by a second rounding)
            // if (0 < f2* - 1/2 < 10^(-x1)) then
            //   the result is exact
            // else (if f2* - 1/2 > T* then)
            //   the result of is inexact
            if (ind <= 2) {
              if (R256.w[1] > 0x8000000000000000ull || 
                  (R256.w[1] == 0x8000000000000000ull && R256.w[0] > 0x0ull)) {
                // f2* > 1/2 and the result may be exact
                tmp64A = R256.w[1] - 0x8000000000000000ull; // f* - 1/2
                if ((tmp64A > __bid_ten2mk128trunc[ind].w[1]
                     || (tmp64A == __bid_ten2mk128trunc[ind].w[1]
                     && R256.w[0] >= __bid_ten2mk128trunc[ind].w[0]))) {
                  // set the inexact flag
                  *pfpsf |= INEXACT_EXCEPTION;
                  // this rounding is applied to C2 only!
                  // x_sign != y_sign
                  is_inexact_gt_midpoint = 1;
                }        // else the result is exact
                // rounding down, unless a midpoint in [ODD, EVEN]
              } else { // the result is inexact; f2* <= 1/2
                // set the inexact flag
                *pfpsf |= INEXACT_EXCEPTION;
                // this rounding is applied to C2 only!
                // x_sign != y_sign
                is_inexact_lt_midpoint = 1;
              }
            } else if (ind <= 21) { // if 3 <= ind <= 21
              if (highf2star.w[1] > 0x0 || (highf2star.w[1] == 0x0
                  && highf2star.w[0] > __bid_one_half128[ind])
                  || (highf2star.w[1] == 0x0
                  && highf2star.w[0] == __bid_one_half128[ind]
                  && (R256.w[1] || R256.w[0]))) {
                // f2* > 1/2 and the result may be exact
                // Calculate f2* - 1/2
                tmp64A = highf2star.w[0] - __bid_one_half128[ind];
                tmp64B = highf2star.w[1];
                if (tmp64A > highf2star.w[0])
                  tmp64B--;
                if (tmp64B || tmp64A
                    || R256.w[1] > __bid_ten2mk128trunc[ind].w[1]
                    || (R256.w[1] == __bid_ten2mk128trunc[ind].w[1]
                    && R256.w[0] > __bid_ten2mk128trunc[ind].w[0])) {
                  // set the inexact flag
                  *pfpsf |= INEXACT_EXCEPTION;
                  // this rounding is applied to C2 only!
                  // x_sign != y_sign
                  is_inexact_gt_midpoint = 1;
                }        // else the result is exact
              } else { // the result is inexact; f2* <= 1/2
                // set the inexact flag
                *pfpsf |= INEXACT_EXCEPTION;
                // this rounding is applied to C2 only!
                // x_sign != y_sign
                is_inexact_lt_midpoint = 1;
              }
            } else { // if 22 <= ind <= 33
              if (highf2star.w[1] > __bid_one_half128[ind]
                  || (highf2star.w[1] == __bid_one_half128[ind]
                  && (highf2star.w[0] || R256.w[1]
                      || R256.w[0]))) {
                // f2* > 1/2 and the result may be exact
                // Calculate f2* - 1/2
                // tmp64A = highf2star.w[0];
                tmp64B = highf2star.w[1] - __bid_one_half128[ind];
                if (tmp64B || highf2star.w[0]
                    || R256.w[1] > __bid_ten2mk128trunc[ind].w[1]
                    || (R256.w[1] == __bid_ten2mk128trunc[ind].w[1]
                    && R256.w[0] > __bid_ten2mk128trunc[ind].w[0])) {
                  // set the inexact flag
                  *pfpsf |= INEXACT_EXCEPTION;
                  // this rounding is applied to C2 only!
                  // x_sign != y_sign
                  is_inexact_gt_midpoint = 1;
                }        // else the result is exact
              } else { // the result is inexact; f2* <= 1/2
                // set the inexact flag
                *pfpsf |= INEXACT_EXCEPTION;
                // this rounding is applied to C2 only!
                // x_sign != y_sign
                is_inexact_lt_midpoint = 1;
              }
            }
            // check for midpoints after determining inexactness
            if ((R256.w[1] || R256.w[0]) && (highf2star.w[1] == 0)
                && (highf2star.w[0] == 0)
                && (R256.w[1] < __bid_ten2mk128trunc[ind].w[1]
                    || (R256.w[1] == __bid_ten2mk128trunc[ind].w[1]
                    && R256.w[0] <= __bid_ten2mk128trunc[ind].w[0]))) {
              // the result is a midpoint
              if ((tmp64 + R256.w[2]) & 0x01) { // MP in [EVEN, ODD]
                // if floor(C2*) is odd C = floor(C2*) - 1; the result may be 0
                R256.w[2]--;
                if (R256.w[2] == 0xffffffffffffffffull)
                  R256.w[3]--;
                // this rounding is applied to C2 only!
                // x_sign != y_sign
                is_midpoint_lt_even = 1;
                is_inexact_lt_midpoint = 0;
                is_inexact_gt_midpoint = 0;
              } else {
                // else MP in [ODD, EVEN]
                // this rounding is applied to C2 only!
                // x_sign != y_sign
                is_midpoint_gt_even = 1;
                is_inexact_lt_midpoint = 0;
                is_inexact_gt_midpoint = 0;
              }
            }
          } else { // if (ind == -1) only when x1 = 0
            R256.w[2] = C2_lo;
            R256.w[3] = C2_hi;
            is_midpoint_lt_even = 0;
            is_midpoint_gt_even = 0;
            is_inexact_lt_midpoint = 0;
            is_inexact_gt_midpoint = 0;
          }
          // and now subtract C1 * 10^(e1-e2-x1) - (C2 * 10^(-x1))rnd,P34
          // because x_sign != y_sign this last operation is exact
          C1.w[0] = C1.w[0] - R256.w[2];
          C1.w[1] = C1.w[1] - R256.w[3];
          if (C1.w[0] > tmp64)
            C1.w[1]--; // borrow
          if (C1.w[1] >= 0x8000000000000000ull) { // negative coefficient!
            C1.w[0] = ~C1.w[0];
            C1.w[0]++;
            C1.w[1] = ~C1.w[1];
            if (C1.w[0] == 0x0)
              C1.w[1]++;
            tmp_sign = y_sign; // the result will have the sign of y
          } else {
            tmp_sign = x_sign;
          }
          // the difference has exactly P34 digits
          x_sign = tmp_sign;
          if (x1 >= 1)
            y_exp = y_exp + ((UINT64) x1 << 49);
          C1_hi = C1.w[1];
          C1_lo = C1.w[0];
          // general correction from RN to RA, RM, RP, RZ; result uses y_exp
          if (rnd_mode != ROUNDING_TO_NEAREST) {
            if ((!x_sign && 
                ((rnd_mode == ROUNDING_UP && is_inexact_lt_midpoint) || 
                ((rnd_mode == ROUNDING_TIES_AWAY || rnd_mode == ROUNDING_UP) &&
                is_midpoint_gt_even))) || 
                (x_sign && 
                ((rnd_mode == ROUNDING_DOWN && is_inexact_lt_midpoint) || 
                ((rnd_mode == ROUNDING_TIES_AWAY || rnd_mode == ROUNDING_DOWN) 
                && is_midpoint_gt_even)))) {
              // C1 = C1 + 1
              C1_lo = C1_lo + 1;
              if (C1_lo == 0) { // rounding overflow in the low 64 bits
                C1_hi = C1_hi + 1;
              }
              if (C1_hi == 0x0001ed09bead87c0ull
                  && C1_lo == 0x378d8e6400000000ull) {
                // C1 = 10^34 => rounding overflow
                C1_hi = 0x0000314dc6448d93ull;
                C1_lo = 0x38c15b0a00000000ull; // 10^33
                y_exp = y_exp + EXP_P1;
              }
            } else if ((is_midpoint_lt_even || is_inexact_gt_midpoint) && 
                ((x_sign && 
                (rnd_mode == ROUNDING_UP || rnd_mode == ROUNDING_TO_ZERO)) || 
                (!x_sign && 
                (rnd_mode == ROUNDING_DOWN || rnd_mode == ROUNDING_TO_ZERO)))) {
              // C1 = C1 - 1
              C1_lo = C1_lo - 1;
              if (C1_lo == 0xffffffffffffffffull)
                C1_hi--;
              // check if we crossed into the lower decade
              if (C1_hi == 0x0000314dc6448d93ull && 
                  C1_lo == 0x38c15b09ffffffffull) { // 10^33 - 1
                C1_hi = 0x0001ed09bead87c0ull; // 10^34 - 1
                C1_lo = 0x378d8e63ffffffffull;
                y_exp = y_exp - EXP_P1;
                // no underflow, because delta + q2 >= P34 + 1
              }
            } else {
              ; // exact, the result is already correct
            }
          }
          // assemble the result
          res.w[1] = x_sign | y_exp | C1_hi;
          res.w[0] = C1_lo;
        }
      }        // end delta = P34
    } else { // if (|delta| <= P34 - 1)
      if (delta >= 0) { // if (0 <= delta <= P34 - 1)
        if (delta <= P34 - 1 - q2) {
          // calculate C' directly; the result is exact
          // in this case 1<=q1<=P34-1, 1<=q2<=P34-1 and 0 <= e1-e2 <= P34-2
          // The coefficient of the result is C1 * 10^(e1-e2) + C2 and the
          // exponent is e2; either C1 or 10^(e1-e2) may not fit is 64 bits,
          // but their product fits with certainty in 128 bits (actually in 113)
          scale = delta - q1 + q2; // scale = (int)(e1 >> 49) - (int)(e2 >> 49) 

          if (scale >= 20) { // 10^(e1-e2) does not fit in 64 bits, but C1 does
            __mul_128x64_to_128 (C1, C1_lo, __bid_ten2k128[scale - 20]);
            C1_hi = C1.w[1];
            C1_lo = C1.w[0];
          } else if (scale >= 1) {
            // if 1 <= scale <= 19 then 10^(e1-e2) fits in 64 bits 
            if (q1 <= 19) { // C1 fits in 64 bits
              __mul_64x64_to_128MACH (C1, C1_lo, __bid_ten2k64[scale]);
            } else { // q1 >= 20
              C1.w[1] = C1_hi;
              C1.w[0] = C1_lo;
              __mul_128x64_to_128 (C1, __bid_ten2k64[scale], C1);
            }
            C1_hi = C1.w[1];
            C1_lo = C1.w[0];
          } else { // if (scale == 0) C1 is unchanged
            C1.w[0] = C1_lo; // C1.w[1] = C1_hi; 
          }
          // now add C2
          if (x_sign == y_sign) {
            // the result cannot overflow
            C1_lo = C1_lo + C2_lo;
            C1_hi = C1_hi + C2_hi;
            if (C1_lo < C1.w[0])
              C1_hi++;
          } else { // if x_sign != y_sign
            C1_lo = C1_lo - C2_lo;
            C1_hi = C1_hi - C2_hi;
            if (C1_lo > C1.w[0])
              C1_hi--;
            // the result can be zero, but it cannot overflow
            if (C1_lo == 0 && C1_hi == 0) {
              // assemble the result
              if (x_exp < y_exp)
                res.w[1] = x_exp;
              else
                res.w[1] = y_exp;
              res.w[0] = 0;
              if (rnd_mode == ROUNDING_DOWN) {
                res.w[1] |= 0x8000000000000000ull;
              }
              BID_RETURN (res);
            }
            if (C1_hi >= 0x8000000000000000ull) { // negative coefficient!
              C1_lo = ~C1_lo;
              C1_lo++;
              C1_hi = ~C1_hi;
              if (C1_lo == 0x0)
                C1_hi++;
              x_sign = y_sign; // the result will have the sign of y
            }
          }
          // assemble the result
          res.w[1] = x_sign | y_exp | C1_hi;
          res.w[0] = C1_lo;
        } else if (delta == P34 - q2) {
          // calculate C' directly; the result may be inexact if it requires 
          // P34+1 decimal digits; in this case the 'cutoff' point for addition
          // is at the position of the lsb of C2, so 0 <= e1-e2 <= P34-1
          // The coefficient of the result is C1 * 10^(e1-e2) + C2 and the
          // exponent is e2; either C1 or 10^(e1-e2) may not fit is 64 bits,
          // but their product fits with certainty in 128 bits (actually in 113)
          scale = delta - q1 + q2; // scale = (int)(e1 >> 49) - (int)(e2 >> 49)
          if (scale >= 20) { // 10^(e1-e2) does not fit in 64 bits, but C1 does
            __mul_128x64_to_128 (C1, C1_lo, __bid_ten2k128[scale - 20]);
          } else if (scale >= 1) {
            // if 1 <= scale <= 19 then 10^(e1-e2) fits in 64 bits
            if (q1 <= 19) { // C1 fits in 64 bits
              __mul_64x64_to_128MACH (C1, C1_lo, __bid_ten2k64[scale]);
            } else { // q1 >= 20
              C1.w[1] = C1_hi;
              C1.w[0] = C1_lo;
              __mul_128x64_to_128 (C1, __bid_ten2k64[scale], C1);
            }
          } else { // if (scale == 0) C1 is unchanged
            C1.w[1] = C1_hi;
            C1.w[0] = C1_lo; // only the low part is necessary
          }
          C1_hi = C1.w[1];
          C1_lo = C1.w[0];
          // now add C2
          if (x_sign == y_sign) {
            // the result can overflow!
            C1_lo = C1_lo + C2_lo;
            C1_hi = C1_hi + C2_hi;
            if (C1_lo < C1.w[0])
              C1_hi++;
            // test for overflow, possible only when C1 >= 10^34
            if (C1_hi > 0x0001ed09bead87c0ull || 
                (C1_hi == 0x0001ed09bead87c0ull && 
                C1_lo >= 0x378d8e6400000000ull)) { // C1 >= 10^34
              // in this case q = P34 + 1 and x = q - P34 = 1, so multiply 
              // C'' = C'+ 5 = C1 + 5 by k1 ~ 10^(-1) calculated for P34 + 1 
              // decimal digits
              // Calculate C'' = C' + 1/2 * 10^x
              if (C1_lo >= 0xfffffffffffffffbull) { // low half add has carry
                C1_lo = C1_lo + 5;
                C1_hi = C1_hi + 1;
              } else {
                C1_lo = C1_lo + 5;
              }
              // the approximation of 10^(-1) was rounded up to 118 bits
              // 10^(-1) =~ 33333333333333333333333333333400 * 2^-129
              // 10^(-1) =~ 19999999999999999999999999999a00 * 2^-128
              C1.w[1] = C1_hi;
              C1.w[0] = C1_lo; // C''
              __bid_ten2m1.w[1] = 0x1999999999999999ull;
              __bid_ten2m1.w[0] = 0x9999999999999a00ull;
              __mul_128x128_to_256 (P256, C1, __bid_ten2m1); // P256 = C*, f*
              // C* is actually floor(C*) in this case
              // the top Ex = 128 bits of 10^(-1) are 
              // T* = 0x00199999999999999999999999999999
              // if (0 < f* < 10^(-x)) then
              //   if floor(C*) is even then C = floor(C*) - logical right 
              //       shift; C has p decimal digits, correct by Prop. 1)
              //   else if floor(C*) is odd C = floor(C*) - 1 (logical right
              //       shift; C has p decimal digits, correct by Pr. 1)
              // else
              //   C = floor(C*) (logical right shift; C has p decimal digits,
              //       correct by Property 1)
              // n = C * 10^(e2+x)
              if ((P256.w[1] || P256.w[0])
                  && (P256.w[1] < 0x1999999999999999ull
                      || (P256.w[1] == 0x1999999999999999ull
                      && P256.w[0] <= 0x9999999999999999ull))) {
                // the result is a midpoint
                if (P256.w[2] & 0x01) {
                  is_midpoint_gt_even = 1;
                  // if floor(C*) is odd C = floor(C*) - 1; the result is not 0
                  P256.w[2]--;
                  if (P256.w[2] == 0xffffffffffffffffull)
                    P256.w[3]--;
                } else {
                  is_midpoint_lt_even = 1;
                }
              }
              // n = Cstar * 10^(e2+1)
              y_exp = y_exp + EXP_P1;
              // C* != 10^P because C* has P34 digits
              // check for overflow
              if (y_exp == EXP_MAX_P1
                  && (rnd_mode == ROUNDING_TO_NEAREST
                      || rnd_mode == ROUNDING_TIES_AWAY)) {
                // overflow for RN
                res.w[1] = x_sign | 0x7800000000000000ull; // +/-inf
                res.w[0] = 0x0ull;
                // set the inexact flag
                *pfpsf |= INEXACT_EXCEPTION;
                // set the overflow flag
                *pfpsf |= OVERFLOW_EXCEPTION;
                BID_RETURN (res);
              }
              // if (0 < f* - 1/2 < 10^(-x)) then 
              //   the result of the addition is exact 
              // else 
              //   the result of the addition is inexact
              if (P256.w[1] > 0x8000000000000000ull || 
                  (P256.w[1] == 0x8000000000000000ull && 
                  P256.w[0] > 0x0ull)) { // the result may be exact
                tmp64 = P256.w[1] - 0x8000000000000000ull; // f* - 1/2
                if ((tmp64 > 0x1999999999999999ull
                     || (tmp64 == 0x1999999999999999ull
                     && P256.w[0] >= 0x9999999999999999ull))) {
                  // set the inexact flag
                  *pfpsf |= INEXACT_EXCEPTION;
                  is_inexact = 1;
                }        // else the result is exact
              } else { // the result is inexact
                // set the inexact flag
                *pfpsf |= INEXACT_EXCEPTION;
                is_inexact = 1;
              }
              C1_hi = P256.w[3];
              C1_lo = P256.w[2];
              if (!is_midpoint_gt_even && !is_midpoint_lt_even) {
                is_inexact_lt_midpoint = is_inexact
                  && (P256.w[1] & 0x8000000000000000ull);
                is_inexact_gt_midpoint = is_inexact
                  && !(P256.w[1] & 0x8000000000000000ull);
              }
              // general correction from RN to RA, RM, RP, RZ; 
              // result uses y_exp
              if (rnd_mode != ROUNDING_TO_NEAREST) {
                if ((!x_sign && 
                    ((rnd_mode == ROUNDING_UP && is_inexact_lt_midpoint) || 
                    ((rnd_mode == ROUNDING_TIES_AWAY || rnd_mode == ROUNDING_UP)
                    && is_midpoint_gt_even))) || 
                    (x_sign && 
                    ((rnd_mode == ROUNDING_DOWN && is_inexact_lt_midpoint) || 
                    ((rnd_mode == ROUNDING_TIES_AWAY || 
                    rnd_mode == ROUNDING_DOWN) && is_midpoint_gt_even)))) {
                  // C1 = C1 + 1
                  C1_lo = C1_lo + 1;
                  if (C1_lo == 0) { // rounding overflow in the low 64 bits
                    C1_hi = C1_hi + 1;
                  }
                  if (C1_hi == 0x0001ed09bead87c0ull
                      && C1_lo == 0x378d8e6400000000ull) {
                    // C1 = 10^34 => rounding overflow
                    C1_hi = 0x0000314dc6448d93ull;
                    C1_lo = 0x38c15b0a00000000ull; // 10^33
                    y_exp = y_exp + EXP_P1;
                  }
                } else if ((is_midpoint_lt_even || is_inexact_gt_midpoint) && 
                    ((x_sign && (rnd_mode == ROUNDING_UP || 
                    rnd_mode == ROUNDING_TO_ZERO)) || (!x_sign && 
                    (rnd_mode == ROUNDING_DOWN || 
                    rnd_mode == ROUNDING_TO_ZERO)))) {
                  // C1 = C1 - 1
                  C1_lo = C1_lo - 1;
                  if (C1_lo == 0xffffffffffffffffull)
                    C1_hi--;
                  // check if we crossed into the lower decade
                  if (C1_hi == 0x0000314dc6448d93ull && 
                      C1_lo == 0x38c15b09ffffffffull) { // 10^33 - 1
                    C1_hi = 0x0001ed09bead87c0ull; // 10^34 - 1
                    C1_lo = 0x378d8e63ffffffffull;
                    y_exp = y_exp - EXP_P1;
                    // no underflow, because delta + q2 >= P34 + 1
                  }
                } else {
                  ; // exact, the result is already correct
                }
                // in all cases check for overflow (RN and RA solved already)
                if (y_exp == EXP_MAX_P1) { // overflow
                  if ((rnd_mode == ROUNDING_DOWN && x_sign) || // RM and res < 0
                      (rnd_mode == ROUNDING_UP && !x_sign)) { // RP and res > 0
                    C1_hi = 0x7800000000000000ull; // +inf
                    C1_lo = 0x0ull;
                  } else { // RM and res > 0, RP and res < 0, or RZ
                    C1_hi = 0x5fffed09bead87c0ull;
                    C1_lo = 0x378d8e63ffffffffull;
                  }
                  y_exp = 0; // x_sign is preserved
                  // set the inexact flag (in case the exact addition was exact)
                  *pfpsf |= INEXACT_EXCEPTION;
                  // set the overflow flag
                  *pfpsf |= OVERFLOW_EXCEPTION;
                }
              }
            } // else if (C1 < 10^34) then C1 is the coeff.; the result is exact
          } else { // if x_sign != y_sign the result is exact
            C1_lo = C1_lo - C2_lo;
            C1_hi = C1_hi - C2_hi;
            if (C1_lo > C1.w[0])
              C1_hi--;
            // the result can be zero, but it cannot overflow
            if (C1_lo == 0 && C1_hi == 0) {
              // assemble the result
              if (x_exp < y_exp)
                res.w[1] = x_exp;
              else
                res.w[1] = y_exp;
              res.w[0] = 0;
              if (rnd_mode == ROUNDING_DOWN) {
                res.w[1] |= 0x8000000000000000ull;
              }
              BID_RETURN (res);
            }
            if (C1_hi >= 0x8000000000000000ull) { // negative coefficient!
              C1_lo = ~C1_lo;
              C1_lo++;
              C1_hi = ~C1_hi;
              if (C1_lo == 0x0)
                C1_hi++;
              x_sign = y_sign; // the result will have the sign of y
            }
          }
          // assemble the result
          res.w[1] = x_sign | y_exp | C1_hi;
          res.w[0] = C1_lo;
        } else { // if (delta >= P34 + 1 - q2)
          // instead of C' = (C1 * 10^(e1-e2) + C2)rnd,P34
          // calculate C' = C1 * 10^(e1-e2-x1) + (C2 * 10^(-x1))rnd,P34 
          // where x1 = q1 + e1 - e2 - P34, 1 <= x1 <= P34 - 1
          // In most cases C' will have P34 digits, and n = C' * 10^(e2+x1)
          // If the result has P34+1 digits, redo the steps above with x1+1
          // If the result has P34-1 digits or less, redo the steps above with 
          // x1-1 but only if initially x1 >= 1
          // NOTE: these two steps can be improved, e.g we could guess if
          // P34+1 or P34-1 digits will be obtained by adding/subtracting just
          // the top 64 bits of the two operands
          // The result cannot be zero, but it can overflow
          x1 = delta + q2 - P34; // 1 <= x1 <= P34-1
        roundC2:
          // Calculate C1 * 10^(e1-e2-x1) where 0 <= e1-e2-x1 <= P34 - 1
          // scale = (int)(e1 >> 49) - (int)(e2 >> 49) - x1; 0 <= scale <= P34-1
          scale = delta - q1 + q2 - x1; // scale = e1 - e2 - x1 = P34 - q1
          // either C1 or 10^(e1-e2-x1) may not fit is 64 bits,
          // but their product fits with certainty in 128 bits (actually in 113)
          if (scale >= 20) { //10^(e1-e2-x1) doesn't fit in 64 bits, but C1 does
            __mul_128x64_to_128 (C1, C1_lo, __bid_ten2k128[scale - 20]);
          } else if (scale >= 1) {
            // if 1 <= scale <= 19 then 10^(e1-e2-x1) fits in 64 bits
            if (q1 <= 19) { // C1 fits in 64 bits
              __mul_64x64_to_128MACH (C1, C1_lo, __bid_ten2k64[scale]);
            } else { // q1 >= 20
              C1.w[1] = C1_hi;
              C1.w[0] = C1_lo;
              __mul_128x64_to_128 (C1, __bid_ten2k64[scale], C1);
            }
          } else { // if (scale == 0) C1 is unchanged
            C1.w[1] = C1_hi;
            C1.w[0] = C1_lo;
          }
          tmp64 = C1.w[0]; // C1.w[1], C1.w[0] contains C1 * 10^(e1-e2-x1)

          // now round C2 to q2-x1 decimal digits, where 1<=x1<=q2-1<=P34-1
          // (but if we got here a second time after x1 = x1 - 1, then 
          // x1 >= 0; note that for x1 = 0 C2 is unchanged)
          // C2' = C2 + 1/2 * 10^x1 = C2 + 5 * 10^(x1-1)
          ind = x1 - 1; // 0 <= ind <= q2-2<=P34-2=32; but note that if x1 = 0
          // during a second pass, then ind = -1
          if (ind >= 0) { // if (x1 >= 1)
            C2.w[0] = C2_lo;
            C2.w[1] = C2_hi;
            if (ind <= 18) {
              C2.w[0] = C2.w[0] + __bid_midpoint64[ind];
              if (C2.w[0] < C2_lo)
                C2.w[1]++;
            } else { // 19 <= ind <= 32
              C2.w[0] = C2.w[0] + __bid_midpoint128[ind - 19].w[0];
              C2.w[1] = C2.w[1] + __bid_midpoint128[ind - 19].w[1];
              if (C2.w[0] < C2_lo)
                C2.w[1]++;
            }
            // the approximation of 10^(-x1) was rounded up to 118 bits
            __mul_128x128_to_256 (R256, C2, __bid_ten2mk128[ind]); // R256 = C2*, f2*
            // calculate C2* and f2*
            // C2* is actually floor(C2*) in this case
            // C2* and f2* need shifting and masking, as shown by
            // __bid_shiftright128[] and __bid_maskhigh128[]
            // the top Ex bits of 10^(-x1) are T* = __bid_ten2mk128trunc[ind], e.g.
            // if x1=1, T*=__bid_ten2mk128trunc[0]=0x19999999999999999999999999999999
            // if (0 < f2* < 10^(-x1)) then
            //   if floor(C1+C2*) is even then C2* = floor(C2*) - logical right
            //       shift; C2* has p decimal digits, correct by Prop. 1)
            //   else if floor(C1+C2*) is odd C2* = floor(C2*)-1 (logical right
            //       shift; C2* has p decimal digits, correct by Pr. 1)
            // else
            //   C2* = floor(C2*) (logical right shift; C has p decimal digits,
            //       correct by Property 1)
            // n = C2* * 10^(e2+x1)

            if (ind <= 2) {
              highf2star.w[1] = 0x0;
              highf2star.w[0] = 0x0; // low f2* ok
            } else if (ind <= 21) {
              highf2star.w[1] = 0x0;
              highf2star.w[0] = R256.w[2] & __bid_maskhigh128[ind]; // low f2* ok
            } else {
              highf2star.w[1] = R256.w[3] & __bid_maskhigh128[ind];
              highf2star.w[0] = R256.w[2]; // low f2* is ok
            }
            // shift right C2* by Ex-128 = __bid_shiftright128[ind]
            if (ind >= 3) {
              shift = __bid_shiftright128[ind];
              if (shift < 64) { // 3 <= shift <= 63
                R256.w[2] =
                  (R256.w[2] >> shift) | (R256.w[3] << (64 - shift));
                R256.w[3] = (R256.w[3] >> shift);
              } else { // 66 <= shift <= 102
                R256.w[2] = (R256.w[3] >> (shift - 64));
                R256.w[3] = 0x0ULL;
              }
            }
            if (second_pass) {
              is_inexact_lt_midpoint = 0;
              is_inexact_gt_midpoint = 0;
              is_midpoint_lt_even = 0;
              is_midpoint_gt_even = 0;
            }
            // determine inexactness of the rounding of C2* (this may be 
            // followed by a second rounding only if we get P34+1 
            // decimal digits)
            // if (0 < f2* - 1/2 < 10^(-x1)) then
            //   the result is exact
            // else (if f2* - 1/2 > T* then)
            //   the result of is inexact
            if (ind <= 2) {
              if (R256.w[1] > 0x8000000000000000ull || 
                  (R256.w[1] == 0x8000000000000000ull && R256.w[0] > 0x0ull)) {
                  // f2* > 1/2 and the result may be exact
                tmp64A = R256.w[1] - 0x8000000000000000ull; // f* - 1/2
                if ((tmp64A > __bid_ten2mk128trunc[ind].w[1]
                     || (tmp64A == __bid_ten2mk128trunc[ind].w[1]
                     && R256.w[0] >= __bid_ten2mk128trunc[ind].w[0]))) {
                  // set the inexact flag
                  // *pfpsf |= INEXACT_EXCEPTION;
                  tmp_inexact = 1; // may be set again during a second pass
                  // this rounding is applied to C2 only!
                  if (x_sign == y_sign)
                    is_inexact_lt_midpoint = 1;
                  else        // if (x_sign != y_sign)
                    is_inexact_gt_midpoint = 1;
                }        // else the result is exact
                // rounding down, unless a midpoint in [ODD, EVEN]
              } else { // the result is inexact; f2* <= 1/2
                // set the inexact flag
                // *pfpsf |= INEXACT_EXCEPTION;
                tmp_inexact = 1; // just in case we will round a second time
                // rounding up, unless a midpoint in [EVEN, ODD]
                // this rounding is applied to C2 only!
                if (x_sign == y_sign)
                  is_inexact_gt_midpoint = 1;
                else        // if (x_sign != y_sign)
                  is_inexact_lt_midpoint = 1;
              }
            } else if (ind <= 21) { // if 3 <= ind <= 21
              if (highf2star.w[1] > 0x0 || (highf2star.w[1] == 0x0
                  && highf2star.w[0] > __bid_one_half128[ind])
                  || ((highf2star.w[1] == 0x0
                  && highf2star.w[0] == __bid_one_half128[ind])
                  && (R256.w[1] || R256.w[0]))) {
                // f2* > 1/2 and the result may be exact
                // Calculate f2* - 1/2
                tmp64A = highf2star.w[0] - __bid_one_half128[ind];
                tmp64B = highf2star.w[1];
                if (tmp64A > highf2star.w[0])
                  tmp64B--;
                if (tmp64B || tmp64A
                    || R256.w[1] > __bid_ten2mk128trunc[ind].w[1]
                    || (R256.w[1] == __bid_ten2mk128trunc[ind].w[1]
                    && R256.w[0] > __bid_ten2mk128trunc[ind].w[0])) {
                  // set the inexact flag
                  // *pfpsf |= INEXACT_EXCEPTION;
                  tmp_inexact = 1; // may be set again during a second pass
                  // this rounding is applied to C2 only!
                  if (x_sign == y_sign)
                    is_inexact_lt_midpoint = 1;
                  else        // if (x_sign != y_sign)
                    is_inexact_gt_midpoint = 1;
                }        // else the result is exact
              } else { // the result is inexact; f2* <= 1/2
                // set the inexact flag
                // *pfpsf |= INEXACT_EXCEPTION;
                tmp_inexact = 1; // may be set again during a second pass
                // rounding up, unless a midpoint in [EVEN, ODD]
                // this rounding is applied to C2 only!
                if (x_sign == y_sign)
                  is_inexact_gt_midpoint = 1;
                else        // if (x_sign != y_sign)
                  is_inexact_lt_midpoint = 1;
              }
            } else { // if 22 <= ind <= 33
              if (highf2star.w[1] > __bid_one_half128[ind]
                  || (highf2star.w[1] == __bid_one_half128[ind]
                  && (highf2star.w[0] || R256.w[1]
                      || R256.w[0]))) {
                // f2* > 1/2 and the result may be exact
                // Calculate f2* - 1/2
                // tmp64A = highf2star.w[0];
                tmp64B = highf2star.w[1] - __bid_one_half128[ind];
                if (tmp64B || highf2star.w[0]
                    || R256.w[1] > __bid_ten2mk128trunc[ind].w[1]
                    || (R256.w[1] == __bid_ten2mk128trunc[ind].w[1]
                    && R256.w[0] > __bid_ten2mk128trunc[ind].w[0])) {
                  // set the inexact flag
                  // *pfpsf |= INEXACT_EXCEPTION;
                  tmp_inexact = 1; // may be set again during a second pass
                  // this rounding is applied to C2 only!
                  if (x_sign == y_sign)
                    is_inexact_lt_midpoint = 1;
                  else        // if (x_sign != y_sign)
                    is_inexact_gt_midpoint = 1;
                }        // else the result is exact
              } else { // the result is inexact; f2* <= 1/2
                // set the inexact flag
                // *pfpsf |= INEXACT_EXCEPTION;
                tmp_inexact = 1; // may be set again during a second pass
                // rounding up, unless a midpoint in [EVEN, ODD]
                // this rounding is applied to C2 only!
                if (x_sign == y_sign)
                  is_inexact_gt_midpoint = 1;
                else        // if (x_sign != y_sign)
                  is_inexact_lt_midpoint = 1;
              }
            }
            // check for midpoints
            if ((R256.w[1] || R256.w[0]) && (highf2star.w[1] == 0)
                && (highf2star.w[0] == 0)
                && (R256.w[1] < __bid_ten2mk128trunc[ind].w[1]
                    || (R256.w[1] == __bid_ten2mk128trunc[ind].w[1]
                    && R256.w[0] <= __bid_ten2mk128trunc[ind].w[0]))) {
              // the result is a midpoint
              if ((tmp64 + R256.w[2]) & 0x01) { // MP in [EVEN, ODD]
                // if floor(C2*) is odd C = floor(C2*) - 1; the result may be 0
                R256.w[2]--;
                if (R256.w[2] == 0xffffffffffffffffull)
                  R256.w[3]--;
                // this rounding is applied to C2 only!
                if (x_sign == y_sign)
                  is_midpoint_gt_even = 1;
                else        // if (x_sign != y_sign)
                  is_midpoint_lt_even = 1;
                is_inexact_lt_midpoint = 0;
                is_inexact_gt_midpoint = 0;
              } else {
                // else MP in [ODD, EVEN]
                // this rounding is applied to C2 only!
                if (x_sign == y_sign)
                  is_midpoint_lt_even = 1;
                else        // if (x_sign != y_sign)
                  is_midpoint_gt_even = 1;
                is_inexact_lt_midpoint = 0;
                is_inexact_gt_midpoint = 0;
              }
            }
            // end if (ind >= 0)
          } else { // if (ind == -1); only during a 2nd pass, and when x1 = 0
            R256.w[2] = C2_lo;
            R256.w[3] = C2_hi;
            tmp_inexact = 0;
            // to correct a possible setting to 1 from 1st pass
            if (second_pass) {
              is_midpoint_lt_even = 0;
              is_midpoint_gt_even = 0;
              is_inexact_lt_midpoint = 0;
              is_inexact_gt_midpoint = 0;
            }
          }
          // and now add/subtract C1 * 10^(e1-e2-x1) +/- (C2 * 10^(-x1))rnd,P34
          if (x_sign == y_sign) { // addition; could overflow
            // no second pass is possible this way (only for x_sign != y_sign)
            C1.w[0] = C1.w[0] + R256.w[2];
            C1.w[1] = C1.w[1] + R256.w[3];
            if (C1.w[0] < tmp64)
              C1.w[1]++; // carry
            // if the sum has P34+1 digits, i.e. C1>=10^34 redo the calculation
            // with x1=x1+1 
            if (C1.w[1] > 0x0001ed09bead87c0ull || 
                (C1.w[1] == 0x0001ed09bead87c0ull && 
                C1.w[0] >= 0x378d8e6400000000ull)) { // C1 >= 10^34
              // chop off one more digit from the sum, but make sure there is
              // no double-rounding error (see table - double rounding logic)
              // now round C1 from P34+1 to P34 decimal digits
              // C1' = C1 + 1/2 * 10 = C1 + 5
              if (C1.w[0] >= 0xfffffffffffffffbull) { // low half add has carry
                C1.w[0] = C1.w[0] + 5;
                C1.w[1] = C1.w[1] + 1;
              } else {
                C1.w[0] = C1.w[0] + 5;
              }
              // the approximation of 10^(-1) was rounded up to 118 bits
              __mul_128x128_to_256 (Q256, C1, __bid_ten2mk128[0]); // Q256 = C1*, f1*
              // C1* is actually floor(C1*) in this case
              // the top 128 bits of 10^(-1) are
              // T* = __bid_ten2mk128trunc[0]=0x19999999999999999999999999999999
              // if (0 < f1* < 10^(-1)) then
              //   if floor(C1*) is even then C1* = floor(C1*) - logical right
              //       shift; C1* has p decimal digits, correct by Prop. 1)
              //   else if floor(C1*) is odd C1* = floor(C1*) - 1 (logical right
              //       shift; C1* has p decimal digits, correct by Pr. 1)
              // else
              //   C1* = floor(C1*) (logical right shift; C has p decimal digits
              //       correct by Property 1)
              // n = C1* * 10^(e2+x1+1)
              if ((Q256.w[1] || Q256.w[0])
                  && (Q256.w[1] < __bid_ten2mk128trunc[0].w[1]
                      || (Q256.w[1] == __bid_ten2mk128trunc[0].w[1]
                      && Q256.w[0] <= __bid_ten2mk128trunc[0].w[0]))) {
                // the result is a midpoint
                if (is_inexact_lt_midpoint) { // for the 1st rounding
                  is_inexact_gt_midpoint = 1;
                  is_inexact_lt_midpoint = 0;
                  is_midpoint_gt_even = 0;
                  is_midpoint_lt_even = 0;
                } else if (is_inexact_gt_midpoint) { // for the 1st rounding
                  Q256.w[2]--;
                  if (Q256.w[2] == 0xffffffffffffffffull)
                    Q256.w[3]--;
                  is_inexact_gt_midpoint = 0;
                  is_inexact_lt_midpoint = 1;
                  is_midpoint_gt_even = 0;
                  is_midpoint_lt_even = 0;
                } else if (is_midpoint_gt_even) { // for the 1st rounding
                  // Note: cannot have is_midpoint_lt_even
                  is_inexact_gt_midpoint = 0;
                  is_inexact_lt_midpoint = 1;
                  is_midpoint_gt_even = 0;
                  is_midpoint_lt_even = 0;
                } else { // the first rounding must have been exact
                  if (Q256.w[2] & 0x01) { // MP in [EVEN, ODD]
                    // the truncated result is correct
                    Q256.w[2]--;
                    if (Q256.w[2] == 0xffffffffffffffffull)
                      Q256.w[3]--;
                    is_inexact_gt_midpoint = 0;
                    is_inexact_lt_midpoint = 0;
                    is_midpoint_gt_even = 1;
                    is_midpoint_lt_even = 0;
                  } else { // MP in [ODD, EVEN]
                    is_inexact_gt_midpoint = 0;
                    is_inexact_lt_midpoint = 0;
                    is_midpoint_gt_even = 0;
                    is_midpoint_lt_even = 1;
                  }
                }
                tmp_inexact = 1; // in all cases
              } else { // the result is not a midpoint 
                // determine inexactness of the rounding of C1 (the sum C1+C2*)
                // if (0 < f1* - 1/2 < 10^(-1)) then
                //   the result is exact
                // else (if f1* - 1/2 > T* then)
                //   the result of is inexact
                // ind = 0
                if (Q256.w[1] > 0x8000000000000000ull
                    || (Q256.w[1] == 0x8000000000000000ull
                    && Q256.w[0] > 0x0ull)) {
                  // f1* > 1/2 and the result may be exact
                  Q256.w[1] = Q256.w[1] - 0x8000000000000000ull; // f1* - 1/2
                  if ((Q256.w[1] > __bid_ten2mk128trunc[0].w[1]
                       || (Q256.w[1] == __bid_ten2mk128trunc[0].w[1]
                       && Q256.w[0] > __bid_ten2mk128trunc[0].w[0]))) {
                    is_inexact_gt_midpoint = 0;
                    is_inexact_lt_midpoint = 1;
                    is_midpoint_gt_even = 0;
                    is_midpoint_lt_even = 0;
                    // set the inexact flag
                    tmp_inexact = 1;
                    // *pfpsf |= INEXACT_EXCEPTION;
                  } else { // else the result is exact for the 2nd rounding
                    if (tmp_inexact) { // if the previous rounding was inexact
                      if (is_midpoint_lt_even) {
                        is_inexact_gt_midpoint = 1;
                        is_midpoint_lt_even = 0;
                      } else if (is_midpoint_gt_even) {
                        is_inexact_lt_midpoint = 1;
                        is_midpoint_gt_even = 0;
                      } else {
                        ; // no change
                      }
                    }
                  }
                  // rounding down, unless a midpoint in [ODD, EVEN]
                } else { // the result is inexact; f1* <= 1/2
                  is_inexact_gt_midpoint = 1;
                  is_inexact_lt_midpoint = 0;
                  is_midpoint_gt_even = 0;
                  is_midpoint_lt_even = 0;
                  // set the inexact flag
                  tmp_inexact = 1;
                  // *pfpsf |= INEXACT_EXCEPTION;
                }
              }        // end 'the result is not a midpoint'
              // n = C1 * 10^(e2+x1)
              C1.w[1] = Q256.w[3];
              C1.w[0] = Q256.w[2];
              y_exp = y_exp + ((UINT64) (x1 + 1) << 49);
            } else { // C1 < 10^34
              // C1.w[1] and C1.w[0] already set
              // n = C1 * 10^(e2+x1)
              y_exp = y_exp + ((UINT64) x1 << 49);
            }
            // check for overflow
            if (y_exp == EXP_MAX_P1
                && (rnd_mode == ROUNDING_TO_NEAREST
                    || rnd_mode == ROUNDING_TIES_AWAY)) {
              res.w[1] = 0x7800000000000000ull | x_sign; // +/-inf
              res.w[0] = 0x0ull;
              // set the inexact flag
              *pfpsf |= INEXACT_EXCEPTION;
              // set the overflow flag
              *pfpsf |= OVERFLOW_EXCEPTION;
              BID_RETURN (res);
            }        // else no overflow
          } else { // if x_sign != y_sign the result of this subtract. is exact
            C1.w[0] = C1.w[0] - R256.w[2];
            C1.w[1] = C1.w[1] - R256.w[3];
            if (C1.w[0] > tmp64)
              C1.w[1]--; // borrow
            if (C1.w[1] >= 0x8000000000000000ull) { // negative coefficient!
              C1.w[0] = ~C1.w[0];
              C1.w[0]++;
              C1.w[1] = ~C1.w[1];
              if (C1.w[0] == 0x0)
                C1.w[1]++;
              tmp_sign = y_sign; 
                  // the result will have the sign of y if last rnd
            } else {
              tmp_sign = x_sign;
            }
            // if the difference has P34-1 digits or less, i.e. C1 < 10^33 then
            //   redo the calculation with x1=x1-1;
            // redo the calculation also if C1 = 10^33 and 
            //   (is_inexact_gt_midpoint or is_midpoint_lt_even);
            //   (the last part should have really been 
            //   (is_inexact_lt_midpoint or is_midpoint_gt_even) from
            //    the rounding of C2, but the position flags have been reversed)
            // 10^33 = 0x0000314dc6448d93 0x38c15b0a00000000
            if ((C1.w[1] < 0x0000314dc6448d93ull || 
                (C1.w[1] == 0x0000314dc6448d93ull && 
                C1.w[0] < 0x38c15b0a00000000ull)) || 
                (C1.w[1] == 0x0000314dc6448d93ull && 
                C1.w[0] == 0x38c15b0a00000000ull && 
                (is_inexact_gt_midpoint || is_midpoint_lt_even))) { // C1=10^33
              x1 = x1 - 1; // x1 >= 0
              if (x1 >= 0) {
                // clear position flags and tmp_inexact
                is_midpoint_lt_even = 0;
                is_midpoint_gt_even = 0;
                is_inexact_lt_midpoint = 0;
                is_inexact_gt_midpoint = 0;
                tmp_inexact = 0;
                second_pass = 1;
                goto roundC2; // else result has less than P34 digits
              }
            }
            // if the coefficient of the result is 10^34 it means that this
            // must be the second pass, and we are done 
            if (C1.w[1] == 0x0001ed09bead87c0ull && 
                C1.w[0] == 0x378d8e6400000000ull) { // if  C1 = 10^34
              C1.w[1] = 0x0000314dc6448d93ull; // C1 = 10^33
              C1.w[0] = 0x38c15b0a00000000ull;
              y_exp = y_exp + ((UINT64) 1 << 49);
            }
            x_sign = tmp_sign;
            if (x1 >= 1)
              y_exp = y_exp + ((UINT64) x1 << 49);
            // x1 = -1 is possible at the end of a second pass when the 
            // first pass started with x1 = 1 
          }
          C1_hi = C1.w[1];
          C1_lo = C1.w[0];
          // general correction from RN to RA, RM, RP, RZ; result uses y_exp
          if (rnd_mode != ROUNDING_TO_NEAREST) {
            if ((!x_sign
                && ((rnd_mode == ROUNDING_UP
                    && is_inexact_lt_midpoint)
                    || ((rnd_mode == ROUNDING_TIES_AWAY
                        || rnd_mode == ROUNDING_UP)
                    && is_midpoint_gt_even))) || 
                (x_sign
                && ((rnd_mode == ROUNDING_DOWN
                    && is_inexact_lt_midpoint)
                    || ((rnd_mode == ROUNDING_TIES_AWAY
                        || rnd_mode == ROUNDING_DOWN)
                    && is_midpoint_gt_even)))) {
              // C1 = C1 + 1
              C1_lo = C1_lo + 1;
              if (C1_lo == 0) { // rounding overflow in the low 64 bits
                C1_hi = C1_hi + 1;
              }
              if (C1_hi == 0x0001ed09bead87c0ull
                  && C1_lo == 0x378d8e6400000000ull) {
                // C1 = 10^34 => rounding overflow
                C1_hi = 0x0000314dc6448d93ull;
                C1_lo = 0x38c15b0a00000000ull; // 10^33
                y_exp = y_exp + EXP_P1;
              }
            } else if ((is_midpoint_lt_even || is_inexact_gt_midpoint) &&
                ((x_sign &&
                (rnd_mode == ROUNDING_UP || rnd_mode == ROUNDING_TO_ZERO)) ||
                (!x_sign &&
                (rnd_mode == ROUNDING_DOWN || rnd_mode == ROUNDING_TO_ZERO)))) {
              // C1 = C1 - 1
              C1_lo = C1_lo - 1;
              if (C1_lo == 0xffffffffffffffffull)
                C1_hi--;
              // check if we crossed into the lower decade
              if (C1_hi == 0x0000314dc6448d93ull && 
                C1_lo == 0x38c15b09ffffffffull) { // 10^33 - 1
                C1_hi = 0x0001ed09bead87c0ull; // 10^34 - 1
                C1_lo = 0x378d8e63ffffffffull;
                y_exp = y_exp - EXP_P1;
                // no underflow, because delta + q2 >= P34 + 1
              }
            } else {
              ; // exact, the result is already correct
            }
            // in all cases check for overflow (RN and RA solved already)
            if (y_exp == EXP_MAX_P1) { // overflow
              if ((rnd_mode == ROUNDING_DOWN && x_sign) || // RM and res < 0
                  (rnd_mode == ROUNDING_UP && !x_sign)) { // RP and res > 0
                C1_hi = 0x7800000000000000ull; // +inf
                C1_lo = 0x0ull;
              } else { // RM and res > 0, RP and res < 0, or RZ
                C1_hi = 0x5fffed09bead87c0ull;
                C1_lo = 0x378d8e63ffffffffull;
              }
              y_exp = 0; // x_sign is preserved
              // set the inexact flag (in case the exact addition was exact)
              *pfpsf |= INEXACT_EXCEPTION;
              // set the overflow flag
              *pfpsf |= OVERFLOW_EXCEPTION;
            }
          }
          // assemble the result
          res.w[1] = x_sign | y_exp | C1_hi;
          res.w[0] = C1_lo;
          if (tmp_inexact)
            *pfpsf |= INEXACT_EXCEPTION;
        }
      } else { // if (-P34 + 1 <= delta <= -1) <=> 1 <= -delta <= P34 - 1
        // NOTE: the following, up to "} else { // if x_sign != y_sign 
        // the result is exact" is identical to "else if (delta == P34 - q2) {"
        // from above; also, the code is not symmetric: a+b and b+a may take
        // different paths (need to unify eventually!) 
        // calculate C' = C2 + C1 * 10^(e1-e2) directly; the result may be 
        // inexact if it requires P34 + 1 decimal digits; in either case the 
        // 'cutoff' point for addition is at the position of the lsb of C2
        // The coefficient of the result is C1 * 10^(e1-e2) + C2 and the
        // exponent is e2; either C1 or 10^(e1-e2) may not fit is 64 bits,
        // but their product fits with certainty in 128 bits (actually in 113)
        // Note that 0 <= e1 - e2 <= P34 - 2
        //   -P34 + 1 <= delta <= -1 <=> -P34 + 1 <= delta <= -1 <=>
        //   -P34 + 1 <= q1 + e1 - q2 - e2 <= -1 <=>
        //   q2 - q1 - P34 + 1 <= e1 - e2 <= q2 - q1 - 1 <=>
        //   1 - P34 - P34 + 1 <= e1-e2 <= P34 - 1 - 1 => 0 <= e1-e2 <= P34 - 2
        scale = delta - q1 + q2; // scale = (int)(e1 >> 49) - (int)(e2 >> 49)
        if (scale >= 20) { // 10^(e1-e2) does not fit in 64 bits, but C1 does
          __mul_128x64_to_128 (C1, C1_lo, __bid_ten2k128[scale - 20]);
        } else if (scale >= 1) {
          // if 1 <= scale <= 19 then 10^(e1-e2) fits in 64 bits
          if (q1 <= 19) { // C1 fits in 64 bits
            __mul_64x64_to_128MACH (C1, C1_lo, __bid_ten2k64[scale]);
          } else { // q1 >= 20
            C1.w[1] = C1_hi;
            C1.w[0] = C1_lo;
            __mul_128x64_to_128 (C1, __bid_ten2k64[scale], C1);
          }
        } else { // if (scale == 0) C1 is unchanged
          C1.w[1] = C1_hi;
          C1.w[0] = C1_lo; // only the low part is necessary
        }
        C1_hi = C1.w[1];
        C1_lo = C1.w[0];
        // now add C2
        if (x_sign == y_sign) {
          // the result can overflow!
          C1_lo = C1_lo + C2_lo;
          C1_hi = C1_hi + C2_hi;
          if (C1_lo < C1.w[0])
            C1_hi++;
          // test for overflow, possible only when C1 >= 10^34
          if (C1_hi > 0x0001ed09bead87c0ull || 
              (C1_hi == 0x0001ed09bead87c0ull && 
              C1_lo >= 0x378d8e6400000000ull)) { // C1 >= 10^34
            // in this case q = P34 + 1 and x = q - P34 = 1, so multiply 
            // C'' = C'+ 5 = C1 + 5 by k1 ~ 10^(-1) calculated for P34 + 1 
            // decimal digits
            // Calculate C'' = C' + 1/2 * 10^x
            if (C1_lo >= 0xfffffffffffffffbull) { // low half add has carry
              C1_lo = C1_lo + 5;
              C1_hi = C1_hi + 1;
            } else {
              C1_lo = C1_lo + 5;
            }
            // the approximation of 10^(-1) was rounded up to 118 bits
            // 10^(-1) =~ 33333333333333333333333333333400 * 2^-129
            // 10^(-1) =~ 19999999999999999999999999999a00 * 2^-128
            C1.w[1] = C1_hi;
            C1.w[0] = C1_lo; // C''
            __bid_ten2m1.w[1] = 0x1999999999999999ull;
            __bid_ten2m1.w[0] = 0x9999999999999a00ull;
            __mul_128x128_to_256 (P256, C1, __bid_ten2m1); // P256 = C*, f*
            // C* is actually floor(C*) in this case
            // the top Ex = 128 bits of 10^(-1) are 
            // T* = 0x00199999999999999999999999999999
            // if (0 < f* < 10^(-x)) then
            //   if floor(C*) is even then C = floor(C*) - logical right 
            //       shift; C has p decimal digits, correct by Prop. 1)
            //   else if floor(C*) is odd C = floor(C*) - 1 (logical right
            //       shift; C has p decimal digits, correct by Pr. 1)
            // else
            //   C = floor(C*) (logical right shift; C has p decimal digits,
            //       correct by Property 1)
            // n = C * 10^(e2+x)
            if ((P256.w[1] || P256.w[0])
                && (P256.w[1] < 0x1999999999999999ull
                    || (P256.w[1] == 0x1999999999999999ull
                    && P256.w[0] <= 0x9999999999999999ull))) {
              // the result is a midpoint
              if (P256.w[2] & 0x01) {
                is_midpoint_gt_even = 1;
                // if floor(C*) is odd C = floor(C*) - 1; the result is not 0
                P256.w[2]--;
                if (P256.w[2] == 0xffffffffffffffffull)
                  P256.w[3]--;
              } else {
                is_midpoint_lt_even = 1;
              }
            }
            // n = Cstar * 10^(e2+1)
            y_exp = y_exp + EXP_P1;
            // C* != 10^P34 because C* has P34 digits
            // check for overflow
            if (y_exp == EXP_MAX_P1
                && (rnd_mode == ROUNDING_TO_NEAREST
                    || rnd_mode == ROUNDING_TIES_AWAY)) {
              // overflow for RN
              res.w[1] = x_sign | 0x7800000000000000ull; // +/-inf
              res.w[0] = 0x0ull;
              // set the inexact flag
              *pfpsf |= INEXACT_EXCEPTION;
              // set the overflow flag
              *pfpsf |= OVERFLOW_EXCEPTION;
              BID_RETURN (res);
            }
            // if (0 < f* - 1/2 < 10^(-x)) then 
            //   the result of the addition is exact 
            // else 
            //   the result of the addition is inexact
            if (P256.w[1] > 0x8000000000000000ull || 
                (P256.w[1] == 0x8000000000000000ull && 
                P256.w[0] > 0x0ull)) { // the result may be exact
              tmp64 = P256.w[1] - 0x8000000000000000ull; // f* - 1/2
              if ((tmp64 > 0x1999999999999999ull
                   || (tmp64 == 0x1999999999999999ull
                   && P256.w[0] >= 0x9999999999999999ull))) {
                // set the inexact flag
                *pfpsf |= INEXACT_EXCEPTION;
                is_inexact = 1;
              }        // else the result is exact
            } else { // the result is inexact
              // set the inexact flag
              *pfpsf |= INEXACT_EXCEPTION;
              is_inexact = 1;
            }
            C1_hi = P256.w[3];
            C1_lo = P256.w[2];
            if (!is_midpoint_gt_even && !is_midpoint_lt_even) {
              is_inexact_lt_midpoint = is_inexact
                && (P256.w[1] & 0x8000000000000000ull);
              is_inexact_gt_midpoint = is_inexact
                && !(P256.w[1] & 0x8000000000000000ull);
            }
            // general correction from RN to RA, RM, RP, RZ; result uses y_exp
            if (rnd_mode != ROUNDING_TO_NEAREST) {
              if ((!x_sign && 
                  ((rnd_mode == ROUNDING_UP && is_inexact_lt_midpoint) || 
                  ((rnd_mode == ROUNDING_TIES_AWAY || rnd_mode == ROUNDING_UP) 
                  && is_midpoint_gt_even))) || 
                  (x_sign && 
                  ((rnd_mode == ROUNDING_DOWN && is_inexact_lt_midpoint) || 
                  ((rnd_mode == ROUNDING_TIES_AWAY || rnd_mode == ROUNDING_DOWN)
                  && is_midpoint_gt_even)))) {
                // C1 = C1 + 1
                C1_lo = C1_lo + 1;
                if (C1_lo == 0) { // rounding overflow in the low 64 bits
                  C1_hi = C1_hi + 1;
                }
                if (C1_hi == 0x0001ed09bead87c0ull
                    && C1_lo == 0x378d8e6400000000ull) {
                  // C1 = 10^34 => rounding overflow
                  C1_hi = 0x0000314dc6448d93ull;
                  C1_lo = 0x38c15b0a00000000ull; // 10^33
                  y_exp = y_exp + EXP_P1;
                }
              } else
                if ((is_midpoint_lt_even || is_inexact_gt_midpoint) && 
                    ((x_sign && 
                    (rnd_mode == ROUNDING_UP || 
                    rnd_mode == ROUNDING_TO_ZERO)) || 
                    (!x_sign && 
                    (rnd_mode == ROUNDING_DOWN || 
                    rnd_mode == ROUNDING_TO_ZERO)))) {
                // C1 = C1 - 1
                C1_lo = C1_lo - 1;
                if (C1_lo == 0xffffffffffffffffull)
                  C1_hi--;
                // check if we crossed into the lower decade
                if (C1_hi == 0x0000314dc6448d93ull && 
                    C1_lo == 0x38c15b09ffffffffull) { // 10^33 - 1
                  C1_hi = 0x0001ed09bead87c0ull; // 10^34 - 1
                  C1_lo = 0x378d8e63ffffffffull;
                  y_exp = y_exp - EXP_P1;
                  // no underflow, because delta + q2 >= P34 + 1
                }
              } else {
                ; // exact, the result is already correct
              }
              // in all cases check for overflow (RN and RA solved already)
              if (y_exp == EXP_MAX_P1) { // overflow
                if ((rnd_mode == ROUNDING_DOWN && x_sign) || // RM and res < 0
                    (rnd_mode == ROUNDING_UP && !x_sign)) { // RP and res > 0
                  C1_hi = 0x7800000000000000ull; // +inf
                  C1_lo = 0x0ull;
                } else { // RM and res > 0, RP and res < 0, or RZ
                  C1_hi = 0x5fffed09bead87c0ull;
                  C1_lo = 0x378d8e63ffffffffull;
                }
                y_exp = 0; // x_sign is preserved
                // set the inexact flag (in case the exact addition was exact)
                *pfpsf |= INEXACT_EXCEPTION;
                // set the overflow flag
                *pfpsf |= OVERFLOW_EXCEPTION;
              }
            }
          } // else if (C1 < 10^34) then C1 is the coeff.; the result is exact
          // assemble the result
          res.w[1] = x_sign | y_exp | C1_hi;
          res.w[0] = C1_lo;
        } else { // if x_sign != y_sign the result is exact
          C1_lo = C2_lo - C1_lo;
          C1_hi = C2_hi - C1_hi;
          if (C1_lo > C2_lo)
            C1_hi--;
          if (C1_hi >= 0x8000000000000000ull) { // negative coefficient!
            C1_lo = ~C1_lo;
            C1_lo++;
            C1_hi = ~C1_hi;
            if (C1_lo == 0x0)
              C1_hi++;
            x_sign = y_sign; // the result will have the sign of y
          }
          // the result can be zero, but it cannot overflow
          if (C1_lo == 0 && C1_hi == 0) {
            // assemble the result
            if (x_exp < y_exp)
              res.w[1] = x_exp;
            else
              res.w[1] = y_exp;
            res.w[0] = 0;
            if (rnd_mode == ROUNDING_DOWN) {
              res.w[1] |= 0x8000000000000000ull;
            }
            BID_RETURN (res);
          }
          // assemble the result
          res.w[1] = y_sign | y_exp | C1_hi;
          res.w[0] = C1_lo;
        }
      }
    }
    BID_RETURN (res)
  }
}

/*****************************************************************************
 *  BID128 sub
 ****************************************************************************/

#if DECIMAL_CALL_BY_REFERENCE
void
__bid128_sub (UINT128 * pres, UINT128 * px,
            UINT128 *
            py _RND_MODE_PARAM _EXC_FLAGS_PARAM _EXC_MASKS_PARAM
            _EXC_INFO_PARAM) {
  UINT128 x = *px, y = *py;
#if !DECIMAL_GLOBAL_ROUNDING
  unsigned int rnd_mode = *prnd_mode;
#endif
#else
UINT128
__bid128_sub (UINT128 x,
            UINT128 y _RND_MODE_PARAM _EXC_FLAGS_PARAM _EXC_MASKS_PARAM
            _EXC_INFO_PARAM) {
#endif

  UINT128 res;
  UINT64 y_sign;

  if ((y.w[1] & MASK_NAN) != MASK_NAN) { // y is not NAN
    // change its sign
    y_sign = y.w[1] & MASK_SIGN; // 0 for positive, MASK_SIGN for negative
    if (y_sign)
      y.w[1] = y.w[1] & 0x7fffffffffffffffull;
    else
      y.w[1] = y.w[1] | 0x8000000000000000ull;
  }
#if DECIMAL_CALL_BY_REFERENCE
  __bid128_add (&res, &x,
              &y _RND_MODE_ARG _EXC_FLAGS_ARG _EXC_MASKS_ARG
              _EXC_INFO_ARG);
#else
  res =
    __bid128_add (x,
                y _RND_MODE_ARG _EXC_FLAGS_ARG _EXC_MASKS_ARG
                _EXC_INFO_ARG);
#endif
  BID_RETURN (res);
}