speed.h
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:101k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* Header for speed and threshold things.
  2. Copyright 1999, 2000, 2001, 2002, 2003, 2005, 2006, 2008, 2009, 2010 Free
  3. Software Foundation, Inc.
  4. This file is part of the GNU MP Library.
  5. The GNU MP Library is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published by
  7. the Free Software Foundation; either version 3 of the License, or (at your
  8. option) any later version.
  9. The GNU MP Library is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  11. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  12. License for more details.
  13. You should have received a copy of the GNU Lesser General Public License
  14. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  15. #ifndef __SPEED_H__
  16. #define __SPEED_H__
  17. /* Pad ptr,oldsize with zero limbs (at the most significant end) to make it
  18.    newsize long. */
  19. #define MPN_ZERO_EXTEND(ptr, oldsize, newsize)
  20.   do {
  21.     ASSERT ((newsize) >= (oldsize));
  22.     MPN_ZERO ((ptr)+(oldsize), (newsize)-(oldsize));
  23.   } while (0)
  24. /* A mask of the least significant n bits.  Note 1<<32 doesn't give zero on
  25.    x86 family CPUs, hence the separate case for GMP_LIMB_BITS. */
  26. #define MP_LIMB_T_LOWBITMASK(n)
  27.   ((n) == GMP_LIMB_BITS ? MP_LIMB_T_MAX : ((mp_limb_t) 1 << (n)) - 1)
  28. /* align must be a power of 2 here, usually CACHE_LINE_SIZE is a good choice */
  29. #define TMP_ALLOC_ALIGNED(bytes, align)
  30.   align_pointer (TMP_ALLOC ((bytes) + (align)-1), (align))
  31. #define TMP_ALLOC_LIMBS_ALIGNED(limbs, align)
  32.   ((mp_ptr) TMP_ALLOC_ALIGNED ((limbs)*sizeof(mp_limb_t), align))
  33. /* CACHE_LINE_SIZE is our default alignment for speed operands, and the
  34.    limit on what s->align_xp etc and then request for off-alignment.  Maybe
  35.    this should be an option of some sort, but in any case here are some line
  36.    sizes,
  37.        bytes
  38.  32   pentium
  39.  64   athlon
  40.  64   itanium-2 L1
  41. 128   itanium-2 L2
  42. */
  43. #define CACHE_LINE_SIZE   64 /* bytes */
  44. #define SPEED_TMP_ALLOC_ADJUST_MASK  (CACHE_LINE_SIZE/BYTES_PER_MP_LIMB - 1)
  45. /* Set ptr to a TMP_ALLOC block of the given limbs, with the given limb
  46.    alignment.  */
  47. #define SPEED_TMP_ALLOC_LIMBS(ptr, limbs, align)
  48.   do {
  49.     mp_ptr     __ptr;
  50.     mp_size_t  __ptr_align, __ptr_add;
  51.     ASSERT ((CACHE_LINE_SIZE % BYTES_PER_MP_LIMB) == 0);
  52.     __ptr = TMP_ALLOC_LIMBS ((limbs) + SPEED_TMP_ALLOC_ADJUST_MASK);
  53.     __ptr_align = (__ptr - (mp_ptr) NULL);
  54.     __ptr_add = ((align) - __ptr_align) & SPEED_TMP_ALLOC_ADJUST_MASK;
  55.     (ptr) = __ptr + __ptr_add;
  56.   } while (0)
  57. /* This is the size for s->xp_block and s->yp_block, used in certain
  58.    routines that want to run across many different data values and use
  59.    s->size for a different purpose, eg. SPEED_ROUTINE_MPN_GCD_1.
  60.    512 means 2kbytes of data for each of xp_block and yp_block, making 4k
  61.    total, which should fit easily in any L1 data cache. */
  62. #define SPEED_BLOCK_SIZE   512 /* limbs */
  63. extern double  speed_unittime;
  64. extern double  speed_cycletime;
  65. extern int     speed_precision;
  66. extern char    speed_time_string[];
  67. void speed_time_init __GMP_PROTO ((void));
  68. void speed_cycletime_fail __GMP_PROTO ((const char *str));
  69. void speed_cycletime_init __GMP_PROTO ((void));
  70. void speed_cycletime_need_cycles __GMP_PROTO ((void));
  71. void speed_cycletime_need_seconds __GMP_PROTO ((void));
  72. void speed_starttime __GMP_PROTO ((void));
  73. double speed_endtime __GMP_PROTO ((void));
  74. struct speed_params {
  75.   unsigned   reps; /* how many times to run the routine */
  76.   mp_ptr     xp; /* first argument */
  77.   mp_ptr     yp; /* second argument */
  78.   mp_size_t  size; /* size of both arguments */
  79.   mp_limb_t  r; /* user supplied parameter */
  80.   mp_size_t  align_xp; /* alignment of xp */
  81.   mp_size_t  align_yp; /* alignment of yp */
  82.   mp_size_t  align_wp; /* intended alignment of wp */
  83.   mp_size_t  align_wp2; /* intended alignment of wp2 */
  84.   mp_ptr     xp_block; /* first special SPEED_BLOCK_SIZE block */
  85.   mp_ptr     yp_block; /* second special SPEED_BLOCK_SIZE block */
  86.   double     time_divisor; /* optionally set by the speed routine */
  87.   /* used by the cache priming things */
  88.   int      cache;
  89.   unsigned   src_num, dst_num;
  90.   struct {
  91.     mp_ptr    ptr;
  92.     mp_size_t size;
  93.   } src[3], dst[3];
  94. };
  95. typedef double (*speed_function_t) __GMP_PROTO ((struct speed_params *s));
  96. double speed_measure __GMP_PROTO ((speed_function_t fun, struct speed_params *s));
  97. /* Prototypes for speed measuring routines */
  98. double speed_back_to_back __GMP_PROTO ((struct speed_params *s));
  99. double speed_count_leading_zeros __GMP_PROTO ((struct speed_params *s));
  100. double speed_count_trailing_zeros __GMP_PROTO ((struct speed_params *s));
  101. double speed_find_a __GMP_PROTO ((struct speed_params *s));
  102. double speed_gmp_allocate_free __GMP_PROTO ((struct speed_params *s));
  103. double speed_gmp_allocate_reallocate_free __GMP_PROTO ((struct speed_params *s));
  104. double speed_invert_limb __GMP_PROTO ((struct speed_params *s));
  105. double speed_malloc_free __GMP_PROTO ((struct speed_params *s));
  106. double speed_malloc_realloc_free __GMP_PROTO ((struct speed_params *s));
  107. double speed_memcpy __GMP_PROTO ((struct speed_params *s));
  108. double speed_binvert_limb __GMP_PROTO ((struct speed_params *s));
  109. double speed_binvert_limb_mul1 __GMP_PROTO ((struct speed_params *s));
  110. double speed_binvert_limb_loop __GMP_PROTO ((struct speed_params *s));
  111. double speed_binvert_limb_cond __GMP_PROTO ((struct speed_params *s));
  112. double speed_binvert_limb_arith __GMP_PROTO ((struct speed_params *s));
  113. double speed_mpf_init_clear __GMP_PROTO ((struct speed_params *s));
  114. double speed_mpn_add_n __GMP_PROTO ((struct speed_params *s));
  115. double speed_mpn_addlsh1_n __GMP_PROTO ((struct speed_params *s));
  116. double speed_mpn_addlsh2_n __GMP_PROTO ((struct speed_params *s));
  117. double speed_mpn_add_n_sub_n __GMP_PROTO ((struct speed_params *s));
  118. double speed_mpn_and_n __GMP_PROTO ((struct speed_params *s));
  119. double speed_mpn_andn_n __GMP_PROTO ((struct speed_params *s));
  120. double speed_mpn_addmul_1 __GMP_PROTO ((struct speed_params *s));
  121. double speed_mpn_addmul_2 __GMP_PROTO ((struct speed_params *s));
  122. double speed_mpn_addmul_3 __GMP_PROTO ((struct speed_params *s));
  123. double speed_mpn_addmul_4 __GMP_PROTO ((struct speed_params *s));
  124. double speed_mpn_addmul_5 __GMP_PROTO ((struct speed_params *s));
  125. double speed_mpn_addmul_6 __GMP_PROTO ((struct speed_params *s));
  126. double speed_mpn_addmul_7 __GMP_PROTO ((struct speed_params *s));
  127. double speed_mpn_addmul_8 __GMP_PROTO ((struct speed_params *s));
  128. double speed_mpn_com __GMP_PROTO ((struct speed_params *s));
  129. double speed_mpn_copyd __GMP_PROTO ((struct speed_params *s));
  130. double speed_mpn_copyi __GMP_PROTO ((struct speed_params *s));
  131. double speed_MPN_COPY __GMP_PROTO ((struct speed_params *s));
  132. double speed_MPN_COPY_DECR __GMP_PROTO ((struct speed_params *s));
  133. double speed_MPN_COPY_INCR __GMP_PROTO ((struct speed_params *s));
  134. double speed_mpn_divexact_1 __GMP_PROTO ((struct speed_params *s));
  135. double speed_mpn_divexact_by3 __GMP_PROTO ((struct speed_params *s));
  136. double speed_mpn_bdiv_q_1 __GMP_PROTO ((struct speed_params *));
  137. double speed_mpn_pi1_bdiv_q_1 __GMP_PROTO ((struct speed_params *));
  138. double speed_mpn_bdiv_dbm1c __GMP_PROTO ((struct speed_params *s));
  139. double speed_mpn_divrem_1 __GMP_PROTO ((struct speed_params *s));
  140. double speed_mpn_divrem_1f __GMP_PROTO ((struct speed_params *s));
  141. double speed_mpn_divrem_1c __GMP_PROTO ((struct speed_params *s));
  142. double speed_mpn_divrem_1cf __GMP_PROTO ((struct speed_params *s));
  143. double speed_mpn_divrem_1_div __GMP_PROTO ((struct speed_params *s));
  144. double speed_mpn_divrem_1f_div __GMP_PROTO ((struct speed_params *s));
  145. double speed_mpn_divrem_1_inv __GMP_PROTO ((struct speed_params *s));
  146. double speed_mpn_divrem_1f_inv __GMP_PROTO ((struct speed_params *s));
  147. double speed_mpn_divrem_2 __GMP_PROTO ((struct speed_params *s));
  148. double speed_mpn_divrem_2_div __GMP_PROTO ((struct speed_params *s));
  149. double speed_mpn_divrem_2_inv __GMP_PROTO ((struct speed_params *s));
  150. double speed_mpn_fib2_ui __GMP_PROTO ((struct speed_params *s));
  151. double speed_mpn_matrix22_mul __GMP_PROTO ((struct speed_params *s));
  152. double speed_mpn_hgcd __GMP_PROTO ((struct speed_params *s));
  153. double speed_mpn_hgcd_lehmer __GMP_PROTO ((struct speed_params *s));
  154. double speed_mpn_gcd __GMP_PROTO ((struct speed_params *s));
  155. double speed_mpn_gcd_1 __GMP_PROTO ((struct speed_params *s));
  156. double speed_mpn_gcd_1N __GMP_PROTO ((struct speed_params *s));
  157. double speed_mpn_gcdext __GMP_PROTO ((struct speed_params *s));
  158. double speed_mpn_gcdext_double __GMP_PROTO ((struct speed_params *s));
  159. double speed_mpn_gcdext_one_double __GMP_PROTO ((struct speed_params *s));
  160. double speed_mpn_gcdext_one_single __GMP_PROTO ((struct speed_params *s));
  161. double speed_mpn_gcdext_single __GMP_PROTO ((struct speed_params *s));
  162. double speed_mpn_get_str __GMP_PROTO ((struct speed_params *s));
  163. double speed_mpn_hamdist __GMP_PROTO ((struct speed_params *s));
  164. double speed_mpn_ior_n __GMP_PROTO ((struct speed_params *s));
  165. double speed_mpn_iorn_n __GMP_PROTO ((struct speed_params *s));
  166. double speed_mpn_jacobi_base __GMP_PROTO ((struct speed_params *s));
  167. double speed_mpn_jacobi_base_1 __GMP_PROTO ((struct speed_params *s));
  168. double speed_mpn_jacobi_base_2 __GMP_PROTO ((struct speed_params *s));
  169. double speed_mpn_jacobi_base_3 __GMP_PROTO ((struct speed_params *s));
  170. double speed_mpn_lshift __GMP_PROTO ((struct speed_params *s));
  171. double speed_mpn_lshiftc __GMP_PROTO ((struct speed_params *s));
  172. double speed_mpn_mod_1 __GMP_PROTO ((struct speed_params *s));
  173. double speed_mpn_mod_1c __GMP_PROTO ((struct speed_params *s));
  174. double speed_mpn_mod_1_div __GMP_PROTO ((struct speed_params *s));
  175. double speed_mpn_mod_1_inv __GMP_PROTO ((struct speed_params *s));
  176. double speed_mpn_mod_1_1 __GMP_PROTO ((struct speed_params *s));
  177. double speed_mpn_mod_1_2 __GMP_PROTO ((struct speed_params *s));
  178. double speed_mpn_mod_1_3 __GMP_PROTO ((struct speed_params *s));
  179. double speed_mpn_mod_1_4 __GMP_PROTO ((struct speed_params *s));
  180. double speed_mpn_mod_34lsub1 __GMP_PROTO ((struct speed_params *s));
  181. double speed_mpn_modexact_1_odd __GMP_PROTO ((struct speed_params *s));
  182. double speed_mpn_modexact_1c_odd __GMP_PROTO ((struct speed_params *s));
  183. double speed_mpn_mul_1 __GMP_PROTO ((struct speed_params *s));
  184. double speed_mpn_mul_1_inplace __GMP_PROTO ((struct speed_params *s));
  185. double speed_mpn_mul_2 __GMP_PROTO ((struct speed_params *s));
  186. double speed_mpn_mul_3 __GMP_PROTO ((struct speed_params *s));
  187. double speed_mpn_mul_4 __GMP_PROTO ((struct speed_params *s));
  188. double speed_mpn_mul __GMP_PROTO ((struct speed_params *s));
  189. double speed_mpn_mul_basecase __GMP_PROTO ((struct speed_params *s));
  190. double speed_mpn_mul_fft __GMP_PROTO ((struct speed_params *s));
  191. double speed_mpn_mul_fft_sqr __GMP_PROTO ((struct speed_params *s));
  192. double speed_mpn_fft_mul __GMP_PROTO ((struct speed_params *s));
  193. double speed_mpn_fft_sqr __GMP_PROTO ((struct speed_params *s));
  194. #if WANT_OLD_FFT_FULL
  195. double speed_mpn_mul_fft_full __GMP_PROTO ((struct speed_params *s));
  196. double speed_mpn_mul_fft_full_sqr __GMP_PROTO ((struct speed_params *s));
  197. #endif
  198. double speed_mpn_nussbaumer_mul __GMP_PROTO ((struct speed_params *s));
  199. double speed_mpn_nussbaumer_mul_sqr __GMP_PROTO ((struct speed_params *s));
  200. double speed_mpn_mul_n __GMP_PROTO ((struct speed_params *s));
  201. double speed_mpn_mul_n_sqr __GMP_PROTO ((struct speed_params *s));
  202. double speed_mpn_mullo_n __GMP_PROTO ((struct speed_params *s));
  203. double speed_mpn_mullo_basecase __GMP_PROTO ((struct speed_params *s));
  204. double speed_mpn_nand_n __GMP_PROTO ((struct speed_params *s));
  205. double speed_mpn_nior_n __GMP_PROTO ((struct speed_params *s));
  206. double speed_mpn_popcount __GMP_PROTO ((struct speed_params *s));
  207. double speed_mpn_preinv_divrem_1 __GMP_PROTO ((struct speed_params *s));
  208. double speed_mpn_preinv_divrem_1f __GMP_PROTO ((struct speed_params *s));
  209. double speed_mpn_preinv_mod_1 __GMP_PROTO ((struct speed_params *s));
  210. double speed_mpn_sbpi1_div_qr __GMP_PROTO ((struct speed_params *s));
  211. double speed_mpn_dcpi1_div_qr __GMP_PROTO ((struct speed_params *s));
  212. double speed_mpn_sbpi1_divappr_q __GMP_PROTO ((struct speed_params *s));
  213. double speed_mpn_dcpi1_divappr_q __GMP_PROTO ((struct speed_params *s));
  214. double speed_mpn_mu_div_qr __GMP_PROTO ((struct speed_params *s));
  215. double speed_mpn_mu_divappr_q __GMP_PROTO ((struct speed_params *s));
  216. double speed_mpn_mupi_div_qr __GMP_PROTO ((struct speed_params *s));
  217. double speed_mpn_mu_div_q __GMP_PROTO ((struct speed_params *s));
  218. double speed_mpn_sbpi1_bdiv_qr __GMP_PROTO ((struct speed_params *s));
  219. double speed_mpn_dcpi1_bdiv_qr __GMP_PROTO ((struct speed_params *s));
  220. double speed_mpn_sbpi1_bdiv_q __GMP_PROTO ((struct speed_params *s));
  221. double speed_mpn_dcpi1_bdiv_q __GMP_PROTO ((struct speed_params *s));
  222. double speed_mpn_mu_bdiv_q __GMP_PROTO ((struct speed_params *s));
  223. double speed_mpn_mu_bdiv_qr __GMP_PROTO ((struct speed_params *s));
  224. double speed_mpn_invert __GMP_PROTO ((struct speed_params *s));
  225. double speed_mpn_invertappr __GMP_PROTO ((struct speed_params *s));
  226. double speed_mpn_ni_invertappr __GMP_PROTO ((struct speed_params *s));
  227. double speed_mpn_binvert __GMP_PROTO ((struct speed_params *s));
  228. double speed_mpn_redc_1 __GMP_PROTO ((struct speed_params *s));
  229. double speed_mpn_redc_2 __GMP_PROTO ((struct speed_params *s));
  230. double speed_mpn_redc_n __GMP_PROTO ((struct speed_params *s));
  231. double speed_mpn_rsblsh1_n __GMP_PROTO ((struct speed_params *s));
  232. double speed_mpn_rsblsh2_n __GMP_PROTO ((struct speed_params *s));
  233. double speed_mpn_rsh1add_n __GMP_PROTO ((struct speed_params *s));
  234. double speed_mpn_rsh1sub_n __GMP_PROTO ((struct speed_params *s));
  235. double speed_mpn_rshift __GMP_PROTO ((struct speed_params *s));
  236. double speed_mpn_sb_divrem_m3 __GMP_PROTO ((struct speed_params *s));
  237. double speed_mpn_sb_divrem_m3_div __GMP_PROTO ((struct speed_params *s));
  238. double speed_mpn_sb_divrem_m3_inv __GMP_PROTO ((struct speed_params *s));
  239. double speed_mpn_set_str __GMP_PROTO ((struct speed_params *s));
  240. double speed_mpn_bc_set_str __GMP_PROTO ((struct speed_params *s));
  241. double speed_mpn_dc_set_str __GMP_PROTO ((struct speed_params *s));
  242. double speed_mpn_set_str_pre __GMP_PROTO ((struct speed_params *s));
  243. double speed_mpn_sqr_basecase __GMP_PROTO ((struct speed_params *s));
  244. double speed_mpn_sqr_diagonal __GMP_PROTO ((struct speed_params *s));
  245. double speed_mpn_sqr __GMP_PROTO ((struct speed_params *s));
  246. double speed_mpn_sqrtrem __GMP_PROTO ((struct speed_params *s));
  247. double speed_mpn_rootrem __GMP_PROTO ((struct speed_params *s));
  248. double speed_mpn_sub_n __GMP_PROTO ((struct speed_params *s));
  249. double speed_mpn_sublsh1_n __GMP_PROTO ((struct speed_params *s));
  250. double speed_mpn_sublsh2_n __GMP_PROTO ((struct speed_params *s));
  251. double speed_mpn_submul_1 __GMP_PROTO ((struct speed_params *s));
  252. double speed_mpn_toom2_sqr __GMP_PROTO ((struct speed_params *s));
  253. double speed_mpn_toom3_sqr __GMP_PROTO ((struct speed_params *s));
  254. double speed_mpn_toom4_sqr __GMP_PROTO ((struct speed_params *s));
  255. double speed_mpn_toom6_sqr __GMP_PROTO ((struct speed_params *s));
  256. double speed_mpn_toom8_sqr __GMP_PROTO ((struct speed_params *s));
  257. double speed_mpn_toom22_mul __GMP_PROTO ((struct speed_params *s));
  258. double speed_mpn_toom33_mul __GMP_PROTO ((struct speed_params *s));
  259. double speed_mpn_toom44_mul __GMP_PROTO ((struct speed_params *s));
  260. double speed_mpn_toom6h_mul __GMP_PROTO ((struct speed_params *s));
  261. double speed_mpn_toom8h_mul __GMP_PROTO ((struct speed_params *s));
  262. double speed_mpn_toom32_mul __GMP_PROTO ((struct speed_params *s));
  263. double speed_mpn_toom42_mul __GMP_PROTO ((struct speed_params *s));
  264. double speed_mpn_toom43_mul __GMP_PROTO ((struct speed_params *s));
  265. double speed_mpn_toom63_mul __GMP_PROTO ((struct speed_params *s));
  266. double speed_mpn_toom32_for_toom43_mul __GMP_PROTO ((struct speed_params *s));
  267. double speed_mpn_toom43_for_toom32_mul __GMP_PROTO ((struct speed_params *s));
  268. double speed_mpn_toom32_for_toom53_mul __GMP_PROTO ((struct speed_params *s));
  269. double speed_mpn_toom53_for_toom32_mul __GMP_PROTO ((struct speed_params *s));
  270. double speed_mpn_toom42_for_toom53_mul __GMP_PROTO ((struct speed_params *s));
  271. double speed_mpn_toom53_for_toom42_mul __GMP_PROTO ((struct speed_params *s));
  272. double speed_mpn_mulmod_bnm1 __GMP_PROTO ((struct speed_params *s));
  273. double speed_mpn_bc_mulmod_bnm1 __GMP_PROTO ((struct speed_params *s));
  274. double speed_mpn_mulmod_bnm1_rounded __GMP_PROTO ((struct speed_params *s));
  275. double speed_mpn_sqrmod_bnm1 __GMP_PROTO ((struct speed_params *s));
  276. double speed_mpn_udiv_qrnnd __GMP_PROTO ((struct speed_params *s));
  277. double speed_mpn_udiv_qrnnd_r __GMP_PROTO ((struct speed_params *s));
  278. double speed_mpn_umul_ppmm __GMP_PROTO ((struct speed_params *s));
  279. double speed_mpn_umul_ppmm_r __GMP_PROTO ((struct speed_params *s));
  280. double speed_mpn_xnor_n __GMP_PROTO ((struct speed_params *s));
  281. double speed_mpn_xor_n __GMP_PROTO ((struct speed_params *s));
  282. double speed_MPN_ZERO __GMP_PROTO ((struct speed_params *s));
  283. double speed_mpq_init_clear __GMP_PROTO ((struct speed_params *s));
  284. double speed_mpz_add __GMP_PROTO ((struct speed_params *s));
  285. double speed_mpz_bin_uiui __GMP_PROTO ((struct speed_params *s));
  286. double speed_mpz_fac_ui __GMP_PROTO ((struct speed_params *s));
  287. double speed_mpz_fib_ui __GMP_PROTO ((struct speed_params *s));
  288. double speed_mpz_fib2_ui __GMP_PROTO ((struct speed_params *s));
  289. double speed_mpz_init_clear __GMP_PROTO ((struct speed_params *s));
  290. double speed_mpz_init_realloc_clear __GMP_PROTO ((struct speed_params *s));
  291. double speed_mpz_jacobi __GMP_PROTO ((struct speed_params *s));
  292. double speed_mpz_lucnum_ui __GMP_PROTO ((struct speed_params *s));
  293. double speed_mpz_lucnum2_ui __GMP_PROTO ((struct speed_params *s));
  294. double speed_mpz_mod __GMP_PROTO ((struct speed_params *s));
  295. double speed_mpz_powm __GMP_PROTO ((struct speed_params *s));
  296. double speed_mpz_powm_mod __GMP_PROTO ((struct speed_params *s));
  297. double speed_mpz_powm_redc __GMP_PROTO ((struct speed_params *s));
  298. double speed_mpz_powm_ui __GMP_PROTO ((struct speed_params *s));
  299. double speed_mpz_urandomb __GMP_PROTO ((struct speed_params *s));
  300. double speed_gmp_randseed __GMP_PROTO ((struct speed_params *s));
  301. double speed_gmp_randseed_ui __GMP_PROTO ((struct speed_params *s));
  302. double speed_noop __GMP_PROTO ((struct speed_params *s));
  303. double speed_noop_wxs __GMP_PROTO ((struct speed_params *s));
  304. double speed_noop_wxys __GMP_PROTO ((struct speed_params *s));
  305. double speed_operator_div __GMP_PROTO ((struct speed_params *s));
  306. double speed_operator_mod __GMP_PROTO ((struct speed_params *s));
  307. double speed_udiv_qrnnd __GMP_PROTO ((struct speed_params *s));
  308. double speed_udiv_qrnnd_preinv1 __GMP_PROTO ((struct speed_params *s));
  309. double speed_udiv_qrnnd_preinv2 __GMP_PROTO ((struct speed_params *s));
  310. double speed_udiv_qrnnd_c __GMP_PROTO ((struct speed_params *s));
  311. double speed_umul_ppmm __GMP_PROTO ((struct speed_params *s));
  312. /* Prototypes for other routines */
  313. /* low 32-bits in p[0], high 32-bits in p[1] */
  314. void speed_cyclecounter __GMP_PROTO ((unsigned p[2]));
  315. void mftb_function __GMP_PROTO ((unsigned p[2]));
  316. /* In i386 gcc -fPIC, ebx is a fixed register and can't be declared a dummy
  317.    output or a clobber for the cpuid, hence an explicit save and restore.  A
  318.    clobber as such doesn't provoke an error unfortunately (gcc 3.0), so use
  319.    the dummy output style in non-PIC, so there's an error if somehow -fPIC
  320.    is used without a -DPIC to tell us about it.  */
  321. #if defined(__GNUC__) && ! defined (NO_ASM)
  322.   && (defined (__i386__) || defined (__i486__))
  323. #ifdef PIC
  324. #define speed_cyclecounter(p)
  325.   do {
  326.     int  __speed_cyclecounter__save_ebx;
  327.     int  __speed_cyclecounter__dummy;
  328.     __asm__ __volatile__ ("movl %%ebx, %1n"
  329.   "cpuidn"
  330.   "movl %1, %%ebxn"
  331.   "rdtsc"
  332.   : "=a"   ((p)[0]),
  333.     "=&rm" (__speed_cyclecounter__save_ebx),
  334.     "=c"   (__speed_cyclecounter__dummy),
  335.     "=d"   ((p)[1]));
  336.   } while (0)
  337. #else
  338. #define speed_cyclecounter(p)
  339.   do {
  340.     int  __speed_cyclecounter__dummy1;
  341.     int  __speed_cyclecounter__dummy2;
  342.     __asm__ __volatile__ ("cpuidn"
  343.   "rdtsc"
  344.   : "=a" ((p)[0]),
  345.     "=b" (__speed_cyclecounter__dummy1),
  346.     "=c" (__speed_cyclecounter__dummy2),
  347.     "=d" ((p)[1]));
  348.   } while (0)
  349. #endif
  350. #endif
  351. double speed_cyclecounter_diff __GMP_PROTO ((const unsigned [2], const unsigned [2]));
  352. int gettimeofday_microseconds_p __GMP_PROTO ((void));
  353. int getrusage_microseconds_p __GMP_PROTO ((void));
  354. int cycles_works_p __GMP_PROTO ((void));
  355. long clk_tck __GMP_PROTO ((void));
  356. double freq_measure __GMP_PROTO ((const char *, double (*)(void)));
  357. int double_cmp_ptr __GMP_PROTO ((const double *, const double *));
  358. void pentium_wbinvd __GMP_PROTO ((void));
  359. typedef int (*qsort_function_t) __GMP_PROTO ((const void *, const void *));
  360. void noop __GMP_PROTO ((void));
  361. void noop_1 __GMP_PROTO ((mp_limb_t));
  362. void noop_wxs __GMP_PROTO ((mp_ptr, mp_srcptr, mp_size_t));
  363. void noop_wxys __GMP_PROTO ((mp_ptr, mp_srcptr, mp_srcptr, mp_size_t));
  364. void mpn_cache_fill __GMP_PROTO ((mp_srcptr, mp_size_t));
  365. void mpn_cache_fill_dummy __GMP_PROTO ((mp_limb_t));
  366. void speed_cache_fill __GMP_PROTO ((struct speed_params *));
  367. void speed_operand_src __GMP_PROTO ((struct speed_params *, mp_ptr, mp_size_t));
  368. void speed_operand_dst __GMP_PROTO ((struct speed_params *, mp_ptr, mp_size_t));
  369. extern int  speed_option_addrs;
  370. extern int  speed_option_verbose;
  371. void speed_option_set __GMP_PROTO((const char *));
  372. mp_limb_t mpn_divrem_1_div __GMP_PROTO ((mp_ptr, mp_size_t, mp_srcptr, mp_size_t, mp_limb_t));
  373. mp_limb_t mpn_divrem_1_inv __GMP_PROTO ((mp_ptr, mp_size_t, mp_srcptr, mp_size_t, mp_limb_t));
  374. mp_limb_t mpn_divrem_2_div __GMP_PROTO ((mp_ptr, mp_size_t, mp_ptr, mp_size_t, mp_srcptr));
  375. mp_limb_t mpn_divrem_2_inv __GMP_PROTO ((mp_ptr, mp_size_t, mp_ptr, mp_size_t, mp_srcptr));
  376. int mpn_jacobi_base_1 __GMP_PROTO ((mp_limb_t, mp_limb_t, int));
  377. int mpn_jacobi_base_2 __GMP_PROTO ((mp_limb_t, mp_limb_t, int));
  378. int mpn_jacobi_base_3 __GMP_PROTO ((mp_limb_t, mp_limb_t, int));
  379. mp_limb_t mpn_mod_1_div __GMP_PROTO ((mp_srcptr, mp_size_t, mp_limb_t));
  380. mp_limb_t mpn_mod_1_inv __GMP_PROTO ((mp_srcptr, mp_size_t, mp_limb_t));
  381. mp_size_t mpn_gcd_binary
  382.   __GMP_PROTO ((mp_ptr, mp_ptr, mp_size_t, mp_ptr, mp_size_t));
  383. mp_size_t mpn_gcd_accel
  384.   __GMP_PROTO ((mp_ptr, mp_ptr, mp_size_t, mp_ptr, mp_size_t));
  385. mp_size_t mpn_gcdext_one_double
  386.   __GMP_PROTO ((mp_ptr, mp_ptr, mp_size_t *, mp_ptr, mp_size_t, mp_ptr, mp_size_t));
  387. mp_size_t mpn_gcdext_one_single
  388.   __GMP_PROTO ((mp_ptr, mp_ptr, mp_size_t *, mp_ptr, mp_size_t, mp_ptr, mp_size_t));
  389. mp_size_t mpn_gcdext_single
  390.   __GMP_PROTO ((mp_ptr, mp_ptr, mp_size_t *, mp_ptr, mp_size_t, mp_ptr, mp_size_t));
  391. mp_size_t mpn_gcdext_double
  392.   __GMP_PROTO ((mp_ptr, mp_ptr, mp_size_t *, mp_ptr, mp_size_t, mp_ptr, mp_size_t));
  393. mp_limb_t mpn_sb_divrem_mn_div __GMP_PROTO ((mp_ptr, mp_ptr, mp_size_t, mp_srcptr, mp_size_t));
  394. mp_limb_t mpn_sb_divrem_mn_inv __GMP_PROTO ((mp_ptr, mp_ptr, mp_size_t, mp_srcptr, mp_size_t));
  395. mp_size_t mpn_set_str_basecase __GMP_PROTO ((mp_ptr, const unsigned char *, size_t, int));
  396. void mpn_pre_set_str __GMP_PROTO ((mp_ptr, unsigned char *, size_t, powers_t *, mp_ptr));
  397. void mpz_powm_mod __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr, mpz_srcptr));
  398. void mpz_powm_redc __GMP_PROTO ((mpz_ptr, mpz_srcptr, mpz_srcptr, mpz_srcptr));
  399. int speed_routine_count_zeros_setup
  400.   __GMP_PROTO ((struct speed_params *, mp_ptr, int, int));
  401. /* "get" is called repeatedly until it ticks over, just in case on a fast
  402.    processor it takes less than a microsecond, though this is probably
  403.    unlikely if it's a system call.
  404.    speed_cyclecounter is called on the same side of the "get" for the start
  405.    and end measurements.  It doesn't matter how long it takes from the "get"
  406.    sample to the cycles sample, since that period will cancel out in the
  407.    difference calculation (assuming it's the same each time).
  408.    Letting the test run for more than a process time slice is probably only
  409.    going to reduce accuracy, especially for getrusage when the cycle counter
  410.    is real time, or for gettimeofday if the cycle counter is in fact process
  411.    time.  Use CLK_TCK/2 as a reasonable stop.
  412.    It'd be desirable to be quite accurate here.  The default speed_precision
  413.    for a cycle counter is 10000 cycles, so to mix that with getrusage or
  414.    gettimeofday the frequency should be at least that accurate.  But running
  415.    measurements for 10000 microseconds (or more) is too long.  Be satisfied
  416.    with just a half clock tick (5000 microseconds usually).  */
  417. #define FREQ_MEASURE_ONE(name, type, get, getc, sec, usec)
  418.   do {
  419.     type      st1, st, et1, et;
  420.     unsigned  sc[2], ec[2];
  421.     long      dt, half_tick;
  422.     double    dc, cyc;
  423.     half_tick = (1000000L / clk_tck()) / 2;
  424.     get (st1);
  425.     do {
  426.       get (st);
  427.     } while (usec(st) == usec(st1) && sec(st) == sec(st1));
  428.     getc (sc);
  429.     for (;;)
  430.       {
  431. get (et1);
  432. do {
  433.   get (et);
  434. } while (usec(et) == usec(et1) && sec(et) == sec(et1));
  435. getc (ec);
  436. dc = speed_cyclecounter_diff (ec, sc);
  437. /* allow secs to cancel before multiplying */
  438. dt = sec(et) - sec(st);
  439. dt = dt * 1000000L + (usec(et) - usec(st));
  440. if (dt >= half_tick)
  441.   break;
  442.       }
  443.     cyc = dt * 1e-6 / dc;
  444.     if (speed_option_verbose >= 2)
  445.       printf ("freq_measure_%s_one() dc=%.6g dt=%ld cyc=%.6gn",
  446.       name, dc, dt, cyc);
  447.     return dt * 1e-6 / dc;
  448.   } while (0)
  449. /* The measuring routines use these big macros to save duplication for
  450.    similar forms.  They also get used for some automatically generated
  451.    measuring of new implementations of functions.
  452.    Having something like SPEED_ROUTINE_BINARY_N as a subroutine accepting a
  453.    function pointer is considered undesirable since it's not the way a
  454.    normal application will be calling, and some processors might do
  455.    different things with an indirect call, like not branch predicting, or
  456.    doing a full pipe flush.  At least some of the "functions" measured are
  457.    actually macros too.
  458.    The net effect is to bloat the object code, possibly in a big way, but
  459.    only what's being measured is being run, so that doesn't matter.
  460.    The loop forms don't try to cope with __GMP_ATTRIBUTE_PURE or
  461.    ATTRIBUTE_CONST on the called functions.  Adding a cast to a non-pure
  462.    function pointer doesn't work in gcc 3.2.  Using an actual non-pure
  463.    function pointer variable works, but stands a real risk of a
  464.    non-optimizing compiler generating unnecessary overheads in the call.
  465.    Currently the best idea is not to use those attributes for a timing
  466.    program build.  __GMP_NO_ATTRIBUTE_CONST_PURE will tell gmp.h and
  467.    gmp-impl.h to omit them from routines there.  */
  468. #define SPEED_RESTRICT_COND(cond)   if (!(cond)) return -1.0;
  469. /* For mpn_copy or similar. */
  470. #define SPEED_ROUTINE_MPN_COPY(function)
  471.   {
  472.     mp_ptr    wp;
  473.     unsigned  i;
  474.     double    t;
  475.     TMP_DECL;
  476.     SPEED_RESTRICT_COND (s->size >= 0);
  477.     TMP_MARK;
  478.     SPEED_TMP_ALLOC_LIMBS (wp, s->size, s->align_wp);
  479.     speed_operand_src (s, s->xp, s->size);
  480.     speed_operand_dst (s, wp, s->size);
  481.     speed_cache_fill (s);
  482.     speed_starttime ();
  483.     i = s->reps;
  484.     do
  485.       function (wp, s->xp, s->size);
  486.     while (--i != 0);
  487.     t = speed_endtime ();
  488.     TMP_FREE;
  489.     return t;
  490.   }
  491. #define SPEED_ROUTINE_MPN_COPYC(function)
  492.   {
  493.     mp_ptr    wp;
  494.     unsigned  i;
  495.     double    t;
  496.     TMP_DECL;
  497.     SPEED_RESTRICT_COND (s->size >= 0);
  498.     TMP_MARK;
  499.     SPEED_TMP_ALLOC_LIMBS (wp, s->size, s->align_wp);
  500.     speed_operand_src (s, s->xp, s->size);
  501.     speed_operand_dst (s, wp, s->size);
  502.     speed_cache_fill (s);
  503.     speed_starttime ();
  504.     i = s->reps;
  505.     do
  506.       function (wp, s->xp, s->size, 0);
  507.     while (--i != 0);
  508.     t = speed_endtime ();
  509.     TMP_FREE;
  510.     return t;
  511.   }
  512. /* s->size is still in limbs, and it's limbs which are copied, but
  513.    "function" takes a size in bytes not limbs. */
  514. #define SPEED_ROUTINE_MPN_COPY_BYTES(function)
  515.   {
  516.     mp_ptr    wp;
  517.     unsigned  i;
  518.     double    t;
  519.     TMP_DECL;
  520.     SPEED_RESTRICT_COND (s->size >= 0);
  521.     TMP_MARK;
  522.     SPEED_TMP_ALLOC_LIMBS (wp, s->size, s->align_wp);
  523.     speed_operand_src (s, s->xp, s->size);
  524.     speed_operand_dst (s, wp, s->size);
  525.     speed_cache_fill (s);
  526.     speed_starttime ();
  527.     i = s->reps;
  528.     do
  529.       function (wp, s->xp, s->size * BYTES_PER_MP_LIMB);
  530.     while (--i != 0);
  531.     t = speed_endtime ();
  532.     TMP_FREE;
  533.     return t;
  534.   }
  535. /* For mpn_add_n, mpn_sub_n, or similar. */
  536. #define SPEED_ROUTINE_MPN_BINARY_N_CALL(call)
  537.   {
  538.     mp_ptr     wp;
  539.     mp_ptr     xp, yp;
  540.     unsigned   i;
  541.     double     t;
  542.     TMP_DECL;
  543.     SPEED_RESTRICT_COND (s->size >= 1);
  544.     TMP_MARK;
  545.     SPEED_TMP_ALLOC_LIMBS (wp, s->size, s->align_wp);
  546.     xp = s->xp;
  547.     yp = s->yp;
  548.     if (s->r == 0) ;
  549.     else if (s->r == 1) { xp = wp;     }
  550.     else if (s->r == 2) {    yp = wp; }
  551.     else if (s->r == 3) { xp = wp; yp = wp; }
  552.     else if (s->r == 4) {     yp = xp;     }
  553.     else {
  554.       TMP_FREE;
  555.       return -1.0;
  556.     }
  557.     /* initialize wp if operand overlap */
  558.     if (xp == wp || yp == wp)
  559.       MPN_COPY (wp, s->xp, s->size);
  560.     speed_operand_src (s, xp, s->size);
  561.     speed_operand_src (s, yp, s->size);
  562.     speed_operand_dst (s, wp, s->size);
  563.     speed_cache_fill (s);
  564.     speed_starttime ();
  565.     i = s->reps;
  566.     do
  567.       call;
  568.     while (--i != 0);
  569.     t = speed_endtime ();
  570.     TMP_FREE;
  571.     return t;
  572.   }
  573. /* For mpn_add_n, mpn_sub_n, or similar. */
  574. #define SPEED_ROUTINE_MPN_ADDSUB_N_CALL(call)
  575.   {
  576.     mp_ptr     ap, sp;
  577.     mp_ptr     xp, yp;
  578.     unsigned   i;
  579.     double     t;
  580.     TMP_DECL;
  581.     SPEED_RESTRICT_COND (s->size >= 1);
  582.     TMP_MARK;
  583.     SPEED_TMP_ALLOC_LIMBS (ap, s->size, s->align_wp);
  584.     SPEED_TMP_ALLOC_LIMBS (sp, s->size, s->align_wp);
  585.     xp = s->xp;
  586.     yp = s->yp;
  587.     if ((s->r & 1) != 0) { xp = ap; }
  588.     if ((s->r & 2) != 0) { yp = ap; }
  589.     if ((s->r & 4) != 0) { xp = sp; }
  590.     if ((s->r & 8) != 0) { yp = sp; }
  591.     if ((s->r & 3) == 3  ||  (s->r & 12) == 12)
  592.       {
  593. TMP_FREE;
  594. return -1.0;
  595.       }
  596.     /* initialize ap if operand overlap */
  597.     if (xp == ap || yp == ap)
  598.       MPN_COPY (ap, s->xp, s->size);
  599.     /* initialize sp if operand overlap */
  600.     if (xp == sp || yp == sp)
  601.       MPN_COPY (sp, s->xp, s->size);
  602.     speed_operand_src (s, xp, s->size);
  603.     speed_operand_src (s, yp, s->size);
  604.     speed_operand_dst (s, ap, s->size);
  605.     speed_operand_dst (s, sp, s->size);
  606.     speed_cache_fill (s);
  607.     speed_starttime ();
  608.     i = s->reps;
  609.     do
  610.       call;
  611.     while (--i != 0);
  612.     t = speed_endtime ();
  613.     TMP_FREE;
  614.     return t;
  615.   }
  616. #define SPEED_ROUTINE_MPN_BINARY_N(function)
  617.    SPEED_ROUTINE_MPN_BINARY_N_CALL ((*function) (wp, xp, yp, s->size))
  618. #define SPEED_ROUTINE_MPN_BINARY_NC(function)
  619.    SPEED_ROUTINE_MPN_BINARY_N_CALL ((*function) (wp, xp, yp, s->size, 0))
  620. /* For mpn_lshift, mpn_rshift, mpn_mul_1, with r, or similar. */
  621. #define SPEED_ROUTINE_MPN_UNARY_1_CALL(call)
  622.   {
  623.     mp_ptr    wp;
  624.     unsigned  i;
  625.     double    t;
  626.     TMP_DECL;
  627.     SPEED_RESTRICT_COND (s->size >= 1);
  628.     TMP_MARK;
  629.     SPEED_TMP_ALLOC_LIMBS (wp, s->size, s->align_wp);
  630.     speed_operand_src (s, s->xp, s->size);
  631.     speed_operand_dst (s, wp, s->size);
  632.     speed_cache_fill (s);
  633.     speed_starttime ();
  634.     i = s->reps;
  635.     do
  636.       call;
  637.     while (--i != 0);
  638.     t = speed_endtime ();
  639.     TMP_FREE;
  640.     return t;
  641.   }
  642. #define SPEED_ROUTINE_MPN_UNARY_1(function)
  643.   SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, s->xp, s->size, s->r))
  644. #define SPEED_ROUTINE_MPN_UNARY_1C(function)
  645.   SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, s->xp, s->size, s->r, 0))
  646. /* FIXME: wp is uninitialized here, should start it off from xp */
  647. #define SPEED_ROUTINE_MPN_UNARY_1_INPLACE(function)
  648.   SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, wp, s->size, s->r))
  649. #define SPEED_ROUTINE_MPN_DIVEXACT_1(function)
  650.   SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, s->xp, s->size, s->r))
  651. #define SPEED_ROUTINE_MPN_BDIV_Q_1(function)
  652.     SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, s->xp, s->size, s->r))
  653. #define SPEED_ROUTINE_MPN_PI1_BDIV_Q_1_CALL(call)
  654.   {
  655.     unsigned   shift;
  656.     mp_limb_t  dinv;
  657.     SPEED_RESTRICT_COND (s->size > 0);
  658.     SPEED_RESTRICT_COND (s->r != 0);
  659.     count_trailing_zeros (shift, s->r);
  660.     binvert_limb (dinv, s->r >> shift);
  661.     SPEED_ROUTINE_MPN_UNARY_1_CALL (call);
  662.   }
  663. #define SPEED_ROUTINE_MPN_PI1_BDIV_Q_1(function)
  664.   SPEED_ROUTINE_MPN_PI1_BDIV_Q_1_CALL
  665.   ((*function) (wp, s->xp, s->size, s->r, dinv, shift))
  666. #define SPEED_ROUTINE_MPN_BDIV_DBM1C(function)
  667.   SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, s->xp, s->size, s->r, 0))
  668. #define SPEED_ROUTINE_MPN_DIVREM_1(function)
  669.   SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, 0, s->xp, s->size, s->r))
  670. #define SPEED_ROUTINE_MPN_DIVREM_1C(function)
  671.   SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, 0, s->xp, s->size, s->r, 0))
  672. #define SPEED_ROUTINE_MPN_DIVREM_1F(function)
  673.   SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, s->size, s->xp, 0, s->r))
  674. #define SPEED_ROUTINE_MPN_DIVREM_1CF(function)
  675.   SPEED_ROUTINE_MPN_UNARY_1_CALL ((*function) (wp, s->size, s->xp, 0, s->r, 0))
  676. #define SPEED_ROUTINE_MPN_PREINV_DIVREM_1_CALL(call)
  677.   {
  678.     unsigned   shift;
  679.     mp_limb_t  dinv;
  680.     SPEED_RESTRICT_COND (s->size >= 0);
  681.     SPEED_RESTRICT_COND (s->r != 0);
  682.     count_leading_zeros (shift, s->r);
  683.     invert_limb (dinv, s->r << shift);
  684.     SPEED_ROUTINE_MPN_UNARY_1_CALL (call);
  685.   }
  686. #define SPEED_ROUTINE_MPN_PREINV_DIVREM_1(function)
  687.   SPEED_ROUTINE_MPN_PREINV_DIVREM_1_CALL
  688.   ((*function) (wp, 0, s->xp, s->size, s->r, dinv, shift))
  689. /* s->size limbs worth of fraction part */
  690. #define SPEED_ROUTINE_MPN_PREINV_DIVREM_1F(function)
  691.   SPEED_ROUTINE_MPN_PREINV_DIVREM_1_CALL
  692.   ((*function) (wp, s->size, s->xp, 0, s->r, dinv, shift))
  693. /* s->r is duplicated to form the multiplier, defaulting to
  694.    MP_BASES_BIG_BASE_10.  Not sure if that's particularly useful, but at
  695.    least it provides some control.  */
  696. #define SPEED_ROUTINE_MPN_UNARY_N(function,N)
  697.   {
  698.     mp_ptr     wp;
  699.     mp_size_t  wn;
  700.     unsigned   i;
  701.     double     t;
  702.     mp_limb_t  yp[N];
  703.     TMP_DECL;
  704.     SPEED_RESTRICT_COND (s->size >= N);
  705.     TMP_MARK;
  706.     wn = s->size + N-1;
  707.     SPEED_TMP_ALLOC_LIMBS (wp, wn, s->align_wp);
  708.     for (i = 0; i < N; i++)
  709.       yp[i] = (s->r != 0 ? s->r : MP_BASES_BIG_BASE_10);
  710.     speed_operand_src (s, s->xp, s->size);
  711.     speed_operand_src (s, yp, (mp_size_t) N);
  712.     speed_operand_dst (s, wp, wn);
  713.     speed_cache_fill (s);
  714.     speed_starttime ();
  715.     i = s->reps;
  716.     do
  717.       function (wp, s->xp, s->size, yp);
  718.     while (--i != 0);
  719.     t = speed_endtime ();
  720.     TMP_FREE;
  721.     return t;
  722.   }
  723. #define SPEED_ROUTINE_MPN_UNARY_2(function)
  724.   SPEED_ROUTINE_MPN_UNARY_N (function, 2)
  725. #define SPEED_ROUTINE_MPN_UNARY_3(function)
  726.   SPEED_ROUTINE_MPN_UNARY_N (function, 3)
  727. #define SPEED_ROUTINE_MPN_UNARY_4(function)
  728.   SPEED_ROUTINE_MPN_UNARY_N (function, 4)
  729. #define SPEED_ROUTINE_MPN_UNARY_5(function)
  730.   SPEED_ROUTINE_MPN_UNARY_N (function, 5)
  731. #define SPEED_ROUTINE_MPN_UNARY_6(function)
  732.   SPEED_ROUTINE_MPN_UNARY_N (function, 6)
  733. #define SPEED_ROUTINE_MPN_UNARY_7(function)
  734.   SPEED_ROUTINE_MPN_UNARY_N (function, 7)
  735. #define SPEED_ROUTINE_MPN_UNARY_8(function)
  736.   SPEED_ROUTINE_MPN_UNARY_N (function, 8)
  737. /* For mpn_mul, mpn_mul_basecase, xsize=r, ysize=s->size. */
  738. #define SPEED_ROUTINE_MPN_MUL(function)
  739.   {
  740.     mp_ptr    wp, xp;
  741.     mp_size_t size1;
  742.     unsigned  i;
  743.     double    t;
  744.     TMP_DECL;
  745.     size1 = (s->r == 0 ? s->size : s->r);
  746.     SPEED_RESTRICT_COND (s->size >= 1);
  747.     SPEED_RESTRICT_COND (size1 >= s->size);
  748.     TMP_MARK;
  749.     SPEED_TMP_ALLOC_LIMBS (wp, size1 + s->size, s->align_wp);
  750.     SPEED_TMP_ALLOC_LIMBS (xp, size1, s->align_xp);
  751.     speed_operand_src (s, xp, size1);
  752.     speed_operand_src (s, s->yp, s->size);
  753.     speed_operand_dst (s, wp, size1 + s->size);
  754.     speed_cache_fill (s);
  755.     speed_starttime ();
  756.     i = s->reps;
  757.     do
  758.       function (wp, xp, size1, s->yp, s->size);
  759.     while (--i != 0);
  760.     t = speed_endtime ();
  761.     TMP_FREE;
  762.     return t;
  763.   }
  764. #define SPEED_ROUTINE_MPN_MUL_N_CALL(call)
  765.   {
  766.     mp_ptr    wp;
  767.     unsigned  i;
  768.     double    t;
  769.     TMP_DECL;
  770.     SPEED_RESTRICT_COND (s->size >= 1);
  771.     TMP_MARK;
  772.     SPEED_TMP_ALLOC_LIMBS (wp, 2*s->size, s->align_wp);
  773.     speed_operand_src (s, s->xp, s->size);
  774.     speed_operand_src (s, s->yp, s->size);
  775.     speed_operand_dst (s, wp, 2*s->size);
  776.     speed_cache_fill (s);
  777.     speed_starttime ();
  778.     i = s->reps;
  779.     do
  780.       call;
  781.     while (--i != 0);
  782.     t = speed_endtime ();
  783.     TMP_FREE;
  784.     return t;
  785.   }
  786. #define SPEED_ROUTINE_MPN_MUL_N(function)
  787.   SPEED_ROUTINE_MPN_MUL_N_CALL (function (wp, s->xp, s->yp, s->size));
  788. #define SPEED_ROUTINE_MPN_MULLO_N_CALL(call)
  789.   {
  790.     mp_ptr    wp;
  791.     unsigned  i;
  792.     double    t;
  793.     TMP_DECL;
  794.     SPEED_RESTRICT_COND (s->size >= 1);
  795.     TMP_MARK;
  796.     SPEED_TMP_ALLOC_LIMBS (wp, s->size, s->align_wp);
  797.     speed_operand_src (s, s->xp, s->size);
  798.     speed_operand_src (s, s->yp, s->size);
  799.     speed_operand_dst (s, wp, s->size);
  800.     speed_cache_fill (s);
  801.     speed_starttime ();
  802.     i = s->reps;
  803.     do
  804.       call;
  805.     while (--i != 0);
  806.     t = speed_endtime ();
  807.     TMP_FREE;
  808.     return t;
  809.   }
  810. #define SPEED_ROUTINE_MPN_MULLO_N(function)
  811.   SPEED_ROUTINE_MPN_MULLO_N_CALL (function (wp, s->xp, s->yp, s->size));
  812. /* For mpn_mul_basecase, xsize=r, ysize=s->size. */
  813. #define SPEED_ROUTINE_MPN_MULLO_BASECASE(function)
  814.   {
  815.     mp_ptr    wp;
  816.     unsigned  i;
  817.     double    t;
  818.     TMP_DECL;
  819.     SPEED_RESTRICT_COND (s->size >= 1);
  820.     TMP_MARK;
  821.     SPEED_TMP_ALLOC_LIMBS (wp, s->size, s->align_wp);
  822.     speed_operand_src (s, s->xp, s->size);
  823.     speed_operand_src (s, s->yp, s->size);
  824.     speed_operand_dst (s, wp, s->size);
  825.     speed_cache_fill (s);
  826.     speed_starttime ();
  827.     i = s->reps;
  828.     do
  829.       function (wp, s->xp, s->yp, s->size);
  830.     while (--i != 0);
  831.     t = speed_endtime ();
  832.     TMP_FREE;
  833.     return t;
  834.   }
  835. #define SPEED_ROUTINE_MPN_MULMOD_BNM1_CALL(call)
  836.   {
  837.     mp_ptr    wp, tp;
  838.     unsigned  i;
  839.     double    t;
  840.     mp_size_t itch;
  841.     TMP_DECL;
  842.     SPEED_RESTRICT_COND (s->size >= 1);
  843.     itch = mpn_mulmod_bnm1_itch (s->size, s->size, s->size);
  844.     TMP_MARK;
  845.     SPEED_TMP_ALLOC_LIMBS (wp, 2 * s->size, s->align_wp);
  846.     SPEED_TMP_ALLOC_LIMBS (tp, itch, s->align_wp2);
  847.     speed_operand_src (s, s->xp, s->size);
  848.     speed_operand_src (s, s->yp, s->size);
  849.     speed_operand_dst (s, wp, 2 * s->size);
  850.     speed_operand_dst (s, tp, itch);
  851.     speed_cache_fill (s);
  852.     speed_starttime ();
  853.     i = s->reps;
  854.     do
  855.       call;
  856.     while (--i != 0);
  857.     t = speed_endtime ();
  858.     TMP_FREE;
  859.     return t;
  860.   }
  861. #define SPEED_ROUTINE_MPN_MULMOD_BNM1_ROUNDED(function)
  862.   {
  863.     mp_ptr    wp, tp;
  864.     unsigned  i;
  865.     double    t;
  866.     mp_size_t size, itch;
  867.     TMP_DECL;
  868.     SPEED_RESTRICT_COND (s->size >= 1);
  869.     size = mpn_mulmod_bnm1_next_size (s->size);
  870.     itch = mpn_mulmod_bnm1_itch (size, size, size);
  871.     TMP_MARK;
  872.     SPEED_TMP_ALLOC_LIMBS (wp, size, s->align_wp);
  873.     SPEED_TMP_ALLOC_LIMBS (tp, itch, s->align_wp2);
  874.     speed_operand_src (s, s->xp, s->size);
  875.     speed_operand_src (s, s->yp, s->size);
  876.     speed_operand_dst (s, wp, size);
  877.     speed_operand_dst (s, tp, itch);
  878.     speed_cache_fill (s);
  879.     speed_starttime ();
  880.     i = s->reps;
  881.     do
  882.       function (wp, size, s->xp, s->size, s->yp, s->size, tp);
  883.     while (--i != 0);
  884.     t = speed_endtime ();
  885.     TMP_FREE;
  886.     return t;
  887.   }
  888. #define SPEED_ROUTINE_MPN_MUL_N_TSPACE(call, tsize, minsize)
  889.   {
  890.     mp_ptr    wp, tspace;
  891.     unsigned  i;
  892.     double    t;
  893.     TMP_DECL;
  894.     SPEED_RESTRICT_COND (s->size >= minsize);
  895.     TMP_MARK;
  896.     SPEED_TMP_ALLOC_LIMBS (wp, 2*s->size, s->align_wp);
  897.     SPEED_TMP_ALLOC_LIMBS (tspace, tsize, s->align_wp2);
  898.     speed_operand_src (s, s->xp, s->size);
  899.     speed_operand_src (s, s->yp, s->size);
  900.     speed_operand_dst (s, wp, 2*s->size);
  901.     speed_operand_dst (s, tspace, tsize);
  902.     speed_cache_fill (s);
  903.     speed_starttime ();
  904.     i = s->reps;
  905.     do
  906.       call;
  907.     while (--i != 0);
  908.     t = speed_endtime ();
  909.     TMP_FREE;
  910.     return t;
  911.   }
  912. #define SPEED_ROUTINE_MPN_TOOM22_MUL_N(function)
  913.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  914.     (function (wp, s->xp, s->size, s->yp, s->size, tspace),
  915.      mpn_toom22_mul_itch (s->size, s->size),
  916.      MPN_TOOM22_MUL_MINSIZE)
  917. #define SPEED_ROUTINE_MPN_TOOM33_MUL_N(function)
  918.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  919.     (function (wp, s->xp, s->size, s->yp, s->size, tspace),
  920.      mpn_toom33_mul_itch (s->size, s->size),
  921.      MPN_TOOM33_MUL_MINSIZE)
  922. #define SPEED_ROUTINE_MPN_TOOM44_MUL_N(function)
  923.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  924.     (function (wp, s->xp, s->size, s->yp, s->size, tspace),
  925.      mpn_toom44_mul_itch (s->size, s->size),
  926.      MPN_TOOM44_MUL_MINSIZE)
  927. #define SPEED_ROUTINE_MPN_TOOM6H_MUL_N(function)
  928.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  929.     (function (wp, s->xp, s->size, s->yp, s->size, tspace),
  930.      mpn_toom6h_mul_itch (s->size, s->size),
  931.      MPN_TOOM6H_MUL_MINSIZE)
  932. #define SPEED_ROUTINE_MPN_TOOM8H_MUL_N(function)
  933.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  934.     (function (wp, s->xp, s->size, s->yp, s->size, tspace),
  935.      mpn_toom8h_mul_itch (s->size, s->size),
  936.      MPN_TOOM8H_MUL_MINSIZE)
  937. #define SPEED_ROUTINE_MPN_TOOM32_MUL(function)
  938.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  939.     (function (wp, s->xp, s->size, s->yp, 2*s->size/3, tspace),
  940.      mpn_toom32_mul_itch (s->size, 2*s->size/3),
  941.      MPN_TOOM32_MUL_MINSIZE)
  942. #define SPEED_ROUTINE_MPN_TOOM42_MUL(function)
  943.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  944.     (function (wp, s->xp, s->size, s->yp, s->size/2, tspace),
  945.      mpn_toom42_mul_itch (s->size, s->size/2),
  946.      MPN_TOOM42_MUL_MINSIZE)
  947. #define SPEED_ROUTINE_MPN_TOOM43_MUL(function)
  948.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  949.     (function (wp, s->xp, s->size, s->yp, s->size*3/4, tspace),
  950.      mpn_toom43_mul_itch (s->size, s->size*3/4),
  951.      MPN_TOOM43_MUL_MINSIZE)
  952. #define SPEED_ROUTINE_MPN_TOOM63_MUL(function)
  953.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  954.     (function (wp, s->xp, s->size, s->yp, s->size/2, tspace),
  955.      mpn_toom63_mul_itch (s->size, s->size/2),
  956.      MPN_TOOM63_MUL_MINSIZE)
  957. #define SPEED_ROUTINE_MPN_TOOM32_FOR_TOOM43_MUL(function)
  958.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  959.     (function (wp, s->xp, s->size, s->yp, 17*s->size/24, tspace),
  960.      mpn_toom32_mul_itch (s->size, 17*s->size/24),
  961.      MPN_TOOM32_MUL_MINSIZE)
  962. #define SPEED_ROUTINE_MPN_TOOM43_FOR_TOOM32_MUL(function)
  963.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  964.     (function (wp, s->xp, s->size, s->yp, 17*s->size/24, tspace),
  965.      mpn_toom43_mul_itch (s->size, 17*s->size/24),
  966.      MPN_TOOM43_MUL_MINSIZE)
  967. #define SPEED_ROUTINE_MPN_TOOM32_FOR_TOOM53_MUL(function)
  968.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  969.     (function (wp, s->xp, s->size, s->yp, 19*s->size/30, tspace),
  970.      mpn_toom32_mul_itch (s->size, 19*s->size/30),
  971.      MPN_TOOM32_MUL_MINSIZE)
  972. #define SPEED_ROUTINE_MPN_TOOM53_FOR_TOOM32_MUL(function)
  973.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  974.     (function (wp, s->xp, s->size, s->yp, 19*s->size/30, tspace),
  975.      mpn_toom53_mul_itch (s->size, 19*s->size/30),
  976.      MPN_TOOM53_MUL_MINSIZE)
  977. #define SPEED_ROUTINE_MPN_TOOM42_FOR_TOOM53_MUL(function)
  978.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  979.     (function (wp, s->xp, s->size, s->yp, 11*s->size/20, tspace),
  980.      mpn_toom42_mul_itch (s->size, 11*s->size/20),
  981.      MPN_TOOM42_MUL_MINSIZE)
  982. #define SPEED_ROUTINE_MPN_TOOM53_FOR_TOOM42_MUL(function)
  983.   SPEED_ROUTINE_MPN_MUL_N_TSPACE
  984.     (function (wp, s->xp, s->size, s->yp, 11*s->size/20, tspace),
  985.      mpn_toom53_mul_itch (s->size, 11*s->size/20),
  986.      MPN_TOOM53_MUL_MINSIZE)
  987. #define SPEED_ROUTINE_MPN_SQR_CALL(call)
  988.   {
  989.     mp_ptr    wp;
  990.     unsigned  i;
  991.     double    t;
  992.     TMP_DECL;
  993.     SPEED_RESTRICT_COND (s->size >= 1);
  994.     TMP_MARK;
  995.     SPEED_TMP_ALLOC_LIMBS (wp, 2*s->size, s->align_wp);
  996.     speed_operand_src (s, s->xp, s->size);
  997.     speed_operand_dst (s, wp, 2*s->size);
  998.     speed_cache_fill (s);
  999.     speed_starttime ();
  1000.     i = s->reps;
  1001.     do
  1002.       call;
  1003.     while (--i != 0);
  1004.     t = speed_endtime ();
  1005.     TMP_FREE;
  1006.     return t;
  1007.   }
  1008. #define SPEED_ROUTINE_MPN_SQR(function)
  1009.   SPEED_ROUTINE_MPN_SQR_CALL (function (wp, s->xp, s->size))
  1010. #define SPEED_ROUTINE_MPN_SQR_DIAGONAL(function)
  1011.   SPEED_ROUTINE_MPN_SQR (function)
  1012. #define SPEED_ROUTINE_MPN_SQR_TSPACE(call, tsize, minsize)
  1013.   {
  1014.     mp_ptr    wp, tspace;
  1015.     unsigned  i;
  1016.     double    t;
  1017.     TMP_DECL;
  1018.     SPEED_RESTRICT_COND (s->size >= minsize);
  1019.     TMP_MARK;
  1020.     SPEED_TMP_ALLOC_LIMBS (wp, 2*s->size, s->align_wp);
  1021.     SPEED_TMP_ALLOC_LIMBS (tspace, tsize, s->align_wp2);
  1022.     speed_operand_src (s, s->xp, s->size);
  1023.     speed_operand_dst (s, wp, 2*s->size);
  1024.     speed_operand_dst (s, tspace, tsize);
  1025.     speed_cache_fill (s);
  1026.     speed_starttime ();
  1027.     i = s->reps;
  1028.     do
  1029.       call;
  1030.     while (--i != 0);
  1031.     t = speed_endtime ();
  1032.     TMP_FREE;
  1033.     return t;
  1034.   }
  1035. #define SPEED_ROUTINE_MPN_TOOM2_SQR(function)
  1036.   SPEED_ROUTINE_MPN_SQR_TSPACE (function (wp, s->xp, s->size, tspace),
  1037. mpn_toom2_sqr_itch (s->size),
  1038. MPN_TOOM2_SQR_MINSIZE)
  1039. #define SPEED_ROUTINE_MPN_TOOM3_SQR(function)
  1040.   SPEED_ROUTINE_MPN_SQR_TSPACE (function (wp, s->xp, s->size, tspace),
  1041. mpn_toom3_sqr_itch (s->size),
  1042. MPN_TOOM3_SQR_MINSIZE)
  1043. #define SPEED_ROUTINE_MPN_TOOM4_SQR(function)
  1044.   SPEED_ROUTINE_MPN_SQR_TSPACE (function (wp, s->xp, s->size, tspace),
  1045. mpn_toom4_sqr_itch (s->size),
  1046. MPN_TOOM4_SQR_MINSIZE)
  1047. #define SPEED_ROUTINE_MPN_TOOM6_SQR(function)
  1048.   SPEED_ROUTINE_MPN_SQR_TSPACE (function (wp, s->xp, s->size, tspace),
  1049. mpn_toom6_sqr_itch (s->size),
  1050. MPN_TOOM6_SQR_MINSIZE)
  1051. #define SPEED_ROUTINE_MPN_TOOM8_SQR(function)
  1052.   SPEED_ROUTINE_MPN_SQR_TSPACE (function (wp, s->xp, s->size, tspace),
  1053. mpn_toom8_sqr_itch (s->size),
  1054. MPN_TOOM8_SQR_MINSIZE)
  1055. #define SPEED_ROUTINE_MPN_MOD_CALL(call)
  1056.   {
  1057.     unsigned   i;
  1058.     SPEED_RESTRICT_COND (s->size >= 0);
  1059.     speed_operand_src (s, s->xp, s->size);
  1060.     speed_cache_fill (s);
  1061.     speed_starttime ();
  1062.     i = s->reps;
  1063.     do
  1064.       call;
  1065.     while (--i != 0);
  1066.     return speed_endtime ();
  1067.   }
  1068. #define SPEED_ROUTINE_MPN_MOD_1(function)
  1069.    SPEED_ROUTINE_MPN_MOD_CALL ((*function) (s->xp, s->size, s->r))
  1070. #define SPEED_ROUTINE_MPN_MOD_1C(function)
  1071.    SPEED_ROUTINE_MPN_MOD_CALL ((*function)(s->xp, s->size, s->r, CNST_LIMB(0)))
  1072. #define SPEED_ROUTINE_MPN_MODEXACT_1_ODD(function)
  1073.   SPEED_ROUTINE_MPN_MOD_CALL (function (s->xp, s->size, s->r));
  1074. #define SPEED_ROUTINE_MPN_MODEXACT_1C_ODD(function)
  1075.   SPEED_ROUTINE_MPN_MOD_CALL (function (s->xp, s->size, s->r, CNST_LIMB(0)));
  1076. #define SPEED_ROUTINE_MPN_MOD_34LSUB1(function)
  1077.    SPEED_ROUTINE_MPN_MOD_CALL ((*function) (s->xp, s->size))
  1078. #define SPEED_ROUTINE_MPN_PREINV_MOD_1(function)
  1079.   {
  1080.     unsigned   i;
  1081.     mp_limb_t  inv;
  1082.     SPEED_RESTRICT_COND (s->size >= 0);
  1083.     SPEED_RESTRICT_COND (s->r & GMP_LIMB_HIGHBIT);
  1084.     invert_limb (inv, s->r);
  1085.     speed_operand_src (s, s->xp, s->size);
  1086.     speed_cache_fill (s);
  1087.     speed_starttime ();
  1088.     i = s->reps;
  1089.     do
  1090.       (*function) (s->xp, s->size, s->r, inv);
  1091.     while (--i != 0);
  1092.     return speed_endtime ();
  1093.   }
  1094. #define SPEED_ROUTINE_MPN_MOD_1_1(function,pfunc)
  1095.   {
  1096.     unsigned   i;
  1097.     mp_limb_t  inv[4];
  1098.     SPEED_RESTRICT_COND (s->size >= 2);
  1099.     mpn_mod_1_1p_cps (inv, s->r);
  1100.     speed_operand_src (s, s->xp, s->size);
  1101.     speed_cache_fill (s);
  1102.     speed_starttime ();
  1103.     i = s->reps;
  1104.     do {
  1105.       pfunc (inv, s->r);
  1106.       function (s->xp, s->size, s->r, inv);
  1107.     } while (--i != 0);
  1108.     return speed_endtime ();
  1109.   }
  1110. #define SPEED_ROUTINE_MPN_MOD_1_N(function,pfunc,N)
  1111.   {
  1112.     unsigned   i;
  1113.     mp_limb_t  inv[N+3];
  1114.     SPEED_RESTRICT_COND (s->size >= 1);
  1115.     SPEED_RESTRICT_COND (s->r <= ~(mp_limb_t)0 / N);
  1116.     speed_operand_src (s, s->xp, s->size);
  1117.     speed_cache_fill (s);
  1118.     speed_starttime ();
  1119.     i = s->reps;
  1120.     do {
  1121.       pfunc (inv, s->r);
  1122.       function (s->xp, s->size, s->r, inv);
  1123.     } while (--i != 0);
  1124.     return speed_endtime ();
  1125.   }
  1126. /* A division of 2*s->size by s->size limbs */
  1127. #define SPEED_ROUTINE_MPN_DC_DIVREM_CALL(call)
  1128.   {
  1129.     unsigned  i;
  1130.     mp_ptr    a, d, q, r;
  1131.     double    t;
  1132.     gmp_pi1_t dinv;
  1133.     TMP_DECL;
  1134.     SPEED_RESTRICT_COND (s->size >= 1);
  1135.     TMP_MARK;
  1136.     SPEED_TMP_ALLOC_LIMBS (a, 2*s->size, s->align_xp);
  1137.     SPEED_TMP_ALLOC_LIMBS (d, s->size,   s->align_yp);
  1138.     SPEED_TMP_ALLOC_LIMBS (q, s->size+1, s->align_wp);
  1139.     SPEED_TMP_ALLOC_LIMBS (r, s->size,   s->align_wp2);
  1140.     MPN_COPY (a, s->xp, s->size);
  1141.     MPN_COPY (a+s->size, s->xp, s->size);
  1142.     MPN_COPY (d, s->yp, s->size);
  1143.     /* normalize the data */
  1144.     d[s->size-1] |= GMP_NUMB_HIGHBIT;
  1145.     a[2*s->size-1] = d[s->size-1] - 1;
  1146.     invert_pi1 (dinv, d[s->size-1], d[s->size-2]);
  1147.     speed_operand_src (s, a, 2*s->size);
  1148.     speed_operand_src (s, d, s->size);
  1149.     speed_operand_dst (s, q, s->size+1);
  1150.     speed_operand_dst (s, r, s->size);
  1151.     speed_cache_fill (s);
  1152.     speed_starttime ();
  1153.     i = s->reps;
  1154.     do
  1155.       call;
  1156.     while (--i != 0);
  1157.     t = speed_endtime ();
  1158.     TMP_FREE;
  1159.     return t;
  1160.   }
  1161. /* A remainder 2*s->size by s->size limbs */
  1162. #define SPEED_ROUTINE_MPZ_MOD(function)
  1163.   {
  1164.     unsigned   i;
  1165.     mpz_t      a, d, r;
  1166.     SPEED_RESTRICT_COND (s->size >= 1);
  1167.     mpz_init_set_n (d, s->yp, s->size);
  1168.     /* high part less than d, low part a duplicate copied in */
  1169.     mpz_init_set_n (a, s->xp, s->size);
  1170.     mpz_mod (a, a, d);
  1171.     mpz_mul_2exp (a, a, GMP_LIMB_BITS * s->size);
  1172.     MPN_COPY (PTR(a), s->xp, s->size);
  1173.     mpz_init (r);
  1174.     speed_operand_src (s, PTR(a), SIZ(a));
  1175.     speed_operand_src (s, PTR(d), SIZ(d));
  1176.     speed_cache_fill (s);
  1177.     speed_starttime ();
  1178.     i = s->reps;
  1179.     do
  1180.       function (r, a, d);
  1181.     while (--i != 0);
  1182.     return speed_endtime ();
  1183.   }
  1184. #define SPEED_ROUTINE_MPN_PI1_DIV(function, INV, DMIN, QMIN)
  1185.   {
  1186.     unsigned   i;
  1187.     mp_ptr     dp, tp, ap, qp;
  1188.     gmp_pi1_t  inv;
  1189.     double     t;
  1190.     mp_size_t size1;
  1191.     TMP_DECL;
  1192.     size1 = (s->r == 0 ? 2 * s->size : s->r);
  1193.     SPEED_RESTRICT_COND (s->size >= DMIN);
  1194.     SPEED_RESTRICT_COND (size1 - s->size >= QMIN);
  1195.     TMP_MARK;
  1196.     SPEED_TMP_ALLOC_LIMBS (ap, size1, s->align_xp);
  1197.     SPEED_TMP_ALLOC_LIMBS (dp, s->size, s->align_yp);
  1198.     SPEED_TMP_ALLOC_LIMBS (qp, size1 - s->size, s->align_wp);
  1199.     SPEED_TMP_ALLOC_LIMBS (tp, size1, s->align_wp2);
  1200.     /* we don't fill in dividend completely when size1 > s->size */
  1201.     MPN_COPY (ap,         s->xp, s->size);
  1202.     MPN_COPY (ap + size1 - s->size, s->xp, s->size);
  1203.     MPN_COPY (dp,         s->yp, s->size);
  1204.     /* normalize the data */
  1205.     dp[s->size-1] |= GMP_NUMB_HIGHBIT;
  1206.     ap[size1 - 1] = dp[s->size - 1] - 1;
  1207.     invert_pi1 (inv, dp[s->size-1], dp[s->size-2]);
  1208.     speed_operand_src (s, ap, size1);
  1209.     speed_operand_dst (s, tp, size1);
  1210.     speed_operand_src (s, dp, s->size);
  1211.     speed_operand_dst (s, qp, size1 - s->size);
  1212.     speed_cache_fill (s);
  1213.     speed_starttime ();
  1214.     i = s->reps;
  1215.     do {
  1216.       MPN_COPY (tp, ap, size1);
  1217.       function (qp, tp, size1, dp, s->size, INV);
  1218.     } while (--i != 0);
  1219.     t = speed_endtime ();
  1220.     TMP_FREE;
  1221.     return t;
  1222.   }
  1223. #define SPEED_ROUTINE_MPN_MU_DIV_Q(function,itchfn)
  1224.   {
  1225.     unsigned   i;
  1226.     mp_ptr     dp, tp, qp, scratch;
  1227.     double     t;
  1228.     mp_size_t itch;
  1229.     TMP_DECL;
  1230.     SPEED_RESTRICT_COND (s->size >= 2);
  1231.     itch = itchfn (2 * s->size, s->size, 0);
  1232.     TMP_MARK;
  1233.     SPEED_TMP_ALLOC_LIMBS (dp, s->size, s->align_yp);
  1234.     SPEED_TMP_ALLOC_LIMBS (qp, s->size, s->align_wp);
  1235.     SPEED_TMP_ALLOC_LIMBS (tp, 2 * s->size, s->align_xp);
  1236.     SPEED_TMP_ALLOC_LIMBS (scratch, itch, s->align_wp2);
  1237.     MPN_COPY (tp,         s->xp, s->size);
  1238.     MPN_COPY (tp+s->size, s->xp, s->size);
  1239.     /* normalize the data */
  1240.     dp[s->size-1] |= GMP_NUMB_HIGHBIT;
  1241.     tp[2*s->size-1] = dp[s->size-1] - 1;
  1242.     speed_operand_dst (s, qp, s->size);
  1243.     speed_operand_src (s, tp, 2 * s->size);
  1244.     speed_operand_src (s, dp, s->size);
  1245.     speed_operand_dst (s, scratch, itch);
  1246.     speed_cache_fill (s);
  1247.     speed_starttime ();
  1248.     i = s->reps;
  1249.     do {
  1250.       function (qp, tp, 2 * s->size, dp, s->size, scratch);
  1251.     } while (--i != 0);
  1252.     t = speed_endtime ();
  1253.     TMP_FREE;
  1254.     return t;
  1255.   }
  1256. #define SPEED_ROUTINE_MPN_MU_DIV_QR(function,itchfn)
  1257.   {
  1258.     unsigned   i;
  1259.     mp_ptr     dp, tp, qp, rp, scratch;
  1260.     double     t;
  1261.     mp_size_t size1, itch;
  1262.     TMP_DECL;
  1263.     size1 = (s->r == 0 ? 2 * s->size : s->r);
  1264.     SPEED_RESTRICT_COND (s->size >= 2);
  1265.     SPEED_RESTRICT_COND (size1 >= s->size);
  1266.     itch = itchfn (size1, s->size, 0);
  1267.     TMP_MARK;
  1268.     SPEED_TMP_ALLOC_LIMBS (dp, s->size, s->align_yp);
  1269.     SPEED_TMP_ALLOC_LIMBS (qp, size1 - s->size, s->align_wp);
  1270.     SPEED_TMP_ALLOC_LIMBS (tp, size1, s->align_xp);
  1271.     SPEED_TMP_ALLOC_LIMBS (scratch, itch, s->align_wp2);
  1272.     SPEED_TMP_ALLOC_LIMBS (rp, s->size, s->align_wp2); /* alignment? */
  1273.     /* we don't fill in dividend completely when size1 > s->size */
  1274.     MPN_COPY (tp,         s->xp, s->size);
  1275.     MPN_COPY (tp + size1 - s->size, s->xp, s->size);
  1276.     MPN_COPY (dp,         s->yp, s->size);
  1277.     /* normalize the data */
  1278.     dp[s->size-1] |= GMP_NUMB_HIGHBIT;
  1279.     tp[size1 - 1] = dp[s->size - 1] - 1;
  1280.     speed_operand_dst (s, qp, size1 - s->size);
  1281.     speed_operand_dst (s, rp, s->size);
  1282.     speed_operand_src (s, tp, size1);
  1283.     speed_operand_src (s, dp, s->size);
  1284.     speed_operand_dst (s, scratch, itch);
  1285.     speed_cache_fill (s);
  1286.     speed_starttime ();
  1287.     i = s->reps;
  1288.     do {
  1289.       function (qp, rp, tp, size1, dp, s->size, scratch);
  1290.     } while (--i != 0);
  1291.     t = speed_endtime ();
  1292.     TMP_FREE;
  1293.     return t;
  1294.   }
  1295. #define SPEED_ROUTINE_MPN_MUPI_DIV_QR(function,itchfn)
  1296.   {
  1297.     unsigned   i;
  1298.     mp_ptr     dp, tp, qp, rp, ip, scratch;
  1299.     double     t;
  1300.     mp_size_t size1, itch;
  1301.     TMP_DECL;
  1302.     size1 = (s->r == 0 ? 2 * s->size : s->r);
  1303.     SPEED_RESTRICT_COND (s->size >= 2);
  1304.     SPEED_RESTRICT_COND (size1 >= s->size);
  1305.     itch = itchfn (size1, s->size, 0);
  1306.     TMP_MARK;
  1307.     SPEED_TMP_ALLOC_LIMBS (dp, s->size, s->align_yp);
  1308.     SPEED_TMP_ALLOC_LIMBS (qp, size1 - s->size, s->align_wp);
  1309.     SPEED_TMP_ALLOC_LIMBS (tp, size1, s->align_xp);
  1310.     SPEED_TMP_ALLOC_LIMBS (scratch, itch, s->align_wp2);
  1311.     SPEED_TMP_ALLOC_LIMBS (rp, s->size, s->align_wp2); /* alignment? */
  1312.     SPEED_TMP_ALLOC_LIMBS (ip, s->size, s->align_wp2); /* alignment? */
  1313.     /* we don't fill in dividend completely when size1 > s->size */
  1314.     MPN_COPY (tp,         s->xp, s->size);
  1315.     MPN_COPY (tp + size1 - s->size, s->xp, s->size);
  1316.     MPN_COPY (dp,         s->yp, s->size);
  1317.     /* normalize the data */
  1318.     dp[s->size-1] |= GMP_NUMB_HIGHBIT;
  1319.     tp[size1 - 1] = dp[s->size-1] - 1;
  1320.     mpn_invert (ip, dp, s->size, NULL);
  1321.     speed_operand_dst (s, qp, size1 - s->size);
  1322.     speed_operand_dst (s, rp, s->size);
  1323.     speed_operand_src (s, tp, size1);
  1324.     speed_operand_src (s, dp, s->size);
  1325.     speed_operand_src (s, ip, s->size);
  1326.     speed_operand_dst (s, scratch, itch);
  1327.     speed_cache_fill (s);
  1328.     speed_starttime ();
  1329.     i = s->reps;
  1330.     do {
  1331.       function (qp, rp, tp, size1, dp, s->size, ip, s->size, scratch);
  1332.     } while (--i != 0);
  1333.     t = speed_endtime ();
  1334.     TMP_FREE;
  1335.     return t;
  1336.   }
  1337. #define SPEED_ROUTINE_MPN_PI1_BDIV_QR(function)
  1338.   {
  1339.     unsigned   i;
  1340.     mp_ptr     dp, tp, ap, qp;
  1341.     mp_limb_t  inv;
  1342.     double     t;
  1343.     TMP_DECL;
  1344.     SPEED_RESTRICT_COND (s->size >= 1);
  1345.     TMP_MARK;
  1346.     SPEED_TMP_ALLOC_LIMBS (ap, 2*s->size, s->align_xp);
  1347.     SPEED_TMP_ALLOC_LIMBS (dp, s->size, s->align_yp);
  1348.     SPEED_TMP_ALLOC_LIMBS (qp, s->size, s->align_wp);
  1349.     SPEED_TMP_ALLOC_LIMBS (tp, 2*s->size, s->align_wp2);
  1350.     MPN_COPY (ap,         s->xp, s->size);
  1351.     MPN_COPY (ap+s->size, s->xp, s->size);
  1352.     /* divisor must be odd */
  1353.     MPN_COPY (dp, s->yp, s->size);
  1354.     dp[0] |= 1;
  1355.     binvert_limb (inv, dp[0]);
  1356.     inv = -inv;
  1357.     speed_operand_src (s, ap, 2*s->size);
  1358.     speed_operand_dst (s, tp, 2*s->size);
  1359.     speed_operand_src (s, dp, s->size);
  1360.     speed_operand_dst (s, qp, s->size);
  1361.     speed_cache_fill (s);
  1362.     speed_starttime ();
  1363.     i = s->reps;
  1364.     do {
  1365.       MPN_COPY (tp, ap, 2*s->size);
  1366.       function (qp, tp, 2*s->size, dp, s->size, inv);
  1367.     } while (--i != 0);
  1368.     t = speed_endtime ();
  1369.     TMP_FREE;
  1370.     return t;
  1371.   }
  1372. #define SPEED_ROUTINE_MPN_PI1_BDIV_Q(function)
  1373.   {
  1374.     unsigned   i;
  1375.     mp_ptr     dp, tp, qp;
  1376.     mp_limb_t  inv;
  1377.     double     t;
  1378.     TMP_DECL;
  1379.     SPEED_RESTRICT_COND (s->size >= 1);
  1380.     TMP_MARK;
  1381.     SPEED_TMP_ALLOC_LIMBS (dp, s->size, s->align_yp);
  1382.     SPEED_TMP_ALLOC_LIMBS (qp, s->size, s->align_wp);
  1383.     SPEED_TMP_ALLOC_LIMBS (tp, s->size, s->align_wp2);
  1384.     /* divisor must be odd */
  1385.     MPN_COPY (dp, s->yp, s->size);
  1386.     dp[0] |= 1;
  1387.     binvert_limb (inv, dp[0]);
  1388.     inv = -inv;
  1389.     speed_operand_src (s, s->xp, s->size);
  1390.     speed_operand_dst (s, tp, s->size);
  1391.     speed_operand_src (s, dp, s->size);
  1392.     speed_operand_dst (s, qp, s->size);
  1393.     speed_cache_fill (s);
  1394.     speed_starttime ();
  1395.     i = s->reps;
  1396.     do {
  1397.       MPN_COPY (tp, s->xp, s->size);
  1398.       function (qp, tp, s->size, dp, s->size, inv);
  1399.     } while (--i != 0);
  1400.     t = speed_endtime ();
  1401.     TMP_FREE;
  1402.     return t;
  1403.   }
  1404. #define SPEED_ROUTINE_MPN_MU_BDIV_Q(function,itchfn)
  1405.   {
  1406.     unsigned   i;
  1407.     mp_ptr     dp, qp, scratch;
  1408.     double     t;
  1409.     mp_size_t itch;
  1410.     TMP_DECL;
  1411.     SPEED_RESTRICT_COND (s->size >= 2);
  1412.     itch = itchfn (s->size, s->size);
  1413.     TMP_MARK;
  1414.     SPEED_TMP_ALLOC_LIMBS (dp, s->size, s->align_yp);
  1415.     SPEED_TMP_ALLOC_LIMBS (qp, s->size, s->align_wp);
  1416.     SPEED_TMP_ALLOC_LIMBS (scratch, itch, s->align_wp2);
  1417.     /* divisor must be odd */
  1418.     MPN_COPY (dp, s->yp, s->size);
  1419.     dp[0] |= 1;
  1420.     speed_operand_dst (s, qp, s->size);
  1421.     speed_operand_src (s, s->xp, s->size);
  1422.     speed_operand_src (s, dp, s->size);
  1423.     speed_operand_dst (s, scratch, itch);
  1424.     speed_cache_fill (s);
  1425.     speed_starttime ();
  1426.     i = s->reps;
  1427.     do {
  1428.       function (qp, s->xp, s->size, dp, s->size, scratch);
  1429.     } while (--i != 0);
  1430.     t = speed_endtime ();
  1431.     TMP_FREE;
  1432.     return t;
  1433.   }
  1434. #define SPEED_ROUTINE_MPN_MU_BDIV_QR(function,itchfn)
  1435.   {
  1436.     unsigned   i;
  1437.     mp_ptr     dp, tp, qp, rp, scratch;
  1438.     double     t;
  1439.     mp_size_t itch;
  1440.     TMP_DECL;
  1441.     SPEED_RESTRICT_COND (s->size >= 2);
  1442.     itch = itchfn (2 * s->size, s->size);
  1443.     TMP_MARK;
  1444.     SPEED_TMP_ALLOC_LIMBS (dp, s->size, s->align_yp);
  1445.     SPEED_TMP_ALLOC_LIMBS (qp, s->size, s->align_wp);
  1446.     SPEED_TMP_ALLOC_LIMBS (tp, 2 * s->size, s->align_xp);
  1447.     SPEED_TMP_ALLOC_LIMBS (scratch, itch, s->align_wp2);
  1448.     SPEED_TMP_ALLOC_LIMBS (rp, s->size, s->align_wp2); /* alignment? */
  1449.     MPN_COPY (tp,         s->xp, s->size);
  1450.     MPN_COPY (tp+s->size, s->xp, s->size);
  1451.     /* divisor must be odd */
  1452.     MPN_COPY (dp, s->yp, s->size);
  1453.     dp[0] |= 1;
  1454.     speed_operand_dst (s, qp, s->size);
  1455.     speed_operand_dst (s, rp, s->size);
  1456.     speed_operand_src (s, tp, 2 * s->size);
  1457.     speed_operand_src (s, dp, s->size);
  1458.     speed_operand_dst (s, scratch, itch);
  1459.     speed_cache_fill (s);
  1460.     speed_starttime ();
  1461.     i = s->reps;
  1462.     do {
  1463.       function (qp, rp, tp, 2 * s->size, dp, s->size, scratch);
  1464.     } while (--i != 0);
  1465.     t = speed_endtime ();
  1466.     TMP_FREE;
  1467.     return t;
  1468.   }
  1469. #define SPEED_ROUTINE_MPN_INVERT(function,itchfn)
  1470.   {
  1471.     long  i;
  1472.     mp_ptr    up, tp, ip;
  1473.     double    t;
  1474.     TMP_DECL;
  1475.     SPEED_RESTRICT_COND (s->size >= 1);
  1476.     TMP_MARK;
  1477.     SPEED_TMP_ALLOC_LIMBS (ip, s->size, s->align_xp);
  1478.     SPEED_TMP_ALLOC_LIMBS (up, s->size,   s->align_yp);
  1479.     SPEED_TMP_ALLOC_LIMBS (tp, itchfn (s->size), s->align_wp);
  1480.     MPN_COPY (up, s->xp, s->size);
  1481.     /* normalize the data */
  1482.     up[s->size-1] |= GMP_NUMB_HIGHBIT;
  1483.     speed_operand_src (s, up, s->size);
  1484.     speed_operand_dst (s, tp, s->size);
  1485.     speed_operand_dst (s, ip, s->size);
  1486.     speed_cache_fill (s);
  1487.     speed_starttime ();
  1488.     i = s->reps;
  1489.     do
  1490.       function (ip, up, s->size, tp);
  1491.     while (--i != 0);
  1492.     t = speed_endtime ();
  1493.     TMP_FREE;
  1494.     return t;
  1495.   }
  1496. #define SPEED_ROUTINE_MPN_INVERTAPPR(function,itchfn)
  1497.   {
  1498.     long  i;
  1499.     mp_ptr    up, tp, ip;
  1500.     double    t;
  1501.     TMP_DECL;
  1502.     SPEED_RESTRICT_COND (s->size >= 1);
  1503.     TMP_MARK;
  1504.     SPEED_TMP_ALLOC_LIMBS (ip, s->size, s->align_xp);
  1505.     SPEED_TMP_ALLOC_LIMBS (up, s->size, s->align_yp);
  1506.     SPEED_TMP_ALLOC_LIMBS (tp, itchfn (s->size), s->align_wp);
  1507.     MPN_COPY (up, s->xp, s->size);
  1508.     /* normalize the data */
  1509.     up[s->size-1] |= GMP_NUMB_HIGHBIT;
  1510.     speed_operand_src (s, up, s->size);
  1511.     speed_operand_dst (s, tp, s->size);
  1512.     speed_operand_dst (s, ip, s->size);
  1513.     speed_cache_fill (s);
  1514.     speed_starttime ();
  1515.     i = s->reps;
  1516.     do
  1517.       function (ip, up, s->size, tp);
  1518.     while (--i != 0);
  1519.     t = speed_endtime ();
  1520.     TMP_FREE;
  1521.     return t;
  1522.   }
  1523. #define SPEED_ROUTINE_MPN_NI_INVERTAPPR(function,itchfn)
  1524.   {
  1525.     long  i;
  1526.     mp_ptr    up, tp, ip;
  1527.     double    t;
  1528.     TMP_DECL;
  1529.     SPEED_RESTRICT_COND (s->size >= 3);
  1530.     TMP_MARK;
  1531.     SPEED_TMP_ALLOC_LIMBS (ip, s->size, s->align_xp);
  1532.     SPEED_TMP_ALLOC_LIMBS (up, s->size, s->align_yp);
  1533.     SPEED_TMP_ALLOC_LIMBS (tp, itchfn (s->size), s->align_wp);
  1534.     MPN_COPY (up, s->xp, s->size);
  1535.     /* normalize the data */
  1536.     up[s->size-1] |= GMP_NUMB_HIGHBIT;
  1537.     speed_operand_src (s, up, s->size);
  1538.     speed_operand_dst (s, tp, s->size);
  1539.     speed_operand_dst (s, ip, s->size);
  1540.     speed_cache_fill (s);
  1541.     speed_starttime ();
  1542.     i = s->reps;
  1543.     do
  1544.       function (ip, up, s->size, tp);
  1545.     while (--i != 0);
  1546.     t = speed_endtime ();
  1547.     TMP_FREE;
  1548.     return t;
  1549.   }
  1550. #define SPEED_ROUTINE_MPN_BINVERT(function,itchfn)
  1551.   {
  1552.     long  i;
  1553.     mp_ptr    up, tp, ip;
  1554.     double    t;
  1555.     TMP_DECL;
  1556.     SPEED_RESTRICT_COND (s->size >= 1);
  1557.     TMP_MARK;
  1558.     SPEED_TMP_ALLOC_LIMBS (ip, s->size, s->align_xp);
  1559.     SPEED_TMP_ALLOC_LIMBS (up, s->size,   s->align_yp);
  1560.     SPEED_TMP_ALLOC_LIMBS (tp, itchfn (s->size), s->align_wp);
  1561.     MPN_COPY (up, s->xp, s->size);
  1562.     /* normalize the data */
  1563.     up[0] |= 1;
  1564.     speed_operand_src (s, up, s->size);
  1565.     speed_operand_dst (s, tp, s->size);
  1566.     speed_operand_dst (s, ip, s->size);
  1567.     speed_cache_fill (s);
  1568.     speed_starttime ();
  1569.     i = s->reps;
  1570.     do
  1571.       function (ip, up, s->size, tp);
  1572.     while (--i != 0);
  1573.     t = speed_endtime ();
  1574.     TMP_FREE;
  1575.     return t;
  1576.   }
  1577. #define SPEED_ROUTINE_REDC_1(function)
  1578.   {
  1579.     unsigned   i;
  1580.     mp_ptr     cp, mp, tp, ap;
  1581.     mp_limb_t  inv;
  1582.     double     t;
  1583.     TMP_DECL;
  1584.     SPEED_RESTRICT_COND (s->size >= 1);
  1585.     TMP_MARK;
  1586.     SPEED_TMP_ALLOC_LIMBS (ap, 2*s->size+1, s->align_xp);
  1587.     SPEED_TMP_ALLOC_LIMBS (mp, s->size,     s->align_yp);
  1588.     SPEED_TMP_ALLOC_LIMBS (cp, s->size,     s->align_wp);
  1589.     SPEED_TMP_ALLOC_LIMBS (tp, 2*s->size+1, s->align_wp2);
  1590.     MPN_COPY (ap,         s->xp, s->size);
  1591.     MPN_COPY (ap+s->size, s->xp, s->size);
  1592.     /* modulus must be odd */
  1593.     MPN_COPY (mp, s->yp, s->size);
  1594.     mp[0] |= 1;
  1595.     binvert_limb (inv, mp[0]);
  1596.     inv = -inv;
  1597.     speed_operand_src (s, ap, 2*s->size+1);
  1598.     speed_operand_dst (s, tp, 2*s->size+1);
  1599.     speed_operand_src (s, mp, s->size);
  1600.     speed_operand_dst (s, cp, s->size);
  1601.     speed_cache_fill (s);
  1602.     speed_starttime ();
  1603.     i = s->reps;
  1604.     do {
  1605.       MPN_COPY (tp, ap, 2*s->size);
  1606.       function (cp, tp, mp, s->size, inv);
  1607.     } while (--i != 0);
  1608.     t = speed_endtime ();
  1609.     TMP_FREE;
  1610.     return t;
  1611.   }
  1612. #define SPEED_ROUTINE_REDC_2(function)
  1613.   {
  1614.     unsigned   i;
  1615.     mp_ptr     cp, mp, tp, ap;
  1616.     mp_limb_t  invp[2];
  1617.     double     t;
  1618.     TMP_DECL;
  1619.     SPEED_RESTRICT_COND (s->size >= 1);
  1620.     TMP_MARK;
  1621.     SPEED_TMP_ALLOC_LIMBS (ap, 2*s->size+1, s->align_xp);
  1622.     SPEED_TMP_ALLOC_LIMBS (mp, s->size,     s->align_yp);
  1623.     SPEED_TMP_ALLOC_LIMBS (cp, s->size,     s->align_wp);
  1624.     SPEED_TMP_ALLOC_LIMBS (tp, 2*s->size+1, s->align_wp2);
  1625.     MPN_COPY (ap,         s->xp, s->size);
  1626.     MPN_COPY (ap+s->size, s->xp, s->size);
  1627.     /* modulus must be odd */
  1628.     MPN_COPY (mp, s->yp, s->size);
  1629.     mp[0] |= 1;
  1630.     mpn_binvert (invp, mp, 2, tp);
  1631.     invp[0] = -invp[0]; invp[1] = ~invp[1];
  1632.     speed_operand_src (s, ap, 2*s->size+1);
  1633.     speed_operand_dst (s, tp, 2*s->size+1);
  1634.     speed_operand_src (s, mp, s->size);
  1635.     speed_operand_dst (s, cp, s->size);
  1636.     speed_cache_fill (s);
  1637.     speed_starttime ();
  1638.     i = s->reps;
  1639.     do {
  1640.       MPN_COPY (tp, ap, 2*s->size);
  1641.       function (cp, tp, mp, s->size, invp);
  1642.     } while (--i != 0);
  1643.     t = speed_endtime ();
  1644.     TMP_FREE;
  1645.     return t;
  1646.   }
  1647. #define SPEED_ROUTINE_REDC_N(function)
  1648.   {
  1649.     unsigned   i;
  1650.     mp_ptr     cp, mp, tp, ap, invp;
  1651.     double     t;
  1652.     TMP_DECL;
  1653.     SPEED_RESTRICT_COND (s->size > 8);
  1654.     TMP_MARK;
  1655.     SPEED_TMP_ALLOC_LIMBS (ap, 2*s->size+1, s->align_xp);
  1656.     SPEED_TMP_ALLOC_LIMBS (mp, s->size,     s->align_yp);
  1657.     SPEED_TMP_ALLOC_LIMBS (cp, s->size,     s->align_wp);
  1658.     SPEED_TMP_ALLOC_LIMBS (tp, 2*s->size+1, s->align_wp2);
  1659.     SPEED_TMP_ALLOC_LIMBS (invp, s->size,   s->align_wp2); /* align? */
  1660.     MPN_COPY (ap,         s->xp, s->size);
  1661.     MPN_COPY (ap+s->size, s->xp, s->size);
  1662.     /* modulus must be odd */
  1663.     MPN_COPY (mp, s->yp, s->size);
  1664.     mp[0] |= 1;
  1665.     mpn_binvert (invp, mp, s->size, tp);
  1666.     speed_operand_src (s, ap, 2*s->size+1);
  1667.     speed_operand_dst (s, tp, 2*s->size+1);
  1668.     speed_operand_src (s, mp, s->size);
  1669.     speed_operand_dst (s, cp, s->size);
  1670.     speed_cache_fill (s);
  1671.     speed_starttime ();
  1672.     i = s->reps;
  1673.     do {
  1674.       MPN_COPY (tp, ap, 2*s->size);
  1675.       function (cp, tp, mp, s->size, invp);
  1676.     } while (--i != 0);
  1677.     t = speed_endtime ();
  1678.     TMP_FREE;
  1679.     return t;
  1680.   }
  1681. #define SPEED_ROUTINE_MPN_POPCOUNT(function)
  1682.   {
  1683.     unsigned i;
  1684.     SPEED_RESTRICT_COND (s->size >= 1);
  1685.     speed_operand_src (s, s->xp, s->size);
  1686.     speed_cache_fill (s);
  1687.     speed_starttime ();
  1688.     i = s->reps;
  1689.     do
  1690.       function (s->xp, s->size);
  1691.     while (--i != 0);
  1692.     return speed_endtime ();
  1693.   }
  1694. #define SPEED_ROUTINE_MPN_HAMDIST(function)
  1695.   {
  1696.     unsigned i;
  1697.     SPEED_RESTRICT_COND (s->size >= 1);
  1698.     speed_operand_src (s, s->xp, s->size);
  1699.     speed_operand_src (s, s->yp, s->size);
  1700.     speed_cache_fill (s);
  1701.     speed_starttime ();
  1702.     i = s->reps;
  1703.     do
  1704.       function (s->xp, s->yp, s->size);
  1705.     while (--i != 0);
  1706.     return speed_endtime ();
  1707.   }
  1708. #define SPEED_ROUTINE_MPZ_UI(function)
  1709.   {
  1710.     mpz_t     z;
  1711.     unsigned  i;
  1712.     double    t;
  1713.     SPEED_RESTRICT_COND (s->size >= 0);
  1714.     mpz_init (z);
  1715.     speed_starttime ();
  1716.     i = s->reps;
  1717.     do
  1718.       function (z, s->size);
  1719.     while (--i != 0);
  1720.     t = speed_endtime ();
  1721.     mpz_clear (z);
  1722.     return t;
  1723.   }
  1724. #define SPEED_ROUTINE_MPZ_FAC_UI(function)    SPEED_ROUTINE_MPZ_UI(function)
  1725. #define SPEED_ROUTINE_MPZ_FIB_UI(function)    SPEED_ROUTINE_MPZ_UI(function)
  1726. #define SPEED_ROUTINE_MPZ_LUCNUM_UI(function) SPEED_ROUTINE_MPZ_UI(function)
  1727. #define SPEED_ROUTINE_MPZ_2_UI(function)
  1728.   {
  1729.     mpz_t     z, z2;
  1730.     unsigned  i;
  1731.     double    t;
  1732.     SPEED_RESTRICT_COND (s->size >= 0);
  1733.     mpz_init (z);
  1734.     mpz_init (z2);
  1735.     speed_starttime ();
  1736.     i = s->reps;
  1737.     do
  1738.       function (z, z2, s->size);
  1739.     while (--i != 0);
  1740.     t = speed_endtime ();
  1741.     mpz_clear (z);
  1742.     mpz_clear (z2);
  1743.     return t;
  1744.   }
  1745. #define SPEED_ROUTINE_MPZ_FIB2_UI(function)    SPEED_ROUTINE_MPZ_2_UI(function)
  1746. #define SPEED_ROUTINE_MPZ_LUCNUM2_UI(function) SPEED_ROUTINE_MPZ_2_UI(function)
  1747. #define SPEED_ROUTINE_MPN_FIB2_UI(function)
  1748.   {
  1749.     mp_ptr     fp, f1p;
  1750.     mp_size_t  alloc;
  1751.     unsigned   i;
  1752.     double     t;
  1753.     TMP_DECL;
  1754.     SPEED_RESTRICT_COND (s->size >= 0);
  1755.     TMP_MARK;
  1756.     alloc = MPN_FIB2_SIZE (s->size);
  1757.     SPEED_TMP_ALLOC_LIMBS (fp, alloc, s->align_xp);
  1758.     SPEED_TMP_ALLOC_LIMBS (f1p, alloc, s->align_yp);
  1759.     speed_starttime ();
  1760.     i = s->reps;
  1761.     do
  1762.       function (fp, f1p, s->size);
  1763.     while (--i != 0);
  1764.     t = speed_endtime ();
  1765.     TMP_FREE;
  1766.     return t;
  1767.   }
  1768. /* Calculate b^e mod m for random b and m of s->size limbs and random e of 6
  1769.    limbs.  m is forced to odd so that redc can be used.  e is limited in
  1770.    size so the calculation doesn't take too long. */
  1771. #define SPEED_ROUTINE_MPZ_POWM(function)
  1772.   {
  1773.     mpz_t     r, b, e, m;
  1774.     unsigned  i;
  1775.     double    t;
  1776.     SPEED_RESTRICT_COND (s->size >= 1);
  1777.     mpz_init (r);
  1778.     mpz_init_set_n (b, s->xp, s->size);
  1779.     mpz_init_set_n (m, s->yp, s->size);
  1780.     mpz_setbit (m, 0); /* force m to odd */
  1781.     mpz_init_set_n (e, s->xp_block, 6);
  1782.     speed_starttime ();
  1783.     i = s->reps;
  1784.     do
  1785.       function (r, b, e, m);
  1786.     while (--i != 0);
  1787.     t = speed_endtime ();
  1788.     mpz_clear (r);
  1789.     mpz_clear (b);
  1790.     mpz_clear (e);
  1791.     mpz_clear (m);
  1792.     return t;
  1793.   }
  1794. /* (m-2)^0xAAAAAAAA mod m */
  1795. #define SPEED_ROUTINE_MPZ_POWM_UI(function)
  1796.   {
  1797.     mpz_t     r, b, m;
  1798.     unsigned  long  e;
  1799.     unsigned  i;
  1800.     double    t;
  1801.     SPEED_RESTRICT_COND (s->size >= 1);
  1802.     mpz_init (r);
  1803.     /* force m to odd */
  1804.     mpz_init (m);
  1805.     mpz_set_n (m, s->xp, s->size);
  1806.     PTR(m)[0] |= 1;
  1807.     e = (~ (unsigned long) 0) / 3;
  1808.     if (s->r != 0)
  1809.       e = s->r;
  1810.     mpz_init_set (b, m);
  1811.     mpz_sub_ui (b, b, 2);
  1812. /* printf ("%Xn", mpz_get_ui(m)); */
  1813.     i = s->reps;
  1814.     speed_starttime ();
  1815.     do
  1816.       function (r, b, e, m);
  1817.     while (--i != 0);
  1818.     t = speed_endtime ();
  1819.     mpz_clear (r);
  1820.     mpz_clear (b);
  1821.     mpz_clear (m);
  1822.     return t;
  1823.   }
  1824. #define SPEED_ROUTINE_MPN_ADDSUB_CALL(call)
  1825.   {
  1826.     mp_ptr    wp, wp2, xp, yp;
  1827.     unsigned  i;
  1828.     double    t;
  1829.     TMP_DECL;
  1830.     SPEED_RESTRICT_COND (s->size >= 0);
  1831.     TMP_MARK;
  1832.     SPEED_TMP_ALLOC_LIMBS (wp, s->size, s->align_wp);
  1833.     SPEED_TMP_ALLOC_LIMBS (wp2, s->size, s->align_wp2);
  1834.     xp = s->xp;
  1835.     yp = s->yp;
  1836.     if (s->r == 0) ;
  1837.     else if (s->r == 1) { xp = wp;       }
  1838.     else if (s->r == 2) {     yp = wp2; }
  1839.     else if (s->r == 3) { xp = wp;  yp = wp2; }
  1840.     else if (s->r == 4) { xp = wp2; yp = wp;  }
  1841.     else {
  1842.       TMP_FREE;
  1843.       return -1.0;
  1844.     }
  1845.     if (xp != s->xp) MPN_COPY (xp, s->xp, s->size);
  1846.     if (yp != s->yp) MPN_COPY (yp, s->yp, s->size);
  1847.     speed_operand_src (s, xp, s->size);
  1848.     speed_operand_src (s, yp, s->size);
  1849.     speed_operand_dst (s, wp, s->size);
  1850.     speed_operand_dst (s, wp2, s->size);
  1851.     speed_cache_fill (s);
  1852.     speed_starttime ();
  1853.     i = s->reps;
  1854.     do
  1855.       call;
  1856.     while (--i != 0);
  1857.     t = speed_endtime ();
  1858.     TMP_FREE;
  1859.     return t;
  1860.   }
  1861. #define SPEED_ROUTINE_MPN_ADDSUB_N(function)
  1862.   SPEED_ROUTINE_MPN_ADDSUB_CALL
  1863.     (function (wp, wp2, xp, yp, s->size));
  1864. #define SPEED_ROUTINE_MPN_ADDSUB_NC(function)
  1865.   SPEED_ROUTINE_MPN_ADDSUB_CALL
  1866.     (function (wp, wp2, xp, yp, s->size, 0));
  1867. /* Doing an Nx1 gcd with the given r. */
  1868. #define SPEED_ROUTINE_MPN_GCD_1N(function)
  1869.   {
  1870.     mp_ptr    xp;
  1871.     unsigned  i;
  1872.     double    t;
  1873.     TMP_DECL;
  1874.     SPEED_RESTRICT_COND (s->size >= 1);
  1875.     SPEED_RESTRICT_COND (s->r != 0);
  1876.     TMP_MARK;
  1877.     SPEED_TMP_ALLOC_LIMBS (xp, s->size, s->align_xp);
  1878.     MPN_COPY (xp, s->xp, s->size);
  1879.     xp[0] |= refmpn_zero_p (xp, s->size);
  1880.     speed_operand_src (s, s->xp, s->size);
  1881.     speed_cache_fill (s);
  1882.     speed_starttime ();
  1883.     i = s->reps;
  1884.     do
  1885.       function (xp, s->size, s->r);
  1886.     while (--i != 0);
  1887.     t = speed_endtime ();
  1888.     TMP_FREE;
  1889.     return t;
  1890.   }
  1891. /* SPEED_BLOCK_SIZE many one GCDs of s->size bits each. */
  1892. #define SPEED_ROUTINE_MPN_GCD_1_CALL(setup, call)
  1893.   {
  1894.     unsigned  i, j;
  1895.     mp_ptr    px, py;
  1896.     mp_limb_t x_mask, y_mask;
  1897.     double    t;
  1898.     TMP_DECL;
  1899.     SPEED_RESTRICT_COND (s->size >= 1);
  1900.     SPEED_RESTRICT_COND (s->size <= mp_bits_per_limb);
  1901.     TMP_MARK;
  1902.     SPEED_TMP_ALLOC_LIMBS (px, SPEED_BLOCK_SIZE, s->align_xp);
  1903.     SPEED_TMP_ALLOC_LIMBS (py, SPEED_BLOCK_SIZE, s->align_yp);
  1904.     MPN_COPY (px, s->xp_block, SPEED_BLOCK_SIZE);
  1905.     MPN_COPY (py, s->yp_block, SPEED_BLOCK_SIZE);
  1906.     x_mask = MP_LIMB_T_LOWBITMASK (s->size);
  1907.     y_mask = MP_LIMB_T_LOWBITMASK (s->r != 0 ? s->r : s->size);
  1908.     for (i = 0; i < SPEED_BLOCK_SIZE; i++)
  1909.       {
  1910. px[i] &= x_mask; px[i] += (px[i] == 0);
  1911. py[i] &= y_mask; py[i] += (py[i] == 0);
  1912. setup;
  1913.       }
  1914.     speed_operand_src (s, px, SPEED_BLOCK_SIZE);
  1915.     speed_operand_src (s, py, SPEED_BLOCK_SIZE);
  1916.     speed_cache_fill (s);
  1917.     speed_starttime ();
  1918.     i = s->reps;
  1919.     do
  1920.       {
  1921. j = SPEED_BLOCK_SIZE;
  1922. do
  1923.   {
  1924.     call;
  1925.   }
  1926. while (--j != 0);
  1927.       }
  1928.     while (--i != 0);
  1929.     t = speed_endtime ();
  1930.     TMP_FREE;
  1931.     s->time_divisor = SPEED_BLOCK_SIZE;
  1932.     return t;
  1933.   }
  1934. #define SPEED_ROUTINE_MPN_GCD_1(function)
  1935.   SPEED_ROUTINE_MPN_GCD_1_CALL( , function (&px[j-1], 1, py[j-1]))
  1936. #define SPEED_ROUTINE_MPN_JACBASE(function)
  1937.   SPEED_ROUTINE_MPN_GCD_1_CALL
  1938.     ({
  1939.        /* require x<y, y odd, y!=1 */
  1940.        px[i] %= py[i];
  1941.        px[i] |= 1;
  1942.        py[i] |= 1;
  1943.        if (py[i]==1) py[i]=3;
  1944.      },
  1945.      function (px[j-1], py[j-1], 0))
  1946. /* Run some GCDs of s->size limbs each.  The number of different data values
  1947.    is decreased as s->size**2, since GCD is a quadratic algorithm.
  1948.    SPEED_ROUTINE_MPN_GCD runs more times than SPEED_ROUTINE_MPN_GCDEXT
  1949.    though, because the plain gcd is about twice as fast as gcdext.  */
  1950. #define SPEED_ROUTINE_MPN_GCD_CALL(datafactor, call)
  1951.   {
  1952.     unsigned  i;
  1953.     mp_size_t j, pieces, psize;
  1954.     mp_ptr    wp, wp2, xtmp, ytmp, px, py;
  1955.     double    t;
  1956.     TMP_DECL;
  1957.     SPEED_RESTRICT_COND (s->size >= 1);
  1958.     TMP_MARK;
  1959.     SPEED_TMP_ALLOC_LIMBS (xtmp, s->size+1, s->align_xp);
  1960.     SPEED_TMP_ALLOC_LIMBS (ytmp, s->size+1, s->align_yp);
  1961.     SPEED_TMP_ALLOC_LIMBS (wp,   s->size+1, s->align_wp);
  1962.     SPEED_TMP_ALLOC_LIMBS (wp2,  s->size+1, s->align_wp2);
  1963.     pieces = SPEED_BLOCK_SIZE * datafactor / s->size / s->size;
  1964.     pieces = MIN (pieces, SPEED_BLOCK_SIZE / s->size);
  1965.     pieces = MAX (pieces, 1);
  1966.     psize = pieces * s->size;
  1967.     px = TMP_ALLOC_LIMBS (psize);
  1968.     py = TMP_ALLOC_LIMBS (psize);
  1969.     MPN_COPY (px, pieces==1 ? s->xp : s->xp_block, psize);
  1970.     MPN_COPY (py, pieces==1 ? s->yp : s->yp_block, psize);
  1971.     /* Requirements: x >= y, y must be odd, high limbs != 0.
  1972.        No need to ensure random numbers are really great.  */
  1973.     for (j = 0; j < pieces; j++)
  1974.       {
  1975. mp_ptr x = px + j * s->size;
  1976. mp_ptr y = py + j * s->size;
  1977. if (x[s->size - 1] == 0) x[s->size - 1] = 1;
  1978. if (y[s->size - 1] == 0) y[s->size - 1] = 1;
  1979. if (x[s->size - 1] < y[s->size - 1])
  1980.   MP_LIMB_T_SWAP (x[s->size - 1], y[s->size - 1]);
  1981. else if (x[s->size - 1] == y[s->size - 1])
  1982.   {
  1983.     x[s->size - 1] = 2;
  1984.     y[s->size - 1] = 1;
  1985.   }
  1986. y[0] |= 1;
  1987.       }
  1988.     speed_operand_src (s, px, psize);
  1989.     speed_operand_src (s, py, psize);
  1990.     speed_operand_dst (s, xtmp, s->size);
  1991.     speed_operand_dst (s, ytmp, s->size);
  1992.     speed_operand_dst (s, wp, s->size);
  1993.     speed_cache_fill (s);
  1994.     speed_starttime ();
  1995.     i = s->reps;
  1996.     do
  1997.       {
  1998. j = pieces;
  1999. do
  2000.   {
  2001.     MPN_COPY (xtmp, px+(j - 1)*s->size, s->size);
  2002.     MPN_COPY (ytmp, py+(j - 1)*s->size, s->size);
  2003.     call;
  2004.   }
  2005. while (--j != 0);
  2006.       }
  2007.     while (--i != 0);
  2008.     t = speed_endtime ();
  2009.     TMP_FREE;
  2010.     s->time_divisor = pieces;
  2011.     return t;
  2012.   }
  2013. #define SPEED_ROUTINE_MPN_GCD(function)
  2014.   SPEED_ROUTINE_MPN_GCD_CALL (8, function (wp, xtmp, s->size, ytmp, s->size))
  2015. #define SPEED_ROUTINE_MPN_GCDEXT(function)
  2016.   SPEED_ROUTINE_MPN_GCD_CALL
  2017.     (4, { mp_size_t  wp2size;
  2018.   function (wp, wp2, &wp2size, xtmp, s->size, ytmp, s->size); })
  2019. #define SPEED_ROUTINE_MPN_GCDEXT_ONE(function)
  2020.   {
  2021.     unsigned  i;
  2022.     mp_size_t j, pieces, psize, wp2size;
  2023.     mp_ptr    wp, wp2, xtmp, ytmp, px, py;
  2024.     double    t;
  2025.     TMP_DECL;
  2026.     SPEED_RESTRICT_COND (s->size >= 1);
  2027.     TMP_MARK;
  2028.     SPEED_TMP_ALLOC_LIMBS (xtmp, s->size+1, s->align_xp);
  2029.     SPEED_TMP_ALLOC_LIMBS (ytmp, s->size+1, s->align_yp);
  2030.     MPN_COPY (xtmp, s->xp, s->size);
  2031.     MPN_COPY (ytmp, s->yp, s->size);
  2032.     SPEED_TMP_ALLOC_LIMBS (wp, s->size+1, s->align_wp);
  2033.     SPEED_TMP_ALLOC_LIMBS (wp2, s->size+1, s->align_wp2);
  2034.     pieces = SPEED_BLOCK_SIZE / 3;
  2035.     psize = 3 * pieces;
  2036.     px = TMP_ALLOC_LIMBS (psize);
  2037.     py = TMP_ALLOC_LIMBS (psize);
  2038.     MPN_COPY (px, s->xp_block, psize);
  2039.     MPN_COPY (py, s->yp_block, psize);
  2040.     /* x must have at least as many bits as y,
  2041.        high limbs must be non-zero */
  2042.     for (j = 0; j < pieces; j++)
  2043.       {
  2044. mp_ptr x = px+3*j;
  2045. mp_ptr y = py+3*j;
  2046. x[2] += (x[2] == 0);
  2047. y[2] += (y[2] == 0);
  2048. if (x[2] < y[2])
  2049.   MP_LIMB_T_SWAP (x[2], y[2]);
  2050.       }
  2051.     speed_operand_src (s, px, psize);
  2052.     speed_operand_src (s, py, psize);
  2053.     speed_operand_dst (s, xtmp, s->size);
  2054.     speed_operand_dst (s, ytmp, s->size);
  2055.     speed_operand_dst (s, wp, s->size);
  2056.     speed_cache_fill (s);
  2057.     speed_starttime ();
  2058.     i = s->reps;
  2059.     do
  2060.       {
  2061. mp_ptr x = px;
  2062. mp_ptr y = py;
  2063. mp_ptr xth = &xtmp[s->size-3];
  2064. mp_ptr yth = &ytmp[s->size-3];
  2065. j = pieces;
  2066. do
  2067.   {
  2068.     xth[0] = x[0], xth[1] = x[1], xth[2] = x[2];
  2069.     yth[0] = y[0], yth[1] = y[1], yth[2] = y[2];
  2070.     ytmp[0] |= 1; /* y must be odd, */
  2071.     function (wp, wp2, &wp2size, xtmp, s->size, ytmp, s->size);
  2072.     x += 3;
  2073.     y += 3;
  2074.   }
  2075. while (--j != 0);
  2076.       }
  2077.     while (--i != 0);
  2078.     t = speed_endtime ();
  2079.     TMP_FREE;
  2080.     s->time_divisor = pieces;
  2081.     return t;
  2082.   }
  2083. #define SPEED_ROUTINE_MPZ_JACOBI(function)
  2084.   {
  2085.     mpz_t     a, b;
  2086.     unsigned  i;
  2087.     mp_size_t j, pieces, psize;
  2088.     mp_ptr    px, py;
  2089.     double    t;
  2090.     TMP_DECL;
  2091.     TMP_MARK;
  2092.     pieces = SPEED_BLOCK_SIZE / MAX (s->size, 1);
  2093.     pieces = MAX (pieces, 1);
  2094.     s->time_divisor = pieces;
  2095.     psize = pieces * s->size;
  2096.     px = TMP_ALLOC_LIMBS (psize);
  2097.     py = TMP_ALLOC_LIMBS (psize);
  2098.     MPN_COPY (px, pieces==1 ? s->xp : s->xp_block, psize);
  2099.     MPN_COPY (py, pieces==1 ? s->yp : s->yp_block, psize);
  2100.     for (j = 0; j < pieces; j++)
  2101.       {
  2102. mp_ptr x = px+j*s->size;
  2103. mp_ptr y = py+j*s->size;
  2104. /* y odd */
  2105. y[0] |= 1;
  2106. /* high limbs non-zero */
  2107. if (x[s->size-1] == 0) x[s->size-1] = 1;
  2108. if (y[s->size-1] == 0) y[s->size-1] = 1;
  2109.       }
  2110.     SIZ(a) = s->size;
  2111.     SIZ(b) = s->size;
  2112.     speed_operand_src (s, px, psize);
  2113.     speed_operand_src (s, py, psize);
  2114.     speed_cache_fill (s);
  2115.     speed_starttime ();
  2116.     i = s->reps;
  2117.     do
  2118.       {
  2119. j = pieces;
  2120. do
  2121.   {
  2122.     PTR(a) = px+(j-1)*s->size;
  2123.     PTR(b) = py+(j-1)*s->size;
  2124.     function (a, b);
  2125.   }
  2126. while (--j != 0);
  2127.       }
  2128.     while (--i != 0);
  2129.     t = speed_endtime ();
  2130.     TMP_FREE;
  2131.     return t;
  2132.   }
  2133. #define SPEED_ROUTINE_MPN_DIVREM_2(function)
  2134.   {
  2135.     mp_ptr    wp, xp;
  2136.     mp_limb_t yp[2];
  2137.     unsigned  i;
  2138.     double    t;
  2139.     TMP_DECL;
  2140.     SPEED_RESTRICT_COND (s->size >= 2);
  2141.     TMP_MARK;
  2142.     SPEED_TMP_ALLOC_LIMBS (xp, s->size, s->align_xp);
  2143.     SPEED_TMP_ALLOC_LIMBS (wp, s->size, s->align_wp);
  2144.     /* source is destroyed */
  2145.     MPN_COPY (xp, s->xp, s->size);
  2146.     /* divisor must be normalized */
  2147.     MPN_COPY (yp, s->yp_block, 2);
  2148.     yp[1] |= GMP_NUMB_HIGHBIT;
  2149.     speed_operand_src (s, xp, s->size);
  2150.     speed_operand_src (s, yp, 2);
  2151.     speed_operand_dst (s, wp, s->size);
  2152.     speed_cache_fill (s);
  2153.     speed_starttime ();
  2154.     i = s->reps;
  2155.     do
  2156.       function (wp, 0, xp, s->size, yp);
  2157.     while (--i != 0);
  2158.     t = speed_endtime ();
  2159.     TMP_FREE;
  2160.     return t;
  2161.   }
  2162. #define SPEED_ROUTINE_MODLIMB_INVERT(function)
  2163.   {
  2164.     unsigned   i, j;
  2165.     mp_ptr     xp;
  2166.     mp_limb_t  n = 1;
  2167.     double     t;
  2168.     xp = s->xp_block-1;
  2169.     speed_operand_src (s, s->xp_block, SPEED_BLOCK_SIZE);
  2170.     speed_cache_fill (s);
  2171.     speed_starttime ();
  2172.     i = s->reps;
  2173.     do
  2174.       {
  2175. j = SPEED_BLOCK_SIZE;
  2176. do
  2177.   {
  2178.     /* randomized but successively dependent */
  2179.     n += (xp[j] << 1);
  2180.     function (n, n);
  2181.   }
  2182. while (--j != 0);
  2183.       }
  2184.     while (--i != 0);
  2185.     t = speed_endtime ();
  2186.     /* make sure the compiler won't optimize away n */
  2187.     noop_1 (n);
  2188.     s->time_divisor = SPEED_BLOCK_SIZE;
  2189.     return t;
  2190.   }
  2191. #define SPEED_ROUTINE_MPN_SQRTREM(function)
  2192.   {
  2193.     mp_ptr    wp, wp2;
  2194.     unsigned  i;
  2195.     double    t;
  2196.     TMP_DECL;
  2197.     SPEED_RESTRICT_COND (s->size >= 1);
  2198.     TMP_MARK;
  2199.     SPEED_TMP_ALLOC_LIMBS (wp, s->size, s->align_wp);
  2200.     SPEED_TMP_ALLOC_LIMBS (wp2, s->size, s->align_wp2);
  2201.     speed_operand_src (s, s->xp, s->size);
  2202.     speed_operand_dst (s, wp, s->size);
  2203.     speed_operand_dst (s, wp2, s->size);
  2204.     speed_cache_fill (s);
  2205.     speed_starttime ();
  2206.     i = s->reps;
  2207.     do
  2208.       function (wp, wp2, s->xp, s->size);
  2209.     while (--i != 0);
  2210.     t = speed_endtime ();
  2211.     TMP_FREE;
  2212.     return t;
  2213.   }
  2214. #define SPEED_ROUTINE_MPN_ROOTREM(function)
  2215.   {
  2216.     mp_ptr    wp, wp2;
  2217.     unsigned  i;
  2218.     double    t;
  2219.     TMP_DECL;
  2220.     SPEED_RESTRICT_COND (s->size >= 1);
  2221.     TMP_MARK;
  2222.     SPEED_TMP_ALLOC_LIMBS (wp, s->size, s->align_wp);
  2223.     SPEED_TMP_ALLOC_LIMBS (wp2, s->size, s->align_wp2);
  2224.     speed_operand_src (s, s->xp, s->size);
  2225.     speed_operand_dst (s, wp, s->size);
  2226.     speed_operand_dst (s, wp2, s->size);
  2227.     speed_cache_fill (s);
  2228.     speed_starttime ();
  2229.     i = s->reps;
  2230.     do
  2231.       function (wp, wp2, s->xp, s->size, s->r);
  2232.     while (--i != 0);
  2233.     t = speed_endtime ();
  2234.     TMP_FREE;
  2235.     return t;
  2236.   }
  2237. /* s->size controls the number of limbs in the input, s->r is the base, or
  2238.    decimal by default. */
  2239. #define SPEED_ROUTINE_MPN_GET_STR(function)
  2240.   {
  2241.     unsigned char *wp;
  2242.     mp_size_t wn;
  2243.     mp_ptr xp;
  2244.     int base;
  2245.     unsigned i;
  2246.     double t;
  2247.     TMP_DECL;
  2248.     SPEED_RESTRICT_COND (s->size >= 1);
  2249.     base = s->r == 0 ? 10 : s->r;
  2250.     SPEED_RESTRICT_COND (base >= 2 && base <= 256);
  2251.     TMP_MARK;
  2252.     SPEED_TMP_ALLOC_LIMBS (xp, s->size + 1, s->align_xp);
  2253.     MPN_SIZEINBASE (wn, s->xp, s->size, base);
  2254.     wp = TMP_ALLOC (wn);
  2255.     /* use this during development to guard against overflowing wp */
  2256.     /*
  2257.     MPN_COPY (xp, s->xp, s->size);
  2258.     ASSERT_ALWAYS (mpn_get_str (wp, base, xp, s->size) <= wn);
  2259.     */
  2260.     speed_operand_src (s, s->xp, s->size);
  2261.     speed_operand_dst (s, xp, s->size);
  2262.     speed_operand_dst (s, (mp_ptr) wp, wn/BYTES_PER_MP_LIMB);
  2263.     speed_cache_fill (s);
  2264.     speed_starttime ();
  2265.     i = s->reps;
  2266.     do
  2267.       {
  2268. MPN_COPY (xp, s->xp, s->size);
  2269. function (wp, base, xp, s->size);
  2270.       }
  2271.     while (--i != 0);
  2272.     t = speed_endtime ();
  2273.     TMP_FREE;
  2274.     return t;
  2275.   }
  2276. /* s->size controls the number of digits in the input, s->r is the base, or
  2277.    decimal by default. */
  2278. #define SPEED_ROUTINE_MPN_SET_STR_CALL(call)
  2279.   {
  2280.     unsigned char *xp;
  2281.     mp_ptr     wp;
  2282.     mp_size_t  wn;
  2283.     unsigned   i;
  2284.     int        base;
  2285.     double     t;
  2286.     TMP_DECL;
  2287.     SPEED_RESTRICT_COND (s->size >= 1);
  2288.     base = s->r == 0 ? 10 : s->r;
  2289.     SPEED_RESTRICT_COND (base >= 2 && base <= 256);
  2290.     TMP_MARK;
  2291.     xp = TMP_ALLOC (s->size);
  2292.     for (i = 0; i < s->size; i++)
  2293.       xp[i] = s->xp[i] % base;
  2294.     wn = ((mp_size_t) (s->size / mp_bases[base].chars_per_bit_exactly)) 
  2295.       / GMP_LIMB_BITS + 2;
  2296.     SPEED_TMP_ALLOC_LIMBS (wp, wn, s->align_wp);
  2297.     /* use this during development to check wn is big enough */
  2298.     /*
  2299.     ASSERT_ALWAYS (mpn_set_str (wp, xp, s->size, base) <= wn);
  2300.     */
  2301.     speed_operand_src (s, (mp_ptr) xp, s->size/BYTES_PER_MP_LIMB);
  2302.     speed_operand_dst (s, wp, wn);
  2303.     speed_cache_fill (s);
  2304.     speed_starttime ();
  2305.     i = s->reps;
  2306.     do
  2307.       call;
  2308.     while (--i != 0);
  2309.     t = speed_endtime ();
  2310.     TMP_FREE;
  2311.     return t;
  2312.   }
  2313. /* Run an accel gcd find_a() function over various data values.  A set of
  2314.    values is used in case some run particularly fast or slow.  The size
  2315.    parameter is ignored, the amount of data tested is fixed.  */
  2316. #define SPEED_ROUTINE_MPN_GCD_FINDA(function)
  2317.   {
  2318.     unsigned  i, j;
  2319.     mp_limb_t cp[SPEED_BLOCK_SIZE][2];
  2320.     double    t;
  2321.     TMP_DECL;
  2322.     TMP_MARK;
  2323.     /* low must be odd, high must be non-zero */
  2324.     for (i = 0; i < SPEED_BLOCK_SIZE; i++)
  2325.       {
  2326. cp[i][0] = s->xp_block[i] | 1;
  2327. cp[i][1] = s->yp_block[i] + (s->yp_block[i] == 0);
  2328.       }
  2329.     speed_operand_src (s, &cp[0][0], 2*SPEED_BLOCK_SIZE);
  2330.     speed_cache_fill (s);
  2331.     speed_starttime ();
  2332.     i = s->reps;
  2333.     do
  2334.       {
  2335. j = SPEED_BLOCK_SIZE;
  2336. do
  2337.   {
  2338.     function (cp[j-1]);
  2339.   }
  2340. while (--j != 0);
  2341.       }
  2342.     while (--i != 0);
  2343.     t = speed_endtime ();
  2344.     TMP_FREE;
  2345.     s->time_divisor = SPEED_BLOCK_SIZE;
  2346.     return t;
  2347.   }
  2348. /* "call" should do "count_foo_zeros(c,n)".
  2349.    Give leading=1 if foo is leading zeros, leading=0 for trailing.
  2350.    Give zero=1 if n=0 is allowed in the call, zero=0 if not.  */
  2351. #define SPEED_ROUTINE_COUNT_ZEROS_A(leading, zero)
  2352.   {
  2353.     mp_ptr     xp;
  2354.     int        i, c;
  2355.     unsigned   j;
  2356.     mp_limb_t  n;
  2357.     double     t;
  2358.     TMP_DECL;
  2359.     TMP_MARK;
  2360.     SPEED_TMP_ALLOC_LIMBS (xp, SPEED_BLOCK_SIZE, s->align_xp);
  2361.     if (! speed_routine_count_zeros_setup (s, xp, leading, zero))
  2362.       return -1.0;
  2363.     speed_operand_src (s, xp, SPEED_BLOCK_SIZE);
  2364.     speed_cache_fill (s);
  2365.     c = 0;
  2366.     speed_starttime ();
  2367.     j = s->reps;
  2368.     do {
  2369.       for (i = 0; i < SPEED_BLOCK_SIZE; i++)
  2370. {
  2371.   n = xp[i];
  2372.   n ^= c;
  2373. #define SPEED_ROUTINE_COUNT_ZEROS_B()
  2374. }
  2375.     } while (--j != 0);
  2376.     t = speed_endtime ();
  2377.     /* don't let c go dead */
  2378.     noop_1 (c);
  2379.     s->time_divisor = SPEED_BLOCK_SIZE;
  2380.     TMP_FREE;
  2381.     return t;
  2382.   }
  2383. #define SPEED_ROUTINE_COUNT_ZEROS_C(call, leading, zero)
  2384.   do {
  2385.     SPEED_ROUTINE_COUNT_ZEROS_A (leading, zero);
  2386.     call;
  2387.     SPEED_ROUTINE_COUNT_ZEROS_B ();
  2388.   } while (0)
  2389. #define SPEED_ROUTINE_COUNT_LEADING_ZEROS_C(call,zero)
  2390.   SPEED_ROUTINE_COUNT_ZEROS_C (call, 1, zero)
  2391. #define SPEED_ROUTINE_COUNT_LEADING_ZEROS(fun)
  2392.   SPEED_ROUTINE_COUNT_ZEROS_C (fun (c, n), 1, 0)
  2393. #define SPEED_ROUTINE_COUNT_TRAILING_ZEROS_C(call,zero)
  2394.   SPEED_ROUTINE_COUNT_ZEROS_C (call, 0, zero)
  2395. #define SPEED_ROUTINE_COUNT_TRAILING_ZEROS(call)
  2396.   SPEED_ROUTINE_COUNT_ZEROS_C (fun (c, n), 0, 0)
  2397. #define SPEED_ROUTINE_INVERT_LIMB_CALL(call)
  2398.   {
  2399.     unsigned   i, j;
  2400.     mp_limb_t  d, dinv=0;
  2401.     mp_ptr     xp = s->xp_block - 1;
  2402.     s->time_divisor = SPEED_BLOCK_SIZE;
  2403.     speed_starttime ();
  2404.     i = s->reps;
  2405.     do
  2406.       {
  2407. j = SPEED_BLOCK_SIZE;
  2408. do
  2409.   {
  2410.     d = dinv ^ xp[j];
  2411.     d |= GMP_LIMB_HIGHBIT;
  2412.     do { call; } while (0);
  2413.   }
  2414. while (--j != 0);
  2415.       }
  2416.     while (--i != 0);
  2417.     /* don't let the compiler optimize everything away */
  2418.     noop_1 (dinv);
  2419.     return speed_endtime();
  2420.   }
  2421. #endif
  2422. #define SPEED_ROUTINE_MPN_BACK_TO_BACK(function)
  2423.   {
  2424.     unsigned  i;
  2425.     speed_starttime ();
  2426.     i = s->reps;
  2427.     do
  2428.       function ();
  2429.     while (--i != 0);
  2430.     return speed_endtime ();
  2431.   }
  2432. #define SPEED_ROUTINE_MPN_ZERO_CALL(call)
  2433.   {
  2434.     mp_ptr    wp;
  2435.     unsigned  i;
  2436.     double    t;
  2437.     TMP_DECL;
  2438.     SPEED_RESTRICT_COND (s->size >= 0);
  2439.     TMP_MARK;
  2440.     SPEED_TMP_ALLOC_LIMBS (wp, s->size, s->align_wp);
  2441.     speed_operand_dst (s, wp, s->size);
  2442.     speed_cache_fill (s);
  2443.     speed_starttime ();
  2444.     i = s->reps;
  2445.     do
  2446.       call;
  2447.     while (--i != 0);
  2448.     t = speed_endtime ();
  2449.     TMP_FREE;
  2450.     return t;
  2451.   }
  2452. #define SPEED_ROUTINE_MPN_ZERO(function)
  2453.   SPEED_ROUTINE_MPN_ZERO_CALL (function (wp, s->size))