summaryrefslogtreecommitdiff
path: root/tune/speed.h
blob: 22b381785822ec6d109890833ab88a9f5f666a47 (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
/* Header for speed and threshold things.

Copyright 1999, 2000, 2001 Free Software Foundation, Inc.

This file is part of the GNU MP Library.

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

The GNU MP Library 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 Lesser General Public
License for more details.

You should have received a copy of the GNU Lesser General Public License
along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA. */

#ifndef __SPEED_H__
#define __SPEED_H__


/* Pad ptr,oldsize with zero limbs (at the most significant end) to make it
   newsize long. */
#define MPN_ZERO_EXTEND(ptr, oldsize, newsize)          \
  do {                                                  \
    ASSERT ((newsize) >= (oldsize));                    \
    MPN_ZERO ((ptr)+(oldsize), (newsize)-(oldsize));    \
  } while (0)

/* A mask of the least significant n bits.  Note 1<<32 doesn't give zero on
   x86 family CPUs, hence the separate case for BITS_PER_MP_LIMB. */
#define MP_LIMB_T_LOWBITMASK(n) \
  ((n) == BITS_PER_MP_LIMB ? MP_LIMB_T_MAX : ((mp_limb_t) 1 << (n)) - 1)


/* align must be a power of 2 here, usually CACHE_LINE_SIZE is a good choice */

#define TMP_ALLOC_ALIGNED(bytes, align) \
  align_pointer (TMP_ALLOC ((bytes) + (align)-1), (align))
#define TMP_ALLOC_LIMBS_ALIGNED(limbs, align) \
  ((mp_ptr) TMP_ALLOC_ALIGNED ((limbs)*sizeof(mp_limb_t), align))

/* 32 for pentium, 64 for athlon, might want to configure this for other
   CPUs.  In truth though nothing has yet shown up that cares about cache
   line boundaries.  The only practical effect of this is to restrict the
   range that s->align_xp can take.  Perhaps this could be a variable
   instead. */
#define CACHE_LINE_SIZE    64 /* bytes */

#define SPEED_TMP_ALLOC_ADJUST_MASK  (CACHE_LINE_SIZE/BYTES_PER_MP_LIMB - 1)

#define SPEED_TMP_ALLOC_LIMBS(limbs, align) \
  (speed_tmp_alloc_adjust             \
    (TMP_ALLOC_LIMBS((limbs) + SPEED_TMP_ALLOC_ADJUST_MASK), (align)))


/* This is the size for s->xp_block and s->yp_block, used in certain
   routines that want to run across many different data values and use
   s->size for a different purpose, eg. SPEED_ROUTINE_MPN_GCD_1.

   512 means 2kbytes of data for each of xp_block and yp_block, making 4k
   total, which should fit easily in any L1 data cache. */

#define SPEED_BLOCK_SIZE   512 /* limbs */


extern double  speed_unittime;
extern double  speed_cycletime;
extern int     speed_precision;
extern const char *speed_time_string;
void speed_time_init _PROTO ((void));
void speed_cycletime_init _PROTO ((void));
void speed_cycletime_need_cycles _PROTO ((void));
void speed_cycletime_need_seconds _PROTO ((void));
void speed_starttime _PROTO ((void));
double speed_endtime _PROTO ((void));


struct speed_params {
  unsigned   reps;      /* how many times to run the routine */
  mp_ptr     xp;        /* first argument */
  mp_ptr     yp;        /* second argument */
  mp_size_t  size;      /* size of both arguments */
  mp_limb_t  r;         /* user supplied parameter */
  mp_size_t  align_xp;  /* alignment of xp */
  mp_size_t  align_yp;  /* alignment of yp */
  mp_size_t  align_wp;  /* intended alignment of wp */
  mp_size_t  align_wp2; /* intended alignment of wp2 */
  mp_ptr     xp_block;  /* first special SPEED_BLOCK_SIZE block */
  mp_ptr     yp_block;  /* second special SPEED_BLOCK_SIZE block */

  double     time_divisor; /* optionally set by the speed routine */
  
  /* used by the cache priming things */
  int        cache;
  unsigned   src_num, dst_num;
  struct {
    mp_ptr    ptr;
    mp_size_t size;
  } src[2], dst[3];
};

typedef double (*speed_function_t) _PROTO ((struct speed_params *s));

double speed_measure _PROTO ((speed_function_t fun, struct speed_params *s));

/* Prototypes for speed measuring routines */

double speed_back_to_back (struct speed_params *s);
double speed_count_leading_zeros _PROTO ((struct speed_params *s));
double speed_count_trailing_zeros _PROTO ((struct speed_params *s));
double speed_find_a _PROTO ((struct speed_params *s));
double speed_gmp_allocate_free _PROTO ((struct speed_params *s));
double speed_gmp_allocate_reallocate_free _PROTO ((struct speed_params *s));
double speed_invert_limb _PROTO ((struct speed_params *s));
double speed_malloc_free _PROTO ((struct speed_params *s));
double speed_malloc_realloc_free _PROTO ((struct speed_params *s));
double speed_memcpy _PROTO ((struct speed_params *s));
double speed_modlimb_invert _PROTO ((struct speed_params *s));
double speed_modlimb_invert_mul1 _PROTO ((struct speed_params *s));
double speed_modlimb_invert_loop _PROTO ((struct speed_params *s));
double speed_modlimb_invert_cond _PROTO ((struct speed_params *s));
double speed_modlimb_invert_arith _PROTO ((struct speed_params *s));

double speed_mpf_init_clear _PROTO ((struct speed_params *s));

double speed_mpn_add_n _PROTO ((struct speed_params *s));
double speed_mpn_add_n_self _PROTO ((struct speed_params *s));
double speed_mpn_add_n_inplace _PROTO ((struct speed_params *s));
double speed_mpn_and_n _PROTO ((struct speed_params *s));
double speed_mpn_andn_n _PROTO ((struct speed_params *s));
double speed_mpn_addmul_1 _PROTO ((struct speed_params *s));
double speed_mpn_com_n _PROTO ((struct speed_params *s));
double speed_mpn_copyd _PROTO ((struct speed_params *s));
double speed_mpn_copyi _PROTO ((struct speed_params *s));
double speed_mpn_dc_divrem_n _PROTO ((struct speed_params *s));
double speed_mpn_dc_divrem_sb _PROTO ((struct speed_params *s));
double speed_mpn_dc_divrem_sb_div _PROTO ((struct speed_params *s));
double speed_mpn_dc_divrem_sb_inv _PROTO ((struct speed_params *s));
double speed_mpn_dc_tdiv_qr _PROTO ((struct speed_params *s));
double speed_MPN_COPY _PROTO ((struct speed_params *s));
double speed_MPN_COPY_DECR _PROTO ((struct speed_params *s));
double speed_MPN_COPY_INCR _PROTO ((struct speed_params *s));
double speed_mpn_divexact_1 _PROTO ((struct speed_params *s));
double speed_mpn_divexact_by3 _PROTO ((struct speed_params *s));
double speed_mpn_divrem_1 _PROTO ((struct speed_params *s));
double speed_mpn_divrem_1f _PROTO ((struct speed_params *s));
double speed_mpn_divrem_1c _PROTO ((struct speed_params *s));
double speed_mpn_divrem_1cf _PROTO ((struct speed_params *s));
double speed_mpn_divrem_1_div _PROTO ((struct speed_params *s));
double speed_mpn_divrem_1f_div _PROTO ((struct speed_params *s));
double speed_mpn_divrem_1_inv _PROTO ((struct speed_params *s));
double speed_mpn_divrem_1f_inv _PROTO ((struct speed_params *s));
double speed_mpn_divrem_2 _PROTO ((struct speed_params *s));
double speed_mpn_divrem_2_div _PROTO ((struct speed_params *s));
double speed_mpn_divrem_2_inv _PROTO ((struct speed_params *s));
double speed_mpn_fib2_ui _PROTO ((struct speed_params *s));
double speed_mpn_gcd _PROTO ((struct speed_params *s));
double speed_mpn_gcd_finda _PROTO ((struct speed_params *s));
double speed_mpn_gcd_1 _PROTO ((struct speed_params *s));
double speed_mpn_gcd_1N _PROTO ((struct speed_params *s));
double speed_mpn_gcd_binary _PROTO ((struct speed_params *s));
double speed_mpn_gcd_finda _PROTO ((struct speed_params *s));
double speed_mpn_gcdext _PROTO ((struct speed_params *s));
double speed_mpn_gcdext_double _PROTO ((struct speed_params *s));
double speed_mpn_gcdext_one_double _PROTO ((struct speed_params *s));
double speed_mpn_gcdext_one_single _PROTO ((struct speed_params *s));
double speed_mpn_gcdext_single _PROTO ((struct speed_params *s));
double speed_mpn_get_str _PROTO ((struct speed_params *s));
double speed_mpn_hamdist _PROTO ((struct speed_params *s));
double speed_mpn_ior_n _PROTO ((struct speed_params *s));
double speed_mpn_iorn_n _PROTO ((struct speed_params *s));
double speed_mpn_jacobi_base _PROTO ((struct speed_params *s));
double speed_mpn_kara_mul_n _PROTO ((struct speed_params *s));
double speed_mpn_kara_sqr_n _PROTO ((struct speed_params *s));
double speed_mpn_lshift _PROTO ((struct speed_params *s));
double speed_mpn_mod_1 _PROTO ((struct speed_params *s));
double speed_mpn_mod_1c _PROTO ((struct speed_params *s));
double speed_mpn_mod_1_div _PROTO ((struct speed_params *s));
double speed_mpn_mod_1_inv _PROTO ((struct speed_params *s));
double speed_mpn_modexact_1_odd _PROTO ((struct speed_params *s));
double speed_mpn_modexact_1c_odd _PROTO ((struct speed_params *s));
double speed_mpn_mul_1 _PROTO ((struct speed_params *s));
double speed_mpn_mul_2 _PROTO ((struct speed_params *s));
double speed_mpn_mul_basecase _PROTO ((struct speed_params *s));
double speed_mpn_mul_fft _PROTO ((struct speed_params *s));
double speed_mpn_mul_fft_sqr _PROTO ((struct speed_params *s));
double speed_mpn_mul_fft_full _PROTO ((struct speed_params *s));
double speed_mpn_mul_fft_full_sqr _PROTO ((struct speed_params *s));
double speed_mpn_mul_n _PROTO ((struct speed_params *s));
double speed_mpn_mul_n_sqr _PROTO ((struct speed_params *s));
double speed_mpn_nand_n _PROTO ((struct speed_params *s));
double speed_mpn_nior_n _PROTO ((struct speed_params *s));
double speed_mpn_popcount _PROTO ((struct speed_params *s));
double speed_mpn_preinv_mod_1 _PROTO ((struct speed_params *s));
double speed_redc _PROTO ((struct speed_params *s));
double speed_mpn_rshift _PROTO ((struct speed_params *s));
double speed_mpn_sb_divrem_m3 _PROTO ((struct speed_params *s));
double speed_mpn_sb_divrem_m3_div _PROTO ((struct speed_params *s));
double speed_mpn_sb_divrem_m3_inv _PROTO ((struct speed_params *s));
double speed_mpn_set_str _PROTO ((struct speed_params *s));
double speed_mpn_sqr_basecase _PROTO ((struct speed_params *s));
double speed_mpn_sqr_diagonal _PROTO ((struct speed_params *s));
double speed_mpn_sqr_n _PROTO ((struct speed_params *s));
double speed_mpn_sqrtrem _PROTO ((struct speed_params *s));
double speed_mpn_sub_n _PROTO ((struct speed_params *s));
double speed_mpn_submul_1 _PROTO ((struct speed_params *s));
double speed_mpn_toom3_mul_n _PROTO ((struct speed_params *s));
double speed_mpn_toom3_mul_n_mpn _PROTO ((struct speed_params *s));
double speed_mpn_toom3_mul_n_open _PROTO ((struct speed_params *s));
double speed_mpn_toom3_sqr_n _PROTO ((struct speed_params *s));
double speed_mpn_toom3_sqr_n_mpn _PROTO ((struct speed_params *s));
double speed_mpn_toom3_sqr_n_open _PROTO ((struct speed_params *s));
double speed_mpn_udiv_qrnnd _PROTO ((struct speed_params *s));
double speed_mpn_umul_ppmm _PROTO ((struct speed_params *s));
double speed_mpn_xnor_n _PROTO ((struct speed_params *s));
double speed_mpn_xor_n _PROTO ((struct speed_params *s));
double speed_MPN_ZERO _PROTO ((struct speed_params *s));

double speed_mpq_init_clear _PROTO ((struct speed_params *s));

double speed_mpz_add _PROTO ((struct speed_params *s));
double speed_mpz_bin_uiui _PROTO ((struct speed_params *s));
double speed_mpz_fac_ui _PROTO ((struct speed_params *s));
double speed_mpz_fib_ui _PROTO ((struct speed_params *s));
double speed_mpz_fib2_ui _PROTO ((struct speed_params *s));
double speed_mpz_init_clear _PROTO ((struct speed_params *s));
double speed_mpz_init_realloc_clear _PROTO ((struct speed_params *s));
double speed_mpz_jacobi _PROTO ((struct speed_params *s));
double speed_mpz_lucnum_ui _PROTO ((struct speed_params *s));
double speed_mpz_lucnum2_ui _PROTO ((struct speed_params *s));
double speed_mpz_mod _PROTO ((struct speed_params *s));
double speed_mpz_powm _PROTO ((struct speed_params *s));
double speed_mpz_powm_mod _PROTO ((struct speed_params *s));
double speed_mpz_powm_redc _PROTO ((struct speed_params *s));
double speed_mpz_powm_ui _PROTO ((struct speed_params *s));

double speed_noop _PROTO ((struct speed_params *s));
double speed_noop_wxs _PROTO ((struct speed_params *s));
double speed_noop_wxys _PROTO ((struct speed_params *s));

double speed_operator_div (struct speed_params *s);
double speed_operator_mod (struct speed_params *s);

double speed_udiv_qrnnd _PROTO ((struct speed_params *s));
double speed_udiv_qrnnd_preinv _PROTO ((struct speed_params *s));
double speed_udiv_qrnnd_preinv2norm _PROTO ((struct speed_params *s));
double speed_udiv_qrnnd_c _PROTO ((struct speed_params *s));
double speed_umul_ppmm _PROTO ((struct speed_params *s));


/* Prototypes for other routines */

/* low 32-bits in p[0], high 32-bits in p[1] */
void speed_cyclecounter _PROTO ((unsigned p[2]));

/* In i386 gcc -fPIC, ebx is a fixed register and can't be declared a dummy
   output or a clobber for the cpuid, hence an explicit save and restore.  A
   clobber as such doesn't provoke an error unfortunately (gcc 3.0), so use
   the dummy output style in non-PIC, so there's an error if somehow -fPIC
   is used without a -DPIC to tell us about it.  */
#if defined(__GNUC__) && ! defined (NO_ASM)     \
  && (defined (__i386__) || defined (__i486__))
#ifdef PIC
#define speed_cyclecounter(p)                                           \
  do {                                                                  \
    int  __speed_cyclecounter__save_ebx;                                \
    int  __speed_cyclecounter__dummy;                                   \
    __asm__ __volatile__ ("movl %%ebx, %1\n"                            \
                          "cpuid\n"                                     \
                          "movl %1, %%ebx\n"                            \
                          "rdtsc"                                       \
                          : "=a"   ((p)[0]),                            \
                            "=&rm" (__speed_cyclecounter__save_ebx),    \
                            "=c"   (__speed_cyclecounter__dummy),       \
                            "=d"   ((p)[1]));                           \
  } while (0)
#else
#define speed_cyclecounter(p)                                           \
  do {                                                                  \
    int  __speed_cyclecounter__dummy1;                                  \
    int  __speed_cyclecounter__dummy2;                                  \
    __asm__ __volatile__ ("cpuid\n"                                     \
                          "rdtsc"                                       \
                          : "=a" ((p)[0]),                              \
                            "=b" (__speed_cyclecounter__dummy1),        \
                            "=c" (__speed_cyclecounter__dummy2),        \
                            "=d" ((p)[1]));                             \
  } while (0)
#endif
#endif

double speed_cyclecounter_diff _PROTO ((const unsigned end[2],
                                        const unsigned start[2]));
int gettimeofday_microseconds_p _PROTO ((void));
int getrusage_microseconds_p _PROTO ((void));
int cycles_works_p _PROTO ((void));

int double_cmp_ptr _PROTO ((const double *p, const double *q));
void pentium_wbinvd _PROTO ((void));
typedef int (*qsort_function_t) _PROTO ((const void *, const void *));

void noop _PROTO ((void));
void noop_1 _PROTO ((mp_limb_t n));
void noop_wxs _PROTO ((mp_ptr wp, mp_srcptr xp, mp_size_t size));
void noop_wxys _PROTO ((mp_ptr wp, mp_srcptr xp, mp_srcptr yp,
                        mp_size_t size));
void mpn_cache_fill _PROTO ((mp_srcptr ptr, mp_size_t size));
void mpn_cache_fill_dummy _PROTO ((mp_limb_t n));
mp_ptr speed_tmp_alloc_adjust _PROTO ((void *ptr, mp_size_t align));
void speed_cache_fill _PROTO ((struct speed_params *s));
void speed_operand_src _PROTO ((struct speed_params *s,
                                mp_ptr ptr, mp_size_t size));
void speed_operand_dst _PROTO ((struct speed_params *s,
                                mp_ptr ptr, mp_size_t size));

extern int  speed_option_addrs;
extern int  speed_option_verbose;
void speed_option_set _PROTO((const char *s));

mp_limb_t mpn_divrem_1_div _PROTO ((mp_ptr qp, mp_size_t xsize,
                                    mp_srcptr ap, mp_size_t size,
                                    mp_limb_t d));
mp_limb_t mpn_divrem_1_inv _PROTO ((mp_ptr qp, mp_size_t xsize,
                                    mp_srcptr ap, mp_size_t size,
                                    mp_limb_t d));
mp_limb_t mpn_divrem_2_div _PROTO ((mp_ptr qp, mp_size_t qxn,
                                    mp_ptr np, mp_size_t nsize,
                                    mp_srcptr dp));
mp_limb_t mpn_divrem_2_inv _PROTO ((mp_ptr qp, mp_size_t qxn,
                                    mp_ptr np, mp_size_t nsize,
                                    mp_srcptr dp));
mp_limb_t mpn_mod_1_div _PROTO ((mp_srcptr ap, mp_size_t size, mp_limb_t d));
mp_limb_t mpn_mod_1_inv _PROTO ((mp_srcptr ap, mp_size_t size, mp_limb_t d));

mp_size_t mpn_gcd_binary
  _PROTO ((mp_ptr gp, mp_ptr up, mp_size_t usize, mp_ptr vp, mp_size_t vsize));
mp_size_t mpn_gcdext_one_double
  _PROTO ((mp_ptr gp, mp_ptr s0p, mp_size_t *s0size,
           mp_ptr up, mp_size_t size, mp_ptr vp, mp_size_t vsize));
mp_size_t mpn_gcdext_one_single
  _PROTO ((mp_ptr gp, mp_ptr s0p, mp_size_t *s0size,
           mp_ptr up, mp_size_t size, mp_ptr vp, mp_size_t vsize));
mp_size_t mpn_gcdext_single
  _PROTO ((mp_ptr gp, mp_ptr s0p, mp_size_t *s0size,
           mp_ptr up, mp_size_t size, mp_ptr vp, mp_size_t vsize));
mp_size_t mpn_gcdext_double
  _PROTO ((mp_ptr gp, mp_ptr s0p, mp_size_t *s0size,
           mp_ptr up, mp_size_t size, mp_ptr vp, mp_size_t vsize));

mp_limb_t mpn_sb_divrem_mn_div _PROTO ((mp_ptr qp,
                                        mp_ptr np,    mp_size_t nsize,
                                        mp_srcptr dp, mp_size_t dsize));
mp_limb_t mpn_sb_divrem_mn_inv _PROTO ((mp_ptr qp,
                                        mp_ptr np,    mp_size_t nsize,
                                        mp_srcptr dp, mp_size_t dsize));
void mpn_toom3_mul_n_open _PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t,
                                   mp_ptr));
void mpn_toom3_sqr_n_open _PROTO ((mp_ptr, mp_srcptr, mp_size_t, mp_ptr));
void mpn_toom3_mul_n_mpn _PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t,
                                  mp_ptr));
void mpn_toom3_sqr_n_mpn _PROTO((mp_ptr, mp_srcptr, mp_size_t, mp_ptr));

void mpz_powm_mod _PROTO ((mpz_ptr res, mpz_srcptr base, mpz_srcptr e,
                           mpz_srcptr mod));
void mpz_powm_redc _PROTO ((mpz_ptr res, mpz_srcptr base, mpz_srcptr e,
                            mpz_srcptr mod));
void redc _PROTO ((mp_ptr cp, mp_srcptr mp, mp_size_t n, mp_limb_t Nprim,
                   mp_ptr tp));

int speed_routine_count_zeros_setup _PROTO ((struct speed_params *s,
                                             mp_ptr xp, int leading,
                                             int zero));

/* The measuring routines use these big macros to save duplication for
   similar forms.  They also get used for some automatically generated
   measuring of new implementations of functions.

   Having something like SPEED_ROUTINE_BINARY_N as a subroutine accepting a
   function pointer is considered undesirable since it's not the way a
   normal application will be calling, and some processors might do
   different things with an indirect call, like not branch predicting, or
   doing a full pipe flush.  At least some of the "functions" measured are
   actually macros too.

   The net effect is to bloat the object code, possibly in a big way, but
   only what's being measured is being run, so that doesn't matter.  */


#define SPEED_RESTRICT_COND(cond)   if (!(cond)) return -1.0;

/* For mpn_copy or similar. */
#define SPEED_ROUTINE_MPN_COPY_CALL(call)               \
  {                                                     \
    mp_ptr    wp;                                       \
    unsigned  i;                                        \
    double    t;                                        \
    TMP_DECL (marker);                                  \
                                                        \
    SPEED_RESTRICT_COND (s->size >= 0);                 \
                                                        \
    TMP_MARK (marker);                                  \
    wp = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp);  \
                                                        \
    speed_operand_src (s, s->xp, s->size);              \
    speed_operand_dst (s, wp, s->size);                 \
    speed_cache_fill (s);                               \
                                                        \
    speed_starttime ();                                 \
    i = s->reps;                                        \
    do                                                  \
      call;                                             \
    while (--i != 0);                                   \
    t = speed_endtime ();                               \
                                                        \
    TMP_FREE (marker);                                  \
    return t;                                           \
  }  

#define SPEED_ROUTINE_MPN_COPY(function) \
  SPEED_ROUTINE_MPN_COPY_CALL(function (wp, s->xp, s->size))
#define SPEED_ROUTINE_MPN_COPYC(function) \
  SPEED_ROUTINE_MPN_COPY_CALL(function (wp, s->xp, s->size, 0))


/* For mpn_add_n, mpn_sub_n, or similar. */
#define SPEED_ROUTINE_MPN_BINARY_N_CALL(call)           \
  {                                                     \
    mp_ptr    wp;                                       \
    unsigned  i;                                        \
    double    t;                                        \
    TMP_DECL (marker);                                  \
                                                        \
    SPEED_RESTRICT_COND (s->size >= 1);                 \
                                                        \
    TMP_MARK (marker);                                  \
    wp = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp);  \
                                                        \
    speed_operand_src (s, s->xp, s->size);              \
    speed_operand_src (s, s->yp, s->size);              \
    speed_operand_dst (s, wp, s->size);                 \
    speed_cache_fill (s);                               \
                                                        \
    speed_starttime ();                                 \
    i = s->reps;                                        \
    do                                                  \
      call;                                             \
    while (--i != 0);                                   \
    t = speed_endtime ();                               \
                                                        \
    TMP_FREE (marker);                                  \
    return t;                                           \
  }  

#define SPEED_ROUTINE_MPN_BINARY_N(function) \
   SPEED_ROUTINE_MPN_BINARY_N_CALL ((*function) (wp, s->xp, s->yp, s->size))

#define SPEED_ROUTINE_MPN_BINARY_NC(function) \
   SPEED_ROUTINE_MPN_BINARY_N_CALL ((*function) (wp, s->xp, s->yp, s->size, 0))

#define SPEED_ROUTINE_MPN_BINARY_N_SELF(function) \
   SPEED_ROUTINE_MPN_BINARY_N_CALL ((*function) (wp, s->xp, s->xp, s->size))

#define SPEED_ROUTINE_MPN_BINARY_N_INPLACE(function) \
   SPEED_ROUTINE_MPN_BINARY_N_CALL ((*function) (wp, wp, s->xp, s->size))


/* For mpn_lshift, mpn_rshift, mpn_mul_1, with r, or similar. */
#define SPEED_ROUTINE_MPN_UNARY_1_CALL(call)            \
  {                                                     \
    mp_ptr    wp;                                       \
    unsigned  i;                                        \
    double    t;                                        \
    TMP_DECL (marker);                                  \
                                                        \
    SPEED_RESTRICT_COND (s->size >= 1);                 \
                                                        \
    TMP_MARK (marker);                                  \
    wp = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp);  \
                                                        \
    speed_operand_src (s, s->xp, s->size);              \
    speed_operand_dst (s, wp, s->size);                 \
    speed_cache_fill (s);                               \
                                                        \
    speed_starttime ();                                 \
    i = s->reps;                                        \
    do                                                  \
      call;                                             \
    while (--i != 0);                                   \
    t = speed_endtime ();                               \
                                                        \
    TMP_FREE (marker);                                  \
    return t;                                           \
  }  

#define SPEED_ROUTINE_MPN_UNARY_1(function) \
  SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, s->xp, s->size, s->r))

#define SPEED_ROUTINE_MPN_UNARY_1C(function) \
  SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, s->xp, s->size, s->r, 0))

#define SPEED_ROUTINE_MPN_DIVEXACT_1(function)                            \
  SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, s->xp, s->size, s->r))

#define SPEED_ROUTINE_MPN_DIVREM_1(function) \
  SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, 0, s->xp, s->size, s->r))

#define SPEED_ROUTINE_MPN_DIVREM_1C(function) \
  SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, 0, s->xp, s->size, s->r, 0))

#define SPEED_ROUTINE_MPN_DIVREM_1F(function) \
  SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, s->size, s->xp, 0, s->r))

#define SPEED_ROUTINE_MPN_DIVREM_1CF(function) \
  SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, s->size, s->xp, 0, s->r, 0))


/* For mpn_lshift, mpn_rshift, mpn_mul_1, with r, or similar. */
#define SPEED_ROUTINE_MPN_UNARY_2_CALL(call)                    \
  {                                                             \
    mp_ptr     wp;                                              \
    unsigned   i;                                               \
    double     t;                                               \
    mp_limb_t  h, l;                                            \
    TMP_DECL (marker);                                          \
                                                                \
    SPEED_RESTRICT_COND (s->size >= 1);                         \
                                                                \
    TMP_MARK (marker);                                          \
    wp = SPEED_TMP_ALLOC_LIMBS (s->size+1, s->align_wp);        \
    l = s->yp[0];                                               \
    h = s->yp[1];                                               \
                                                                \
    speed_operand_src (s, s->xp, s->size);                      \
    speed_operand_dst (s, wp, s->size+1);                       \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      call;                                                     \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
    return t;                                                   \
  }  

#define SPEED_ROUTINE_MPN_UNARY_2(function) \
  SPEED_ROUTINE_MPN_UNARY_2_CALL ((*function) (wp, s->xp, s->size, l, h))


/* For mpn_mul_basecase, xsize=r, ysize=s->size. */
#define SPEED_ROUTINE_MPN_MUL_BASECASE(function)                \
  {                                                             \
    mp_ptr    wp;                                               \
    mp_size_t  size1;                                           \
    unsigned  i;                                                \
    double    t;                                                \
    TMP_DECL (marker);                                          \
                                                                \
    size1 = (s->r == 0 ? s->size : s->r);                       \
                                                                \
    SPEED_RESTRICT_COND (s->size >= 1);                         \
    SPEED_RESTRICT_COND (size1 >= s->size);                     \
                                                                \
    TMP_MARK (marker);                                          \
    wp = SPEED_TMP_ALLOC_LIMBS (size1 + s->size, s->align_wp);  \
                                                                \
    speed_operand_src (s, s->xp, size1);                        \
    speed_operand_src (s, s->yp, s->size);                      \
    speed_operand_dst (s, wp, size1 + s->size);                 \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      function (wp, s->xp, size1, s->yp, s->size);              \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
    return t;                                                   \
  }  


#define SPEED_ROUTINE_MPN_MUL_N_CALL(call)                      \
  {                                                             \
    mp_ptr    wp;                                               \
    unsigned  i;                                                \
    double    t;                                                \
    TMP_DECL (marker);                                          \
                                                                \
    SPEED_RESTRICT_COND (s->size >= 1);                         \
                                                                \
    TMP_MARK (marker);                                          \
    wp = SPEED_TMP_ALLOC_LIMBS (2*s->size, s->align_wp);        \
                                                                \
    speed_operand_src (s, s->xp, s->size);                      \
    speed_operand_src (s, s->yp, s->size);                      \
    speed_operand_dst (s, wp, 2*s->size);                       \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      call;                                                     \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
    return t;                                                   \
  }  

#define SPEED_ROUTINE_MPN_MUL_N(function) \
  SPEED_ROUTINE_MPN_MUL_N_CALL (function (wp, s->xp, s->yp, s->size));


#define SPEED_ROUTINE_MPN_MUL_N_TSPACE(call, tsize, minsize)    \
  {                                                             \
    mp_ptr    wp, tspace;                                       \
    unsigned  i;                                                \
    double    t;                                                \
    TMP_DECL (marker);                                          \
                                                                \
    SPEED_RESTRICT_COND (s->size >= minsize);                   \
                                                                \
    TMP_MARK (marker);                                          \
    wp = SPEED_TMP_ALLOC_LIMBS (2*s->size, s->align_wp);        \
    tspace = SPEED_TMP_ALLOC_LIMBS (tsize, s->align_wp2);       \
                                                                \
    speed_operand_src (s, s->xp, s->size);                      \
    speed_operand_src (s, s->yp, s->size);                      \
    speed_operand_dst (s, wp, 2*s->size);                       \
    speed_operand_dst (s, tspace, tsize);                       \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      call;                                                     \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
    return t;                                                   \
  }  

#define SPEED_ROUTINE_MPN_KARA_MUL_N(function)          \
  SPEED_ROUTINE_MPN_MUL_N_TSPACE                        \
    (function (wp, s->xp, s->xp, s->size, tspace),      \
     MPN_KARA_MUL_N_TSIZE (s->size),                    \
     MPN_KARA_MUL_N_MINSIZE)

#define SPEED_ROUTINE_MPN_TOOM3_MUL_N(function)         \
  SPEED_ROUTINE_MPN_MUL_N_TSPACE                        \
    (function (wp, s->xp, s->yp, s->size, tspace),      \
     MPN_TOOM3_MUL_N_TSIZE (s->size),                   \
     MPN_TOOM3_MUL_N_MINSIZE)


#define SPEED_ROUTINE_MPN_SQR_CALL(call)                        \
  {                                                             \
    mp_ptr    wp;                                               \
    unsigned  i;                                                \
    double    t;                                                \
    TMP_DECL (marker);                                          \
                                                                \
    SPEED_RESTRICT_COND (s->size >= 1);                         \
                                                                \
    TMP_MARK (marker);                                          \
    wp = SPEED_TMP_ALLOC_LIMBS (2*s->size, s->align_wp);        \
                                                                \
    speed_operand_src (s, s->xp, s->size);                      \
    speed_operand_dst (s, wp, 2*s->size);                       \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      call;                                                     \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
    return t;                                                   \
  }  

#define SPEED_ROUTINE_MPN_SQR(function) \
  SPEED_ROUTINE_MPN_SQR_CALL (function (wp, s->xp, s->size))

#define SPEED_ROUTINE_MPN_SQR_DIAGONAL(function) \
  SPEED_ROUTINE_MPN_SQR (function)


#define SPEED_ROUTINE_MPN_SQR_TSPACE(call, tsize, minsize)      \
  {                                                             \
    mp_ptr    wp, tspace;                                       \
    unsigned  i;                                                \
    double    t;                                                \
    TMP_DECL (marker);                                          \
                                                                \
    SPEED_RESTRICT_COND (s->size >= minsize);                   \
                                                                \
    TMP_MARK (marker);                                          \
    wp = SPEED_TMP_ALLOC_LIMBS (2*s->size, s->align_wp);        \
    tspace = SPEED_TMP_ALLOC_LIMBS (tsize, s->align_wp2);       \
                                                                \
    speed_operand_src (s, s->xp, s->size);                      \
    speed_operand_dst (s, wp, 2*s->size);                       \
    speed_operand_dst (s, tspace, tsize);                       \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      call;                                                     \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
    return t;                                                   \
  }  

#define SPEED_ROUTINE_MPN_KARA_SQR_N(function)                          \
  SPEED_ROUTINE_MPN_SQR_TSPACE (function (wp, s->xp, s->size, tspace),  \
                                MPN_KARA_SQR_N_TSIZE (s->size),         \
                                MPN_KARA_SQR_N_MINSIZE)

#define SPEED_ROUTINE_MPN_TOOM3_SQR_N(function)                         \
  SPEED_ROUTINE_MPN_SQR_TSPACE (function (wp, s->xp, s->size, tspace),  \
                                MPN_TOOM3_SQR_N_TSIZE (s->size),        \
                                MPN_TOOM3_SQR_N_MINSIZE)


#define SPEED_ROUTINE_MPN_MOD_CALL(call)        \
  {                                             \
    unsigned   i;                               \
                                                \
    SPEED_RESTRICT_COND (s->size >= 0);         \
                                                \
    speed_operand_src (s, s->xp, s->size);      \
    speed_cache_fill (s);                       \
                                                \
    speed_starttime ();                         \
    i = s->reps;                                \
    do                                          \
      call;                                     \
    while (--i != 0);                           \
    return speed_endtime ();                    \
  }  

#define SPEED_ROUTINE_MPN_MOD_1(function)  \
   SPEED_ROUTINE_MPN_MOD_CALL ((*function) (s->xp, s->size, s->r))

#define SPEED_ROUTINE_MPN_MOD_1C(function) \
   SPEED_ROUTINE_MPN_MOD_CALL ((*function)(s->xp, s->size, s->r, CNST_LIMB(0)))

#define SPEED_ROUTINE_MPN_MODEXACT_1_ODD(function) \
  SPEED_ROUTINE_MPN_MOD_CALL (function (s->xp, s->size, s->r));

#define SPEED_ROUTINE_MPN_MODEXACT_1C_ODD(function) \
  SPEED_ROUTINE_MPN_MOD_CALL (function (s->xp, s->size, s->r, CNST_LIMB(0)));


#define SPEED_ROUTINE_MPN_PREINV_MOD_1(function)        \
  {                                                     \
    unsigned   i;                                       \
    mp_limb_t  inv;                                     \
                                                        \
    SPEED_RESTRICT_COND (s->size >= 0);                 \
    SPEED_RESTRICT_COND (s->r & MP_LIMB_T_HIGHBIT);     \
                                                        \
    invert_limb (inv, s->r);                            \
    speed_operand_src (s, s->xp, s->size);              \
    speed_cache_fill (s);                               \
                                                        \
    speed_starttime ();                                 \
    i = s->reps;                                        \
    do                                                  \
      (*function) (s->xp, s->size, s->r, inv);          \
    while (--i != 0);                                   \
    return speed_endtime ();                            \
  }  


/* A division of 2*s->size by s->size limbs */

#define SPEED_ROUTINE_MPN_DC_DIVREM_CALL(call)                  \
  {                                                             \
    unsigned  i;                                                \
    mp_ptr    a, d, q, r;                                       \
    double    t;                                                \
    TMP_DECL (marker);                                          \
                                                                \
    SPEED_RESTRICT_COND (s->size >= 1);                         \
                                                                \
    TMP_MARK (marker);                                          \
    a = SPEED_TMP_ALLOC_LIMBS (2*s->size, s->align_xp);         \
    d = SPEED_TMP_ALLOC_LIMBS (s->size,   s->align_yp);         \
    q = SPEED_TMP_ALLOC_LIMBS (s->size+1, s->align_wp);         \
    r = SPEED_TMP_ALLOC_LIMBS (s->size,   s->align_wp2);        \
                                                                \
    MPN_COPY (a, s->xp, s->size);                               \
    MPN_COPY (a+s->size, s->xp, s->size);                       \
                                                                \
    MPN_COPY (d, s->yp, s->size);                               \
                                                                \
    /* normalize the data */                                    \
    d[s->size-1] |= MP_LIMB_T_HIGHBIT;                          \
    a[2*s->size-1] = d[s->size-1] - 1;                          \
                                                                \
    speed_operand_src (s, a, 2*s->size);                        \
    speed_operand_src (s, d, s->size);                          \
    speed_operand_dst (s, q, s->size+1);                        \
    speed_operand_dst (s, r, s->size);                          \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      call;                                                     \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
    return t;                                                   \
  }  

#define SPEED_ROUTINE_MPN_DC_DIVREM_N(function) \
  SPEED_ROUTINE_MPN_DC_DIVREM_CALL((*function) (q, a, d, s->size))

#define SPEED_ROUTINE_MPN_DC_DIVREM_SB(function)        \
  SPEED_ROUTINE_MPN_DC_DIVREM_CALL                      \
    ((*function) (q, a, 2*s->size, d, s->size))

#define SPEED_ROUTINE_MPN_DC_TDIV_QR(function)          \
  SPEED_ROUTINE_MPN_DC_DIVREM_CALL                      \
    ((*function) (q, r, 0, a, 2*s->size, d, s->size))


/* A division of s->size by 3 limbs */

#define SPEED_ROUTINE_MPN_SB_DIVREM_M3(function)        \
  {                                                     \
    unsigned   i;                                       \
    mp_ptr     a, d, q;                                 \
    mp_size_t  qsize;                                   \
    double     t;                                       \
    TMP_DECL (marker);                                  \
                                                        \
    SPEED_RESTRICT_COND (s->size >= 3);                 \
                                                        \
    TMP_MARK (marker);                                  \
    a = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_xp);   \
                                                        \
    d = SPEED_TMP_ALLOC_LIMBS (3, s->align_yp);         \
    MPN_COPY (d, s->yp, 3);                             \
    d[2] |= MP_LIMB_T_HIGHBIT;                          \
                                                        \
    qsize = s->size - 3;                                \
    q = SPEED_TMP_ALLOC_LIMBS (qsize, s->align_wp);     \
                                                        \
    speed_operand_dst (s, a, s->size);                  \
    speed_operand_src (s, d, 3);                        \
    speed_operand_dst (s, q, qsize);                    \
    speed_cache_fill (s);                               \
                                                        \
    speed_starttime ();                                 \
    i = s->reps;                                        \
    do                                                  \
      {                                                 \
        MPN_COPY (a, s->xp, s->size);                   \
        function (q, a, s->size, d, 3);                 \
      }                                                 \
    while (--i != 0);                                   \
    t = speed_endtime ();                               \
                                                        \
    TMP_FREE (marker);                                  \
    return t;                                           \
  }  


/* A remainder 2*s->size by s->size limbs */

#define SPEED_ROUTINE_MPZ_MOD(function)                         \
  {                                                             \
    unsigned   i;                                               \
    mpz_t      a, d, r;                                         \
                                                                \
    SPEED_RESTRICT_COND (s->size >= 1);                         \
                                                                \
    mpz_init_set_n (d, s->yp, s->size);                         \
                                                                \
    /* high part less than d, low part a duplicate copied in */ \
    mpz_init_set_n (a, s->xp, s->size);                         \
    mpz_mod (a, a, d);                                          \
    mpz_mul_2exp (a, a, BITS_PER_MP_LIMB * s->size);            \
    MPN_COPY (PTR(a), s->xp, s->size);                          \
                                                                \
    mpz_init (r);                                               \
                                                                \
    speed_operand_src (s, PTR(a), SIZ(a));                      \
    speed_operand_src (s, PTR(d), SIZ(d));                      \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      function (r, a, d);                                       \
    while (--i != 0);                                           \
    return speed_endtime ();                                    \
  }  


#define SPEED_ROUTINE_REDC(function)                            \
  {                                                             \
    unsigned   i;                                               \
    mp_ptr     cp, mp, tp, ap;                                  \
    mp_limb_t  Nprim;                                           \
    double     t;                                               \
    TMP_DECL (marker);                                          \
                                                                \
    SPEED_RESTRICT_COND (s->size >= 1);                         \
                                                                \
    TMP_MARK (marker);                                          \
    ap = SPEED_TMP_ALLOC_LIMBS (2*s->size+1, s->align_xp);      \
    mp = SPEED_TMP_ALLOC_LIMBS (s->size,     s->align_yp);      \
    cp = SPEED_TMP_ALLOC_LIMBS (s->size,     s->align_wp);      \
    tp = SPEED_TMP_ALLOC_LIMBS (2*s->size+1, s->align_wp2);     \
                                                                \
    MPN_COPY (ap,         s->xp, s->size);                      \
    MPN_COPY (ap+s->size, s->xp, s->size);                      \
                                                                \
    /* modulus must be odd */                                   \
    MPN_COPY (mp, s->yp, s->size);                              \
    mp[0] |= 1;                                                 \
    modlimb_invert (Nprim, mp[0]);                              \
                                                                \
    speed_operand_src (s, ap, 2*s->size+1);                     \
    speed_operand_dst (s, tp, 2*s->size+1);                     \
    speed_operand_src (s, mp, s->size);                         \
    speed_operand_dst (s, cp, s->size);                         \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do {                                                        \
      MPN_COPY (tp, ap, 2*s->size);                             \
      function (cp, mp, s->size, Nprim, tp);                    \
    } while (--i != 0);                                         \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
    return t;                                                   \
  }  


#define SPEED_ROUTINE_MPN_POPCOUNT(function)    \
  {                                             \
    unsigned  i;                                \
                                                \
    SPEED_RESTRICT_COND (s->size >= 1);         \
                                                \
    speed_operand_src (s, s->xp, s->size);      \
    speed_cache_fill (s);                       \
                                                \
    speed_starttime ();                         \
    i = s->reps;                                \
    do                                          \
      function (s->xp, s->size);                \
    while (--i != 0);                           \
    return speed_endtime ();                    \
  }  

#define SPEED_ROUTINE_MPN_HAMDIST(function)     \
  {                                             \
    unsigned  i;                                \
                                                \
    SPEED_RESTRICT_COND (s->size >= 1);         \
                                                \
    speed_operand_src (s, s->xp, s->size);      \
    speed_operand_src (s, s->yp, s->size);      \
    speed_cache_fill (s);                       \
                                                \
    speed_starttime ();                         \
    i = s->reps;                                \
    do                                          \
      function (s->xp, s->yp, s->size);         \
    while (--i != 0);                           \
    return speed_endtime ();                    \
  }  


#define SPEED_ROUTINE_MPZ_UI(function)  \
  {                                     \
    mpz_t     z;                        \
    unsigned  i;                        \
    double    t;                        \
                                        \
    SPEED_RESTRICT_COND (s->size >= 0); \
                                        \
    mpz_init (z);                       \
                                        \
    speed_starttime ();                 \
    i = s->reps;                        \
    do                                  \
      function (z, s->size);            \
    while (--i != 0);                   \
    t = speed_endtime ();               \
                                        \
    mpz_clear (z);                      \
    return t;                           \
  }  

#define SPEED_ROUTINE_MPZ_FAC_UI(function)    SPEED_ROUTINE_MPZ_UI(function)
#define SPEED_ROUTINE_MPZ_FIB_UI(function)    SPEED_ROUTINE_MPZ_UI(function)
#define SPEED_ROUTINE_MPZ_LUCNUM_UI(function) SPEED_ROUTINE_MPZ_UI(function)


#define SPEED_ROUTINE_MPZ_2_UI(function)        \
  {                                             \
    mpz_t     z, z2;                            \
    unsigned  i;                                \
    double    t;                                \
                                                \
    SPEED_RESTRICT_COND (s->size >= 0);         \
                                                \
    mpz_init (z);                               \
    mpz_init (z2);                              \
                                                \
    speed_starttime ();                         \
    i = s->reps;                                \
    do                                          \
      function (z, z2, s->size);                \
    while (--i != 0);                           \
    t = speed_endtime ();                       \
                                                \
    mpz_clear (z);                              \
    mpz_clear (z2);                             \
    return t;                                   \
  }  

#define SPEED_ROUTINE_MPZ_FIB2_UI(function)    SPEED_ROUTINE_MPZ_2_UI(function)
#define SPEED_ROUTINE_MPZ_LUCNUM2_UI(function) SPEED_ROUTINE_MPZ_2_UI(function)


#define SPEED_ROUTINE_MPN_FIB2_UI(function)             \
  {                                                     \
    mp_ptr     fp, f1p;                                 \
    mp_size_t  alloc;                                   \
    unsigned   i;                                       \
    double     t;                                       \
    TMP_DECL (marker);                                  \
                                                        \
    SPEED_RESTRICT_COND (s->size >= 0);                 \
                                                        \
    TMP_MARK (marker);                                  \
    alloc = MPN_FIB2_SIZE (s->size);                    \
    fp  = SPEED_TMP_ALLOC_LIMBS (alloc, s->align_xp);   \
    f1p = SPEED_TMP_ALLOC_LIMBS (alloc, s->align_yp);   \
                                                        \
    speed_starttime ();                                 \
    i = s->reps;                                        \
    do                                                  \
      function (fp, f1p, s->size);                      \
    while (--i != 0);                                   \
    t = speed_endtime ();                               \
                                                        \
    TMP_FREE (marker);                                  \
    return t;                                           \
  }  



/* Calculate b^e mod m for random b and m of s->size limbs and random e of 6
   limbs.  m is forced to odd so that redc can be used.  e is limited in
   size so the calculation doesn't take too long. */
#define SPEED_ROUTINE_MPZ_POWM(function)        \
  {                                             \
    mpz_t     r, b, e, m;                       \
    unsigned  i;                                \
    double    t;                                \
                                                \
    SPEED_RESTRICT_COND (s->size >= 1);         \
                                                \
    mpz_init (r);                               \
    mpz_init_set_n (b, s->xp, s->size);         \
    mpz_init_set_n (m, s->yp, s->size);         \
    mpz_setbit (m, 0);  /* force m to odd */    \
    mpz_init_set_n (e, s->xp_block, 6);         \
                                                \
    speed_starttime ();                         \
    i = s->reps;                                \
    do                                          \
      function (r, b, e, m);                    \
    while (--i != 0);                           \
    t = speed_endtime ();                       \
                                                \
    mpz_clear (r);                              \
    mpz_clear (b);                              \
    mpz_clear (e);                              \
    mpz_clear (m);                              \
    return t;                                   \
  }  

/* (m-2)^0xAAAAAAAA mod m */
#define SPEED_ROUTINE_MPZ_POWM_UI(function)             \
  {                                                     \
    mpz_t          r, b, m;                             \
    unsigned long  e = (~ (unsigned long) 0) / 3;       \
    unsigned       i;                                   \
    double         t;                                   \
                                                        \
    SPEED_RESTRICT_COND (s->size >= 1);                 \
                                                        \
    mpz_init (r);                                       \
                                                        \
    /* force m to odd */                                \
    mpz_init (m);                                       \
    mpz_set_n (m, s->xp, s->size);                      \
    PTR(m)[0] |= 1;                                     \
                                                        \
    mpz_init_set (b, m);                                \
    mpz_sub_ui (b, b, 2);                               \
/* printf ("%X\n", mpz_get_ui(m)); */                   \
    i = s->reps;                                        \
    speed_starttime ();                                 \
    do                                                  \
      function (r, b, e, m);                            \
    while (--i != 0);                                   \
    t = speed_endtime ();                               \
                                                        \
    mpz_clear (r);                                      \
    mpz_clear (b);                                      \
    mpz_clear (m);                                      \
    return t;                                           \
  }  


#define SPEED_ROUTINE_MPN_ADDSUB_CALL(call)                     \
  {                                                             \
    mp_ptr    wp, wp2, xp, yp;                                  \
    unsigned  i;                                                \
    double    t;                                                \
    TMP_DECL (marker);                                          \
                                                                \
    SPEED_RESTRICT_COND (s->size >= 0);                         \
                                                                \
    TMP_MARK (marker);                                          \
    wp  = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp);         \
    wp2 = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp2);        \
    xp = s->xp;                                                 \
    yp = s->yp;                                                 \
                                                                \
    if (s->r == 0)      ;                                       \
    else if (s->r == 1) { xp = wp;            }                 \
    else if (s->r == 2) {           yp = wp2; }                 \
    else if (s->r == 3) { xp = wp;  yp = wp2; }                 \
    else if (s->r == 4) { xp = wp2; yp = wp;  }                 \
    else {                                                      \
      TMP_FREE (marker);                                        \
      return -1.0;                                              \
    }                                                           \
    if (xp != s->xp) MPN_COPY (xp, s->xp, s->size);             \
    if (yp != s->yp) MPN_COPY (yp, s->yp, s->size);             \
                                                                \
    speed_operand_src (s, xp, s->size);                         \
    speed_operand_src (s, yp, s->size);                         \
    speed_operand_dst (s, wp, s->size);                         \
    speed_operand_dst (s, wp2, s->size);                        \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      call;                                                     \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
    return t;                                                   \
  }

#define SPEED_ROUTINE_MPN_ADDSUB_N(function)    \
  SPEED_ROUTINE_MPN_ADDSUB_CALL                 \
    (function (wp, wp2, xp, yp, s->size));

#define SPEED_ROUTINE_MPN_ADDSUB_NC(function)   \
  SPEED_ROUTINE_MPN_ADDSUB_CALL                 \
    (function (wp, wp2, xp, yp, s->size, 0));


/* Doing an Nx1 gcd with the given r. */
#define SPEED_ROUTINE_MPN_GCD_1N(function)              \
  {                                                     \
    mp_ptr    xp;                                       \
    unsigned  i;                                        \
    double    t;                                        \
    TMP_DECL (marker);                                  \
                                                        \
    SPEED_RESTRICT_COND (s->size >= 1);                 \
    SPEED_RESTRICT_COND (s->r != 0);                    \
                                                        \
    TMP_MARK (marker);                                  \
    xp = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_xp);  \
    MPN_COPY (xp, s->xp, s->size);                      \
    xp[0] |= refmpn_zero_p (xp, s->size);               \
                                                        \
    speed_operand_src (s, s->xp, s->size);              \
    speed_cache_fill (s);                               \
                                                        \
    speed_starttime ();                                 \
    i = s->reps;                                        \
    do                                                  \
      function (xp, s->size, s->r);                     \
    while (--i != 0);                                   \
    t = speed_endtime ();                               \
                                                        \
    TMP_FREE (marker);                                  \
    return t;                                           \
  }  


/* SPEED_BLOCK_SIZE many one GCDs of s->size bits each. */

#define SPEED_ROUTINE_MPN_GCD_1_CALL(setup, call)               \
  {                                                             \
    unsigned  i, j;                                             \
    mp_ptr    px, py;                                           \
    mp_limb_t x_mask, y_mask;                                   \
    double    t;                                                \
    TMP_DECL (marker);                                          \
                                                                \
    SPEED_RESTRICT_COND (s->size >= 1);                         \
    SPEED_RESTRICT_COND (s->size <= mp_bits_per_limb);          \
                                                                \
    TMP_MARK (marker);                                          \
    px = SPEED_TMP_ALLOC_LIMBS (SPEED_BLOCK_SIZE, s->align_xp); \
    py = SPEED_TMP_ALLOC_LIMBS (SPEED_BLOCK_SIZE, s->align_yp); \
    MPN_COPY (px, s->xp_block, SPEED_BLOCK_SIZE);               \
    MPN_COPY (py, s->yp_block, SPEED_BLOCK_SIZE);               \
                                                                \
    x_mask = MP_LIMB_T_LOWBITMASK (s->size);                    \
    y_mask = MP_LIMB_T_LOWBITMASK (s->r != 0 ? s->r : s->size); \
    for (i = 0; i < SPEED_BLOCK_SIZE; i++)                      \
      {                                                         \
        px[i] &= x_mask; px[i] += (px[i] == 0);                 \
        py[i] &= y_mask; py[i] += (py[i] == 0);                 \
        setup;                                                  \
      }                                                         \
                                                                \
    speed_operand_src (s, px, SPEED_BLOCK_SIZE);                \
    speed_operand_src (s, py, SPEED_BLOCK_SIZE);                \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      {                                                         \
        j = SPEED_BLOCK_SIZE;                                   \
        do                                                      \
          {                                                     \
            call;                                               \
          }                                                     \
        while (--j != 0);                                       \
      }                                                         \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
                                                                \
    s->time_divisor = SPEED_BLOCK_SIZE;                         \
    return t;                                                   \
  }  

#define SPEED_ROUTINE_MPN_GCD_1(function) \
  SPEED_ROUTINE_MPN_GCD_1_CALL( , function (&px[j-1], 1, py[j-1]))

#define SPEED_ROUTINE_MPN_JACBASE(function)     \
  SPEED_ROUTINE_MPN_GCD_1_CALL                  \
    ({                                          \
       /* require x<y, y odd, y!=1 */           \
       px[i] %= py[i];                          \
       px[i] |= 1;                              \
       py[i] |= 1;                              \
       if (py[i]==1) py[i]=3;                   \
     },                                         \
     function (px[j-1], py[j-1], 0))


/* Run some GCDs of s->size limbs each.  The number of different data values
   is decreased as s->size**2, since GCD is a quadratic algorithm.
   SPEED_ROUTINE_MPN_GCD runs more times than SPEED_ROUTINE_MPN_GCDEXT
   though, because the plain gcd is about twice as fast as gcdext.  */

#define SPEED_ROUTINE_MPN_GCD_CALL(datafactor, call)            \
  {                                                             \
    unsigned  i;                                                \
    mp_size_t j, pieces, psize;                                 \
    mp_ptr    wp, wp2, xtmp, ytmp, px, py;                      \
    double    t;                                                \
    TMP_DECL (marker);                                          \
                                                                \
    SPEED_RESTRICT_COND (s->size >= 1);                         \
                                                                \
    TMP_MARK (marker);                                          \
    xtmp = SPEED_TMP_ALLOC_LIMBS (s->size+1, s->align_xp);      \
    ytmp = SPEED_TMP_ALLOC_LIMBS (s->size+1, s->align_yp);      \
    wp = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp);          \
    wp2 = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp2);        \
                                                                \
    pieces = SPEED_BLOCK_SIZE * datafactor / s->size / s->size; \
    pieces = MIN (pieces, SPEED_BLOCK_SIZE / s->size);          \
    pieces = MAX (pieces, 1);                                   \
                                                                \
    psize = pieces * s->size;                                   \
    px = TMP_ALLOC_LIMBS (psize);                               \
    py = TMP_ALLOC_LIMBS (psize);                               \
    MPN_COPY (px, pieces==1 ? s->xp : s->xp_block, psize);      \
    MPN_COPY (py, pieces==1 ? s->yp : s->yp_block, psize);      \
                                                                \
    /* y must be odd, x must have at least as many bits as y,   \
       high limbs must be non-zero */                           \
    for (j = 0; j < pieces; j++)                                \
      {                                                         \
        mp_ptr  x = px+j*s->size;                               \
        mp_ptr  y = py+j*s->size;                               \
        y[0] |= 1;                                              \
        if (x[s->size-1] == 0) x[s->size-1] = 1;                \
        if (y[s->size-1] == 0) y[s->size-1] = 1;                \
        x[s->size-1] = MAX (x[s->size-1], y[s->size-1]);        \
      }                                                         \
                                                                \
    speed_operand_src (s, px, psize);                           \
    speed_operand_src (s, py, psize);                           \
    speed_operand_dst (s, xtmp, s->size);                       \
    speed_operand_dst (s, ytmp, s->size);                       \
    speed_operand_dst (s, wp, s->size);                         \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      {                                                         \
        j = pieces;                                             \
        do                                                      \
          {                                                     \
            MPN_COPY (xtmp, px+(j-1)*s->size, s->size);         \
            MPN_COPY (ytmp, py+(j-1)*s->size, s->size);         \
            call;                                               \
          }                                                     \
        while (--j != 0);                                       \
      }                                                         \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
                                                                \
    s->time_divisor = pieces;                                   \
    return t;                                                   \
  }  

#define SPEED_ROUTINE_MPN_GCD(function) \
  SPEED_ROUTINE_MPN_GCD_CALL (8, function (wp, xtmp, s->size, ytmp, s->size))

#define SPEED_ROUTINE_MPN_GCDEXT(function)                               \
  SPEED_ROUTINE_MPN_GCD_CALL                                             \
    (4, { mp_size_t  wp2size;                                            \
          function (wp, wp2, &wp2size, xtmp, s->size, ytmp, s->size); })


#define SPEED_ROUTINE_MPN_GCDEXT_ONE(function)                          \
  {                                                                     \
    unsigned  i;                                                        \
    mp_size_t j, pieces, psize, wp2size;                                \
    mp_ptr    wp, wp2, xtmp, ytmp, px, py;                              \
    double    t;                                                        \
    TMP_DECL (marker);                                                  \
                                                                        \
    SPEED_RESTRICT_COND (s->size >= 1);                                 \
                                                                        \
    TMP_MARK (marker);                                                  \
                                                                        \
    xtmp = SPEED_TMP_ALLOC_LIMBS (s->size+1, s->align_xp);              \
    ytmp = SPEED_TMP_ALLOC_LIMBS (s->size+1, s->align_yp);              \
    MPN_COPY (xtmp, s->xp, s->size);                                    \
    MPN_COPY (ytmp, s->yp, s->size);                                    \
                                                                        \
    wp = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp);                  \
    wp2 = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp2);                \
                                                                        \
    pieces = SPEED_BLOCK_SIZE / 3;                                      \
    psize = 3 * pieces;                                                 \
    px = TMP_ALLOC_LIMBS (psize);                                       \
    py = TMP_ALLOC_LIMBS (psize);                                       \
    MPN_COPY (px, s->xp_block, psize);                                  \
    MPN_COPY (py, s->yp_block, psize);                                  \
                                                                        \
    /* x must have at least as many bits as y,                          \
       high limbs must be non-zero */                                   \
    for (j = 0; j < pieces; j++)                                        \
      {                                                                 \
        mp_ptr  x = px+3*j;                                             \
        mp_ptr  y = py+3*j;                                             \
        x[2] += (x[2] == 0);                                            \
        y[2] += (y[2] == 0);                                            \
        if (x[2] < y[2])                                                \
          MP_LIMB_T_SWAP (x[2], y[2]);                                  \
      }                                                                 \
                                                                        \
    speed_operand_src (s, px, psize);                                   \
    speed_operand_src (s, py, psize);                                   \
    speed_operand_dst (s, xtmp, s->size);                               \
    speed_operand_dst (s, ytmp, s->size);                               \
    speed_operand_dst (s, wp, s->size);                                 \
    speed_cache_fill (s);                                               \
                                                                        \
    speed_starttime ();                                                 \
    i = s->reps;                                                        \
    do                                                                  \
      {                                                                 \
        mp_ptr  x = px;                                                 \
        mp_ptr  y = py;                                                 \
        mp_ptr  xth = &xtmp[s->size-3];                                 \
        mp_ptr  yth = &ytmp[s->size-3];                                 \
        j = pieces;                                                     \
        do                                                              \
          {                                                             \
            xth[0] = x[0], xth[1] = x[1], xth[2] = x[2];                \
            yth[0] = y[0], yth[1] = y[1], yth[2] = y[2];                \
                                                                        \
            ytmp[0] |= 1; /* y must be odd, */                          \
                                                                        \
            function (wp, wp2, &wp2size, xtmp, s->size, ytmp, s->size); \
                                                                        \
            x += 3;                                                     \
            y += 3;                                                     \
          }                                                             \
        while (--j != 0);                                               \
      }                                                                 \
    while (--i != 0);                                                   \
    t = speed_endtime ();                                               \
                                                                        \
    TMP_FREE (marker);                                                  \
                                                                        \
    s->time_divisor = pieces;                                           \
    return t;                                                           \
  }  

#define SPEED_ROUTINE_MPZ_JACOBI(function)                      \
  {                                                             \
    mpz_t     a, b;                                             \
    unsigned  i;                                                \
    mp_size_t j, pieces, psize;                                 \
    mp_ptr    px, py;                                           \
    double    t;                                                \
    TMP_DECL (marker);                                          \
                                                                \
    TMP_MARK (marker);                                          \
    pieces = SPEED_BLOCK_SIZE / MAX (s->size, 1);               \
    pieces = MAX (pieces, 1);                                   \
    s->time_divisor = pieces;                                   \
                                                                \
    psize = pieces * s->size;                                   \
    px = TMP_ALLOC_LIMBS (psize);                               \
    py = TMP_ALLOC_LIMBS (psize);                               \
    MPN_COPY (px, pieces==1 ? s->xp : s->xp_block, psize);      \
    MPN_COPY (py, pieces==1 ? s->yp : s->yp_block, psize);      \
                                                                \
    for (j = 0; j < pieces; j++)                                \
      {                                                         \
        mp_ptr  x = px+j*s->size;                               \
        mp_ptr  y = py+j*s->size;                               \
                                                                \
        /* y odd */                                             \
        y[0] |= 1;                                              \
                                                                \
        /* high limbs non-zero */                               \
        if (x[s->size-1] == 0) x[s->size-1] = 1;                \
        if (y[s->size-1] == 0) y[s->size-1] = 1;                \
      }                                                         \
                                                                \
    SIZ(a) = s->size;                                           \
    SIZ(b) = s->size;                                           \
                                                                \
    speed_operand_src (s, px, psize);                           \
    speed_operand_src (s, py, psize);                           \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      {                                                         \
        j = pieces;                                             \
        do                                                      \
          {                                                     \
            PTR(a) = px+(j-1)*s->size;                          \
            PTR(b) = py+(j-1)*s->size;                          \
            function (a, b);                                    \
          }                                                     \
        while (--j != 0);                                       \
      }                                                         \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
    return t;                                                   \
  }  

#define SPEED_ROUTINE_MPN_DIVREM_2(function)            \
  {                                                     \
    mp_ptr    wp, xp;                                   \
    mp_limb_t yp[2];                                    \
    unsigned  i;                                        \
    double    t;                                        \
    TMP_DECL (marker);                                  \
                                                        \
    SPEED_RESTRICT_COND (s->size >= 2);                 \
                                                        \
    TMP_MARK (marker);                                  \
    xp = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_xp);  \
    wp = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp);  \
                                                        \
    /* source is destroyed */                           \
    MPN_COPY (xp, s->xp, s->size);                      \
                                                        \
    /* divisor must be normalized */                    \
    MPN_COPY (yp, s->yp_block, 2);                      \
    yp[1] |= MP_LIMB_T_HIGHBIT;                         \
                                                        \
    speed_operand_src (s, xp, s->size);                 \
    speed_operand_src (s, yp, 2);                       \
    speed_operand_dst (s, wp, s->size);                 \
    speed_cache_fill (s);                               \
                                                        \
    speed_starttime ();                                 \
    i = s->reps;                                        \
    do                                                  \
      function (wp, 0, xp, s->size, yp);                \
    while (--i != 0);                                   \
    t = speed_endtime ();                               \
                                                        \
    TMP_FREE (marker);                                  \
    return t;                                           \
  }  


#define SPEED_ROUTINE_MODLIMB_INVERT(function)                  \
  {                                                             \
    unsigned   i, j;                                            \
    mp_ptr     xp;                                              \
    mp_limb_t  n = 1;                                           \
    double     t;                                               \
                                                                \
    xp = s->xp_block-1;                                         \
                                                                \
    speed_operand_src (s, s->xp_block, SPEED_BLOCK_SIZE);       \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      {                                                         \
        j = SPEED_BLOCK_SIZE;                                   \
        do                                                      \
          {                                                     \
            /* randomized but successively dependent */         \
            n += (xp[j] << 1);                                  \
                                                                \
            function (n, n);                                    \
          }                                                     \
        while (--j != 0);                                       \
      }                                                         \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    /* make sure the compiler won't optimize away n */          \
    noop_1 (n);                                                 \
                                                                \
    s->time_divisor = SPEED_BLOCK_SIZE;                         \
    return t;                                                   \
  }  


#define SPEED_ROUTINE_MPN_SQRTREM(function)                     \
  {                                                             \
    mp_ptr    wp, wp2;                                          \
    unsigned  i;                                                \
    double    t;                                                \
    TMP_DECL (marker);                                          \
                                                                \
    SPEED_RESTRICT_COND (s->size >= 1);                         \
                                                                \
    TMP_MARK (marker);                                          \
    wp  = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp);         \
    wp2 = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp2);        \
                                                                \
    speed_operand_src (s, s->xp, s->size);                      \
    speed_operand_dst (s, wp, s->size);                         \
    speed_operand_dst (s, wp2, s->size);                        \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      function (wp, wp2, s->xp, s->size);                       \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
    return t;                                                   \
  }  


/* s->size controls the number of limbs in the input, s->r is the base, or
   decimal by default. */
#define SPEED_ROUTINE_MPN_GET_STR(function)                             \
  {                                                                     \
    unsigned char *wp;                                                  \
    mp_size_t    wsize;                                                 \
    mp_ptr    xp;                                                       \
    int       base;                                                     \
    unsigned  i;                                                        \
    double    t;                                                        \
    TMP_DECL (marker);                                                  \
                                                                        \
    SPEED_RESTRICT_COND (s->size >= 1);                                 \
                                                                        \
    base = s->r == 0 ? 10 : s->r;                                       \
    SPEED_RESTRICT_COND (base >= 2 && base <= 255);                     \
                                                                        \
    TMP_MARK (marker);                                                  \
    xp = SPEED_TMP_ALLOC_LIMBS (s->size + 1, s->align_xp);              \
                                                                        \
    wsize = ((mp_size_t) (s->size * BITS_PER_MP_LIMB                    \
                        * __mp_bases[base].chars_per_bit_exactly)) + 2; \
    wp = TMP_ALLOC (wsize);                                             \
                                                                        \
    /* use this during development to guard against overflowing wp */   \
    /*                                                                  \
    MPN_COPY (xp, s->xp, s->size);                                      \
    ASSERT_ALWAYS (mpn_get_str (wp, base, xp, s->size) <= wsize);       \
    */                                                                  \
                                                                        \
    speed_operand_src (s, s->xp, s->size);                              \
    speed_operand_dst (s, xp, s->size);                                 \
    speed_operand_dst (s, (mp_ptr) wp, wsize/BYTES_PER_MP_LIMB);        \
    speed_cache_fill (s);                                               \
                                                                        \
    speed_starttime ();                                                 \
    i = s->reps;                                                        \
    do                                                                  \
      {                                                                 \
        MPN_COPY (xp, s->xp, s->size);                                  \
        function (wp, base, xp, s->size);                               \
      }                                                                 \
    while (--i != 0);                                                   \
    t = speed_endtime ();                                               \
                                                                        \
    TMP_FREE (marker);                                                  \
    return t;                                                           \
  }  

/* s->size controls the number of digits in the input, s->r is the base, or
   decimal by default. */
#define SPEED_ROUTINE_MPN_SET_STR(function)                                  \
  {                                                                          \
    unsigned char *xp;                                                       \
    mp_ptr     wp;                                                           \
    mp_size_t  wsize;                                                        \
    unsigned   i;                                                            \
    int        base;                                                         \
    double     t;                                                            \
    TMP_DECL (marker);                                                       \
                                                                             \
    SPEED_RESTRICT_COND (s->size >= 1);                                      \
                                                                             \
    base = s->r == 0 ? 10 : s->r;                                            \
    SPEED_RESTRICT_COND (base >= 2 && base <= 255);                          \
                                                                             \
    TMP_MARK (marker);                                                       \
                                                                             \
    xp = TMP_ALLOC (s->size);                                                \
    for (i = 0; i < s->size; i++)                                            \
      xp[i] = s->xp[i] % base;                                               \
                                                                             \
    wsize = ((mp_size_t) (s->size / __mp_bases[base].chars_per_bit_exactly)) \
      / BITS_PER_MP_LIMB + 2;                                                \
    wp = SPEED_TMP_ALLOC_LIMBS (wsize, s->align_wp);                         \
                                                                             \
    /* use this during development to check wsize is big enough */           \
    /*                                                                       \
    ASSERT_ALWAYS (mpn_set_str (wp, xp, s->size, base) <= wsize);            \
    */                                                                       \
                                                                             \
    speed_operand_src (s, (mp_ptr) xp, s->size/BYTES_PER_MP_LIMB);           \
    speed_operand_dst (s, wp, s->size);                                      \
    speed_cache_fill (s);                                                    \
                                                                             \
    speed_starttime ();                                                      \
    i = s->reps;                                                             \
    do                                                                       \
      function (wp, xp, s->size, base);                                      \
    while (--i != 0);                                                        \
    t = speed_endtime ();                                                    \
                                                                             \
    TMP_FREE (marker);                                                       \
    return t;                                                                \
  }  


/* Run an accel gcd find_a() function over various data values.  A set of
   values is used in case some run particularly fast or slow.  The size
   parameter is ignored, the amount of data tested is fixed.  */

#define SPEED_ROUTINE_MPN_GCD_FINDA(function)                   \
  {                                                             \
    unsigned  i, j;                                             \
    mp_limb_t cp[SPEED_BLOCK_SIZE][2];                          \
    double    t;                                                \
    TMP_DECL (marker);                                          \
                                                                \
    TMP_MARK (marker);                                          \
                                                                \
    /* low must be odd, high must be non-zero */                \
    for (i = 0; i < SPEED_BLOCK_SIZE; i++)                      \
      {                                                         \
        cp[i][0] = s->xp_block[i] | 1;                          \
        cp[i][1] = s->yp_block[i] + (s->yp_block[i] == 0);      \
      }                                                         \
                                                                \
    speed_operand_src (s, &cp[0][0], 2*SPEED_BLOCK_SIZE);       \
    speed_cache_fill (s);                                       \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      {                                                         \
        j = SPEED_BLOCK_SIZE;                                   \
        do                                                      \
          {                                                     \
            function (cp[j-1]);                                 \
          }                                                     \
        while (--j != 0);                                       \
      }                                                         \
    while (--i != 0);                                           \
    t = speed_endtime ();                                       \
                                                                \
    TMP_FREE (marker);                                          \
                                                                \
    s->time_divisor = SPEED_BLOCK_SIZE;                         \
    return t;                                                   \
  }  


/* "call" should do "count_foo_zeros(c,n)".
   Give leading=1 if foo is leading zeros, leading=0 for trailing.
   Give zero=1 if n=0 is allowed in the call, zero=0 if not.  */

#define SPEED_ROUTINE_COUNT_ZEROS_C(call, leading, zero)                \
  {                                                                     \
    mp_ptr     xp;                                                      \
    int        i, c;                                                    \
    unsigned   j;                                                       \
    mp_limb_t  n;                                                       \
    double     t;                                                       \
    TMP_DECL (marker);                                                  \
                                                                        \
    TMP_MARK (marker);                                                  \
    xp = SPEED_TMP_ALLOC_LIMBS (SPEED_BLOCK_SIZE, s->align_xp);         \
                                                                        \
    if (! speed_routine_count_zeros_setup (s, xp, leading, zero))       \
      return -1.0;                                                      \
    speed_operand_src (s, xp, SPEED_BLOCK_SIZE);                        \
    speed_cache_fill (s);                                               \
                                                                        \
    c = 0;                                                              \
    speed_starttime ();                                                 \
    j = s->reps;                                                        \
    do {                                                                \
      for (i = 0; i < SPEED_BLOCK_SIZE; i++)                            \
        {                                                               \
          n = xp[i];                                                    \
          n ^= c;                                                       \
          call;                                                         \
        }                                                               \
    } while (--j != 0);                                                 \
    t = speed_endtime ();                                               \
                                                                        \
    /* don't let c go dead */                                           \
    noop_1 (c);                                                         \
                                                                        \
    s->time_divisor = SPEED_BLOCK_SIZE;                                 \
                                                                        \
    TMP_FREE (marker);                                                  \
    return t;                                                           \
  }                                                                     \
  
#define SPEED_ROUTINE_COUNT_LEADING_ZEROS_C(call,zero)  \
  SPEED_ROUTINE_COUNT_ZEROS_C (call, 1, zero)
#define SPEED_ROUTINE_COUNT_LEADING_ZEROS(fun)          \
  SPEED_ROUTINE_COUNT_ZEROS_C (fun (c, n), 1, 0)

#define SPEED_ROUTINE_COUNT_TRAILING_ZEROS_C(call,zero) \
  SPEED_ROUTINE_COUNT_ZEROS_C (call, 0, zero)
#define SPEED_ROUTINE_COUNT_TRAILING_ZEROS(call)        \
  SPEED_ROUTINE_COUNT_ZEROS_C (fun (c, n), 0, 0)


#define SPEED_ROUTINE_INVERT_LIMB_CALL(call)                    \
  {                                                             \
    unsigned   i, j;                                            \
    mp_limb_t  d, dinv=0;                                       \
    mp_ptr     xp = s->xp_block - 1;                            \
                                                                \
    s->time_divisor = SPEED_BLOCK_SIZE;                         \
                                                                \
    speed_starttime ();                                         \
    i = s->reps;                                                \
    do                                                          \
      {                                                         \
        j = SPEED_BLOCK_SIZE;                                   \
        do                                                      \
          {                                                     \
            d = dinv ^ xp[j];                                   \
            d |= MP_LIMB_T_HIGHBIT;                             \
            do { call; } while (0);                             \
          }                                                     \
        while (--j != 0);                                       \
      }                                                         \
    while (--i != 0);                                           \
                                                                \
    /* don't let the compiler optimize everything away */       \
    noop_1 (dinv);                                              \
                                                                \
    return speed_endtime();                                     \
  }


#endif


#define SPEED_ROUTINE_MPN_BACK_TO(function)     \
  {                                             \
    unsigned  i;                                \
    speed_starttime ();                         \
    i = s->reps;                                \
    do                                          \
      function ();                              \
    while (--i != 0);                           \
    return speed_endtime ();                    \
  }


#define SPEED_ROUTINE_MPN_ZERO_CALL(call)               \
  {                                                     \
    mp_ptr    wp;                                       \
    unsigned  i;                                        \
    double    t;                                        \
    TMP_DECL (marker);                                  \
                                                        \
    SPEED_RESTRICT_COND (s->size >= 0);                 \
                                                        \
    TMP_MARK (marker);                                  \
    wp = SPEED_TMP_ALLOC_LIMBS (s->size, s->align_wp);  \
    speed_operand_dst (s, wp, s->size);                 \
    speed_cache_fill (s);                               \
                                                        \
    speed_starttime ();                                 \
    i = s->reps;                                        \
    do                                                  \
      call;                                             \
    while (--i != 0);                                   \
    t = speed_endtime ();                               \
                                                        \
    TMP_FREE (marker);                                  \
    return t;                                           \
  }  

#define SPEED_ROUTINE_MPN_ZERO(function)                \
  SPEED_ROUTINE_MPN_ZERO_CALL (function (wp, s->size))