~ubuntu-branches/ubuntu/quantal/gclcvs/quantal

« back to all changes in this revision

Viewing changes to gmp3/memory.c

  • Committer: Bazaar Package Importer
  • Author(s): Camm Maguire
  • Date: 2004-06-24 15:13:46 UTC
  • Revision ID: james.westby@ubuntu.com-20040624151346-xh0xaaktyyp7aorc
Tags: 2.7.0-26
C_GC_OFFSET is 2 on m68k-linux

Show diffs side-by-side

added added

removed removed

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