Mercurial > emacs
annotate src/ralloc.c @ 1465:e2fa3ce65e2a
(dired-chown-program): Treat silicon-graphics-unix like usg-unix-v.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Wed, 21 Oct 1992 19:30:34 +0000 |
| parents | 107c9b227e7f |
| children | 6359d8850fa3 |
| rev | line source |
|---|---|
| 118 | 1 /* Block-relocating memory allocator. |
| 577 | 2 Copyright (C) 1992 Free Software Foundation, Inc. |
| 118 | 3 |
| 4 This file is part of GNU Emacs. | |
| 5 | |
| 6 GNU Emacs is free software; you can redistribute it and/or modify | |
| 7 it under the terms of the GNU General Public License as published by | |
| 8 the Free Software Foundation; either version 1, or (at your option) | |
| 9 any later version. | |
| 10 | |
| 11 GNU Emacs is distributed in the hope that it will be useful, | |
| 12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 14 GNU General Public License for more details. | |
| 15 | |
| 16 You should have received a copy of the GNU General Public License | |
| 17 along with GNU Emacs; see the file COPYING. If not, write to | |
| 18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ | |
| 19 | |
| 20 /* NOTES: | |
| 21 | |
| 22 Only relocate the blocs neccessary for SIZE in r_alloc_sbrk, | |
| 23 rather than all of them. This means allowing for a possible | |
| 24 hole between the first bloc and the end of malloc storage. */ | |
| 25 | |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
26 #ifdef emacs |
|
1403
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
27 |
| 118 | 28 #include "config.h" |
| 577 | 29 #include "lisp.h" /* Needed for VALBITS. */ |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
30 |
|
1403
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
31 #undef NULL |
|
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
32 |
|
1451
107c9b227e7f
[emacs]: Define POINTER and SIZE.
Richard M. Stallman <rms@gnu.org>
parents:
1403
diff
changeset
|
33 /* The important properties of this type are that 1) it's a pointer, and |
|
107c9b227e7f
[emacs]: Define POINTER and SIZE.
Richard M. Stallman <rms@gnu.org>
parents:
1403
diff
changeset
|
34 2) arithmetic on it should work as if the size of the object pointed |
|
107c9b227e7f
[emacs]: Define POINTER and SIZE.
Richard M. Stallman <rms@gnu.org>
parents:
1403
diff
changeset
|
35 to has a size of 1. */ |
|
107c9b227e7f
[emacs]: Define POINTER and SIZE.
Richard M. Stallman <rms@gnu.org>
parents:
1403
diff
changeset
|
36 #ifdef __STDC__ |
|
107c9b227e7f
[emacs]: Define POINTER and SIZE.
Richard M. Stallman <rms@gnu.org>
parents:
1403
diff
changeset
|
37 typedef void *POINTER; |
|
107c9b227e7f
[emacs]: Define POINTER and SIZE.
Richard M. Stallman <rms@gnu.org>
parents:
1403
diff
changeset
|
38 #else |
|
107c9b227e7f
[emacs]: Define POINTER and SIZE.
Richard M. Stallman <rms@gnu.org>
parents:
1403
diff
changeset
|
39 typedef char *POINTER; |
|
107c9b227e7f
[emacs]: Define POINTER and SIZE.
Richard M. Stallman <rms@gnu.org>
parents:
1403
diff
changeset
|
40 #endif |
|
107c9b227e7f
[emacs]: Define POINTER and SIZE.
Richard M. Stallman <rms@gnu.org>
parents:
1403
diff
changeset
|
41 |
|
107c9b227e7f
[emacs]: Define POINTER and SIZE.
Richard M. Stallman <rms@gnu.org>
parents:
1403
diff
changeset
|
42 typedef unsigned long SIZE; |
|
107c9b227e7f
[emacs]: Define POINTER and SIZE.
Richard M. Stallman <rms@gnu.org>
parents:
1403
diff
changeset
|
43 |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
44 /* Declared in dispnew.c, this version doesn't screw up if regions |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
45 overlap. */ |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
46 extern void safe_bcopy (); |
|
1403
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
47 |
|
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
48 #include "getpagesize.h" |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
49 |
|
1403
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
50 #else /* Not emacs. */ |
|
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
51 |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
52 #include <stddef.h> |
|
1403
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
53 |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
54 typedef size_t SIZE; |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
55 typedef void *POINTER; |
|
1403
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
56 |
|
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
57 #include <unistd.h> |
|
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
58 #include <malloc.h> |
|
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
59 #include <string.h> |
|
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
60 |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
61 #define safe_bcopy(x, y, z) memmove (y, x, z) |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
62 |
|
1403
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
63 #endif /* emacs. */ |
| 118 | 64 |
| 65 #define NIL ((POINTER) 0) | |
| 66 | |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
67 /* A flag to indicate whether we have initialized ralloc yet. For |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
68 Emacs's sake, please do not make this local to malloc_init; on some |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
69 machines, the dumping procedure makes all static variables |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
70 read-only. On these machines, the word static is #defined to be |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
71 the empty string, meaning that r_alloc_initialized becomes an |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
72 automatic variable, and loses its value each time Emacs is started up. */ |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
73 static int r_alloc_initialized = 0; |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
74 |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
75 static void r_alloc_init (); |
| 118 | 76 |
| 577 | 77 /* Declarations for working with the malloc, ralloc, and system breaks. */ |
| 78 | |
| 1401 | 79 /* Function to set the real break value. */ |
| 80 static POINTER (*real_morecore) (); | |
| 118 | 81 |
| 82 /* The break value, as seen by malloc (). */ | |
| 83 static POINTER virtual_break_value; | |
| 84 | |
| 85 /* The break value, viewed by the relocatable blocs. */ | |
| 86 static POINTER break_value; | |
| 87 | |
| 88 /* The REAL (i.e., page aligned) break value of the process. */ | |
| 89 static POINTER page_break_value; | |
| 90 | |
| 91 /* Macros for rounding. Note that rounding to any value is possible | |
| 92 by changing the definition of PAGE. */ | |
| 93 #define PAGE (getpagesize ()) | |
| 94 #define ALIGNED(addr) (((unsigned int) (addr) & (PAGE - 1)) == 0) | |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
95 #define ROUNDUP(size) (((unsigned int) (size) + PAGE - 1) & ~(PAGE - 1)) |
| 118 | 96 #define ROUND_TO_PAGE(addr) (addr & (~(PAGE - 1))) |
| 97 | |
| 577 | 98 /* Functions to get and return memory from the system. */ |
| 99 | |
| 118 | 100 /* Obtain SIZE bytes of space. If enough space is not presently available |
| 101 in our process reserve, (i.e., (page_break_value - break_value)), | |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
102 this means getting more page-aligned space from the system. |
| 118 | 103 |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
104 Return non-zero if all went well, or zero if we couldn't allocate |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
105 the memory. */ |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
106 static int |
| 118 | 107 obtain (size) |
| 108 SIZE size; | |
| 109 { | |
| 110 SIZE already_available = page_break_value - break_value; | |
| 111 | |
| 112 if (already_available < size) | |
| 113 { | |
| 577 | 114 SIZE get = ROUNDUP (size - already_available); |
| 118 | 115 |
| 1401 | 116 if ((*real_morecore) (get) == 0) |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
117 return 0; |
| 118 | 118 |
| 119 page_break_value += get; | |
| 120 } | |
| 121 | |
| 122 break_value += size; | |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
123 |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
124 return 1; |
| 118 | 125 } |
| 126 | |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
127 /* Obtain SIZE bytes of space and return a pointer to the new area. |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
128 If we could not allocate the space, return zero. */ |
| 118 | 129 |
| 130 static POINTER | |
| 131 get_more_space (size) | |
| 132 SIZE size; | |
| 133 { | |
| 134 POINTER ptr = break_value; | |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
135 if (obtain (size)) |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
136 return ptr; |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
137 else |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
138 return 0; |
| 118 | 139 } |
| 140 | |
| 141 /* Note that SIZE bytes of space have been relinquished by the process. | |
| 577 | 142 If SIZE is more than a page, return the space to the system. */ |
| 118 | 143 |
| 144 static void | |
| 145 relinquish (size) | |
| 146 SIZE size; | |
| 147 { | |
| 577 | 148 POINTER new_page_break; |
| 118 | 149 |
| 577 | 150 break_value -= size; |
| 151 new_page_break = (POINTER) ROUNDUP (break_value); | |
| 152 | |
| 153 if (new_page_break != page_break_value) | |
| 118 | 154 { |
| 1401 | 155 if ((*real_morecore) ((char *) new_page_break |
| 156 - (char *) page_break_value) == 0) | |
| 118 | 157 abort (); |
| 158 | |
| 577 | 159 page_break_value = new_page_break; |
| 118 | 160 } |
| 161 | |
| 577 | 162 /* Zero the space from the end of the "official" break to the actual |
| 163 break, so that bugs show up faster. */ | |
| 164 bzero (break_value, ((char *) page_break_value - (char *) break_value)); | |
| 118 | 165 } |
| 166 | |
| 577 | 167 /* The meat - allocating, freeing, and relocating blocs. */ |
| 168 | |
| 169 /* These structures are allocated in the malloc arena. | |
| 170 The linked list is kept in order of increasing '.data' members. | |
| 171 The data blocks abut each other; if b->next is non-nil, then | |
| 172 b->data + b->size == b->next->data. */ | |
| 118 | 173 typedef struct bp |
| 174 { | |
| 175 struct bp *next; | |
| 176 struct bp *prev; | |
| 177 POINTER *variable; | |
| 178 POINTER data; | |
| 179 SIZE size; | |
| 180 } *bloc_ptr; | |
| 181 | |
| 182 #define NIL_BLOC ((bloc_ptr) 0) | |
| 183 #define BLOC_PTR_SIZE (sizeof (struct bp)) | |
| 184 | |
| 185 /* Head and tail of the list of relocatable blocs. */ | |
| 186 static bloc_ptr first_bloc, last_bloc; | |
| 187 | |
| 577 | 188 /* Find the bloc referenced by the address in PTR. Returns a pointer |
| 118 | 189 to that block. */ |
| 190 | |
| 191 static bloc_ptr | |
| 192 find_bloc (ptr) | |
| 193 POINTER *ptr; | |
| 194 { | |
| 195 register bloc_ptr p = first_bloc; | |
| 196 | |
| 197 while (p != NIL_BLOC) | |
| 198 { | |
| 199 if (p->variable == ptr && p->data == *ptr) | |
| 200 return p; | |
| 201 | |
| 202 p = p->next; | |
| 203 } | |
| 204 | |
| 205 return p; | |
| 206 } | |
| 207 | |
| 208 /* Allocate a bloc of SIZE bytes and append it to the chain of blocs. | |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
209 Returns a pointer to the new bloc, or zero if we couldn't allocate |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
210 memory for the new block. */ |
| 118 | 211 |
| 212 static bloc_ptr | |
| 213 get_bloc (size) | |
| 214 SIZE size; | |
| 215 { | |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
216 register bloc_ptr new_bloc; |
| 118 | 217 |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
218 if (! (new_bloc = (bloc_ptr) malloc (BLOC_PTR_SIZE)) |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
219 || ! (new_bloc->data = get_more_space (size))) |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
220 { |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
221 if (new_bloc) |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
222 free (new_bloc); |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
223 |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
224 return 0; |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
225 } |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
226 |
| 118 | 227 new_bloc->size = size; |
| 228 new_bloc->next = NIL_BLOC; | |
|
1013
6bf2c4766d4c
* ralloc.c (get_bloc): When initializing new_bloc->variable, cast
Jim Blandy <jimb@redhat.com>
parents:
734
diff
changeset
|
229 new_bloc->variable = (POINTER *) NIL; |
| 118 | 230 |
| 231 if (first_bloc) | |
| 232 { | |
| 233 new_bloc->prev = last_bloc; | |
| 234 last_bloc->next = new_bloc; | |
| 235 last_bloc = new_bloc; | |
| 236 } | |
| 237 else | |
| 238 { | |
| 239 first_bloc = last_bloc = new_bloc; | |
| 240 new_bloc->prev = NIL_BLOC; | |
| 241 } | |
| 242 | |
| 243 return new_bloc; | |
| 244 } | |
| 245 | |
| 246 /* Relocate all blocs from BLOC on upward in the list to the zone | |
| 247 indicated by ADDRESS. Direction of relocation is determined by | |
| 248 the position of ADDRESS relative to BLOC->data. | |
| 249 | |
| 250 Note that ordering of blocs is not affected by this function. */ | |
| 251 | |
| 252 static void | |
| 253 relocate_some_blocs (bloc, address) | |
| 254 bloc_ptr bloc; | |
| 255 POINTER address; | |
| 256 { | |
| 257 register bloc_ptr b; | |
| 258 POINTER data_zone = bloc->data; | |
| 259 register SIZE data_zone_size = 0; | |
| 260 register SIZE offset = bloc->data - address; | |
| 261 POINTER new_data_zone = data_zone - offset; | |
| 262 | |
| 263 for (b = bloc; b != NIL_BLOC; b = b->next) | |
| 264 { | |
| 265 data_zone_size += b->size; | |
| 266 b->data -= offset; | |
| 267 *b->variable = b->data; | |
| 268 } | |
| 269 | |
| 270 safe_bcopy (data_zone, new_data_zone, data_zone_size); | |
| 271 } | |
| 272 | |
| 273 /* Free BLOC from the chain of blocs, relocating any blocs above it | |
| 274 and returning BLOC->size bytes to the free area. */ | |
| 275 | |
| 276 static void | |
| 277 free_bloc (bloc) | |
| 278 bloc_ptr bloc; | |
| 279 { | |
| 280 if (bloc == first_bloc && bloc == last_bloc) | |
| 281 { | |
| 282 first_bloc = last_bloc = NIL_BLOC; | |
| 283 } | |
| 284 else if (bloc == last_bloc) | |
| 285 { | |
| 286 last_bloc = bloc->prev; | |
| 287 last_bloc->next = NIL_BLOC; | |
| 288 } | |
| 289 else if (bloc == first_bloc) | |
| 290 { | |
| 291 first_bloc = bloc->next; | |
| 292 first_bloc->prev = NIL_BLOC; | |
| 293 relocate_some_blocs (bloc->next, bloc->data); | |
| 294 } | |
| 295 else | |
| 296 { | |
| 297 bloc->next->prev = bloc->prev; | |
| 298 bloc->prev->next = bloc->next; | |
| 299 relocate_some_blocs (bloc->next, bloc->data); | |
| 300 } | |
| 301 | |
| 302 relinquish (bloc->size); | |
| 303 free (bloc); | |
| 304 } | |
| 305 | |
| 577 | 306 /* Interface routines. */ |
| 307 | |
| 118 | 308 static int use_relocatable_buffers; |
| 309 | |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
310 /* Obtain SIZE bytes of storage from the free pool, or the system, as |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
311 necessary. If relocatable blocs are in use, this means relocating |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
312 them. This function gets plugged into the GNU malloc's __morecore |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
313 hook. |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
314 |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
315 If we're out of memory, we should return zero, to imitate the other |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
316 __morecore hook values - in particular, __default_morecore in the |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
317 GNU malloc package. */ |
| 118 | 318 |
| 319 POINTER | |
| 320 r_alloc_sbrk (size) | |
| 321 long size; | |
| 322 { | |
| 323 POINTER ptr; | |
| 324 | |
| 325 if (! use_relocatable_buffers) | |
| 1401 | 326 return (*real_morecore) (size); |
| 118 | 327 |
| 328 if (size > 0) | |
| 329 { | |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
330 if (! obtain (size)) |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
331 return 0; |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
332 |
| 118 | 333 if (first_bloc) |
| 334 { | |
| 335 relocate_some_blocs (first_bloc, first_bloc->data + size); | |
| 577 | 336 |
| 337 /* Zero out the space we just allocated, to help catch bugs | |
| 338 quickly. */ | |
| 118 | 339 bzero (virtual_break_value, size); |
| 340 } | |
| 341 } | |
| 342 else if (size < 0) | |
| 343 { | |
| 344 if (first_bloc) | |
| 345 relocate_some_blocs (first_bloc, first_bloc->data + size); | |
| 346 relinquish (- size); | |
| 347 } | |
| 348 | |
| 349 ptr = virtual_break_value; | |
| 350 virtual_break_value += size; | |
| 351 return ptr; | |
| 352 } | |
| 353 | |
| 354 /* Allocate a relocatable bloc of storage of size SIZE. A pointer to | |
| 355 the data is returned in *PTR. PTR is thus the address of some variable | |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
356 which will use the data area. |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
357 |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
358 If we can't allocate the necessary memory, set *PTR to zero, and |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
359 return zero. */ |
| 118 | 360 |
| 361 POINTER | |
| 362 r_alloc (ptr, size) | |
| 363 POINTER *ptr; | |
| 364 SIZE size; | |
| 365 { | |
| 366 register bloc_ptr new_bloc; | |
| 367 | |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
368 if (! r_alloc_initialized) |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
369 r_alloc_init (); |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
370 |
| 118 | 371 new_bloc = get_bloc (size); |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
372 if (new_bloc) |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
373 { |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
374 new_bloc->variable = ptr; |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
375 *ptr = new_bloc->data; |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
376 } |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
377 else |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
378 *ptr = 0; |
| 118 | 379 |
| 380 return *ptr; | |
| 381 } | |
| 382 | |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
383 /* Free a bloc of relocatable storage whose data is pointed to by PTR. |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
384 Store 0 in *PTR to show there's no block allocated. */ |
| 118 | 385 |
| 386 void | |
| 387 r_alloc_free (ptr) | |
| 388 register POINTER *ptr; | |
| 389 { | |
| 390 register bloc_ptr dead_bloc; | |
| 391 | |
| 392 dead_bloc = find_bloc (ptr); | |
| 393 if (dead_bloc == NIL_BLOC) | |
| 394 abort (); | |
| 395 | |
| 396 free_bloc (dead_bloc); | |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
397 *ptr = 0; |
| 118 | 398 } |
| 399 | |
|
1087
6c410cc87574
* ralloc.c (r_re_alloc): Instead of allocating a new bloc at the
Jim Blandy <jimb@redhat.com>
parents:
1013
diff
changeset
|
400 /* Given a pointer at address PTR to relocatable data, resize it to SIZE. |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
401 Do this by shifting all blocks above this one up in memory, unless |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
402 SIZE is less than or equal to the current bloc size, in which case |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
403 do nothing. |
| 118 | 404 |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
405 Change *PTR to reflect the new bloc, and return this value. |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
406 |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
407 If more memory cannot be allocated, then leave *PTR unchanged, and |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
408 return zero. */ |
| 118 | 409 |
| 410 POINTER | |
| 411 r_re_alloc (ptr, size) | |
| 412 POINTER *ptr; | |
| 413 SIZE size; | |
| 414 { | |
|
1087
6c410cc87574
* ralloc.c (r_re_alloc): Instead of allocating a new bloc at the
Jim Blandy <jimb@redhat.com>
parents:
1013
diff
changeset
|
415 register bloc_ptr bloc; |
| 118 | 416 |
|
1087
6c410cc87574
* ralloc.c (r_re_alloc): Instead of allocating a new bloc at the
Jim Blandy <jimb@redhat.com>
parents:
1013
diff
changeset
|
417 bloc = find_bloc (ptr); |
|
6c410cc87574
* ralloc.c (r_re_alloc): Instead of allocating a new bloc at the
Jim Blandy <jimb@redhat.com>
parents:
1013
diff
changeset
|
418 if (bloc == NIL_BLOC) |
| 118 | 419 abort (); |
| 420 | |
|
1087
6c410cc87574
* ralloc.c (r_re_alloc): Instead of allocating a new bloc at the
Jim Blandy <jimb@redhat.com>
parents:
1013
diff
changeset
|
421 if (size <= bloc->size) |
| 577 | 422 /* Wouldn't it be useful to actually resize the bloc here? */ |
| 118 | 423 return *ptr; |
| 424 | |
|
1249
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
425 if (! obtain (size - bloc->size)) |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
426 return 0; |
|
761b9b4fd3ed
* ralloc.c: Since the users of the relocating allocation code
Jim Blandy <jimb@redhat.com>
parents:
1121
diff
changeset
|
427 |
|
1087
6c410cc87574
* ralloc.c (r_re_alloc): Instead of allocating a new bloc at the
Jim Blandy <jimb@redhat.com>
parents:
1013
diff
changeset
|
428 relocate_some_blocs (bloc->next, bloc->data + size); |
| 118 | 429 |
|
1087
6c410cc87574
* ralloc.c (r_re_alloc): Instead of allocating a new bloc at the
Jim Blandy <jimb@redhat.com>
parents:
1013
diff
changeset
|
430 /* Zero out the new space in the bloc, to help catch bugs faster. */ |
|
6c410cc87574
* ralloc.c (r_re_alloc): Instead of allocating a new bloc at the
Jim Blandy <jimb@redhat.com>
parents:
1013
diff
changeset
|
431 bzero (bloc->data + bloc->size, size - bloc->size); |
| 1121 | 432 |
|
1087
6c410cc87574
* ralloc.c (r_re_alloc): Instead of allocating a new bloc at the
Jim Blandy <jimb@redhat.com>
parents:
1013
diff
changeset
|
433 /* Indicate that this block has a new size. */ |
|
6c410cc87574
* ralloc.c (r_re_alloc): Instead of allocating a new bloc at the
Jim Blandy <jimb@redhat.com>
parents:
1013
diff
changeset
|
434 bloc->size = size; |
| 118 | 435 |
| 436 return *ptr; | |
| 437 } | |
| 438 | |
| 439 /* The hook `malloc' uses for the function which gets more space | |
| 440 from the system. */ | |
| 441 extern POINTER (*__morecore) (); | |
| 442 | |
| 443 /* Intialize various things for memory allocation. */ | |
| 444 | |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
445 static void |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
446 r_alloc_init () |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
447 { |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
448 if (r_alloc_initialized) |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
449 return; |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
450 |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
451 r_alloc_initialized = 1; |
| 1401 | 452 real_morecore = __morecore; |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
453 __morecore = r_alloc_sbrk; |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
454 |
| 1401 | 455 virtual_break_value = break_value = (*real_morecore) (0); |
|
1403
f0ea279194f8
Removed #include "mem-limits.h".
Roland McGrath <roland@gnu.org>
parents:
1401
diff
changeset
|
456 if (break_value == NIL) |
|
1390
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
457 abort (); |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
458 |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
459 page_break_value = (POINTER) ROUNDUP (break_value); |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
460 /* Clear the rest of the last page; this memory is in our address space |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
461 even though it is after the sbrk value. */ |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
462 bzero (break_value, (page_break_value - break_value)); |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
463 use_relocatable_buffers = 1; |
|
92df75f4167f
(check_memory_limits): Reduce warnlevel when usage drops far enough.
Richard M. Stallman <rms@gnu.org>
parents:
1249
diff
changeset
|
464 } |
