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

数学计算

开发平台:

Unix_Linux

  1. /* Memory allocation routines.
  2. Copyright 1991, 1993, 1994, 2000, 2001, 2002 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 <stdlib.h> /* for malloc, realloc, free */
  16. #include "gmp.h"
  17. #include "gmp-impl.h"
  18. void * (*__gmp_allocate_func) __GMP_PROTO ((size_t)) = __gmp_default_allocate;
  19. void * (*__gmp_reallocate_func) __GMP_PROTO ((void *, size_t, size_t))
  20.      = __gmp_default_reallocate;
  21. void (*__gmp_free_func) __GMP_PROTO ((void *, size_t)) = __gmp_default_free;
  22. /* Default allocation functions.  In case of failure to allocate/reallocate
  23.    an error message is written to stderr and the program aborts.  */
  24. void *
  25. __gmp_default_allocate (size_t size)
  26. {
  27.   void *ret;
  28. #ifdef DEBUG
  29.   size_t req_size = size;
  30.   size += 2 * BYTES_PER_MP_LIMB;
  31. #endif
  32.   ret = malloc (size);
  33.   if (ret == 0)
  34.     {
  35.       fprintf (stderr, "GNU MP: Cannot allocate memory (size=%lu)n", (long) size);
  36.       abort ();
  37.     }
  38. #ifdef DEBUG
  39.   {
  40.     mp_ptr p = ret;
  41.     p++;
  42.     p[-1] = (0xdeadbeef << 31) + 0xdeafdeed;
  43.     if (req_size % BYTES_PER_MP_LIMB == 0)
  44.       p[req_size / BYTES_PER_MP_LIMB] = ~((0xdeadbeef << 31) + 0xdeafdeed);
  45.     ret = p;
  46.   }
  47. #endif
  48.   return ret;
  49. }
  50. void *
  51. __gmp_default_reallocate (void *oldptr, size_t old_size, size_t new_size)
  52. {
  53.   void *ret;
  54. #ifdef DEBUG
  55.   size_t req_size = new_size;
  56.   if (old_size != 0)
  57.     {
  58.       mp_ptr p = oldptr;
  59.       if (p[-1] != (0xdeadbeef << 31) + 0xdeafdeed)
  60. {
  61.   fprintf (stderr, "gmp: (realloc) data clobbered before allocation blockn");
  62.   abort ();
  63. }
  64.       if (old_size % BYTES_PER_MP_LIMB == 0)
  65. if (p[old_size / BYTES_PER_MP_LIMB] != ~((0xdeadbeef << 31) + 0xdeafdeed))
  66.   {
  67.     fprintf (stderr, "gmp: (realloc) data clobbered after allocation blockn");
  68.     abort ();
  69.   }
  70.       oldptr = p - 1;
  71.     }
  72.   new_size += 2 * BYTES_PER_MP_LIMB;
  73. #endif
  74.   ret = realloc (oldptr, new_size);
  75.   if (ret == 0)
  76.     {
  77.       fprintf (stderr, "GNU MP: Cannot reallocate memory (old_size=%lu new_size=%lu)n", (long) old_size, (long) new_size);
  78.       abort ();
  79.     }
  80. #ifdef DEBUG
  81.   {
  82.     mp_ptr p = ret;
  83.     p++;
  84.     p[-1] = (0xdeadbeef << 31) + 0xdeafdeed;
  85.     if (req_size % BYTES_PER_MP_LIMB == 0)
  86.       p[req_size / BYTES_PER_MP_LIMB] = ~((0xdeadbeef << 31) + 0xdeafdeed);
  87.     ret = p;
  88.   }
  89. #endif
  90.   return ret;
  91. }
  92. void
  93. __gmp_default_free (void *blk_ptr, size_t blk_size)
  94. {
  95. #ifdef DEBUG
  96.   {
  97.     mp_ptr p = blk_ptr;
  98.     if (blk_size != 0)
  99.       {
  100. if (p[-1] != (0xdeadbeef << 31) + 0xdeafdeed)
  101.   {
  102.     fprintf (stderr, "gmp: (free) data clobbered before allocation blockn");
  103.     abort ();
  104.   }
  105. if (blk_size % BYTES_PER_MP_LIMB == 0)
  106.   if (p[blk_size / BYTES_PER_MP_LIMB] != ~((0xdeadbeef << 31) + 0xdeafdeed))
  107.     {
  108.       fprintf (stderr, "gmp: (free) data clobbered after allocation blockn");
  109.       abort ();
  110.     }
  111.       }
  112.     blk_ptr = p - 1;
  113.   }
  114. #endif
  115.   free (blk_ptr);
  116. }