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