(transpose_markers): Update marker's bytepos.
[bpt/emacs.git] / src / alloc.c
CommitLineData
7146af97 1/* Storage allocation and gc for GNU Emacs Lisp interpreter.
188b4aea 2 Copyright (C) 1985, 86, 88, 93, 94, 95, 97 Free Software Foundation, Inc.
7146af97
JB
3
4This file is part of GNU Emacs.
5
6GNU Emacs is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
7c299e7a 8the Free Software Foundation; either version 2, or (at your option)
7146af97
JB
9any later version.
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Emacs; see the file COPYING. If not, write to
3b7ad313
EN
18the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
7146af97 20
290c8f1e 21/* Note that this declares bzero on OSF/1. How dumb. */
cf026b25 22#include <signal.h>
7146af97 23
18160b98 24#include <config.h>
7146af97 25#include "lisp.h"
d5e35230 26#include "intervals.h"
4c0be5f4 27#include "puresize.h"
7146af97
JB
28#ifndef standalone
29#include "buffer.h"
30#include "window.h"
502b9b64 31#include "frame.h"
9ac0d9e0 32#include "blockinput.h"
077d751f 33#include "keyboard.h"
7146af97
JB
34#endif
35
e065a56e
JB
36#include "syssignal.h"
37
ee1eea5c
KH
38extern char *sbrk ();
39
d1658221
RS
40#ifdef DOUG_LEA_MALLOC
41#include <malloc.h>
42#define __malloc_size_t int
43#else
276cbe5a
RS
44/* The following come from gmalloc.c. */
45
46#if defined (__STDC__) && __STDC__
47#include <stddef.h>
48#define __malloc_size_t size_t
49#else
50#define __malloc_size_t unsigned int
51#endif
52extern __malloc_size_t _bytes_used;
53extern int __malloc_extra_blocks;
d1658221 54#endif /* !defined(DOUG_LEA_MALLOC) */
276cbe5a 55
0f936def
RS
56extern Lisp_Object Vhistory_length;
57
7146af97 58#define max(A,B) ((A) > (B) ? (A) : (B))
b580578b 59#define min(A,B) ((A) < (B) ? (A) : (B))
7146af97
JB
60
61/* Macro to verify that storage intended for Lisp objects is not
62 out of range to fit in the space for a pointer.
63 ADDRESS is the start of the block, and SIZE
64 is the amount of space within which objects can start. */
65#define VALIDATE_LISP_STORAGE(address, size) \
66do \
67 { \
68 Lisp_Object val; \
45d12a89 69 XSETCONS (val, (char *) address + size); \
7146af97
JB
70 if ((char *) XCONS (val) != (char *) address + size) \
71 { \
9ac0d9e0 72 xfree (address); \
7146af97
JB
73 memory_full (); \
74 } \
75 } while (0)
76
276cbe5a
RS
77/* Value of _bytes_used, when spare_memory was freed. */
78static __malloc_size_t bytes_used_when_full;
79
7146af97
JB
80/* Number of bytes of consing done since the last gc */
81int consing_since_gc;
82
310ea200
RS
83/* Count the amount of consing of various sorts of space. */
84int cons_cells_consed;
85int floats_consed;
86int vector_cells_consed;
87int symbols_consed;
88int string_chars_consed;
89int misc_objects_consed;
90int intervals_consed;
91
7146af97 92/* Number of bytes of consing since gc before another gc should be done. */
b580578b 93int gc_cons_threshold;
7146af97
JB
94
95/* Nonzero during gc */
96int gc_in_progress;
97
299585ee
RS
98/* Nonzero means display messages at beginning and end of GC. */
99int garbage_collection_messages;
100
7146af97
JB
101#ifndef VIRT_ADDR_VARIES
102extern
103#endif /* VIRT_ADDR_VARIES */
104 int malloc_sbrk_used;
105
106#ifndef VIRT_ADDR_VARIES
107extern
108#endif /* VIRT_ADDR_VARIES */
109 int malloc_sbrk_unused;
110
502b9b64
JB
111/* Two limits controlling how much undo information to keep. */
112int undo_limit;
113int undo_strong_limit;
7146af97 114
fd27a537
RS
115int total_conses, total_markers, total_symbols, total_string_size, total_vector_size;
116int total_free_conses, total_free_markers, total_free_symbols;
117#ifdef LISP_FLOAT_TYPE
118int total_free_floats, total_floats;
119#endif /* LISP_FLOAT_TYPE */
120
276cbe5a
RS
121/* Points to memory space allocated as "spare",
122 to be freed if we run out of memory. */
123static char *spare_memory;
124
125/* Amount of spare memory to keep in reserve. */
126#define SPARE_MEMORY (1 << 14)
127
128/* Number of extra blocks malloc should get when it needs more core. */
129static int malloc_hysteresis;
130
3c06d205
KH
131/* Nonzero when malloc is called for allocating Lisp object space. */
132int allocating_for_lisp;
133
7146af97
JB
134/* Non-nil means defun should do purecopy on the function definition */
135Lisp_Object Vpurify_flag;
136
137#ifndef HAVE_SHM
42607681 138EMACS_INT pure[PURESIZE / sizeof (EMACS_INT)] = {0,}; /* Force it into data space! */
7146af97
JB
139#define PUREBEG (char *) pure
140#else
141#define pure PURE_SEG_BITS /* Use shared memory segment */
142#define PUREBEG (char *)PURE_SEG_BITS
4c0be5f4
JB
143
144/* This variable is used only by the XPNTR macro when HAVE_SHM is
145 defined. If we used the PURESIZE macro directly there, that would
146 make most of emacs dependent on puresize.h, which we don't want -
147 you should be able to change that without too much recompilation.
148 So map_in_data initializes pure_size, and the dependencies work
149 out. */
42607681 150EMACS_INT pure_size;
7146af97
JB
151#endif /* not HAVE_SHM */
152
153/* Index in pure at which next pure object will be allocated. */
154int pureptr;
155
156/* If nonzero, this is a warning delivered by malloc and not yet displayed. */
157char *pending_malloc_warning;
158
bcb61d60 159/* Pre-computed signal argument for use when memory is exhausted. */
cf3540e4 160Lisp_Object memory_signal_data;
bcb61d60 161
7146af97
JB
162/* Maximum amount of C stack to save when a GC happens. */
163
164#ifndef MAX_SAVE_STACK
165#define MAX_SAVE_STACK 16000
166#endif
167
1fb577f7
KH
168/* Define DONT_COPY_FLAG to be some bit which will always be zero in a
169 pointer to a Lisp_Object, when that pointer is viewed as an integer.
170 (On most machines, pointers are even, so we can use the low bit.
8e6208c5 171 Word-addressable architectures may need to override this in the m-file.)
1fb577f7
KH
172 When linking references to small strings through the size field, we
173 use this slot to hold the bit that would otherwise be interpreted as
174 the GC mark bit. */
155ffe9c 175#ifndef DONT_COPY_FLAG
1fb577f7 176#define DONT_COPY_FLAG 1
155ffe9c
RS
177#endif /* no DONT_COPY_FLAG */
178
7146af97
JB
179/* Buffer in which we save a copy of the C stack at each GC. */
180
181char *stack_copy;
182int stack_copy_size;
183
184/* Non-zero means ignore malloc warnings. Set during initialization. */
185int ignore_warnings;
350273a4 186
a59de17b 187Lisp_Object Qgc_cons_threshold, Qchar_table_extra_slots;
e8197642 188
b875d3f7 189static void mark_object (), mark_buffer (), mark_kboards ();
350273a4
JA
190static void clear_marks (), gc_sweep ();
191static void compact_strings ();
7da0b0d3
RS
192
193extern int message_enable_multibyte;
7146af97 194\f
1a4f1e2c
JB
195/* Versions of malloc and realloc that print warnings as memory gets full. */
196
7146af97
JB
197Lisp_Object
198malloc_warning_1 (str)
199 Lisp_Object str;
200{
201 Fprinc (str, Vstandard_output);
202 write_string ("\nKilling some buffers may delay running out of memory.\n", -1);
203 write_string ("However, certainly by the time you receive the 95% warning,\n", -1);
204 write_string ("you should clean up, kill this Emacs, and start a new one.", -1);
205 return Qnil;
206}
207
208/* malloc calls this if it finds we are near exhausting storage */
d457598b
AS
209
210void
7146af97
JB
211malloc_warning (str)
212 char *str;
213{
214 pending_malloc_warning = str;
215}
216
d457598b 217void
7146af97
JB
218display_malloc_warning ()
219{
220 register Lisp_Object val;
221
222 val = build_string (pending_malloc_warning);
223 pending_malloc_warning = 0;
224 internal_with_output_to_temp_buffer (" *Danger*", malloc_warning_1, val);
225}
226
d1658221 227#ifdef DOUG_LEA_MALLOC
1177ecf6 228# define BYTES_USED (mallinfo ().arena)
d1658221 229#else
1177ecf6 230# define BYTES_USED _bytes_used
d1658221
RS
231#endif
232
7146af97 233/* Called if malloc returns zero */
276cbe5a 234
d457598b 235void
7146af97
JB
236memory_full ()
237{
276cbe5a 238#ifndef SYSTEM_MALLOC
d1658221 239 bytes_used_when_full = BYTES_USED;
276cbe5a
RS
240#endif
241
242 /* The first time we get here, free the spare memory. */
243 if (spare_memory)
244 {
245 free (spare_memory);
246 spare_memory = 0;
247 }
248
249 /* This used to call error, but if we've run out of memory, we could get
250 infinite recursion trying to build the string. */
251 while (1)
74d84334 252 Fsignal (Qnil, memory_signal_data);
276cbe5a
RS
253}
254
255/* Called if we can't allocate relocatable space for a buffer. */
256
257void
258buffer_memory_full ()
259{
260 /* If buffers use the relocating allocator,
261 no need to free spare_memory, because we may have plenty of malloc
262 space left that we could get, and if we don't, the malloc that fails
263 will itself cause spare_memory to be freed.
264 If buffers don't use the relocating allocator,
265 treat this like any other failing malloc. */
266
267#ifndef REL_ALLOC
268 memory_full ();
269#endif
270
bcb61d60
KH
271 /* This used to call error, but if we've run out of memory, we could get
272 infinite recursion trying to build the string. */
273 while (1)
274 Fsignal (Qerror, memory_signal_data);
7146af97
JB
275}
276
9ac0d9e0 277/* like malloc routines but check for no memory and block interrupt input. */
7146af97
JB
278
279long *
280xmalloc (size)
281 int size;
282{
283 register long *val;
284
9ac0d9e0 285 BLOCK_INPUT;
7146af97 286 val = (long *) malloc (size);
9ac0d9e0 287 UNBLOCK_INPUT;
7146af97
JB
288
289 if (!val && size) memory_full ();
290 return val;
291}
292
293long *
294xrealloc (block, size)
295 long *block;
296 int size;
297{
298 register long *val;
299
9ac0d9e0 300 BLOCK_INPUT;
56d2031b
JB
301 /* We must call malloc explicitly when BLOCK is 0, since some
302 reallocs don't do this. */
303 if (! block)
304 val = (long *) malloc (size);
f048679d 305 else
56d2031b 306 val = (long *) realloc (block, size);
9ac0d9e0 307 UNBLOCK_INPUT;
7146af97
JB
308
309 if (!val && size) memory_full ();
310 return val;
311}
9ac0d9e0
JB
312
313void
314xfree (block)
315 long *block;
316{
317 BLOCK_INPUT;
318 free (block);
319 UNBLOCK_INPUT;
320}
321
322\f
323/* Arranging to disable input signals while we're in malloc.
324
325 This only works with GNU malloc. To help out systems which can't
326 use GNU malloc, all the calls to malloc, realloc, and free
327 elsewhere in the code should be inside a BLOCK_INPUT/UNBLOCK_INPUT
328 pairs; unfortunately, we have no idea what C library functions
329 might call malloc, so we can't really protect them unless you're
330 using GNU malloc. Fortunately, most of the major operating can use
331 GNU malloc. */
332
333#ifndef SYSTEM_MALLOC
b0846f52
JB
334extern void * (*__malloc_hook) ();
335static void * (*old_malloc_hook) ();
336extern void * (*__realloc_hook) ();
337static void * (*old_realloc_hook) ();
338extern void (*__free_hook) ();
339static void (*old_free_hook) ();
9ac0d9e0 340
276cbe5a
RS
341/* This function is used as the hook for free to call. */
342
9ac0d9e0
JB
343static void
344emacs_blocked_free (ptr)
345 void *ptr;
346{
347 BLOCK_INPUT;
348 __free_hook = old_free_hook;
349 free (ptr);
276cbe5a
RS
350 /* If we released our reserve (due to running out of memory),
351 and we have a fair amount free once again,
352 try to set aside another reserve in case we run out once more. */
353 if (spare_memory == 0
354 /* Verify there is enough space that even with the malloc
355 hysteresis this call won't run out again.
356 The code here is correct as long as SPARE_MEMORY
357 is substantially larger than the block size malloc uses. */
358 && (bytes_used_when_full
d1658221 359 > BYTES_USED + max (malloc_hysteresis, 4) * SPARE_MEMORY))
276cbe5a
RS
360 spare_memory = (char *) malloc (SPARE_MEMORY);
361
b0846f52 362 __free_hook = emacs_blocked_free;
9ac0d9e0
JB
363 UNBLOCK_INPUT;
364}
365
276cbe5a
RS
366/* If we released our reserve (due to running out of memory),
367 and we have a fair amount free once again,
368 try to set aside another reserve in case we run out once more.
369
370 This is called when a relocatable block is freed in ralloc.c. */
371
372void
373refill_memory_reserve ()
374{
375 if (spare_memory == 0)
376 spare_memory = (char *) malloc (SPARE_MEMORY);
377}
378
379/* This function is the malloc hook that Emacs uses. */
380
9ac0d9e0
JB
381static void *
382emacs_blocked_malloc (size)
383 unsigned size;
384{
385 void *value;
386
387 BLOCK_INPUT;
388 __malloc_hook = old_malloc_hook;
1177ecf6 389#ifdef DOUG_LEA_MALLOC
d1658221 390 mallopt (M_TOP_PAD, malloc_hysteresis * 4096);
1177ecf6 391#else
d1658221 392 __malloc_extra_blocks = malloc_hysteresis;
1177ecf6 393#endif
2756d8ee 394 value = (void *) malloc (size);
b0846f52 395 __malloc_hook = emacs_blocked_malloc;
9ac0d9e0
JB
396 UNBLOCK_INPUT;
397
398 return value;
399}
400
401static void *
402emacs_blocked_realloc (ptr, size)
403 void *ptr;
404 unsigned size;
405{
406 void *value;
407
408 BLOCK_INPUT;
409 __realloc_hook = old_realloc_hook;
2756d8ee 410 value = (void *) realloc (ptr, size);
b0846f52 411 __realloc_hook = emacs_blocked_realloc;
9ac0d9e0
JB
412 UNBLOCK_INPUT;
413
414 return value;
415}
416
417void
418uninterrupt_malloc ()
419{
420 old_free_hook = __free_hook;
b0846f52 421 __free_hook = emacs_blocked_free;
9ac0d9e0
JB
422
423 old_malloc_hook = __malloc_hook;
b0846f52 424 __malloc_hook = emacs_blocked_malloc;
9ac0d9e0
JB
425
426 old_realloc_hook = __realloc_hook;
b0846f52 427 __realloc_hook = emacs_blocked_realloc;
9ac0d9e0
JB
428}
429#endif
7146af97 430\f
1a4f1e2c
JB
431/* Interval allocation. */
432
d5e35230
JA
433#ifdef USE_TEXT_PROPERTIES
434#define INTERVAL_BLOCK_SIZE \
435 ((1020 - sizeof (struct interval_block *)) / sizeof (struct interval))
436
437struct interval_block
438 {
439 struct interval_block *next;
440 struct interval intervals[INTERVAL_BLOCK_SIZE];
441 };
442
443struct interval_block *interval_block;
444static int interval_block_index;
445
446INTERVAL interval_free_list;
447
448static void
449init_intervals ()
450{
3c06d205 451 allocating_for_lisp = 1;
d5e35230
JA
452 interval_block
453 = (struct interval_block *) malloc (sizeof (struct interval_block));
3c06d205 454 allocating_for_lisp = 0;
d5e35230 455 interval_block->next = 0;
290c8f1e 456 bzero ((char *) interval_block->intervals, sizeof interval_block->intervals);
d5e35230
JA
457 interval_block_index = 0;
458 interval_free_list = 0;
459}
460
461#define INIT_INTERVALS init_intervals ()
462
463INTERVAL
464make_interval ()
465{
466 INTERVAL val;
467
468 if (interval_free_list)
469 {
470 val = interval_free_list;
471 interval_free_list = interval_free_list->parent;
472 }
473 else
474 {
475 if (interval_block_index == INTERVAL_BLOCK_SIZE)
476 {
3c06d205
KH
477 register struct interval_block *newi;
478
479 allocating_for_lisp = 1;
480 newi = (struct interval_block *) xmalloc (sizeof (struct interval_block));
d5e35230 481
3c06d205 482 allocating_for_lisp = 0;
d5e35230
JA
483 VALIDATE_LISP_STORAGE (newi, sizeof *newi);
484 newi->next = interval_block;
485 interval_block = newi;
486 interval_block_index = 0;
487 }
488 val = &interval_block->intervals[interval_block_index++];
489 }
490 consing_since_gc += sizeof (struct interval);
310ea200 491 intervals_consed++;
d5e35230
JA
492 RESET_INTERVAL (val);
493 return val;
494}
495
496static int total_free_intervals, total_intervals;
497
498/* Mark the pointers of one interval. */
499
500static void
d393c068 501mark_interval (i, dummy)
d5e35230 502 register INTERVAL i;
d393c068 503 Lisp_Object dummy;
d5e35230
JA
504{
505 if (XMARKBIT (i->plist))
506 abort ();
507 mark_object (&i->plist);
508 XMARK (i->plist);
509}
510
511static void
512mark_interval_tree (tree)
513 register INTERVAL tree;
514{
e8720644
JB
515 /* No need to test if this tree has been marked already; this
516 function is always called through the MARK_INTERVAL_TREE macro,
517 which takes care of that. */
518
519 /* XMARK expands to an assignment; the LHS of an assignment can't be
520 a cast. */
521 XMARK (* (Lisp_Object *) &tree->parent);
d5e35230 522
d393c068 523 traverse_intervals (tree, 1, 0, mark_interval, Qnil);
d5e35230
JA
524}
525
e8720644
JB
526#define MARK_INTERVAL_TREE(i) \
527 do { \
528 if (!NULL_INTERVAL_P (i) \
74d84334 529 && ! XMARKBIT (*(Lisp_Object *) &i->parent)) \
e8720644
JB
530 mark_interval_tree (i); \
531 } while (0)
d5e35230 532
1a4f1e2c 533/* The oddity in the call to XUNMARK is necessary because XUNMARK
eb8c3be9 534 expands to an assignment to its argument, and most C compilers don't
1a4f1e2c
JB
535 support casts on the left operand of `='. */
536#define UNMARK_BALANCE_INTERVALS(i) \
537{ \
538 if (! NULL_INTERVAL_P (i)) \
539 { \
540 XUNMARK (* (Lisp_Object *) (&(i)->parent)); \
541 (i) = balance_intervals (i); \
542 } \
d5e35230
JA
543}
544
545#else /* no interval use */
546
547#define INIT_INTERVALS
548
549#define UNMARK_BALANCE_INTERVALS(i)
550#define MARK_INTERVAL_TREE(i)
551
552#endif /* no interval use */
553\f
1a4f1e2c
JB
554/* Floating point allocation. */
555
7146af97
JB
556#ifdef LISP_FLOAT_TYPE
557/* Allocation of float cells, just like conses */
558/* We store float cells inside of float_blocks, allocating a new
559 float_block with malloc whenever necessary. Float cells reclaimed by
560 GC are put on a free list to be reallocated before allocating
561 any new float cells from the latest float_block.
562
563 Each float_block is just under 1020 bytes long,
564 since malloc really allocates in units of powers of two
565 and uses 4 bytes for its own overhead. */
566
567#define FLOAT_BLOCK_SIZE \
568 ((1020 - sizeof (struct float_block *)) / sizeof (struct Lisp_Float))
569
570struct float_block
571 {
572 struct float_block *next;
573 struct Lisp_Float floats[FLOAT_BLOCK_SIZE];
574 };
575
576struct float_block *float_block;
577int float_block_index;
578
579struct Lisp_Float *float_free_list;
580
581void
582init_float ()
583{
3c06d205 584 allocating_for_lisp = 1;
7146af97 585 float_block = (struct float_block *) malloc (sizeof (struct float_block));
3c06d205 586 allocating_for_lisp = 0;
7146af97 587 float_block->next = 0;
290c8f1e 588 bzero ((char *) float_block->floats, sizeof float_block->floats);
7146af97
JB
589 float_block_index = 0;
590 float_free_list = 0;
591}
592
593/* Explicitly free a float cell. */
594free_float (ptr)
595 struct Lisp_Float *ptr;
596{
1cd5fe6a 597 *(struct Lisp_Float **)&ptr->data = float_free_list;
7146af97
JB
598 float_free_list = ptr;
599}
600
601Lisp_Object
602make_float (float_value)
603 double float_value;
604{
605 register Lisp_Object val;
606
607 if (float_free_list)
608 {
1cd5fe6a
RS
609 /* We use the data field for chaining the free list
610 so that we won't use the same field that has the mark bit. */
45d12a89 611 XSETFLOAT (val, float_free_list);
1cd5fe6a 612 float_free_list = *(struct Lisp_Float **)&float_free_list->data;
7146af97
JB
613 }
614 else
615 {
616 if (float_block_index == FLOAT_BLOCK_SIZE)
617 {
3c06d205
KH
618 register struct float_block *new;
619
620 allocating_for_lisp = 1;
621 new = (struct float_block *) xmalloc (sizeof (struct float_block));
622 allocating_for_lisp = 0;
7146af97
JB
623 VALIDATE_LISP_STORAGE (new, sizeof *new);
624 new->next = float_block;
625 float_block = new;
626 float_block_index = 0;
627 }
45d12a89 628 XSETFLOAT (val, &float_block->floats[float_block_index++]);
7146af97
JB
629 }
630 XFLOAT (val)->data = float_value;
67ba9986 631 XSETFASTINT (XFLOAT (val)->type, 0); /* bug chasing -wsr */
7146af97 632 consing_since_gc += sizeof (struct Lisp_Float);
310ea200 633 floats_consed++;
7146af97
JB
634 return val;
635}
636
637#endif /* LISP_FLOAT_TYPE */
638\f
639/* Allocation of cons cells */
640/* We store cons cells inside of cons_blocks, allocating a new
641 cons_block with malloc whenever necessary. Cons cells reclaimed by
642 GC are put on a free list to be reallocated before allocating
643 any new cons cells from the latest cons_block.
644
645 Each cons_block is just under 1020 bytes long,
646 since malloc really allocates in units of powers of two
647 and uses 4 bytes for its own overhead. */
648
649#define CONS_BLOCK_SIZE \
650 ((1020 - sizeof (struct cons_block *)) / sizeof (struct Lisp_Cons))
651
652struct cons_block
653 {
654 struct cons_block *next;
655 struct Lisp_Cons conses[CONS_BLOCK_SIZE];
656 };
657
658struct cons_block *cons_block;
659int cons_block_index;
660
661struct Lisp_Cons *cons_free_list;
662
663void
664init_cons ()
665{
3c06d205 666 allocating_for_lisp = 1;
7146af97 667 cons_block = (struct cons_block *) malloc (sizeof (struct cons_block));
3c06d205 668 allocating_for_lisp = 0;
7146af97 669 cons_block->next = 0;
290c8f1e 670 bzero ((char *) cons_block->conses, sizeof cons_block->conses);
7146af97
JB
671 cons_block_index = 0;
672 cons_free_list = 0;
673}
674
675/* Explicitly free a cons cell. */
d457598b
AS
676
677void
7146af97
JB
678free_cons (ptr)
679 struct Lisp_Cons *ptr;
680{
1cd5fe6a 681 *(struct Lisp_Cons **)&ptr->cdr = cons_free_list;
7146af97
JB
682 cons_free_list = ptr;
683}
684
685DEFUN ("cons", Fcons, Scons, 2, 2, 0,
686 "Create a new cons, give it CAR and CDR as components, and return it.")
687 (car, cdr)
688 Lisp_Object car, cdr;
689{
690 register Lisp_Object val;
691
692 if (cons_free_list)
693 {
1cd5fe6a
RS
694 /* We use the cdr for chaining the free list
695 so that we won't use the same field that has the mark bit. */
45d12a89 696 XSETCONS (val, cons_free_list);
1cd5fe6a 697 cons_free_list = *(struct Lisp_Cons **)&cons_free_list->cdr;
7146af97
JB
698 }
699 else
700 {
701 if (cons_block_index == CONS_BLOCK_SIZE)
702 {
3c06d205
KH
703 register struct cons_block *new;
704 allocating_for_lisp = 1;
705 new = (struct cons_block *) xmalloc (sizeof (struct cons_block));
706 allocating_for_lisp = 0;
7146af97
JB
707 VALIDATE_LISP_STORAGE (new, sizeof *new);
708 new->next = cons_block;
709 cons_block = new;
710 cons_block_index = 0;
711 }
45d12a89 712 XSETCONS (val, &cons_block->conses[cons_block_index++]);
7146af97
JB
713 }
714 XCONS (val)->car = car;
715 XCONS (val)->cdr = cdr;
716 consing_since_gc += sizeof (struct Lisp_Cons);
310ea200 717 cons_cells_consed++;
7146af97
JB
718 return val;
719}
720
721DEFUN ("list", Flist, Slist, 0, MANY, 0,
722 "Return a newly created list with specified arguments as elements.\n\
723Any number of arguments, even zero arguments, are allowed.")
724 (nargs, args)
725 int nargs;
726 register Lisp_Object *args;
727{
128a5b55
RS
728 register Lisp_Object val;
729 val = Qnil;
7146af97 730
128a5b55
RS
731 while (nargs > 0)
732 {
733 nargs--;
734 val = Fcons (args[nargs], val);
735 }
7146af97
JB
736 return val;
737}
738
739DEFUN ("make-list", Fmake_list, Smake_list, 2, 2, 0,
740 "Return a newly created list of length LENGTH, with each element being INIT.")
741 (length, init)
742 register Lisp_Object length, init;
743{
744 register Lisp_Object val;
745 register int size;
746
c9dad5ed
KH
747 CHECK_NATNUM (length, 0);
748 size = XFASTINT (length);
7146af97
JB
749
750 val = Qnil;
751 while (size-- > 0)
752 val = Fcons (init, val);
753 return val;
754}
755\f
756/* Allocation of vectors */
757
758struct Lisp_Vector *all_vectors;
759
1825c68d
KH
760struct Lisp_Vector *
761allocate_vectorlike (len)
762 EMACS_INT len;
763{
764 struct Lisp_Vector *p;
765
3c06d205 766 allocating_for_lisp = 1;
d1658221
RS
767#ifdef DOUG_LEA_MALLOC
768 /* Prevent mmap'ing the chunk (which is potentially very large). */
769 mallopt (M_MMAP_MAX, 0);
770#endif
1825c68d
KH
771 p = (struct Lisp_Vector *)xmalloc (sizeof (struct Lisp_Vector)
772 + (len - 1) * sizeof (Lisp_Object));
d1658221
RS
773#ifdef DOUG_LEA_MALLOC
774 /* Back to a reasonable maximum of mmap'ed areas. */
775 mallopt (M_MMAP_MAX, 64);
776#endif
3c06d205 777 allocating_for_lisp = 0;
1825c68d
KH
778 VALIDATE_LISP_STORAGE (p, 0);
779 consing_since_gc += (sizeof (struct Lisp_Vector)
780 + (len - 1) * sizeof (Lisp_Object));
310ea200 781 vector_cells_consed += len;
1825c68d
KH
782
783 p->next = all_vectors;
784 all_vectors = p;
785 return p;
786}
787
7146af97
JB
788DEFUN ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0,
789 "Return a newly created vector of length LENGTH, with each element being INIT.\n\
790See also the function `vector'.")
791 (length, init)
792 register Lisp_Object length, init;
793{
1825c68d
KH
794 Lisp_Object vector;
795 register EMACS_INT sizei;
796 register int index;
7146af97
JB
797 register struct Lisp_Vector *p;
798
c9dad5ed
KH
799 CHECK_NATNUM (length, 0);
800 sizei = XFASTINT (length);
7146af97 801
1825c68d 802 p = allocate_vectorlike (sizei);
7146af97 803 p->size = sizei;
7146af97
JB
804 for (index = 0; index < sizei; index++)
805 p->contents[index] = init;
806
1825c68d 807 XSETVECTOR (vector, p);
7146af97
JB
808 return vector;
809}
810
a59de17b 811DEFUN ("make-char-table", Fmake_char_table, Smake_char_table, 1, 2, 0,
c58b2b4d 812 "Return a newly created char-table, with purpose PURPOSE.\n\
7b07587b 813Each element is initialized to INIT, which defaults to nil.\n\
d7cd5d4f 814PURPOSE should be a symbol which has a `char-table-extra-slots' property.\n\
a59de17b
RS
815The property's value should be an integer between 0 and 10.")
816 (purpose, init)
817 register Lisp_Object purpose, init;
7b07587b
RS
818{
819 Lisp_Object vector;
a59de17b
RS
820 Lisp_Object n;
821 CHECK_SYMBOL (purpose, 1);
0551bde3 822 n = Fget (purpose, Qchar_table_extra_slots);
a59de17b 823 CHECK_NUMBER (n, 0);
7b07587b
RS
824 if (XINT (n) < 0 || XINT (n) > 10)
825 args_out_of_range (n, Qnil);
826 /* Add 2 to the size for the defalt and parent slots. */
827 vector = Fmake_vector (make_number (CHAR_TABLE_STANDARD_SLOTS + XINT (n)),
828 init);
0551bde3 829 XCHAR_TABLE (vector)->top = Qt;
c96a008c 830 XCHAR_TABLE (vector)->parent = Qnil;
a59de17b 831 XCHAR_TABLE (vector)->purpose = purpose;
7b07587b
RS
832 XSETCHAR_TABLE (vector, XCHAR_TABLE (vector));
833 return vector;
834}
835
0551bde3
KH
836/* Return a newly created sub char table with default value DEFALT.
837 Since a sub char table does not appear as a top level Emacs Lisp
838 object, we don't need a Lisp interface to make it. */
839
840Lisp_Object
841make_sub_char_table (defalt)
842 Lisp_Object defalt;
843{
844 Lisp_Object vector
845 = Fmake_vector (make_number (SUB_CHAR_TABLE_STANDARD_SLOTS), Qnil);
846 XCHAR_TABLE (vector)->top = Qnil;
847 XCHAR_TABLE (vector)->defalt = defalt;
848 XSETCHAR_TABLE (vector, XCHAR_TABLE (vector));
849 return vector;
850}
851
7146af97
JB
852DEFUN ("vector", Fvector, Svector, 0, MANY, 0,
853 "Return a newly created vector with specified arguments as elements.\n\
854Any number of arguments, even zero arguments, are allowed.")
855 (nargs, args)
856 register int nargs;
857 Lisp_Object *args;
858{
859 register Lisp_Object len, val;
860 register int index;
861 register struct Lisp_Vector *p;
862
67ba9986 863 XSETFASTINT (len, nargs);
7146af97
JB
864 val = Fmake_vector (len, Qnil);
865 p = XVECTOR (val);
866 for (index = 0; index < nargs; index++)
867 p->contents[index] = args[index];
868 return val;
869}
870
871DEFUN ("make-byte-code", Fmake_byte_code, Smake_byte_code, 4, MANY, 0,
872 "Create a byte-code object with specified arguments as elements.\n\
873The arguments should be the arglist, bytecode-string, constant vector,\n\
874stack size, (optional) doc string, and (optional) interactive spec.\n\
875The first four arguments are required; at most six have any\n\
876significance.")
877 (nargs, args)
878 register int nargs;
879 Lisp_Object *args;
880{
881 register Lisp_Object len, val;
882 register int index;
883 register struct Lisp_Vector *p;
884
67ba9986 885 XSETFASTINT (len, nargs);
265a9e55 886 if (!NILP (Vpurify_flag))
5a053ea9 887 val = make_pure_vector ((EMACS_INT) nargs);
7146af97
JB
888 else
889 val = Fmake_vector (len, Qnil);
890 p = XVECTOR (val);
891 for (index = 0; index < nargs; index++)
892 {
265a9e55 893 if (!NILP (Vpurify_flag))
7146af97
JB
894 args[index] = Fpurecopy (args[index]);
895 p->contents[index] = args[index];
896 }
50aee051 897 XSETCOMPILED (val, p);
7146af97
JB
898 return val;
899}
900\f
901/* Allocation of symbols.
902 Just like allocation of conses!
903
904 Each symbol_block is just under 1020 bytes long,
905 since malloc really allocates in units of powers of two
906 and uses 4 bytes for its own overhead. */
907
908#define SYMBOL_BLOCK_SIZE \
909 ((1020 - sizeof (struct symbol_block *)) / sizeof (struct Lisp_Symbol))
910
911struct symbol_block
912 {
913 struct symbol_block *next;
914 struct Lisp_Symbol symbols[SYMBOL_BLOCK_SIZE];
915 };
916
917struct symbol_block *symbol_block;
918int symbol_block_index;
919
920struct Lisp_Symbol *symbol_free_list;
921
922void
923init_symbol ()
924{
3c06d205 925 allocating_for_lisp = 1;
7146af97 926 symbol_block = (struct symbol_block *) malloc (sizeof (struct symbol_block));
3c06d205 927 allocating_for_lisp = 0;
7146af97 928 symbol_block->next = 0;
290c8f1e 929 bzero ((char *) symbol_block->symbols, sizeof symbol_block->symbols);
7146af97
JB
930 symbol_block_index = 0;
931 symbol_free_list = 0;
932}
933
934DEFUN ("make-symbol", Fmake_symbol, Smake_symbol, 1, 1, 0,
935 "Return a newly allocated uninterned symbol whose name is NAME.\n\
936Its value and function definition are void, and its property list is nil.")
54ee42dd
EN
937 (name)
938 Lisp_Object name;
7146af97
JB
939{
940 register Lisp_Object val;
941 register struct Lisp_Symbol *p;
942
54ee42dd 943 CHECK_STRING (name, 0);
7146af97
JB
944
945 if (symbol_free_list)
946 {
45d12a89 947 XSETSYMBOL (val, symbol_free_list);
85481507 948 symbol_free_list = *(struct Lisp_Symbol **)&symbol_free_list->value;
7146af97
JB
949 }
950 else
951 {
952 if (symbol_block_index == SYMBOL_BLOCK_SIZE)
953 {
3c06d205
KH
954 struct symbol_block *new;
955 allocating_for_lisp = 1;
956 new = (struct symbol_block *) xmalloc (sizeof (struct symbol_block));
957 allocating_for_lisp = 0;
7146af97
JB
958 VALIDATE_LISP_STORAGE (new, sizeof *new);
959 new->next = symbol_block;
960 symbol_block = new;
961 symbol_block_index = 0;
962 }
45d12a89 963 XSETSYMBOL (val, &symbol_block->symbols[symbol_block_index++]);
7146af97
JB
964 }
965 p = XSYMBOL (val);
636b7260 966 p->name = XSTRING (name);
47d5b31e 967 p->obarray = Qnil;
7146af97
JB
968 p->plist = Qnil;
969 p->value = Qunbound;
970 p->function = Qunbound;
971 p->next = 0;
972 consing_since_gc += sizeof (struct Lisp_Symbol);
310ea200 973 symbols_consed++;
7146af97
JB
974 return val;
975}
976\f
a0a38eb7 977/* Allocation of markers and other objects that share that structure.
7146af97
JB
978 Works like allocation of conses. */
979
980#define MARKER_BLOCK_SIZE \
a0a38eb7 981 ((1020 - sizeof (struct marker_block *)) / sizeof (union Lisp_Misc))
7146af97
JB
982
983struct marker_block
984 {
985 struct marker_block *next;
a0a38eb7 986 union Lisp_Misc markers[MARKER_BLOCK_SIZE];
7146af97
JB
987 };
988
989struct marker_block *marker_block;
990int marker_block_index;
991
a0a38eb7 992union Lisp_Misc *marker_free_list;
7146af97
JB
993
994void
995init_marker ()
996{
3c06d205 997 allocating_for_lisp = 1;
7146af97 998 marker_block = (struct marker_block *) malloc (sizeof (struct marker_block));
3c06d205 999 allocating_for_lisp = 0;
7146af97 1000 marker_block->next = 0;
290c8f1e 1001 bzero ((char *) marker_block->markers, sizeof marker_block->markers);
7146af97
JB
1002 marker_block_index = 0;
1003 marker_free_list = 0;
1004}
1005
a0a38eb7
KH
1006/* Return a newly allocated Lisp_Misc object, with no substructure. */
1007Lisp_Object
1008allocate_misc ()
7146af97 1009{
a0a38eb7 1010 Lisp_Object val;
e065a56e 1011
7146af97
JB
1012 if (marker_free_list)
1013 {
a0a38eb7
KH
1014 XSETMISC (val, marker_free_list);
1015 marker_free_list = marker_free_list->u_free.chain;
7146af97
JB
1016 }
1017 else
1018 {
1019 if (marker_block_index == MARKER_BLOCK_SIZE)
1020 {
3c06d205
KH
1021 struct marker_block *new;
1022 allocating_for_lisp = 1;
1023 new = (struct marker_block *) xmalloc (sizeof (struct marker_block));
1024 allocating_for_lisp = 0;
7146af97
JB
1025 VALIDATE_LISP_STORAGE (new, sizeof *new);
1026 new->next = marker_block;
1027 marker_block = new;
1028 marker_block_index = 0;
1029 }
a0a38eb7 1030 XSETMISC (val, &marker_block->markers[marker_block_index++]);
7146af97 1031 }
a0a38eb7 1032 consing_since_gc += sizeof (union Lisp_Misc);
310ea200 1033 misc_objects_consed++;
a0a38eb7
KH
1034 return val;
1035}
1036
1037DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0,
1038 "Return a newly allocated marker which does not point at any place.")
1039 ()
1040{
1041 register Lisp_Object val;
1042 register struct Lisp_Marker *p;
1043
1044 val = allocate_misc ();
a5da44fe 1045 XMISCTYPE (val) = Lisp_Misc_Marker;
7146af97
JB
1046 p = XMARKER (val);
1047 p->buffer = 0;
1048 p->bufpos = 0;
1049 p->chain = Qnil;
6ef5c4bd 1050 p->insertion_type = 0;
7146af97
JB
1051 return val;
1052}
fd27a537
RS
1053
1054/* Put MARKER back on the free list after using it temporarily. */
1055
d457598b 1056void
fd27a537
RS
1057free_marker (marker)
1058 Lisp_Object marker;
1059{
5c5631cf
RS
1060 unchain_marker (marker);
1061
fd27a537
RS
1062 XMISC (marker)->u_marker.type = Lisp_Misc_Free;
1063 XMISC (marker)->u_free.chain = marker_free_list;
1064 marker_free_list = XMISC (marker);
1065
1066 total_free_markers++;
1067}
7146af97
JB
1068\f
1069/* Allocation of strings */
1070
1071/* Strings reside inside of string_blocks. The entire data of the string,
1072 both the size and the contents, live in part of the `chars' component of a string_block.
1073 The `pos' component is the index within `chars' of the first free byte.
1074
1075 first_string_block points to the first string_block ever allocated.
1076 Each block points to the next one with its `next' field.
1077 The `prev' fields chain in reverse order.
1078 The last one allocated is the one currently being filled.
1079 current_string_block points to it.
1080
1081 The string_blocks that hold individual large strings
1082 go in a separate chain, started by large_string_blocks. */
1083
1084
1085/* String blocks contain this many useful bytes.
1086 8188 is power of 2, minus 4 for malloc overhead. */
1087#define STRING_BLOCK_SIZE (8188 - sizeof (struct string_block_head))
1088
1089/* A string bigger than this gets its own specially-made string block
1090 if it doesn't fit in the current one. */
1091#define STRING_BLOCK_OUTSIZE 1024
1092
1093struct string_block_head
1094 {
1095 struct string_block *next, *prev;
0e7ff58f 1096 EMACS_INT pos;
7146af97
JB
1097 };
1098
1099struct string_block
1100 {
1101 struct string_block *next, *prev;
42607681 1102 EMACS_INT pos;
7146af97
JB
1103 char chars[STRING_BLOCK_SIZE];
1104 };
1105
1106/* This points to the string block we are now allocating strings. */
1107
1108struct string_block *current_string_block;
1109
1110/* This points to the oldest string block, the one that starts the chain. */
1111
1112struct string_block *first_string_block;
1113
1114/* Last string block in chain of those made for individual large strings. */
1115
1116struct string_block *large_string_blocks;
1117
1118/* If SIZE is the length of a string, this returns how many bytes
1119 the string occupies in a string_block (including padding). */
1120
1121#define STRING_FULLSIZE(size) (((size) + sizeof (struct Lisp_String) + PAD) \
1122 & ~(PAD - 1))
42607681 1123#define PAD (sizeof (EMACS_INT))
7146af97
JB
1124
1125#if 0
1126#define STRING_FULLSIZE(SIZE) \
42607681 1127(((SIZE) + 2 * sizeof (EMACS_INT)) & ~(sizeof (EMACS_INT) - 1))
7146af97
JB
1128#endif
1129
1130void
1131init_strings ()
1132{
3c06d205 1133 allocating_for_lisp = 1;
7146af97 1134 current_string_block = (struct string_block *) malloc (sizeof (struct string_block));
3c06d205 1135 allocating_for_lisp = 0;
7146af97
JB
1136 first_string_block = current_string_block;
1137 consing_since_gc += sizeof (struct string_block);
1138 current_string_block->next = 0;
1139 current_string_block->prev = 0;
1140 current_string_block->pos = 0;
1141 large_string_blocks = 0;
1142}
1143
1144DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0,
1145 "Return a newly created string of length LENGTH, with each element being INIT.\n\
1146Both LENGTH and INIT must be numbers.")
1147 (length, init)
1148 Lisp_Object length, init;
1149{
1150 register Lisp_Object val;
1151 register unsigned char *p, *end, c;
1152
c9dad5ed 1153 CHECK_NATNUM (length, 0);
7146af97 1154 CHECK_NUMBER (init, 1);
c9dad5ed 1155 val = make_uninit_string (XFASTINT (length));
7146af97
JB
1156 c = XINT (init);
1157 p = XSTRING (val)->data;
1158 end = p + XSTRING (val)->size;
1159 while (p != end)
1160 *p++ = c;
1161 *p = 0;
1162 return val;
1163}
1164
7b07587b 1165DEFUN ("make-bool-vector", Fmake_bool_vector, Smake_bool_vector, 2, 2, 0,
41ab2240
RS
1166 "Return a new bool-vector of length LENGTH, using INIT for as each element.\n\
1167LENGTH must be a number. INIT matters only in whether it is t or nil.")
7b07587b
RS
1168 (length, init)
1169 Lisp_Object length, init;
1170{
1171 register Lisp_Object val;
1172 struct Lisp_Bool_Vector *p;
1173 int real_init, i;
1174 int length_in_chars, length_in_elts, bits_per_value;
1175
1176 CHECK_NATNUM (length, 0);
1177
68be917d 1178 bits_per_value = sizeof (EMACS_INT) * BITS_PER_CHAR;
7b07587b
RS
1179
1180 length_in_elts = (XFASTINT (length) + bits_per_value - 1) / bits_per_value;
1181 length_in_chars = length_in_elts * sizeof (EMACS_INT);
1182
38a1965a
KH
1183 /* We must allocate one more elements than LENGTH_IN_ELTS for the
1184 slot `size' of the struct Lisp_Bool_Vector. */
1185 val = Fmake_vector (make_number (length_in_elts + 1), Qnil);
7b07587b
RS
1186 p = XBOOL_VECTOR (val);
1187 /* Get rid of any bits that would cause confusion. */
1188 p->vector_size = 0;
1189 XSETBOOL_VECTOR (val, p);
1190 p->size = XFASTINT (length);
1191
1192 real_init = (NILP (init) ? 0 : -1);
1193 for (i = 0; i < length_in_chars ; i++)
1194 p->data[i] = real_init;
1195
1196 return val;
1197}
1198
7146af97
JB
1199Lisp_Object
1200make_string (contents, length)
1201 char *contents;
1202 int length;
1203{
1204 register Lisp_Object val;
1205 val = make_uninit_string (length);
1206 bcopy (contents, XSTRING (val)->data, length);
1207 return val;
1208}
1209
1210Lisp_Object
1211build_string (str)
1212 char *str;
1213{
1214 return make_string (str, strlen (str));
1215}
1216
1217Lisp_Object
1218make_uninit_string (length)
1219 int length;
1220{
1221 register Lisp_Object val;
1222 register int fullsize = STRING_FULLSIZE (length);
1223
1224 if (length < 0) abort ();
1225
1226 if (fullsize <= STRING_BLOCK_SIZE - current_string_block->pos)
1227 /* This string can fit in the current string block */
1228 {
45d12a89
KH
1229 XSETSTRING (val,
1230 ((struct Lisp_String *)
1231 (current_string_block->chars + current_string_block->pos)));
7146af97
JB
1232 current_string_block->pos += fullsize;
1233 }
1234 else if (fullsize > STRING_BLOCK_OUTSIZE)
1235 /* This string gets its own string block */
1236 {
3c06d205
KH
1237 register struct string_block *new;
1238 allocating_for_lisp = 1;
d1658221
RS
1239#ifdef DOUG_LEA_MALLOC
1240 /* Prevent mmap'ing the chunk (which is potentially very large). */
1241 mallopt (M_MMAP_MAX, 0);
1242#endif
3c06d205 1243 new = (struct string_block *) xmalloc (sizeof (struct string_block_head) + fullsize);
d1658221
RS
1244#ifdef DOUG_LEA_MALLOC
1245 /* Back to a reasonable maximum of mmap'ed areas. */
1246 mallopt (M_MMAP_MAX, 64);
1247#endif
3c06d205 1248 allocating_for_lisp = 0;
7146af97 1249 VALIDATE_LISP_STORAGE (new, 0);
7146af97
JB
1250 consing_since_gc += sizeof (struct string_block_head) + fullsize;
1251 new->pos = fullsize;
1252 new->next = large_string_blocks;
1253 large_string_blocks = new;
45d12a89
KH
1254 XSETSTRING (val,
1255 ((struct Lisp_String *)
1256 ((struct string_block_head *)new + 1)));
7146af97
JB
1257 }
1258 else
1259 /* Make a new current string block and start it off with this string */
1260 {
3c06d205
KH
1261 register struct string_block *new;
1262 allocating_for_lisp = 1;
1263 new = (struct string_block *) xmalloc (sizeof (struct string_block));
1264 allocating_for_lisp = 0;
7146af97
JB
1265 VALIDATE_LISP_STORAGE (new, sizeof *new);
1266 consing_since_gc += sizeof (struct string_block);
1267 current_string_block->next = new;
1268 new->prev = current_string_block;
1269 new->next = 0;
1270 current_string_block = new;
1271 new->pos = fullsize;
45d12a89
KH
1272 XSETSTRING (val,
1273 (struct Lisp_String *) current_string_block->chars);
7146af97
JB
1274 }
1275
310ea200 1276 string_chars_consed += fullsize;
7146af97
JB
1277 XSTRING (val)->size = length;
1278 XSTRING (val)->data[length] = 0;
d5e35230 1279 INITIALIZE_INTERVAL (XSTRING (val), NULL_INTERVAL);
7146af97
JB
1280
1281 return val;
1282}
1283
1284/* Return a newly created vector or string with specified arguments as
736471d1
RS
1285 elements. If all the arguments are characters that can fit
1286 in a string of events, make a string; otherwise, make a vector.
1287
1288 Any number of arguments, even zero arguments, are allowed. */
7146af97
JB
1289
1290Lisp_Object
736471d1 1291make_event_array (nargs, args)
7146af97
JB
1292 register int nargs;
1293 Lisp_Object *args;
1294{
1295 int i;
1296
1297 for (i = 0; i < nargs; i++)
736471d1 1298 /* The things that fit in a string
c9ca4659
RS
1299 are characters that are in 0...127,
1300 after discarding the meta bit and all the bits above it. */
e687453f 1301 if (!INTEGERP (args[i])
c9ca4659 1302 || (XUINT (args[i]) & ~(-CHAR_META)) >= 0200)
7146af97
JB
1303 return Fvector (nargs, args);
1304
1305 /* Since the loop exited, we know that all the things in it are
1306 characters, so we can make a string. */
1307 {
c13ccad2 1308 Lisp_Object result;
7146af97 1309
50aee051 1310 result = Fmake_string (make_number (nargs), make_number (0));
7146af97 1311 for (i = 0; i < nargs; i++)
736471d1
RS
1312 {
1313 XSTRING (result)->data[i] = XINT (args[i]);
1314 /* Move the meta bit to the right place for a string char. */
1315 if (XINT (args[i]) & CHAR_META)
1316 XSTRING (result)->data[i] |= 0x80;
1317 }
7146af97
JB
1318
1319 return result;
1320 }
1321}
1322\f
1a4f1e2c
JB
1323/* Pure storage management. */
1324
7146af97
JB
1325/* Must get an error if pure storage is full,
1326 since if it cannot hold a large string
1327 it may be able to hold conses that point to that string;
1328 then the string is not protected from gc. */
1329
1330Lisp_Object
1331make_pure_string (data, length)
1332 char *data;
1333 int length;
1334{
1335 register Lisp_Object new;
42607681 1336 register int size = sizeof (EMACS_INT) + INTERVAL_PTR_SIZE + length + 1;
7146af97
JB
1337
1338 if (pureptr + size > PURESIZE)
1339 error ("Pure Lisp storage exhausted");
45d12a89 1340 XSETSTRING (new, PUREBEG + pureptr);
7146af97
JB
1341 XSTRING (new)->size = length;
1342 bcopy (data, XSTRING (new)->data, length);
1343 XSTRING (new)->data[length] = 0;
06c5fe00
RS
1344
1345 /* We must give strings in pure storage some kind of interval. So we
1346 give them a null one. */
1347#if defined (USE_TEXT_PROPERTIES)
1348 XSTRING (new)->intervals = NULL_INTERVAL;
1349#endif
42607681
RS
1350 pureptr += (size + sizeof (EMACS_INT) - 1)
1351 / sizeof (EMACS_INT) * sizeof (EMACS_INT);
7146af97
JB
1352 return new;
1353}
1354
1355Lisp_Object
1356pure_cons (car, cdr)
1357 Lisp_Object car, cdr;
1358{
1359 register Lisp_Object new;
1360
1361 if (pureptr + sizeof (struct Lisp_Cons) > PURESIZE)
1362 error ("Pure Lisp storage exhausted");
45d12a89 1363 XSETCONS (new, PUREBEG + pureptr);
7146af97
JB
1364 pureptr += sizeof (struct Lisp_Cons);
1365 XCONS (new)->car = Fpurecopy (car);
1366 XCONS (new)->cdr = Fpurecopy (cdr);
1367 return new;
1368}
1369
1370#ifdef LISP_FLOAT_TYPE
1371
1372Lisp_Object
1373make_pure_float (num)
1374 double num;
1375{
1376 register Lisp_Object new;
1377
6d19f28a
JB
1378 /* Make sure that PUREBEG + pureptr is aligned on at least a sizeof
1379 (double) boundary. Some architectures (like the sparc) require
1380 this, and I suspect that floats are rare enough that it's no
1381 tragedy for those that do. */
1382 {
1383 int alignment;
1384 char *p = PUREBEG + pureptr;
1385
fe90ad97
JB
1386#ifdef __GNUC__
1387#if __GNUC__ >= 2
6d19f28a 1388 alignment = __alignof (struct Lisp_Float);
fe90ad97 1389#else
6d19f28a 1390 alignment = sizeof (struct Lisp_Float);
fe90ad97
JB
1391#endif
1392#else
6d19f28a 1393 alignment = sizeof (struct Lisp_Float);
fe90ad97 1394#endif
6d19f28a
JB
1395 p = (char *) (((unsigned long) p + alignment - 1) & - alignment);
1396 pureptr = p - PUREBEG;
1397 }
1a4f1e2c 1398
7146af97
JB
1399 if (pureptr + sizeof (struct Lisp_Float) > PURESIZE)
1400 error ("Pure Lisp storage exhausted");
45d12a89 1401 XSETFLOAT (new, PUREBEG + pureptr);
7146af97
JB
1402 pureptr += sizeof (struct Lisp_Float);
1403 XFLOAT (new)->data = num;
67ba9986 1404 XSETFASTINT (XFLOAT (new)->type, 0); /* bug chasing -wsr */
7146af97
JB
1405 return new;
1406}
1407
1408#endif /* LISP_FLOAT_TYPE */
1409
1410Lisp_Object
1411make_pure_vector (len)
42607681 1412 EMACS_INT len;
7146af97
JB
1413{
1414 register Lisp_Object new;
42607681 1415 register EMACS_INT size = sizeof (struct Lisp_Vector) + (len - 1) * sizeof (Lisp_Object);
7146af97
JB
1416
1417 if (pureptr + size > PURESIZE)
1418 error ("Pure Lisp storage exhausted");
1419
45d12a89 1420 XSETVECTOR (new, PUREBEG + pureptr);
7146af97
JB
1421 pureptr += size;
1422 XVECTOR (new)->size = len;
1423 return new;
1424}
1425
1426DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0,
1427 "Make a copy of OBJECT in pure storage.\n\
1428Recursively copies contents of vectors and cons cells.\n\
1429Does not copy symbols.")
1430 (obj)
1431 register Lisp_Object obj;
1432{
265a9e55 1433 if (NILP (Vpurify_flag))
7146af97
JB
1434 return obj;
1435
1436 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE)
1437 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure)
1438 return obj;
1439
d6dd74bb
KH
1440 if (CONSP (obj))
1441 return pure_cons (XCONS (obj)->car, XCONS (obj)->cdr);
7146af97 1442#ifdef LISP_FLOAT_TYPE
d6dd74bb
KH
1443 else if (FLOATP (obj))
1444 return make_pure_float (XFLOAT (obj)->data);
7146af97 1445#endif /* LISP_FLOAT_TYPE */
d6dd74bb
KH
1446 else if (STRINGP (obj))
1447 return make_pure_string (XSTRING (obj)->data, XSTRING (obj)->size);
1448 else if (COMPILEDP (obj) || VECTORP (obj))
1449 {
1450 register struct Lisp_Vector *vec;
1451 register int i, size;
1452
1453 size = XVECTOR (obj)->size;
7d535c68
KH
1454 if (size & PSEUDOVECTOR_FLAG)
1455 size &= PSEUDOVECTOR_SIZE_MASK;
01a4d290 1456 vec = XVECTOR (make_pure_vector ((EMACS_INT) size));
d6dd74bb
KH
1457 for (i = 0; i < size; i++)
1458 vec->contents[i] = Fpurecopy (XVECTOR (obj)->contents[i]);
1459 if (COMPILEDP (obj))
1460 XSETCOMPILED (obj, vec);
1461 else
1462 XSETVECTOR (obj, vec);
7146af97
JB
1463 return obj;
1464 }
d6dd74bb
KH
1465 else if (MARKERP (obj))
1466 error ("Attempt to copy a marker to pure storage");
1467 else
1468 return obj;
7146af97
JB
1469}
1470\f
1471/* Recording what needs to be marked for gc. */
1472
1473struct gcpro *gcprolist;
1474
4cb7d267 1475#define NSTATICS 768
7146af97
JB
1476
1477Lisp_Object *staticvec[NSTATICS] = {0};
1478
1479int staticidx = 0;
1480
1481/* Put an entry in staticvec, pointing at the variable whose address is given */
1482
1483void
1484staticpro (varaddress)
1485 Lisp_Object *varaddress;
1486{
1487 staticvec[staticidx++] = varaddress;
1488 if (staticidx >= NSTATICS)
1489 abort ();
1490}
1491
1492struct catchtag
1493 {
1494 Lisp_Object tag;
1495 Lisp_Object val;
1496 struct catchtag *next;
cd67c797
KH
1497#if 0 /* We don't need this for GC purposes */
1498 jmp_buf jmp;
1499#endif
7146af97
JB
1500 };
1501
1502struct backtrace
1503 {
1504 struct backtrace *next;
1505 Lisp_Object *function;
1506 Lisp_Object *args; /* Points to vector of args. */
1507 int nargs; /* length of vector */
1508 /* if nargs is UNEVALLED, args points to slot holding list of unevalled args */
1509 char evalargs;
1510 };
7146af97 1511\f
1a4f1e2c
JB
1512/* Garbage collection! */
1513
e8197642
RS
1514/* Temporarily prevent garbage collection. */
1515
1516int
1517inhibit_garbage_collection ()
1518{
1519 int count = specpdl_ptr - specpdl;
26b926e1 1520 Lisp_Object number;
68be917d 1521 int nbits = min (VALBITS, BITS_PER_INT);
e8197642 1522
b580578b 1523 XSETINT (number, ((EMACS_INT) 1 << (nbits - 1)) - 1);
26b926e1
RS
1524
1525 specbind (Qgc_cons_threshold, number);
e8197642
RS
1526
1527 return count;
1528}
1529
7146af97
JB
1530DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "",
1531 "Reclaim storage for Lisp objects no longer needed.\n\
1532Returns info on amount of space in use:\n\
1533 ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)\n\
1534 (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS\n\
fa9e8864 1535 (USED-FLOATS . FREE-FLOATS) (USED-INTERVALS . FREE-INTERVALS))\n\
7146af97
JB
1536Garbage collection happens automatically if you cons more than\n\
1537`gc-cons-threshold' bytes of Lisp data since previous garbage collection.")
1538 ()
1539{
1540 register struct gcpro *tail;
1541 register struct specbinding *bind;
1542 struct catchtag *catch;
1543 struct handler *handler;
1544 register struct backtrace *backlist;
1545 register Lisp_Object tem;
1546 char *omessage = echo_area_glyphs;
51056d11 1547 int omessage_length = echo_area_glyphs_length;
7da0b0d3 1548 int oldmultibyte = message_enable_multibyte;
7146af97
JB
1549 char stack_top_variable;
1550 register int i;
1551
58595309
KH
1552 /* In case user calls debug_print during GC,
1553 don't let that cause a recursive GC. */
1554 consing_since_gc = 0;
1555
7146af97
JB
1556 /* Save a copy of the contents of the stack, for debugging. */
1557#if MAX_SAVE_STACK > 0
265a9e55 1558 if (NILP (Vpurify_flag))
7146af97
JB
1559 {
1560 i = &stack_top_variable - stack_bottom;
1561 if (i < 0) i = -i;
1562 if (i < MAX_SAVE_STACK)
1563 {
1564 if (stack_copy == 0)
9ac0d9e0 1565 stack_copy = (char *) xmalloc (stack_copy_size = i);
7146af97 1566 else if (stack_copy_size < i)
9ac0d9e0 1567 stack_copy = (char *) xrealloc (stack_copy, (stack_copy_size = i));
7146af97
JB
1568 if (stack_copy)
1569 {
42607681 1570 if ((EMACS_INT) (&stack_top_variable - stack_bottom) > 0)
7146af97
JB
1571 bcopy (stack_bottom, stack_copy, i);
1572 else
1573 bcopy (&stack_top_variable, stack_copy, i);
1574 }
1575 }
1576 }
1577#endif /* MAX_SAVE_STACK > 0 */
1578
299585ee 1579 if (garbage_collection_messages)
691c4285 1580 message1_nolog ("Garbage collecting...");
7146af97 1581
0f936def
RS
1582 /* Don't keep command history around forever. */
1583 if (NUMBERP (Vhistory_length) && XINT (Vhistory_length) > 0)
1584 {
1585 tem = Fnthcdr (Vhistory_length, Vcommand_history);
1586 if (CONSP (tem))
1587 XCONS (tem)->cdr = Qnil;
1588 }
ffd56f97 1589
7146af97
JB
1590 /* Likewise for undo information. */
1591 {
1592 register struct buffer *nextb = all_buffers;
1593
1594 while (nextb)
1595 {
ffd56f97
JB
1596 /* If a buffer's undo list is Qt, that means that undo is
1597 turned off in that buffer. Calling truncate_undo_list on
1598 Qt tends to return NULL, which effectively turns undo back on.
1599 So don't call truncate_undo_list if undo_list is Qt. */
1600 if (! EQ (nextb->undo_list, Qt))
1601 nextb->undo_list
502b9b64
JB
1602 = truncate_undo_list (nextb->undo_list, undo_limit,
1603 undo_strong_limit);
7146af97
JB
1604 nextb = nextb->next;
1605 }
1606 }
1607
1608 gc_in_progress = 1;
1609
c23baf9f 1610 /* clear_marks (); */
7146af97
JB
1611
1612 /* In each "large string", set the MARKBIT of the size field.
1613 That enables mark_object to recognize them. */
1614 {
1615 register struct string_block *b;
1616 for (b = large_string_blocks; b; b = b->next)
1617 ((struct Lisp_String *)(&b->chars[0]))->size |= MARKBIT;
1618 }
1619
1620 /* Mark all the special slots that serve as the roots of accessibility.
1621
1622 Usually the special slots to mark are contained in particular structures.
1623 Then we know no slot is marked twice because the structures don't overlap.
1624 In some cases, the structures point to the slots to be marked.
1625 For these, we use MARKBIT to avoid double marking of the slot. */
1626
1627 for (i = 0; i < staticidx; i++)
1628 mark_object (staticvec[i]);
1629 for (tail = gcprolist; tail; tail = tail->next)
1630 for (i = 0; i < tail->nvars; i++)
1631 if (!XMARKBIT (tail->var[i]))
1632 {
1633 mark_object (&tail->var[i]);
1634 XMARK (tail->var[i]);
1635 }
1636 for (bind = specpdl; bind != specpdl_ptr; bind++)
1637 {
1638 mark_object (&bind->symbol);
1639 mark_object (&bind->old_value);
1640 }
1641 for (catch = catchlist; catch; catch = catch->next)
1642 {
1643 mark_object (&catch->tag);
1644 mark_object (&catch->val);
1645 }
1646 for (handler = handlerlist; handler; handler = handler->next)
1647 {
1648 mark_object (&handler->handler);
1649 mark_object (&handler->var);
1650 }
1651 for (backlist = backtrace_list; backlist; backlist = backlist->next)
1652 {
1653 if (!XMARKBIT (*backlist->function))
1654 {
1655 mark_object (backlist->function);
1656 XMARK (*backlist->function);
1657 }
1658 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
1659 i = 0;
1660 else
1661 i = backlist->nargs - 1;
1662 for (; i >= 0; i--)
1663 if (!XMARKBIT (backlist->args[i]))
1664 {
1665 mark_object (&backlist->args[i]);
1666 XMARK (backlist->args[i]);
1667 }
1668 }
b875d3f7 1669 mark_kboards ();
7146af97
JB
1670
1671 gc_sweep ();
1672
1673 /* Clear the mark bits that we set in certain root slots. */
1674
1675 for (tail = gcprolist; tail; tail = tail->next)
1676 for (i = 0; i < tail->nvars; i++)
1677 XUNMARK (tail->var[i]);
1678 for (backlist = backtrace_list; backlist; backlist = backlist->next)
1679 {
1680 XUNMARK (*backlist->function);
1681 if (backlist->nargs == UNEVALLED || backlist->nargs == MANY)
1682 i = 0;
1683 else
1684 i = backlist->nargs - 1;
1685 for (; i >= 0; i--)
1686 XUNMARK (backlist->args[i]);
1687 }
1688 XUNMARK (buffer_defaults.name);
1689 XUNMARK (buffer_local_symbols.name);
1690
c23baf9f 1691 /* clear_marks (); */
7146af97
JB
1692 gc_in_progress = 0;
1693
1694 consing_since_gc = 0;
1695 if (gc_cons_threshold < 10000)
1696 gc_cons_threshold = 10000;
1697
299585ee
RS
1698 if (garbage_collection_messages)
1699 {
1700 if (omessage || minibuf_level > 0)
7da0b0d3 1701 message2_nolog (omessage, omessage_length, oldmultibyte);
299585ee
RS
1702 else
1703 message1_nolog ("Garbage collecting...done");
1704 }
7146af97 1705
7146af97
JB
1706 return Fcons (Fcons (make_number (total_conses),
1707 make_number (total_free_conses)),
1708 Fcons (Fcons (make_number (total_symbols),
1709 make_number (total_free_symbols)),
1710 Fcons (Fcons (make_number (total_markers),
1711 make_number (total_free_markers)),
1712 Fcons (make_number (total_string_size),
1713 Fcons (make_number (total_vector_size),
fa9e8864 1714 Fcons (Fcons
7146af97 1715#ifdef LISP_FLOAT_TYPE
fa9e8864
RS
1716 (make_number (total_floats),
1717 make_number (total_free_floats)),
7146af97 1718#else /* not LISP_FLOAT_TYPE */
fa9e8864 1719 (make_number (0), make_number (0)),
7146af97 1720#endif /* not LISP_FLOAT_TYPE */
fa9e8864
RS
1721 Fcons (Fcons
1722#ifdef USE_TEXT_PROPERTIES
1723 (make_number (total_intervals),
1724 make_number (total_free_intervals)),
1725#else /* not USE_TEXT_PROPERTIES */
1726 (make_number (0), make_number (0)),
1727#endif /* not USE_TEXT_PROPERTIES */
1728 Qnil)))))));
7146af97
JB
1729}
1730\f
1731#if 0
1732static void
1733clear_marks ()
1734{
1735 /* Clear marks on all conses */
1736 {
1737 register struct cons_block *cblk;
1738 register int lim = cons_block_index;
1739
1740 for (cblk = cons_block; cblk; cblk = cblk->next)
1741 {
1742 register int i;
1743 for (i = 0; i < lim; i++)
1744 XUNMARK (cblk->conses[i].car);
1745 lim = CONS_BLOCK_SIZE;
1746 }
1747 }
1748 /* Clear marks on all symbols */
1749 {
1750 register struct symbol_block *sblk;
1751 register int lim = symbol_block_index;
1752
1753 for (sblk = symbol_block; sblk; sblk = sblk->next)
1754 {
1755 register int i;
1756 for (i = 0; i < lim; i++)
1757 {
1758 XUNMARK (sblk->symbols[i].plist);
1759 }
1760 lim = SYMBOL_BLOCK_SIZE;
1761 }
1762 }
1763 /* Clear marks on all markers */
1764 {
1765 register struct marker_block *sblk;
1766 register int lim = marker_block_index;
1767
1768 for (sblk = marker_block; sblk; sblk = sblk->next)
1769 {
1770 register int i;
1771 for (i = 0; i < lim; i++)
a5da44fe 1772 if (sblk->markers[i].u_marker.type == Lisp_Misc_Marker)
a0a38eb7 1773 XUNMARK (sblk->markers[i].u_marker.chain);
7146af97
JB
1774 lim = MARKER_BLOCK_SIZE;
1775 }
1776 }
1777 /* Clear mark bits on all buffers */
1778 {
1779 register struct buffer *nextb = all_buffers;
1780
1781 while (nextb)
1782 {
1783 XUNMARK (nextb->name);
1784 nextb = nextb->next;
1785 }
1786 }
1787}
1788#endif
1789\f
1a4f1e2c
JB
1790/* Mark reference to a Lisp_Object.
1791 If the object referred to has not been seen yet, recursively mark
1792 all the references contained in it.
7146af97 1793
eb8c3be9 1794 If the object referenced is a short string, the referencing slot
7146af97
JB
1795 is threaded into a chain of such slots, pointed to from
1796 the `size' field of the string. The actual string size
1797 lives in the last slot in the chain. We recognize the end
1798 because it is < (unsigned) STRING_BLOCK_SIZE. */
1799
785cd37f
RS
1800#define LAST_MARKED_SIZE 500
1801Lisp_Object *last_marked[LAST_MARKED_SIZE];
1802int last_marked_index;
1803
7146af97 1804static void
436c5811
RS
1805mark_object (argptr)
1806 Lisp_Object *argptr;
7146af97 1807{
436c5811 1808 Lisp_Object *objptr = argptr;
7146af97
JB
1809 register Lisp_Object obj;
1810
9149e743 1811 loop:
7146af97 1812 obj = *objptr;
9149e743 1813 loop2:
7146af97
JB
1814 XUNMARK (obj);
1815
7146af97
JB
1816 if ((PNTR_COMPARISON_TYPE) XPNTR (obj) < (PNTR_COMPARISON_TYPE) ((char *) pure + PURESIZE)
1817 && (PNTR_COMPARISON_TYPE) XPNTR (obj) >= (PNTR_COMPARISON_TYPE) pure)
1818 return;
1819
785cd37f
RS
1820 last_marked[last_marked_index++] = objptr;
1821 if (last_marked_index == LAST_MARKED_SIZE)
1822 last_marked_index = 0;
1823
0220c518 1824 switch (SWITCH_ENUM_CAST (XGCTYPE (obj)))
7146af97
JB
1825 {
1826 case Lisp_String:
1827 {
1828 register struct Lisp_String *ptr = XSTRING (obj);
1829
d5e35230 1830 MARK_INTERVAL_TREE (ptr->intervals);
7146af97
JB
1831 if (ptr->size & MARKBIT)
1832 /* A large string. Just set ARRAY_MARK_FLAG. */
1833 ptr->size |= ARRAY_MARK_FLAG;
1834 else
1835 {
1836 /* A small string. Put this reference
1837 into the chain of references to it.
1fb577f7 1838 If the address includes MARKBIT, put that bit elsewhere
7146af97
JB
1839 when we store OBJPTR into the size field. */
1840
1841 if (XMARKBIT (*objptr))
1842 {
67ba9986 1843 XSETFASTINT (*objptr, ptr->size);
7146af97
JB
1844 XMARK (*objptr);
1845 }
1846 else
67ba9986 1847 XSETFASTINT (*objptr, ptr->size);
155ffe9c
RS
1848
1849 if ((EMACS_INT) objptr & DONT_COPY_FLAG)
1850 abort ();
1fb577f7
KH
1851 ptr->size = (EMACS_INT) objptr;
1852 if (ptr->size & MARKBIT)
1853 ptr->size ^= MARKBIT | DONT_COPY_FLAG;
7146af97
JB
1854 }
1855 }
1856 break;
1857
76437631 1858 case Lisp_Vectorlike:
30e3190a 1859 if (GC_BUFFERP (obj))
6b552283
KH
1860 {
1861 if (!XMARKBIT (XBUFFER (obj)->name))
1862 mark_buffer (obj);
1863 }
30e3190a 1864 else if (GC_SUBRP (obj))
169ee243
RS
1865 break;
1866 else if (GC_COMPILEDP (obj))
1867 /* We could treat this just like a vector, but it is better
1868 to save the COMPILED_CONSTANTS element for last and avoid recursion
1869 there. */
1870 {
1871 register struct Lisp_Vector *ptr = XVECTOR (obj);
1872 register EMACS_INT size = ptr->size;
1873 /* See comment above under Lisp_Vector. */
1874 struct Lisp_Vector *volatile ptr1 = ptr;
1875 register int i;
1876
1877 if (size & ARRAY_MARK_FLAG)
1878 break; /* Already marked */
1879 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
76437631 1880 size &= PSEUDOVECTOR_SIZE_MASK;
169ee243
RS
1881 for (i = 0; i < size; i++) /* and then mark its elements */
1882 {
1883 if (i != COMPILED_CONSTANTS)
1884 mark_object (&ptr1->contents[i]);
1885 }
1886 /* This cast should be unnecessary, but some Mips compiler complains
1887 (MIPS-ABI + SysVR4, DC/OSx, etc). */
1888 objptr = (Lisp_Object *) &ptr1->contents[COMPILED_CONSTANTS];
1889 goto loop;
1890 }
169ee243
RS
1891 else if (GC_FRAMEP (obj))
1892 {
1893 /* See comment above under Lisp_Vector for why this is volatile. */
1894 register struct frame *volatile ptr = XFRAME (obj);
1895 register EMACS_INT size = ptr->size;
1896
1897 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1898 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1899
1900 mark_object (&ptr->name);
894a9d16 1901 mark_object (&ptr->icon_name);
aba6deb8 1902 mark_object (&ptr->title);
169ee243
RS
1903 mark_object (&ptr->focus_frame);
1904 mark_object (&ptr->selected_window);
1905 mark_object (&ptr->minibuffer_window);
1906 mark_object (&ptr->param_alist);
1907 mark_object (&ptr->scroll_bars);
1908 mark_object (&ptr->condemned_scroll_bars);
1909 mark_object (&ptr->menu_bar_items);
1910 mark_object (&ptr->face_alist);
1911 mark_object (&ptr->menu_bar_vector);
1912 mark_object (&ptr->buffer_predicate);
a0e1f185 1913 mark_object (&ptr->buffer_list);
169ee243 1914 }
7b07587b 1915 else if (GC_BOOL_VECTOR_P (obj))
707788bd
RS
1916 {
1917 register struct Lisp_Vector *ptr = XVECTOR (obj);
1918
1919 if (ptr->size & ARRAY_MARK_FLAG)
1920 break; /* Already marked */
1921 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1922 }
04ff9756 1923 else
169ee243
RS
1924 {
1925 register struct Lisp_Vector *ptr = XVECTOR (obj);
1926 register EMACS_INT size = ptr->size;
1927 /* The reason we use ptr1 is to avoid an apparent hardware bug
1928 that happens occasionally on the FSF's HP 300s.
1929 The bug is that a2 gets clobbered by recursive calls to mark_object.
1930 The clobberage seems to happen during function entry,
1931 perhaps in the moveml instruction.
1932 Yes, this is a crock, but we have to do it. */
1933 struct Lisp_Vector *volatile ptr1 = ptr;
1934 register int i;
1935
1936 if (size & ARRAY_MARK_FLAG) break; /* Already marked */
1937 ptr->size |= ARRAY_MARK_FLAG; /* Else mark it */
1938 if (size & PSEUDOVECTOR_FLAG)
1939 size &= PSEUDOVECTOR_SIZE_MASK;
1940 for (i = 0; i < size; i++) /* and then mark its elements */
1941 mark_object (&ptr1->contents[i]);
1942 }
1943 break;
7146af97 1944
7146af97
JB
1945 case Lisp_Symbol:
1946 {
41f54422
RS
1947 /* See comment above under Lisp_Vector for why this is volatile. */
1948 register struct Lisp_Symbol *volatile ptr = XSYMBOL (obj);
7146af97
JB
1949 struct Lisp_Symbol *ptrx;
1950
1951 if (XMARKBIT (ptr->plist)) break;
1952 XMARK (ptr->plist);
7146af97
JB
1953 mark_object ((Lisp_Object *) &ptr->value);
1954 mark_object (&ptr->function);
1955 mark_object (&ptr->plist);
8aaa7c8a
JB
1956 XSETTYPE (*(Lisp_Object *) &ptr->name, Lisp_String);
1957 mark_object (&ptr->name);
7146af97
JB
1958 ptr = ptr->next;
1959 if (ptr)
1960 {
9149e743
KH
1961 /* For the benefit of the last_marked log. */
1962 objptr = (Lisp_Object *)&XSYMBOL (obj)->next;
b0846f52 1963 ptrx = ptr; /* Use of ptrx avoids compiler bug on Sun */
7146af97 1964 XSETSYMBOL (obj, ptrx);
9149e743
KH
1965 /* We can't goto loop here because *objptr doesn't contain an
1966 actual Lisp_Object with valid datatype field. */
1967 goto loop2;
7146af97
JB
1968 }
1969 }
1970 break;
1971
a0a38eb7 1972 case Lisp_Misc:
a5da44fe 1973 switch (XMISCTYPE (obj))
a0a38eb7
KH
1974 {
1975 case Lisp_Misc_Marker:
1976 XMARK (XMARKER (obj)->chain);
1977 /* DO NOT mark thru the marker's chain.
1978 The buffer's markers chain does not preserve markers from gc;
1979 instead, markers are removed from the chain when freed by gc. */
1980 break;
1981
465edf35
KH
1982 case Lisp_Misc_Buffer_Local_Value:
1983 case Lisp_Misc_Some_Buffer_Local_Value:
1984 {
1985 register struct Lisp_Buffer_Local_Value *ptr
1986 = XBUFFER_LOCAL_VALUE (obj);
1987 if (XMARKBIT (ptr->car)) break;
1988 XMARK (ptr->car);
1989 /* If the cdr is nil, avoid recursion for the car. */
1990 if (EQ (ptr->cdr, Qnil))
1991 {
1992 objptr = &ptr->car;
1993 goto loop;
1994 }
1995 mark_object (&ptr->car);
1996 /* See comment above under Lisp_Vector for why not use ptr here. */
1997 objptr = &XBUFFER_LOCAL_VALUE (obj)->cdr;
1998 goto loop;
1999 }
2000
c8616056
KH
2001 case Lisp_Misc_Intfwd:
2002 case Lisp_Misc_Boolfwd:
2003 case Lisp_Misc_Objfwd:
2004 case Lisp_Misc_Buffer_Objfwd:
b875d3f7 2005 case Lisp_Misc_Kboard_Objfwd:
c8616056
KH
2006 /* Don't bother with Lisp_Buffer_Objfwd,
2007 since all markable slots in current buffer marked anyway. */
2008 /* Don't need to do Lisp_Objfwd, since the places they point
2009 are protected with staticpro. */
2010 break;
2011
e202fa34
KH
2012 case Lisp_Misc_Overlay:
2013 {
2014 struct Lisp_Overlay *ptr = XOVERLAY (obj);
2015 if (!XMARKBIT (ptr->plist))
2016 {
2017 XMARK (ptr->plist);
2018 mark_object (&ptr->start);
2019 mark_object (&ptr->end);
2020 objptr = &ptr->plist;
2021 goto loop;
2022 }
2023 }
2024 break;
2025
a0a38eb7
KH
2026 default:
2027 abort ();
2028 }
7146af97
JB
2029 break;
2030
2031 case Lisp_Cons:
7146af97
JB
2032 {
2033 register struct Lisp_Cons *ptr = XCONS (obj);
2034 if (XMARKBIT (ptr->car)) break;
2035 XMARK (ptr->car);
c54ca951
RS
2036 /* If the cdr is nil, avoid recursion for the car. */
2037 if (EQ (ptr->cdr, Qnil))
2038 {
2039 objptr = &ptr->car;
c54ca951
RS
2040 goto loop;
2041 }
7146af97 2042 mark_object (&ptr->car);
41f54422
RS
2043 /* See comment above under Lisp_Vector for why not use ptr here. */
2044 objptr = &XCONS (obj)->cdr;
7146af97
JB
2045 goto loop;
2046 }
2047
2048#ifdef LISP_FLOAT_TYPE
2049 case Lisp_Float:
2050 XMARK (XFLOAT (obj)->type);
2051 break;
2052#endif /* LISP_FLOAT_TYPE */
2053
7146af97 2054 case Lisp_Int:
7146af97
JB
2055 break;
2056
2057 default:
2058 abort ();
2059 }
2060}
2061
2062/* Mark the pointers in a buffer structure. */
2063
2064static void
2065mark_buffer (buf)
2066 Lisp_Object buf;
2067{
7146af97
JB
2068 register struct buffer *buffer = XBUFFER (buf);
2069 register Lisp_Object *ptr;
30e3190a 2070 Lisp_Object base_buffer;
7146af97
JB
2071
2072 /* This is the buffer's markbit */
2073 mark_object (&buffer->name);
2074 XMARK (buffer->name);
2075
30e3190a 2076 MARK_INTERVAL_TREE (BUF_INTERVALS (buffer));
d5e35230 2077
7146af97
JB
2078#if 0
2079 mark_object (buffer->syntax_table);
2080
2081 /* Mark the various string-pointers in the buffer object.
2082 Since the strings may be relocated, we must mark them
2083 in their actual slots. So gc_sweep must convert each slot
2084 back to an ordinary C pointer. */
45d12a89 2085 XSETSTRING (*(Lisp_Object *)&buffer->upcase_table, buffer->upcase_table);
7146af97 2086 mark_object ((Lisp_Object *)&buffer->upcase_table);
45d12a89 2087 XSETSTRING (*(Lisp_Object *)&buffer->downcase_table, buffer->downcase_table);
7146af97
JB
2088 mark_object ((Lisp_Object *)&buffer->downcase_table);
2089
45d12a89 2090 XSETSTRING (*(Lisp_Object *)&buffer->sort_table, buffer->sort_table);
7146af97 2091 mark_object ((Lisp_Object *)&buffer->sort_table);
45d12a89 2092 XSETSTRING (*(Lisp_Object *)&buffer->folding_sort_table, buffer->folding_sort_table);
7146af97
JB
2093 mark_object ((Lisp_Object *)&buffer->folding_sort_table);
2094#endif
2095
2096 for (ptr = &buffer->name + 1;
2097 (char *)ptr < (char *)buffer + sizeof (struct buffer);
2098 ptr++)
2099 mark_object (ptr);
30e3190a
RS
2100
2101 /* If this is an indirect buffer, mark its base buffer. */
6b552283 2102 if (buffer->base_buffer && !XMARKBIT (buffer->base_buffer->name))
30e3190a
RS
2103 {
2104 XSETBUFFER (base_buffer, buffer->base_buffer);
2105 mark_buffer (base_buffer);
2106 }
7146af97 2107}
084b1a0c
KH
2108
2109
b875d3f7 2110/* Mark the pointers in the kboard objects. */
084b1a0c
KH
2111
2112static void
b875d3f7 2113mark_kboards ()
084b1a0c 2114{
b875d3f7 2115 KBOARD *kb;
b94daf1e 2116 Lisp_Object *p;
b875d3f7 2117 for (kb = all_kboards; kb; kb = kb->next_kboard)
084b1a0c 2118 {
b94daf1e
KH
2119 if (kb->kbd_macro_buffer)
2120 for (p = kb->kbd_macro_buffer; p < kb->kbd_macro_ptr; p++)
2121 mark_object (p);
9671abc2 2122 mark_object (&kb->Vprefix_arg);
b875d3f7
KH
2123 mark_object (&kb->kbd_queue);
2124 mark_object (&kb->Vlast_kbd_macro);
b94daf1e 2125 mark_object (&kb->Vsystem_key_alist);
6d03a6fd 2126 mark_object (&kb->system_key_syms);
084b1a0c
KH
2127 }
2128}
7146af97 2129\f
1a4f1e2c 2130/* Sweep: find all structures not marked, and free them. */
7146af97
JB
2131
2132static void
2133gc_sweep ()
2134{
2135 total_string_size = 0;
2136 compact_strings ();
2137
2138 /* Put all unmarked conses on free list */
2139 {
2140 register struct cons_block *cblk;
6ca94ac9 2141 struct cons_block **cprev = &cons_block;
7146af97
JB
2142 register int lim = cons_block_index;
2143 register int num_free = 0, num_used = 0;
2144
2145 cons_free_list = 0;
2146
6ca94ac9 2147 for (cblk = cons_block; cblk; cblk = *cprev)
7146af97
JB
2148 {
2149 register int i;
6ca94ac9 2150 int this_free = 0;
7146af97
JB
2151 for (i = 0; i < lim; i++)
2152 if (!XMARKBIT (cblk->conses[i].car))
2153 {
7146af97 2154 num_free++;
6ca94ac9 2155 this_free++;
1cd5fe6a 2156 *(struct Lisp_Cons **)&cblk->conses[i].cdr = cons_free_list;
7146af97
JB
2157 cons_free_list = &cblk->conses[i];
2158 }
2159 else
2160 {
2161 num_used++;
2162 XUNMARK (cblk->conses[i].car);
2163 }
2164 lim = CONS_BLOCK_SIZE;
6ca94ac9
KH
2165 /* If this block contains only free conses and we have already
2166 seen more than two blocks worth of free conses then deallocate
2167 this block. */
2168 if (this_free == CONS_BLOCK_SIZE && num_free > 2*CONS_BLOCK_SIZE)
2169 {
2170 num_free -= CONS_BLOCK_SIZE;
2171 *cprev = cblk->next;
2172 /* Unhook from the free list. */
2173 cons_free_list = *(struct Lisp_Cons **) &cblk->conses[0].cdr;
2174 xfree (cblk);
2175 }
2176 else
2177 cprev = &cblk->next;
7146af97
JB
2178 }
2179 total_conses = num_used;
2180 total_free_conses = num_free;
2181 }
2182
2183#ifdef LISP_FLOAT_TYPE
2184 /* Put all unmarked floats on free list */
2185 {
2186 register struct float_block *fblk;
6ca94ac9 2187 struct float_block **fprev = &float_block;
7146af97
JB
2188 register int lim = float_block_index;
2189 register int num_free = 0, num_used = 0;
2190
2191 float_free_list = 0;
2192
6ca94ac9 2193 for (fblk = float_block; fblk; fblk = *fprev)
7146af97
JB
2194 {
2195 register int i;
6ca94ac9 2196 int this_free = 0;
7146af97
JB
2197 for (i = 0; i < lim; i++)
2198 if (!XMARKBIT (fblk->floats[i].type))
2199 {
7146af97 2200 num_free++;
6ca94ac9 2201 this_free++;
1cd5fe6a 2202 *(struct Lisp_Float **)&fblk->floats[i].data = float_free_list;
7146af97
JB
2203 float_free_list = &fblk->floats[i];
2204 }
2205 else
2206 {
2207 num_used++;
2208 XUNMARK (fblk->floats[i].type);
2209 }
2210 lim = FLOAT_BLOCK_SIZE;
6ca94ac9
KH
2211 /* If this block contains only free floats and we have already
2212 seen more than two blocks worth of free floats then deallocate
2213 this block. */
2214 if (this_free == FLOAT_BLOCK_SIZE && num_free > 2*FLOAT_BLOCK_SIZE)
2215 {
2216 num_free -= FLOAT_BLOCK_SIZE;
2217 *fprev = fblk->next;
2218 /* Unhook from the free list. */
2219 float_free_list = *(struct Lisp_Float **) &fblk->floats[0].data;
2220 xfree (fblk);
2221 }
2222 else
2223 fprev = &fblk->next;
7146af97
JB
2224 }
2225 total_floats = num_used;
2226 total_free_floats = num_free;
2227 }
2228#endif /* LISP_FLOAT_TYPE */
2229
d5e35230
JA
2230#ifdef USE_TEXT_PROPERTIES
2231 /* Put all unmarked intervals on free list */
2232 {
2233 register struct interval_block *iblk;
6ca94ac9 2234 struct interval_block **iprev = &interval_block;
d5e35230
JA
2235 register int lim = interval_block_index;
2236 register int num_free = 0, num_used = 0;
2237
2238 interval_free_list = 0;
2239
6ca94ac9 2240 for (iblk = interval_block; iblk; iblk = *iprev)
d5e35230
JA
2241 {
2242 register int i;
6ca94ac9 2243 int this_free = 0;
d5e35230
JA
2244
2245 for (i = 0; i < lim; i++)
2246 {
2247 if (! XMARKBIT (iblk->intervals[i].plist))
2248 {
2249 iblk->intervals[i].parent = interval_free_list;
2250 interval_free_list = &iblk->intervals[i];
2251 num_free++;
6ca94ac9 2252 this_free++;
d5e35230
JA
2253 }
2254 else
2255 {
2256 num_used++;
2257 XUNMARK (iblk->intervals[i].plist);
2258 }
2259 }
2260 lim = INTERVAL_BLOCK_SIZE;
6ca94ac9
KH
2261 /* If this block contains only free intervals and we have already
2262 seen more than two blocks worth of free intervals then
2263 deallocate this block. */
2264 if (this_free == INTERVAL_BLOCK_SIZE
2265 && num_free > 2*INTERVAL_BLOCK_SIZE)
2266 {
2267 num_free -= INTERVAL_BLOCK_SIZE;
2268 *iprev = iblk->next;
2269 /* Unhook from the free list. */
2270 interval_free_list = iblk->intervals[0].parent;
2271 xfree (iblk);
2272 }
2273 else
2274 iprev = &iblk->next;
d5e35230
JA
2275 }
2276 total_intervals = num_used;
2277 total_free_intervals = num_free;
2278 }
2279#endif /* USE_TEXT_PROPERTIES */
2280
7146af97
JB
2281 /* Put all unmarked symbols on free list */
2282 {
2283 register struct symbol_block *sblk;
6ca94ac9 2284 struct symbol_block **sprev = &symbol_block;
7146af97
JB
2285 register int lim = symbol_block_index;
2286 register int num_free = 0, num_used = 0;
2287
2288 symbol_free_list = 0;
2289
6ca94ac9 2290 for (sblk = symbol_block; sblk; sblk = *sprev)
7146af97
JB
2291 {
2292 register int i;
6ca94ac9 2293 int this_free = 0;
7146af97
JB
2294 for (i = 0; i < lim; i++)
2295 if (!XMARKBIT (sblk->symbols[i].plist))
2296 {
85481507 2297 *(struct Lisp_Symbol **)&sblk->symbols[i].value = symbol_free_list;
7146af97
JB
2298 symbol_free_list = &sblk->symbols[i];
2299 num_free++;
6ca94ac9 2300 this_free++;
7146af97
JB
2301 }
2302 else
2303 {
2304 num_used++;
2305 sblk->symbols[i].name
2306 = XSTRING (*(Lisp_Object *) &sblk->symbols[i].name);
2307 XUNMARK (sblk->symbols[i].plist);
2308 }
2309 lim = SYMBOL_BLOCK_SIZE;
6ca94ac9
KH
2310 /* If this block contains only free symbols and we have already
2311 seen more than two blocks worth of free symbols then deallocate
2312 this block. */
2313 if (this_free == SYMBOL_BLOCK_SIZE && num_free > 2*SYMBOL_BLOCK_SIZE)
2314 {
2315 num_free -= SYMBOL_BLOCK_SIZE;
2316 *sprev = sblk->next;
2317 /* Unhook from the free list. */
2318 symbol_free_list = *(struct Lisp_Symbol **)&sblk->symbols[0].value;
2319 xfree (sblk);
2320 }
2321 else
2322 sprev = &sblk->next;
7146af97
JB
2323 }
2324 total_symbols = num_used;
2325 total_free_symbols = num_free;
2326 }
2327
2328#ifndef standalone
2329 /* Put all unmarked markers on free list.
8e6208c5 2330 Unchain each one first from the buffer it points into,
465edf35 2331 but only if it's a real marker. */
7146af97
JB
2332 {
2333 register struct marker_block *mblk;
6ca94ac9 2334 struct marker_block **mprev = &marker_block;
7146af97
JB
2335 register int lim = marker_block_index;
2336 register int num_free = 0, num_used = 0;
2337
2338 marker_free_list = 0;
2339
6ca94ac9 2340 for (mblk = marker_block; mblk; mblk = *mprev)
7146af97
JB
2341 {
2342 register int i;
6ca94ac9 2343 int this_free = 0;
26b926e1 2344 EMACS_INT already_free = -1;
fa05e253 2345
7146af97 2346 for (i = 0; i < lim; i++)
465edf35
KH
2347 {
2348 Lisp_Object *markword;
a5da44fe 2349 switch (mblk->markers[i].u_marker.type)
465edf35
KH
2350 {
2351 case Lisp_Misc_Marker:
2352 markword = &mblk->markers[i].u_marker.chain;
2353 break;
2354 case Lisp_Misc_Buffer_Local_Value:
2355 case Lisp_Misc_Some_Buffer_Local_Value:
2356 markword = &mblk->markers[i].u_buffer_local_value.car;
2357 break;
e202fa34
KH
2358 case Lisp_Misc_Overlay:
2359 markword = &mblk->markers[i].u_overlay.plist;
2360 break;
fa05e253
RS
2361 case Lisp_Misc_Free:
2362 /* If the object was already free, keep it
2363 on the free list. */
74d84334 2364 markword = (Lisp_Object *) &already_free;
fa05e253 2365 break;
465edf35
KH
2366 default:
2367 markword = 0;
e202fa34 2368 break;
465edf35
KH
2369 }
2370 if (markword && !XMARKBIT (*markword))
2371 {
2372 Lisp_Object tem;
a5da44fe 2373 if (mblk->markers[i].u_marker.type == Lisp_Misc_Marker)
465edf35
KH
2374 {
2375 /* tem1 avoids Sun compiler bug */
2376 struct Lisp_Marker *tem1 = &mblk->markers[i].u_marker;
2377 XSETMARKER (tem, tem1);
2378 unchain_marker (tem);
2379 }
fa05e253
RS
2380 /* Set the type of the freed object to Lisp_Misc_Free.
2381 We could leave the type alone, since nobody checks it,
465edf35 2382 but this might catch bugs faster. */
a5da44fe 2383 mblk->markers[i].u_marker.type = Lisp_Misc_Free;
465edf35
KH
2384 mblk->markers[i].u_free.chain = marker_free_list;
2385 marker_free_list = &mblk->markers[i];
2386 num_free++;
6ca94ac9 2387 this_free++;
465edf35
KH
2388 }
2389 else
2390 {
2391 num_used++;
2392 if (markword)
2393 XUNMARK (*markword);
2394 }
2395 }
7146af97 2396 lim = MARKER_BLOCK_SIZE;
6ca94ac9
KH
2397 /* If this block contains only free markers and we have already
2398 seen more than two blocks worth of free markers then deallocate
2399 this block. */
2400 if (this_free == MARKER_BLOCK_SIZE && num_free > 2*MARKER_BLOCK_SIZE)
2401 {
2402 num_free -= MARKER_BLOCK_SIZE;
2403 *mprev = mblk->next;
2404 /* Unhook from the free list. */
2405 marker_free_list = mblk->markers[0].u_free.chain;
2406 xfree (mblk);
2407 }
2408 else
2409 mprev = &mblk->next;
7146af97
JB
2410 }
2411
2412 total_markers = num_used;
2413 total_free_markers = num_free;
2414 }
2415
2416 /* Free all unmarked buffers */
2417 {
2418 register struct buffer *buffer = all_buffers, *prev = 0, *next;
2419
2420 while (buffer)
2421 if (!XMARKBIT (buffer->name))
2422 {
2423 if (prev)
2424 prev->next = buffer->next;
2425 else
2426 all_buffers = buffer->next;
2427 next = buffer->next;
9ac0d9e0 2428 xfree (buffer);
7146af97
JB
2429 buffer = next;
2430 }
2431 else
2432 {
2433 XUNMARK (buffer->name);
30e3190a 2434 UNMARK_BALANCE_INTERVALS (BUF_INTERVALS (buffer));
7146af97
JB
2435
2436#if 0
2437 /* Each `struct Lisp_String *' was turned into a Lisp_Object
2438 for purposes of marking and relocation.
2439 Turn them back into C pointers now. */
2440 buffer->upcase_table
2441 = XSTRING (*(Lisp_Object *)&buffer->upcase_table);
2442 buffer->downcase_table
2443 = XSTRING (*(Lisp_Object *)&buffer->downcase_table);
2444 buffer->sort_table
2445 = XSTRING (*(Lisp_Object *)&buffer->sort_table);
2446 buffer->folding_sort_table
2447 = XSTRING (*(Lisp_Object *)&buffer->folding_sort_table);
2448#endif
2449
2450 prev = buffer, buffer = buffer->next;
2451 }
2452 }
2453
2454#endif /* standalone */
2455
2456 /* Free all unmarked vectors */
2457 {
2458 register struct Lisp_Vector *vector = all_vectors, *prev = 0, *next;
2459 total_vector_size = 0;
2460
2461 while (vector)
2462 if (!(vector->size & ARRAY_MARK_FLAG))
2463 {
2464 if (prev)
2465 prev->next = vector->next;
2466 else
2467 all_vectors = vector->next;
2468 next = vector->next;
9ac0d9e0 2469 xfree (vector);
7146af97
JB
2470 vector = next;
2471 }
2472 else
2473 {
2474 vector->size &= ~ARRAY_MARK_FLAG;
fa05e253
RS
2475 if (vector->size & PSEUDOVECTOR_FLAG)
2476 total_vector_size += (PSEUDOVECTOR_SIZE_MASK & vector->size);
2477 else
2478 total_vector_size += vector->size;
7146af97
JB
2479 prev = vector, vector = vector->next;
2480 }
2481 }
2482
2483 /* Free all "large strings" not marked with ARRAY_MARK_FLAG. */
2484 {
2485 register struct string_block *sb = large_string_blocks, *prev = 0, *next;
e8720644 2486 struct Lisp_String *s;
7146af97
JB
2487
2488 while (sb)
e8720644
JB
2489 {
2490 s = (struct Lisp_String *) &sb->chars[0];
2491 if (s->size & ARRAY_MARK_FLAG)
2492 {
2493 ((struct Lisp_String *)(&sb->chars[0]))->size
1fb577f7 2494 &= ~ARRAY_MARK_FLAG & ~MARKBIT;
e8720644
JB
2495 UNMARK_BALANCE_INTERVALS (s->intervals);
2496 total_string_size += ((struct Lisp_String *)(&sb->chars[0]))->size;
2497 prev = sb, sb = sb->next;
2498 }
2499 else
2500 {
2501 if (prev)
2502 prev->next = sb->next;
2503 else
2504 large_string_blocks = sb->next;
2505 next = sb->next;
2506 xfree (sb);
2507 sb = next;
2508 }
2509 }
7146af97
JB
2510 }
2511}
2512\f
1a4f1e2c 2513/* Compactify strings, relocate references, and free empty string blocks. */
7146af97
JB
2514
2515static void
2516compact_strings ()
2517{
2518 /* String block of old strings we are scanning. */
2519 register struct string_block *from_sb;
2520 /* A preceding string block (or maybe the same one)
2521 where we are copying the still-live strings to. */
2522 register struct string_block *to_sb;
2523 int pos;
2524 int to_pos;
2525
2526 to_sb = first_string_block;
2527 to_pos = 0;
2528
2529 /* Scan each existing string block sequentially, string by string. */
2530 for (from_sb = first_string_block; from_sb; from_sb = from_sb->next)
2531 {
2532 pos = 0;
2533 /* POS is the index of the next string in the block. */
2534 while (pos < from_sb->pos)
2535 {
2536 register struct Lisp_String *nextstr
2537 = (struct Lisp_String *) &from_sb->chars[pos];
2538
2539 register struct Lisp_String *newaddr;
42607681 2540 register EMACS_INT size = nextstr->size;
7146af97
JB
2541
2542 /* NEXTSTR is the old address of the next string.
2543 Just skip it if it isn't marked. */
155ffe9c 2544 if (((EMACS_UINT) size & ~DONT_COPY_FLAG) > STRING_BLOCK_SIZE)
7146af97
JB
2545 {
2546 /* It is marked, so its size field is really a chain of refs.
2547 Find the end of the chain, where the actual size lives. */
155ffe9c 2548 while (((EMACS_UINT) size & ~DONT_COPY_FLAG) > STRING_BLOCK_SIZE)
7146af97 2549 {
155ffe9c
RS
2550 if (size & DONT_COPY_FLAG)
2551 size ^= MARKBIT | DONT_COPY_FLAG;
42607681 2552 size = *(EMACS_INT *)size & ~MARKBIT;
7146af97
JB
2553 }
2554
2555 total_string_size += size;
2556
2557 /* If it won't fit in TO_SB, close it out,
2558 and move to the next sb. Keep doing so until
2559 TO_SB reaches a large enough, empty enough string block.
2560 We know that TO_SB cannot advance past FROM_SB here
2561 since FROM_SB is large enough to contain this string.
2562 Any string blocks skipped here
2563 will be patched out and freed later. */
2564 while (to_pos + STRING_FULLSIZE (size)
2565 > max (to_sb->pos, STRING_BLOCK_SIZE))
2566 {
2567 to_sb->pos = to_pos;
2568 to_sb = to_sb->next;
2569 to_pos = 0;
2570 }
2571 /* Compute new address of this string
2572 and update TO_POS for the space being used. */
2573 newaddr = (struct Lisp_String *) &to_sb->chars[to_pos];
2574 to_pos += STRING_FULLSIZE (size);
2575
2576 /* Copy the string itself to the new place. */
2577 if (nextstr != newaddr)
42607681 2578 bcopy (nextstr, newaddr, size + 1 + sizeof (EMACS_INT)
d5e35230 2579 + INTERVAL_PTR_SIZE);
7146af97
JB
2580
2581 /* Go through NEXTSTR's chain of references
2582 and make each slot in the chain point to
2583 the new address of this string. */
2584 size = newaddr->size;
155ffe9c 2585 while (((EMACS_UINT) size & ~DONT_COPY_FLAG) > STRING_BLOCK_SIZE)
7146af97
JB
2586 {
2587 register Lisp_Object *objptr;
155ffe9c
RS
2588 if (size & DONT_COPY_FLAG)
2589 size ^= MARKBIT | DONT_COPY_FLAG;
7146af97
JB
2590 objptr = (Lisp_Object *)size;
2591
2592 size = XFASTINT (*objptr) & ~MARKBIT;
2593 if (XMARKBIT (*objptr))
2594 {
45d12a89 2595 XSETSTRING (*objptr, newaddr);
7146af97
JB
2596 XMARK (*objptr);
2597 }
2598 else
45d12a89 2599 XSETSTRING (*objptr, newaddr);
7146af97
JB
2600 }
2601 /* Store the actual size in the size field. */
2602 newaddr->size = size;
e8720644 2603
5f60ed47 2604#ifdef USE_TEXT_PROPERTIES
e8720644
JB
2605 /* Now that the string has been relocated, rebalance its
2606 interval tree, and update the tree's parent pointer. */
2607 if (! NULL_INTERVAL_P (newaddr->intervals))
2608 {
2609 UNMARK_BALANCE_INTERVALS (newaddr->intervals);
45d12a89
KH
2610 XSETSTRING (* (Lisp_Object *) &newaddr->intervals->parent,
2611 newaddr);
e8720644 2612 }
5f60ed47 2613#endif /* USE_TEXT_PROPERTIES */
7146af97
JB
2614 }
2615 pos += STRING_FULLSIZE (size);
2616 }
2617 }
2618
2619 /* Close out the last string block still used and free any that follow. */
2620 to_sb->pos = to_pos;
2621 current_string_block = to_sb;
2622
2623 from_sb = to_sb->next;
2624 to_sb->next = 0;
2625 while (from_sb)
2626 {
2627 to_sb = from_sb->next;
9ac0d9e0 2628 xfree (from_sb);
7146af97
JB
2629 from_sb = to_sb;
2630 }
2631
2632 /* Free any empty string blocks further back in the chain.
2633 This loop will never free first_string_block, but it is very
2634 unlikely that that one will become empty, so why bother checking? */
2635
2636 from_sb = first_string_block;
2637 while (to_sb = from_sb->next)
2638 {
2639 if (to_sb->pos == 0)
2640 {
2641 if (from_sb->next = to_sb->next)
2642 from_sb->next->prev = from_sb;
9ac0d9e0 2643 xfree (to_sb);
7146af97
JB
2644 }
2645 else
2646 from_sb = to_sb;
2647 }
2648}
2649\f
20d24714
JB
2650/* Debugging aids. */
2651
31ce1c91 2652DEFUN ("memory-limit", Fmemory_limit, Smemory_limit, 0, 0, 0,
20d24714
JB
2653 "Return the address of the last byte Emacs has allocated, divided by 1024.\n\
2654This may be helpful in debugging Emacs's memory usage.\n\
e41ae81f 2655We divide the value by 1024 to make sure it fits in a Lisp integer.")
20d24714
JB
2656 ()
2657{
2658 Lisp_Object end;
2659
45d12a89 2660 XSETINT (end, (EMACS_INT) sbrk (0) / 1024);
20d24714
JB
2661
2662 return end;
2663}
2664
310ea200
RS
2665DEFUN ("memory-use-counts", Fmemory_use_counts, Smemory_use_counts, 0, 0, 0,
2666 "Return a list of counters that measure how much consing there has been.\n\
2667Each of these counters increments for a certain kind of object.\n\
2668The counters wrap around from the largest positive integer to zero.\n\
2669Garbage collection does not decrease them.\n\
2670The elements of the value are as follows:\n\
2671 (CONSES FLOATS VECTOR-CELLS SYMBOLS STRING-CHARS MISCS INTERVALS)\n\
2672All are in units of 1 = one object consed\n\
2673except for VECTOR-CELLS and STRING-CHARS, which count the total length of\n\
2674objects consed.\n\
2675MISCS include overlays, markers, and some internal types.\n\
2676Frames, windows, buffers, and subprocesses count as vectors\n\
2677 (but the contents of a buffer's text do not count here).")
2678 ()
2679{
2680 Lisp_Object lisp_cons_cells_consed;
2681 Lisp_Object lisp_floats_consed;
2682 Lisp_Object lisp_vector_cells_consed;
2683 Lisp_Object lisp_symbols_consed;
2684 Lisp_Object lisp_string_chars_consed;
2685 Lisp_Object lisp_misc_objects_consed;
2686 Lisp_Object lisp_intervals_consed;
2687
2688 XSETINT (lisp_cons_cells_consed,
290c8f1e 2689 cons_cells_consed & ~(((EMACS_INT) 1) << (VALBITS - 1)));
310ea200 2690 XSETINT (lisp_floats_consed,
290c8f1e 2691 floats_consed & ~(((EMACS_INT) 1) << (VALBITS - 1)));
310ea200 2692 XSETINT (lisp_vector_cells_consed,
290c8f1e 2693 vector_cells_consed & ~(((EMACS_INT) 1) << (VALBITS - 1)));
310ea200 2694 XSETINT (lisp_symbols_consed,
290c8f1e 2695 symbols_consed & ~(((EMACS_INT) 1) << (VALBITS - 1)));
310ea200 2696 XSETINT (lisp_string_chars_consed,
290c8f1e 2697 string_chars_consed & ~(((EMACS_INT) 1) << (VALBITS - 1)));
310ea200 2698 XSETINT (lisp_misc_objects_consed,
290c8f1e 2699 misc_objects_consed & ~(((EMACS_INT) 1) << (VALBITS - 1)));
310ea200 2700 XSETINT (lisp_intervals_consed,
290c8f1e 2701 intervals_consed & ~(((EMACS_INT) 1) << (VALBITS - 1)));
310ea200
RS
2702
2703 return Fcons (lisp_cons_cells_consed,
2704 Fcons (lisp_floats_consed,
2705 Fcons (lisp_vector_cells_consed,
2706 Fcons (lisp_symbols_consed,
2707 Fcons (lisp_string_chars_consed,
2708 Fcons (lisp_misc_objects_consed,
2709 Fcons (lisp_intervals_consed,
2710 Qnil)))))));
2711}
20d24714 2712\f
7146af97
JB
2713/* Initialization */
2714
2715init_alloc_once ()
2716{
2717 /* Used to do Vpurify_flag = Qt here, but Qt isn't set up yet! */
2718 pureptr = 0;
4c0be5f4
JB
2719#ifdef HAVE_SHM
2720 pure_size = PURESIZE;
2721#endif
7146af97
JB
2722 all_vectors = 0;
2723 ignore_warnings = 1;
d1658221
RS
2724#ifdef DOUG_LEA_MALLOC
2725 mallopt (M_TRIM_THRESHOLD, 128*1024); /* trim threshold */
2726 mallopt (M_MMAP_THRESHOLD, 64*1024); /* mmap threshold */
2727 mallopt (M_MMAP_MAX, 64); /* max. number of mmap'ed areas */
2728#endif
7146af97
JB
2729 init_strings ();
2730 init_cons ();
2731 init_symbol ();
2732 init_marker ();
2733#ifdef LISP_FLOAT_TYPE
2734 init_float ();
2735#endif /* LISP_FLOAT_TYPE */
d5e35230
JA
2736 INIT_INTERVALS;
2737
276cbe5a
RS
2738#ifdef REL_ALLOC
2739 malloc_hysteresis = 32;
2740#else
2741 malloc_hysteresis = 0;
2742#endif
2743
2744 spare_memory = (char *) malloc (SPARE_MEMORY);
2745
7146af97
JB
2746 ignore_warnings = 0;
2747 gcprolist = 0;
2748 staticidx = 0;
2749 consing_since_gc = 0;
7d179cea 2750 gc_cons_threshold = 100000 * sizeof (Lisp_Object);
7146af97
JB
2751#ifdef VIRT_ADDR_VARIES
2752 malloc_sbrk_unused = 1<<22; /* A large number */
2753 malloc_sbrk_used = 100000; /* as reasonable as any number */
2754#endif /* VIRT_ADDR_VARIES */
2755}
2756
2757init_alloc ()
2758{
2759 gcprolist = 0;
2760}
2761
2762void
2763syms_of_alloc ()
2764{
2765 DEFVAR_INT ("gc-cons-threshold", &gc_cons_threshold,
2766 "*Number of bytes of consing between garbage collections.\n\
2767Garbage collection can happen automatically once this many bytes have been\n\
2768allocated since the last garbage collection. All data types count.\n\n\
2769Garbage collection happens automatically only when `eval' is called.\n\n\
2770By binding this temporarily to a large number, you can effectively\n\
2771prevent garbage collection during a part of the program.");
2772
2773 DEFVAR_INT ("pure-bytes-used", &pureptr,
2774 "Number of bytes of sharable Lisp data allocated so far.");
2775
0819585c
RS
2776 DEFVAR_INT ("cons-cells-consed", &cons_cells_consed,
2777 "Number of cons cells that have been consed so far.");
2778
2779 DEFVAR_INT ("floats-consed", &floats_consed,
2780 "Number of floats that have been consed so far.");
2781
2782 DEFVAR_INT ("vector-cells-consed", &vector_cells_consed,
2783 "Number of vector cells that have been consed so far.");
2784
2785 DEFVAR_INT ("symbols-consed", &symbols_consed,
2786 "Number of symbols that have been consed so far.");
2787
2788 DEFVAR_INT ("string-chars-consed", &string_chars_consed,
2789 "Number of string characters that have been consed so far.");
2790
2791 DEFVAR_INT ("misc-objects-consed", &misc_objects_consed,
2792 "Number of miscellaneous objects that have been consed so far.");
2793
2794 DEFVAR_INT ("intervals-consed", &intervals_consed,
2795 "Number of intervals that have been consed so far.");
2796
7146af97
JB
2797#if 0
2798 DEFVAR_INT ("data-bytes-used", &malloc_sbrk_used,
2799 "Number of bytes of unshared memory allocated in this session.");
2800
2801 DEFVAR_INT ("data-bytes-free", &malloc_sbrk_unused,
2802 "Number of bytes of unshared memory remaining available in this session.");
2803#endif
2804
2805 DEFVAR_LISP ("purify-flag", &Vpurify_flag,
2806 "Non-nil means loading Lisp code in order to dump an executable.\n\
2807This means that certain objects should be allocated in shared (pure) space.");
2808
502b9b64 2809 DEFVAR_INT ("undo-limit", &undo_limit,
7146af97 2810 "Keep no more undo information once it exceeds this size.\n\
502b9b64 2811This limit is applied when garbage collection happens.\n\
7146af97
JB
2812The size is counted as the number of bytes occupied,\n\
2813which includes both saved text and other data.");
502b9b64 2814 undo_limit = 20000;
7146af97 2815
502b9b64 2816 DEFVAR_INT ("undo-strong-limit", &undo_strong_limit,
7146af97
JB
2817 "Don't keep more than this much size of undo information.\n\
2818A command which pushes past this size is itself forgotten.\n\
502b9b64 2819This limit is applied when garbage collection happens.\n\
7146af97
JB
2820The size is counted as the number of bytes occupied,\n\
2821which includes both saved text and other data.");
502b9b64 2822 undo_strong_limit = 30000;
7146af97 2823
299585ee
RS
2824 DEFVAR_BOOL ("garbage-collection-messages", &garbage_collection_messages,
2825 "Non-nil means display messages at start and end of garbage collection.");
2826 garbage_collection_messages = 0;
2827
bcb61d60
KH
2828 /* We build this in advance because if we wait until we need it, we might
2829 not be able to allocate the memory to hold it. */
cf3540e4 2830 memory_signal_data
276cbe5a 2831 = Fcons (Qerror, Fcons (build_string ("Memory exhausted--use M-x save-some-buffers RET"), Qnil));
bcb61d60
KH
2832 staticpro (&memory_signal_data);
2833
e8197642
RS
2834 staticpro (&Qgc_cons_threshold);
2835 Qgc_cons_threshold = intern ("gc-cons-threshold");
2836
a59de17b
RS
2837 staticpro (&Qchar_table_extra_slots);
2838 Qchar_table_extra_slots = intern ("char-table-extra-slots");
2839
7146af97
JB
2840 defsubr (&Scons);
2841 defsubr (&Slist);
2842 defsubr (&Svector);
2843 defsubr (&Smake_byte_code);
2844 defsubr (&Smake_list);
2845 defsubr (&Smake_vector);
7b07587b 2846 defsubr (&Smake_char_table);
7146af97 2847 defsubr (&Smake_string);
7b07587b 2848 defsubr (&Smake_bool_vector);
7146af97
JB
2849 defsubr (&Smake_symbol);
2850 defsubr (&Smake_marker);
2851 defsubr (&Spurecopy);
2852 defsubr (&Sgarbage_collect);
20d24714 2853 defsubr (&Smemory_limit);
310ea200 2854 defsubr (&Smemory_use_counts);
7146af97 2855}