Mercurial > emacs
annotate src/alloc.c @ 1939:def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
aligned, not pureptr itself.
| author | Jim Blandy <jimb@redhat.com> |
|---|---|
| date | Tue, 23 Feb 1993 11:49:39 +0000 |
| parents | 82bbf90208d4 |
| children | 54c8c66cd9ac |
| rev | line source |
|---|---|
| 300 | 1 /* Storage allocation and gc for GNU Emacs Lisp interpreter. |
|
1784
11f62e53acff
Make scrollbar structures into lisp objects, so that they can be
Jim Blandy <jimb@redhat.com>
parents:
1562
diff
changeset
|
2 Copyright (C) 1985, 1986, 1988, 1992, 1993 Free Software Foundation, Inc. |
| 300 | 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 | |
|
1784
11f62e53acff
Make scrollbar structures into lisp objects, so that they can be
Jim Blandy <jimb@redhat.com>
parents:
1562
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
| 300 | 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 | |
| 21 #include "config.h" | |
| 22 #include "lisp.h" | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
23 #include "intervals.h" |
| 356 | 24 #include "puresize.h" |
| 300 | 25 #ifndef standalone |
| 26 #include "buffer.h" | |
| 27 #include "window.h" | |
| 764 | 28 #include "frame.h" |
| 300 | 29 #endif |
| 30 | |
| 638 | 31 #include "syssignal.h" |
| 32 | |
| 300 | 33 #define max(A,B) ((A) > (B) ? (A) : (B)) |
| 34 | |
| 35 /* Macro to verify that storage intended for Lisp objects is not | |
| 36 out of range to fit in the space for a pointer. | |
| 37 ADDRESS is the start of the block, and SIZE | |
| 38 is the amount of space within which objects can start. */ | |
| 39 #define VALIDATE_LISP_STORAGE(address, size) \ | |
| 40 do \ | |
| 41 { \ | |
| 42 Lisp_Object val; \ | |
| 43 XSET (val, Lisp_Cons, (char *) address + size); \ | |
| 44 if ((char *) XCONS (val) != (char *) address + size) \ | |
| 45 { \ | |
| 46 free (address); \ | |
| 47 memory_full (); \ | |
| 48 } \ | |
| 49 } while (0) | |
| 50 | |
| 51 /* Number of bytes of consing done since the last gc */ | |
| 52 int consing_since_gc; | |
| 53 | |
| 54 /* Number of bytes of consing since gc before another gc should be done. */ | |
| 55 int gc_cons_threshold; | |
| 56 | |
| 57 /* Nonzero during gc */ | |
| 58 int gc_in_progress; | |
| 59 | |
| 60 #ifndef VIRT_ADDR_VARIES | |
| 61 extern | |
| 62 #endif /* VIRT_ADDR_VARIES */ | |
| 63 int malloc_sbrk_used; | |
| 64 | |
| 65 #ifndef VIRT_ADDR_VARIES | |
| 66 extern | |
| 67 #endif /* VIRT_ADDR_VARIES */ | |
| 68 int malloc_sbrk_unused; | |
| 69 | |
| 764 | 70 /* Two limits controlling how much undo information to keep. */ |
| 71 int undo_limit; | |
| 72 int undo_strong_limit; | |
| 300 | 73 |
| 74 /* Non-nil means defun should do purecopy on the function definition */ | |
| 75 Lisp_Object Vpurify_flag; | |
| 76 | |
| 77 #ifndef HAVE_SHM | |
| 78 int pure[PURESIZE / sizeof (int)] = {0,}; /* Force it into data space! */ | |
| 79 #define PUREBEG (char *) pure | |
| 80 #else | |
| 81 #define pure PURE_SEG_BITS /* Use shared memory segment */ | |
| 82 #define PUREBEG (char *)PURE_SEG_BITS | |
| 356 | 83 |
| 84 /* This variable is used only by the XPNTR macro when HAVE_SHM is | |
| 85 defined. If we used the PURESIZE macro directly there, that would | |
| 86 make most of emacs dependent on puresize.h, which we don't want - | |
| 87 you should be able to change that without too much recompilation. | |
| 88 So map_in_data initializes pure_size, and the dependencies work | |
| 89 out. */ | |
| 90 int pure_size; | |
| 300 | 91 #endif /* not HAVE_SHM */ |
| 92 | |
| 93 /* Index in pure at which next pure object will be allocated. */ | |
| 94 int pureptr; | |
| 95 | |
| 96 /* If nonzero, this is a warning delivered by malloc and not yet displayed. */ | |
| 97 char *pending_malloc_warning; | |
| 98 | |
| 99 /* Maximum amount of C stack to save when a GC happens. */ | |
| 100 | |
| 101 #ifndef MAX_SAVE_STACK | |
| 102 #define MAX_SAVE_STACK 16000 | |
| 103 #endif | |
| 104 | |
| 105 /* Buffer in which we save a copy of the C stack at each GC. */ | |
| 106 | |
| 107 char *stack_copy; | |
| 108 int stack_copy_size; | |
| 109 | |
| 110 /* Non-zero means ignore malloc warnings. Set during initialization. */ | |
| 111 int ignore_warnings; | |
| 1318 | 112 |
| 113 static void mark_object (), mark_buffer (); | |
| 114 static void clear_marks (), gc_sweep (); | |
| 115 static void compact_strings (); | |
| 300 | 116 |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
117 /* Versions of malloc and realloc that print warnings as memory gets full. */ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
118 |
| 300 | 119 Lisp_Object |
| 120 malloc_warning_1 (str) | |
| 121 Lisp_Object str; | |
| 122 { | |
| 123 Fprinc (str, Vstandard_output); | |
| 124 write_string ("\nKilling some buffers may delay running out of memory.\n", -1); | |
| 125 write_string ("However, certainly by the time you receive the 95% warning,\n", -1); | |
| 126 write_string ("you should clean up, kill this Emacs, and start a new one.", -1); | |
| 127 return Qnil; | |
| 128 } | |
| 129 | |
| 130 /* malloc calls this if it finds we are near exhausting storage */ | |
| 131 malloc_warning (str) | |
| 132 char *str; | |
| 133 { | |
| 134 pending_malloc_warning = str; | |
| 135 } | |
| 136 | |
| 137 display_malloc_warning () | |
| 138 { | |
| 139 register Lisp_Object val; | |
| 140 | |
| 141 val = build_string (pending_malloc_warning); | |
| 142 pending_malloc_warning = 0; | |
| 143 internal_with_output_to_temp_buffer (" *Danger*", malloc_warning_1, val); | |
| 144 } | |
| 145 | |
| 146 /* Called if malloc returns zero */ | |
| 147 memory_full () | |
| 148 { | |
| 149 error ("Memory exhausted"); | |
| 150 } | |
| 151 | |
| 152 /* like malloc and realloc but check for no memory left */ | |
| 153 | |
| 154 long * | |
| 155 xmalloc (size) | |
| 156 int size; | |
| 157 { | |
| 158 register long *val; | |
| 159 | |
| 160 val = (long *) malloc (size); | |
| 161 | |
| 162 if (!val && size) memory_full (); | |
| 163 return val; | |
| 164 } | |
| 165 | |
| 166 long * | |
| 167 xrealloc (block, size) | |
| 168 long *block; | |
| 169 int size; | |
| 170 { | |
| 171 register long *val; | |
| 172 | |
| 590 | 173 /* We must call malloc explicitly when BLOCK is 0, since some |
| 174 reallocs don't do this. */ | |
| 175 if (! block) | |
| 176 val = (long *) malloc (size); | |
|
600
a8d78999e46d
*** empty log message ***
Noah Friedman <friedman@splode.com>
parents:
590
diff
changeset
|
177 else |
| 590 | 178 val = (long *) realloc (block, size); |
| 300 | 179 |
| 180 if (!val && size) memory_full (); | |
| 181 return val; | |
| 182 } | |
| 183 | |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
184 /* Interval allocation. */ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
185 |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
186 #ifdef USE_TEXT_PROPERTIES |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
187 #define INTERVAL_BLOCK_SIZE \ |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
188 ((1020 - sizeof (struct interval_block *)) / sizeof (struct interval)) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
189 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
190 struct interval_block |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
191 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
192 struct interval_block *next; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
193 struct interval intervals[INTERVAL_BLOCK_SIZE]; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
194 }; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
195 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
196 struct interval_block *interval_block; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
197 static int interval_block_index; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
198 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
199 INTERVAL interval_free_list; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
200 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
201 static void |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
202 init_intervals () |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
203 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
204 interval_block |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
205 = (struct interval_block *) malloc (sizeof (struct interval_block)); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
206 interval_block->next = 0; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
207 bzero (interval_block->intervals, sizeof interval_block->intervals); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
208 interval_block_index = 0; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
209 interval_free_list = 0; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
210 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
211 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
212 #define INIT_INTERVALS init_intervals () |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
213 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
214 INTERVAL |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
215 make_interval () |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
216 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
217 INTERVAL val; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
218 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
219 if (interval_free_list) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
220 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
221 val = interval_free_list; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
222 interval_free_list = interval_free_list->parent; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
223 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
224 else |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
225 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
226 if (interval_block_index == INTERVAL_BLOCK_SIZE) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
227 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
228 register struct interval_block *newi |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
229 = (struct interval_block *) malloc (sizeof (struct interval_block)); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
230 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
231 if (!newi) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
232 memory_full (); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
233 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
234 VALIDATE_LISP_STORAGE (newi, sizeof *newi); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
235 newi->next = interval_block; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
236 interval_block = newi; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
237 interval_block_index = 0; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
238 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
239 val = &interval_block->intervals[interval_block_index++]; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
240 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
241 consing_since_gc += sizeof (struct interval); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
242 RESET_INTERVAL (val); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
243 return val; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
244 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
245 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
246 static int total_free_intervals, total_intervals; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
247 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
248 /* Mark the pointers of one interval. */ |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
249 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
250 static void |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
251 mark_interval (i) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
252 register INTERVAL i; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
253 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
254 if (XMARKBIT (i->plist)) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
255 abort (); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
256 mark_object (&i->plist); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
257 XMARK (i->plist); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
258 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
259 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
260 static void |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
261 mark_interval_tree (tree) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
262 register INTERVAL tree; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
263 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
264 if (XMARKBIT (tree->plist)) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
265 return; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
266 |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
267 traverse_intervals (tree, 1, 0, mark_interval); |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
268 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
269 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
270 #define MARK_INTERVAL_TREE(i) \ |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
271 { if (!NULL_INTERVAL_P (i)) mark_interval_tree (i); } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
272 |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
273 /* The oddity in the call to XUNMARK is necessary because XUNMARK |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
274 expands to an assigment to its argument, and most C compilers don't |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
275 support casts on the left operand of `='. */ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
276 #define UNMARK_BALANCE_INTERVALS(i) \ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
277 { \ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
278 if (! NULL_INTERVAL_P (i)) \ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
279 { \ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
280 XUNMARK (* (Lisp_Object *) (&(i)->parent)); \ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
281 (i) = balance_intervals (i); \ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
282 } \ |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
283 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
284 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
285 #else /* no interval use */ |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
286 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
287 #define INIT_INTERVALS |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
288 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
289 #define UNMARK_BALANCE_INTERVALS(i) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
290 #define MARK_INTERVAL_TREE(i) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
291 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
292 #endif /* no interval use */ |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
293 |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
294 /* Floating point allocation. */ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
295 |
| 300 | 296 #ifdef LISP_FLOAT_TYPE |
| 297 /* Allocation of float cells, just like conses */ | |
| 298 /* We store float cells inside of float_blocks, allocating a new | |
| 299 float_block with malloc whenever necessary. Float cells reclaimed by | |
| 300 GC are put on a free list to be reallocated before allocating | |
| 301 any new float cells from the latest float_block. | |
| 302 | |
| 303 Each float_block is just under 1020 bytes long, | |
| 304 since malloc really allocates in units of powers of two | |
| 305 and uses 4 bytes for its own overhead. */ | |
| 306 | |
| 307 #define FLOAT_BLOCK_SIZE \ | |
| 308 ((1020 - sizeof (struct float_block *)) / sizeof (struct Lisp_Float)) | |
| 309 | |
| 310 struct float_block | |
| 311 { | |
| 312 struct float_block *next; | |
| 313 struct Lisp_Float floats[FLOAT_BLOCK_SIZE]; | |
| 314 }; | |
| 315 | |
| 316 struct float_block *float_block; | |
| 317 int float_block_index; | |
| 318 | |
| 319 struct Lisp_Float *float_free_list; | |
| 320 | |
| 321 void | |
| 322 init_float () | |
| 323 { | |
| 324 float_block = (struct float_block *) malloc (sizeof (struct float_block)); | |
| 325 float_block->next = 0; | |
| 326 bzero (float_block->floats, sizeof float_block->floats); | |
| 327 float_block_index = 0; | |
| 328 float_free_list = 0; | |
| 329 } | |
| 330 | |
| 331 /* Explicitly free a float cell. */ | |
| 332 free_float (ptr) | |
| 333 struct Lisp_Float *ptr; | |
| 334 { | |
| 335 XFASTINT (ptr->type) = (int) float_free_list; | |
| 336 float_free_list = ptr; | |
| 337 } | |
| 338 | |
| 339 Lisp_Object | |
| 340 make_float (float_value) | |
| 341 double float_value; | |
| 342 { | |
| 343 register Lisp_Object val; | |
| 344 | |
| 345 if (float_free_list) | |
| 346 { | |
| 347 XSET (val, Lisp_Float, float_free_list); | |
| 348 float_free_list = (struct Lisp_Float *) XFASTINT (float_free_list->type); | |
| 349 } | |
| 350 else | |
| 351 { | |
| 352 if (float_block_index == FLOAT_BLOCK_SIZE) | |
| 353 { | |
| 354 register struct float_block *new = (struct float_block *) malloc (sizeof (struct float_block)); | |
| 355 if (!new) memory_full (); | |
| 356 VALIDATE_LISP_STORAGE (new, sizeof *new); | |
| 357 new->next = float_block; | |
| 358 float_block = new; | |
| 359 float_block_index = 0; | |
| 360 } | |
| 361 XSET (val, Lisp_Float, &float_block->floats[float_block_index++]); | |
| 362 } | |
| 363 XFLOAT (val)->data = float_value; | |
| 364 XFLOAT (val)->type = 0; /* bug chasing -wsr */ | |
| 365 consing_since_gc += sizeof (struct Lisp_Float); | |
| 366 return val; | |
| 367 } | |
| 368 | |
| 369 #endif /* LISP_FLOAT_TYPE */ | |
| 370 | |
| 371 /* Allocation of cons cells */ | |
| 372 /* We store cons cells inside of cons_blocks, allocating a new | |
| 373 cons_block with malloc whenever necessary. Cons cells reclaimed by | |
| 374 GC are put on a free list to be reallocated before allocating | |
| 375 any new cons cells from the latest cons_block. | |
| 376 | |
| 377 Each cons_block is just under 1020 bytes long, | |
| 378 since malloc really allocates in units of powers of two | |
| 379 and uses 4 bytes for its own overhead. */ | |
| 380 | |
| 381 #define CONS_BLOCK_SIZE \ | |
| 382 ((1020 - sizeof (struct cons_block *)) / sizeof (struct Lisp_Cons)) | |
| 383 | |
| 384 struct cons_block | |
| 385 { | |
| 386 struct cons_block *next; | |
| 387 struct Lisp_Cons conses[CONS_BLOCK_SIZE]; | |
| 388 }; | |
| 389 | |
| 390 struct cons_block *cons_block; | |
| 391 int cons_block_index; | |
| 392 | |
| 393 struct Lisp_Cons *cons_free_list; | |
| 394 | |
| 395 void | |
| 396 init_cons () | |
| 397 { | |
| 398 cons_block = (struct cons_block *) malloc (sizeof (struct cons_block)); | |
| 399 cons_block->next = 0; | |
| 400 bzero (cons_block->conses, sizeof cons_block->conses); | |
| 401 cons_block_index = 0; | |
| 402 cons_free_list = 0; | |
| 403 } | |
| 404 | |
| 405 /* Explicitly free a cons cell. */ | |
| 406 free_cons (ptr) | |
| 407 struct Lisp_Cons *ptr; | |
| 408 { | |
| 409 XFASTINT (ptr->car) = (int) cons_free_list; | |
| 410 cons_free_list = ptr; | |
| 411 } | |
| 412 | |
| 413 DEFUN ("cons", Fcons, Scons, 2, 2, 0, | |
| 414 "Create a new cons, give it CAR and CDR as components, and return it.") | |
| 415 (car, cdr) | |
| 416 Lisp_Object car, cdr; | |
| 417 { | |
| 418 register Lisp_Object val; | |
| 419 | |
| 420 if (cons_free_list) | |
| 421 { | |
| 422 XSET (val, Lisp_Cons, cons_free_list); | |
| 423 cons_free_list = (struct Lisp_Cons *) XFASTINT (cons_free_list->car); | |
| 424 } | |
| 425 else | |
| 426 { | |
| 427 if (cons_block_index == CONS_BLOCK_SIZE) | |
| 428 { | |
| 429 register struct cons_block *new = (struct cons_block *) malloc (sizeof (struct cons_block)); | |
| 430 if (!new) memory_full (); | |
| 431 VALIDATE_LISP_STORAGE (new, sizeof *new); | |
| 432 new->next = cons_block; | |
| 433 cons_block = new; | |
| 434 cons_block_index = 0; | |
| 435 } | |
| 436 XSET (val, Lisp_Cons, &cons_block->conses[cons_block_index++]); | |
| 437 } | |
| 438 XCONS (val)->car = car; | |
| 439 XCONS (val)->cdr = cdr; | |
| 440 consing_since_gc += sizeof (struct Lisp_Cons); | |
| 441 return val; | |
| 442 } | |
| 443 | |
| 444 DEFUN ("list", Flist, Slist, 0, MANY, 0, | |
| 445 "Return a newly created list with specified arguments as elements.\n\ | |
| 446 Any number of arguments, even zero arguments, are allowed.") | |
| 447 (nargs, args) | |
| 448 int nargs; | |
| 449 register Lisp_Object *args; | |
| 450 { | |
| 451 register Lisp_Object len, val, val_tail; | |
| 452 | |
| 453 XFASTINT (len) = nargs; | |
| 454 val = Fmake_list (len, Qnil); | |
| 455 val_tail = val; | |
| 485 | 456 while (!NILP (val_tail)) |
| 300 | 457 { |
| 458 XCONS (val_tail)->car = *args++; | |
| 459 val_tail = XCONS (val_tail)->cdr; | |
| 460 } | |
| 461 return val; | |
| 462 } | |
| 463 | |
| 464 DEFUN ("make-list", Fmake_list, Smake_list, 2, 2, 0, | |
| 465 "Return a newly created list of length LENGTH, with each element being INIT.") | |
| 466 (length, init) | |
| 467 register Lisp_Object length, init; | |
| 468 { | |
| 469 register Lisp_Object val; | |
| 470 register int size; | |
| 471 | |
| 472 if (XTYPE (length) != Lisp_Int || XINT (length) < 0) | |
| 473 length = wrong_type_argument (Qnatnump, length); | |
| 474 size = XINT (length); | |
| 475 | |
| 476 val = Qnil; | |
| 477 while (size-- > 0) | |
| 478 val = Fcons (init, val); | |
| 479 return val; | |
| 480 } | |
| 481 | |
| 482 /* Allocation of vectors */ | |
| 483 | |
| 484 struct Lisp_Vector *all_vectors; | |
| 485 | |
| 486 DEFUN ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0, | |
| 487 "Return a newly created vector of length LENGTH, with each element being INIT.\n\ | |
| 488 See also the function `vector'.") | |
| 489 (length, init) | |
| 490 register Lisp_Object length, init; | |
| 491 { | |
| 492 register int sizei, index; | |
| 493 register Lisp_Object vector; | |
| 494 register struct Lisp_Vector *p; | |
| 495 | |
| 496 if (XTYPE (length) != Lisp_Int || XINT (length) < 0) | |
| 497 length = wrong_type_argument (Qnatnump, length); | |
| 498 sizei = XINT (length); | |
| 499 | |
| 500 p = (struct Lisp_Vector *) malloc (sizeof (struct Lisp_Vector) + (sizei - 1) * sizeof (Lisp_Object)); | |
| 501 if (p == 0) | |
| 502 memory_full (); | |
| 503 VALIDATE_LISP_STORAGE (p, 0); | |
| 504 | |
| 505 XSET (vector, Lisp_Vector, p); | |
| 506 consing_since_gc += sizeof (struct Lisp_Vector) + (sizei - 1) * sizeof (Lisp_Object); | |
| 507 | |
| 508 p->size = sizei; | |
| 509 p->next = all_vectors; | |
| 510 all_vectors = p; | |
| 511 | |
| 512 for (index = 0; index < sizei; index++) | |
| 513 p->contents[index] = init; | |
| 514 | |
| 515 return vector; | |
| 516 } | |
| 517 | |
| 518 DEFUN ("vector", Fvector, Svector, 0, MANY, 0, | |
| 519 "Return a newly created vector with specified arguments as elements.\n\ | |
| 520 Any number of arguments, even zero arguments, are allowed.") | |
| 521 (nargs, args) | |
| 522 register int nargs; | |
| 523 Lisp_Object *args; | |
| 524 { | |
| 525 register Lisp_Object len, val; | |
| 526 register int index; | |
| 527 register struct Lisp_Vector *p; | |
| 528 | |
| 529 XFASTINT (len) = nargs; | |
| 530 val = Fmake_vector (len, Qnil); | |
| 531 p = XVECTOR (val); | |
| 532 for (index = 0; index < nargs; index++) | |
| 533 p->contents[index] = args[index]; | |
| 534 return val; | |
| 535 } | |
| 536 | |
| 537 DEFUN ("make-byte-code", Fmake_byte_code, Smake_byte_code, 4, MANY, 0, | |
| 538 "Create a byte-code object with specified arguments as elements.\n\ | |
| 539 The arguments should be the arglist, bytecode-string, constant vector,\n\ | |
| 540 stack size, (optional) doc string, and (optional) interactive spec.\n\ | |
| 541 The first four arguments are required; at most six have any\n\ | |
| 542 significance.") | |
| 543 (nargs, args) | |
| 544 register int nargs; | |
| 545 Lisp_Object *args; | |
| 546 { | |
| 547 register Lisp_Object len, val; | |
| 548 register int index; | |
| 549 register struct Lisp_Vector *p; | |
| 550 | |
| 551 XFASTINT (len) = nargs; | |
| 485 | 552 if (!NILP (Vpurify_flag)) |
| 300 | 553 val = make_pure_vector (len); |
| 554 else | |
| 555 val = Fmake_vector (len, Qnil); | |
| 556 p = XVECTOR (val); | |
| 557 for (index = 0; index < nargs; index++) | |
| 558 { | |
| 485 | 559 if (!NILP (Vpurify_flag)) |
| 300 | 560 args[index] = Fpurecopy (args[index]); |
| 561 p->contents[index] = args[index]; | |
| 562 } | |
| 563 XSETTYPE (val, Lisp_Compiled); | |
| 564 return val; | |
| 565 } | |
| 566 | |
| 567 /* Allocation of symbols. | |
| 568 Just like allocation of conses! | |
| 569 | |
| 570 Each symbol_block is just under 1020 bytes long, | |
| 571 since malloc really allocates in units of powers of two | |
| 572 and uses 4 bytes for its own overhead. */ | |
| 573 | |
| 574 #define SYMBOL_BLOCK_SIZE \ | |
| 575 ((1020 - sizeof (struct symbol_block *)) / sizeof (struct Lisp_Symbol)) | |
| 576 | |
| 577 struct symbol_block | |
| 578 { | |
| 579 struct symbol_block *next; | |
| 580 struct Lisp_Symbol symbols[SYMBOL_BLOCK_SIZE]; | |
| 581 }; | |
| 582 | |
| 583 struct symbol_block *symbol_block; | |
| 584 int symbol_block_index; | |
| 585 | |
| 586 struct Lisp_Symbol *symbol_free_list; | |
| 587 | |
| 588 void | |
| 589 init_symbol () | |
| 590 { | |
| 591 symbol_block = (struct symbol_block *) malloc (sizeof (struct symbol_block)); | |
| 592 symbol_block->next = 0; | |
| 593 bzero (symbol_block->symbols, sizeof symbol_block->symbols); | |
| 594 symbol_block_index = 0; | |
| 595 symbol_free_list = 0; | |
| 596 } | |
| 597 | |
| 598 DEFUN ("make-symbol", Fmake_symbol, Smake_symbol, 1, 1, 0, | |
| 599 "Return a newly allocated uninterned symbol whose name is NAME.\n\ | |
| 600 Its value and function definition are void, and its property list is nil.") | |
| 601 (str) | |
| 602 Lisp_Object str; | |
| 603 { | |
| 604 register Lisp_Object val; | |
| 605 register struct Lisp_Symbol *p; | |
| 606 | |
| 607 CHECK_STRING (str, 0); | |
| 608 | |
| 609 if (symbol_free_list) | |
| 610 { | |
| 611 XSET (val, Lisp_Symbol, symbol_free_list); | |
| 612 symbol_free_list | |
| 613 = (struct Lisp_Symbol *) XFASTINT (symbol_free_list->value); | |
| 614 } | |
| 615 else | |
| 616 { | |
| 617 if (symbol_block_index == SYMBOL_BLOCK_SIZE) | |
| 618 { | |
| 619 struct symbol_block *new = (struct symbol_block *) malloc (sizeof (struct symbol_block)); | |
| 620 if (!new) memory_full (); | |
| 621 VALIDATE_LISP_STORAGE (new, sizeof *new); | |
| 622 new->next = symbol_block; | |
| 623 symbol_block = new; | |
| 624 symbol_block_index = 0; | |
| 625 } | |
| 626 XSET (val, Lisp_Symbol, &symbol_block->symbols[symbol_block_index++]); | |
| 627 } | |
| 628 p = XSYMBOL (val); | |
| 629 p->name = XSTRING (str); | |
| 630 p->plist = Qnil; | |
| 631 p->value = Qunbound; | |
| 632 p->function = Qunbound; | |
| 633 p->next = 0; | |
| 634 consing_since_gc += sizeof (struct Lisp_Symbol); | |
| 635 return val; | |
| 636 } | |
| 637 | |
| 638 /* Allocation of markers. | |
| 639 Works like allocation of conses. */ | |
| 640 | |
| 641 #define MARKER_BLOCK_SIZE \ | |
| 642 ((1020 - sizeof (struct marker_block *)) / sizeof (struct Lisp_Marker)) | |
| 643 | |
| 644 struct marker_block | |
| 645 { | |
| 646 struct marker_block *next; | |
| 647 struct Lisp_Marker markers[MARKER_BLOCK_SIZE]; | |
| 648 }; | |
| 649 | |
| 650 struct marker_block *marker_block; | |
| 651 int marker_block_index; | |
| 652 | |
| 653 struct Lisp_Marker *marker_free_list; | |
| 654 | |
| 655 void | |
| 656 init_marker () | |
| 657 { | |
| 658 marker_block = (struct marker_block *) malloc (sizeof (struct marker_block)); | |
| 659 marker_block->next = 0; | |
| 660 bzero (marker_block->markers, sizeof marker_block->markers); | |
| 661 marker_block_index = 0; | |
| 662 marker_free_list = 0; | |
| 663 } | |
| 664 | |
| 665 DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0, | |
| 666 "Return a newly allocated marker which does not point at any place.") | |
| 667 () | |
| 668 { | |
| 669 register Lisp_Object val; | |
| 670 register struct Lisp_Marker *p; | |
| 638 | 671 |
| 300 | 672 if (marker_free_list) |
| 673 { | |
| 674 XSET (val, Lisp_Marker, marker_free_list); | |
| 675 marker_free_list | |
| 676 = (struct Lisp_Marker *) XFASTINT (marker_free_list->chain); | |
| 677 } | |
| 678 else | |
| 679 { | |
| 680 if (marker_block_index == MARKER_BLOCK_SIZE) | |
| 681 { | |
| 682 struct marker_block *new = (struct marker_block *) malloc (sizeof (struct marker_block)); | |
| 683 if (!new) memory_full (); | |
| 684 VALIDATE_LISP_STORAGE (new, sizeof *new); | |
| 685 new->next = marker_block; | |
| 686 marker_block = new; | |
| 687 marker_block_index = 0; | |
| 688 } | |
| 689 XSET (val, Lisp_Marker, &marker_block->markers[marker_block_index++]); | |
| 690 } | |
| 691 p = XMARKER (val); | |
| 692 p->buffer = 0; | |
| 693 p->bufpos = 0; | |
| 694 p->chain = Qnil; | |
| 695 consing_since_gc += sizeof (struct Lisp_Marker); | |
| 696 return val; | |
| 697 } | |
| 698 | |
| 699 /* Allocation of strings */ | |
| 700 | |
| 701 /* Strings reside inside of string_blocks. The entire data of the string, | |
| 702 both the size and the contents, live in part of the `chars' component of a string_block. | |
| 703 The `pos' component is the index within `chars' of the first free byte. | |
| 704 | |
| 705 first_string_block points to the first string_block ever allocated. | |
| 706 Each block points to the next one with its `next' field. | |
| 707 The `prev' fields chain in reverse order. | |
| 708 The last one allocated is the one currently being filled. | |
| 709 current_string_block points to it. | |
| 710 | |
| 711 The string_blocks that hold individual large strings | |
| 712 go in a separate chain, started by large_string_blocks. */ | |
| 713 | |
| 714 | |
| 715 /* String blocks contain this many useful bytes. | |
| 716 8188 is power of 2, minus 4 for malloc overhead. */ | |
| 717 #define STRING_BLOCK_SIZE (8188 - sizeof (struct string_block_head)) | |
| 718 | |
| 719 /* A string bigger than this gets its own specially-made string block | |
| 720 if it doesn't fit in the current one. */ | |
| 721 #define STRING_BLOCK_OUTSIZE 1024 | |
| 722 | |
| 723 struct string_block_head | |
| 724 { | |
| 725 struct string_block *next, *prev; | |
| 726 int pos; | |
| 727 }; | |
| 728 | |
| 729 struct string_block | |
| 730 { | |
| 731 struct string_block *next, *prev; | |
| 732 int pos; | |
| 733 char chars[STRING_BLOCK_SIZE]; | |
| 734 }; | |
| 735 | |
| 736 /* This points to the string block we are now allocating strings. */ | |
| 737 | |
| 738 struct string_block *current_string_block; | |
| 739 | |
| 740 /* This points to the oldest string block, the one that starts the chain. */ | |
| 741 | |
| 742 struct string_block *first_string_block; | |
| 743 | |
| 744 /* Last string block in chain of those made for individual large strings. */ | |
| 745 | |
| 746 struct string_block *large_string_blocks; | |
| 747 | |
| 748 /* If SIZE is the length of a string, this returns how many bytes | |
| 749 the string occupies in a string_block (including padding). */ | |
| 750 | |
| 751 #define STRING_FULLSIZE(size) (((size) + sizeof (struct Lisp_String) + PAD) \ | |
| 752 & ~(PAD - 1)) | |
| 753 #define PAD (sizeof (int)) | |
| 754 | |
| 755 #if 0 | |
| 756 #define STRING_FULLSIZE(SIZE) \ | |
| 757 (((SIZE) + 2 * sizeof (int)) & ~(sizeof (int) - 1)) | |
| 758 #endif | |
| 759 | |
| 760 void | |
| 761 init_strings () | |
| 762 { | |
| 763 current_string_block = (struct string_block *) malloc (sizeof (struct string_block)); | |
| 764 first_string_block = current_string_block; | |
| 765 consing_since_gc += sizeof (struct string_block); | |
| 766 current_string_block->next = 0; | |
| 767 current_string_block->prev = 0; | |
| 768 current_string_block->pos = 0; | |
| 769 large_string_blocks = 0; | |
| 770 } | |
| 771 | |
| 772 DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0, | |
| 773 "Return a newly created string of length LENGTH, with each element being INIT.\n\ | |
| 774 Both LENGTH and INIT must be numbers.") | |
| 775 (length, init) | |
| 776 Lisp_Object length, init; | |
| 777 { | |
| 778 register Lisp_Object val; | |
| 779 register unsigned char *p, *end, c; | |
| 780 | |
| 781 if (XTYPE (length) != Lisp_Int || XINT (length) < 0) | |
| 782 length = wrong_type_argument (Qnatnump, length); | |
| 783 CHECK_NUMBER (init, 1); | |
| 784 val = make_uninit_string (XINT (length)); | |
| 785 c = XINT (init); | |
| 786 p = XSTRING (val)->data; | |
| 787 end = p + XSTRING (val)->size; | |
| 788 while (p != end) | |
| 789 *p++ = c; | |
| 790 *p = 0; | |
| 791 return val; | |
| 792 } | |
| 793 | |
| 794 Lisp_Object | |
| 795 make_string (contents, length) | |
| 796 char *contents; | |
| 797 int length; | |
| 798 { | |
| 799 register Lisp_Object val; | |
| 800 val = make_uninit_string (length); | |
| 801 bcopy (contents, XSTRING (val)->data, length); | |
| 802 return val; | |
| 803 } | |
| 804 | |
| 805 Lisp_Object | |
| 806 build_string (str) | |
| 807 char *str; | |
| 808 { | |
| 809 return make_string (str, strlen (str)); | |
| 810 } | |
| 811 | |
| 812 Lisp_Object | |
| 813 make_uninit_string (length) | |
| 814 int length; | |
| 815 { | |
| 816 register Lisp_Object val; | |
| 817 register int fullsize = STRING_FULLSIZE (length); | |
| 818 | |
| 819 if (length < 0) abort (); | |
| 820 | |
| 821 if (fullsize <= STRING_BLOCK_SIZE - current_string_block->pos) | |
| 822 /* This string can fit in the current string block */ | |
| 823 { | |
| 824 XSET (val, Lisp_String, | |
| 825 (struct Lisp_String *) (current_string_block->chars + current_string_block->pos)); | |
| 826 current_string_block->pos += fullsize; | |
| 827 } | |
| 828 else if (fullsize > STRING_BLOCK_OUTSIZE) | |
| 829 /* This string gets its own string block */ | |
| 830 { | |
| 831 register struct string_block *new | |
| 832 = (struct string_block *) malloc (sizeof (struct string_block_head) + fullsize); | |
| 833 VALIDATE_LISP_STORAGE (new, 0); | |
| 834 if (!new) memory_full (); | |
| 835 consing_since_gc += sizeof (struct string_block_head) + fullsize; | |
| 836 new->pos = fullsize; | |
| 837 new->next = large_string_blocks; | |
| 838 large_string_blocks = new; | |
| 839 XSET (val, Lisp_String, | |
| 840 (struct Lisp_String *) ((struct string_block_head *)new + 1)); | |
| 841 } | |
| 842 else | |
| 843 /* Make a new current string block and start it off with this string */ | |
| 844 { | |
| 845 register struct string_block *new | |
| 846 = (struct string_block *) malloc (sizeof (struct string_block)); | |
| 847 if (!new) memory_full (); | |
| 848 VALIDATE_LISP_STORAGE (new, sizeof *new); | |
| 849 consing_since_gc += sizeof (struct string_block); | |
| 850 current_string_block->next = new; | |
| 851 new->prev = current_string_block; | |
| 852 new->next = 0; | |
| 853 current_string_block = new; | |
| 854 new->pos = fullsize; | |
| 855 XSET (val, Lisp_String, | |
| 856 (struct Lisp_String *) current_string_block->chars); | |
| 857 } | |
| 858 | |
| 859 XSTRING (val)->size = length; | |
| 860 XSTRING (val)->data[length] = 0; | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
861 INITIALIZE_INTERVAL (XSTRING (val), NULL_INTERVAL); |
| 300 | 862 |
| 863 return val; | |
| 864 } | |
| 865 | |
| 866 /* Return a newly created vector or string with specified arguments as | |
| 867 elements. If all the arguments are characters, make a string; | |
| 868 otherwise, make a vector. Any number of arguments, even zero | |
| 869 arguments, are allowed. */ | |
| 870 | |
| 871 Lisp_Object | |
| 434 | 872 make_array (nargs, args) |
| 300 | 873 register int nargs; |
| 874 Lisp_Object *args; | |
| 875 { | |
| 876 int i; | |
| 877 | |
| 878 for (i = 0; i < nargs; i++) | |
| 879 if (XTYPE (args[i]) != Lisp_Int | |
| 880 || (unsigned) XINT (args[i]) >= 0400) | |
| 881 return Fvector (nargs, args); | |
| 882 | |
| 883 /* Since the loop exited, we know that all the things in it are | |
| 884 characters, so we can make a string. */ | |
| 885 { | |
| 886 Lisp_Object result = Fmake_string (nargs, make_number (0)); | |
| 887 | |
| 888 for (i = 0; i < nargs; i++) | |
| 889 XSTRING (result)->data[i] = XINT (args[i]); | |
| 890 | |
| 891 return result; | |
| 892 } | |
| 893 } | |
| 894 | |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
895 /* Allocation of ropes. */ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
896 |
| 300 | 897 /* Note: the user cannot manipulate ropes portably by referring |
| 898 to the chars of the string, because combining two chars to make a GLYPH | |
| 899 depends on endianness. */ | |
| 900 | |
| 901 DEFUN ("make-rope", Fmake_rope, Smake_rope, 0, MANY, 0, | |
| 363 | 902 "Return a newly created rope containing the arguments of this function.\n\ |
| 300 | 903 A rope is a string, except that its contents will be treated as an\n\ |
| 904 array of glyphs, where a glyph is an integer type that may be larger\n\ | |
| 905 than a character. Emacs is normally configured to use 8-bit glyphs,\n\ | |
| 906 so ropes are normally no different from strings. But Emacs may be\n\ | |
| 907 configured to use 16-bit glyphs, to allow the use of larger fonts.\n\ | |
| 908 \n\ | |
| 909 Each argument (which must be an integer) specifies one glyph, whatever\n\ | |
| 910 size glyphs may be.\n\ | |
| 911 \n\ | |
| 912 See variable `buffer-display-table' for the uses of ropes.") | |
| 913 (nargs, args) | |
| 914 register int nargs; | |
| 915 Lisp_Object *args; | |
| 916 { | |
| 917 register int i; | |
| 918 register Lisp_Object val; | |
| 919 register GLYPH *p; | |
| 920 | |
| 921 val = make_uninit_string (nargs * sizeof (GLYPH)); | |
| 922 | |
| 923 p = (GLYPH *) XSTRING (val)->data; | |
| 924 for (i = 0; i < nargs; i++) | |
| 925 { | |
| 926 CHECK_NUMBER (args[i], i); | |
| 927 p[i] = XFASTINT (args[i]); | |
| 928 } | |
| 929 return val; | |
| 930 } | |
| 931 | |
| 932 DEFUN ("rope-elt", Frope_elt, Srope_elt, 2, 2, 0, | |
| 933 "Return an element of rope R at index N.\n\ | |
| 934 A rope is a string in which each pair of bytes is considered an element.\n\ | |
| 935 See variable `buffer-display-table' for the uses of ropes.") | |
| 936 (r, n) | |
|
1500
6489d5182a64
* alloc.c (Frope_elt): Declare arguments to be Lisp_Objects.
Jim Blandy <jimb@redhat.com>
parents:
1411
diff
changeset
|
937 Lisp_Object r, n; |
| 300 | 938 { |
| 939 CHECK_STRING (r, 0); | |
| 940 CHECK_NUMBER (n, 1); | |
| 941 if ((XSTRING (r)->size / sizeof (GLYPH)) <= XINT (n) || XINT (n) < 0) | |
| 942 args_out_of_range (r, n); | |
| 943 return ((GLYPH *) XSTRING (r)->data)[XFASTINT (n)]; | |
| 944 } | |
| 945 | |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
946 /* Pure storage management. */ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
947 |
| 300 | 948 /* Must get an error if pure storage is full, |
| 949 since if it cannot hold a large string | |
| 950 it may be able to hold conses that point to that string; | |
| 951 then the string is not protected from gc. */ | |
| 952 | |
| 953 Lisp_Object | |
| 954 make_pure_string (data, length) | |
| 955 char *data; | |
| 956 int length; | |
| 957 { | |
| 958 register Lisp_Object new; | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
959 register int size = sizeof (int) + INTERVAL_PTR_SIZE + length + 1; |
| 300 | 960 |
| 961 if (pureptr + size > PURESIZE) | |
| 962 error ("Pure Lisp storage exhausted"); | |
| 963 XSET (new, Lisp_String, PUREBEG + pureptr); | |
| 964 XSTRING (new)->size = length; | |
| 965 bcopy (data, XSTRING (new)->data, length); | |
| 966 XSTRING (new)->data[length] = 0; | |
| 967 pureptr += (size + sizeof (int) - 1) | |
| 968 / sizeof (int) * sizeof (int); | |
| 969 return new; | |
| 970 } | |
| 971 | |
| 972 Lisp_Object | |
| 973 pure_cons (car, cdr) | |
| 974 Lisp_Object car, cdr; | |
| 975 { | |
| 976 register Lisp_Object new; | |
| 977 | |
| 978 if (pureptr + sizeof (struct Lisp_Cons) > PURESIZE) | |
| 979 error ("Pure Lisp storage exhausted"); | |
| 980 XSET (new, Lisp_Cons, PUREBEG + pureptr); | |
| 981 pureptr += sizeof (struct Lisp_Cons); | |
| 982 XCONS (new)->car = Fpurecopy (car); | |
| 983 XCONS (new)->cdr = Fpurecopy (cdr); | |
| 984 return new; | |
| 985 } | |
| 986 | |
| 987 #ifdef LISP_FLOAT_TYPE | |
| 988 | |
| 989 Lisp_Object | |
| 990 make_pure_float (num) | |
| 991 double num; | |
| 992 { | |
| 993 register Lisp_Object new; | |
| 994 | |
|
1939
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
995 /* Make sure that PUREBEG + pureptr is aligned on at least a sizeof |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
996 (double) boundary. Some architectures (like the sparc) require |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
997 this, and I suspect that floats are rare enough that it's no |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
998 tragedy for those that do. */ |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
999 { |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1000 int alignment; |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1001 char *p = PUREBEG + pureptr; |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1002 |
|
1936
82bbf90208d4
* alloc.c (make_pure_float): Align pureptr according to __alignof,
Jim Blandy <jimb@redhat.com>
parents:
1908
diff
changeset
|
1003 #ifdef __GNUC__ |
|
82bbf90208d4
* alloc.c (make_pure_float): Align pureptr according to __alignof,
Jim Blandy <jimb@redhat.com>
parents:
1908
diff
changeset
|
1004 #if __GNUC__ >= 2 |
|
1939
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1005 alignment = __alignof (struct Lisp_Float); |
|
1936
82bbf90208d4
* alloc.c (make_pure_float): Align pureptr according to __alignof,
Jim Blandy <jimb@redhat.com>
parents:
1908
diff
changeset
|
1006 #else |
|
1939
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1007 alignment = sizeof (struct Lisp_Float); |
|
1936
82bbf90208d4
* alloc.c (make_pure_float): Align pureptr according to __alignof,
Jim Blandy <jimb@redhat.com>
parents:
1908
diff
changeset
|
1008 #endif |
|
82bbf90208d4
* alloc.c (make_pure_float): Align pureptr according to __alignof,
Jim Blandy <jimb@redhat.com>
parents:
1908
diff
changeset
|
1009 #else |
|
1939
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1010 alignment = sizeof (struct Lisp_Float); |
|
1936
82bbf90208d4
* alloc.c (make_pure_float): Align pureptr according to __alignof,
Jim Blandy <jimb@redhat.com>
parents:
1908
diff
changeset
|
1011 #endif |
|
1939
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1012 p = (char *) (((unsigned long) p + alignment - 1) & - alignment); |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1013 pureptr = p - PUREBEG; |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1014 } |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1015 |
| 300 | 1016 if (pureptr + sizeof (struct Lisp_Float) > PURESIZE) |
| 1017 error ("Pure Lisp storage exhausted"); | |
| 1018 XSET (new, Lisp_Float, PUREBEG + pureptr); | |
| 1019 pureptr += sizeof (struct Lisp_Float); | |
| 1020 XFLOAT (new)->data = num; | |
| 1021 XFLOAT (new)->type = 0; /* bug chasing -wsr */ | |
| 1022 return new; | |
| 1023 } | |
| 1024 | |
| 1025 #endif /* LISP_FLOAT_TYPE */ | |
| 1026 | |
| 1027 Lisp_Object | |
| 1028 make_pure_vector (len) | |
| 1029 int len; | |
| 1030 { | |
| 1031 register Lisp_Object new; | |
| 1032 register int size = sizeof (struct Lisp_Vector) + (len - 1) * sizeof (Lisp_Object); | |
| 1033 | |
| 1034 if (pureptr + size > PURESIZE) | |
| 1035 error ("Pure Lisp storage exhausted"); | |
| 1036 | |
| 1037 XSET (new, Lisp_Vector, PUREBEG + pureptr); | |
| 1038 pureptr += size; | |
| 1039 XVECTOR (new)->size = len; | |
| 1040 return new; | |
| 1041 } | |
| 1042 | |
| 1043 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0, | |
| 1044 "Make a copy of OBJECT in pure storage.\n\ | |
| 1045 Recursively copies contents of vectors and cons cells.\n\ | |
| 1046 Does not copy symbols.") | |
| 1047 (obj) | |
| 1048 register Lisp_Object obj; | |
| 1049 { | |
| 1050 register Lisp_Object new, tem; | |
| 1051 register int i; | |
| 1052 | |
| 485 | 1053 if (NILP (Vpurify_flag)) |
| 300 | 1054 return obj; |
| 1055 | |
| 1056 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE) | |
| 1057 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure) | |
| 1058 return obj; | |
| 1059 | |
| 1060 #ifdef SWITCH_ENUM_BUG | |
| 1061 switch ((int) XTYPE (obj)) | |
| 1062 #else | |
| 1063 switch (XTYPE (obj)) | |
| 1064 #endif | |
| 1065 { | |
| 1066 case Lisp_Marker: | |
| 1067 error ("Attempt to copy a marker to pure storage"); | |
| 1068 | |
| 1069 case Lisp_Cons: | |
| 1070 return pure_cons (XCONS (obj)->car, XCONS (obj)->cdr); | |
| 1071 | |
| 1072 #ifdef LISP_FLOAT_TYPE | |
| 1073 case Lisp_Float: | |
| 1074 return make_pure_float (XFLOAT (obj)->data); | |
| 1075 #endif /* LISP_FLOAT_TYPE */ | |
| 1076 | |
| 1077 case Lisp_String: | |
| 1078 return make_pure_string (XSTRING (obj)->data, XSTRING (obj)->size); | |
| 1079 | |
| 1080 case Lisp_Compiled: | |
| 1081 case Lisp_Vector: | |
| 1082 new = make_pure_vector (XVECTOR (obj)->size); | |
| 1083 for (i = 0; i < XVECTOR (obj)->size; i++) | |
| 1084 { | |
| 1085 tem = XVECTOR (obj)->contents[i]; | |
| 1086 XVECTOR (new)->contents[i] = Fpurecopy (tem); | |
| 1087 } | |
| 1088 XSETTYPE (new, XTYPE (obj)); | |
| 1089 return new; | |
| 1090 | |
| 1091 default: | |
| 1092 return obj; | |
| 1093 } | |
| 1094 } | |
| 1095 | |
| 1096 /* Recording what needs to be marked for gc. */ | |
| 1097 | |
| 1098 struct gcpro *gcprolist; | |
| 1099 | |
| 727 | 1100 #define NSTATICS 512 |
| 300 | 1101 |
| 1102 Lisp_Object *staticvec[NSTATICS] = {0}; | |
| 1103 | |
| 1104 int staticidx = 0; | |
| 1105 | |
| 1106 /* Put an entry in staticvec, pointing at the variable whose address is given */ | |
| 1107 | |
| 1108 void | |
| 1109 staticpro (varaddress) | |
| 1110 Lisp_Object *varaddress; | |
| 1111 { | |
| 1112 staticvec[staticidx++] = varaddress; | |
| 1113 if (staticidx >= NSTATICS) | |
| 1114 abort (); | |
| 1115 } | |
| 1116 | |
| 1117 struct catchtag | |
| 1118 { | |
| 1119 Lisp_Object tag; | |
| 1120 Lisp_Object val; | |
| 1121 struct catchtag *next; | |
| 1122 /* jmp_buf jmp; /* We don't need this for GC purposes */ | |
| 1123 }; | |
| 1124 | |
| 1125 struct backtrace | |
| 1126 { | |
| 1127 struct backtrace *next; | |
| 1128 Lisp_Object *function; | |
| 1129 Lisp_Object *args; /* Points to vector of args. */ | |
| 1130 int nargs; /* length of vector */ | |
| 1131 /* if nargs is UNEVALLED, args points to slot holding list of unevalled args */ | |
| 1132 char evalargs; | |
| 1133 }; | |
| 1134 | |
| 1135 /* Two flags that are set during GC in the `size' component | |
| 1136 of a string or vector. On some machines, these flags | |
| 1137 are defined by the m- file to be different bits. */ | |
| 1138 | |
| 1139 /* On vector, means it has been marked. | |
| 1140 On string size field or a reference to a string, | |
| 1141 means not the last reference in the chain. */ | |
| 1142 | |
| 1143 #ifndef ARRAY_MARK_FLAG | |
| 1144 #define ARRAY_MARK_FLAG ((MARKBIT >> 1) & ~MARKBIT) | |
| 1145 #endif /* no ARRAY_MARK_FLAG */ | |
| 1146 | |
| 1147 /* Any slot that is a Lisp_Object can point to a string | |
| 1148 and thus can be put on a string's reference-chain | |
| 1149 and thus may need to have its ARRAY_MARK_FLAG set. | |
| 1150 This includes the slots whose markbits are used to mark | |
| 1151 the containing objects. */ | |
| 1152 | |
| 1153 #if ARRAY_MARK_FLAG == MARKBIT | |
| 1154 you lose | |
| 1155 #endif | |
| 1156 | |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1157 /* Garbage collection! */ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1158 |
| 300 | 1159 int total_conses, total_markers, total_symbols, total_string_size, total_vector_size; |
| 1160 int total_free_conses, total_free_markers, total_free_symbols; | |
| 1161 #ifdef LISP_FLOAT_TYPE | |
| 1162 int total_free_floats, total_floats; | |
| 1163 #endif /* LISP_FLOAT_TYPE */ | |
| 1164 | |
| 1165 DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "", | |
| 1166 "Reclaim storage for Lisp objects no longer needed.\n\ | |
| 1167 Returns info on amount of space in use:\n\ | |
| 1168 ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)\n\ | |
| 1169 (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS\n\ | |
| 1170 (USED-FLOATS . FREE-FLOATS))\n\ | |
| 1171 Garbage collection happens automatically if you cons more than\n\ | |
| 1172 `gc-cons-threshold' bytes of Lisp data since previous garbage collection.") | |
| 1173 () | |
| 1174 { | |
| 1175 register struct gcpro *tail; | |
| 1176 register struct specbinding *bind; | |
| 1177 struct catchtag *catch; | |
| 1178 struct handler *handler; | |
| 1179 register struct backtrace *backlist; | |
| 1180 register Lisp_Object tem; | |
| 1181 char *omessage = echo_area_glyphs; | |
| 1182 char stack_top_variable; | |
| 1183 register int i; | |
| 1184 | |
| 1185 /* Save a copy of the contents of the stack, for debugging. */ | |
| 1186 #if MAX_SAVE_STACK > 0 | |
| 485 | 1187 if (NILP (Vpurify_flag)) |
| 300 | 1188 { |
| 1189 i = &stack_top_variable - stack_bottom; | |
| 1190 if (i < 0) i = -i; | |
| 1191 if (i < MAX_SAVE_STACK) | |
| 1192 { | |
| 1193 if (stack_copy == 0) | |
| 1194 stack_copy = (char *) malloc (stack_copy_size = i); | |
| 1195 else if (stack_copy_size < i) | |
| 1196 stack_copy = (char *) realloc (stack_copy, (stack_copy_size = i)); | |
| 1197 if (stack_copy) | |
| 1198 { | |
| 1199 if ((int) (&stack_top_variable - stack_bottom) > 0) | |
| 1200 bcopy (stack_bottom, stack_copy, i); | |
| 1201 else | |
| 1202 bcopy (&stack_top_variable, stack_copy, i); | |
| 1203 } | |
| 1204 } | |
| 1205 } | |
| 1206 #endif /* MAX_SAVE_STACK > 0 */ | |
| 1207 | |
| 1208 if (!noninteractive) | |
| 1209 message1 ("Garbage collecting..."); | |
| 1210 | |
| 1211 /* Don't keep command history around forever */ | |
| 1212 tem = Fnthcdr (make_number (30), Vcommand_history); | |
| 1213 if (CONSP (tem)) | |
| 1214 XCONS (tem)->cdr = Qnil; | |
| 648 | 1215 |
| 300 | 1216 /* Likewise for undo information. */ |
| 1217 { | |
| 1218 register struct buffer *nextb = all_buffers; | |
| 1219 | |
| 1220 while (nextb) | |
| 1221 { | |
| 648 | 1222 /* If a buffer's undo list is Qt, that means that undo is |
| 1223 turned off in that buffer. Calling truncate_undo_list on | |
| 1224 Qt tends to return NULL, which effectively turns undo back on. | |
| 1225 So don't call truncate_undo_list if undo_list is Qt. */ | |
| 1226 if (! EQ (nextb->undo_list, Qt)) | |
| 1227 nextb->undo_list | |
| 764 | 1228 = truncate_undo_list (nextb->undo_list, undo_limit, |
| 1229 undo_strong_limit); | |
| 300 | 1230 nextb = nextb->next; |
| 1231 } | |
| 1232 } | |
| 1233 | |
| 1234 gc_in_progress = 1; | |
| 1235 | |
| 1236 /* clear_marks (); */ | |
| 1237 | |
| 1238 /* In each "large string", set the MARKBIT of the size field. | |
| 1239 That enables mark_object to recognize them. */ | |
| 1240 { | |
| 1241 register struct string_block *b; | |
| 1242 for (b = large_string_blocks; b; b = b->next) | |
| 1243 ((struct Lisp_String *)(&b->chars[0]))->size |= MARKBIT; | |
| 1244 } | |
| 1245 | |
| 1246 /* Mark all the special slots that serve as the roots of accessibility. | |
| 1247 | |
| 1248 Usually the special slots to mark are contained in particular structures. | |
| 1249 Then we know no slot is marked twice because the structures don't overlap. | |
| 1250 In some cases, the structures point to the slots to be marked. | |
| 1251 For these, we use MARKBIT to avoid double marking of the slot. */ | |
| 1252 | |
| 1253 for (i = 0; i < staticidx; i++) | |
| 1254 mark_object (staticvec[i]); | |
| 1255 for (tail = gcprolist; tail; tail = tail->next) | |
| 1256 for (i = 0; i < tail->nvars; i++) | |
| 1257 if (!XMARKBIT (tail->var[i])) | |
| 1258 { | |
| 1259 mark_object (&tail->var[i]); | |
| 1260 XMARK (tail->var[i]); | |
| 1261 } | |
| 1262 for (bind = specpdl; bind != specpdl_ptr; bind++) | |
| 1263 { | |
| 1264 mark_object (&bind->symbol); | |
| 1265 mark_object (&bind->old_value); | |
| 1266 } | |
| 1267 for (catch = catchlist; catch; catch = catch->next) | |
| 1268 { | |
| 1269 mark_object (&catch->tag); | |
| 1270 mark_object (&catch->val); | |
| 1271 } | |
| 1272 for (handler = handlerlist; handler; handler = handler->next) | |
| 1273 { | |
| 1274 mark_object (&handler->handler); | |
| 1275 mark_object (&handler->var); | |
| 1276 } | |
| 1277 for (backlist = backtrace_list; backlist; backlist = backlist->next) | |
| 1278 { | |
| 1279 if (!XMARKBIT (*backlist->function)) | |
| 1280 { | |
| 1281 mark_object (backlist->function); | |
| 1282 XMARK (*backlist->function); | |
| 1283 } | |
| 1284 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY) | |
| 1285 i = 0; | |
| 1286 else | |
| 1287 i = backlist->nargs - 1; | |
| 1288 for (; i >= 0; i--) | |
| 1289 if (!XMARKBIT (backlist->args[i])) | |
| 1290 { | |
| 1291 mark_object (&backlist->args[i]); | |
| 1292 XMARK (backlist->args[i]); | |
| 1293 } | |
| 1294 } | |
| 1295 | |
| 1296 gc_sweep (); | |
| 1297 | |
| 1298 /* Clear the mark bits that we set in certain root slots. */ | |
| 1299 | |
| 1300 for (tail = gcprolist; tail; tail = tail->next) | |
| 1301 for (i = 0; i < tail->nvars; i++) | |
| 1302 XUNMARK (tail->var[i]); | |
| 1303 for (backlist = backtrace_list; backlist; backlist = backlist->next) | |
| 1304 { | |
| 1305 XUNMARK (*backlist->function); | |
| 1306 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY) | |
| 1307 i = 0; | |
| 1308 else | |
| 1309 i = backlist->nargs - 1; | |
| 1310 for (; i >= 0; i--) | |
| 1311 XUNMARK (backlist->args[i]); | |
| 1312 } | |
| 1313 XUNMARK (buffer_defaults.name); | |
| 1314 XUNMARK (buffer_local_symbols.name); | |
| 1315 | |
| 1316 /* clear_marks (); */ | |
| 1317 gc_in_progress = 0; | |
| 1318 | |
| 1319 consing_since_gc = 0; | |
| 1320 if (gc_cons_threshold < 10000) | |
| 1321 gc_cons_threshold = 10000; | |
| 1322 | |
| 1323 if (omessage) | |
| 1324 message1 (omessage); | |
| 1325 else if (!noninteractive) | |
| 1326 message1 ("Garbage collecting...done"); | |
| 1327 | |
| 1328 return Fcons (Fcons (make_number (total_conses), | |
| 1329 make_number (total_free_conses)), | |
| 1330 Fcons (Fcons (make_number (total_symbols), | |
| 1331 make_number (total_free_symbols)), | |
| 1332 Fcons (Fcons (make_number (total_markers), | |
| 1333 make_number (total_free_markers)), | |
| 1334 Fcons (make_number (total_string_size), | |
| 1335 Fcons (make_number (total_vector_size), | |
| 1336 | |
| 1337 #ifdef LISP_FLOAT_TYPE | |
| 1338 Fcons (Fcons (make_number (total_floats), | |
| 1339 make_number (total_free_floats)), | |
| 1340 Qnil) | |
| 1341 #else /* not LISP_FLOAT_TYPE */ | |
| 1342 Qnil | |
| 1343 #endif /* not LISP_FLOAT_TYPE */ | |
| 1344 ))))); | |
| 1345 } | |
| 1346 | |
| 1347 #if 0 | |
| 1348 static void | |
| 1349 clear_marks () | |
| 1350 { | |
| 1351 /* Clear marks on all conses */ | |
| 1352 { | |
| 1353 register struct cons_block *cblk; | |
| 1354 register int lim = cons_block_index; | |
| 1355 | |
| 1356 for (cblk = cons_block; cblk; cblk = cblk->next) | |
| 1357 { | |
| 1358 register int i; | |
| 1359 for (i = 0; i < lim; i++) | |
| 1360 XUNMARK (cblk->conses[i].car); | |
| 1361 lim = CONS_BLOCK_SIZE; | |
| 1362 } | |
| 1363 } | |
| 1364 /* Clear marks on all symbols */ | |
| 1365 { | |
| 1366 register struct symbol_block *sblk; | |
| 1367 register int lim = symbol_block_index; | |
| 1368 | |
| 1369 for (sblk = symbol_block; sblk; sblk = sblk->next) | |
| 1370 { | |
| 1371 register int i; | |
| 1372 for (i = 0; i < lim; i++) | |
| 1373 { | |
| 1374 XUNMARK (sblk->symbols[i].plist); | |
| 1375 } | |
| 1376 lim = SYMBOL_BLOCK_SIZE; | |
| 1377 } | |
| 1378 } | |
| 1379 /* Clear marks on all markers */ | |
| 1380 { | |
| 1381 register struct marker_block *sblk; | |
| 1382 register int lim = marker_block_index; | |
| 1383 | |
| 1384 for (sblk = marker_block; sblk; sblk = sblk->next) | |
| 1385 { | |
| 1386 register int i; | |
| 1387 for (i = 0; i < lim; i++) | |
| 1388 XUNMARK (sblk->markers[i].chain); | |
| 1389 lim = MARKER_BLOCK_SIZE; | |
| 1390 } | |
| 1391 } | |
| 1392 /* Clear mark bits on all buffers */ | |
| 1393 { | |
| 1394 register struct buffer *nextb = all_buffers; | |
| 1395 | |
| 1396 while (nextb) | |
| 1397 { | |
| 1398 XUNMARK (nextb->name); | |
| 1399 nextb = nextb->next; | |
| 1400 } | |
| 1401 } | |
| 1402 } | |
| 1403 #endif | |
| 1404 | |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1405 /* Mark reference to a Lisp_Object. |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1406 If the object referred to has not been seen yet, recursively mark |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1407 all the references contained in it. |
| 300 | 1408 |
| 1409 If the object referenced is a short string, the referrencing slot | |
| 1410 is threaded into a chain of such slots, pointed to from | |
| 1411 the `size' field of the string. The actual string size | |
| 1412 lives in the last slot in the chain. We recognize the end | |
| 1413 because it is < (unsigned) STRING_BLOCK_SIZE. */ | |
| 1414 | |
|
1168
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1415 #define LAST_MARKED_SIZE 500 |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1416 Lisp_Object *last_marked[LAST_MARKED_SIZE]; |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1417 int last_marked_index; |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1418 |
| 300 | 1419 static void |
| 1420 mark_object (objptr) | |
| 1421 Lisp_Object *objptr; | |
| 1422 { | |
| 1423 register Lisp_Object obj; | |
| 1424 | |
| 1425 obj = *objptr; | |
| 1426 XUNMARK (obj); | |
| 1427 | |
| 1428 loop: | |
| 1429 | |
| 1430 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE) | |
| 1431 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure) | |
| 1432 return; | |
| 1433 | |
|
1168
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1434 last_marked[last_marked_index++] = objptr; |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1435 if (last_marked_index == LAST_MARKED_SIZE) |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1436 last_marked_index = 0; |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1437 |
| 300 | 1438 #ifdef SWITCH_ENUM_BUG |
| 1439 switch ((int) XGCTYPE (obj)) | |
| 1440 #else | |
| 1441 switch (XGCTYPE (obj)) | |
| 1442 #endif | |
| 1443 { | |
| 1444 case Lisp_String: | |
| 1445 { | |
| 1446 register struct Lisp_String *ptr = XSTRING (obj); | |
| 1447 | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1448 MARK_INTERVAL_TREE (ptr->intervals); |
| 300 | 1449 if (ptr->size & MARKBIT) |
| 1450 /* A large string. Just set ARRAY_MARK_FLAG. */ | |
| 1451 ptr->size |= ARRAY_MARK_FLAG; | |
| 1452 else | |
| 1453 { | |
| 1454 /* A small string. Put this reference | |
| 1455 into the chain of references to it. | |
| 1456 The address OBJPTR is even, so if the address | |
| 1457 includes MARKBIT, put it in the low bit | |
| 1458 when we store OBJPTR into the size field. */ | |
| 1459 | |
| 1460 if (XMARKBIT (*objptr)) | |
| 1461 { | |
| 1462 XFASTINT (*objptr) = ptr->size; | |
| 1463 XMARK (*objptr); | |
| 1464 } | |
| 1465 else | |
| 1466 XFASTINT (*objptr) = ptr->size; | |
| 1467 if ((int)objptr & 1) abort (); | |
| 1468 ptr->size = (int) objptr & ~MARKBIT; | |
| 1469 if ((int) objptr & MARKBIT) | |
| 1470 ptr->size ++; | |
| 1471 } | |
| 1472 } | |
| 1473 break; | |
| 1474 | |
| 1475 case Lisp_Vector: | |
| 1476 case Lisp_Window: | |
| 1477 case Lisp_Process: | |
| 1478 case Lisp_Window_Configuration: | |
| 1479 { | |
| 1480 register struct Lisp_Vector *ptr = XVECTOR (obj); | |
| 1481 register int size = ptr->size; | |
|
1168
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1482 struct Lisp_Vector *volatile ptr1 = ptr; |
| 300 | 1483 register int i; |
| 1484 | |
| 1485 if (size & ARRAY_MARK_FLAG) break; /* Already marked */ | |
| 1486 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */ | |
| 1487 for (i = 0; i < size; i++) /* and then mark its elements */ | |
|
1168
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1488 { |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1489 if (ptr != ptr1) |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1490 abort (); |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1491 mark_object (&ptr->contents[i]); |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1492 } |
| 300 | 1493 } |
| 1494 break; | |
| 1495 | |
|
1295
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1496 case Lisp_Compiled: |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1497 /* We could treat this just like a vector, but it is better |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1498 to save the COMPILED_CONSTANTS element for last and avoid recursion |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1499 there. */ |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1500 { |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1501 register struct Lisp_Vector *ptr = XVECTOR (obj); |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1502 register int size = ptr->size; |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1503 struct Lisp_Vector *volatile ptr1 = ptr; |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1504 register int i; |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1505 |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1506 if (size & ARRAY_MARK_FLAG) break; /* Already marked */ |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1507 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */ |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1508 for (i = 0; i < size; i++) /* and then mark its elements */ |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1509 { |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1510 if (ptr != ptr1) |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1511 abort (); |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1512 if (i != COMPILED_CONSTANTS) |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1513 mark_object (&ptr->contents[i]); |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1514 } |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1515 objptr = &ptr->contents[COMPILED_CONSTANTS]; |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1516 obj = *objptr; |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1517 goto loop; |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1518 } |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1519 |
| 764 | 1520 #ifdef MULTI_FRAME |
| 1521 case Lisp_Frame: | |
| 300 | 1522 { |
| 764 | 1523 register struct frame *ptr = XFRAME (obj); |
| 300 | 1524 register int size = ptr->size; |
| 1525 | |
| 1526 if (size & ARRAY_MARK_FLAG) break; /* Already marked */ | |
| 1527 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */ | |
| 1528 | |
| 1529 mark_object (&ptr->name); | |
| 764 | 1530 mark_object (&ptr->focus_frame); |
| 300 | 1531 mark_object (&ptr->width); |
| 1532 mark_object (&ptr->height); | |
| 1533 mark_object (&ptr->selected_window); | |
| 1534 mark_object (&ptr->minibuffer_window); | |
| 1535 mark_object (&ptr->param_alist); | |
|
1784
11f62e53acff
Make scrollbar structures into lisp objects, so that they can be
Jim Blandy <jimb@redhat.com>
parents:
1562
diff
changeset
|
1536 mark_object (&ptr->scrollbars); |
|
11f62e53acff
Make scrollbar structures into lisp objects, so that they can be
Jim Blandy <jimb@redhat.com>
parents:
1562
diff
changeset
|
1537 mark_object (&ptr->condemned_scrollbars); |
| 300 | 1538 } |
| 1539 break; | |
|
989
dc3fda1e21d0
* alloc.c (Fgarbage_collect): Doc fix.
Jim Blandy <jimb@redhat.com>
parents:
764
diff
changeset
|
1540 #endif /* not MULTI_FRAME */ |
| 300 | 1541 |
| 1542 case Lisp_Symbol: | |
| 1543 { | |
| 1544 register struct Lisp_Symbol *ptr = XSYMBOL (obj); | |
| 1545 struct Lisp_Symbol *ptrx; | |
| 1546 | |
| 1547 if (XMARKBIT (ptr->plist)) break; | |
| 1548 XMARK (ptr->plist); | |
| 1549 mark_object ((Lisp_Object *) &ptr->value); | |
| 1550 mark_object (&ptr->function); | |
| 1551 mark_object (&ptr->plist); | |
|
1114
903883eed4de
* alloc.c (mark_object): mark a symbol's name after marking its
Jim Blandy <jimb@redhat.com>
parents:
1000
diff
changeset
|
1552 XSETTYPE (*(Lisp_Object *) &ptr->name, Lisp_String); |
|
903883eed4de
* alloc.c (mark_object): mark a symbol's name after marking its
Jim Blandy <jimb@redhat.com>
parents:
1000
diff
changeset
|
1553 mark_object (&ptr->name); |
| 300 | 1554 ptr = ptr->next; |
| 1555 if (ptr) | |
| 1556 { | |
| 1557 ptrx = ptr; /* Use pf ptrx avoids compiler bug on Sun */ | |
| 1558 XSETSYMBOL (obj, ptrx); | |
| 1559 goto loop; | |
| 1560 } | |
| 1561 } | |
| 1562 break; | |
| 1563 | |
| 1564 case Lisp_Marker: | |
| 1565 XMARK (XMARKER (obj)->chain); | |
| 1566 /* DO NOT mark thru the marker's chain. | |
| 1567 The buffer's markers chain does not preserve markers from gc; | |
|
1295
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1568 instead, markers are removed from the chain when freed by gc. */ |
| 300 | 1569 break; |
| 1570 | |
| 1571 case Lisp_Cons: | |
| 1572 case Lisp_Buffer_Local_Value: | |
| 1573 case Lisp_Some_Buffer_Local_Value: | |
| 1574 { | |
| 1575 register struct Lisp_Cons *ptr = XCONS (obj); | |
| 1576 if (XMARKBIT (ptr->car)) break; | |
| 1577 XMARK (ptr->car); | |
|
1295
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1578 /* If the cdr is nil, avoid recursion for the car. */ |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1579 if (EQ (ptr->cdr, Qnil)) |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1580 { |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1581 objptr = &ptr->car; |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1582 obj = ptr->car; |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1583 XUNMARK (obj); |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1584 goto loop; |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1585 } |
| 300 | 1586 mark_object (&ptr->car); |
| 1587 objptr = &ptr->cdr; | |
| 1588 obj = ptr->cdr; | |
| 1589 goto loop; | |
| 1590 } | |
| 1591 | |
| 1592 #ifdef LISP_FLOAT_TYPE | |
| 1593 case Lisp_Float: | |
| 1594 XMARK (XFLOAT (obj)->type); | |
| 1595 break; | |
| 1596 #endif /* LISP_FLOAT_TYPE */ | |
| 1597 | |
| 1598 case Lisp_Buffer: | |
| 1599 if (!XMARKBIT (XBUFFER (obj)->name)) | |
| 1600 mark_buffer (obj); | |
| 1601 break; | |
| 1602 | |
| 1603 case Lisp_Int: | |
| 1604 case Lisp_Void: | |
| 1605 case Lisp_Subr: | |
| 1606 case Lisp_Intfwd: | |
| 1607 case Lisp_Boolfwd: | |
| 1608 case Lisp_Objfwd: | |
| 1609 case Lisp_Buffer_Objfwd: | |
| 1610 case Lisp_Internal_Stream: | |
| 1611 /* Don't bother with Lisp_Buffer_Objfwd, | |
| 1612 since all markable slots in current buffer marked anyway. */ | |
| 1613 /* Don't need to do Lisp_Objfwd, since the places they point | |
| 1614 are protected with staticpro. */ | |
| 1615 break; | |
| 1616 | |
| 1617 default: | |
| 1618 abort (); | |
| 1619 } | |
| 1620 } | |
| 1621 | |
| 1622 /* Mark the pointers in a buffer structure. */ | |
| 1623 | |
| 1624 static void | |
| 1625 mark_buffer (buf) | |
| 1626 Lisp_Object buf; | |
| 1627 { | |
| 1628 register struct buffer *buffer = XBUFFER (buf); | |
| 1629 register Lisp_Object *ptr; | |
| 1630 | |
| 1631 /* This is the buffer's markbit */ | |
| 1632 mark_object (&buffer->name); | |
| 1633 XMARK (buffer->name); | |
| 1634 | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1635 MARK_INTERVAL_TREE (buffer->intervals); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1636 |
| 300 | 1637 #if 0 |
| 1638 mark_object (buffer->syntax_table); | |
| 1639 | |
| 1640 /* Mark the various string-pointers in the buffer object. | |
| 1641 Since the strings may be relocated, we must mark them | |
| 1642 in their actual slots. So gc_sweep must convert each slot | |
| 1643 back to an ordinary C pointer. */ | |
| 1644 XSET (*(Lisp_Object *)&buffer->upcase_table, | |
| 1645 Lisp_String, buffer->upcase_table); | |
| 1646 mark_object ((Lisp_Object *)&buffer->upcase_table); | |
| 1647 XSET (*(Lisp_Object *)&buffer->downcase_table, | |
| 1648 Lisp_String, buffer->downcase_table); | |
| 1649 mark_object ((Lisp_Object *)&buffer->downcase_table); | |
| 1650 | |
| 1651 XSET (*(Lisp_Object *)&buffer->sort_table, | |
| 1652 Lisp_String, buffer->sort_table); | |
| 1653 mark_object ((Lisp_Object *)&buffer->sort_table); | |
| 1654 XSET (*(Lisp_Object *)&buffer->folding_sort_table, | |
| 1655 Lisp_String, buffer->folding_sort_table); | |
| 1656 mark_object ((Lisp_Object *)&buffer->folding_sort_table); | |
| 1657 #endif | |
| 1658 | |
| 1659 for (ptr = &buffer->name + 1; | |
| 1660 (char *)ptr < (char *)buffer + sizeof (struct buffer); | |
| 1661 ptr++) | |
| 1662 mark_object (ptr); | |
| 1663 } | |
| 1664 | |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1665 /* Sweep: find all structures not marked, and free them. */ |
| 300 | 1666 |
| 1667 static void | |
| 1668 gc_sweep () | |
| 1669 { | |
| 1670 total_string_size = 0; | |
| 1671 compact_strings (); | |
| 1672 | |
| 1673 /* Put all unmarked conses on free list */ | |
| 1674 { | |
| 1675 register struct cons_block *cblk; | |
| 1676 register int lim = cons_block_index; | |
| 1677 register int num_free = 0, num_used = 0; | |
| 1678 | |
| 1679 cons_free_list = 0; | |
| 1680 | |
| 1681 for (cblk = cons_block; cblk; cblk = cblk->next) | |
| 1682 { | |
| 1683 register int i; | |
| 1684 for (i = 0; i < lim; i++) | |
| 1685 if (!XMARKBIT (cblk->conses[i].car)) | |
| 1686 { | |
| 1687 XFASTINT (cblk->conses[i].car) = (int) cons_free_list; | |
| 1688 num_free++; | |
| 1689 cons_free_list = &cblk->conses[i]; | |
| 1690 } | |
| 1691 else | |
| 1692 { | |
| 1693 num_used++; | |
| 1694 XUNMARK (cblk->conses[i].car); | |
| 1695 } | |
| 1696 lim = CONS_BLOCK_SIZE; | |
| 1697 } | |
| 1698 total_conses = num_used; | |
| 1699 total_free_conses = num_free; | |
| 1700 } | |
| 1701 | |
| 1702 #ifdef LISP_FLOAT_TYPE | |
| 1703 /* Put all unmarked floats on free list */ | |
| 1704 { | |
| 1705 register struct float_block *fblk; | |
| 1706 register int lim = float_block_index; | |
| 1707 register int num_free = 0, num_used = 0; | |
| 1708 | |
| 1709 float_free_list = 0; | |
| 1710 | |
| 1711 for (fblk = float_block; fblk; fblk = fblk->next) | |
| 1712 { | |
| 1713 register int i; | |
| 1714 for (i = 0; i < lim; i++) | |
| 1715 if (!XMARKBIT (fblk->floats[i].type)) | |
| 1716 { | |
| 1717 XFASTINT (fblk->floats[i].type) = (int) float_free_list; | |
| 1718 num_free++; | |
| 1719 float_free_list = &fblk->floats[i]; | |
| 1720 } | |
| 1721 else | |
| 1722 { | |
| 1723 num_used++; | |
| 1724 XUNMARK (fblk->floats[i].type); | |
| 1725 } | |
| 1726 lim = FLOAT_BLOCK_SIZE; | |
| 1727 } | |
| 1728 total_floats = num_used; | |
| 1729 total_free_floats = num_free; | |
| 1730 } | |
| 1731 #endif /* LISP_FLOAT_TYPE */ | |
| 1732 | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1733 #ifdef USE_TEXT_PROPERTIES |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1734 /* Put all unmarked intervals on free list */ |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1735 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1736 register struct interval_block *iblk; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1737 register int lim = interval_block_index; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1738 register int num_free = 0, num_used = 0; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1739 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1740 interval_free_list = 0; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1741 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1742 for (iblk = interval_block; iblk; iblk = iblk->next) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1743 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1744 register int i; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1745 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1746 for (i = 0; i < lim; i++) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1747 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1748 if (! XMARKBIT (iblk->intervals[i].plist)) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1749 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1750 iblk->intervals[i].parent = interval_free_list; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1751 interval_free_list = &iblk->intervals[i]; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1752 num_free++; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1753 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1754 else |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1755 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1756 num_used++; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1757 XUNMARK (iblk->intervals[i].plist); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1758 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1759 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1760 lim = INTERVAL_BLOCK_SIZE; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1761 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1762 total_intervals = num_used; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1763 total_free_intervals = num_free; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1764 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1765 #endif /* USE_TEXT_PROPERTIES */ |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1766 |
| 300 | 1767 /* Put all unmarked symbols on free list */ |
| 1768 { | |
| 1769 register struct symbol_block *sblk; | |
| 1770 register int lim = symbol_block_index; | |
| 1771 register int num_free = 0, num_used = 0; | |
| 1772 | |
| 1773 symbol_free_list = 0; | |
| 1774 | |
| 1775 for (sblk = symbol_block; sblk; sblk = sblk->next) | |
| 1776 { | |
| 1777 register int i; | |
| 1778 for (i = 0; i < lim; i++) | |
| 1779 if (!XMARKBIT (sblk->symbols[i].plist)) | |
| 1780 { | |
| 1781 XFASTINT (sblk->symbols[i].value) = (int) symbol_free_list; | |
| 1782 symbol_free_list = &sblk->symbols[i]; | |
| 1783 num_free++; | |
| 1784 } | |
| 1785 else | |
| 1786 { | |
| 1787 num_used++; | |
| 1788 sblk->symbols[i].name | |
| 1789 = XSTRING (*(Lisp_Object *) &sblk->symbols[i].name); | |
| 1790 XUNMARK (sblk->symbols[i].plist); | |
| 1791 } | |
| 1792 lim = SYMBOL_BLOCK_SIZE; | |
| 1793 } | |
| 1794 total_symbols = num_used; | |
| 1795 total_free_symbols = num_free; | |
| 1796 } | |
| 1797 | |
| 1798 #ifndef standalone | |
| 1799 /* Put all unmarked markers on free list. | |
| 1800 Dechain each one first from the buffer it points into. */ | |
| 1801 { | |
| 1802 register struct marker_block *mblk; | |
| 1803 struct Lisp_Marker *tem1; | |
| 1804 register int lim = marker_block_index; | |
| 1805 register int num_free = 0, num_used = 0; | |
| 1806 | |
| 1807 marker_free_list = 0; | |
| 1808 | |
| 1809 for (mblk = marker_block; mblk; mblk = mblk->next) | |
| 1810 { | |
| 1811 register int i; | |
| 1812 for (i = 0; i < lim; i++) | |
| 1813 if (!XMARKBIT (mblk->markers[i].chain)) | |
| 1814 { | |
| 1815 Lisp_Object tem; | |
| 1816 tem1 = &mblk->markers[i]; /* tem1 avoids Sun compiler bug */ | |
| 1817 XSET (tem, Lisp_Marker, tem1); | |
| 1818 unchain_marker (tem); | |
| 1819 XFASTINT (mblk->markers[i].chain) = (int) marker_free_list; | |
| 1820 marker_free_list = &mblk->markers[i]; | |
| 1821 num_free++; | |
| 1822 } | |
| 1823 else | |
| 1824 { | |
| 1825 num_used++; | |
| 1826 XUNMARK (mblk->markers[i].chain); | |
| 1827 } | |
| 1828 lim = MARKER_BLOCK_SIZE; | |
| 1829 } | |
| 1830 | |
| 1831 total_markers = num_used; | |
| 1832 total_free_markers = num_free; | |
| 1833 } | |
| 1834 | |
| 1835 /* Free all unmarked buffers */ | |
| 1836 { | |
| 1837 register struct buffer *buffer = all_buffers, *prev = 0, *next; | |
| 1838 | |
| 1839 while (buffer) | |
| 1840 if (!XMARKBIT (buffer->name)) | |
| 1841 { | |
| 1842 if (prev) | |
| 1843 prev->next = buffer->next; | |
| 1844 else | |
| 1845 all_buffers = buffer->next; | |
| 1846 next = buffer->next; | |
| 1847 free (buffer); | |
| 1848 buffer = next; | |
| 1849 } | |
| 1850 else | |
| 1851 { | |
| 1852 XUNMARK (buffer->name); | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1853 UNMARK_BALANCE_INTERVALS (buffer->intervals); |
| 300 | 1854 |
| 1855 #if 0 | |
| 1856 /* Each `struct Lisp_String *' was turned into a Lisp_Object | |
| 1857 for purposes of marking and relocation. | |
| 1858 Turn them back into C pointers now. */ | |
| 1859 buffer->upcase_table | |
| 1860 = XSTRING (*(Lisp_Object *)&buffer->upcase_table); | |
| 1861 buffer->downcase_table | |
| 1862 = XSTRING (*(Lisp_Object *)&buffer->downcase_table); | |
| 1863 buffer->sort_table | |
| 1864 = XSTRING (*(Lisp_Object *)&buffer->sort_table); | |
| 1865 buffer->folding_sort_table | |
| 1866 = XSTRING (*(Lisp_Object *)&buffer->folding_sort_table); | |
| 1867 #endif | |
| 1868 | |
| 1869 prev = buffer, buffer = buffer->next; | |
| 1870 } | |
| 1871 } | |
| 1872 | |
| 1873 #endif /* standalone */ | |
| 1874 | |
| 1875 /* Free all unmarked vectors */ | |
| 1876 { | |
| 1877 register struct Lisp_Vector *vector = all_vectors, *prev = 0, *next; | |
| 1878 total_vector_size = 0; | |
| 1879 | |
| 1880 while (vector) | |
| 1881 if (!(vector->size & ARRAY_MARK_FLAG)) | |
| 1882 { | |
| 1883 if (prev) | |
| 1884 prev->next = vector->next; | |
| 1885 else | |
| 1886 all_vectors = vector->next; | |
| 1887 next = vector->next; | |
| 1888 free (vector); | |
| 1889 vector = next; | |
| 1890 } | |
| 1891 else | |
| 1892 { | |
| 1893 vector->size &= ~ARRAY_MARK_FLAG; | |
| 1894 total_vector_size += vector->size; | |
| 1895 prev = vector, vector = vector->next; | |
| 1896 } | |
| 1897 } | |
| 1898 | |
| 1899 /* Free all "large strings" not marked with ARRAY_MARK_FLAG. */ | |
| 1900 { | |
| 1901 register struct string_block *sb = large_string_blocks, *prev = 0, *next; | |
| 1902 | |
| 1903 while (sb) | |
| 1904 if (!(((struct Lisp_String *)(&sb->chars[0]))->size & ARRAY_MARK_FLAG)) | |
| 1905 { | |
| 1906 if (prev) | |
| 1907 prev->next = sb->next; | |
| 1908 else | |
| 1909 large_string_blocks = sb->next; | |
| 1910 next = sb->next; | |
| 1911 free (sb); | |
| 1912 sb = next; | |
| 1913 } | |
| 1914 else | |
| 1915 { | |
| 1916 ((struct Lisp_String *)(&sb->chars[0]))->size | |
| 1917 &= ~ARRAY_MARK_FLAG & ~MARKBIT; | |
| 1918 total_string_size += ((struct Lisp_String *)(&sb->chars[0]))->size; | |
| 1919 prev = sb, sb = sb->next; | |
| 1920 } | |
| 1921 } | |
| 1922 } | |
| 1923 | |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1924 /* Compactify strings, relocate references, and free empty string blocks. */ |
| 300 | 1925 |
| 1926 static void | |
| 1927 compact_strings () | |
| 1928 { | |
| 1929 /* String block of old strings we are scanning. */ | |
| 1930 register struct string_block *from_sb; | |
| 1931 /* A preceding string block (or maybe the same one) | |
| 1932 where we are copying the still-live strings to. */ | |
| 1933 register struct string_block *to_sb; | |
| 1934 int pos; | |
| 1935 int to_pos; | |
| 1936 | |
| 1937 to_sb = first_string_block; | |
| 1938 to_pos = 0; | |
| 1939 | |
| 1940 /* Scan each existing string block sequentially, string by string. */ | |
| 1941 for (from_sb = first_string_block; from_sb; from_sb = from_sb->next) | |
| 1942 { | |
| 1943 pos = 0; | |
| 1944 /* POS is the index of the next string in the block. */ | |
| 1945 while (pos < from_sb->pos) | |
| 1946 { | |
| 1947 register struct Lisp_String *nextstr | |
| 1948 = (struct Lisp_String *) &from_sb->chars[pos]; | |
| 1949 | |
| 1950 register struct Lisp_String *newaddr; | |
| 1951 register int size = nextstr->size; | |
| 1952 | |
| 1953 /* NEXTSTR is the old address of the next string. | |
| 1954 Just skip it if it isn't marked. */ | |
| 1955 if ((unsigned) size > STRING_BLOCK_SIZE) | |
| 1956 { | |
| 1957 /* It is marked, so its size field is really a chain of refs. | |
| 1958 Find the end of the chain, where the actual size lives. */ | |
| 1959 while ((unsigned) size > STRING_BLOCK_SIZE) | |
| 1960 { | |
| 1961 if (size & 1) size ^= MARKBIT | 1; | |
| 1962 size = *(int *)size & ~MARKBIT; | |
| 1963 } | |
| 1964 | |
| 1965 total_string_size += size; | |
| 1966 | |
| 1967 /* If it won't fit in TO_SB, close it out, | |
| 1968 and move to the next sb. Keep doing so until | |
| 1969 TO_SB reaches a large enough, empty enough string block. | |
| 1970 We know that TO_SB cannot advance past FROM_SB here | |
| 1971 since FROM_SB is large enough to contain this string. | |
| 1972 Any string blocks skipped here | |
| 1973 will be patched out and freed later. */ | |
| 1974 while (to_pos + STRING_FULLSIZE (size) | |
| 1975 > max (to_sb->pos, STRING_BLOCK_SIZE)) | |
| 1976 { | |
| 1977 to_sb->pos = to_pos; | |
| 1978 to_sb = to_sb->next; | |
| 1979 to_pos = 0; | |
| 1980 } | |
| 1981 /* Compute new address of this string | |
| 1982 and update TO_POS for the space being used. */ | |
| 1983 newaddr = (struct Lisp_String *) &to_sb->chars[to_pos]; | |
| 1984 to_pos += STRING_FULLSIZE (size); | |
| 1985 | |
| 1986 /* Copy the string itself to the new place. */ | |
| 1987 if (nextstr != newaddr) | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1988 bcopy (nextstr, newaddr, size + 1 + sizeof (int) |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1989 + INTERVAL_PTR_SIZE); |
| 300 | 1990 |
| 1991 /* Go through NEXTSTR's chain of references | |
| 1992 and make each slot in the chain point to | |
| 1993 the new address of this string. */ | |
| 1994 size = newaddr->size; | |
| 1995 while ((unsigned) size > STRING_BLOCK_SIZE) | |
| 1996 { | |
| 1997 register Lisp_Object *objptr; | |
| 1998 if (size & 1) size ^= MARKBIT | 1; | |
| 1999 objptr = (Lisp_Object *)size; | |
| 2000 | |
| 2001 size = XFASTINT (*objptr) & ~MARKBIT; | |
| 2002 if (XMARKBIT (*objptr)) | |
| 2003 { | |
| 2004 XSET (*objptr, Lisp_String, newaddr); | |
| 2005 XMARK (*objptr); | |
| 2006 } | |
| 2007 else | |
| 2008 XSET (*objptr, Lisp_String, newaddr); | |
| 2009 } | |
| 2010 /* Store the actual size in the size field. */ | |
| 2011 newaddr->size = size; | |
| 2012 } | |
| 2013 pos += STRING_FULLSIZE (size); | |
| 2014 } | |
| 2015 } | |
| 2016 | |
| 2017 /* Close out the last string block still used and free any that follow. */ | |
| 2018 to_sb->pos = to_pos; | |
| 2019 current_string_block = to_sb; | |
| 2020 | |
| 2021 from_sb = to_sb->next; | |
| 2022 to_sb->next = 0; | |
| 2023 while (from_sb) | |
| 2024 { | |
| 2025 to_sb = from_sb->next; | |
| 2026 free (from_sb); | |
| 2027 from_sb = to_sb; | |
| 2028 } | |
| 2029 | |
| 2030 /* Free any empty string blocks further back in the chain. | |
| 2031 This loop will never free first_string_block, but it is very | |
| 2032 unlikely that that one will become empty, so why bother checking? */ | |
| 2033 | |
| 2034 from_sb = first_string_block; | |
| 2035 while (to_sb = from_sb->next) | |
| 2036 { | |
| 2037 if (to_sb->pos == 0) | |
| 2038 { | |
| 2039 if (from_sb->next = to_sb->next) | |
| 2040 from_sb->next->prev = from_sb; | |
| 2041 free (to_sb); | |
| 2042 } | |
| 2043 else | |
| 2044 from_sb = to_sb; | |
| 2045 } | |
| 2046 } | |
| 2047 | |
|
1327
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2048 /* Debugging aids. */ |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2049 |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2050 DEFUN ("memory-limit", Fmemory_limit, Smemory_limit, 0, 0, "", |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2051 "Return the address of the last byte Emacs has allocated, divided by 1024.\n\ |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2052 This may be helpful in debugging Emacs's memory usage.\n\ |
|
1893
b047e77f3be4
(Fmemory_limit): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
1784
diff
changeset
|
2053 We divide the value by 1024 to make sure it fits in a Lisp integer.") |
|
1327
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2054 () |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2055 { |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2056 Lisp_Object end; |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2057 |
|
1362
4bea5980f778
* alloc.c (Fmemory_limit): Explain why we divide by 1024.
Jim Blandy <jimb@redhat.com>
parents:
1327
diff
changeset
|
2058 XSET (end, Lisp_Int, (int) sbrk (0) / 1024); |
|
1327
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2059 |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2060 return end; |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2061 } |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2062 |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2063 |
| 300 | 2064 /* Initialization */ |
| 2065 | |
| 2066 init_alloc_once () | |
| 2067 { | |
| 2068 /* Used to do Vpurify_flag = Qt here, but Qt isn't set up yet! */ | |
| 2069 pureptr = 0; | |
| 356 | 2070 #ifdef HAVE_SHM |
| 2071 pure_size = PURESIZE; | |
| 2072 #endif | |
| 300 | 2073 all_vectors = 0; |
| 2074 ignore_warnings = 1; | |
| 2075 init_strings (); | |
| 2076 init_cons (); | |
| 2077 init_symbol (); | |
| 2078 init_marker (); | |
| 2079 #ifdef LISP_FLOAT_TYPE | |
| 2080 init_float (); | |
| 2081 #endif /* LISP_FLOAT_TYPE */ | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
2082 INIT_INTERVALS; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
2083 |
| 300 | 2084 ignore_warnings = 0; |
| 2085 gcprolist = 0; | |
| 2086 staticidx = 0; | |
| 2087 consing_since_gc = 0; | |
| 2088 gc_cons_threshold = 100000; | |
| 2089 #ifdef VIRT_ADDR_VARIES | |
| 2090 malloc_sbrk_unused = 1<<22; /* A large number */ | |
| 2091 malloc_sbrk_used = 100000; /* as reasonable as any number */ | |
| 2092 #endif /* VIRT_ADDR_VARIES */ | |
| 2093 } | |
| 2094 | |
| 2095 init_alloc () | |
| 2096 { | |
| 2097 gcprolist = 0; | |
| 2098 } | |
| 2099 | |
| 2100 void | |
| 2101 syms_of_alloc () | |
| 2102 { | |
| 2103 DEFVAR_INT ("gc-cons-threshold", &gc_cons_threshold, | |
| 2104 "*Number of bytes of consing between garbage collections.\n\ | |
| 2105 Garbage collection can happen automatically once this many bytes have been\n\ | |
| 2106 allocated since the last garbage collection. All data types count.\n\n\ | |
| 2107 Garbage collection happens automatically only when `eval' is called.\n\n\ | |
| 2108 By binding this temporarily to a large number, you can effectively\n\ | |
| 2109 prevent garbage collection during a part of the program."); | |
| 2110 | |
| 2111 DEFVAR_INT ("pure-bytes-used", &pureptr, | |
| 2112 "Number of bytes of sharable Lisp data allocated so far."); | |
| 2113 | |
| 2114 #if 0 | |
| 2115 DEFVAR_INT ("data-bytes-used", &malloc_sbrk_used, | |
| 2116 "Number of bytes of unshared memory allocated in this session."); | |
| 2117 | |
| 2118 DEFVAR_INT ("data-bytes-free", &malloc_sbrk_unused, | |
| 2119 "Number of bytes of unshared memory remaining available in this session."); | |
| 2120 #endif | |
| 2121 | |
| 2122 DEFVAR_LISP ("purify-flag", &Vpurify_flag, | |
| 2123 "Non-nil means loading Lisp code in order to dump an executable.\n\ | |
| 2124 This means that certain objects should be allocated in shared (pure) space."); | |
| 2125 | |
| 764 | 2126 DEFVAR_INT ("undo-limit", &undo_limit, |
| 300 | 2127 "Keep no more undo information once it exceeds this size.\n\ |
| 764 | 2128 This limit is applied when garbage collection happens.\n\ |
| 300 | 2129 The size is counted as the number of bytes occupied,\n\ |
| 2130 which includes both saved text and other data."); | |
| 764 | 2131 undo_limit = 20000; |
| 300 | 2132 |
| 764 | 2133 DEFVAR_INT ("undo-strong-limit", &undo_strong_limit, |
| 300 | 2134 "Don't keep more than this much size of undo information.\n\ |
| 2135 A command which pushes past this size is itself forgotten.\n\ | |
| 764 | 2136 This limit is applied when garbage collection happens.\n\ |
| 300 | 2137 The size is counted as the number of bytes occupied,\n\ |
| 2138 which includes both saved text and other data."); | |
| 764 | 2139 undo_strong_limit = 30000; |
| 300 | 2140 |
| 2141 defsubr (&Scons); | |
| 2142 defsubr (&Slist); | |
| 2143 defsubr (&Svector); | |
| 2144 defsubr (&Smake_byte_code); | |
| 2145 defsubr (&Smake_list); | |
| 2146 defsubr (&Smake_vector); | |
| 2147 defsubr (&Smake_string); | |
| 2148 defsubr (&Smake_rope); | |
| 2149 defsubr (&Srope_elt); | |
| 2150 defsubr (&Smake_symbol); | |
| 2151 defsubr (&Smake_marker); | |
| 2152 defsubr (&Spurecopy); | |
| 2153 defsubr (&Sgarbage_collect); | |
|
1327
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2154 defsubr (&Smemory_limit); |
| 300 | 2155 } |
