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

数学计算

开发平台:

Unix_Linux

  1. /* mpz_inp_raw -- read an mpz_t in raw format.
  2. Copyright 2001, 2002, 2005 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>
  15. #include "gmp.h"
  16. #include "gmp-impl.h"
  17. /* NTOH_LIMB_FETCH fetches a limb which is in network byte order (ie. big
  18.    endian) and produces a normal host byte order result. */
  19. #if HAVE_LIMB_BIG_ENDIAN
  20. #define NTOH_LIMB_FETCH(limb, src)  do { (limb) = *(src); } while (0)
  21. #endif
  22. #if HAVE_LIMB_LITTLE_ENDIAN
  23. #define NTOH_LIMB_FETCH(limb, src)  BSWAP_LIMB_FETCH (limb, src)
  24. #endif
  25. #ifndef NTOH_LIMB_FETCH
  26. #define NTOH_LIMB_FETCH(limb, src)                              
  27.   do {                                                          
  28.     const unsigned char  *__p = (const unsigned char *) (src);  
  29.     mp_limb_t  __limb;                                          
  30.     int        __i;                                             
  31.     __limb = 0;                                                 
  32.     for (__i = 0; __i < BYTES_PER_MP_LIMB; __i++)               
  33.       __limb = (__limb << 8) | __p[__i];                        
  34.     (limb) = __limb;                                            
  35.   } while (0)
  36. #endif
  37. /* Enhancement: The byte swap loop ought to be safe to vectorize on Cray
  38.    etc, but someone who knows what they're doing needs to check it.  */
  39. size_t
  40. mpz_inp_raw (mpz_ptr x, FILE *fp)
  41. {
  42.   unsigned char  csize_bytes[4];
  43.   mp_size_t      csize, abs_xsize, i;
  44.   size_t         abs_csize;
  45.   char           *cp;
  46.   mp_ptr         xp, sp, ep;
  47.   mp_limb_t      slimb, elimb;
  48.   if (fp == 0)
  49.     fp = stdin;
  50.   /* 4 bytes for size */
  51.   if (fread (csize_bytes, sizeof (csize_bytes), 1, fp) != 1)
  52.     return 0;
  53.   csize =
  54.     (  (mp_size_t) csize_bytes[0] << 24)
  55.     + ((mp_size_t) csize_bytes[1] << 16)
  56.     + ((mp_size_t) csize_bytes[2] << 8)
  57.     + ((mp_size_t) csize_bytes[3]);
  58.   /* Sign extend if necessary.
  59.      Could write "csize -= ((csize & 0x80000000L) << 1)", but that tickles a
  60.      bug in gcc 3.0 for powerpc64 on AIX.  */
  61.   if (sizeof (csize) > 4 && csize & 0x80000000L)
  62.     csize -= 0x80000000L << 1;
  63.   abs_csize = ABS (csize);
  64.   /* round up to a multiple of limbs */
  65.   abs_xsize = (abs_csize*8 + GMP_NUMB_BITS-1) / GMP_NUMB_BITS;
  66.   if (abs_xsize != 0)
  67.     {
  68.       MPZ_REALLOC (x, abs_xsize);
  69.       xp = PTR(x);
  70.       /* Get limb boundaries right in the read, for the benefit of the
  71.          non-nails case.  */
  72.       xp[0] = 0;
  73.       cp = (char *) (xp + abs_xsize) - abs_csize;
  74.       if (fread (cp, abs_csize, 1, fp) != 1)
  75.         return 0;
  76.       if (GMP_NAIL_BITS == 0)
  77.         {
  78.           /* Reverse limbs to least significant first, and byte swap.  If
  79.              abs_xsize is odd then on the last iteration elimb and slimb are
  80.              the same.  It doesn't seem extra code to handle that case
  81.              separately, to save an NTOH.  */
  82.           sp = xp;
  83.           ep = xp + abs_xsize-1;
  84.           for (i = 0; i < (abs_xsize+1)/2; i++)
  85.             {
  86.               NTOH_LIMB_FETCH (elimb, ep);
  87.               NTOH_LIMB_FETCH (slimb, sp);
  88.               *sp++ = elimb;
  89.               *ep-- = slimb;
  90.             }
  91.         }
  92.       else
  93.         {
  94.           /* It ought to be possible to do the transformation in-place, but
  95.              for now it's easier to use an extra temporary area.  */
  96.           mp_limb_t  byte, limb;
  97.           int        bits;
  98.           mp_size_t  tpos;
  99.           mp_ptr     tp;
  100.           TMP_DECL;
  101.           TMP_MARK;
  102.           tp = TMP_ALLOC_LIMBS (abs_xsize);
  103.           limb = 0;
  104.           bits = 0;
  105.           tpos = 0;
  106.           for (i = abs_csize-1; i >= 0; i--)
  107.             {
  108.               byte = (unsigned char) cp[i];
  109.               limb |= (byte << bits);
  110.               bits += 8;
  111.               if (bits >= GMP_NUMB_BITS)
  112.                 {
  113.                   ASSERT (tpos < abs_xsize);
  114.                   tp[tpos++] = limb & GMP_NUMB_MASK;
  115.                   bits -= GMP_NUMB_BITS;
  116.                   ASSERT (bits < 8);
  117.                   limb = byte >> (8 - bits);
  118.                 }
  119.             }
  120.           if (bits != 0)
  121.             {
  122.               ASSERT (tpos < abs_xsize);
  123.               tp[tpos++] = limb;
  124.             }
  125.           ASSERT (tpos == abs_xsize);
  126.           MPN_COPY (xp, tp, abs_xsize);
  127.           TMP_FREE;
  128.         }
  129.       /* GMP 1.x mpz_out_raw wrote high zero bytes, strip any high zero
  130.          limbs resulting from this.  Should be a non-zero value here, but
  131.          for safety don't assume that. */
  132.       MPN_NORMALIZE (xp, abs_xsize);
  133.     }
  134.   SIZ(x) = (csize >= 0 ? abs_xsize : -abs_xsize);
  135.   return abs_csize + 4;
  136. }