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