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

数学计算

开发平台:

Unix_Linux

  1. /* TMP_ALLOC routines for debugging.
  2. Copyright 2000, 2001, 2004 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>
  16. #include <string.h>
  17. #include "gmp.h"
  18. #include "gmp-impl.h"
  19. /* This method aims to help a malloc debugger find problems.  A linked list
  20.    of allocated block is kept for TMP_FREE to release.  This is reentrant
  21.    and thread safe.
  22.    Each TMP_ALLOC is a separate malloced block, so redzones or sentinels
  23.    applied by a malloc debugger either above or below can guard against
  24.    accesses outside the allocated area.
  25.    A marker is a "struct tmp_debug_t *" so that TMP_DECL can initialize it
  26.    to NULL and we can detect TMP_ALLOC without TMP_MARK.
  27.    It will work to realloc an MPZ_TMP_INIT variable, but when TMP_FREE comes
  28.    to release the memory it will have the old size, thereby triggering an
  29.    error from tests/memory.c.
  30.    Possibilities:
  31.    It'd be possible to keep a global list of active "struct tmp_debug_t"
  32.    records, so at the end of a program any TMP leaks could be printed.  But
  33.    if only a couple of routines are under test at any one time then the
  34.    likely culprit should be easy enough to spot.  */
  35. void
  36. __gmp_tmp_debug_mark (const char *file, int line,
  37.                       struct tmp_debug_t **markp, struct tmp_debug_t *mark,
  38.                       const char *decl_name, const char *mark_name)
  39. {
  40.   if (strcmp (mark_name, decl_name) != 0)
  41.     {
  42.       __gmp_assert_header (file, line);
  43.       fprintf (stderr, "GNU MP: TMP_MARK(%s) but TMP_DECL(%s) is in scopen",
  44.                mark_name, decl_name);
  45.       abort ();
  46.     }
  47.   if (*markp != NULL)
  48.     {
  49.       __gmp_assert_header (file, line);
  50.       fprintf (stderr, "GNU MP: Repeat of TMP_MARK(%s)n", mark_name);
  51.       if (mark->file != NULL && mark->file[0] != '' && mark->line != -1)
  52.         {
  53.           __gmp_assert_header (mark->file, mark->line);
  54.           fprintf (stderr, "previous was heren");
  55.         }
  56.       abort ();
  57.     }
  58.   *markp = mark;
  59.   mark->file = file;
  60.   mark->line = line;
  61.   mark->list = NULL;
  62. }
  63. void *
  64. __gmp_tmp_debug_alloc (const char *file, int line, int dummy,
  65.                        struct tmp_debug_t **markp,
  66.                        const char *decl_name, size_t size)
  67. {
  68.   struct tmp_debug_t        *mark = *markp;
  69.   struct tmp_debug_entry_t  *p;
  70.   ASSERT_ALWAYS (size >= 1);
  71.   if (mark == NULL)
  72.     {
  73.       __gmp_assert_header (file, line);
  74.       fprintf (stderr, "GNU MP: TMP_ALLOC without TMP_MARK(%s)n", decl_name);
  75.       abort ();
  76.     }
  77.   p = __GMP_ALLOCATE_FUNC_TYPE (1, struct tmp_debug_entry_t);
  78.   p->size = size;
  79.   p->block = (*__gmp_allocate_func) (size);
  80.   p->next = mark->list;
  81.   mark->list = p;
  82.   return p->block;
  83. }
  84. void
  85. __gmp_tmp_debug_free (const char *file, int line, int dummy,
  86.                       struct tmp_debug_t **markp,
  87.                       const char *decl_name, const char *free_name)
  88. {
  89.   struct tmp_debug_t        *mark = *markp;
  90.   struct tmp_debug_entry_t  *p, *next;
  91.   if (mark == NULL)
  92.     {
  93.       __gmp_assert_header (file, line);
  94.       fprintf (stderr, "GNU MP: TMP_FREE(%s) without TMP_MARK(%s)n",
  95.                free_name, decl_name);
  96.       abort ();
  97.     }
  98.   if (strcmp (free_name, decl_name) != 0)
  99.     {
  100.       __gmp_assert_header (file, line);
  101.       fprintf (stderr, "GNU MP: TMP_FREE(%s) when TMP_DECL(%s) is in scopen",
  102.                free_name, decl_name);
  103.       abort ();
  104.     }
  105.   p = mark->list;
  106.   while (p != NULL)
  107.     {
  108.       next = p->next;
  109.       (*__gmp_free_func) (p->block, p->size);
  110.       __GMP_FREE_FUNC_TYPE (p, 1, struct tmp_debug_entry_t);
  111.       p = next;
  112.     }
  113.   *markp = NULL;
  114. }