Mercurial > emacs
annotate src/alloc.c @ 9359:36dea2dad76c
(mark_object): Delete case Lisp_Internal_Stream.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Thu, 06 Oct 1994 21:47:12 +0000 |
| parents | 17d393a8eed6 |
| children | 86e52a4d8d87 |
| rev | line source |
|---|---|
| 300 | 1 /* Storage allocation and gc for GNU Emacs Lisp interpreter. |
| 7307 | 2 Copyright (C) 1985, 1986, 1988, 1993, 1994 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; \ | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
45 XSETCONS (val, (char *) address + size); \ |
| 300 | 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 | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
80 EMACS_INT pure[PURESIZE / sizeof (EMACS_INT)] = {0,}; /* Force it into data space! */ |
| 300 | 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. */ | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
92 EMACS_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 { | |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
438 XSETFASTINT (ptr->type, (EMACS_INT) float_free_list); |
| 300 | 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 { | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
450 XSETFLOAT (val, float_free_list); |
| 300 | 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 } | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
463 XSETFLOAT (val, &float_block->floats[float_block_index++]); |
| 300 | 464 } |
| 465 XFLOAT (val)->data = float_value; | |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
466 XSETFASTINT (XFLOAT (val)->type, 0); /* bug chasing -wsr */ |
| 300 | 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 { | |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
511 XSETFASTINT (ptr->car, (EMACS_INT) cons_free_list); |
| 300 | 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 { | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
524 XSETCONS (val, cons_free_list); |
| 300 | 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 } | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
537 XSETCONS (val, &cons_block->conses[cons_block_index++]); |
| 300 | 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 | |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
554 XSETFASTINT (len, nargs); |
| 300 | 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 | |
|
9144
0e29f6a4fe7c
(Fmake_list, Fmake_vector, Fmake_string, make_event_array): Use type test
Karl Heuer <kwzh@gnu.org>
parents:
8940
diff
changeset
|
573 if (!INTEGERP (length) || XINT (length) < 0) |
| 300 | 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 | |
|
9144
0e29f6a4fe7c
(Fmake_list, Fmake_vector, Fmake_string, make_event_array): Use type test
Karl Heuer <kwzh@gnu.org>
parents:
8940
diff
changeset
|
597 if (!INTEGERP (length) || XINT (length) < 0) |
| 300 | 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 | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
604 XSETVECTOR (vector, p); |
| 300 | 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 | |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
628 XSETFASTINT (len, nargs); |
| 300 | 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 | |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
650 XSETFASTINT (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 { | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
710 XSETSYMBOL (val, symbol_free_list); |
| 300 | 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 } | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
724 XSETSYMBOL (val, &symbol_block->symbols[symbol_block_index++]); |
| 300 | 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 { | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
772 XSETMARKER (val, marker_free_list); |
| 300 | 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 } | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
786 XSETMARKER (val, &marker_block->markers[marker_block_index++]); |
| 300 | 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; | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
829 EMACS_INT pos; |
| 300 | 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)) | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
850 #define PAD (sizeof (EMACS_INT)) |
| 300 | 851 |
| 852 #if 0 | |
| 853 #define STRING_FULLSIZE(SIZE) \ | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
854 (((SIZE) + 2 * sizeof (EMACS_INT)) & ~(sizeof (EMACS_INT) - 1)) |
| 300 | 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 | |
|
9144
0e29f6a4fe7c
(Fmake_list, Fmake_vector, Fmake_string, make_event_array): Use type test
Karl Heuer <kwzh@gnu.org>
parents:
8940
diff
changeset
|
878 if (!INTEGERP (length) || XINT (length) < 0) |
| 300 | 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 { | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
921 XSETSTRING (val, |
|
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
922 ((struct Lisp_String *) |
|
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
923 (current_string_block->chars + current_string_block->pos))); |
| 300 | 924 current_string_block->pos += fullsize; |
| 925 } | |
| 926 else if (fullsize > STRING_BLOCK_OUTSIZE) | |
| 927 /* This string gets its own string block */ | |
| 928 { | |
| 929 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
|
930 = (struct string_block *) xmalloc (sizeof (struct string_block_head) + fullsize); |
| 300 | 931 VALIDATE_LISP_STORAGE (new, 0); |
| 932 consing_since_gc += sizeof (struct string_block_head) + fullsize; | |
| 933 new->pos = fullsize; | |
| 934 new->next = large_string_blocks; | |
| 935 large_string_blocks = new; | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
936 XSETSTRING (val, |
|
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
937 ((struct Lisp_String *) |
|
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
938 ((struct string_block_head *)new + 1))); |
| 300 | 939 } |
| 940 else | |
| 941 /* Make a new current string block and start it off with this string */ | |
| 942 { | |
| 943 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
|
944 = (struct string_block *) xmalloc (sizeof (struct string_block)); |
| 300 | 945 VALIDATE_LISP_STORAGE (new, sizeof *new); |
| 946 consing_since_gc += sizeof (struct string_block); | |
| 947 current_string_block->next = new; | |
| 948 new->prev = current_string_block; | |
| 949 new->next = 0; | |
| 950 current_string_block = new; | |
| 951 new->pos = fullsize; | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
952 XSETSTRING (val, |
|
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
953 (struct Lisp_String *) current_string_block->chars); |
| 300 | 954 } |
| 955 | |
| 956 XSTRING (val)->size = length; | |
| 957 XSTRING (val)->data[length] = 0; | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
958 INITIALIZE_INTERVAL (XSTRING (val), NULL_INTERVAL); |
| 300 | 959 |
| 960 return val; | |
| 961 } | |
| 962 | |
| 963 /* 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
|
964 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
|
965 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
|
966 |
|
e2a164ac4088
(Fmake_rope, Frope_elt): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
967 Any number of arguments, even zero arguments, are allowed. */ |
| 300 | 968 |
| 969 Lisp_Object | |
|
2013
e2a164ac4088
(Fmake_rope, Frope_elt): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
970 make_event_array (nargs, args) |
| 300 | 971 register int nargs; |
| 972 Lisp_Object *args; | |
| 973 { | |
| 974 int i; | |
| 975 | |
| 976 for (i = 0; i < nargs; i++) | |
|
2013
e2a164ac4088
(Fmake_rope, Frope_elt): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
977 /* 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
|
978 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
|
979 after discarding the meta bit and all the bits above it. */ |
|
9144
0e29f6a4fe7c
(Fmake_list, Fmake_vector, Fmake_string, make_event_array): Use type test
Karl Heuer <kwzh@gnu.org>
parents:
8940
diff
changeset
|
980 if (!INTEGERP (args[i]) |
|
3536
58d5ee6ec253
(make_event_array): Ignore bits above CHAR_META.
Richard M. Stallman <rms@gnu.org>
parents:
3181
diff
changeset
|
981 || (XUINT (args[i]) & ~(-CHAR_META)) >= 0200) |
| 300 | 982 return Fvector (nargs, args); |
| 983 | |
| 984 /* Since the loop exited, we know that all the things in it are | |
| 985 characters, so we can make a string. */ | |
| 986 { | |
|
6492
8372dce85f8a
(make_event_array): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
6227
diff
changeset
|
987 Lisp_Object result; |
| 300 | 988 |
|
6492
8372dce85f8a
(make_event_array): Use assignment, not initialization.
Karl Heuer <kwzh@gnu.org>
parents:
6227
diff
changeset
|
989 result = Fmake_string (nargs, make_number (0)); |
| 300 | 990 for (i = 0; i < nargs; i++) |
|
2013
e2a164ac4088
(Fmake_rope, Frope_elt): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
991 { |
|
e2a164ac4088
(Fmake_rope, Frope_elt): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
992 XSTRING (result)->data[i] = XINT (args[i]); |
|
e2a164ac4088
(Fmake_rope, Frope_elt): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
993 /* 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
|
994 if (XINT (args[i]) & CHAR_META) |
|
e2a164ac4088
(Fmake_rope, Frope_elt): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
995 XSTRING (result)->data[i] |= 0x80; |
|
e2a164ac4088
(Fmake_rope, Frope_elt): Fns deleted.
Richard M. Stallman <rms@gnu.org>
parents:
1994
diff
changeset
|
996 } |
| 300 | 997 |
| 998 return result; | |
| 999 } | |
| 1000 } | |
| 1001 | |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1002 /* Pure storage management. */ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1003 |
| 300 | 1004 /* Must get an error if pure storage is full, |
| 1005 since if it cannot hold a large string | |
| 1006 it may be able to hold conses that point to that string; | |
| 1007 then the string is not protected from gc. */ | |
| 1008 | |
| 1009 Lisp_Object | |
| 1010 make_pure_string (data, length) | |
| 1011 char *data; | |
| 1012 int length; | |
| 1013 { | |
| 1014 register Lisp_Object new; | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1015 register int size = sizeof (EMACS_INT) + INTERVAL_PTR_SIZE + length + 1; |
| 300 | 1016 |
| 1017 if (pureptr + size > PURESIZE) | |
| 1018 error ("Pure Lisp storage exhausted"); | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
1019 XSETSTRING (new, PUREBEG + pureptr); |
| 300 | 1020 XSTRING (new)->size = length; |
| 1021 bcopy (data, XSTRING (new)->data, length); | |
| 1022 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
|
1023 |
|
0f94e1e7d273
(make_pure_string): If we USE_TEXT_PROPERTIES, set the
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
1024 /* 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
|
1025 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
|
1026 #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
|
1027 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
|
1028 #endif |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1029 pureptr += (size + sizeof (EMACS_INT) - 1) |
|
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1030 / sizeof (EMACS_INT) * sizeof (EMACS_INT); |
| 300 | 1031 return new; |
| 1032 } | |
| 1033 | |
| 1034 Lisp_Object | |
| 1035 pure_cons (car, cdr) | |
| 1036 Lisp_Object car, cdr; | |
| 1037 { | |
| 1038 register Lisp_Object new; | |
| 1039 | |
| 1040 if (pureptr + sizeof (struct Lisp_Cons) > PURESIZE) | |
| 1041 error ("Pure Lisp storage exhausted"); | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
1042 XSETCONS (new, PUREBEG + pureptr); |
| 300 | 1043 pureptr += sizeof (struct Lisp_Cons); |
| 1044 XCONS (new)->car = Fpurecopy (car); | |
| 1045 XCONS (new)->cdr = Fpurecopy (cdr); | |
| 1046 return new; | |
| 1047 } | |
| 1048 | |
| 1049 #ifdef LISP_FLOAT_TYPE | |
| 1050 | |
| 1051 Lisp_Object | |
| 1052 make_pure_float (num) | |
| 1053 double num; | |
| 1054 { | |
| 1055 register Lisp_Object new; | |
| 1056 | |
|
1939
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1057 /* 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
|
1058 (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
|
1059 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
|
1060 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
|
1061 { |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1062 int alignment; |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1063 char *p = PUREBEG + pureptr; |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1064 |
|
1936
82bbf90208d4
* alloc.c (make_pure_float): Align pureptr according to __alignof,
Jim Blandy <jimb@redhat.com>
parents:
1908
diff
changeset
|
1065 #ifdef __GNUC__ |
|
82bbf90208d4
* alloc.c (make_pure_float): Align pureptr according to __alignof,
Jim Blandy <jimb@redhat.com>
parents:
1908
diff
changeset
|
1066 #if __GNUC__ >= 2 |
|
1939
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1067 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
|
1068 #else |
|
1939
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1069 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
|
1070 #endif |
|
82bbf90208d4
* alloc.c (make_pure_float): Align pureptr according to __alignof,
Jim Blandy <jimb@redhat.com>
parents:
1908
diff
changeset
|
1071 #else |
|
1939
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1072 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
|
1073 #endif |
|
1939
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1074 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
|
1075 pureptr = p - PUREBEG; |
|
def7b9c64935
* alloc.c (make_pure_float): Assure that PUREBEG + pureptr is
Jim Blandy <jimb@redhat.com>
parents:
1936
diff
changeset
|
1076 } |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1077 |
| 300 | 1078 if (pureptr + sizeof (struct Lisp_Float) > PURESIZE) |
| 1079 error ("Pure Lisp storage exhausted"); | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
1080 XSETFLOAT (new, PUREBEG + pureptr); |
| 300 | 1081 pureptr += sizeof (struct Lisp_Float); |
| 1082 XFLOAT (new)->data = num; | |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
1083 XSETFASTINT (XFLOAT (new)->type, 0); /* bug chasing -wsr */ |
| 300 | 1084 return new; |
| 1085 } | |
| 1086 | |
| 1087 #endif /* LISP_FLOAT_TYPE */ | |
| 1088 | |
| 1089 Lisp_Object | |
| 1090 make_pure_vector (len) | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1091 EMACS_INT len; |
| 300 | 1092 { |
| 1093 register Lisp_Object new; | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1094 register EMACS_INT size = sizeof (struct Lisp_Vector) + (len - 1) * sizeof (Lisp_Object); |
| 300 | 1095 |
| 1096 if (pureptr + size > PURESIZE) | |
| 1097 error ("Pure Lisp storage exhausted"); | |
| 1098 | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
1099 XSETVECTOR (new, PUREBEG + pureptr); |
| 300 | 1100 pureptr += size; |
| 1101 XVECTOR (new)->size = len; | |
| 1102 return new; | |
| 1103 } | |
| 1104 | |
| 1105 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0, | |
| 1106 "Make a copy of OBJECT in pure storage.\n\ | |
| 1107 Recursively copies contents of vectors and cons cells.\n\ | |
| 1108 Does not copy symbols.") | |
| 1109 (obj) | |
| 1110 register Lisp_Object obj; | |
| 1111 { | |
| 1112 register Lisp_Object new, tem; | |
| 1113 register int i; | |
| 1114 | |
| 485 | 1115 if (NILP (Vpurify_flag)) |
| 300 | 1116 return obj; |
| 1117 | |
| 1118 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE) | |
| 1119 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure) | |
| 1120 return obj; | |
| 1121 | |
| 1122 #ifdef SWITCH_ENUM_BUG | |
| 1123 switch ((int) XTYPE (obj)) | |
| 1124 #else | |
| 1125 switch (XTYPE (obj)) | |
| 1126 #endif | |
| 1127 { | |
| 1128 case Lisp_Marker: | |
| 1129 error ("Attempt to copy a marker to pure storage"); | |
| 1130 | |
| 1131 case Lisp_Cons: | |
| 1132 return pure_cons (XCONS (obj)->car, XCONS (obj)->cdr); | |
| 1133 | |
| 1134 #ifdef LISP_FLOAT_TYPE | |
| 1135 case Lisp_Float: | |
| 1136 return make_pure_float (XFLOAT (obj)->data); | |
| 1137 #endif /* LISP_FLOAT_TYPE */ | |
| 1138 | |
| 1139 case Lisp_String: | |
| 1140 return make_pure_string (XSTRING (obj)->data, XSTRING (obj)->size); | |
| 1141 | |
| 1142 case Lisp_Compiled: | |
| 1143 case Lisp_Vector: | |
| 1144 new = make_pure_vector (XVECTOR (obj)->size); | |
| 1145 for (i = 0; i < XVECTOR (obj)->size; i++) | |
| 1146 { | |
| 1147 tem = XVECTOR (obj)->contents[i]; | |
| 1148 XVECTOR (new)->contents[i] = Fpurecopy (tem); | |
| 1149 } | |
| 1150 XSETTYPE (new, XTYPE (obj)); | |
| 1151 return new; | |
| 1152 | |
| 1153 default: | |
| 1154 return obj; | |
| 1155 } | |
| 1156 } | |
| 1157 | |
| 1158 /* Recording what needs to be marked for gc. */ | |
| 1159 | |
| 1160 struct gcpro *gcprolist; | |
| 1161 | |
| 727 | 1162 #define NSTATICS 512 |
| 300 | 1163 |
| 1164 Lisp_Object *staticvec[NSTATICS] = {0}; | |
| 1165 | |
| 1166 int staticidx = 0; | |
| 1167 | |
| 1168 /* Put an entry in staticvec, pointing at the variable whose address is given */ | |
| 1169 | |
| 1170 void | |
| 1171 staticpro (varaddress) | |
| 1172 Lisp_Object *varaddress; | |
| 1173 { | |
| 1174 staticvec[staticidx++] = varaddress; | |
| 1175 if (staticidx >= NSTATICS) | |
| 1176 abort (); | |
| 1177 } | |
| 1178 | |
| 1179 struct catchtag | |
| 1180 { | |
| 1181 Lisp_Object tag; | |
| 1182 Lisp_Object val; | |
| 1183 struct catchtag *next; | |
| 1184 /* jmp_buf jmp; /* We don't need this for GC purposes */ | |
| 1185 }; | |
| 1186 | |
| 1187 struct backtrace | |
| 1188 { | |
| 1189 struct backtrace *next; | |
| 1190 Lisp_Object *function; | |
| 1191 Lisp_Object *args; /* Points to vector of args. */ | |
| 1192 int nargs; /* length of vector */ | |
| 1193 /* if nargs is UNEVALLED, args points to slot holding list of unevalled args */ | |
| 1194 char evalargs; | |
| 1195 }; | |
| 1196 | |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1197 /* Garbage collection! */ |
|
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1198 |
| 300 | 1199 int total_conses, total_markers, total_symbols, total_string_size, total_vector_size; |
| 1200 int total_free_conses, total_free_markers, total_free_symbols; | |
| 1201 #ifdef LISP_FLOAT_TYPE | |
| 1202 int total_free_floats, total_floats; | |
| 1203 #endif /* LISP_FLOAT_TYPE */ | |
| 1204 | |
| 1205 DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "", | |
| 1206 "Reclaim storage for Lisp objects no longer needed.\n\ | |
| 1207 Returns info on amount of space in use:\n\ | |
| 1208 ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)\n\ | |
| 1209 (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS\n\ | |
| 1210 (USED-FLOATS . FREE-FLOATS))\n\ | |
| 1211 Garbage collection happens automatically if you cons more than\n\ | |
| 1212 `gc-cons-threshold' bytes of Lisp data since previous garbage collection.") | |
| 1213 () | |
| 1214 { | |
| 1215 register struct gcpro *tail; | |
| 1216 register struct specbinding *bind; | |
| 1217 struct catchtag *catch; | |
| 1218 struct handler *handler; | |
| 1219 register struct backtrace *backlist; | |
| 1220 register Lisp_Object tem; | |
| 1221 char *omessage = echo_area_glyphs; | |
|
5874
fbda87c8ad54
(Fgarbage_collect): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5868
diff
changeset
|
1222 int omessage_length = echo_area_glyphs_length; |
| 300 | 1223 char stack_top_variable; |
| 1224 register int i; | |
| 1225 | |
| 1226 /* Save a copy of the contents of the stack, for debugging. */ | |
| 1227 #if MAX_SAVE_STACK > 0 | |
| 485 | 1228 if (NILP (Vpurify_flag)) |
| 300 | 1229 { |
| 1230 i = &stack_top_variable - stack_bottom; | |
| 1231 if (i < 0) i = -i; | |
| 1232 if (i < MAX_SAVE_STACK) | |
| 1233 { | |
| 1234 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
|
1235 stack_copy = (char *) xmalloc (stack_copy_size = i); |
| 300 | 1236 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
|
1237 stack_copy = (char *) xrealloc (stack_copy, (stack_copy_size = i)); |
| 300 | 1238 if (stack_copy) |
| 1239 { | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1240 if ((EMACS_INT) (&stack_top_variable - stack_bottom) > 0) |
| 300 | 1241 bcopy (stack_bottom, stack_copy, i); |
| 1242 else | |
| 1243 bcopy (&stack_top_variable, stack_copy, i); | |
| 1244 } | |
| 1245 } | |
| 1246 } | |
| 1247 #endif /* MAX_SAVE_STACK > 0 */ | |
| 1248 | |
| 1249 if (!noninteractive) | |
| 1250 message1 ("Garbage collecting..."); | |
| 1251 | |
| 1252 /* Don't keep command history around forever */ | |
| 1253 tem = Fnthcdr (make_number (30), Vcommand_history); | |
| 1254 if (CONSP (tem)) | |
| 1255 XCONS (tem)->cdr = Qnil; | |
| 648 | 1256 |
| 300 | 1257 /* Likewise for undo information. */ |
| 1258 { | |
| 1259 register struct buffer *nextb = all_buffers; | |
| 1260 | |
| 1261 while (nextb) | |
| 1262 { | |
| 648 | 1263 /* If a buffer's undo list is Qt, that means that undo is |
| 1264 turned off in that buffer. Calling truncate_undo_list on | |
| 1265 Qt tends to return NULL, which effectively turns undo back on. | |
| 1266 So don't call truncate_undo_list if undo_list is Qt. */ | |
| 1267 if (! EQ (nextb->undo_list, Qt)) | |
| 1268 nextb->undo_list | |
| 764 | 1269 = truncate_undo_list (nextb->undo_list, undo_limit, |
| 1270 undo_strong_limit); | |
| 300 | 1271 nextb = nextb->next; |
| 1272 } | |
| 1273 } | |
| 1274 | |
| 1275 gc_in_progress = 1; | |
| 1276 | |
| 1277 /* clear_marks (); */ | |
| 1278 | |
| 1279 /* In each "large string", set the MARKBIT of the size field. | |
| 1280 That enables mark_object to recognize them. */ | |
| 1281 { | |
| 1282 register struct string_block *b; | |
| 1283 for (b = large_string_blocks; b; b = b->next) | |
| 1284 ((struct Lisp_String *)(&b->chars[0]))->size |= MARKBIT; | |
| 1285 } | |
| 1286 | |
| 1287 /* Mark all the special slots that serve as the roots of accessibility. | |
| 1288 | |
| 1289 Usually the special slots to mark are contained in particular structures. | |
| 1290 Then we know no slot is marked twice because the structures don't overlap. | |
| 1291 In some cases, the structures point to the slots to be marked. | |
| 1292 For these, we use MARKBIT to avoid double marking of the slot. */ | |
| 1293 | |
| 1294 for (i = 0; i < staticidx; i++) | |
| 1295 mark_object (staticvec[i]); | |
| 1296 for (tail = gcprolist; tail; tail = tail->next) | |
| 1297 for (i = 0; i < tail->nvars; i++) | |
| 1298 if (!XMARKBIT (tail->var[i])) | |
| 1299 { | |
| 1300 mark_object (&tail->var[i]); | |
| 1301 XMARK (tail->var[i]); | |
| 1302 } | |
| 1303 for (bind = specpdl; bind != specpdl_ptr; bind++) | |
| 1304 { | |
| 1305 mark_object (&bind->symbol); | |
| 1306 mark_object (&bind->old_value); | |
| 1307 } | |
| 1308 for (catch = catchlist; catch; catch = catch->next) | |
| 1309 { | |
| 1310 mark_object (&catch->tag); | |
| 1311 mark_object (&catch->val); | |
| 1312 } | |
| 1313 for (handler = handlerlist; handler; handler = handler->next) | |
| 1314 { | |
| 1315 mark_object (&handler->handler); | |
| 1316 mark_object (&handler->var); | |
| 1317 } | |
| 1318 for (backlist = backtrace_list; backlist; backlist = backlist->next) | |
| 1319 { | |
| 1320 if (!XMARKBIT (*backlist->function)) | |
| 1321 { | |
| 1322 mark_object (backlist->function); | |
| 1323 XMARK (*backlist->function); | |
| 1324 } | |
| 1325 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY) | |
| 1326 i = 0; | |
| 1327 else | |
| 1328 i = backlist->nargs - 1; | |
| 1329 for (; i >= 0; i--) | |
| 1330 if (!XMARKBIT (backlist->args[i])) | |
| 1331 { | |
| 1332 mark_object (&backlist->args[i]); | |
| 1333 XMARK (backlist->args[i]); | |
| 1334 } | |
| 1335 } | |
| 1336 | |
| 1337 gc_sweep (); | |
| 1338 | |
| 1339 /* Clear the mark bits that we set in certain root slots. */ | |
| 1340 | |
| 1341 for (tail = gcprolist; tail; tail = tail->next) | |
| 1342 for (i = 0; i < tail->nvars; i++) | |
| 1343 XUNMARK (tail->var[i]); | |
| 1344 for (backlist = backtrace_list; backlist; backlist = backlist->next) | |
| 1345 { | |
| 1346 XUNMARK (*backlist->function); | |
| 1347 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY) | |
| 1348 i = 0; | |
| 1349 else | |
| 1350 i = backlist->nargs - 1; | |
| 1351 for (; i >= 0; i--) | |
| 1352 XUNMARK (backlist->args[i]); | |
| 1353 } | |
| 1354 XUNMARK (buffer_defaults.name); | |
| 1355 XUNMARK (buffer_local_symbols.name); | |
| 1356 | |
| 1357 /* clear_marks (); */ | |
| 1358 gc_in_progress = 0; | |
| 1359 | |
| 1360 consing_since_gc = 0; | |
| 1361 if (gc_cons_threshold < 10000) | |
| 1362 gc_cons_threshold = 10000; | |
| 1363 | |
|
3851
dbdcbcbe910a
* alloc.c (Fgarbage_collect): If the minibuffer is active, don't
Jim Blandy <jimb@redhat.com>
parents:
3591
diff
changeset
|
1364 if (omessage || minibuf_level > 0) |
|
5874
fbda87c8ad54
(Fgarbage_collect): Save echo_area_glyphs_length.
Karl Heuer <kwzh@gnu.org>
parents:
5868
diff
changeset
|
1365 message2 (omessage, omessage_length); |
| 300 | 1366 else if (!noninteractive) |
| 1367 message1 ("Garbage collecting...done"); | |
| 1368 | |
| 1369 return Fcons (Fcons (make_number (total_conses), | |
| 1370 make_number (total_free_conses)), | |
| 1371 Fcons (Fcons (make_number (total_symbols), | |
| 1372 make_number (total_free_symbols)), | |
| 1373 Fcons (Fcons (make_number (total_markers), | |
| 1374 make_number (total_free_markers)), | |
| 1375 Fcons (make_number (total_string_size), | |
| 1376 Fcons (make_number (total_vector_size), | |
| 1377 | |
| 1378 #ifdef LISP_FLOAT_TYPE | |
| 1379 Fcons (Fcons (make_number (total_floats), | |
| 1380 make_number (total_free_floats)), | |
| 1381 Qnil) | |
| 1382 #else /* not LISP_FLOAT_TYPE */ | |
| 1383 Qnil | |
| 1384 #endif /* not LISP_FLOAT_TYPE */ | |
| 1385 ))))); | |
| 1386 } | |
| 1387 | |
| 1388 #if 0 | |
| 1389 static void | |
| 1390 clear_marks () | |
| 1391 { | |
| 1392 /* Clear marks on all conses */ | |
| 1393 { | |
| 1394 register struct cons_block *cblk; | |
| 1395 register int lim = cons_block_index; | |
| 1396 | |
| 1397 for (cblk = cons_block; cblk; cblk = cblk->next) | |
| 1398 { | |
| 1399 register int i; | |
| 1400 for (i = 0; i < lim; i++) | |
| 1401 XUNMARK (cblk->conses[i].car); | |
| 1402 lim = CONS_BLOCK_SIZE; | |
| 1403 } | |
| 1404 } | |
| 1405 /* Clear marks on all symbols */ | |
| 1406 { | |
| 1407 register struct symbol_block *sblk; | |
| 1408 register int lim = symbol_block_index; | |
| 1409 | |
| 1410 for (sblk = symbol_block; sblk; sblk = sblk->next) | |
| 1411 { | |
| 1412 register int i; | |
| 1413 for (i = 0; i < lim; i++) | |
| 1414 { | |
| 1415 XUNMARK (sblk->symbols[i].plist); | |
| 1416 } | |
| 1417 lim = SYMBOL_BLOCK_SIZE; | |
| 1418 } | |
| 1419 } | |
| 1420 /* Clear marks on all markers */ | |
| 1421 { | |
| 1422 register struct marker_block *sblk; | |
| 1423 register int lim = marker_block_index; | |
| 1424 | |
| 1425 for (sblk = marker_block; sblk; sblk = sblk->next) | |
| 1426 { | |
| 1427 register int i; | |
| 1428 for (i = 0; i < lim; i++) | |
| 1429 XUNMARK (sblk->markers[i].chain); | |
| 1430 lim = MARKER_BLOCK_SIZE; | |
| 1431 } | |
| 1432 } | |
| 1433 /* Clear mark bits on all buffers */ | |
| 1434 { | |
| 1435 register struct buffer *nextb = all_buffers; | |
| 1436 | |
| 1437 while (nextb) | |
| 1438 { | |
| 1439 XUNMARK (nextb->name); | |
| 1440 nextb = nextb->next; | |
| 1441 } | |
| 1442 } | |
| 1443 } | |
| 1444 #endif | |
| 1445 | |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1446 /* 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
|
1447 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
|
1448 all the references contained in it. |
| 300 | 1449 |
|
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3581
diff
changeset
|
1450 If the object referenced is a short string, the referencing slot |
| 300 | 1451 is threaded into a chain of such slots, pointed to from |
| 1452 the `size' field of the string. The actual string size | |
| 1453 lives in the last slot in the chain. We recognize the end | |
| 1454 because it is < (unsigned) STRING_BLOCK_SIZE. */ | |
| 1455 | |
|
1168
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1456 #define LAST_MARKED_SIZE 500 |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1457 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
|
1458 int last_marked_index; |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1459 |
| 300 | 1460 static void |
| 1461 mark_object (objptr) | |
| 1462 Lisp_Object *objptr; | |
| 1463 { | |
| 1464 register Lisp_Object obj; | |
| 1465 | |
|
5868
a7bd57a60cb8
(mark_object): Fetch obj from *objptr at loop, not at the gotos.
Karl Heuer <kwzh@gnu.org>
parents:
5353
diff
changeset
|
1466 loop: |
| 300 | 1467 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
|
1468 loop2: |
| 300 | 1469 XUNMARK (obj); |
| 1470 | |
| 1471 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE) | |
| 1472 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure) | |
| 1473 return; | |
| 1474 | |
|
1168
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1475 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
|
1476 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
|
1477 last_marked_index = 0; |
|
2b07af77d7ec
(mark_object): Save last 500 values of objptr.
Richard M. Stallman <rms@gnu.org>
parents:
1114
diff
changeset
|
1478 |
| 300 | 1479 #ifdef SWITCH_ENUM_BUG |
| 1480 switch ((int) XGCTYPE (obj)) | |
| 1481 #else | |
| 1482 switch (XGCTYPE (obj)) | |
| 1483 #endif | |
| 1484 { | |
| 1485 case Lisp_String: | |
| 1486 { | |
| 1487 register struct Lisp_String *ptr = XSTRING (obj); | |
| 1488 | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1489 MARK_INTERVAL_TREE (ptr->intervals); |
| 300 | 1490 if (ptr->size & MARKBIT) |
| 1491 /* A large string. Just set ARRAY_MARK_FLAG. */ | |
| 1492 ptr->size |= ARRAY_MARK_FLAG; | |
| 1493 else | |
| 1494 { | |
| 1495 /* A small string. Put this reference | |
| 1496 into the chain of references to it. | |
| 1497 The address OBJPTR is even, so if the address | |
| 1498 includes MARKBIT, put it in the low bit | |
| 1499 when we store OBJPTR into the size field. */ | |
| 1500 | |
| 1501 if (XMARKBIT (*objptr)) | |
| 1502 { | |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
1503 XSETFASTINT (*objptr, ptr->size); |
| 300 | 1504 XMARK (*objptr); |
| 1505 } | |
| 1506 else | |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
1507 XSETFASTINT (*objptr, ptr->size); |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1508 if ((EMACS_INT) objptr & 1) abort (); |
|
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1509 ptr->size = (EMACS_INT) objptr & ~MARKBIT; |
|
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1510 if ((EMACS_INT) objptr & MARKBIT) |
| 300 | 1511 ptr->size ++; |
| 1512 } | |
| 1513 } | |
| 1514 break; | |
| 1515 | |
| 1516 case Lisp_Vector: | |
| 1517 case Lisp_Window: | |
| 1518 case Lisp_Process: | |
| 1519 case Lisp_Window_Configuration: | |
| 1520 { | |
| 1521 register struct Lisp_Vector *ptr = XVECTOR (obj); | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1522 register EMACS_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
|
1523 /* 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
|
1524 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
|
1525 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
|
1526 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
|
1527 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
|
1528 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
|
1529 struct Lisp_Vector *volatile ptr1 = ptr; |
| 300 | 1530 register int i; |
| 1531 | |
| 1532 if (size & ARRAY_MARK_FLAG) break; /* Already marked */ | |
| 1533 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */ | |
| 1534 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
|
1535 mark_object (&ptr1->contents[i]); |
| 300 | 1536 } |
| 1537 break; | |
| 1538 | |
|
1295
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1539 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
|
1540 /* 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
|
1541 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
|
1542 there. */ |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1543 { |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1544 register struct Lisp_Vector *ptr = XVECTOR (obj); |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1545 register EMACS_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
|
1546 /* 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
|
1547 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
|
1548 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
|
1549 |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1550 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
|
1551 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
|
1552 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
|
1553 { |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1554 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
|
1555 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
|
1556 } |
|
6227
f91d4884806e
(mark_object): Add no-op cast.
Richard M. Stallman <rms@gnu.org>
parents:
6211
diff
changeset
|
1557 /* 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
|
1558 (MIPS-ABI + SysVR4, DC/OSx, etc). */ |
|
f91d4884806e
(mark_object): Add no-op cast.
Richard M. Stallman <rms@gnu.org>
parents:
6211
diff
changeset
|
1559 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
|
1560 goto loop; |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1561 } |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1562 |
| 764 | 1563 #ifdef MULTI_FRAME |
| 1564 case Lisp_Frame: | |
| 300 | 1565 { |
|
4494
15b073a6c860
(mark_object): Declare ptr volatile, or don't use it
Richard M. Stallman <rms@gnu.org>
parents:
4212
diff
changeset
|
1566 /* 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
|
1567 register struct frame *volatile ptr = XFRAME (obj); |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
1568 register EMACS_INT size = ptr->size; |
| 300 | 1569 |
| 1570 if (size & ARRAY_MARK_FLAG) break; /* Already marked */ | |
| 1571 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */ | |
| 1572 | |
| 1573 mark_object (&ptr->name); | |
| 764 | 1574 mark_object (&ptr->focus_frame); |
| 300 | 1575 mark_object (&ptr->width); |
| 1576 mark_object (&ptr->height); | |
| 1577 mark_object (&ptr->selected_window); | |
| 1578 mark_object (&ptr->minibuffer_window); | |
| 1579 mark_object (&ptr->param_alist); | |
|
1994
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1957
diff
changeset
|
1580 mark_object (&ptr->scroll_bars); |
|
73ce9dd21093
Use the term `scroll bar', instead of `scrollbar'.
Jim Blandy <jimb@redhat.com>
parents:
1957
diff
changeset
|
1581 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
|
1582 mark_object (&ptr->menu_bar_items); |
|
7111
e3daba09b015
(mark_object, case frame): Mark menu_bar_vector field.
Richard M. Stallman <rms@gnu.org>
parents:
6492
diff
changeset
|
1583 mark_object (&ptr->menu_bar_vector); |
|
2370
4817a2197ac2
(mark_object): Mark face_alist of a frame.
Richard M. Stallman <rms@gnu.org>
parents:
2152
diff
changeset
|
1584 mark_object (&ptr->face_alist); |
| 300 | 1585 } |
| 1586 break; | |
| 2152 | 1587 #endif /* MULTI_FRAME */ |
| 300 | 1588 |
| 1589 case Lisp_Symbol: | |
| 1590 { | |
|
4494
15b073a6c860
(mark_object): Declare ptr volatile, or don't use it
Richard M. Stallman <rms@gnu.org>
parents:
4212
diff
changeset
|
1591 /* 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
|
1592 register struct Lisp_Symbol *volatile ptr = XSYMBOL (obj); |
| 300 | 1593 struct Lisp_Symbol *ptrx; |
| 1594 | |
| 1595 if (XMARKBIT (ptr->plist)) break; | |
| 1596 XMARK (ptr->plist); | |
| 1597 mark_object ((Lisp_Object *) &ptr->value); | |
| 1598 mark_object (&ptr->function); | |
| 1599 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
|
1600 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
|
1601 mark_object (&ptr->name); |
| 300 | 1602 ptr = ptr->next; |
| 1603 if (ptr) | |
| 1604 { | |
|
5868
a7bd57a60cb8
(mark_object): Fetch obj from *objptr at loop, not at the gotos.
Karl Heuer <kwzh@gnu.org>
parents:
5353
diff
changeset
|
1605 /* 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
|
1606 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
|
1607 ptrx = ptr; /* Use of ptrx avoids compiler bug on Sun */ |
| 300 | 1608 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
|
1609 /* 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
|
1610 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
|
1611 goto loop2; |
| 300 | 1612 } |
| 1613 } | |
| 1614 break; | |
| 1615 | |
| 1616 case Lisp_Marker: | |
| 1617 XMARK (XMARKER (obj)->chain); | |
| 1618 /* DO NOT mark thru the marker's chain. | |
| 1619 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
|
1620 instead, markers are removed from the chain when freed by gc. */ |
| 300 | 1621 break; |
| 1622 | |
| 1623 case Lisp_Cons: | |
| 1624 case Lisp_Buffer_Local_Value: | |
| 1625 case Lisp_Some_Buffer_Local_Value: | |
|
2782
683f4472f1c8
* lisp.h (Lisp_Overlay): New tag.
Jim Blandy <jimb@redhat.com>
parents:
2507
diff
changeset
|
1626 case Lisp_Overlay: |
| 300 | 1627 { |
| 1628 register struct Lisp_Cons *ptr = XCONS (obj); | |
| 1629 if (XMARKBIT (ptr->car)) break; | |
| 1630 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
|
1631 /* 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
|
1632 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
|
1633 { |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1634 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
|
1635 goto loop; |
|
a9241dc503ab
(mark_object): Avoid car recursion on cons with nil in cdr.
Richard M. Stallman <rms@gnu.org>
parents:
1168
diff
changeset
|
1636 } |
| 300 | 1637 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
|
1638 /* 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
|
1639 objptr = &XCONS (obj)->cdr; |
| 300 | 1640 goto loop; |
| 1641 } | |
| 1642 | |
| 1643 #ifdef LISP_FLOAT_TYPE | |
| 1644 case Lisp_Float: | |
| 1645 XMARK (XFLOAT (obj)->type); | |
| 1646 break; | |
| 1647 #endif /* LISP_FLOAT_TYPE */ | |
| 1648 | |
| 1649 case Lisp_Buffer: | |
| 1650 if (!XMARKBIT (XBUFFER (obj)->name)) | |
| 1651 mark_buffer (obj); | |
| 1652 break; | |
| 1653 | |
| 1654 case Lisp_Int: | |
| 1655 case Lisp_Void: | |
| 1656 case Lisp_Subr: | |
| 1657 case Lisp_Intfwd: | |
| 1658 case Lisp_Boolfwd: | |
| 1659 case Lisp_Objfwd: | |
| 1660 case Lisp_Buffer_Objfwd: | |
| 1661 /* Don't bother with Lisp_Buffer_Objfwd, | |
| 1662 since all markable slots in current buffer marked anyway. */ | |
| 1663 /* Don't need to do Lisp_Objfwd, since the places they point | |
| 1664 are protected with staticpro. */ | |
| 1665 break; | |
| 1666 | |
| 1667 default: | |
| 1668 abort (); | |
| 1669 } | |
| 1670 } | |
| 1671 | |
| 1672 /* Mark the pointers in a buffer structure. */ | |
| 1673 | |
| 1674 static void | |
| 1675 mark_buffer (buf) | |
| 1676 Lisp_Object buf; | |
| 1677 { | |
| 1678 register struct buffer *buffer = XBUFFER (buf); | |
| 1679 register Lisp_Object *ptr; | |
| 1680 | |
| 1681 /* This is the buffer's markbit */ | |
| 1682 mark_object (&buffer->name); | |
| 1683 XMARK (buffer->name); | |
| 1684 | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1685 MARK_INTERVAL_TREE (buffer->intervals); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1686 |
| 300 | 1687 #if 0 |
| 1688 mark_object (buffer->syntax_table); | |
| 1689 | |
| 1690 /* Mark the various string-pointers in the buffer object. | |
| 1691 Since the strings may be relocated, we must mark them | |
| 1692 in their actual slots. So gc_sweep must convert each slot | |
| 1693 back to an ordinary C pointer. */ | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
1694 XSETSTRING (*(Lisp_Object *)&buffer->upcase_table, buffer->upcase_table); |
| 300 | 1695 mark_object ((Lisp_Object *)&buffer->upcase_table); |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
1696 XSETSTRING (*(Lisp_Object *)&buffer->downcase_table, buffer->downcase_table); |
| 300 | 1697 mark_object ((Lisp_Object *)&buffer->downcase_table); |
| 1698 | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
1699 XSETSTRING (*(Lisp_Object *)&buffer->sort_table, buffer->sort_table); |
| 300 | 1700 mark_object ((Lisp_Object *)&buffer->sort_table); |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
1701 XSETSTRING (*(Lisp_Object *)&buffer->folding_sort_table, buffer->folding_sort_table); |
| 300 | 1702 mark_object ((Lisp_Object *)&buffer->folding_sort_table); |
| 1703 #endif | |
| 1704 | |
| 1705 for (ptr = &buffer->name + 1; | |
| 1706 (char *)ptr < (char *)buffer + sizeof (struct buffer); | |
| 1707 ptr++) | |
| 1708 mark_object (ptr); | |
| 1709 } | |
| 1710 | |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1711 /* Sweep: find all structures not marked, and free them. */ |
| 300 | 1712 |
| 1713 static void | |
| 1714 gc_sweep () | |
| 1715 { | |
| 1716 total_string_size = 0; | |
| 1717 compact_strings (); | |
| 1718 | |
| 1719 /* Put all unmarked conses on free list */ | |
| 1720 { | |
| 1721 register struct cons_block *cblk; | |
| 1722 register int lim = cons_block_index; | |
| 1723 register int num_free = 0, num_used = 0; | |
| 1724 | |
| 1725 cons_free_list = 0; | |
| 1726 | |
| 1727 for (cblk = cons_block; cblk; cblk = cblk->next) | |
| 1728 { | |
| 1729 register int i; | |
| 1730 for (i = 0; i < lim; i++) | |
| 1731 if (!XMARKBIT (cblk->conses[i].car)) | |
| 1732 { | |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
1733 XSETFASTINT (cblk->conses[i].car, (EMACS_INT) cons_free_list); |
| 300 | 1734 num_free++; |
| 1735 cons_free_list = &cblk->conses[i]; | |
| 1736 } | |
| 1737 else | |
| 1738 { | |
| 1739 num_used++; | |
| 1740 XUNMARK (cblk->conses[i].car); | |
| 1741 } | |
| 1742 lim = CONS_BLOCK_SIZE; | |
| 1743 } | |
| 1744 total_conses = num_used; | |
| 1745 total_free_conses = num_free; | |
| 1746 } | |
| 1747 | |
| 1748 #ifdef LISP_FLOAT_TYPE | |
| 1749 /* Put all unmarked floats on free list */ | |
| 1750 { | |
| 1751 register struct float_block *fblk; | |
| 1752 register int lim = float_block_index; | |
| 1753 register int num_free = 0, num_used = 0; | |
| 1754 | |
| 1755 float_free_list = 0; | |
| 1756 | |
| 1757 for (fblk = float_block; fblk; fblk = fblk->next) | |
| 1758 { | |
| 1759 register int i; | |
| 1760 for (i = 0; i < lim; i++) | |
| 1761 if (!XMARKBIT (fblk->floats[i].type)) | |
| 1762 { | |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
1763 XSETFASTINT (fblk->floats[i].type, (EMACS_INT) float_free_list); |
| 300 | 1764 num_free++; |
| 1765 float_free_list = &fblk->floats[i]; | |
| 1766 } | |
| 1767 else | |
| 1768 { | |
| 1769 num_used++; | |
| 1770 XUNMARK (fblk->floats[i].type); | |
| 1771 } | |
| 1772 lim = FLOAT_BLOCK_SIZE; | |
| 1773 } | |
| 1774 total_floats = num_used; | |
| 1775 total_free_floats = num_free; | |
| 1776 } | |
| 1777 #endif /* LISP_FLOAT_TYPE */ | |
| 1778 | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1779 #ifdef USE_TEXT_PROPERTIES |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1780 /* Put all unmarked intervals on free list */ |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1781 { |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1782 register struct interval_block *iblk; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1783 register int lim = interval_block_index; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1784 register int num_free = 0, num_used = 0; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1785 |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1786 interval_free_list = 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 for (iblk = interval_block; iblk; iblk = iblk->next) |
|
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 register int i; |
|
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 for (i = 0; i < lim; 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 if (! XMARKBIT (iblk->intervals[i].plist)) |
|
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 iblk->intervals[i].parent = interval_free_list; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1797 interval_free_list = &iblk->intervals[i]; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1798 num_free++; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1799 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1800 else |
|
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 num_used++; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1803 XUNMARK (iblk->intervals[i].plist); |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1804 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1805 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1806 lim = INTERVAL_BLOCK_SIZE; |
|
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 total_intervals = num_used; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1809 total_free_intervals = num_free; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1810 } |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1811 #endif /* USE_TEXT_PROPERTIES */ |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1812 |
| 300 | 1813 /* Put all unmarked symbols on free list */ |
| 1814 { | |
| 1815 register struct symbol_block *sblk; | |
| 1816 register int lim = symbol_block_index; | |
| 1817 register int num_free = 0, num_used = 0; | |
| 1818 | |
| 1819 symbol_free_list = 0; | |
| 1820 | |
| 1821 for (sblk = symbol_block; sblk; sblk = sblk->next) | |
| 1822 { | |
| 1823 register int i; | |
| 1824 for (i = 0; i < lim; i++) | |
| 1825 if (!XMARKBIT (sblk->symbols[i].plist)) | |
| 1826 { | |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
1827 XSETFASTINT (sblk->symbols[i].value, (EMACS_INT) symbol_free_list); |
| 300 | 1828 symbol_free_list = &sblk->symbols[i]; |
| 1829 num_free++; | |
| 1830 } | |
| 1831 else | |
| 1832 { | |
| 1833 num_used++; | |
| 1834 sblk->symbols[i].name | |
| 1835 = XSTRING (*(Lisp_Object *) &sblk->symbols[i].name); | |
| 1836 XUNMARK (sblk->symbols[i].plist); | |
| 1837 } | |
| 1838 lim = SYMBOL_BLOCK_SIZE; | |
| 1839 } | |
| 1840 total_symbols = num_used; | |
| 1841 total_free_symbols = num_free; | |
| 1842 } | |
| 1843 | |
| 1844 #ifndef standalone | |
| 1845 /* Put all unmarked markers on free list. | |
| 1846 Dechain each one first from the buffer it points into. */ | |
| 1847 { | |
| 1848 register struct marker_block *mblk; | |
| 1849 struct Lisp_Marker *tem1; | |
| 1850 register int lim = marker_block_index; | |
| 1851 register int num_free = 0, num_used = 0; | |
| 1852 | |
| 1853 marker_free_list = 0; | |
| 1854 | |
| 1855 for (mblk = marker_block; mblk; mblk = mblk->next) | |
| 1856 { | |
| 1857 register int i; | |
| 1858 for (i = 0; i < lim; i++) | |
| 1859 if (!XMARKBIT (mblk->markers[i].chain)) | |
| 1860 { | |
| 1861 Lisp_Object tem; | |
| 1862 tem1 = &mblk->markers[i]; /* tem1 avoids Sun compiler bug */ | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
1863 XSETMARKER (tem, tem1); |
| 300 | 1864 unchain_marker (tem); |
|
9295
17d393a8eed6
(free_float, make_float, free_cons, Flist, Fvector, Fmake_byte_code,
Karl Heuer <kwzh@gnu.org>
parents:
9261
diff
changeset
|
1865 XSETFASTINT (mblk->markers[i].chain, (EMACS_INT) marker_free_list); |
| 300 | 1866 marker_free_list = &mblk->markers[i]; |
| 1867 num_free++; | |
| 1868 } | |
| 1869 else | |
| 1870 { | |
| 1871 num_used++; | |
| 1872 XUNMARK (mblk->markers[i].chain); | |
| 1873 } | |
| 1874 lim = MARKER_BLOCK_SIZE; | |
| 1875 } | |
| 1876 | |
| 1877 total_markers = num_used; | |
| 1878 total_free_markers = num_free; | |
| 1879 } | |
| 1880 | |
| 1881 /* Free all unmarked buffers */ | |
| 1882 { | |
| 1883 register struct buffer *buffer = all_buffers, *prev = 0, *next; | |
| 1884 | |
| 1885 while (buffer) | |
| 1886 if (!XMARKBIT (buffer->name)) | |
| 1887 { | |
| 1888 if (prev) | |
| 1889 prev->next = buffer->next; | |
| 1890 else | |
| 1891 all_buffers = buffer->next; | |
| 1892 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
|
1893 xfree (buffer); |
| 300 | 1894 buffer = next; |
| 1895 } | |
| 1896 else | |
| 1897 { | |
| 1898 XUNMARK (buffer->name); | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
1899 UNMARK_BALANCE_INTERVALS (buffer->intervals); |
| 300 | 1900 |
| 1901 #if 0 | |
| 1902 /* Each `struct Lisp_String *' was turned into a Lisp_Object | |
| 1903 for purposes of marking and relocation. | |
| 1904 Turn them back into C pointers now. */ | |
| 1905 buffer->upcase_table | |
| 1906 = XSTRING (*(Lisp_Object *)&buffer->upcase_table); | |
| 1907 buffer->downcase_table | |
| 1908 = XSTRING (*(Lisp_Object *)&buffer->downcase_table); | |
| 1909 buffer->sort_table | |
| 1910 = XSTRING (*(Lisp_Object *)&buffer->sort_table); | |
| 1911 buffer->folding_sort_table | |
| 1912 = XSTRING (*(Lisp_Object *)&buffer->folding_sort_table); | |
| 1913 #endif | |
| 1914 | |
| 1915 prev = buffer, buffer = buffer->next; | |
| 1916 } | |
| 1917 } | |
| 1918 | |
| 1919 #endif /* standalone */ | |
| 1920 | |
| 1921 /* Free all unmarked vectors */ | |
| 1922 { | |
| 1923 register struct Lisp_Vector *vector = all_vectors, *prev = 0, *next; | |
| 1924 total_vector_size = 0; | |
| 1925 | |
| 1926 while (vector) | |
| 1927 if (!(vector->size & ARRAY_MARK_FLAG)) | |
| 1928 { | |
| 1929 if (prev) | |
| 1930 prev->next = vector->next; | |
| 1931 else | |
| 1932 all_vectors = vector->next; | |
| 1933 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
|
1934 xfree (vector); |
| 300 | 1935 vector = next; |
| 1936 } | |
| 1937 else | |
| 1938 { | |
| 1939 vector->size &= ~ARRAY_MARK_FLAG; | |
| 1940 total_vector_size += vector->size; | |
| 1941 prev = vector, vector = vector->next; | |
| 1942 } | |
| 1943 } | |
| 1944 | |
| 1945 /* Free all "large strings" not marked with ARRAY_MARK_FLAG. */ | |
| 1946 { | |
| 1947 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
|
1948 struct Lisp_String *s; |
| 300 | 1949 |
| 1950 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
|
1951 { |
|
0b32ee899a3a
Consistently use the mark bit of the root interval's parent field
Jim Blandy <jimb@redhat.com>
parents:
4087
diff
changeset
|
1952 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
|
1953 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
|
1954 { |
|
0b32ee899a3a
Consistently use the mark bit of the root interval's parent field
Jim Blandy <jimb@redhat.com>
parents:
4087
diff
changeset
|
1955 ((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
|
1956 &= ~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
|
1957 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
|
1958 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
|
1959 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
|
1960 } |
|
0b32ee899a3a
Consistently use the mark bit of the root interval's parent field
Jim Blandy <jimb@redhat.com>
parents:
4087
diff
changeset
|
1961 else |
|
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 if (prev) |
|
0b32ee899a3a
Consistently use the mark bit of the root interval's parent field
Jim Blandy <jimb@redhat.com>
parents:
4087
diff
changeset
|
1964 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
|
1965 else |
|
0b32ee899a3a
Consistently use the mark bit of the root interval's parent field
Jim Blandy <jimb@redhat.com>
parents:
4087
diff
changeset
|
1966 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
|
1967 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
|
1968 xfree (sb); |
|
0b32ee899a3a
Consistently use the mark bit of the root interval's parent field
Jim Blandy <jimb@redhat.com>
parents:
4087
diff
changeset
|
1969 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 } |
|
0b32ee899a3a
Consistently use the mark bit of the root interval's parent field
Jim Blandy <jimb@redhat.com>
parents:
4087
diff
changeset
|
1971 } |
| 300 | 1972 } |
| 1973 } | |
| 1974 | |
|
1908
d649f2179d67
* alloc.c (make_pure_float): Align pureptr on a sizeof (double)
Jim Blandy <jimb@redhat.com>
parents:
1893
diff
changeset
|
1975 /* Compactify strings, relocate references, and free empty string blocks. */ |
| 300 | 1976 |
| 1977 static void | |
| 1978 compact_strings () | |
| 1979 { | |
| 1980 /* String block of old strings we are scanning. */ | |
| 1981 register struct string_block *from_sb; | |
| 1982 /* A preceding string block (or maybe the same one) | |
| 1983 where we are copying the still-live strings to. */ | |
| 1984 register struct string_block *to_sb; | |
| 1985 int pos; | |
| 1986 int to_pos; | |
| 1987 | |
| 1988 to_sb = first_string_block; | |
| 1989 to_pos = 0; | |
| 1990 | |
| 1991 /* Scan each existing string block sequentially, string by string. */ | |
| 1992 for (from_sb = first_string_block; from_sb; from_sb = from_sb->next) | |
| 1993 { | |
| 1994 pos = 0; | |
| 1995 /* POS is the index of the next string in the block. */ | |
| 1996 while (pos < from_sb->pos) | |
| 1997 { | |
| 1998 register struct Lisp_String *nextstr | |
| 1999 = (struct Lisp_String *) &from_sb->chars[pos]; | |
| 2000 | |
| 2001 register struct Lisp_String *newaddr; | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2002 register EMACS_INT size = nextstr->size; |
| 300 | 2003 |
| 2004 /* NEXTSTR is the old address of the next string. | |
| 2005 Just skip it if it isn't marked. */ | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2006 if ((EMACS_UINT) size > STRING_BLOCK_SIZE) |
| 300 | 2007 { |
| 2008 /* It is marked, so its size field is really a chain of refs. | |
| 2009 Find the end of the chain, where the actual size lives. */ | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2010 while ((EMACS_UINT) size > STRING_BLOCK_SIZE) |
| 300 | 2011 { |
| 2012 if (size & 1) size ^= MARKBIT | 1; | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2013 size = *(EMACS_INT *)size & ~MARKBIT; |
| 300 | 2014 } |
| 2015 | |
| 2016 total_string_size += size; | |
| 2017 | |
| 2018 /* If it won't fit in TO_SB, close it out, | |
| 2019 and move to the next sb. Keep doing so until | |
| 2020 TO_SB reaches a large enough, empty enough string block. | |
| 2021 We know that TO_SB cannot advance past FROM_SB here | |
| 2022 since FROM_SB is large enough to contain this string. | |
| 2023 Any string blocks skipped here | |
| 2024 will be patched out and freed later. */ | |
| 2025 while (to_pos + STRING_FULLSIZE (size) | |
| 2026 > max (to_sb->pos, STRING_BLOCK_SIZE)) | |
| 2027 { | |
| 2028 to_sb->pos = to_pos; | |
| 2029 to_sb = to_sb->next; | |
| 2030 to_pos = 0; | |
| 2031 } | |
| 2032 /* Compute new address of this string | |
| 2033 and update TO_POS for the space being used. */ | |
| 2034 newaddr = (struct Lisp_String *) &to_sb->chars[to_pos]; | |
| 2035 to_pos += STRING_FULLSIZE (size); | |
| 2036 | |
| 2037 /* Copy the string itself to the new place. */ | |
| 2038 if (nextstr != newaddr) | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2039 bcopy (nextstr, newaddr, size + 1 + sizeof (EMACS_INT) |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
2040 + INTERVAL_PTR_SIZE); |
| 300 | 2041 |
| 2042 /* Go through NEXTSTR's chain of references | |
| 2043 and make each slot in the chain point to | |
| 2044 the new address of this string. */ | |
| 2045 size = newaddr->size; | |
|
8817
48ff00bebef6
(pure, pure_size): Use EMACS_INT.
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
2046 while ((EMACS_UINT) size > STRING_BLOCK_SIZE) |
| 300 | 2047 { |
| 2048 register Lisp_Object *objptr; | |
| 2049 if (size & 1) size ^= MARKBIT | 1; | |
| 2050 objptr = (Lisp_Object *)size; | |
| 2051 | |
| 2052 size = XFASTINT (*objptr) & ~MARKBIT; | |
| 2053 if (XMARKBIT (*objptr)) | |
| 2054 { | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
2055 XSETSTRING (*objptr, newaddr); |
| 300 | 2056 XMARK (*objptr); |
| 2057 } | |
| 2058 else | |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
2059 XSETSTRING (*objptr, newaddr); |
| 300 | 2060 } |
| 2061 /* Store the actual size in the size field. */ | |
| 2062 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
|
2063 |
|
4212
a696547fb51e
(compact_strings): Add USE_TEXT_PROPERTIES conditional.
Richard M. Stallman <rms@gnu.org>
parents:
4139
diff
changeset
|
2064 #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
|
2065 /* 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
|
2066 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
|
2067 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
|
2068 { |
|
0b32ee899a3a
Consistently use the mark bit of the root interval's parent field
Jim Blandy <jimb@redhat.com>
parents:
4087
diff
changeset
|
2069 UNMARK_BALANCE_INTERVALS (newaddr->intervals); |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
2070 XSETSTRING (* (Lisp_Object *) &newaddr->intervals->parent, |
|
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
2071 newaddr); |
|
4139
0b32ee899a3a
Consistently use the mark bit of the root interval's parent field
Jim Blandy <jimb@redhat.com>
parents:
4087
diff
changeset
|
2072 } |
|
4212
a696547fb51e
(compact_strings): Add USE_TEXT_PROPERTIES conditional.
Richard M. Stallman <rms@gnu.org>
parents:
4139
diff
changeset
|
2073 #endif /* USE_TEXT_PROPERTIES */ |
| 300 | 2074 } |
| 2075 pos += STRING_FULLSIZE (size); | |
| 2076 } | |
| 2077 } | |
| 2078 | |
| 2079 /* Close out the last string block still used and free any that follow. */ | |
| 2080 to_sb->pos = to_pos; | |
| 2081 current_string_block = to_sb; | |
| 2082 | |
| 2083 from_sb = to_sb->next; | |
| 2084 to_sb->next = 0; | |
| 2085 while (from_sb) | |
| 2086 { | |
| 2087 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
|
2088 xfree (from_sb); |
| 300 | 2089 from_sb = to_sb; |
| 2090 } | |
| 2091 | |
| 2092 /* Free any empty string blocks further back in the chain. | |
| 2093 This loop will never free first_string_block, but it is very | |
| 2094 unlikely that that one will become empty, so why bother checking? */ | |
| 2095 | |
| 2096 from_sb = first_string_block; | |
| 2097 while (to_sb = from_sb->next) | |
| 2098 { | |
| 2099 if (to_sb->pos == 0) | |
| 2100 { | |
| 2101 if (from_sb->next = to_sb->next) | |
| 2102 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
|
2103 xfree (to_sb); |
| 300 | 2104 } |
| 2105 else | |
| 2106 from_sb = to_sb; | |
| 2107 } | |
| 2108 } | |
| 2109 | |
|
1327
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2110 /* Debugging aids. */ |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2111 |
|
5353
6389ed5b45ac
(Fmemory_limit): No longer interactive.
Richard M. Stallman <rms@gnu.org>
parents:
4956
diff
changeset
|
2112 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
|
2113 "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
|
2114 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
|
2115 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
|
2116 () |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2117 { |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2118 Lisp_Object end; |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2119 |
|
9261
e5ba7993d378
(VALIDATE_LISP_STORAGE, make_float, Fcons, Fmake_vector, Fmake_symbol,
Karl Heuer <kwzh@gnu.org>
parents:
9144
diff
changeset
|
2120 XSETINT (end, (EMACS_INT) sbrk (0) / 1024); |
|
1327
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2121 |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2122 return end; |
|
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2123 } |
|
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 |
| 300 | 2126 /* Initialization */ |
| 2127 | |
| 2128 init_alloc_once () | |
| 2129 { | |
| 2130 /* Used to do Vpurify_flag = Qt here, but Qt isn't set up yet! */ | |
| 2131 pureptr = 0; | |
| 356 | 2132 #ifdef HAVE_SHM |
| 2133 pure_size = PURESIZE; | |
| 2134 #endif | |
| 300 | 2135 all_vectors = 0; |
| 2136 ignore_warnings = 1; | |
| 2137 init_strings (); | |
| 2138 init_cons (); | |
| 2139 init_symbol (); | |
| 2140 init_marker (); | |
| 2141 #ifdef LISP_FLOAT_TYPE | |
| 2142 init_float (); | |
| 2143 #endif /* LISP_FLOAT_TYPE */ | |
|
1300
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
2144 INIT_INTERVALS; |
|
b13b79e28eb5
* alloc.c: #include "intervals.h".
Joseph Arceneaux <jla@gnu.org>
parents:
1295
diff
changeset
|
2145 |
| 300 | 2146 ignore_warnings = 0; |
| 2147 gcprolist = 0; | |
| 2148 staticidx = 0; | |
| 2149 consing_since_gc = 0; | |
| 2150 gc_cons_threshold = 100000; | |
| 2151 #ifdef VIRT_ADDR_VARIES | |
| 2152 malloc_sbrk_unused = 1<<22; /* A large number */ | |
| 2153 malloc_sbrk_used = 100000; /* as reasonable as any number */ | |
| 2154 #endif /* VIRT_ADDR_VARIES */ | |
| 2155 } | |
| 2156 | |
| 2157 init_alloc () | |
| 2158 { | |
| 2159 gcprolist = 0; | |
| 2160 } | |
| 2161 | |
| 2162 void | |
| 2163 syms_of_alloc () | |
| 2164 { | |
| 2165 DEFVAR_INT ("gc-cons-threshold", &gc_cons_threshold, | |
| 2166 "*Number of bytes of consing between garbage collections.\n\ | |
| 2167 Garbage collection can happen automatically once this many bytes have been\n\ | |
| 2168 allocated since the last garbage collection. All data types count.\n\n\ | |
| 2169 Garbage collection happens automatically only when `eval' is called.\n\n\ | |
| 2170 By binding this temporarily to a large number, you can effectively\n\ | |
| 2171 prevent garbage collection during a part of the program."); | |
| 2172 | |
| 2173 DEFVAR_INT ("pure-bytes-used", &pureptr, | |
| 2174 "Number of bytes of sharable Lisp data allocated so far."); | |
| 2175 | |
| 2176 #if 0 | |
| 2177 DEFVAR_INT ("data-bytes-used", &malloc_sbrk_used, | |
| 2178 "Number of bytes of unshared memory allocated in this session."); | |
| 2179 | |
| 2180 DEFVAR_INT ("data-bytes-free", &malloc_sbrk_unused, | |
| 2181 "Number of bytes of unshared memory remaining available in this session."); | |
| 2182 #endif | |
| 2183 | |
| 2184 DEFVAR_LISP ("purify-flag", &Vpurify_flag, | |
| 2185 "Non-nil means loading Lisp code in order to dump an executable.\n\ | |
| 2186 This means that certain objects should be allocated in shared (pure) space."); | |
| 2187 | |
| 764 | 2188 DEFVAR_INT ("undo-limit", &undo_limit, |
| 300 | 2189 "Keep no more undo information once it exceeds this size.\n\ |
| 764 | 2190 This limit is applied when garbage collection happens.\n\ |
| 300 | 2191 The size is counted as the number of bytes occupied,\n\ |
| 2192 which includes both saved text and other data."); | |
| 764 | 2193 undo_limit = 20000; |
| 300 | 2194 |
| 764 | 2195 DEFVAR_INT ("undo-strong-limit", &undo_strong_limit, |
| 300 | 2196 "Don't keep more than this much size of undo information.\n\ |
| 2197 A command which pushes past this size is itself forgotten.\n\ | |
| 764 | 2198 This limit is applied when garbage collection happens.\n\ |
| 300 | 2199 The size is counted as the number of bytes occupied,\n\ |
| 2200 which includes both saved text and other data."); | |
| 764 | 2201 undo_strong_limit = 30000; |
| 300 | 2202 |
|
6116
64417bbbb128
(memory_full): Use new variable memory_signal_data with precomputed value
Karl Heuer <kwzh@gnu.org>
parents:
5874
diff
changeset
|
2203 /* 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
|
2204 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
|
2205 memory_signal_data |
|
752d4237f869
(memory_signal_data): No longer static.
Richard M. Stallman <rms@gnu.org>
parents:
6116
diff
changeset
|
2206 = 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
|
2207 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
|
2208 |
| 300 | 2209 defsubr (&Scons); |
| 2210 defsubr (&Slist); | |
| 2211 defsubr (&Svector); | |
| 2212 defsubr (&Smake_byte_code); | |
| 2213 defsubr (&Smake_list); | |
| 2214 defsubr (&Smake_vector); | |
| 2215 defsubr (&Smake_string); | |
| 2216 defsubr (&Smake_symbol); | |
| 2217 defsubr (&Smake_marker); | |
| 2218 defsubr (&Spurecopy); | |
| 2219 defsubr (&Sgarbage_collect); | |
|
1327
ef16e7c0d402
* alloc.c (Fmemory_limit): New function.
Jim Blandy <jimb@redhat.com>
parents:
1318
diff
changeset
|
2220 defsubr (&Smemory_limit); |
| 300 | 2221 } |
