1 /* Block-relocating memory allocator.
2 Copyright (C) 1992 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
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)
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.
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. */
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. */
29 #include "lisp.h" /* Needed for VALBITS. */
33 /* The important properties of this type are that 1) it's a pointer, and
34 2) arithmetic on it should work as if the size of the object pointed
35 to has a size of 1. */
37 typedef void *POINTER
;
44 typedef char *POINTER
;
48 typedef unsigned long SIZE
;
50 /* Declared in dispnew.c, this version doesn't screw up if regions
52 extern void safe_bcopy ();
54 #include "getpagesize.h"
56 #else /* Not emacs. */
61 typedef void *POINTER
;
67 #define safe_bcopy(x, y, z) memmove (y, x, z)
71 #define NIL ((POINTER) 0)
73 /* A flag to indicate whether we have initialized ralloc yet. For
74 Emacs's sake, please do not make this local to malloc_init; on some
75 machines, the dumping procedure makes all static variables
76 read-only. On these machines, the word static is #defined to be
77 the empty string, meaning that r_alloc_initialized becomes an
78 automatic variable, and loses its value each time Emacs is started up. */
79 static int r_alloc_initialized
= 0;
81 static void r_alloc_init ();
83 /* Declarations for working with the malloc, ralloc, and system breaks. */
85 /* Function to set the real break value. */
86 static POINTER (*real_morecore
) ();
88 /* The break value, as seen by malloc (). */
89 static POINTER virtual_break_value
;
91 /* The break value, viewed by the relocatable blocs. */
92 static POINTER break_value
;
94 /* The REAL (i.e., page aligned) break value of the process. */
95 static POINTER page_break_value
;
97 /* This is the size of a page. We round memory requests to this boundary. */
100 /* Whenever we get memory from the system, get this many extra bytes. This
101 must be a multiple of page_size. */
102 static int extra_bytes
;
104 /* Macros for rounding. Note that rounding to any value is possible
105 by changing the definition of PAGE. */
106 #define PAGE (getpagesize ())
107 #define ALIGNED(addr) (((unsigned int) (addr) & (page_size - 1)) == 0)
108 #define ROUNDUP(size) (((unsigned int) (size) + page_size - 1) & ~(page_size - 1))
109 #define ROUND_TO_PAGE(addr) (addr & (~(page_size - 1)))
111 /* Functions to get and return memory from the system. */
113 /* Obtain SIZE bytes of space. If enough space is not presently available
114 in our process reserve, (i.e., (page_break_value - break_value)),
115 this means getting more page-aligned space from the system.
117 Return non-zero if all went well, or zero if we couldn't allocate
123 SIZE already_available
= page_break_value
- break_value
;
125 if (already_available
< size
)
127 SIZE get
= ROUNDUP (size
- already_available
);
128 /* Get some extra, so we can come here less often. */
131 if ((*real_morecore
) (get
) == 0)
134 page_break_value
+= get
;
142 /* Obtain SIZE bytes of space and return a pointer to the new area.
143 If we could not allocate the space, return zero. */
146 get_more_space (size
)
149 POINTER ptr
= break_value
;
156 /* Note that SIZE bytes of space have been relinquished by the process.
157 If SIZE is more than a page, return the space to the system. */
163 POINTER new_page_break
;
167 new_page_break
= (POINTER
) ROUNDUP (break_value
);
168 excess
= (char *) page_break_value
- (char *) new_page_break
;
170 if (excess
> extra_bytes
* 2)
172 /* Keep extra_bytes worth of empty space.
173 And don't free anything unless we can free at least extra_bytes. */
174 if ((*real_morecore
) (extra_bytes
- excess
) == 0)
177 page_break_value
+= extra_bytes
- excess
;
180 /* Zero the space from the end of the "official" break to the actual
181 break, so that bugs show up faster. */
182 bzero (break_value
, ((char *) page_break_value
- (char *) break_value
));
185 /* The meat - allocating, freeing, and relocating blocs. */
187 /* These structures are allocated in the malloc arena.
188 The linked list is kept in order of increasing '.data' members.
189 The data blocks abut each other; if b->next is non-nil, then
190 b->data + b->size == b->next->data. */
200 #define NIL_BLOC ((bloc_ptr) 0)
201 #define BLOC_PTR_SIZE (sizeof (struct bp))
203 /* Head and tail of the list of relocatable blocs. */
204 static bloc_ptr first_bloc
, last_bloc
;
206 /* Find the bloc referenced by the address in PTR. Returns a pointer
213 register bloc_ptr p
= first_bloc
;
215 while (p
!= NIL_BLOC
)
217 if (p
->variable
== ptr
&& p
->data
== *ptr
)
226 /* Allocate a bloc of SIZE bytes and append it to the chain of blocs.
227 Returns a pointer to the new bloc, or zero if we couldn't allocate
228 memory for the new block. */
234 register bloc_ptr new_bloc
;
236 if (! (new_bloc
= (bloc_ptr
) malloc (BLOC_PTR_SIZE
))
237 || ! (new_bloc
->data
= get_more_space (size
)))
245 new_bloc
->size
= size
;
246 new_bloc
->next
= NIL_BLOC
;
247 new_bloc
->variable
= (POINTER
*) NIL
;
251 new_bloc
->prev
= last_bloc
;
252 last_bloc
->next
= new_bloc
;
253 last_bloc
= new_bloc
;
257 first_bloc
= last_bloc
= new_bloc
;
258 new_bloc
->prev
= NIL_BLOC
;
264 /* Relocate all blocs from BLOC on upward in the list to the zone
265 indicated by ADDRESS. Direction of relocation is determined by
266 the position of ADDRESS relative to BLOC->data.
268 If BLOC is NIL_BLOC, nothing is done.
270 Note that ordering of blocs is not affected by this function. */
273 relocate_some_blocs (bloc
, address
)
277 if (bloc
!= NIL_BLOC
)
279 register SIZE offset
= address
- bloc
->data
;
280 register SIZE data_size
= 0;
283 for (b
= bloc
; b
!= NIL_BLOC
; b
= b
->next
)
285 data_size
+= b
->size
;
287 *b
->variable
= b
->data
;
290 safe_bcopy (address
- offset
, address
, data_size
);
295 /* Free BLOC from the chain of blocs, relocating any blocs above it
296 and returning BLOC->size bytes to the free area. */
302 if (bloc
== first_bloc
&& bloc
== last_bloc
)
304 first_bloc
= last_bloc
= NIL_BLOC
;
306 else if (bloc
== last_bloc
)
308 last_bloc
= bloc
->prev
;
309 last_bloc
->next
= NIL_BLOC
;
311 else if (bloc
== first_bloc
)
313 first_bloc
= bloc
->next
;
314 first_bloc
->prev
= NIL_BLOC
;
318 bloc
->next
->prev
= bloc
->prev
;
319 bloc
->prev
->next
= bloc
->next
;
322 relocate_some_blocs (bloc
->next
, bloc
->data
);
323 relinquish (bloc
->size
);
327 /* Interface routines. */
329 static int use_relocatable_buffers
;
331 /* Obtain SIZE bytes of storage from the free pool, or the system, as
332 necessary. If relocatable blocs are in use, this means relocating
333 them. This function gets plugged into the GNU malloc's __morecore
336 We provide hysteresis, never relocating by less than extra_bytes.
338 If we're out of memory, we should return zero, to imitate the other
339 __morecore hook values - in particular, __default_morecore in the
340 GNU malloc package. */
346 /* This is the first address not currently available for the heap. */
348 /* Amount of empty space below that. */
349 SIZE already_available
;
352 if (! use_relocatable_buffers
)
353 return (*real_morecore
) (size
);
355 top
= first_bloc
? first_bloc
->data
: page_break_value
;
356 already_available
= (char *) top
- (char *) virtual_break_value
;
358 /* Do we not have enough gap already? */
359 if (size
> 0 && already_available
< size
)
361 /* Get what we need, plus some extra so we can come here less often. */
362 SIZE get
= size
- already_available
+ extra_bytes
;
368 relocate_some_blocs (first_bloc
, first_bloc
->data
+ get
);
370 /* Zero out the space we just allocated, to help catch bugs
372 bzero (virtual_break_value
, get
);
374 /* Can we keep extra_bytes of gap while freeing at least extra_bytes? */
375 else if (size
< 0 && already_available
- size
> 2 * extra_bytes
)
377 /* Ok, do so. This is how many to free. */
378 SIZE give_back
= already_available
- size
- extra_bytes
;
381 relocate_some_blocs (first_bloc
, first_bloc
->data
- give_back
);
382 relinquish (give_back
);
385 ptr
= virtual_break_value
;
386 virtual_break_value
+= size
;
391 /* Allocate a relocatable bloc of storage of size SIZE. A pointer to
392 the data is returned in *PTR. PTR is thus the address of some variable
393 which will use the data area.
395 If we can't allocate the necessary memory, set *PTR to zero, and
403 register bloc_ptr new_bloc
;
405 if (! r_alloc_initialized
)
408 new_bloc
= get_bloc (size
);
411 new_bloc
->variable
= ptr
;
412 *ptr
= new_bloc
->data
;
420 /* Free a bloc of relocatable storage whose data is pointed to by PTR.
421 Store 0 in *PTR to show there's no block allocated. */
425 register POINTER
*ptr
;
427 register bloc_ptr dead_bloc
;
429 dead_bloc
= find_bloc (ptr
);
430 if (dead_bloc
== NIL_BLOC
)
433 free_bloc (dead_bloc
);
437 /* Given a pointer at address PTR to relocatable data, resize it to SIZE.
438 Do this by shifting all blocks above this one up in memory, unless
439 SIZE is less than or equal to the current bloc size, in which case
442 Change *PTR to reflect the new bloc, and return this value.
444 If more memory cannot be allocated, then leave *PTR unchanged, and
448 r_re_alloc (ptr
, size
)
452 register bloc_ptr bloc
;
454 bloc
= find_bloc (ptr
);
455 if (bloc
== NIL_BLOC
)
458 if (size
<= bloc
->size
)
459 /* Wouldn't it be useful to actually resize the bloc here? */
462 if (! obtain (size
- bloc
->size
))
465 relocate_some_blocs (bloc
->next
, bloc
->data
+ size
);
467 /* Zero out the new space in the bloc, to help catch bugs faster. */
468 bzero (bloc
->data
+ bloc
->size
, size
- bloc
->size
);
470 /* Indicate that this block has a new size. */
476 /* The hook `malloc' uses for the function which gets more space
478 extern POINTER (*__morecore
) ();
480 /* Intialize various things for memory allocation. */
485 if (r_alloc_initialized
)
488 r_alloc_initialized
= 1;
489 real_morecore
= __morecore
;
490 __morecore
= r_alloc_sbrk
;
492 virtual_break_value
= break_value
= (*real_morecore
) (0);
493 if (break_value
== NIL
)
497 extra_bytes
= ROUNDUP (50000);
499 page_break_value
= (POINTER
) ROUNDUP (break_value
);
500 /* Clear the rest of the last page; this memory is in our address space
501 even though it is after the sbrk value. */
502 bzero (break_value
, (page_break_value
- break_value
));
503 use_relocatable_buffers
= 1;