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

数学计算

开发平台:

Unix_Linux

  1. /* x86 fat binary initializers.
  2.    Contributed to the GNU project by Kevin Ryde (original x86_32 code) and
  3.    Torbjorn Granlund (port to x86_64)
  4.    THE FUNCTIONS AND VARIABLES IN THIS FILE ARE FOR INTERNAL USE ONLY.
  5.    THEY'RE ALMOST CERTAIN TO BE SUBJECT TO INCOMPATIBLE CHANGES OR DISAPPEAR
  6.    COMPLETELY IN FUTURE GNU MP RELEASES.
  7. Copyright 2003, 2004, 2009 Free Software Foundation, Inc.
  8. This file is part of the GNU MP Library.
  9. The GNU MP Library is free software; you can redistribute it and/or modify
  10. it under the terms of the GNU Lesser General Public License as published by
  11. the Free Software Foundation; either version 3 of the License, or (at your
  12. option) any later version.
  13. The GNU MP Library is distributed in the hope that it will be useful, but
  14. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  15. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  16. License for more details.
  17. You should have received a copy of the GNU Lesser General Public License
  18. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  19. #include <stdio.h>    /* for printf */
  20. #include <stdlib.h>   /* for getenv */
  21. #include <string.h>
  22. #include "gmp.h"
  23. #include "gmp-impl.h"
  24. /* Change this to "#define TRACE(x) x" for some traces. */
  25. #define TRACE(x)
  26. /* fat_entry.asm */
  27. long __gmpn_cpuid __GMP_PROTO ((char dst[12], int id));
  28. typedef DECL_preinv_divrem_1 ((*preinv_divrem_1_t));
  29. typedef DECL_preinv_mod_1    ((*preinv_mod_1_t));
  30. struct cpuvec_t __gmpn_cpuvec = {
  31.   __MPN(add_n_init),
  32.   __MPN(addmul_1_init),
  33.   __MPN(copyd_init),
  34.   __MPN(copyi_init),
  35.   __MPN(divexact_1_init),
  36.   __MPN(divexact_by3c_init),
  37.   __MPN(divrem_1_init),
  38.   __MPN(gcd_1_init),
  39.   __MPN(lshift_init),
  40.   __MPN(mod_1_init),
  41.   __MPN(mod_34lsub1_init),
  42.   __MPN(modexact_1c_odd_init),
  43.   __MPN(mul_1_init),
  44.   __MPN(mul_basecase_init),
  45.   __MPN(preinv_divrem_1_init),
  46.   __MPN(preinv_mod_1_init),
  47.   __MPN(rshift_init),
  48.   __MPN(sqr_basecase_init),
  49.   __MPN(sub_n_init),
  50.   __MPN(submul_1_init),
  51.   0
  52. };
  53. /* The following setups start with generic x86, then overwrite with
  54.    specifics for a chip, and higher versions of that chip.
  55.    The arrangement of the setups here will normally be the same as the $path
  56.    selections in configure.in for the respective chips.
  57.    This code is reentrant and thread safe.  We always calculate the same
  58.    decided_cpuvec, so if two copies of the code are running it doesn't
  59.    matter which completes first, both write the same to __gmpn_cpuvec.
  60.    We need to go via decided_cpuvec because if one thread has completed
  61.    __gmpn_cpuvec then it may be making use of the threshold values in that
  62.    vector.  If another thread is still running __gmpn_cpuvec_init then we
  63.    don't want it to write different values to those fields since some of the
  64.    asm routines only operate correctly up to their own defined threshold,
  65.    not an arbitrary value.  */
  66. void
  67. __gmpn_cpuvec_init (void)
  68. {
  69.   struct cpuvec_t  decided_cpuvec;
  70.   TRACE (printf ("__gmpn_cpuvec_init:n"));
  71.   memset (&decided_cpuvec, '', sizeof (decided_cpuvec));
  72.   CPUVEC_SETUP_x86_64;
  73.   CPUVEC_SETUP_fat;
  74.   if (1)
  75.     {
  76.       char vendor_string[13];
  77.       char dummy_string[12];
  78.       long fms;
  79.       int family, model;
  80.       __gmpn_cpuid (vendor_string, 0);
  81.       vendor_string[12] = 0;
  82.       fms = __gmpn_cpuid (dummy_string, 1);
  83.       family = ((fms >> 8) & 0xf) + ((fms >> 20) & 0xff);
  84.       model = ((fms >> 4) & 0xf) + ((fms >> 12) & 0xf0);
  85.       if (strcmp (vendor_string, "GenuineIntel") == 0)
  86.         {
  87.           switch (family)
  88.             {
  89.             case 4:
  90.             case 5:
  91.       abort ();
  92.               break;
  93.             case 6:
  94.       if (model == 28)
  95. CPUVEC_SETUP_atom;
  96.       else
  97. CPUVEC_SETUP_core2;
  98.               break;
  99.             case 15:
  100.               CPUVEC_SETUP_pentium4;
  101.               break;
  102.             }
  103.         }
  104.       else if (strcmp (vendor_string, "AuthenticAMD") == 0)
  105.         {
  106.           switch (family)
  107.             {
  108.             case 5:
  109.             case 6:
  110.       abort ();
  111.               break;
  112.             case 15:
  113.       /* CPUVEC_SETUP_athlon */
  114.               break;
  115.             }
  116.         }
  117.     }
  118.   /* There's no x86 generic mpn_preinv_divrem_1 or mpn_preinv_mod_1.
  119.      Instead default to the plain versions from whichever CPU we detected.
  120.      The function arguments are compatible, no need for any glue code.  */
  121.   if (decided_cpuvec.preinv_divrem_1 == NULL)
  122.     decided_cpuvec.preinv_divrem_1 =(preinv_divrem_1_t)decided_cpuvec.divrem_1;
  123.   if (decided_cpuvec.preinv_mod_1 == NULL)
  124.     decided_cpuvec.preinv_mod_1    =(preinv_mod_1_t)   decided_cpuvec.mod_1;
  125.   ASSERT_CPUVEC (decided_cpuvec);
  126.   CPUVEC_INSTALL (decided_cpuvec);
  127.   /* Set this once the threshold fields are ready.
  128.      Use volatile to prevent it getting moved.  */
  129.   ((volatile struct cpuvec_t *) &__gmpn_cpuvec)->initialized = 1;
  130. }