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

数学计算

开发平台:

Unix_Linux

  1. /* Memory allocation used during tests.
  2. Copyright 2001, 2002, 2007 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 abort */
  16. #include <string.h> /* for memcpy, memcmp */
  17. #include "gmp.h"
  18. #include "gmp-impl.h"
  19. #if GMP_LIMB_BITS == 64
  20. #define PATTERN1 CNST_LIMB(0xcafebabedeadbeef)
  21. #define PATTERN2 CNST_LIMB(0xabacadabaedeedab)
  22. #else
  23. #define PATTERN1 CNST_LIMB(0xcafebabe)
  24. #define PATTERN2 CNST_LIMB(0xdeadbeef)
  25. #endif
  26. /* Each block allocated is a separate malloc, for the benefit of a redzoning
  27.    malloc debugger during development or when bug hunting.
  28.    Sizes passed when reallocating or freeing are checked (the default
  29.    routines don't care about these).
  30.    Memory leaks are checked by requiring that all blocks have been freed
  31.    when tests_memory_end() is called.  Test programs must be sure to have
  32.    "clear"s for all temporary variables used.  */
  33. struct header {
  34.   void           *ptr;
  35.   size_t         size;
  36.   struct header  *next;
  37. };
  38. struct header  *tests_memory_list = NULL;
  39. /* Return a pointer to a pointer to the found block (so it can be updated
  40.    when unlinking). */
  41. struct header **
  42. tests_memory_find (void *ptr)
  43. {
  44.   struct header  **hp;
  45.   for (hp = &tests_memory_list; *hp != NULL; hp = &((*hp)->next))
  46.     if ((*hp)->ptr == ptr)
  47.       return hp;
  48.   return NULL;
  49. }
  50. int
  51. tests_memory_valid (void *ptr)
  52. {
  53.   return (tests_memory_find (ptr) != NULL);
  54. }
  55. void *
  56. tests_allocate (size_t size)
  57. {
  58.   struct header  *h;
  59.   void *rptr, *ptr;
  60.   mp_limb_t PATTERN2_var;
  61.   if (size == 0)
  62.     {
  63.       fprintf (stderr, "tests_allocate(): attempt to allocate 0 bytesn");
  64.       abort ();
  65.     }
  66.   h = (struct header *) __gmp_default_allocate (sizeof (*h));
  67.   h->next = tests_memory_list;
  68.   tests_memory_list = h;
  69.   rptr = __gmp_default_allocate (size + 2 * sizeof (mp_limb_t));
  70.   ptr = (void *) ((gmp_intptr_t) rptr + sizeof (mp_limb_t));
  71.   *((mp_limb_t *) ((gmp_intptr_t) ptr - sizeof (mp_limb_t)))
  72.     = PATTERN1 - ((mp_limb_t) ptr);
  73.   PATTERN2_var = PATTERN2 - ((mp_limb_t) ptr);
  74.   memcpy ((void *) ((gmp_intptr_t) ptr + size), &PATTERN2_var, sizeof (mp_limb_t));
  75.   h->size = size;
  76.   h->ptr = ptr;
  77.   return h->ptr;
  78. }
  79. void *
  80. tests_reallocate (void *ptr, size_t old_size, size_t new_size)
  81. {
  82.   struct header  **hp, *h;
  83.   void *rptr;
  84.   mp_limb_t PATTERN2_var;
  85.   if (new_size == 0)
  86.     {
  87.       fprintf (stderr, "tests_reallocate(): attempt to reallocate %p to 0 bytesn",
  88.        ptr);
  89.       abort ();
  90.     }
  91.   hp = tests_memory_find (ptr);
  92.   if (hp == NULL)
  93.     {
  94.       fprintf (stderr, "tests_reallocate(): attempt to reallocate bad pointer %pn",
  95.        ptr);
  96.       abort ();
  97.     }
  98.   h = *hp;
  99.   if (h->size != old_size)
  100.     {
  101.       fprintf (stderr, "tests_reallocate(): bad old size %lu, should be %lun",
  102.        (unsigned long) old_size, (unsigned long) h->size);
  103.       abort ();
  104.     }
  105.   if (*((mp_limb_t *) ((gmp_intptr_t) ptr - sizeof (mp_limb_t)))
  106.       != PATTERN1 - ((mp_limb_t) ptr))
  107.     {
  108.       fprintf (stderr, "in realloc: redzone clobbered before blockn");
  109.       abort ();
  110.     }
  111.   PATTERN2_var = PATTERN2 - ((mp_limb_t) ptr);
  112.   if (memcmp ((void *) ((gmp_intptr_t) ptr + h->size), &PATTERN2_var, sizeof (mp_limb_t)))
  113.     {
  114.       fprintf (stderr, "in realloc: redzone clobbered after blockn");
  115.       abort ();
  116.     }
  117.   rptr = __gmp_default_reallocate ((void *) ((gmp_intptr_t) ptr - sizeof (mp_limb_t)),
  118.  old_size + 2 * sizeof (mp_limb_t),
  119.  new_size + 2 * sizeof (mp_limb_t));
  120.   ptr = (void *) ((gmp_intptr_t) rptr + sizeof (mp_limb_t));
  121.   *((mp_limb_t *) ((gmp_intptr_t) ptr - sizeof (mp_limb_t)))
  122.     = PATTERN1 - ((mp_limb_t) ptr);
  123.   PATTERN2_var = PATTERN2 - ((mp_limb_t) ptr);
  124.   memcpy ((void *) ((gmp_intptr_t) ptr + new_size), &PATTERN2_var, sizeof (mp_limb_t));
  125.   h->size = new_size;
  126.   h->ptr = ptr;
  127.   return h->ptr;
  128. }
  129. struct header **
  130. tests_free_find (void *ptr)
  131. {
  132.   struct header  **hp = tests_memory_find (ptr);
  133.   if (hp == NULL)
  134.     {
  135.       fprintf (stderr, "tests_free(): attempt to free bad pointer %pn",
  136.        ptr);
  137.       abort ();
  138.     }
  139.   return hp;
  140. }
  141. void
  142. tests_free_nosize (void *ptr)
  143. {
  144.   struct header  **hp = tests_free_find (ptr);
  145.   struct header  *h = *hp;
  146.   mp_limb_t PATTERN2_var;
  147.   *hp = h->next;  /* unlink */
  148.   if (*((mp_limb_t *) ((gmp_intptr_t) ptr - sizeof (mp_limb_t)))
  149.       != PATTERN1 - ((mp_limb_t) ptr))
  150.     {
  151.       fprintf (stderr, "in free: redzone clobbered before blockn");
  152.       abort ();
  153.     }
  154.   PATTERN2_var = PATTERN2 - ((mp_limb_t) ptr);
  155.   if (memcmp ((void *) ((gmp_intptr_t) ptr + h->size), &PATTERN2_var, sizeof (mp_limb_t)))
  156.     {
  157.       fprintf (stderr, "in free: redzone clobbered after blockn");
  158.       abort ();
  159.     }
  160.   __gmp_default_free ((void *) ((gmp_intptr_t) ptr - sizeof(mp_limb_t)),
  161.       h->size + 2 * sizeof (mp_limb_t));
  162.   __gmp_default_free (h, sizeof (*h));
  163. }
  164. void
  165. tests_free (void *ptr, size_t size)
  166. {
  167.   struct header  **hp = tests_free_find (ptr);
  168.   struct header  *h = *hp;
  169.   if (h->size != size)
  170.     {
  171.       fprintf (stderr, "tests_free(): bad size %lu, should be %lun",
  172.        (unsigned long) size, (unsigned long) h->size);
  173.       abort ();
  174.     }
  175.   tests_free_nosize (ptr);
  176. }
  177. void
  178. tests_memory_start (void)
  179. {
  180.   mp_set_memory_functions (tests_allocate, tests_reallocate, tests_free);
  181. }
  182. void
  183. tests_memory_end (void)
  184. {
  185.   if (tests_memory_list != NULL)
  186.     {
  187.       struct header  *h;
  188.       unsigned  count;
  189.       fprintf (stderr, "tests_memory_end(): not all memory freedn");
  190.       count = 0;
  191.       for (h = tests_memory_list; h != NULL; h = h->next)
  192. count++;
  193.       fprintf (stderr, "    %u blocks remainingn", count);
  194.       abort ();
  195.     }
  196. }