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