gen-bases.c
上传用户:qaz666999
上传日期:2022-08-06
资源大小:2570k
文件大小:5k
源码类别:

数学计算

开发平台:

Unix_Linux

  1. /* Generate mp_bases data.
  2. Copyright 1991, 1993, 1994, 1996, 2000, 2002, 2004 Free Software Foundation,
  3. 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. #include <math.h>
  16. #include "dumbmp.c"
  17. int    chars_per_limb;
  18. double chars_per_bit_exactly;
  19. mpz_t  big_base;
  20. int    normalization_steps;
  21. mpz_t  big_base_inverted;
  22. mpz_t  t;
  23. #define POW2_P(n)  (((n) & ((n) - 1)) == 0)
  24. unsigned int
  25. ulog2 (unsigned int x)
  26. {
  27.   unsigned int i;
  28.   for (i = 0;  x != 0;  i++)
  29.     x >>= 1;
  30.   return i;
  31. }
  32. void
  33. generate (int limb_bits, int nail_bits, int base)
  34. {
  35.   int  numb_bits = limb_bits - nail_bits;
  36.   mpz_set_ui (t, 1L);
  37.   mpz_mul_2exp (t, t, numb_bits);
  38.   mpz_set_ui (big_base, 1L);
  39.   chars_per_limb = 0;
  40.   for (;;)
  41.     {
  42.       mpz_mul_ui (big_base, big_base, (long) base);
  43.       if (mpz_cmp (big_base, t) > 0)
  44.         break;
  45.       chars_per_limb++;
  46.     }
  47.   chars_per_bit_exactly = 0.69314718055994530942 / log ((double) base);
  48.   mpz_ui_pow_ui (big_base, (long) base, (long) chars_per_limb);
  49.   normalization_steps = limb_bits - mpz_sizeinbase (big_base, 2);
  50.   mpz_set_ui (t, 1L);
  51.   mpz_mul_2exp (t, t, 2*limb_bits - normalization_steps);
  52.   mpz_tdiv_q (big_base_inverted, t, big_base);
  53.   mpz_set_ui (t, 1L);
  54.   mpz_mul_2exp (t, t, limb_bits);
  55.   mpz_sub (big_base_inverted, big_base_inverted, t);
  56. }
  57. void
  58. header (int limb_bits, int nail_bits)
  59. {
  60.   int  numb_bits = limb_bits - nail_bits;
  61.   generate (limb_bits, nail_bits, 10);
  62.   printf ("/* This file generated by gen-bases.c - DO NOT EDIT. */n");
  63.   printf ("n");
  64.   printf ("#if GMP_NUMB_BITS != %dn", numb_bits);
  65.   printf ("Error, error, this data is for %d bitsn", numb_bits);
  66.   printf ("#endifn");
  67.   printf ("n");
  68.   printf ("/* mp_bases[10] data, as literal values */n");
  69.   printf ("#define MP_BASES_CHARS_PER_LIMB_10      %dn", chars_per_limb);
  70.   printf ("#define MP_BASES_BIG_BASE_10            CNST_LIMB(0x");
  71.   mpz_out_str (stdout, 16, big_base);
  72.   printf (")n");
  73.   printf ("#define MP_BASES_BIG_BASE_INVERTED_10   CNST_LIMB(0x");
  74.   mpz_out_str (stdout, 16, big_base_inverted);
  75.   printf (")n");
  76.   printf ("#define MP_BASES_NORMALIZATION_STEPS_10 %dn", normalization_steps);
  77. }
  78. void
  79. table (int limb_bits, int nail_bits)
  80. {
  81.   int  numb_bits = limb_bits - nail_bits;
  82.   int  base;
  83.   printf ("/* This file generated by gen-bases.c - DO NOT EDIT. */n");
  84.   printf ("n");
  85.   printf ("#include "gmp.h"n");
  86.   printf ("#include "gmp-impl.h"n");
  87.   printf ("n");
  88.   printf ("#if GMP_NUMB_BITS != %dn", numb_bits);
  89.   printf ("Error, error, this data is for %d bitsn", numb_bits);
  90.   printf ("#endifn");
  91.   printf ("n");
  92.   puts ("const struct bases mp_bases[257] =n{");
  93.   puts ("  /*   0 */ { 0, 0.0, 0 },");
  94.   puts ("  /*   1 */ { 0, 1e37, 0 },");
  95.   for (base = 2; base <= 256; base++)
  96.     {
  97.       generate (limb_bits, nail_bits, base);
  98.       printf ("  /* %3u */ { ", base);
  99.       if (POW2_P (base))
  100. {
  101.           printf ("%u, %.16f, 0x%x },n",
  102.                   chars_per_limb, chars_per_bit_exactly, ulog2 (base) - 1);
  103. }
  104.       else
  105. {
  106.           printf ("%u, %.16f, CNST_LIMB(0x",
  107.                   chars_per_limb, chars_per_bit_exactly);
  108.   mpz_out_str (stdout, 16, big_base);
  109.           printf ("), CNST_LIMB(0x");
  110.   mpz_out_str (stdout, 16, big_base_inverted);
  111.           printf (") },n");
  112. }
  113.     }
  114.   puts ("};");
  115. }
  116. int
  117. main (int argc, char **argv)
  118. {
  119.   int  limb_bits, nail_bits;
  120.   mpz_init (big_base);
  121.   mpz_init (big_base_inverted);
  122.   mpz_init (t);
  123.   if (argc != 4)
  124.     {
  125.       fprintf (stderr, "Usage: gen-bases <header|table> <limbbits> <nailbits>n");
  126.       exit (1);
  127.     }
  128.   limb_bits = atoi (argv[2]);
  129.   nail_bits = atoi (argv[3]);
  130.   if (limb_bits <= 0
  131.       || nail_bits < 0
  132.       || nail_bits >= limb_bits)
  133.     {
  134.       fprintf (stderr, "Invalid limb/nail bits: %d %dn",
  135.                limb_bits, nail_bits);
  136.       exit (1);
  137.     }
  138.   if (strcmp (argv[1], "header") == 0)
  139.     header (limb_bits, nail_bits);
  140.   else if (strcmp (argv[1], "table") == 0)
  141.     table (limb_bits, nail_bits);
  142.   else
  143.     {
  144.       fprintf (stderr, "Invalid header/table choice: %sn", argv[1]);
  145.       exit (1);
  146.     }
  147.   return 0;
  148. }