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