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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_export -- create word data from mpz.
  2. Copyright 2002, 2003 Free Software Foundation, Inc.
  3. This file is part of the GNU MP Library.
  4. The GNU MP Library is free software; you can redistribute it and/or modify
  5. it under the terms of the GNU Lesser General Public License as published by
  6. the Free Software Foundation; either version 3 of the License, or (at your
  7. option) any later version.
  8. The GNU MP Library is distributed in the hope that it will be useful, but
  9. WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
  11. License for more details.
  12. You should have received a copy of the GNU Lesser General Public License
  13. along with the GNU MP Library.  If not, see http://www.gnu.org/licenses/.  */
  14. #include <stdio.h>  /* for NULL */
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. #include "longlong.h"
  18. #if HAVE_LIMB_BIG_ENDIAN
  19. #define HOST_ENDIAN     1
  20. #endif
  21. #if HAVE_LIMB_LITTLE_ENDIAN
  22. #define HOST_ENDIAN     (-1)
  23. #endif
  24. #ifndef HOST_ENDIAN
  25. static const mp_limb_t  endian_test = (CNST_LIMB(1) << (GMP_LIMB_BITS-7)) - 1;
  26. #define HOST_ENDIAN     (* (signed char *) &endian_test)
  27. #endif
  28. #define MPN_SIZEINBASE_2EXP(result, ptr, size, base2exp)                
  29.   do {                                                                  
  30.     int            __cnt;                                               
  31.     unsigned long  __totbits;                                           
  32.     ASSERT ((size) > 0);                                                
  33.     ASSERT ((ptr)[(size)-1] != 0);                                      
  34.     count_leading_zeros (__cnt, (ptr)[(size)-1]);                       
  35.     __totbits = (size) * GMP_NUMB_BITS - (__cnt - GMP_NAIL_BITS);       
  36.     (result) = (__totbits + (base2exp)-1) / (base2exp);                 
  37.   } while (0)
  38. void *
  39. mpz_export (void *data, size_t *countp, int order,
  40.             size_t size, int endian, size_t nail, mpz_srcptr z)
  41. {
  42.   mp_size_t      zsize;
  43.   mp_srcptr      zp;
  44.   size_t         count, dummy;
  45.   unsigned long  numb;
  46.   unsigned       align;
  47.   ASSERT (order == 1 || order == -1);
  48.   ASSERT (endian == 1 || endian == 0 || endian == -1);
  49.   ASSERT (nail <= 8*size);
  50.   ASSERT (8*size-nail > 0);
  51.   if (countp == NULL)
  52.     countp = &dummy;
  53.   zsize = SIZ(z);
  54.   if (zsize == 0)
  55.     {
  56.       *countp = 0;
  57.       return data;
  58.     }
  59.   zsize = ABS (zsize);
  60.   zp = PTR(z);
  61.   numb = 8*size - nail;
  62.   MPN_SIZEINBASE_2EXP (count, zp, zsize, numb);
  63.   *countp = count;
  64.   if (data == NULL)
  65.     data = (*__gmp_allocate_func) (count*size);
  66.   if (endian == 0)
  67.     endian = HOST_ENDIAN;
  68.   align = ((char *) data - (char *) NULL) % sizeof (mp_limb_t);
  69.   if (nail == GMP_NAIL_BITS)
  70.     {
  71.       if (size == sizeof (mp_limb_t) && align == 0)
  72.         {
  73.           if (order == -1 && endian == HOST_ENDIAN)
  74.             {
  75.               MPN_COPY ((mp_ptr) data, zp, (mp_size_t) count);
  76.               return data;
  77.             }
  78.           if (order == 1 && endian == HOST_ENDIAN)
  79.             {
  80.               MPN_REVERSE ((mp_ptr) data, zp, (mp_size_t) count);
  81.               return data;
  82.             }
  83.           if (order == -1 && endian == -HOST_ENDIAN)
  84.             {
  85.               MPN_BSWAP ((mp_ptr) data, zp, (mp_size_t) count);
  86.               return data;
  87.             }
  88.           if (order == 1 && endian == -HOST_ENDIAN)
  89.             {
  90.               MPN_BSWAP_REVERSE ((mp_ptr) data, zp, (mp_size_t) count);
  91.               return data;
  92.             }
  93.         }
  94.     }
  95.   {
  96.     mp_limb_t      limb, wbitsmask;
  97.     size_t         i, numb;
  98.     mp_size_t      j, wbytes, woffset;
  99.     unsigned char  *dp;
  100.     int            lbits, wbits;
  101.     mp_srcptr      zend;
  102.     numb = size * 8 - nail;
  103.     /* whole bytes per word */
  104.     wbytes = numb / 8;
  105.     /* possible partial byte */
  106.     wbits = numb % 8;
  107.     wbitsmask = (CNST_LIMB(1) << wbits) - 1;
  108.     /* offset to get to the next word */
  109.     woffset = (endian >= 0 ? size : - (mp_size_t) size)
  110.       + (order < 0 ? size : - (mp_size_t) size);
  111.     /* least significant byte */
  112.     dp = (unsigned char *) data
  113.       + (order >= 0 ? (count-1)*size : 0) + (endian >= 0 ? size-1 : 0);
  114. #define EXTRACT(N, MASK)                                
  115.     do {                                                
  116.       if (lbits >= (N))                                 
  117.         {                                               
  118.           *dp = limb MASK;                              
  119.           limb >>= (N);                                 
  120.           lbits -= (N);                                 
  121.         }                                               
  122.       else                                              
  123.         {                                               
  124.           mp_limb_t  newlimb;                           
  125.           newlimb = (zp == zend ? 0 : *zp++);           
  126.           *dp = (limb | (newlimb << lbits)) MASK;       
  127.           limb = newlimb >> ((N)-lbits);                
  128.           lbits += GMP_NUMB_BITS - (N);                 
  129.         }                                               
  130.     } while (0)
  131.     zend = zp + zsize;
  132.     lbits = 0;
  133.     limb = 0;
  134.     for (i = 0; i < count; i++)
  135.       {
  136.         for (j = 0; j < wbytes; j++)
  137.           {
  138.             EXTRACT (8, + 0);
  139.             dp -= endian;
  140.           }
  141.         if (wbits != 0)
  142.           {
  143.             EXTRACT (wbits, & wbitsmask);
  144.             dp -= endian;
  145.             j++;
  146.           }
  147.         for ( ; j < size; j++)
  148.           {
  149.             *dp = '';
  150.             dp -= endian;
  151.           }
  152.         dp += woffset;
  153.       }
  154.     ASSERT (zp == PTR(z) + ABSIZ(z));
  155.     /* low byte of word after most significant */
  156.     ASSERT (dp == (unsigned char *) data
  157.             + (order < 0 ? count*size : - (mp_size_t) size)
  158.             + (endian >= 0 ? (mp_size_t) size - 1 : 0));
  159.   }
  160.   return data;
  161. }