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