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

数学计算

开发平台:

Unix_Linux

  1. /* x86 fat binary initializers.
  2.    THE FUNCTIONS AND VARIABLES IN THIS FILE ARE FOR INTERNAL USE ONLY.
  3.    THEY'RE ALMOST CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR
  4.    COMPLETELY IN FUTURE GNU MP RELEASES.
  5. Copyright 2003, 2004 Free Software Foundation, Inc.
  6. This file is part of the GNU MP Library.
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU Lesser General Public License as published by
  9. the Free Software Foundation; either version 3 of the License, or (at your
  10. option) any later version.
  11. The GNU MP Library is distributed in the hope that it will be useful, but
  12. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  13. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  14. License for more details.
  15. You should have received a copy of the GNU Lesser General Public License
  16. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  17. #include <stdio.h>    /* for printf */
  18. #include <stdlib.h>   /* for getenv */
  19. #include <string.h>
  20. #include "gmp.h"
  21. #include "gmp-impl.h"
  22. /* Change this to "#define TRACE(x) x" for some traces. */
  23. #define TRACE(x)
  24. /* Change this to 1 to take the cpuid from GMP_CPU_TYPE env var. */
  25. #define WANT_FAKE_CPUID  0
  26. /* fat_entry.asm */
  27. long __gmpn_cpuid __GMP_PROTO ((char dst[12], int id));
  28. int  __gmpn_cpuid_available __GMP_PROTO ((void));
  29. #if WANT_FAKE_CPUID
  30. /* The "name"s in the table are values for the GMP_CPU_TYPE environment
  31.    variable.  Anything can be used, but for now it's the canonical cpu types
  32.    as per config.guess/config.sub.  */
  33. #define __gmpn_cpuid            fake_cpuid
  34. #define __gmpn_cpuid_available  fake_cpuid_available
  35. #define MAKE_FMS(family, model) 
  36.   (((family) << 8) + ((model << 4)))
  37. static struct {
  38.   const char  *name;
  39.   const char  vendor[13];
  40.   unsigned    fms;
  41. } fake_cpuid_table[] = {
  42.   { "i386",       "" },
  43.   { "i486",       "GenuineIntel", MAKE_FMS (4, 0) },
  44.   { "pentium",    "GenuineIntel", MAKE_FMS (5, 0) },
  45.   { "pentiummmx", "GenuineIntel", MAKE_FMS (5, 4) },
  46.   { "pentiumpro", "GenuineIntel", MAKE_FMS (6, 0) },
  47.   { "pentium2",   "GenuineIntel", MAKE_FMS (6, 2) },
  48.   { "pentium3",   "GenuineIntel", MAKE_FMS (6, 7) },
  49.   { "pentium4",   "GenuineIntel", MAKE_FMS (7, 0) },
  50.   { "k5",         "AuthenticAMD", MAKE_FMS (5, 0) },
  51.   { "k6",         "AuthenticAMD", MAKE_FMS (5, 3) },
  52.   { "k62",        "AuthenticAMD", MAKE_FMS (5, 8) },
  53.   { "k63",        "AuthenticAMD", MAKE_FMS (5, 9) },
  54.   { "athlon",     "AuthenticAMD", MAKE_FMS (6, 0) },
  55.   { "x86_64",     "AuthenticAMD", MAKE_FMS (15, 0) },
  56.   { "viac3",      "CentaurHauls", MAKE_FMS (6, 0) },
  57.   { "viac32",     "CentaurHauls", MAKE_FMS (6, 9) },
  58. };
  59. static int
  60. fake_cpuid_lookup (void)
  61. {
  62.   char  *s;
  63.   int   i;
  64.   s = getenv ("GMP_CPU_TYPE");
  65.   if (s == NULL)
  66.     {
  67.       printf ("Need GMP_CPU_TYPE environment variable for fake cpuidn");
  68.       abort ();
  69.     }
  70.   for (i = 0; i < numberof (fake_cpuid_table); i++)
  71.     if (strcmp (s, fake_cpuid_table[i].name) == 0)
  72.       return i;
  73.   printf ("GMP_CPU_TYPE=%s unknownn", s);
  74.   abort ();
  75. }
  76. static int
  77. fake_cpuid_available (void)
  78. {
  79.   return fake_cpuid_table[fake_cpuid_lookup()].vendor[0] != '';
  80. }
  81. static long
  82. fake_cpuid (char dst[12], int id)
  83. {
  84.   int  i = fake_cpuid_lookup();
  85.   switch (id) {
  86.   case 0:
  87.     memcpy (dst, fake_cpuid_table[i].vendor, 12);
  88.     return 0;
  89.   case 1:
  90.     return fake_cpuid_table[i].fms;
  91.   default:
  92.     printf ("fake_cpuid(): oops, unknown id %dn", id);
  93.     abort ();
  94.   }
  95. }
  96. #endif
  97. typedef DECL_preinv_divrem_1 ((*preinv_divrem_1_t));
  98. typedef DECL_preinv_mod_1    ((*preinv_mod_1_t));
  99. struct cpuvec_t __gmpn_cpuvec = {
  100.   __MPN(add_n_init),
  101.   __MPN(addmul_1_init),
  102.   __MPN(copyd_init),
  103.   __MPN(copyi_init),
  104.   __MPN(divexact_1_init),
  105.   __MPN(divexact_by3c_init),
  106.   __MPN(divrem_1_init),
  107.   __MPN(gcd_1_init),
  108.   __MPN(lshift_init),
  109.   __MPN(mod_1_init),
  110.   __MPN(mod_34lsub1_init),
  111.   __MPN(modexact_1c_odd_init),
  112.   __MPN(mul_1_init),
  113.   __MPN(mul_basecase_init),
  114.   __MPN(preinv_divrem_1_init),
  115.   __MPN(preinv_mod_1_init),
  116.   __MPN(rshift_init),
  117.   __MPN(sqr_basecase_init),
  118.   __MPN(sub_n_init),
  119.   __MPN(submul_1_init),
  120.   0
  121. };
  122. /* The following setups start with generic x86, then overwrite with
  123.    specifics for a chip, and higher versions of that chip.
  124.    The arrangement of the setups here will normally be the same as the $path
  125.    selections in configure.in for the respective chips.
  126.    This code is reentrant and thread safe.  We always calculate the same
  127.    decided_cpuvec, so if two copies of the code are running it doesn't
  128.    matter which completes first, both write the same to __gmpn_cpuvec.
  129.    We need to go via decided_cpuvec because if one thread has completed
  130.    __gmpn_cpuvec then it may be making use of the threshold values in that
  131.    vector.  If another thread is still running __gmpn_cpuvec_init then we
  132.    don't want it to write different values to those fields since some of the
  133.    asm routines only operate correctly up to their own defined threshold,
  134.    not an arbitrary value.  */
  135. void
  136. __gmpn_cpuvec_init (void)
  137. {
  138.   struct cpuvec_t  decided_cpuvec;
  139.   TRACE (printf ("__gmpn_cpuvec_init:n"));
  140.   memset (&decided_cpuvec, '', sizeof (decided_cpuvec));
  141.   CPUVEC_SETUP_x86;
  142.   CPUVEC_SETUP_fat;
  143.   if (! __gmpn_cpuid_available ())
  144.     {
  145.       TRACE (printf ("  80386, or early 80486 without cpuidn"));
  146.     }
  147.   else
  148.     {
  149.       char vendor_string[13];
  150.       char dummy_string[12];
  151.       long fms;
  152.       int family, model;
  153.       __gmpn_cpuid (vendor_string, 0);
  154.       vendor_string[12] = 0;
  155.       fms = __gmpn_cpuid (dummy_string, 1);
  156.       family = ((fms >> 8) & 0xf) + ((fms >> 20) & 0xff);
  157.       model = ((fms >> 4) & 0xf) + ((fms >> 12) & 0xf0);
  158.       if (strcmp (vendor_string, "GenuineIntel") == 0)
  159.         {
  160.           switch (family)
  161.             {
  162.             case 4:
  163.               TRACE (printf ("  80486 with cpuidn"));
  164.               break;
  165.             case 5:
  166.               TRACE (printf ("  pentiumn"));
  167.               CPUVEC_SETUP_pentium;
  168.               if (model >= 4)
  169.                 {
  170.                   TRACE (printf ("  pentiummmxn"));
  171.                   CPUVEC_SETUP_pentium_mmx;
  172.                 }
  173.               break;
  174.             case 6:
  175.               TRACE (printf ("  p6n"));
  176.               CPUVEC_SETUP_p6;
  177.               if (model >= 2)
  178.                 {
  179.                   TRACE (printf ("  pentium2n"));
  180.                   CPUVEC_SETUP_p6_mmx;
  181.                 }
  182.               if (model >= 7)
  183.                 {
  184.                   TRACE (printf ("  pentium3n"));
  185.                   CPUVEC_SETUP_p6_p3mmx;
  186.                 }
  187.               if (model >= 0xD || model == 9)
  188.                 {
  189.                   TRACE (printf ("  p6 with sse2n"));
  190.                   CPUVEC_SETUP_p6_sse2;
  191.                 }
  192.               break;
  193.             case 15:
  194.               TRACE (printf ("  pentium4n"));
  195.               CPUVEC_SETUP_pentium4;
  196.               CPUVEC_SETUP_pentium4_mmx;
  197.               CPUVEC_SETUP_pentium4_sse2;
  198.               break;
  199.             }
  200.         }
  201.       else if (strcmp (vendor_string, "AuthenticAMD") == 0)
  202.         {
  203.           switch (family)
  204.             {
  205.             case 5:
  206.               if (model <= 3)
  207.                 {
  208.                   TRACE (printf ("  k5n"));
  209.                 }
  210.               else
  211.                 {
  212.                   TRACE (printf ("  k6n"));
  213.                   CPUVEC_SETUP_k6;
  214.                   CPUVEC_SETUP_k6_mmx;
  215.                   if (model >= 8)
  216.                     {
  217.                       TRACE (printf ("  k62n"));
  218.                       CPUVEC_SETUP_k6_k62mmx;
  219.                     }
  220.                   if (model >= 9)
  221.                     {
  222.                       TRACE (printf ("  k63n"));
  223.                     }
  224.                 }
  225.               break;
  226.             case 6:
  227.               TRACE (printf ("  athlonn"));
  228.             athlon:
  229.               CPUVEC_SETUP_k7;
  230.               CPUVEC_SETUP_k7_mmx;
  231.               break;
  232.             case 15:
  233.               TRACE (printf ("  x86_64n"));
  234.               goto athlon;
  235.             }
  236.         }
  237.       else if (strcmp (vendor_string, "CentaurHauls") == 0)
  238.         {
  239.           switch (family)
  240.             {
  241.             case 6:
  242.               TRACE (printf ("  viac3n"));
  243.               if (model >= 9)
  244.                 {
  245.                   TRACE (printf ("  viac32n"));
  246.                 }
  247.               break;
  248.             }
  249.         }
  250.       else if (strcmp (vendor_string, "CyrixInstead") == 0)
  251.         {
  252.           /* Should recognize Cyrix' processors too.  */
  253.           TRACE (printf ("  cyrix somethingn"));
  254.         }
  255.     }
  256.   /* There's no x86 generic mpn_preinv_divrem_1 or mpn_preinv_mod_1.
  257.      Instead default to the plain versions from whichever CPU we detected.
  258.      The function arguments are compatible, no need for any glue code.  */
  259.   if (decided_cpuvec.preinv_divrem_1 == NULL)
  260.     decided_cpuvec.preinv_divrem_1 =(preinv_divrem_1_t)decided_cpuvec.divrem_1;
  261.   if (decided_cpuvec.preinv_mod_1 == NULL)
  262.     decided_cpuvec.preinv_mod_1    =(preinv_mod_1_t)   decided_cpuvec.mod_1;
  263.   ASSERT_CPUVEC (decided_cpuvec);
  264.   CPUVEC_INSTALL (decided_cpuvec);
  265.   /* Set this once the threshold fields are ready.
  266.      Use volatile to prevent it getting moved.  */
  267.   ((volatile struct cpuvec_t *) &__gmpn_cpuvec)->initialized = 1;
  268. }