source: trunk/third/gmp/memory.c @ 18191

Revision 18191, 3.5 KB checked in by ghudson, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r18190, which included commits to RCS files with non-trunk default branches.
Line 
1/* Memory allocation routines.
2
3Copyright 1991, 1993, 1994, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5This file is part of the GNU MP Library.
6
7The GNU MP Library is free software; you can redistribute it and/or modify
8it under the terms of the GNU Lesser General Public License as published by
9the Free Software Foundation; either version 2.1 of the License, or (at your
10option) any later version.
11
12The GNU MP Library is distributed in the hope that it will be useful, but
13WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
15License for more details.
16
17You should have received a copy of the GNU Lesser General Public License
18along with the GNU MP Library; see the file COPYING.LIB.  If not, write to
19the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20MA 02111-1307, USA. */
21
22#include <stdio.h>
23#include <stdlib.h> /* for malloc, realloc, free */
24
25#include "gmp.h"
26#include "gmp-impl.h"
27
28
29void *  (*__gmp_allocate_func) _PROTO ((size_t)) = __gmp_default_allocate;
30void *  (*__gmp_reallocate_func) _PROTO ((void *, size_t, size_t))
31     = __gmp_default_reallocate;
32void    (*__gmp_free_func) _PROTO ((void *, size_t)) = __gmp_default_free;
33
34
35/* Default allocation functions.  In case of failure to allocate/reallocate
36   an error message is written to stderr and the program aborts.  */
37
38void *
39__gmp_default_allocate (size_t size)
40{
41  void *ret;
42#ifdef DEBUG
43  size_t req_size = size;
44  size += 2 * BYTES_PER_MP_LIMB;
45#endif
46  ret = malloc (size);
47  if (ret == 0)
48    {
49      fprintf (stderr, "GNU MP: Cannot allocate memory (size=%u)\n", size);
50      abort ();
51    }
52 
53#ifdef DEBUG
54  {
55    mp_ptr p = ret;
56    p++;
57    p[-1] = (0xdeadbeef << 31) + 0xdeafdeed;
58    if (req_size % BYTES_PER_MP_LIMB == 0)
59      p[req_size / BYTES_PER_MP_LIMB] = ~((0xdeadbeef << 31) + 0xdeafdeed);
60    ret = p;
61  }
62#endif
63  return ret;
64}
65
66void *
67__gmp_default_reallocate (void *oldptr, size_t old_size, size_t new_size)
68{
69  void *ret;
70
71#ifdef DEBUG
72  size_t req_size = new_size;
73
74  if (old_size != 0)
75    {
76      mp_ptr p = oldptr;
77      if (p[-1] != (0xdeadbeef << 31) + 0xdeafdeed)
78        {
79          fprintf (stderr, "gmp: (realloc) data clobbered before allocation block\n");
80          abort ();
81        }
82      if (old_size % BYTES_PER_MP_LIMB == 0)
83        if (p[old_size / BYTES_PER_MP_LIMB] != ~((0xdeadbeef << 31) + 0xdeafdeed))
84          {
85            fprintf (stderr, "gmp: (realloc) data clobbered after allocation block\n");
86            abort ();
87          }
88      oldptr = p - 1;
89    }
90
91  new_size += 2 * BYTES_PER_MP_LIMB;
92#endif
93
94  ret = realloc (oldptr, new_size);
95  if (ret == 0)
96    {
97      fprintf (stderr, "GNU MP: Cannot reallocate memory (old_size=%u new_size=%u)\n", old_size, new_size);
98      abort ();
99    }
100
101#ifdef DEBUG
102  {
103    mp_ptr p = ret;
104    p++;
105    p[-1] = (0xdeadbeef << 31) + 0xdeafdeed;
106    if (req_size % BYTES_PER_MP_LIMB == 0)
107      p[req_size / BYTES_PER_MP_LIMB] = ~((0xdeadbeef << 31) + 0xdeafdeed);
108    ret = p;
109  }
110#endif
111  return ret;
112}
113
114void
115__gmp_default_free (void *blk_ptr, size_t blk_size)
116{
117#ifdef DEBUG
118  {
119    mp_ptr p = blk_ptr;
120    if (blk_size != 0)
121      {
122        if (p[-1] != (0xdeadbeef << 31) + 0xdeafdeed)
123          {
124            fprintf (stderr, "gmp: (free) data clobbered before allocation block\n");
125            abort ();
126          }
127        if (blk_size % BYTES_PER_MP_LIMB == 0)
128          if (p[blk_size / BYTES_PER_MP_LIMB] != ~((0xdeadbeef << 31) + 0xdeafdeed))
129            {
130              fprintf (stderr, "gmp: (free) data clobbered after allocation block\n");
131              abort ();
132            }
133      }
134    blk_ptr = p - 1;
135  }
136#endif
137  free (blk_ptr);
138}
Note: See TracBrowser for help on using the repository browser.