annotate src/alloc.c @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children 9ee227acff29
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Storage allocation and gc for XEmacs Lisp interpreter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985, 1986, 1988, 1992, 1993, 1994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995 Sun Microsystems, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 /* Synched up with: FSF 19.28, Mule 2.0. Substantially different from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 FSF. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 /* Authorship:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 FSF: Original version; a long time ago.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 Mly: Significantly rewritten to use new 3-bit tags and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 nicely abstracted object definitions, for 19.8.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 JWZ: Improved code to keep track of purespace usage and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 issue nice purespace and GC stats.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 Ben Wing: Cleaned up frob-block lrecord code, added error-checking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 and various changes for Mule, for 19.12.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 Added bit vectors for 19.13.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 Added lcrecord lists for 19.14.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 #ifndef standalone
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 #include "backtrace.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 #include "buffer.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 #include "bytecode.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 #include "device.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #include "elhash.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 #include "events.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 #include "extents.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 #include "frame.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #include "glyphs.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 #include "redisplay.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 #include "specifier.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #include "window.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 /* #define GDB_SUCKS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 /* #define VERIFY_STRING_CHARS_INTEGRITY */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 /* Define this to see where all that space is going... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 #define PURESTAT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 /* Define this to use malloc/free with no freelist for all datatypes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 the hope being that some debugging tools may help detect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 freed memory references */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 /* #define ALLOC_NO_POOLS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 #include "puresize.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 int debug_allocation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 int debug_allocation_backtrace_length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 /* Number of bytes of consing done since the last gc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 EMACS_INT consing_since_gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 extern void cadillac_record_backtrace ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 #define INCREMENT_CONS_COUNTER_1(size) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 EMACS_INT __sz__ = ((EMACS_INT) (size)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 consing_since_gc += __sz__; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 cadillac_record_backtrace (2, __sz__); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 #define INCREMENT_CONS_COUNTER_1(size) (consing_since_gc += (size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 #define debug_allocation_backtrace() \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 if (debug_allocation_backtrace_length > 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 debug_short_backtrace (debug_allocation_backtrace_length); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 #define INCREMENT_CONS_COUNTER(foosize, type) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 if (debug_allocation) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 stderr_out ("allocating %s (size %ld)\n", type, (long)foosize); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 debug_allocation_backtrace (); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 INCREMENT_CONS_COUNTER_1 (foosize); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 #define NOSEEUM_INCREMENT_CONS_COUNTER(foosize, type) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 if (debug_allocation > 1) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 stderr_out ("allocating noseeum %s (size %ld)\n", type, (long)foosize); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 debug_allocation_backtrace (); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 INCREMENT_CONS_COUNTER_1 (foosize); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 #define INCREMENT_CONS_COUNTER(size, type) INCREMENT_CONS_COUNTER_1 (size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 #define NOSEEUM_INCREMENT_CONS_COUNTER(size, type) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 INCREMENT_CONS_COUNTER_1 (size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 #define DECREMENT_CONS_COUNTER(size) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 EMACS_INT __sz__ = ((EMACS_INT) (size)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 if (consing_since_gc >= __sz__) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 consing_since_gc -= __sz__; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 consing_since_gc = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 /* Number of bytes of consing since gc before another gc should be done. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 EMACS_INT gc_cons_threshold;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /* Nonzero during gc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 int gc_in_progress;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 /* Number of times GC has happened at this level or below.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 * Level 0 is most volatile, contrary to usual convention.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 * (Of course, there's only one level at present) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 EMACS_INT gc_generation_number[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 /* This is just for use by the printer, to allow things to print uniquely */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 static int lrecord_uid_counter;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 /* Nonzero when calling certain hooks or doing other things where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 a GC would be bad */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 int gc_currently_forbidden;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 /* Hooks. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 Lisp_Object Vpre_gc_hook, Qpre_gc_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 Lisp_Object Vpost_gc_hook, Qpost_gc_hook;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 /* "Garbage collecting" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 Lisp_Object Vgc_message;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 Lisp_Object Vgc_pointer_glyph;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 static CONST char gc_default_message[] = "Garbage collecting";
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 Lisp_Object Qgarbage_collecting;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 #ifndef VIRT_ADDR_VARIES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 extern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 #endif /* VIRT_ADDR_VARIES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 EMACS_INT malloc_sbrk_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 #ifndef VIRT_ADDR_VARIES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 extern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 #endif /* VIRT_ADDR_VARIES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 EMACS_INT malloc_sbrk_unused;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 /* Non-zero means defun should do purecopy on the function definition */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 int purify_flag;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 extern Lisp_Object pure[];/* moved to pure.c to speed incremental linking */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 #define PUREBEG ((unsigned char *) pure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 /* Index in pure at which next pure object will be allocated. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 static long pureptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 #define PURIFIED(ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 ((PNTR_COMPARISON_TYPE) (ptr) < \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (PNTR_COMPARISON_TYPE) (PUREBEG + PURESIZE) && \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 (PNTR_COMPARISON_TYPE) (ptr) >= \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (PNTR_COMPARISON_TYPE) PUREBEG)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 /* Non-zero if pureptr > PURESIZE; accounts for excess purespace needs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 static long pure_lossage;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 #ifdef ERROR_CHECK_TYPECHECK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 Error_behavior ERROR_ME, ERROR_ME_NOT, ERROR_ME_WARN;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 purified (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 if (!POINTER_TYPE_P (XGCTYPE (obj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 return (PURIFIED (XPNTR (obj)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 purespace_usage (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 return (int) pureptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 check_purespace (EMACS_INT size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 if (pure_lossage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 pure_lossage += size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 else if (pureptr + size > PURESIZE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 message ("\nERROR: Pure Lisp storage exhausted!\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 pure_lossage = size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 return (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 #ifndef PURESTAT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 #define bump_purestat(p,b) do {} while (0) /* Do nothing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 #else /* PURESTAT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 static int purecopying_for_bytecode;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 static int pure_sizeof (Lisp_Object /*, int recurse */);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 /* Keep statistics on how much of what is in purespace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 struct purestat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 int nobjects;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 int nbytes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 CONST char *name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 #define FMH(s,n) static struct purestat s = { 0, 0, n }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 FMH (purestat_cons, "cons cells:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 FMH (purestat_float, "float objects:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 FMH (purestat_string_pname, "symbol-name strings:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 FMH (purestat_bytecode, "compiled-function objects:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 FMH (purestat_string_bytecodes, "byte-code strings:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 FMH (purestat_vector_bytecode_constants, "byte-constant vectors:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 FMH (purestat_string_interactive, "interactive strings:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 FMH (purestat_string_domain, "domain strings:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 FMH (purestat_string_documentation, "documentation strings:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 FMH (purestat_string_other_function, "other function strings:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 FMH (purestat_vector_other, "other vectors:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 FMH (purestat_string_other, "other strings:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 FMH (purestat_string_all, "all strings:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 FMH (purestat_vector_all, "all vectors:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 static struct purestat *purestats[] =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 &purestat_cons,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 &purestat_float,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 &purestat_string_pname,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 &purestat_bytecode,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 &purestat_string_bytecodes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 &purestat_vector_bytecode_constants,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 &purestat_string_interactive,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 &purestat_string_domain,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 &purestat_string_documentation,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 &purestat_string_other_function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 &purestat_vector_other,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 &purestat_string_other,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 &purestat_string_all,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 &purestat_vector_all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 #undef FMH
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 bump_purestat (struct purestat *purestat, int nbytes)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 if (pure_lossage) return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 purestat->nobjects += 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 purestat->nbytes += nbytes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 #endif /* PURESTAT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 /* Maximum amount of C stack to save when a GC happens. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 #ifndef MAX_SAVE_STACK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 #define MAX_SAVE_STACK 16000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 /* Buffer in which we save a copy of the C stack at each GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 static char *stack_copy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 static int stack_copy_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 /* Non-zero means ignore malloc warnings. Set during initialization. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 int ignore_malloc_warnings;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 static void *breathing_space;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 release_breathing_space (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 if (breathing_space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 void *tmp = breathing_space;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 breathing_space = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 xfree (tmp);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 /* malloc calls this if it finds we are near exhausting storage */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 malloc_warning (CONST char *str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 if (ignore_malloc_warnings)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 warn_when_safe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (Qmemory, Qcritical,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 "%s\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 "Killing some buffers may delay running out of memory.\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 "However, certainly by the time you receive the 95%% warning,\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 "you should clean up, kill this Emacs, and start a new one.",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 /* Called if malloc returns zero */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 memory_full (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 /* Force a GC next time eval is called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 It's better to loop garbage-collecting (we might reclaim enough
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 to win) than to loop beeping and barfing "Memory exhausted"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 consing_since_gc = gc_cons_threshold + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 release_breathing_space ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 #ifndef standalone
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 /* Flush some histories which might conceivably contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 * garbalogical inhibitors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 if (!NILP (Fboundp (Qvalues)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 Fset (Qvalues, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 Vcommand_history = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 error ("Memory exhausted");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 /* like malloc and realloc but check for no memory left, and block input. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 void *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 xmalloc (int size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 void *val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 val = (void *) malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 if (!val && (size != 0)) memory_full ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 void *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 xmalloc_and_zero (int size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 void *val = xmalloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 memset (val, 0, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 void *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 xrealloc (void *block, int size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 void *val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 /* We must call malloc explicitly when BLOCK is 0, since some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 reallocs don't do this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 if (! block)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 val = (void *) malloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 val = (void *) realloc (block, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 if (!val && (size != 0)) memory_full ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 #ifdef ERROR_CHECK_MALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 xfree_1 (void *block)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 xfree (void *block)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 #ifdef ERROR_CHECK_MALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 /* Unbelievably, calling free() on 0xDEADBEEF doesn't cause an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 error until much later on for many system mallocs, such as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 the one that comes with Solaris 2.3. FMH!! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 assert (block != (void *) 0xDEADBEEF);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 assert (block);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 free (block);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 #if INTBITS == 32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 # define FOUR_BYTE_TYPE unsigned int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 #elif LONGBITS == 32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 # define FOUR_BYTE_TYPE unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 #elif SHORTBITS == 32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 # define FOUR_BYTE_TYPE unsigned short
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 What kind of strange-ass system are we running on?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 #ifdef ERROR_CHECK_GC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 #ifdef WORDS_BIGENDIAN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 static unsigned char deadbeef_as_char[] = {0xDE, 0xAD, 0xBE, 0xEF};
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 static unsigned char deadbeef_as_char[] = {0xEF, 0xBE, 0xAD, 0xDE};
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 deadbeef_memory (void *ptr, unsigned long size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 unsigned long long_length = size / sizeof (FOUR_BYTE_TYPE);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 unsigned long i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 unsigned long bytes_left_over = size - sizeof (FOUR_BYTE_TYPE) * long_length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 for (i = 0; i < long_length; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 ((FOUR_BYTE_TYPE *) ptr)[i] = 0xdeadbeef;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 for (i = i; i < bytes_left_over; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 ((unsigned char *) ptr + long_length)[i] = deadbeef_as_char[i];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 #define deadbeef_memory(ptr, size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 xstrdup (CONST char *str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 char *val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 int len = strlen (str) + 1; /* for stupid terminating 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 val = xmalloc (len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 if (val == 0) return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 memcpy (val, str, len);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 return (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 #ifdef NEED_STRDUP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 char *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 strdup (CONST char *s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 return xstrdup (s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 #endif /* NEED_STRDUP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 static void *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 allocate_lisp_storage (int size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 void *p = xmalloc (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 char *lim = ((char *) p) + size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 Lisp_Object val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 XSETCONS (val, lim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 if ((char *) XCONS (val) != lim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 xfree (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 memory_full ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 return (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 #define MARKED_RECORD_HEADER_P(lheader) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (((lheader)->implementation->finalizer) == this_marks_a_marked_record)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 #define UNMARKABLE_RECORD_HEADER_P(lheader) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 (((lheader)->implementation->marker) == this_one_is_unmarkable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 #define MARK_RECORD_HEADER(lheader) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 do { (((lheader)->implementation)++); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 #define UNMARK_RECORD_HEADER(lheader) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 do { (((lheader)->implementation)--); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 /* lrecords are chained together through their "next.v" field.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 * After doing the mark phase, the GC will walk this linked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 * list and free any record which hasn't been marked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 static struct lcrecord_header *all_lcrecords;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 void *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 alloc_lcrecord (int size, CONST struct lrecord_implementation *implementation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 struct lcrecord_header *lcheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 if (size <= 0) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 if (implementation->static_size == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 if (!implementation->size_in_bytes_method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 else if (implementation->static_size != size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 lcheader = allocate_lisp_storage (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 lcheader->lheader.implementation = implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 lcheader->next = all_lcrecords;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 #if 1 /* mly prefers to see small ID numbers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 lcheader->uid = lrecord_uid_counter++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 #else /* jwz prefers to see real addrs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 lcheader->uid = (int) &lcheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 lcheader->free = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 all_lcrecords = lcheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 INCREMENT_CONS_COUNTER (size, implementation->name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 return (lcheader);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 #if 0 /* Presently unused */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 /* Very, very poor man's EGC?
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 * This may be slow and thrash pages all over the place.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 * Only call it if you really feel you must (and if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 * lrecord was fairly recently allocated).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 * Otherwise, just let the GC do its job -- that's what it's there for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 free_lcrecord (struct lcrecord_header *lcrecord)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 if (all_lcrecords == lcrecord)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 all_lcrecords = lcrecord->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 struct lrecord_header *header = all_lcrecords;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 for (;;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 struct lrecord_header *next = header->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 if (next == lcrecord)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 header->next = lrecord->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 else if (next == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 header = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 if (lrecord->implementation->finalizer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 ((lrecord->implementation->finalizer) (lrecord, 0));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 xfree (lrecord);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 #endif /* Unused */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 disksave_object_finalization_1 (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 struct lcrecord_header *header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 for (header = all_lcrecords; header; header = header->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 if (header->lheader.implementation->finalizer && !header->free)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 ((header->lheader.implementation->finalizer) (header, 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 /* This must not be called -- it just serves as for EQ test
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 * If lheader->implementation->finalizer is this_marks_a_marked_record,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 * then lrecord has been marked by the GC sweeper
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 * header->implementation is put back to its correct value by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 * sweep_records */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 this_marks_a_marked_record (void *dummy0, int dummy1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 /* Semi-kludge -- lrecord_symbol_value_forward objects get stuck
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 in CONST space and you get SEGV's if you attempt to mark them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 This sits in lheader->implementation->marker. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 this_one_is_unmarkable (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 /* XGCTYPE for records */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 gc_record_type_p (Lisp_Object frob, CONST struct lrecord_implementation *type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 return (XGCTYPE (frob) == Lisp_Record
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 && (XRECORD_LHEADER (frob)->implementation == type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 || XRECORD_LHEADER (frob)->implementation == type + 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 /* Fixed-size type macros */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 /* For fixed-size types that are commonly used, we malloc() large blocks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 of memory at a time and subdivide them into chunks of the correct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 size for an object of that type. This is more efficient than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 malloc()ing each object separately because we save on malloc() time
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 and overhead due to the fewer number of malloc()ed blocks, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 also because we don't need any extra pointers within each object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 to keep them threaded together for GC purposes. For less common
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 (and frequently large-size) types, we use lcrecords, which are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 malloc()ed individually and chained together through a pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 in the lcrecord header. lcrecords do not need to be fixed-size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 (i.e. two objects of the same type need not have the same size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 however, the size of a particular object cannot vary dynamically).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 It is also much easier to create a new lcrecord type because no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 additional code needs to be added to alloc.c. Finally, lcrecords
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 may be more efficient when there are only a small number of them.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 The types that are stored in these large blocks (or "frob blocks")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 are cons, float, compiled-function, symbol, marker, extent, event,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 and string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 Note that strings are special in that they are actually stored in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 two parts: a structure containing information about the string, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 the actual data associated with the string. The former structure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 (a struct Lisp_String) is a fixed-size structure and is managed the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 same way as all the other such types. This structure contains a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 pointer to the actual string data, which is stored in structures of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 type struct string_chars_block. Each string_chars_block consists
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 of a pointer to a struct Lisp_String, followed by the data for that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 string, followed by another pointer to a struct Lisp_String,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 followed by the data for that string, etc. At GC time, the data in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 these blocks is compacted by searching sequentially through all the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 blocks and compressing out any holes created by unmarked strings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 Strings that are more than a certain size (bigger than the size of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 a string_chars_block, although something like half as big might
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 make more sense) are malloc()ed separately and not stored in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 string_chars_blocks. Furthermore, no one string stretches across
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 two string_chars_blocks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 Vectors are each malloc()ed separately, similar to lcrecords.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 In the following discussion, we use conses, but it applies equally
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 well to the other fixed-size types.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 We store cons cells inside of cons_blocks, allocating a new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 cons_block with malloc() whenever necessary. Cons cells reclaimed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 by GC are put on a free list to be reallocated before allocating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 any new cons cells from the latest cons_block. Each cons_block is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 just under 2^n - MALLOC_OVERHEAD bytes long, since malloc (at least
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 the versions in malloc.c and gmalloc.c) really allocates in units
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 of powers of two and uses 4 bytes for its own overhead.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 What GC actually does is to search through all the cons_blocks,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 from the most recently allocated to the oldest, and put all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 cons cells that are not marked (whether or not they're already
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 free) on a cons_free_list. The cons_free_list is a stack, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 so the cons cells in the oldest-allocated cons_block end up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 at the head of the stack and are the first to be reallocated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 If any cons_block is entirely free, it is freed with free()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 and its cons cells removed from the cons_free_list. Because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 the cons_free_list ends up basically in memory order, we have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 a high locality of reference (assuming a reasonable turnover
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 of allocating and freeing) and have a reasonable probability
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 of entirely freeing up cons_blocks that have been more recently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 allocated. This stage is called the "sweep stage" of GC, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 is executed after the "mark stage", which involves starting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 from all places that are known to point to in-use Lisp objects
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (e.g. the obarray, where are all symbols are stored; the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 current catches and condition-cases; the backtrace list of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 currently executing functions; the gcpro list; etc.) and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 recursively marking all objects that are accessible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 At the beginning of the sweep stage, the conses in the cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 blocks are in one of three states: in use and marked, in use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 but not marked, and not in use (already freed). Any conses
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 that are marked have been marked in the mark stage just
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 executed, because as part of the sweep stage we unmark any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 marked objects. The way we tell whether or not a cons cell
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 is in use is through the FREE_STRUCT_P macro. This basically
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 looks at the first 4 bytes (or however many bytes a pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 fits in) to see if all the bits in those bytes are 1. The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 resulting value (0xFFFFFFFF) is not a valid pointer and is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 not a valid Lisp_Object. All current fixed-size types have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 a pointer or Lisp_Object as their first element with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 exception of strings; they have a size value, which can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 never be less than zero, and so 0xFFFFFFFF is invalid for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 strings as well. Now assuming that a cons cell is in use,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 the way we tell whether or not it is marked is to look at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 the mark bit of its car (each Lisp_Object has one bit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 reserved as a mark bit, in case it's needed). Note that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 different types of objects use different fields to indicate
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714 whether the object is marked, but the principle is the same.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 Conses on the free_cons_list are threaded through a pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 stored in the bytes directly after the bytes that are set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 to 0xFFFFFFFF (we cannot overwrite these because the cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 is still in a cons_block and needs to remain marked as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 not in use for the next time that GC happens). This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 implies that all fixed-size types must be at least big
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 enough to store two pointers, which is indeed the case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 for all current fixed-size types.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 Some types of objects need additional "finalization" done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 when an object is converted from in use to not in use;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 this is the purpose of the ADDITIONAL_FREE_type macro.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 For example, markers need to be removed from the chain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 of markers that is kept in each buffer. This is because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 markers in a buffer automatically disappear if the marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 is no longer referenced anywhere (the same does not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 apply to extents, however).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 WARNING: Things are in an extremely bizarre state when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 the ADDITIONAL_FREE_type macros are called, so beware!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 When ERROR_CHECK_GC is defined, we do things differently
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 so as to maximize our chances of catching places where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 there is insufficient GCPROing. The thing we want to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 avoid is having an object that we're using but didn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 GCPRO get freed by GC and then reallocated while we're
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 in the process of using it -- this will result in something
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 seemingly unrelated getting trashed, and is extremely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 difficult to track down. If the object gets freed but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 not reallocated, we can usually catch this because we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 set all bytes of a freed object to 0xDEADBEEF. (The
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 first four bytes, however, are 0xFFFFFFFF, and the next
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 four are a pointer used to chain freed objects together;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 we play some tricks with this pointer to make it more
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 bogus, so crashes are more likely to occur right away.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 We want freed objects to stay free as long as possible,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 so instead of doing what we do above, we maintain the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 free objects in a first-in first-out queue. We also
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 don't recompute the free list each GC, unlike above;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 this ensures that the queue ordering is preserved.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 [This means that we are likely to have worse locality
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 of reference, and that we can never free a frob block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 once it's allocated. (Even if we know that all cells
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 in it are free, there's no easy way to remove all those
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 cells from the free list because the objects on the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 free list are unlikely to be in memory order.)]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 Furthermore, we never take objects off the free list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 unless there's a large number (usually 1000, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 varies depending on type) of them already on the list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 This way, we ensure that an object that gets freed will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 remain free for the next 1000 (or whatever) times that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 an object of that type is allocated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 #ifndef MALLOC_OVERHEAD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 #ifdef GNU_MALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 #define MALLOC_OVERHEAD 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 #elif defined (rcheck)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 #define MALLOC_OVERHEAD 20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 #define MALLOC_OVERHEAD 8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 #ifdef ALLOC_NO_POOLS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 # define TYPE_ALLOC_SIZE(type, structtype) 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 # define TYPE_ALLOC_SIZE(type, structtype) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 ((2048 - MALLOC_OVERHEAD - sizeof (struct type##_block *)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 / sizeof (structtype))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 #define DECLARE_FIXED_TYPE_ALLOC(type, structtype) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 struct type##_block \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 struct type##_block *prev; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 structtype block[TYPE_ALLOC_SIZE (type, structtype)]; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 }; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 static struct type##_block *current_##type##_block; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 static int current_##type##_block_index; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 static structtype *type##_free_list; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 static structtype *type##_free_list_tail; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 static void \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 init_##type##_alloc (void) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 current_##type##_block = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 current_##type##_block_index = countof (current_##type##_block->block); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 type##_free_list = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 type##_free_list_tail = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 static int gc_count_num_##type##_in_use, gc_count_num_##type##_freelist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 #define ALLOCATE_FIXED_TYPE_FROM_BLOCK(type, result) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 if (current_##type##_block_index \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 == countof (current_##type##_block->block)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 struct type##_block *__new__ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 = allocate_lisp_storage (sizeof (struct type##_block)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 __new__->prev = current_##type##_block; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 current_##type##_block = __new__; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 current_##type##_block_index = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 (result) = \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 &(current_##type##_block->block[current_##type##_block_index++]); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 /* Allocate an instance of a type that is stored in blocks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 TYPE is the "name" of the type, STRUCTTYPE is the corresponding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 structure type. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 #ifdef ERROR_CHECK_GC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 /* Note: if you get crashes in this function, suspect incorrect calls
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 to free_cons() and friends. This happened once because the cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 cell was not GC-protected and was getting collected before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 free_cons() was called. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 #define ALLOCATE_FIXED_TYPE_1(type, structtype, result) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 if (gc_count_num_##type##_freelist > \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 MINIMUM_ALLOWED_FIXED_TYPE_CELLS_##type) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 result = type##_free_list; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 /* Before actually using the chain pointer, we complement all its \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 bits; see FREE_FIXED_TYPE(). */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 type##_free_list = \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 (structtype *) ~(unsigned long) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 (* (structtype **) ((char *) result + sizeof (void *))); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 gc_count_num_##type##_freelist--; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 ALLOCATE_FIXED_TYPE_FROM_BLOCK (type, result); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 MARK_STRUCT_AS_NOT_FREE (result); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 #define ALLOCATE_FIXED_TYPE_1(type, structtype, result) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 if (type##_free_list) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 result = type##_free_list; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 type##_free_list = \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 * (structtype **) ((char *) result + sizeof (void *)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 ALLOCATE_FIXED_TYPE_FROM_BLOCK (type, result); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 MARK_STRUCT_AS_NOT_FREE (result); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 #define ALLOCATE_FIXED_TYPE(type, structtype, result) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880 ALLOCATE_FIXED_TYPE_1 (type, structtype, result); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 INCREMENT_CONS_COUNTER (sizeof (structtype), #type); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 #define NOSEEUM_ALLOCATE_FIXED_TYPE(type, structtype, result) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 do \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887 ALLOCATE_FIXED_TYPE_1 (type, structtype, result); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 NOSEEUM_INCREMENT_CONS_COUNTER (sizeof (structtype), #type); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 /* INVALID_POINTER_VALUE should be a value that is invalid as a pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 to a Lisp object and invalid as an actual Lisp_Object value. We have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 to make sure that this value cannot be an integer in Lisp_Object form.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 0xFFFFFFFF could be so on a 64-bit system, so we extend it to 64 bits.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 On a 32-bit system, the type bits will be non-zero, making the value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 be a pointer, and the pointer will be misaligned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 Even if Emacs is run on some weirdo system that allows and allocates
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 byte-aligned pointers, this pointer is at the very top of the address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 space and so it's almost inconceivable that it could ever be valid. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 #if INTBITS == 32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 # define INVALID_POINTER_VALUE 0xFFFFFFFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 #elif INTBITS == 48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 # define INVALID_POINTER_VALUE 0xFFFFFFFFFFFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 #elif INTBITS == 64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 # define INVALID_POINTER_VALUE 0xFFFFFFFFFFFFFFFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 You have some weird system and need to supply a reasonable value here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 #define FREE_STRUCT_P(ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 (* (void **) ptr == (void *) INVALID_POINTER_VALUE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 #define MARK_STRUCT_AS_FREE(ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 (* (void **) ptr = (void *) INVALID_POINTER_VALUE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 #define MARK_STRUCT_AS_NOT_FREE(ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 (* (void **) ptr = 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 #ifdef ERROR_CHECK_GC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 #define PUT_FIXED_TYPE_ON_FREE_LIST(type, structtype, ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 do { if (type##_free_list_tail) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 /* When we store the chain pointer, we complement all \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 its bits; this should significantly increase its \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 bogosity in case someone tries to use the value, and \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 should make us dump faster if someone stores something \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 over the pointer because when it gets un-complemented in \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 ALLOCATED_FIXED_TYPE(), the resulting pointer will be \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930 extremely bogus. */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 * (structtype **) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 ((char *) type##_free_list_tail + sizeof (void *)) = \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 (structtype *) ~(unsigned long) ptr; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 type##_free_list = ptr; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 type##_free_list_tail = ptr; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 #define PUT_FIXED_TYPE_ON_FREE_LIST(type, structtype, ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 do { * (structtype **) ((char *) ptr + sizeof (void *)) = \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944 type##_free_list; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 type##_free_list = ptr; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 /* TYPE and STRUCTTYPE are the same as in ALLOCATE_FIXED_TYPE(). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 #define FREE_FIXED_TYPE(type, structtype, ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 do { structtype *_weird_ = (ptr); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 ADDITIONAL_FREE_##type (_weird_); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 deadbeef_memory (ptr, sizeof (structtype)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 PUT_FIXED_TYPE_ON_FREE_LIST (type, structtype, ptr); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 MARK_STRUCT_AS_FREE (_weird_); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 /* Like FREE_FIXED_TYPE() but used when we are explicitly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 freeing a structure through free_cons(), free_marker(), etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 rather than through the normal process of sweeping.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 We attempt to undo the changes made to the allocation counters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 as a result of this structure being allocated. This is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 completely necessary but helps keep things saner: e.g. this way,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 repeatedly allocating and freeing a cons will not result in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 the consing-since-gc counter advancing, which would cause a GC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 and somewhat defeat the purpose of explicitly freeing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 #define FREE_FIXED_TYPE_WHEN_NOT_IN_GC(type, structtype, ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 do { FREE_FIXED_TYPE (type, structtype, ptr); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 DECREMENT_CONS_COUNTER (sizeof (structtype)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 gc_count_num_##type##_freelist++; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 /* Cons allocation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 DECLARE_FIXED_TYPE_ALLOC (cons, struct Lisp_Cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 /* conses are used and freed so often that we set this really high */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 /* #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_cons 20000 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_cons 2000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 DEFUN ("cons", Fcons, Scons, 2, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 Create a new cons, give it CAR and CDR as components, and return it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 (car, cdr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 Lisp_Object car, cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 Lisp_Object val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 struct Lisp_Cons *c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 ALLOCATE_FIXED_TYPE (cons, struct Lisp_Cons, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 XSETCONS (val, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 XCAR (val) = car;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 XCDR (val) = cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 /* This is identical to Fcons() but it used for conses that we're
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 going to free later, and is useful when trying to track down
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 "real" consing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 noseeum_cons (Lisp_Object car, Lisp_Object cdr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 Lisp_Object val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 struct Lisp_Cons *c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 NOSEEUM_ALLOCATE_FIXED_TYPE (cons, struct Lisp_Cons, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 XSETCONS (val, c);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 XCAR (val) = car;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016 XCDR (val) = cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 DEFUN ("list", Flist, Slist, 0, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 Return a newly created list with specified arguments as elements.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 Any number of arguments, even zero arguments, are allowed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 Lisp_Object len, val, val_tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 len = make_int (nargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 val = Fmake_list (len, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 val_tail = val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 while (!NILP (val_tail))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 XCAR (val_tail) = *args++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036 val_tail = XCDR (val_tail);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 list1 (Lisp_Object obj0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 return (Fcons (obj0, Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 list2 (Lisp_Object obj0, Lisp_Object obj1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 return Fcons (obj0, list1 (obj1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056 list3 (Lisp_Object obj0, Lisp_Object obj1, Lisp_Object obj2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 return Fcons (obj0, list2 (obj1, obj2));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 cons3 (Lisp_Object obj0, Lisp_Object obj1, Lisp_Object obj2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066 return Fcons (obj0, Fcons (obj1, obj2));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 list4 (Lisp_Object obj0, Lisp_Object obj1, Lisp_Object obj2, Lisp_Object obj3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 return Fcons (obj0, list3 (obj1, obj2, obj3));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 list5 (Lisp_Object obj0, Lisp_Object obj1, Lisp_Object obj2, Lisp_Object obj3,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 Lisp_Object obj4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 return Fcons (obj0, list4 (obj1, obj2, obj3, obj4));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 list6 (Lisp_Object obj0, Lisp_Object obj1, Lisp_Object obj2, Lisp_Object obj3,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 Lisp_Object obj4, Lisp_Object obj5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 /* This cannot GC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 return Fcons (obj0, list5 (obj1, obj2, obj3, obj4, obj5));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 DEFUN ("make-list", Fmake_list, Smake_list, 2, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 Return a newly created list of length LENGTH, with each element being INIT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 (length, init)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 Lisp_Object length, init;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 int size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 CHECK_NATNUM (length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 size = XINT (length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 while (size-- > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106 val = Fcons (init, val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 /* Float allocation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 #ifdef LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 DECLARE_FIXED_TYPE_ALLOC (float, struct Lisp_Float);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_float 1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 make_float (double float_value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 struct Lisp_Float *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 ALLOCATE_FIXED_TYPE (float, struct Lisp_Float, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 f->lheader.implementation = lrecord_float;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 float_next (f) = ((struct Lisp_Float *) -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 float_data (f) = float_value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 XSETFLOAT (val, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 return (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 #endif /* LISP_FLOAT_TYPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 /* Vector allocation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 static Lisp_Object all_vectors;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 /* #### should allocate `small' vectors from a frob-block */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 static struct Lisp_Vector *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 make_vector_internal (EMACS_INT sizei)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 EMACS_INT sizem = (sizeof (struct Lisp_Vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 /* -1 because struct Lisp_Vector includes 1 slot,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 * +1 to account for vector_next */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 + (sizei - 1 + 1) * sizeof (Lisp_Object)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 struct Lisp_Vector *p = allocate_lisp_storage (sizem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 #ifdef LRECORD_VECTOR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 set_lheader_implementation (&(p->lheader), lrecord_vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 INCREMENT_CONS_COUNTER (sizem, "vector");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 p->size = sizei;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 vector_next (p) = all_vectors;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 XSETVECTOR (all_vectors, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 return (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 make_vector (EMACS_INT length, Lisp_Object init)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 EMACS_INT elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 Lisp_Object vector = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 struct Lisp_Vector *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 if (length < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 length = XINT (wrong_type_argument (Qnatnump, make_int (length)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 p = make_vector_internal (length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 XSETVECTOR (vector, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 /* Initialize big arrays full of 0's quickly, for what that's worth */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 char *travesty = (char *) &init;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 for (i = 1; i < sizeof (Lisp_Object); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 if (travesty[i] != travesty[0])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 goto fill;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 memset (vector_data (p), travesty[0], length * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 return (vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 fill:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 for (elt = 0; elt < length; elt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 vector_data(p)[elt] = init;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 return (vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 DEFUN ("make-vector", Fmake_vector, Smake_vector, 2, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 Return a newly created vector of length LENGTH, with each element being INIT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 See also the function `vector'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 (length, init)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 Lisp_Object length, init;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 if (!INTP (length) || XINT (length) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 length = wrong_type_argument (Qnatnump, length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 return (make_vector (XINT (length), init));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 DEFUN ("vector", Fvector, Svector, 0, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 Return a newly created vector with specified arguments as elements.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 Any number of arguments, even zero arguments, are allowed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 Lisp_Object vector = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 int elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 struct Lisp_Vector *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 p = make_vector_internal (nargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 XSETVECTOR (vector, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 for (elt = 0; elt < nargs; elt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 vector_data(p)[elt] = args[elt];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 return (vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233 vector1 (Lisp_Object obj0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 return Fvector (1, &obj0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 vector2 (Lisp_Object obj0, Lisp_Object obj1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 Lisp_Object args[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 args[0] = obj0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 args[1] = obj1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 return Fvector (2, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 vector3 (Lisp_Object obj0, Lisp_Object obj1, Lisp_Object obj2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 Lisp_Object args[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 args[0] = obj0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 args[1] = obj1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 args[2] = obj2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 return Fvector (3, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 vector4 (Lisp_Object obj0, Lisp_Object obj1, Lisp_Object obj2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 Lisp_Object obj3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 Lisp_Object args[4];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 args[0] = obj0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 args[1] = obj1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 args[2] = obj2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265 args[3] = obj3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 return Fvector (4, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 vector5 (Lisp_Object obj0, Lisp_Object obj1, Lisp_Object obj2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1271 Lisp_Object obj3, Lisp_Object obj4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1272 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1273 Lisp_Object args[5];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1274 args[0] = obj0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1275 args[1] = obj1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276 args[2] = obj2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 args[3] = obj3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278 args[4] = obj4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 return Fvector (5, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283 vector6 (Lisp_Object obj0, Lisp_Object obj1, Lisp_Object obj2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 Lisp_Object obj3, Lisp_Object obj4, Lisp_Object obj5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 Lisp_Object args[6];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 args[0] = obj0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 args[1] = obj1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 args[2] = obj2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290 args[3] = obj3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 args[4] = obj4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 args[5] = obj5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 return Fvector (6, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 vector7 (Lisp_Object obj0, Lisp_Object obj1, Lisp_Object obj2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 Lisp_Object obj3, Lisp_Object obj4, Lisp_Object obj5,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 Lisp_Object obj6)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 Lisp_Object args[7];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 args[0] = obj0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303 args[1] = obj1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 args[2] = obj2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 args[3] = obj3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 args[4] = obj4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 args[5] = obj5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308 args[6] = obj6;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 return Fvector (7, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 vector8 (Lisp_Object obj0, Lisp_Object obj1, Lisp_Object obj2,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 Lisp_Object obj3, Lisp_Object obj4, Lisp_Object obj5,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 Lisp_Object obj6, Lisp_Object obj7)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 Lisp_Object args[8];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 args[0] = obj0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 args[1] = obj1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320 args[2] = obj2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 args[3] = obj3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322 args[4] = obj4;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 args[5] = obj5;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 args[6] = obj6;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 args[7] = obj7;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 return Fvector (8, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 /* Bit Vector allocation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 static Lisp_Object all_bit_vectors;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335 /* #### should allocate `small' bit vectors from a frob-block */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 static struct Lisp_Bit_Vector *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 make_bit_vector_internal (EMACS_INT sizei)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 EMACS_INT sizem = (sizeof (struct Lisp_Bit_Vector) +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 /* -1 because struct Lisp_Bit_Vector includes 1 slot */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 sizeof (long) * (BIT_VECTOR_LONG_STORAGE (sizei) - 1));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 struct Lisp_Bit_Vector *p = allocate_lisp_storage (sizem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343 set_lheader_implementation (&(p->lheader), lrecord_bit_vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 INCREMENT_CONS_COUNTER (sizem, "bit-vector");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 bit_vector_length (p) = sizei;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 bit_vector_next (p) = all_bit_vectors;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 /* make sure the extra bits in the last long are 0; the calling
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 functions might not set them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351 p->bits[BIT_VECTOR_LONG_STORAGE (sizei) - 1] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 XSETBIT_VECTOR (all_bit_vectors, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 return (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 make_bit_vector (EMACS_INT length, Lisp_Object init)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 Lisp_Object bit_vector = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360 struct Lisp_Bit_Vector *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 EMACS_INT num_longs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 if (length < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 length = XINT (wrong_type_argument (Qnatnump, make_int (length)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 CHECK_BIT (init);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 num_longs = BIT_VECTOR_LONG_STORAGE (length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 p = make_bit_vector_internal (length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370 XSETBIT_VECTOR (bit_vector, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 if (ZEROP (init))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 memset (p->bits, 0, num_longs * sizeof (long));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 EMACS_INT bits_in_last = length & (LONGBITS_POWER_OF_2 - 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 memset (p->bits, ~0, num_longs * sizeof (long));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 /* But we have to make sure that the unused bits in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379 last integer are 0, so that equal/hash is easy. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 if (bits_in_last)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 p->bits[num_longs - 1] &= (1 << bits_in_last) - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 return (bit_vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 make_bit_vector_from_byte_vector (unsigned char *bytevec, EMACS_INT length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390 Lisp_Object bit_vector = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1391 struct Lisp_Bit_Vector *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1392 EMACS_INT i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 if (length < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1395 length = XINT (wrong_type_argument (Qnatnump, make_int (length)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1396
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1397 p = make_bit_vector_internal (length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1398 XSETBIT_VECTOR (bit_vector, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 for (i = 0; i < length; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 set_bit_vector_bit (p, i, bytevec[i]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 return bit_vector;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1406 DEFUN ("make-bit-vector", Fmake_bit_vector, Smake_bit_vector, 2, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 Return a newly created bit vector of length LENGTH.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 Each element is set to INIT. See also the function `bit-vector'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1410 (length, init)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1411 Lisp_Object length, init;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1412 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1413 if (!INTP (length) || XINT (length) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1414 length = wrong_type_argument (Qnatnump, length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416 return (make_bit_vector (XINT (length), init));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 DEFUN ("bit-vector", Fbit_vector, Sbit_vector, 0, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420 Return a newly created bit vector with specified arguments as elements.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 Any number of arguments, even zero arguments, are allowed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1422 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1423 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1424 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1425 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1426 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1427 Lisp_Object bit_vector = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1428 int elt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1429 struct Lisp_Bit_Vector *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1431 for (elt = 0; elt < nargs; elt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1432 CHECK_BIT (args[elt]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1434 p = make_bit_vector_internal (nargs);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1435 XSETBIT_VECTOR (bit_vector, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1436
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1437 for (elt = 0; elt < nargs; elt++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1438 set_bit_vector_bit (p, elt, !ZEROP (args[elt]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1440 return (bit_vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1441 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1444 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1445 /* Compiled-function allocation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1446 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1448 DECLARE_FIXED_TYPE_ALLOC (compiled_function, struct Lisp_Compiled_Function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_compiled_function 1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1452 make_compiled_function (int make_pure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454 struct Lisp_Compiled_Function *b;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455 Lisp_Object new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 int size = sizeof (struct Lisp_Compiled_Function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 if (make_pure && check_purespace (size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 b = (struct Lisp_Compiled_Function *) (PUREBEG + pureptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 set_lheader_implementation (&(b->lheader), lrecord_compiled_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 pureptr += size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463 bump_purestat (&purestat_bytecode, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 ALLOCATE_FIXED_TYPE (compiled_function, struct Lisp_Compiled_Function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 set_lheader_implementation (&(b->lheader), lrecord_compiled_function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 b->maxdepth = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472 b->flags.documentationp = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 b->flags.interactivep = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1474 b->flags.domainp = 0; /* I18N3 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1475 b->bytecodes = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1476 b->constants = Qzero;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1477 b->arglist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478 b->doc_and_interactive = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 b->annotated = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 XSETCOMPILED_FUNCTION (new, b);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1483 return (new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1484 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 DEFUN ("make-byte-code", Fmake_byte_code, Smake_byte_code, 4, MANY, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487 Create a compiled-function object.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1488 Usage: (arglist instructions constants stack-size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1489 &optional doc-string interactive-spec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1490 Note that, unlike all other emacs-lisp functions, calling this with five
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 arguments is NOT the same as calling it with six arguments, the last of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492 which is nil. If the INTERACTIVE arg is specified as nil, then that means
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 that this function was defined with `(interactive)'. If the arg is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 specified, then that means the function is not interactive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1495 This is terrible behavior which is retained for compatibility with old
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496 `.elc' files which expected these semantics.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1497 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498 (nargs, args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499 int nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 Lisp_Object *args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 /* In a non-insane world this function would have this arglist...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503 (arglist, instructions, constants, stack_size, doc_string, interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1504 Lisp_Object arglist, instructions, constants, stack_size, doc_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1505 interactive;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1506 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1507 Lisp_Object arglist = args[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1508 Lisp_Object instructions = args[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1509 Lisp_Object constants = args[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1510 Lisp_Object stack_size = args[3];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1511 Lisp_Object doc_string = ((nargs > 4) ? args[4] : Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1512 Lisp_Object interactive = ((nargs > 5) ? args[5] : Qunbound);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1513 /* Don't purecopy the doc references in instructions because it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514 wasteful; they will get fixed up later.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516 #### If something goes wrong and they don't get fixed up,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 we're screwed, because pure stuff isn't marked and thus the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 cons references won't be marked and will get reused.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 Note: there will be a window after the byte code is created and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 before the doc references are fixed up in which there will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522 impure objects inside a pure object, which apparently won't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523 get marked, leading the trouble. But during that entire window,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 the objects are sitting on Vload_force_doc_string_list, which
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 is staticpro'd, so we're OK. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 int purecopy_instructions = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 if (nargs > 6)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 return Fsignal (Qwrong_number_of_arguments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 list2 (intern ("make-byte-code"), make_int (nargs)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 CHECK_LIST (arglist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 /* instructions is a string or a cons (string . int) for a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 lazy-loaded function. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 if (CONSP (instructions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537 CHECK_STRING (XCAR (instructions));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 CHECK_INT (XCDR (instructions));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 if (!NILP (constants))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 CHECK_VECTOR (constants);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 purecopy_instructions = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 CHECK_STRING (instructions);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 CHECK_VECTOR (constants);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 CHECK_NATNUM (stack_size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 /* doc_string may be nil, string, int, or a cons (string . int). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551 /* interactive may be list or string (or unbound). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 if (purify_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555 if (!purified (arglist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 arglist = Fpurecopy (arglist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557 if (purecopy_instructions && !purified (instructions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 instructions = Fpurecopy (instructions);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559 if (!purified (doc_string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 doc_string = Fpurecopy (doc_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561 if (!purified (interactive) && !UNBOUNDP (interactive))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 interactive = Fpurecopy (interactive);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 /* Statistics are kept differently for the constants */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565 if (!purified (constants))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 #ifdef PURESTAT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 int old = purecopying_for_bytecode;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 purecopying_for_bytecode = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 constants = Fpurecopy (constants);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 purecopying_for_bytecode = old;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 constants = Fpurecopy (constants);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 #endif /* PURESTAT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 #ifdef PURESTAT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578 if (STRINGP (instructions))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 bump_purestat (&purestat_string_bytecodes, pure_sizeof (instructions));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 if (VECTORP (constants))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 bump_purestat (&purestat_vector_bytecode_constants,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 pure_sizeof (constants));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 if (STRINGP (doc_string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 /* These should be have been snagged by make-docfile... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585 bump_purestat (&purestat_string_documentation,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 pure_sizeof (doc_string));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 if (STRINGP (interactive))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 bump_purestat (&purestat_string_interactive,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 pure_sizeof (interactive));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 #endif /* PURESTAT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594 int docp = !NILP (doc_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1595 int intp = !UNBOUNDP (interactive);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1596 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1597 int domp = !NILP (Vfile_domain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1598 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1599 Lisp_Object val = make_compiled_function (purify_flag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1600 struct Lisp_Compiled_Function *b = XCOMPILED_FUNCTION (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601 b->flags.documentationp = docp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 b->flags.interactivep = intp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 b->flags.domainp = domp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 b->maxdepth = XINT (stack_size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 b->bytecodes = instructions;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 b->constants = constants;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 b->arglist = arglist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 if (!NILP (Vcurrent_compiled_function_annotation))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 b->annotated = Fpurecopy (Vcurrent_compiled_function_annotation);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 else if (!NILP (Vload_file_name_internal_the_purecopy))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 b->annotated = Vload_file_name_internal_the_purecopy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 else if (!NILP (Vload_file_name_internal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 Vload_file_name_internal_the_purecopy =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 Fpurecopy (Ffile_name_nondirectory (Vload_file_name_internal));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 b->annotated = Vload_file_name_internal_the_purecopy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 if (docp && intp && domp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 b->doc_and_interactive = (((purify_flag) ? pure_cons : Fcons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 (doc_string,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 (((purify_flag) ? pure_cons : Fcons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 (interactive, Vfile_domain))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 else if (docp && domp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 b->doc_and_interactive = (((purify_flag) ? pure_cons : Fcons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631 (doc_string, Vfile_domain));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 else if (intp && domp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 b->doc_and_interactive = (((purify_flag) ? pure_cons : Fcons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 (interactive, Vfile_domain));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 if (docp && intp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 b->doc_and_interactive = (((purify_flag) ? pure_cons : Fcons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 (doc_string, interactive));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 else if (intp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 b->doc_and_interactive = interactive;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 else if (domp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 b->doc_and_interactive = Vfile_domain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 b->doc_and_interactive = doc_string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 return (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1655 /* Symbol allocation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 DECLARE_FIXED_TYPE_ALLOC (symbol, struct Lisp_Symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_symbol 1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1661 DEFUN ("make-symbol", Fmake_symbol, Smake_symbol, 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 Return a newly allocated uninterned symbol whose name is NAME.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663 Its value and function definition are void, and its property list is nil.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 (str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1666 Lisp_Object str;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1667 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1668 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 struct Lisp_Symbol *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 CHECK_STRING (str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1673 ALLOCATE_FIXED_TYPE (symbol, struct Lisp_Symbol, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1674 #ifdef LRECORD_SYMBOL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1675 set_lheader_implementation (&(p->lheader), lrecord_symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1676 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 p->name = XSTRING (str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678 p->plist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 p->value = Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680 p->function = Qunbound;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 symbol_next (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 XSETSYMBOL (val, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1687 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 /* Extent allocation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 DECLARE_FIXED_TYPE_ALLOC (extent, struct extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1692 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_extent 1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 struct extent *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695 allocate_extent (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 struct extent *e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1698
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1699 ALLOCATE_FIXED_TYPE (extent, struct extent, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1700 /* memset (e, 0, sizeof (struct extent)); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 set_lheader_implementation (&(e->lheader), lrecord_extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702 extent_object (e) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 set_extent_start (e, -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 set_extent_end (e, -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1705 e->plist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1706
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1707 memset (&e->flags, 0, sizeof (e->flags));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 extent_face (e) = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710 e->flags.end_open = 1; /* default is for endpoints to behave like markers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 e->flags.detachable = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 return (e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 /* Event allocation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721 DECLARE_FIXED_TYPE_ALLOC (event, struct Lisp_Event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_event 1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 allocate_event (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 struct Lisp_Event *e;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 ALLOCATE_FIXED_TYPE (event, struct Lisp_Event, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 set_lheader_implementation (&(e->lheader), lrecord_event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 XSETEVENT (val, e);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 /* Marker allocation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742 DECLARE_FIXED_TYPE_ALLOC (marker, struct Lisp_Marker);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_marker 1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 DEFUN ("make-marker", Fmake_marker, Smake_marker, 0, 0, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746 Return a newly allocated marker which does not point at any place.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 struct Lisp_Marker *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 ALLOCATE_FIXED_TYPE (marker, struct Lisp_Marker, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 set_lheader_implementation (&(p->lheader), lrecord_marker);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 p->buffer = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 p->memind = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757 marker_next (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 marker_prev (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1759 p->insertion_type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1760 XSETMARKER (val, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1761 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1762 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1763
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765 noseeum_make_marker (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1767 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1768 struct Lisp_Marker *p;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1769
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1770 NOSEEUM_ALLOCATE_FIXED_TYPE (marker, struct Lisp_Marker, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1771 set_lheader_implementation (&(p->lheader), lrecord_marker);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1772 p->buffer = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 p->memind = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774 marker_next (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 marker_prev (p) = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 p->insertion_type = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1777 XSETMARKER (val, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1778 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1779 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1780
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1782 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1783 /* String allocation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 /* The data for "short" strings generally resides inside of structs of type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1787 string_chars_block. The Lisp_String structure is allocated just like any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1788 other Lisp object (except for vectors), and these are freelisted when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1789 they get garbage collected. The data for short strings get compacted,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1790 but the data for large strings do not.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 Previously Lisp_String structures were relocated, but this caused a lot
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793 of bus-errors because the C code didn't include enough GCPRO's for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 strings (since EVERY REFERENCE to a short string needed to be GCPRO'd so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 that the reference would get relocated).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 This new method makes things somewhat bigger, but it is MUCH safer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 DECLARE_FIXED_TYPE_ALLOC (string, struct Lisp_String);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800 /* strings are used and freed quite often */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 /* #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_string 10000 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802 #define MINIMUM_ALLOWED_FIXED_TYPE_CELLS_string 1000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 /* String blocks contain this many useful bytes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805 #define STRING_CHARS_BLOCK_SIZE \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 (8192 - MALLOC_OVERHEAD - ((2 * sizeof (struct string_chars_block *)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 + sizeof (EMACS_INT)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 /* Block header for small strings. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 struct string_chars_block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 EMACS_INT pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 struct string_chars_block *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 struct string_chars_block *prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 /* Contents of string_chars_block->string_chars are interleaved
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 string_chars structures (see below) and the actual string data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 unsigned char string_chars[STRING_CHARS_BLOCK_SIZE];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 struct string_chars_block *first_string_chars_block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 struct string_chars_block *current_string_chars_block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 /* If SIZE is the length of a string, this returns how many bytes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 * the string occupies in string_chars_block->string_chars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 * (including alignment padding).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 #define STRING_FULLSIZE(s) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 ALIGN_SIZE (((s) + 1 + sizeof (struct Lisp_String *)),\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 ALIGNOF (struct Lisp_String *))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 #define BIG_STRING_FULLSIZE_P(fullsize) ((fullsize) >= STRING_CHARS_BLOCK_SIZE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831 #define BIG_STRING_SIZE_P(size) (BIG_STRING_FULLSIZE_P (STRING_FULLSIZE(size)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 #define CHARS_TO_STRING_CHAR(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 ((struct string_chars *) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835 (((char *) (x)) - (slot_offset (struct string_chars, chars))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 struct string_chars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 struct Lisp_String *string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 unsigned char chars[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 struct unused_string_chars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 struct Lisp_String *string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 EMACS_INT fullsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 init_string_chars_alloc (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1853 first_string_chars_block =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1854 (struct string_chars_block *) xmalloc (sizeof (struct string_chars_block));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1855 first_string_chars_block->prev = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1856 first_string_chars_block->next = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1857 first_string_chars_block->pos = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1858 current_string_chars_block = first_string_chars_block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1859 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1861 static struct string_chars *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1862 allocate_string_chars_struct (struct Lisp_String *string_it_goes_with,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1863 EMACS_INT fullsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1864 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1865 struct string_chars *s_chars;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1866
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1867 /* Allocate the string's actual data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1868 if (BIG_STRING_FULLSIZE_P (fullsize))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1869 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 s_chars = (struct string_chars *) xmalloc (fullsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 else if (fullsize <=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1873 (countof (current_string_chars_block->string_chars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1874 - current_string_chars_block->pos))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1875 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1876 /* This string can fit in the current string chars block */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1877 s_chars = (struct string_chars *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1878 (current_string_chars_block->string_chars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1879 + current_string_chars_block->pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1880 current_string_chars_block->pos += fullsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1881 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1882 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1883 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1884 /* Make a new current string chars block */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1885 struct string_chars_block *new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1886 = (struct string_chars_block *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1887 xmalloc (sizeof (struct string_chars_block));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1888
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1889 current_string_chars_block->next = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1890 new->prev = current_string_chars_block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1891 new->next = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1892 current_string_chars_block = new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1893 new->pos = fullsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1894 s_chars = (struct string_chars *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1895 current_string_chars_block->string_chars;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1896 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1897
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1898 s_chars->string = string_it_goes_with;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1899
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1900 INCREMENT_CONS_COUNTER (fullsize, "string chars");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1901
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1902 return s_chars;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1903 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1904
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1905 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1906 make_uninit_string (Bytecount length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1907 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1908 struct Lisp_String *s;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1909 struct string_chars *s_chars;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1910 EMACS_INT fullsize = STRING_FULLSIZE (length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1911 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1912
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1913 if ((length < 0) || (fullsize <= 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1914 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1915
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1916 /* Allocate the string header */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1917 ALLOCATE_FIXED_TYPE (string, struct Lisp_String, s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1919 s_chars = allocate_string_chars_struct (s, fullsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1921 set_string_data (s, &(s_chars->chars[0]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1922 set_string_length (s, length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1923 s->plist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1925 set_string_byte (s, length, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1927 XSETSTRING (val, s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1928 return (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1929 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1931 #ifdef VERIFY_STRING_CHARS_INTEGRITY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1932 static void verify_string_chars_integrity (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1933 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1934
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1935 /* Resize the string S so that DELTA bytes can be inserted starting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1936 at POS. If DELTA < 0, it means deletion starting at POS. If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1937 POS < 0, resize the string but don't copy any characters. Use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1938 this if you're planning on completely overwriting the string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1939 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1941 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1942 resize_string (struct Lisp_String *s, Bytecount pos, Bytecount delta)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1943 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1944 #ifdef VERIFY_STRING_CHARS_INTEGRITY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1945 verify_string_chars_integrity ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1946 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1947
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1948 #ifdef ERROR_CHECK_BUFPOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1949 if (pos >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1950 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1951 assert (pos <= string_length (s));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1952 if (delta < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1953 assert (pos + (-delta) <= string_length (s));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1954 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1955 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1956 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1957 if (delta < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1958 assert ((-delta) <= string_length (s));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1959 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1960 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1962 if (pos >= 0 && delta < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1963 /* If DELTA < 0, the functions below will delete the characters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1964 before POS. We want to delete characters *after* POS, however,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1965 so convert this to the appropriate form. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1966 pos += -delta;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1967
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1968 if (delta == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1969 /* simplest case: no size change. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1970 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1971 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1972 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1973 EMACS_INT oldfullsize = STRING_FULLSIZE (string_length (s));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1974 EMACS_INT newfullsize = STRING_FULLSIZE (string_length (s) + delta);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1976 if (oldfullsize == newfullsize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1977 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1978 /* next simplest case; size change but the necessary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1979 allocation size won't change (up or down; code somewhere
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1980 depends on there not being any unused allocation space,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1981 modulo any alignment constraints). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1982 if (pos >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1983 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1984 Bufbyte *addroff = pos + string_data (s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1986 memmove (addroff + delta, addroff,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1987 /* +1 due to zero-termination. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1988 string_length (s) + 1 - pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1989 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1990 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1991 else if (BIG_STRING_FULLSIZE_P (oldfullsize) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1992 BIG_STRING_FULLSIZE_P (newfullsize))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1993 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1994 /* next simplest case; the string is big enough to be malloc()ed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1995 itself, so we just realloc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1996
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1997 It's important not to let the string get below the threshold
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1998 for making big strings and still remain malloc()ed; if that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1999 were the case, repeated calls to this function on the same
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2000 string could result in memory leakage. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2001 set_string_data (s, (Bufbyte *) xrealloc (string_data (s),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2002 newfullsize));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2003 if (pos >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2004 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2005 Bufbyte *addroff = pos + string_data (s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2007 memmove (addroff + delta, addroff,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2008 /* +1 due to zero-termination. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2009 string_length (s) + 1 - pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2010 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2011 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2012 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2013 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2014 /* worst case. We make a new string_chars struct and copy
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2015 the string's data into it, inserting/deleting the delta
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2016 in the process. The old string data will either get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2017 freed by us (if it was malloc()ed) or will be reclaimed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2018 in the normal course of garbage collection. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2019 struct string_chars *s_chars =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2020 allocate_string_chars_struct (s, newfullsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2021 Bufbyte *new_addr = &(s_chars->chars[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2022 Bufbyte *old_addr = string_data (s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2023 if (pos >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2024 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2025 memcpy (new_addr, old_addr, pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2026 memcpy (new_addr + pos + delta, old_addr + pos,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2027 string_length (s) + 1 - pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2028 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2029 set_string_data (s, new_addr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2030 if (BIG_STRING_FULLSIZE_P (oldfullsize))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2031 xfree (old_addr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2032 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2033 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2034 /* We need to mark this chunk of the string_chars_block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2035 as unused so that compact_string_chars() doesn't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2036 freak. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2037 struct string_chars *old_s_chars =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2038 (struct string_chars *) ((char *) old_addr -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2039 sizeof (struct Lisp_String *));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2040 /* Sanity check to make sure we aren't hosed by strange
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2041 alignment/padding. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2042 assert (old_s_chars->string == s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2043 MARK_STRUCT_AS_FREE (old_s_chars);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2044 ((struct unused_string_chars *) old_s_chars)->fullsize =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2045 oldfullsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2046 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2047 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2048
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2049 set_string_length (s, string_length (s) + delta);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2050 /* If pos < 0, the string won't be zero-terminated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2051 Terminate now just to make sure. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2052 string_data (s)[string_length (s)] = '\0';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2053
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2054 if (pos >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2055 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2056 Lisp_Object string = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2058 XSETSTRING (string, s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2059 /* We also have to adjust all of the extent indices after the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2060 place we did the change. We say "pos - 1" because
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2061 adjust_extents() is exclusive of the starting position
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2062 passed to it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2063 adjust_extents (string, pos - 1, string_length (s),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2064 delta);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2065 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2066 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2068 #ifdef VERIFY_STRING_CHARS_INTEGRITY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2069 verify_string_chars_integrity ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2070 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2071 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2072
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2073 DEFUN ("make-string", Fmake_string, Smake_string, 2, 2, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2074 Return a newly created string of length LENGTH, with each element being INIT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2075 LENGTH must be an integer and INIT must be a character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2076 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2077 (length, init)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2078 Lisp_Object length, init;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2079 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2080 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2082 CHECK_NATNUM (length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2083 CHECK_CHAR_COERCE_INT (init);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2084 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2085 Bufbyte str[MAX_EMCHAR_LEN];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2086 int len = set_charptr_emchar (str, XCHAR (init));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2088 val = make_uninit_string (len * XINT (length));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2089 if (len == 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2090 /* Optimize the single-byte case */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2091 memset (string_data (XSTRING (val)), XCHAR (init),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2092 string_length (XSTRING (val)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2093 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2094 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2095 int i, j, k;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2096 Bufbyte *ptr = string_data (XSTRING (val));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2097
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2098 k = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2099 for (i = 0; i < XINT (length); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2100 for (j = 0; j < len; j++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2101 ptr[k++] = str[j];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2102 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2103 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2104 return (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2105 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2107 /* Take some raw memory, which MUST already be in internal format,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2108 and package it up it into a Lisp string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2109 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2110 make_string (CONST Bufbyte *contents, Bytecount length)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2111 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2112 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2114 val = make_uninit_string (length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2115 memcpy (string_data (XSTRING (val)), contents, length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2116 return (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2117 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2118
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2119 /* Take some raw memory, encoded in some external data format,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2120 and convert it into a Lisp string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2121 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2122 make_ext_string (CONST Extbyte *contents, EMACS_INT length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2123 enum external_data_format fmt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2124 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2125 CONST Bufbyte *intstr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2126 Bytecount intlen;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2128 GET_CHARPTR_INT_DATA_ALLOCA (contents, length, fmt, intstr, intlen);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2129 return make_string (intstr, intlen);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2130 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2132 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2133 build_string (CONST char *str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2134 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2135 Bytecount length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2137 /* Some strlen crash and burn if passed null. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2138 if (!str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2139 length = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2140 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2141 length = strlen (str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2143 return make_string ((CONST Bufbyte *) str, length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2144 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2146 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2147 build_ext_string (CONST char *str, enum external_data_format fmt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2148 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2149 Bytecount length;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2151 /* Some strlen crash and burn if passed null. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2152 if (!str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2153 length = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2154 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2155 length = strlen (str);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2157 return make_ext_string ((Extbyte *) str, length, fmt);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2158 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2160 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2161 build_translated_string (CONST char *str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2162 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2163 return build_string (GETTEXT (str));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2164 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2167 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2168 /* lcrecord lists */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2169 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2170
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2171 /* Lcrecord lists are used to manage the allocation of particular
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2172 sorts of lcrecords, to avoid calling alloc_lcrecord() (and thus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2173 malloc() and garbage-collection junk) as much as possible.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2174 It is similar to the Blocktype class.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2175
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2176 It works like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2178 1) Create an lcrecord-list object using make_lcrecord_list().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2179 This is often done at initialization. Remember to staticpro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2180 this object! The arguments to make_lcrecord_list() are the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2181 same as would be passed to alloc_lcrecord().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2182 2) Instead of calling alloc_lcrecord(), call allocate_managed_lcrecord()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2183 and pass the lcrecord-list earlier created.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2184 3) When done with the lcrecord, call free_managed_lcrecord().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2185 The standard freeing caveats apply: ** make sure there are no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2186 pointers to the object anywhere! **
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2187 4) Calling free_managed_lcrecord() is just like kissing the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2188 lcrecord goodbye as if it were garbage-collected. This means:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2189 -- the contents of the freed lcrecord are undefined, and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2190 contents of something produced by allocate_managed_lcrecord()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2191 are undefined, just like for alloc_lcrecord().
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2192 -- the mark method for the lcrecord's type will *NEVER* be called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2193 on freed lcrecords.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2194 -- the finalize method for the lcrecord's type will be called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2195 at the time that free_managed_lcrecord() is called.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2197 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2199 static Lisp_Object mark_lcrecord_list (Lisp_Object, void (*) (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2200 DEFINE_LRECORD_IMPLEMENTATION ("lcrecord-list", lcrecord_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2201 mark_lcrecord_list, internal_object_printer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2202 0, 0, 0, struct lcrecord_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2204 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2205 mark_lcrecord_list (Lisp_Object obj, void (*markobj) (Lisp_Object))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2206 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2207 struct lcrecord_list *list = XLCRECORD_LIST (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2208 Lisp_Object chain = list->free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2210 while (!NILP (chain))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2211 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2212 struct lrecord_header *lheader = XRECORD_LHEADER (chain);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2213 struct free_lcrecord_header *free_header =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2214 (struct free_lcrecord_header *) lheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2215 CONST struct lrecord_implementation *implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2216 = lheader->implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2218 #ifdef ERROR_CHECK_GC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2219 /* There should be no other pointers to the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2220 assert (!MARKED_RECORD_HEADER_P (lheader));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2221 /* Only lcrecords should be here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2222 assert (!implementation->basic_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2223 /* Only free lcrecords should be here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2224 assert (free_header->lcheader.free);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2225 /* The type of the lcrecord must be right. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2226 assert (implementation == list->implementation);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2227 /* So must the size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2228 assert (implementation->static_size == 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2229 || implementation->static_size == list->size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2230 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2231 MARK_RECORD_HEADER (lheader);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2232 chain = free_header->chain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2233 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2235 return Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2236 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2238 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2239 make_lcrecord_list (int size,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2240 CONST struct lrecord_implementation *implementation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2241 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2242 struct lcrecord_list *p = alloc_lcrecord (sizeof (*p),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2243 lrecord_lcrecord_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2244 Lisp_Object val = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2246 p->implementation = implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2247 p->size = size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2248 p->free = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2249 XSETLCRECORD_LIST (val, p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2250 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2251 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2252
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2253 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2254 allocate_managed_lcrecord (Lisp_Object lcrecord_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2255 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2256 struct lcrecord_list *list = XLCRECORD_LIST (lcrecord_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2257 if (!NILP (list->free))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2258 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2259 Lisp_Object val = list->free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2260 struct free_lcrecord_header *free_header =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2261 (struct free_lcrecord_header *) XPNTR (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2262
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2263 #ifdef ERROR_CHECK_GC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2264 struct lrecord_header *lheader =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2265 (struct lrecord_header *) free_header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2266 CONST struct lrecord_implementation *implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2267 = lheader->implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2269 /* There should be no other pointers to the free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2270 assert (!MARKED_RECORD_HEADER_P (lheader));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2271 /* Only lcrecords should be here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2272 assert (!implementation->basic_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2273 /* Only free lcrecords should be here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2274 assert (free_header->lcheader.free);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2275 /* The type of the lcrecord must be right. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2276 assert (implementation == list->implementation);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2277 /* So must the size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2278 assert (implementation->static_size == 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2279 || implementation->static_size == list->size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2280 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2281 list->free = free_header->chain;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2282 free_header->lcheader.free = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2283 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2284 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2285 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2286 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2287 Lisp_Object foo = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2288
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2289 XSETOBJ (foo, Lisp_Record,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2290 alloc_lcrecord (list->size, list->implementation));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2291 return foo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2292 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2295 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2296 free_managed_lcrecord (Lisp_Object lcrecord_list, Lisp_Object lcrecord)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2297 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2298 struct lcrecord_list *list = XLCRECORD_LIST (lcrecord_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2299 struct free_lcrecord_header *free_header =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2300 (struct free_lcrecord_header *) XPNTR (lcrecord);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2301 struct lrecord_header *lheader =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2302 (struct lrecord_header *) free_header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2303 CONST struct lrecord_implementation *implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2304 = lheader->implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2306 #ifdef ERROR_CHECK_GC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2307 /* Make sure the size is correct. This will catch, for example,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2308 putting a window configuration on the wrong free list. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2309 if (implementation->size_in_bytes_method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2310 assert (((implementation->size_in_bytes_method) (lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2311 == list->size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2312 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2313 assert (implementation->static_size == list->size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2314 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2316 if (implementation->finalizer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2317 ((implementation->finalizer) (lheader, 0));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2318 free_header->chain = list->free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2319 free_header->lcheader.free = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2320 list->free = lcrecord;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2321 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2324 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2325 /* Purity of essence, peace on earth */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2326 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2327
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2328 static int symbols_initialized;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2330 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2331 make_pure_string (CONST Bufbyte *data, Bytecount length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2332 Lisp_Object plist, int no_need_to_copy_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2333 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2334 Lisp_Object new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2335 struct Lisp_String *s;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2336 int size = (sizeof (struct Lisp_String) + ((no_need_to_copy_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2337 ? 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2338 /* + 1 for terminating 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2339 : (length + 1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2340 size = ALIGN_SIZE (size, ALIGNOF (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2341
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2342 if (symbols_initialized && !pure_lossage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2343 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2344 /* Try to share some names. Saves a few kbytes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2345 Lisp_Object tem = oblookup (Vobarray, data, length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2346 if (SYMBOLP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2347 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2348 s = XSYMBOL (tem)->name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2349 if (!PURIFIED (s)) abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2350 XSETSTRING (new, s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2351 return (new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2352 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2353 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2355 if (!check_purespace (size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2356 return (make_string (data, length));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2358 s = (struct Lisp_String *) (PUREBEG + pureptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2359 set_string_length (s, length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2360 if (no_need_to_copy_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2361 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2362 set_string_data (s, (Bufbyte *) data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2363 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2364 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2365 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2366 set_string_data (s, (Bufbyte *) s + sizeof (struct Lisp_String));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2367 memcpy (string_data (s), data, length);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2368 set_string_byte (s, length, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2369 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2370 s->plist = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2371 pureptr += size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2373 #ifdef PURESTAT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2374 bump_purestat (&purestat_string_all, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2375 if (purecopying_for_bytecode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2376 bump_purestat (&purestat_string_other_function, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2377 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2379 /* Do this after the official "completion" of the purecopying. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2380 s->plist = Fpurecopy (plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2382 XSETSTRING (new, s);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2383 return (new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2384 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2387 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2388 make_pure_pname (CONST Bufbyte *data, Bytecount length,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2389 int no_need_to_copy_data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2390 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2391 Lisp_Object name = make_pure_string (data, length, Qnil,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2392 no_need_to_copy_data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2393 bump_purestat (&purestat_string_pname, pure_sizeof (name));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2395 /* We've made (at least) Qnil now, and Vobarray will soon be set up. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2396 symbols_initialized = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2398 return (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2399 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2401
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2402 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2403 pure_cons (Lisp_Object car, Lisp_Object cdr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2404 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2405 Lisp_Object new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2407 if (!check_purespace (sizeof (struct Lisp_Cons)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2408 return (Fcons (Fpurecopy (car), Fpurecopy (cdr)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2410 XSETCONS (new, PUREBEG + pureptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2411 pureptr += sizeof (struct Lisp_Cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2412 bump_purestat (&purestat_cons, sizeof (struct Lisp_Cons));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2413
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2414 XCAR (new) = Fpurecopy (car);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2415 XCDR (new) = Fpurecopy (cdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2416 return (new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2419 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2420 pure_list (int nargs, Lisp_Object *args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2421 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2422 Lisp_Object foo = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2423
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2424 for (--nargs; nargs >= 0; nargs--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2425 foo = pure_cons (args[nargs], foo);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2427 return foo;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2428 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2430 #ifdef LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2431
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2432 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2433 make_pure_float (double num)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2434 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2435 struct Lisp_Float *f;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2436 Lisp_Object val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2438 /* Make sure that PUREBEG + pureptr is aligned on at least a sizeof
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2439 (double) boundary. Some architectures (like the sparc) require
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2440 this, and I suspect that floats are rare enough that it's no
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2441 tragedy for those that don't. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2442 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2443 #if defined (__GNUC__) && (__GNUC__ >= 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2444 /* In gcc, we can directly ask what the alignment constraints of a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2445 structure are, but in general, that's not possible... Arrgh!!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2446 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2447 int alignment = __alignof (struct Lisp_Float);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2448 #else /* !GNUC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2449 /* Best guess is to make the `double' slot be aligned to the size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2450 of double (which is probably 8 bytes). This assumes that it's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2451 ok to align the beginning of the structure to the same boundary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2452 that the `double' slot in it is supposed to be aligned to; this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2453 should be ok because presumably there is padding in the layout
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2454 of the struct to account for this.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2455 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2456 int alignment = sizeof (float_data (f));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2457 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2458 char *p = ((char *) PUREBEG + pureptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2460 p = (char *) (((unsigned EMACS_INT) p + alignment - 1) & - alignment);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2461 pureptr = p - (char *) PUREBEG;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2462 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2464 if (!check_purespace (sizeof (struct Lisp_Float)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2465 return (make_float (num));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2467 f = (struct Lisp_Float *) (PUREBEG + pureptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2468 set_lheader_implementation (&(f->lheader), lrecord_float);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2469 pureptr += sizeof (struct Lisp_Float);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2470 bump_purestat (&purestat_float, sizeof (struct Lisp_Float));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2472 float_next (f) = ((struct Lisp_Float *) -1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2473 float_data (f) = num;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2474 XSETFLOAT (val, f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2475 return (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2476 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2478 #endif /* LISP_FLOAT_TYPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2480 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2481 make_pure_vector (EMACS_INT len, Lisp_Object init)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2482 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2483 Lisp_Object new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2484 EMACS_INT size = (sizeof (struct Lisp_Vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2485 + (len - 1) * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2487 init = Fpurecopy (init);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2488
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2489 if (!check_purespace (size))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2490 return (make_vector (len, init));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2492 XSETVECTOR (new, PUREBEG + pureptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2493 pureptr += size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2494 bump_purestat (&purestat_vector_all, size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2496 XVECTOR (new)->size = len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2497
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2498 for (size = 0; size < len; size++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2499 vector_data (XVECTOR (new))[size] = init;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2501 return (new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2502 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2503
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2504 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2505 /* Presently unused */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2506 void *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2507 alloc_pure_lrecord (int size, struct lrecord_implementation *implementation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2508 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2509 struct lrecord_header *header = (void *) (PUREBEG + pureptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2511 if (pureptr + size > PURESIZE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2512 pure_storage_exhausted ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2514 set_lheader_implementation (header, implementation);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2515 header->next = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2516 return (header);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2517 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2518 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2520
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2521
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2522 DEFUN ("purecopy", Fpurecopy, Spurecopy, 1, 1, 0 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2523 Make a copy of OBJECT in pure storage.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2524 Recursively copies contents of vectors and cons cells.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2525 Does not copy symbols.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2526 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2527 (obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2528 Lisp_Object obj;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2529 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2530 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2531 if (!purify_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2532 return (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2534 if (!POINTER_TYPE_P (XTYPE (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2535 || PURIFIED (XPNTR (obj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2536 return (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2538 switch (XTYPE (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2539 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2540 case Lisp_Cons:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2541 return pure_cons (XCAR (obj), XCDR (obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2543 case Lisp_String:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2544 return make_pure_string (string_data (XSTRING (obj)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2545 string_length (XSTRING (obj)),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2546 XSTRING (obj)->plist,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2547 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2549 case Lisp_Vector:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2550 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2551 struct Lisp_Vector *o = XVECTOR (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2552 Lisp_Object new = make_pure_vector (vector_length (o), Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2553 for (i = 0; i < vector_length (o); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2554 vector_data (XVECTOR (new))[i] = Fpurecopy (o->contents[i]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2555 return (new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2556 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2558 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2559 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2560 if (COMPILED_FUNCTIONP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2561 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2562 struct Lisp_Compiled_Function *o = XCOMPILED_FUNCTION (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2563 Lisp_Object new = make_compiled_function (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2564 struct Lisp_Compiled_Function *n = XCOMPILED_FUNCTION (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2565 n->flags = o->flags;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2566 n->bytecodes = Fpurecopy (o->bytecodes);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2567 n->constants = Fpurecopy (o->constants);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2568 n->arglist = Fpurecopy (o->arglist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2569 n->doc_and_interactive = Fpurecopy (o->doc_and_interactive);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2570 return (new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2571 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2572 #ifdef LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2573 else if (FLOATP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2574 return make_pure_float (float_data (XFLOAT (obj)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2575 #endif /* LISP_FLOAT_TYPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2576 else if (!SYMBOLP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2577 signal_simple_error ("Can't purecopy %S", obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2578 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2579 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2580 return (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2581 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2584
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2585 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2586 report_pure_usage (int report_impurities,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2587 int die_if_pure_storage_exceeded)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2588 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2589 if (pure_lossage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2590 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2591 CONST long report_round = 5000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2593 message ("\n****\tPure Lisp storage exhausted!\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2594 "\tCheck whether you are loading .el files when .elc files were intended.\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2595 "\tOtherwise, increase PURESIZE in puresize.h and relink.\n\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2596 "\tPURESIZE is presently %ld.\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2597 "\tAn additional %ld bytes will guarantee enough pure space;\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2598 "\ta smaller increment may work (due to structure-sharing).\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2599 "****",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2600 (long) PURESIZE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2601 (((pure_lossage + report_round - 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2602 / report_round) * report_round));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2603 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2604 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2605 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2606 int lost = (PURESIZE - pureptr) / 1024;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2607 char buf[200];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2609 sprintf (buf, "Purespace usage: %ld of %ld (%d%%",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2610 pureptr, (long) PURESIZE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2611 (int) (pureptr / (PURESIZE / 100.0) + 0.5));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2612 if (lost > 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2613 sprintf (buf + strlen (buf), " -- %dk wasted", lost);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2614 strcat (buf, ").");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2615 message ("%s", buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2616 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2617
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2618 #ifdef PURESTAT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2619 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2620 int iii;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2622 purestat_vector_other.nbytes =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2623 purestat_vector_all.nbytes - purestat_vector_bytecode_constants.nbytes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2624 purestat_vector_other.nobjects =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2625 purestat_vector_all.nobjects -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2626 purestat_vector_bytecode_constants.nobjects;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2627
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2628 purestat_string_other.nbytes =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2629 purestat_string_all.nbytes - (purestat_string_pname.nbytes +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2630 purestat_string_bytecodes.nbytes +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2631 purestat_string_interactive.nbytes +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2632 purestat_string_documentation.nbytes +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2633 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2634 purestat_string_domain.nbytes +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2635 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2636 purestat_string_other_function.nbytes);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2637 purestat_string_other.nobjects =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2638 purestat_string_all.nobjects - (purestat_string_pname.nobjects +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2639 purestat_string_bytecodes.nobjects +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2640 purestat_string_interactive.nobjects +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2641 purestat_string_documentation.nobjects +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2642 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2643 purestat_string_domain.nobjects +
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2644 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2645 purestat_string_other_function.nobjects);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2647 message (" %-24stotal: bytes:", "");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2649 for (iii = 0; iii < countof (purestats); iii++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2650 if (!purestats[iii])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2651 clear_message ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2652 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2653 message (" %-24s%5d %7d %2d%%",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2654 purestats[iii]->name,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2655 purestats[iii]->nobjects,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2656 purestats[iii]->nbytes,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2657 (int) (purestats[iii]->nbytes / (pureptr / 100.0) + 0.5));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2658 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2659 #endif /* PURESTAT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2660
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2662 if (report_impurities)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2663 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2664 Lisp_Object tem = Felt (Fgarbage_collect (), make_int (5));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2665 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2666 GCPRO1 (tem);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2667 message ("\nImpurities:");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2668 while (!NILP (tem))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2669 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2670 if (CONSP (tem) && SYMBOLP (Fcar (tem)) && CONSP (Fcdr (tem)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2671 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2672 int total = XINT (Fcar (Fcdr (tem)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2673 if (total > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2674 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2675 char buf [100];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2676 char *s = buf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2677 memcpy (buf, string_data (XSYMBOL (Fcar (tem))->name),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2678 string_length (XSYMBOL (Fcar (tem))->name) + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2679 while (*s++) if (*s == '-') *s = ' ';
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2680 s--; *s++ = ':'; *s = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2681 message (" %-32s%6d", buf, total);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2682 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2683 tem = Fcdr (Fcdr (tem));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2684 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2685 else /* WTF?! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2686 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2687 Fprin1 (tem, Qexternal_debugging_output);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2688 tem = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2689 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2690 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2691 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2692 garbage_collect_1 (); /* GC garbage_collect's garbage */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2693 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2694 clear_message ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2696 if (pure_lossage && die_if_pure_storage_exceeded)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2697 fatal ("Pure storage exhausted");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2698 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2699
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2700
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2701 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2702 /* staticpro */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2703 /**********************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2704
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2705 struct gcpro *gcprolist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2706
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2707 /* 415 used Mly 29-Jun-93 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2708 #define NSTATICS 1500
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2709 /* Not "static" because of linker lossage on some systems */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2710 Lisp_Object *staticvec[NSTATICS]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2711 /* Force it into data space! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2712 = {0};
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2713 static int staticidx;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2715 /* Put an entry in staticvec, pointing at the variable whose address is given
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2716 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2717 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2718 staticpro (Lisp_Object *varaddress)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2719 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2720 if (staticidx >= countof (staticvec))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2721 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2722 staticvec[staticidx++] = varaddress;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2723 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2725
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2726 /* Mark reference to a Lisp_Object. If the object referred to has not been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2727 seen yet, recursively mark all the references contained in it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2728
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2729 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2730 mark_object (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2731 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2732 tail_recurse:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2733
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2734 if (!POINTER_TYPE_P (XGCTYPE (obj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2735 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2736 if (PURIFIED (XPNTR (obj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2737 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2738 switch (XGCTYPE (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2739 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2740 case Lisp_Cons:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2741 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2742 struct Lisp_Cons *ptr = XCONS (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2743 if (CONS_MARKED_P (ptr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2744 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2745 MARK_CONS (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2746 /* If the cdr is nil, tail-recurse on the car. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2747 if (NILP (ptr->cdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2748 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2749 obj = ptr->car;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2750 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2751 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2752 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2753 mark_object (ptr->car);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2754 obj = ptr->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2755 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2756 goto tail_recurse;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2757 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2758
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2759 case Lisp_Record:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2760 /* case Lisp_Symbol_Value_Magic: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2761 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2762 struct lrecord_header *lheader = XRECORD_LHEADER (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2763 CONST struct lrecord_implementation *implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2764 = lheader->implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2766 if (! MARKED_RECORD_HEADER_P (lheader) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2767 ! UNMARKABLE_RECORD_HEADER_P (lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2768 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2769 MARK_RECORD_HEADER (lheader);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2770 #ifdef ERROR_CHECK_GC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2771 if (!implementation->basic_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2772 assert (! ((struct lcrecord_header *) lheader)->free);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2773 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2774 if (implementation->marker != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2775 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2776 obj = ((implementation->marker) (obj, mark_object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2777 if (!NILP (obj)) goto tail_recurse;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2778 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2779 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2780 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2781 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2783 case Lisp_String:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2784 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2785 struct Lisp_String *ptr = XSTRING (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2787 if (!XMARKBIT (ptr->plist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2788 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2789 if (CONSP (ptr->plist) &&
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2790 EXTENT_INFOP (XCAR (ptr->plist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2791 flush_cached_extent_info (XCAR (ptr->plist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2792 XMARK (ptr->plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2793 obj = ptr->plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2794 goto tail_recurse;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2795 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2796 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2797 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2798
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2799 case Lisp_Vector:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2800 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2801 struct Lisp_Vector *ptr = XVECTOR (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2802 int len = vector_length (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2803 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2804
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2805 if (len < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2806 break; /* Already marked */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2807 ptr->size = -1 - len; /* Else mark it */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2808 for (i = 0; i < len - 1; i++) /* and then mark its elements */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2809 mark_object (ptr->contents[i]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2810 if (len > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2811 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2812 obj = ptr->contents[len - 1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2813 goto tail_recurse;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2814 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2815 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2816 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2818 #ifndef LRECORD_SYMBOL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2819 case Lisp_Symbol:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2820 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2821 struct Lisp_Symbol *sym = XSYMBOL (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2822
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2823 while (!XMARKBIT (sym->plist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2824 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2825 XMARK (sym->plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2826 mark_object (sym->value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2827 mark_object (sym->function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2828 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2829 /* Open-code mark_string */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2830 /* symbol->name is a struct Lisp_String *, not a Lisp_Object */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2831 struct Lisp_String *pname = sym->name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2832 if (!PURIFIED (pname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2833 && !XMARKBIT (pname->plist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2834 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2835 XMARK (pname->plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2836 mark_object (pname->plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2837 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2838 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2839 if (!symbol_next (sym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2840 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2841 obj = sym->plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2842 goto tail_recurse;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2843 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2844 mark_object (sym->plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2845 /* Mark the rest of the symbols in the hash-chain */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2846 sym = symbol_next (sym);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2847 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2848 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2849 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2850 #endif /* !LRECORD_SYMBOL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2851
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2852 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2853 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2854 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2855 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2856
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2857 /* mark all of the conses in a list and mark the final cdr; but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2858 DO NOT mark the cars.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2859
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2860 Use only for internal lists! There should never be other pointers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2861 to the cons cells, because if so, the cars will remain unmarked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2862 even when they maybe should be marked. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2863 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2864 mark_conses_in_list (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2865 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2866 Lisp_Object rest;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2868 for (rest = obj; CONSP (rest); rest = XCDR (rest))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2869 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2870 if (CONS_MARKED_P (XCONS (rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2871 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2872 MARK_CONS (XCONS (rest));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2873 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2874
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2875 mark_object (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2876 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2877
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2878
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2879 #ifdef PURESTAT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2880 /* Simpler than mark-object, because pure structure can't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2881 have any circularities
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2882 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2884 #if 0 /* unused */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2885 static int idiot_c_doesnt_have_closures;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2886 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2887 idiot_c (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2888 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2889 idiot_c_doesnt_have_closures += pure_sizeof (obj, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2890 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2891 #endif /* unused */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2892
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2893 /* recurse arg isn't actually used */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2894 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2895 pure_sizeof (Lisp_Object obj /*, int recurse */)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2896 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2897 int total = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2898
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2899 /*tail_recurse: */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2900 if (!POINTER_TYPE_P (XTYPE (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2901 || !PURIFIED (XPNTR (obj)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2902 return (total);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2903
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2904 /* symbol's sizes are accounted for separately */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2905 if (SYMBOLP (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2906 return (total);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2907
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2908 switch (XTYPE (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2909 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2910 case Lisp_String:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2911 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2912 struct Lisp_String *ptr = XSTRING (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2913 int size = string_length (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2914
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2915 if (string_data (ptr) !=
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2916 (unsigned char *) ptr + sizeof (struct Lisp_String))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2917 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2918 /* string-data not allocated contiguously.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2919 Probably (better be!!) a pointer constant "C" data. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2920 size = sizeof (struct Lisp_String);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2921 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2922 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2923 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2924 size = sizeof (struct Lisp_String) + size + 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2925 size = ALIGN_SIZE (size, sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2926 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2927 total += size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2928 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2929 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2931 case Lisp_Vector:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2932 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2933 struct Lisp_Vector *ptr = XVECTOR (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2934 int len = vector_length (ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2935
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2936 total += (sizeof (struct Lisp_Vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2937 + (len - 1) * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2938 #if 0 /* unused */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2939 if (!recurse)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2940 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2941 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2942 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2943 for (i = 0; i < len - 1; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2944 total += pure_sizeof (ptr->contents[i], 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2945 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2946 if (len > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2947 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2948 obj = ptr->contents[len - 1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2949 goto tail_recurse;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2950 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2951 #endif /* unused */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2952 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2953 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2954
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2955 case Lisp_Record:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2956 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2957 struct lrecord_header *lheader = XRECORD_LHEADER (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2958 CONST struct lrecord_implementation *implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2959 = lheader->implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2961 if (implementation->size_in_bytes_method)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2962 total += ((implementation->size_in_bytes_method) (lheader));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2963 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2964 total += implementation->static_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2965
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2966 #if 0 /* unused */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2967 if (!recurse)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2968 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2970 if (implementation->marker != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2971 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2972 int old = idiot_c_doesnt_have_closures;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2973
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2974 idiot_c_doesnt_have_closures = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2975 obj = ((implementation->marker) (obj, idiot_c));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2976 total += idiot_c_doesnt_have_closures;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2977 idiot_c_doesnt_have_closures = old;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2978
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2979 if (!NILP (obj)) goto tail_recurse;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2980 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2981 #endif /* unused */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2982 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2983 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2984
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2985 case Lisp_Cons:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2986 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2987 struct Lisp_Cons *ptr = XCONS (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2988 total += sizeof (*ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2989 #if 0 /* unused */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2990 if (!recurse)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2991 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2992 /* If the cdr is nil, tail-recurse on the car. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2993 if (NILP (ptr->cdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2994 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2995 obj = ptr->car;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2996 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2997 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2998 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2999 total += pure_sizeof (ptr->car, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3000 obj = ptr->cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3001 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3002 goto tail_recurse;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3003 #endif /* unused */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3004 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3005 break;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3006
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3007 /* Others can't be purified */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3008 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3009 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3010 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3011 return (total);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3012 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3013 #endif /* PURESTAT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3014
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3015
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3017
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3018 /* Find all structures not marked, and free them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3019
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3020 static int gc_count_num_vector_used, gc_count_vector_total_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3021 static int gc_count_vector_storage;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3022 static int gc_count_num_bit_vector_used, gc_count_bit_vector_total_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3023 static int gc_count_bit_vector_storage;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3024 static int gc_count_num_short_string_in_use;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3025 static int gc_count_string_total_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3026 static int gc_count_short_string_total_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3027
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3028 /* static int gc_count_total_records_used, gc_count_records_total_size; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3029
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3030
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3031 /* This will be used more extensively In The Future */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3032 static int last_lrecord_type_index_assigned;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3033
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3034 static CONST struct lrecord_implementation *lrecord_implementations_table[128];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3035 #define max_lrecord_type (countof (lrecord_implementations_table) - 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3037 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3038 lrecord_type_index (CONST struct lrecord_implementation *implementation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3039 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3040 int type_index = *(implementation->lrecord_type_index);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3041 /* Have to do this circuitous and validation test because of problems
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3042 dumping out initialized variables (ie can't set xxx_type_index to -1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3043 because that would make xxx_type_index read-only in a dumped emacs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3044 if (type_index < 0 || type_index > max_lrecord_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3045 || lrecord_implementations_table[type_index] != implementation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3046 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3047 if (last_lrecord_type_index_assigned == max_lrecord_type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3048 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3049 type_index = ++last_lrecord_type_index_assigned;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3050 lrecord_implementations_table[type_index] = implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3051 *(implementation->lrecord_type_index) = type_index;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3052 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3053 return (type_index);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3054 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3055
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3056 /* stats on lcrecords in use - kinda kludgy */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3057
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3058 static struct
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3059 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3060 int instances_in_use;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3061 int bytes_in_use;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3062 int instances_freed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3063 int bytes_freed;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3064 int instances_on_free_list;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3065 } lcrecord_stats [countof (lrecord_implementations_table)];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3067
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3068 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3069 reset_lcrecord_stats (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3070 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3071 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3072 for (i = 0; i < countof (lcrecord_stats); i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3073 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3074 lcrecord_stats[i].instances_in_use = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3075 lcrecord_stats[i].bytes_in_use = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3076 lcrecord_stats[i].instances_freed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3077 lcrecord_stats[i].bytes_freed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3078 lcrecord_stats[i].instances_on_free_list = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3079 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3080 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3082 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3083 tick_lcrecord_stats (CONST struct lrecord_header *h, int free_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3084 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3085 CONST struct lrecord_implementation *implementation = h->implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3086 int type_index = lrecord_type_index (implementation);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3088 if (((struct lcrecord_header *) h)->free)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3089 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3090 assert (!free_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3091 lcrecord_stats[type_index].instances_on_free_list++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3092 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3093 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3094 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3095 unsigned int sz = (implementation->size_in_bytes_method
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3096 ? ((implementation->size_in_bytes_method) (h))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3097 : implementation->static_size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3099 if (free_p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3100 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3101 lcrecord_stats[type_index].instances_freed++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3102 lcrecord_stats[type_index].bytes_freed += sz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3103 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3104 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3105 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3106 lcrecord_stats[type_index].instances_in_use++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3107 lcrecord_stats[type_index].bytes_in_use += sz;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3108 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3109 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3110 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3113 /* Free all unmarked records */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3114 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3115 sweep_lcrecords_1 (struct lcrecord_header **prev, int *used)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3116 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3117 struct lcrecord_header *header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3118 int num_used = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3119 /* int total_size = 0; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3120 reset_lcrecord_stats ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3122 /* First go through and call all the finalize methods.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3123 Then go through and free the objects. There used to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3124 be only one loop here, with the call to the finalizer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3125 occurring directly before the xfree() below. That
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3126 is marginally faster but much less safe -- if the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3127 finalize method for an object needs to reference any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3128 other objects contained within it (and many do),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3129 we could easily be screwed by having already freed that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3130 other object. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3132 for (header = *prev; header; header = header->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3133 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3134 struct lrecord_header *h = &(header->lheader);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3135 if (!MARKED_RECORD_HEADER_P (h) && ! (header->free))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3136 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3137 if (h->implementation->finalizer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3138 ((h->implementation->finalizer) (h, 0));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3139 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3140 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3142 for (header = *prev; header; )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3143 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3144 struct lrecord_header *h = &(header->lheader);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3145 if (MARKED_RECORD_HEADER_P (h))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3146 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3147 UNMARK_RECORD_HEADER (h);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3148 num_used++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3149 /* total_size += ((n->implementation->size_in_bytes) (h));*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3150 prev = &(header->next);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3151 header = *prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3152 tick_lcrecord_stats (h, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3153 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3154 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3155 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3156 struct lcrecord_header *next = header->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3157 *prev = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3158 tick_lcrecord_stats (h, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3159 /* used to call finalizer right here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3160 xfree (header);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3161 header = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3162 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3163 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3164 *used = num_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3165 /* *total = total_size; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3166 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3168 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3169 sweep_vectors_1 (Lisp_Object *prev,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3170 int *used, int *total, int *storage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3171 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3172 Lisp_Object vector;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3173 int num_used = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3174 int total_size = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3175 int total_storage = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3177 for (vector = *prev; VECTORP (vector); )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3178 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3179 struct Lisp_Vector *v = XVECTOR (vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3180 int len = v->size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3181 if (len < 0) /* marked */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3182 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3183 len = - (len + 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3184 v->size = len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3185 total_size += len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3186 total_storage += (MALLOC_OVERHEAD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3187 + sizeof (struct Lisp_Vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3188 + (len - 1 + 1) * sizeof (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3189 num_used++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3190 prev = &(vector_next (v));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3191 vector = *prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3192 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3193 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3194 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3195 Lisp_Object next = vector_next (v);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3196 *prev = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3197 xfree (v);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3198 vector = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3199 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3200 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3201 *used = num_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3202 *total = total_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3203 *storage = total_storage;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3204 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3206 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3207 sweep_bit_vectors_1 (Lisp_Object *prev,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3208 int *used, int *total, int *storage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3209 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3210 Lisp_Object bit_vector;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3211 int num_used = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3212 int total_size = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3213 int total_storage = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3215 /* BIT_VECTORP fails because the objects are marked, which changes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3216 their implementation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3217 for (bit_vector = *prev; !EQ (bit_vector, Qzero); )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3218 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3219 struct Lisp_Bit_Vector *v = XBIT_VECTOR (bit_vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3220 int len = v->size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3221 if (MARKED_RECORD_P (bit_vector))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3222 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3223 UNMARK_RECORD_HEADER (&(v->lheader));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3224 total_size += len;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3225 total_storage += (MALLOC_OVERHEAD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3226 + sizeof (struct Lisp_Bit_Vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3227 + (BIT_VECTOR_LONG_STORAGE (len) - 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3228 * sizeof (long));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3229 num_used++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3230 prev = &(bit_vector_next (v));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3231 bit_vector = *prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3232 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3233 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3234 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3235 Lisp_Object next = bit_vector_next (v);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3236 *prev = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3237 xfree (v);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3238 bit_vector = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3239 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3240 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3241 *used = num_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3242 *total = total_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3243 *storage = total_storage;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3244 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3246 /* And the Lord said: Thou shalt use the `c-backslash-region' command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3247 to make macros prettier. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3248
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3249 #ifdef ERROR_CHECK_GC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3250
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3251 #define SWEEP_FIXED_TYPE_BLOCK(typename, obj_type) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3252 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3253 struct typename##_block *_frob_current; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3254 struct typename##_block **_frob_prev; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3255 int _frob_limit; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3256 int num_free = 0, num_used = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3257 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3258 for (_frob_prev = &current_##typename##_block, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3259 _frob_current = current_##typename##_block, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3260 _frob_limit = current_##typename##_block_index; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3261 _frob_current; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3262 ) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3263 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3264 int _frob_iii; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3265 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3266 for (_frob_iii = 0; _frob_iii < _frob_limit; _frob_iii++) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3267 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3268 obj_type *_frob_victim = &(_frob_current->block[_frob_iii]); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3269 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3270 if (FREE_STRUCT_P (_frob_victim)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3271 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3272 num_free++; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3273 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3274 else if (!MARKED_##typename##_P (_frob_victim)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3275 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3276 num_free++; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3277 FREE_FIXED_TYPE (typename, obj_type, _frob_victim); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3278 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3279 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3280 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3281 num_used++; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3282 UNMARK_##typename (_frob_victim); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3283 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3284 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3285 _frob_prev = &(_frob_current->prev); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3286 _frob_current = _frob_current->prev; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3287 _frob_limit = countof (current_##typename##_block->block); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3288 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3289 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3290 gc_count_num_##typename##_in_use = num_used; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3291 gc_count_num_##typename##_freelist = num_free; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3292 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3293
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3294 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3296 #define SWEEP_FIXED_TYPE_BLOCK(typename, obj_type) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3297 do { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3298 struct typename##_block *_frob_current; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3299 struct typename##_block **_frob_prev; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3300 int _frob_limit; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3301 int num_free = 0, num_used = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3302 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3303 typename##_free_list = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3304 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3305 for (_frob_prev = &current_##typename##_block, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3306 _frob_current = current_##typename##_block, \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3307 _frob_limit = current_##typename##_block_index; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3308 _frob_current; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3309 ) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3310 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3311 int _frob_iii; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3312 int _frob_empty = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3313 obj_type *_frob_old_free_list = typename##_free_list; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3314 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3315 for (_frob_iii = 0; _frob_iii < _frob_limit; _frob_iii++) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3316 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3317 obj_type *_frob_victim = &(_frob_current->block[_frob_iii]); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3318 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3319 if (FREE_STRUCT_P (_frob_victim)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3320 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3321 num_free++; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3322 PUT_FIXED_TYPE_ON_FREE_LIST (typename, obj_type, _frob_victim); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3323 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3324 else if (!MARKED_##typename##_P (_frob_victim)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3325 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3326 num_free++; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3327 FREE_FIXED_TYPE (typename, obj_type, _frob_victim); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3328 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3329 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3330 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3331 _frob_empty = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3332 num_used++; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3333 UNMARK_##typename (_frob_victim); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3334 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3335 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3336 if (!_frob_empty) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3337 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3338 _frob_prev = &(_frob_current->prev); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3339 _frob_current = _frob_current->prev; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3340 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3341 else if (_frob_current == current_##typename##_block \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3342 && !_frob_current->prev) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3343 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3344 /* No real point in freeing sole allocation block */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3345 break; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3346 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3347 else \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3348 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3349 struct typename##_block *_frob_victim_block = _frob_current; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3350 if (_frob_victim_block == current_##typename##_block) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3351 current_##typename##_block_index \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3352 = countof (current_##typename##_block->block); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3353 _frob_current = _frob_current->prev; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3354 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3355 *_frob_prev = _frob_current; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3356 xfree (_frob_victim_block); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3357 /* Restore free list to what it was before victim was swept */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3358 typename##_free_list = _frob_old_free_list; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3359 num_free -= _frob_limit; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3360 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3361 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3362 _frob_limit = countof (current_##typename##_block->block); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3363 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3364 \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3365 gc_count_num_##typename##_in_use = num_used; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3366 gc_count_num_##typename##_freelist = num_free; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3367 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3369 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3373
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3374 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3375 sweep_conses (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3376 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3377 #define MARKED_cons_P(ptr) XMARKBIT ((ptr)->car)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3378 #define UNMARK_cons(ptr) do { XUNMARK ((ptr)->car); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3379 #define ADDITIONAL_FREE_cons(ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3381 SWEEP_FIXED_TYPE_BLOCK (cons, struct Lisp_Cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3382 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3384 /* Explicitly free a cons cell. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3385 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3386 free_cons (struct Lisp_Cons *ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3387 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3388 #ifdef ERROR_CHECK_GC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3389 /* If the CAR is not an int, then it will be a pointer, which will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3390 always be four-byte aligned. If this cons cell has already been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3391 placed on the free list, however, its car will probably contain
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3392 a chain pointer to the next cons on the list, which has cleverly
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3393 had all its 0's and 1's inverted. This allows for a quick
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3394 check to make sure we're not freeing something already freed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3395 if (POINTER_TYPE_P (XTYPE (ptr->car)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3396 ASSERT_VALID_POINTER (XPNTR (ptr->car));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3397 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3398 #ifndef ALLOC_NO_POOLS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3399 FREE_FIXED_TYPE_WHEN_NOT_IN_GC (cons, struct Lisp_Cons, ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3400 #endif /* ALLOC_NO_POOLS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3401 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3403 /* explicitly free a list. You **must make sure** that you have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3404 created all the cons cells that make up this list and that there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3405 are no pointers to any of these cons cells anywhere else. If there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3406 are, you will lose. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3407
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3408 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3409 free_list (Lisp_Object list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3410 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3411 Lisp_Object rest, next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3413 for (rest = list; !NILP (rest); rest = next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3414 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3415 next = XCDR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3416 free_cons (XCONS (rest));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3417 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3418 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3420 /* explicitly free an alist. You **must make sure** that you have
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3421 created all the cons cells that make up this alist and that there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3422 are no pointers to any of these cons cells anywhere else. If there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3423 are, you will lose. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3425 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3426 free_alist (Lisp_Object alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3427 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3428 Lisp_Object rest, next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3429
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3430 for (rest = alist; !NILP (rest); rest = next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3431 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3432 next = XCDR (rest);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3433 free_cons (XCONS (XCAR (rest)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3434 free_cons (XCONS (rest));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3435 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3436 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3438 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3439 sweep_compiled_functions (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3440 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3441 #define MARKED_compiled_function_P(ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3442 MARKED_RECORD_HEADER_P (&((ptr)->lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3443 #define UNMARK_compiled_function(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3444 #define ADDITIONAL_FREE_compiled_function(ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3446 SWEEP_FIXED_TYPE_BLOCK (compiled_function, struct Lisp_Compiled_Function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3447 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3450 #ifdef LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3451 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3452 sweep_floats (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3453 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3454 #define MARKED_float_P(ptr) MARKED_RECORD_HEADER_P (&((ptr)->lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3455 #define UNMARK_float(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3456 #define ADDITIONAL_FREE_float(ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3458 SWEEP_FIXED_TYPE_BLOCK (float, struct Lisp_Float);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3459 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3460 #endif /* LISP_FLOAT_TYPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3462 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3463 sweep_symbols (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3464 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3465 #ifndef LRECORD_SYMBOL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3466 # define MARKED_symbol_P(ptr) XMARKBIT ((ptr)->plist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3467 # define UNMARK_symbol(ptr) do { XUNMARK ((ptr)->plist); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3468 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3469 # define MARKED_symbol_P(ptr) MARKED_RECORD_HEADER_P (&((ptr)->lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3470 # define UNMARK_symbol(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3471 #endif /* !LRECORD_SYMBOL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3472 #define ADDITIONAL_FREE_symbol(ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3474 SWEEP_FIXED_TYPE_BLOCK (symbol, struct Lisp_Symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3475 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3478 #ifndef standalone
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3480 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3481 sweep_extents (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3482 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3483 #define MARKED_extent_P(ptr) MARKED_RECORD_HEADER_P (&((ptr)->lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3484 #define UNMARK_extent(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3485 #define ADDITIONAL_FREE_extent(ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3487 SWEEP_FIXED_TYPE_BLOCK (extent, struct extent);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3488 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3490 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3491 sweep_events (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3492 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3493 #define MARKED_event_P(ptr) MARKED_RECORD_HEADER_P (&((ptr)->lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3494 #define UNMARK_event(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3495 #define ADDITIONAL_FREE_event(ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3497 SWEEP_FIXED_TYPE_BLOCK (event, struct Lisp_Event);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3498 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3500 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3501 sweep_markers (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3502 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3503 #define MARKED_marker_P(ptr) MARKED_RECORD_HEADER_P (&((ptr)->lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3504 #define UNMARK_marker(ptr) UNMARK_RECORD_HEADER (&((ptr)->lheader))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3505 #define ADDITIONAL_FREE_marker(ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3506 do { Lisp_Object tem; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3507 XSETMARKER (tem, ptr); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3508 unchain_marker (tem); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3509 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3511 SWEEP_FIXED_TYPE_BLOCK (marker, struct Lisp_Marker);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3512 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3514 /* Explicitly free a marker. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3515 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3516 free_marker (struct Lisp_Marker *ptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3517 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3518 #ifdef ERROR_CHECK_GC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3519 /* Perhaps this will catch freeing an already-freed marker. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3520 Lisp_Object temmy;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3521 XSETMARKER (temmy, ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3522 assert (GC_MARKERP (temmy));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3523 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3524 #ifndef ALLOC_NO_POOLS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3525 FREE_FIXED_TYPE_WHEN_NOT_IN_GC (marker, struct Lisp_Marker, ptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3526 #endif /* ALLOC_NO_POOLS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3527 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3528
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3529 #endif /* not standalone */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3531
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3532 /* Compactify string chars, relocating the reference to each --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3533 free any empty string_chars_block we see. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3534 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3535 compact_string_chars (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3536 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3537 struct string_chars_block *to_sb = first_string_chars_block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3538 int to_pos = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3539 struct string_chars_block *from_sb;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3541 /* Scan each existing string block sequentially, string by string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3542 for (from_sb = first_string_chars_block; from_sb; from_sb = from_sb->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3543 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3544 int from_pos = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3545 /* FROM_POS is the index of the next string in the block. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3546 while (from_pos < from_sb->pos)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3547 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3548 struct string_chars *from_s_chars =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3549 (struct string_chars *) &(from_sb->string_chars[from_pos]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3550 struct string_chars *to_s_chars;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3551 struct Lisp_String *string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3552 int size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3553 int fullsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3555 /* If the string_chars struct is marked as free (i.e. the STRING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3556 pointer is 0xFFFFFFFF) then this is an unused chunk of string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3557 storage. This happens under Mule when a string's size changes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3558 in such a way that its fullsize changes. (Strings can change
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3559 size because a different-length character can be substituted
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3560 for another character.) In this case, after the bogus string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3561 pointer is the "fullsize" of this entry, i.e. how many bytes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3562 to skip. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3564 if (FREE_STRUCT_P (from_s_chars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3565 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3566 fullsize = ((struct unused_string_chars *) from_s_chars)->fullsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3567 from_pos += fullsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3568 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3569 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3571 string = from_s_chars->string;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3572 assert (!(FREE_STRUCT_P (string)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3574 size = string_length (string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3575 fullsize = STRING_FULLSIZE (size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3577 if (BIG_STRING_FULLSIZE_P (fullsize))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3578 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3580 /* Just skip it if it isn't marked. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3581 if (!XMARKBIT (string->plist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3582 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3583 from_pos += fullsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3584 continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3585 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3586
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3587 /* If it won't fit in what's left of TO_SB, close TO_SB out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3588 and go on to the next string_chars_block. We know that TO_SB
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3589 cannot advance past FROM_SB here since FROM_SB is large enough
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3590 to currently contain this string. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3591 if ((to_pos + fullsize) > countof (to_sb->string_chars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3592 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3593 to_sb->pos = to_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3594 to_sb = to_sb->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3595 to_pos = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3596 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3598 /* Compute new address of this string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3599 and update TO_POS for the space being used. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3600 to_s_chars = (struct string_chars *) &(to_sb->string_chars[to_pos]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3602 /* Copy the string_chars to the new place. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3603 if (from_s_chars != to_s_chars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3604 memmove (to_s_chars, from_s_chars, fullsize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3606 /* Relocate FROM_S_CHARS's reference */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3607 set_string_data (string, &(to_s_chars->chars[0]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3609 from_pos += fullsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3610 to_pos += fullsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3611 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3612 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3613
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3614 /* Set current to the last string chars block still used and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3615 free any that follow. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3616 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3617 struct string_chars_block *victim;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3619 for (victim = to_sb->next; victim; )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3620 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3621 struct string_chars_block *next = victim->next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3622 xfree (victim);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3623 victim = next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3624 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3625
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3626 current_string_chars_block = to_sb;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3627 current_string_chars_block->pos = to_pos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3628 current_string_chars_block->next = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3629 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3630 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3632 #if 1 /* Hack to debug missing purecopy's */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3633 static int debug_string_purity;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3634
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3635 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3636 debug_string_purity_print (struct Lisp_String *p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3637 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3638 Charcount i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3639 Charcount s = string_char_length (p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3640 putc ('\"', stderr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3641 for (i = 0; i < s; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3642 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3643 Emchar ch = string_char (p, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3644 if (ch < 32 || ch >= 126)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3645 stderr_out ("\\%03o", ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3646 else if (ch == '\\' || ch == '\"')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3647 stderr_out ("\\%c", ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3648 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3649 stderr_out ("%c", ch);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3650 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3651 stderr_out ("\"\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3652 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3653 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3655
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3656 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3657 sweep_strings (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3658 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3659 int num_small_used = 0, num_small_bytes = 0, num_bytes = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3660 int debug = debug_string_purity;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3661
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3662 #define MARKED_string_P(ptr) XMARKBIT ((ptr)->plist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3663 #define UNMARK_string(ptr) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3664 do { struct Lisp_String *p = (ptr); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3665 int size = string_length (p); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3666 XUNMARK (p->plist); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3667 num_bytes += size; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3668 if (!BIG_STRING_SIZE_P (size)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3669 { num_small_bytes += size; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3670 num_small_used++; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3671 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3672 if (debug) debug_string_purity_print (p); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3673 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3674 #define ADDITIONAL_FREE_string(p) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3675 do { int size = string_length (p); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3676 if (BIG_STRING_SIZE_P (size)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3677 xfree_1 (CHARS_TO_STRING_CHAR (string_data (p))); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3678 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3679
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3680 SWEEP_FIXED_TYPE_BLOCK (string, struct Lisp_String);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3682 gc_count_num_short_string_in_use = num_small_used;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3683 gc_count_string_total_size = num_bytes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3684 gc_count_short_string_total_size = num_small_bytes;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3685 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3687
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3688 /* I hate duplicating all this crap! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3689 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3690 marked_p (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3691 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3692 if (!POINTER_TYPE_P (XGCTYPE (obj))) return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3693 if (PURIFIED (XPNTR (obj))) return 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3694 switch (XGCTYPE (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3695 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3696 case Lisp_Cons:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3697 return XMARKBIT (XCAR (obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3698 case Lisp_Record:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3699 return MARKED_RECORD_HEADER_P (XRECORD_LHEADER (obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3700 case Lisp_String:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3701 return XMARKBIT (XSTRING (obj)->plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3702 case Lisp_Vector:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3703 return (vector_length (XVECTOR (obj)) < 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3704 #ifndef LRECORD_SYMBOL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3705 case Lisp_Symbol:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3706 return XMARKBIT (XSYMBOL (obj)->plist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3707 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3708 default:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3709 abort ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3710 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3711 return 0; /* suppress compiler warning */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3712 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3714 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3715 gc_sweep (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3716 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3717 /* Free all unmarked records. Do this at the very beginning,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3718 before anything else, so that the finalize methods can safely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3719 examine items in the objects. sweep_lcrecords_1() makes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3720 sure to call all the finalize methods *before* freeing anything,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3721 to complete the safety. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3722 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3723 int ignored;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3724 sweep_lcrecords_1 (&all_lcrecords, &ignored);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3725 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3727 compact_string_chars ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3728
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3729 /* Finalize methods below (called through the ADDITIONAL_FREE_foo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3730 macros) must be *extremely* careful to make sure they're not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3731 referencing freed objects. The only two existing finalize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3732 methods (for strings and markers) pass muster -- the string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3733 finalizer doesn't look at anything but its own specially-
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3734 created block, and the marker finalizer only looks at live
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3735 buffers (which will never be freed) and at the markers before
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3736 and after it in the chain (which, by induction, will never be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3737 freed because if so, they would have already removed themselves
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3738 from the chain). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3739
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3740 /* Put all unmarked strings on free list, free'ing the string chars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3741 of large unmarked strings */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3742 sweep_strings ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3743
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3744 /* Put all unmarked conses on free list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3745 sweep_conses ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3746
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3747 /* Free all unmarked vectors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3748 sweep_vectors_1 (&all_vectors,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3749 &gc_count_num_vector_used, &gc_count_vector_total_size,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3750 &gc_count_vector_storage);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3752 /* Free all unmarked bit vectors */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3753 sweep_bit_vectors_1 (&all_bit_vectors,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3754 &gc_count_num_bit_vector_used,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3755 &gc_count_bit_vector_total_size,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3756 &gc_count_bit_vector_storage);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3758 /* Free all unmarked compiled-function objects */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3759 sweep_compiled_functions ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3760
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3761 #ifdef LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3762 /* Put all unmarked floats on free list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3763 sweep_floats ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3764 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3766 /* Put all unmarked symbols on free list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3767 sweep_symbols ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3768
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3769 /* Put all unmarked extents on free list */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3770 sweep_extents ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3771
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3772 /* Put all unmarked markers on free list.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3773 Dechain each one first from the buffer into which it points. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3774 sweep_markers ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3775
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3776 sweep_events ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3777
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3778 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3780 /* Clearing for disksave. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3782 extern Lisp_Object Vprocess_environment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3783 extern Lisp_Object Vdoc_directory;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3784 extern Lisp_Object Vconfigure_info_directory;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3785 extern Lisp_Object Vload_path;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3786 extern Lisp_Object Vload_history;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3787 extern Lisp_Object Vshell_file_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3788
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3789 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3790 disksave_object_finalization (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3791 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3792 /* It's important that certain information from the environment not get
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3793 dumped with the executable (pathnames, environment variables, etc.).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3794 To make it easier to tell when this has happend with strings(1) we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3795 clear some known-to-be-garbage blocks of memory, so that leftover
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3796 results of old evaluation don't look like potential problems.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3797 But first we set some notable variables to nil and do one more GC,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3798 to turn those strings into garbage.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3799 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3801 /* Yeah, this list is pretty ad-hoc... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3802 Vprocess_environment = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3803 Vexec_directory = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3804 Vdata_directory = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3805 Vdoc_directory = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3806 Vconfigure_info_directory = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3807 Vexec_path = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3808 Vload_path = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3809 /* Vdump_load_path = Qnil; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3810 Vload_history = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3811 Vshell_file_name = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3812
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3813 garbage_collect_1 ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3814
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3815 /* Run the disksave finalization methods of all live objects. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3816 disksave_object_finalization_1 ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3818 /* Zero out the unused portion of purespace */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3819 if (!pure_lossage)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3820 memset ( (char *) (PUREBEG + pureptr), 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3821 (((char *) (PUREBEG + PURESIZE)) -
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3822 ((char *) (PUREBEG + pureptr))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3824 /* Zero out the uninitialized (really, unused) part of the containers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3825 for the live strings. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3826 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3827 struct string_chars_block *scb;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3828 for (scb = first_string_chars_block; scb; scb = scb->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3829 /* from the block's fill ptr to the end */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3830 memset ((scb->string_chars + scb->pos), 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3831 sizeof (scb->string_chars) - scb->pos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3832 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3833
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3834 /* There, that ought to be enough... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3836 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3838
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3839 Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3840 restore_gc_inhibit (Lisp_Object val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3841 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3842 gc_currently_forbidden = XINT (val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3843 return val;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3844 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3846 /* Maybe we want to use this when doing a "panic" gc after memory_full()? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3847 static int gc_hooks_inhibited;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3848
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3849
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3850 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3851 garbage_collect_1 (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3852 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3853 char stack_top_variable;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3854 extern char *stack_bottom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3855 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3856 struct frame *f = selected_frame ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3857 int speccount = specpdl_depth ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3858 Lisp_Object pre_gc_cursor = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3859 struct gcpro gcpro1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3860
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3861 int cursor_changed = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3862
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3863 if (gc_in_progress != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3864 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3866 if (gc_currently_forbidden || in_display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3867 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3868
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3869 if (preparing_for_armageddon)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3870 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3872 GCPRO1 (pre_gc_cursor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3873
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3874 /* Very important to prevent GC during any of the following
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3875 stuff that might run Lisp code; otherwise, we'll likely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3876 have infinite GC recursion. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3877 record_unwind_protect (restore_gc_inhibit,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3878 make_int (gc_currently_forbidden));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3879 gc_currently_forbidden = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3881 if (!gc_hooks_inhibited)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3882 run_hook_trapping_errors ("Error in pre-gc-hook", Qpre_gc_hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3883
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3884 /* Now show the GC cursor/message. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3885 if (!noninteractive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3886 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3887 if (FRAME_WIN_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3888 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3889 Lisp_Object frame = make_frame (f);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3890 Lisp_Object cursor = glyph_image_instance (Vgc_pointer_glyph,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3891 FRAME_SELECTED_WINDOW (f),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3892 ERROR_ME_NOT, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3893 pre_gc_cursor = f->pointer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3894 if (POINTER_IMAGE_INSTANCEP (cursor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3895 /* don't change if we don't know how to change back. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3896 && POINTER_IMAGE_INSTANCEP (pre_gc_cursor))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3897 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3898 cursor_changed = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3899 Fset_frame_pointer (frame, cursor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3900 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3901 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3902
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3903 /* Don't print messages to the stream device. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3904 if (!cursor_changed && !FRAME_STREAM_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3905 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3906 char *msg = (STRINGP (Vgc_message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3907 ? GETTEXT ((char *) string_data (XSTRING (Vgc_message)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3908 : 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3909 Lisp_Object args[2], whole_msg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3910 args[0] = build_string (msg ? msg :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3911 GETTEXT ((CONST char *) gc_default_message));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3912 args[1] = build_string ("...");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3913 whole_msg = Fconcat (2, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3914 echo_area_message (f, (Bufbyte *) 0, whole_msg, 0, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3915 Qgarbage_collecting);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3916 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3917 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3919 /***** Now we actually start the garbage collection. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3921 gc_in_progress = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3923 gc_generation_number[0]++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3924
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3925 #if MAX_SAVE_STACK > 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3926
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3927 /* Save a copy of the contents of the stack, for debugging. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3928 if (!purify_flag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3929 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3930 i = &stack_top_variable - stack_bottom;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3931 if (i < 0) i = -i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3932 if (i < MAX_SAVE_STACK)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3933 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3934 if (stack_copy == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3935 stack_copy = (char *) malloc (stack_copy_size = i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3936 else if (stack_copy_size < i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3937 stack_copy = (char *) realloc (stack_copy, (stack_copy_size = i));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3938 if (stack_copy)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3939 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3940 if ((int) (&stack_top_variable - stack_bottom) > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3941 memcpy (stack_copy, stack_bottom, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3942 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3943 memcpy (stack_copy, &stack_top_variable, i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3944 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3945 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3946 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3947 #endif /* MAX_SAVE_STACK > 0 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3948
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3949 /* Do some totally ad-hoc resource clearing. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3950 /* #### generalize this? */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3951 clear_event_resource ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3952 cleanup_specifiers ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3954 /* Mark all the special slots that serve as the roots of accessibility. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3955 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3956 struct gcpro *tail;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3957 struct catchtag *catch;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3958 struct backtrace *backlist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3959 struct specbinding *bind;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3960
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3961 for (i = 0; i < staticidx; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3962 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3963 #ifdef GDB_SUCKS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3964 printf ("%d\n", i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3965 debug_print (*staticvec[i]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3966 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3967 mark_object (*(staticvec[i]));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3968 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3970 for (tail = gcprolist; tail; tail = tail->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3971 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3972 for (i = 0; i < tail->nvars; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3973 mark_object (tail->var[i]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3974 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3975
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3976 for (bind = specpdl; bind != specpdl_ptr; bind++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3977 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3978 mark_object (bind->symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3979 mark_object (bind->old_value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3980 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3981
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3982 for (catch = catchlist; catch; catch = catch->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3983 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3984 mark_object (catch->tag);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3985 mark_object (catch->val);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3986 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3987
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3988 for (backlist = backtrace_list; backlist; backlist = backlist->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3989 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3990 int nargs = backlist->nargs;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3991
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3992 mark_object (*backlist->function);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3993 if (nargs == UNEVALLED || nargs == MANY)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3994 mark_object (backlist->args[0]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3995 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3996 for (i = 0; i < nargs; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3997 mark_object (backlist->args[i]);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3998 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3999
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4000 mark_redisplay (mark_object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4001 mark_profiling_info (mark_object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4002 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4003
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4004 /* OK, now do the after-mark stuff. This is for things that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4005 are only marked when something else is marked (e.g. weak hashtables).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4006 There may be complex dependencies between such objects -- e.g.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4007 a weak hashtable might be unmarked, but after processing a later
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4008 weak hashtable, the former one might get marked. So we have to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4009 iterate until nothing more gets marked. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4010 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4011 int did_mark;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4012 /* Need to iterate until there's nothing more to mark, in case
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4013 of chains of mark dependencies. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4014 do
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4015 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4016 did_mark = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4017 did_mark += !!finish_marking_weak_hashtables (marked_p, mark_object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4018 did_mark += !!finish_marking_weak_lists (marked_p, mark_object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4019 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4020 while (did_mark);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4021 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4023 /* And prune (this needs to be called after everything else has been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4024 marked and before we do any sweeping). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4025 /* #### this is somewhat ad-hoc and should probably be an object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4026 method */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4027 prune_weak_hashtables (marked_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4028 prune_weak_lists (marked_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4029 prune_specifiers (marked_p);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4030
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4031 gc_sweep ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4033 consing_since_gc = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4034 #ifndef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4035 /* Allow you to set it really fucking low if you really want ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4036 if (gc_cons_threshold < 10000)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4037 gc_cons_threshold = 10000;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4038 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4039
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4040 gc_in_progress = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4042 /******* End of garbage collection ********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4044 run_hook_trapping_errors ("Error in post-gc-hook", Qpost_gc_hook);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4045
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4046 /* Now remove the GC cursor/message */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4047 if (!noninteractive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4048 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4049 if (cursor_changed)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4050 Fset_frame_pointer (make_frame (f), pre_gc_cursor);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4051 else if (!FRAME_STREAM_P (f))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4052 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4053 char *msg = (STRINGP (Vgc_message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4054 ? GETTEXT ((char *) string_data (XSTRING (Vgc_message)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4055 : 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4057 /* Show "...done" only if the echo area would otherwise be empty. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4058 if (NILP (clear_echo_area (selected_frame (),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4059 Qgarbage_collecting, 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4060 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4061 Lisp_Object args[2], whole_msg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4062 args[0] = build_string (msg ? msg :
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4063 GETTEXT ((CONST char *)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4064 gc_default_message));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4065 args[1] = build_string ("... done");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4066 whole_msg = Fconcat (2, args);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4067 echo_area_message (selected_frame (), (Bufbyte *) 0,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4068 whole_msg, 0, -1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4069 Qgarbage_collecting);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4070 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4071 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4072 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4073
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4074 /* now stop inhibiting GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4075 unbind_to (speccount, Qnil);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4077 if (!breathing_space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4078 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4079 breathing_space = (void *) malloc (4096 - MALLOC_OVERHEAD);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4080 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4081
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4082 UNGCPRO;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4083 return;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4084 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4086 #ifdef EMACS_BTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4087 /* This isn't actually called. BTL recognizes the stack frame of the top
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4088 of the garbage collector by noting that PC is between &garbage_collect_1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4089 and &BTL_after_garbage_collect_1_stub. So this fn must be right here.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4090 There's not any other way to know the address of the end of a function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4091 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4092 void BTL_after_garbage_collect_1_stub () { abort (); }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4093 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4094
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4095 /* Debugging aids. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4096
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4097 static Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4098 gc_plist_hack (CONST char *name, int value, Lisp_Object tail)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4099 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4100 /* C doesn't have local functions (or closures, or GC, or readable syntax,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4101 or portable numeric datatypes, or bit-vectors, or characters, or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4102 arrays, or exceptions, or ...) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4103 return (cons3 (intern (name), make_int (value), tail));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4104 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4106 #define HACK_O_MATIC(type, name, pl) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4107 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4108 int s = 0; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4109 struct type##_block *x = current_##type##_block; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4110 while (x) { s += sizeof (*x) + MALLOC_OVERHEAD; x = x->prev; } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4111 (pl) = gc_plist_hack ((name), s, (pl)); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4112 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4114 DEFUN ("garbage-collect", Fgarbage_collect, Sgarbage_collect, 0, 0, "" /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4115 Reclaim storage for Lisp objects no longer needed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4116 Returns info on amount of space in use:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4117 ((USED-CONSES . FREE-CONSES) (USED-SYMS . FREE-SYMS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4118 (USED-MARKERS . FREE-MARKERS) USED-STRING-CHARS USED-VECTOR-SLOTS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4119 PLIST)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4120 where `PLIST' is a list of alternating keyword/value pairs providing
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4121 more detailed information.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4122 Garbage collection happens automatically if you cons more than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4123 `gc-cons-threshold' bytes of Lisp data since previous garbage collection.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4124 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4125 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4126 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4127 Lisp_Object pl = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4128 Lisp_Object ret[6];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4129 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4131 garbage_collect_1 ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4133 for (i = 0; i < last_lrecord_type_index_assigned; i++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4134 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4135 if (lcrecord_stats[i].bytes_in_use != 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4136 || lcrecord_stats[i].bytes_freed != 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4137 || lcrecord_stats[i].instances_on_free_list != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4138 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4139 char buf [255];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4140 CONST char *name = lrecord_implementations_table[i]->name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4141 int len = strlen (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4142 sprintf (buf, "%s-storage", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4143 pl = gc_plist_hack (buf, lcrecord_stats[i].bytes_in_use, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4144 /* Okay, simple pluralization check for `symbol-value-varalias' */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4145 if (name[len-1] == 's')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4146 sprintf (buf, "%ses-freed", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4147 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4148 sprintf (buf, "%ss-freed", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4149 if (lcrecord_stats[i].instances_freed != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4150 pl = gc_plist_hack (buf, lcrecord_stats[i].instances_freed, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4151 if (name[len-1] == 's')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4152 sprintf (buf, "%ses-on-free-list", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4153 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4154 sprintf (buf, "%ss-on-free-list", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4155 if (lcrecord_stats[i].instances_on_free_list != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4156 pl = gc_plist_hack (buf, lcrecord_stats[i].instances_on_free_list,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4157 pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4158 if (name[len-1] == 's')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4159 sprintf (buf, "%ses-used", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4160 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4161 sprintf (buf, "%ss-used", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4162 pl = gc_plist_hack (buf, lcrecord_stats[i].instances_in_use, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4163 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4164 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4166 HACK_O_MATIC (extent, "extent-storage", pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4167 pl = gc_plist_hack ("extents-free", gc_count_num_extent_freelist, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4168 pl = gc_plist_hack ("extents-used", gc_count_num_extent_in_use, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4169 HACK_O_MATIC (event, "event-storage", pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4170 pl = gc_plist_hack ("events-free", gc_count_num_event_freelist, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4171 pl = gc_plist_hack ("events-used", gc_count_num_event_in_use, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4172 HACK_O_MATIC (marker, "marker-storage", pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4173 pl = gc_plist_hack ("markers-free", gc_count_num_marker_freelist, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4174 pl = gc_plist_hack ("markers-used", gc_count_num_marker_in_use, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4175 #ifdef LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4176 HACK_O_MATIC (float, "float-storage", pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4177 pl = gc_plist_hack ("floats-free", gc_count_num_float_freelist, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4178 pl = gc_plist_hack ("floats-used", gc_count_num_float_in_use, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4179 #endif /* LISP_FLOAT_TYPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4180 HACK_O_MATIC (string, "string-header-storage", pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4181 pl = gc_plist_hack ("long-strings-total-length",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4182 gc_count_string_total_size
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4183 - gc_count_short_string_total_size, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4184 HACK_O_MATIC (string_chars, "short-string-storage", pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4185 pl = gc_plist_hack ("short-strings-total-length",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4186 gc_count_short_string_total_size, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4187 pl = gc_plist_hack ("strings-free", gc_count_num_string_freelist, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4188 pl = gc_plist_hack ("long-strings-used",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4189 gc_count_num_string_in_use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4190 - gc_count_num_short_string_in_use, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4191 pl = gc_plist_hack ("short-strings-used",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4192 gc_count_num_short_string_in_use, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4194 HACK_O_MATIC (compiled_function, "compiled-function-storage", pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4195 pl = gc_plist_hack ("compiled-functions-free",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4196 gc_count_num_compiled_function_freelist, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4197 pl = gc_plist_hack ("compiled-functions-used",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4198 gc_count_num_compiled_function_in_use, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4200 pl = gc_plist_hack ("vector-storage", gc_count_vector_storage, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4201 pl = gc_plist_hack ("vectors-total-length",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4202 gc_count_vector_total_size, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4203 pl = gc_plist_hack ("vectors-used", gc_count_num_vector_used, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4205 pl = gc_plist_hack ("bit-vector-storage", gc_count_bit_vector_storage, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4206 pl = gc_plist_hack ("bit-vectors-total-length",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4207 gc_count_bit_vector_total_size, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4208 pl = gc_plist_hack ("bit-vectors-used", gc_count_num_bit_vector_used, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4209
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4210 HACK_O_MATIC (symbol, "symbol-storage", pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4211 pl = gc_plist_hack ("symbols-free", gc_count_num_symbol_freelist, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4212 pl = gc_plist_hack ("symbols-used", gc_count_num_symbol_in_use, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4214 HACK_O_MATIC (cons, "cons-storage", pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4215 pl = gc_plist_hack ("conses-free", gc_count_num_cons_freelist, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4216 pl = gc_plist_hack ("conses-used", gc_count_num_cons_in_use, pl);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4218 /* The things we do for backwards-compatibility */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4219 ret[0] = Fcons (make_int (gc_count_num_cons_in_use),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4220 make_int (gc_count_num_cons_freelist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4221 ret[1] = Fcons (make_int (gc_count_num_symbol_in_use),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4222 make_int (gc_count_num_symbol_freelist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4223 ret[2] = Fcons (make_int (gc_count_num_marker_in_use),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4224 make_int (gc_count_num_marker_freelist));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4225 ret[3] = make_int (gc_count_string_total_size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4226 ret[4] = make_int (gc_count_vector_total_size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4227 ret[5] = pl;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4228 return (Flist (6, ret));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4229 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4230 #undef HACK_O_MATIC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4232 DEFUN ("consing-since-gc", Fconsing_since_gc, Sconsing_since_gc, 0, 0, "" /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4233 Return the number of bytes consed since the last garbage collection.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4234 \"Consed\" is a misnomer in that this actually counts allocation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4235 of all different kinds of objects, not just conses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4237 If this value exceeds `gc-cons-threshold', a garbage collection happens.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4238 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4239 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4240 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4241 return (make_int (consing_since_gc));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4242 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4244 DEFUN ("memory-limit", Fmemory_limit, Smemory_limit, 0, 0, "" /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4245 Return the address of the last byte Emacs has allocated, divided by 1024.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4246 This may be helpful in debugging Emacs's memory usage.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4247 The value is divided by 1024 to make sure it will fit in a lisp integer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4248 */ )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4249 ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4250 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4251 return (make_int ((EMACS_INT) sbrk (0) / 1024));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4252 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4254
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4256 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4257 object_dead_p (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4258 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4259 return ((BUFFERP (obj) && !BUFFER_LIVE_P (XBUFFER (obj))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4260 (FRAMEP (obj) && !FRAME_LIVE_P (XFRAME (obj))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4261 (WINDOWP (obj) && !WINDOW_LIVE_P (XWINDOW (obj))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4262 (DEVICEP (obj) && !DEVICE_LIVE_P (XDEVICE (obj))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4263 (CONSOLEP (obj) && !CONSOLE_LIVE_P (XCONSOLE (obj))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4264 (EVENTP (obj) && !EVENT_LIVE_P (XEVENT (obj))) ||
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4265 (EXTENTP (obj) && !EXTENT_LIVE_P (XEXTENT (obj))));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4266
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4267 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4269 #ifdef MEMORY_USAGE_STATS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4271 /* Attempt to determine the actual amount of space that is used for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4272 the block allocated starting at PTR, supposedly of size "CLAIMED_SIZE".
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4273
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4274 It seems that the following holds:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4275
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4276 1. When using the old allocator (malloc.c):
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4278 -- blocks are always allocated in chunks of powers of two. For
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4279 each block, there is an overhead of 8 bytes if rcheck is not
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4280 defined, 20 bytes if it is defined. In other words, a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4281 one-byte allocation needs 8 bytes of overhead for a total of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4282 9 bytes, and needs to have 16 bytes of memory chunked out for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4283 it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4285 2. When using the new allocator (gmalloc.c):
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4287 -- blocks are always allocated in chunks of powers of two up
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4288 to 4096 bytes. Larger blocks are allocated in chunks of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4289 an integral multiple of 4096 bytes. The minimum block
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4290 size is 2*sizeof (void *), or 16 bytes if SUNOS_LOCALTIME_BUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4291 is defined. There is no per-block overhead, but there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4292 is an overhead of 3*sizeof (size_t) for each 4096 bytes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4293 allocated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4295 3. When using the system malloc, anything goes, but they are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4296 generally slower and more space-efficient than the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4297 allocators. One possibly reasonable assumption to make
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4298 for want of better data is that sizeof (void *), or maybe
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4299 2 * sizeof (void *), is required as overhead and that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4300 blocks are allocated in the minimum required size except
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4301 that some minimum block size is imposed (e.g. 16 bytes). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4302
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4303 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4304 malloced_storage_size (void *ptr, int claimed_size,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4305 struct overhead_stats *stats)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4306 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4307 int orig_claimed_size = claimed_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4309 #ifdef GNU_MALLOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4311 if (claimed_size < 2 * sizeof (void *))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4312 claimed_size = 2 * sizeof (void *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4313 # ifdef SUNOS_LOCALTIME_BUG
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4314 if (claimed_size < 16)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4315 claimed_size = 16;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4316 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4317 if (claimed_size < 4096)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4318 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4319 int log = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4321 /* compute the log base two, more or less, then use it to compute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4322 the block size needed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4323 claimed_size--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4324 /* It's big, it's heavy, it's wood! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4325 while ((claimed_size /= 2) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4326 ++log;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4327 claimed_size = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4328 /* It's better than bad, it's good! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4329 while (log > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4330 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4331 claimed_size *= 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4332 log--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4333 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4334 /* We have to come up with some average about the amount of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4335 blocks used. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4336 if ((rand () & 4095) < claimed_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4337 claimed_size += 3 * sizeof (void *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4338 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4339 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4340 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4341 claimed_size += 4095;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4342 claimed_size &= ~4095;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4343 claimed_size += (claimed_size / 4096) * 3 * sizeof (size_t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4344 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4345
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4346 #elif defined (SYSTEM_MALLOC)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4347
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4348 if (claimed_size < 16)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4349 claimed_size = 16;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4350 claimed_size += 2 * sizeof (void *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4352 #else /* old GNU allocator */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4354 # ifdef rcheck /* #### may not be defined here */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4355 claimed_size += 20;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4356 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4357 claimed_size += 8;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4358 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4359 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4360 int log = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4361
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4362 /* compute the log base two, more or less, then use it to compute
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4363 the block size needed. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4364 claimed_size--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4365 /* It's big, it's heavy, it's wood! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4366 while ((claimed_size /= 2) != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4367 ++log;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4368 claimed_size = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4369 /* It's better than bad, it's good! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4370 while (log > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4371 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4372 claimed_size *= 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4373 log--;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4374 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4375 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4376
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4377 #endif /* old GNU allocator */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4379 if (stats)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4380 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4381 stats->was_requested += orig_claimed_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4382 stats->malloc_overhead += claimed_size - orig_claimed_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4383 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4384 return claimed_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4385 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4387 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4388 fixed_type_block_overhead (int size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4389 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4390 int per_block = TYPE_ALLOC_SIZE (cons, unsigned char);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4391 int overhead = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4392 int storage_size = malloced_storage_size (0, per_block, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4393 while (size >= per_block)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4394 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4395 size -= per_block;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4396 overhead += sizeof (void *) + per_block - storage_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4398 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4399 if (rand () % per_block < size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4400 overhead += sizeof (void *) + per_block - storage_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4401 return overhead;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4402 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4403
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4404 #endif /* MEMORY_USAGE_STATS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4406
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4407 /* Initialization */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4408 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4409 init_alloc_once_early (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4410 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4411 int iii;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4413 #ifdef PURESTAT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4414 for (iii = 0; iii < countof (purestats); iii++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4415 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4416 if (! purestats[iii]) continue;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4417 purestats[iii]->nobjects = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4418 purestats[iii]->nbytes = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4419 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4420 purecopying_for_bytecode = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4421 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4423 last_lrecord_type_index_assigned = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4424 for (iii = 0; iii < countof (lrecord_implementations_table); iii++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4425 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4426 lrecord_implementations_table[iii] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4427 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4428
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4429 symbols_initialized = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4431 gc_generation_number[0] = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4432 /* purify_flag 1 is correct even if CANNOT_DUMP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4433 * loadup.el will set to nil at end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4434 purify_flag = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4435 pureptr = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4436 pure_lossage = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4437 breathing_space = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4438 XSETINT (all_vectors, 0); /* Qzero may not be set yet. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4439 XSETINT (all_bit_vectors, 0); /* Qzero may not be set yet. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4440 XSETINT (Vgc_message, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4441 all_lcrecords = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4442 ignore_malloc_warnings = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4443 init_string_alloc ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4444 init_string_chars_alloc ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4445 init_cons_alloc ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4446 init_symbol_alloc ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4447 init_compiled_function_alloc ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4448 #ifdef LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4449 init_float_alloc ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4450 #endif /* LISP_FLOAT_TYPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4451 #ifndef standalone
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4452 init_marker_alloc ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4453 init_extent_alloc ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4454 init_event_alloc ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4455 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4456 ignore_malloc_warnings = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4457 staticidx = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4458 consing_since_gc = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4459 #if 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4460 gc_cons_threshold = 500000; /* XEmacs change */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4461 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4462 gc_cons_threshold = 15000; /* debugging */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4463 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4464 #ifdef VIRT_ADDR_VARIES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4465 malloc_sbrk_unused = 1<<22; /* A large number */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4466 malloc_sbrk_used = 100000; /* as reasonable as any number */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4467 #endif /* VIRT_ADDR_VARIES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4468 lrecord_uid_counter = 259;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4469 debug_string_purity = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4470 gcprolist = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4472 gc_currently_forbidden = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4473 gc_hooks_inhibited = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4475 #ifdef ERROR_CHECK_TYPECHECK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4476 ERROR_ME.really_unlikely_name_to_have_accidentally_in_a_non_errb_structure =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4477 666;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4478 ERROR_ME_NOT.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4479 really_unlikely_name_to_have_accidentally_in_a_non_errb_structure = 42;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4480 ERROR_ME_WARN.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4481 really_unlikely_name_to_have_accidentally_in_a_non_errb_structure =
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4482 3333632;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4483 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4484 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4485
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4486 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4487 reinit_alloc (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4488 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4489 gcprolist = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4490 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4492 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4493 syms_of_alloc (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4494 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4495 defsymbol (&Qpre_gc_hook, "pre-gc-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4496 defsymbol (&Qpost_gc_hook, "post-gc-hook");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4497 defsymbol (&Qgarbage_collecting, "garbage-collecting");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4499 defsubr (&Scons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4500 defsubr (&Slist);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4501 defsubr (&Svector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4502 defsubr (&Sbit_vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4503 defsubr (&Smake_byte_code);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4504 defsubr (&Smake_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4505 defsubr (&Smake_vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4506 defsubr (&Smake_bit_vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4507 defsubr (&Smake_string);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4508 defsubr (&Smake_symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4509 defsubr (&Smake_marker);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4510 defsubr (&Spurecopy);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4511 defsubr (&Sgarbage_collect);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4512 defsubr (&Smemory_limit);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4513 defsubr (&Sconsing_since_gc);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4514 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4515
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4516 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4517 vars_of_alloc (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4518 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4519 DEFVAR_INT ("gc-cons-threshold", &gc_cons_threshold /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4520 *Number of bytes of consing between garbage collections.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4521 \"Consing\" is a misnomer in that this actually counts allocation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4522 of all different kinds of objects, not just conses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4523 Garbage collection can happen automatically once this many bytes have been
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4524 allocated since the last garbage collection. All data types count.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4525
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4526 Garbage collection happens automatically when `eval' or `funcall' are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4527 called. (Note that `funcall' is called implicitly as part of evaluation.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4528 By binding this temporarily to a large number, you can effectively
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4529 prevent garbage collection during a part of the program.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4531 See also `consing-since-gc'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4532 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4533
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4534 DEFVAR_INT ("pure-bytes-used", &pureptr /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4535 Number of bytes of sharable Lisp data allocated so far.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4536 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4538 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4539 DEFVAR_INT ("data-bytes-used", &malloc_sbrk_used /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4540 Number of bytes of unshared memory allocated in this session.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4541 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4543 DEFVAR_INT ("data-bytes-free", &malloc_sbrk_unused /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4544 Number of bytes of unshared memory remaining available in this session.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4545 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4546 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4547
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4548 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4549 DEFVAR_INT ("debug-allocation", &debug_allocation /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4550 If non-zero, print out information to stderr about all objects allocated.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4551 See also `debug-allocation-backtrace-length'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4552 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4553 debug_allocation = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4555 DEFVAR_INT ("debug-allocation-backtrace-length",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4556 &debug_allocation_backtrace_length /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4557 Length (in stack frames) of short backtrace printed out by `debug-allocation'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4558 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4559 debug_allocation_backtrace_length = 2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4560 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4562 DEFVAR_BOOL ("purify-flag", &purify_flag /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4563 Non-nil means loading Lisp code in order to dump an executable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4564 This means that certain objects should be allocated in shared (pure) space.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4565 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4567 DEFVAR_LISP ("pre-gc-hook", &Vpre_gc_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4568 Function or functions to be run just before each garbage collection.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4569 Interrupts, garbage collection, and errors are inhibited while this hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4570 runs, so be extremely careful in what you add here. In particular, avoid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4571 consing, and do not interact with the user.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4572 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4573 Vpre_gc_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4575 DEFVAR_LISP ("post-gc-hook", &Vpost_gc_hook /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4576 Function or functions to be run just after each garbage collection.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4577 Interrupts, garbage collection, and errors are inhibited while this hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4578 runs, so be extremely careful in what you add here. In particular, avoid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4579 consing, and do not interact with the user.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4580 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4581 Vpost_gc_hook = Qnil;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4583 DEFVAR_LISP ("gc-message", &Vgc_message /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4584 String to print to indicate that a garbage collection is in progress.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4585 This is printed in the echo area. If the selected frame is on a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4586 window system and `gc-pointer-glyph' specifies a value (i.e. a pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4587 image instance) in the domain of the selected frame, the mouse pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4588 will change instead of this message being printed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4589 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4590 Vgc_message = make_pure_string ((CONST Bufbyte *) gc_default_message,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4591 countof (gc_default_message) - 1,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4592 Qnil, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4593
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4594 DEFVAR_LISP ("gc-pointer-glyph", &Vgc_pointer_glyph /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4595 Pointer glyph used to indicate that a garbage collection is in progress.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4596 If the selected window is on a window system and this glyph specifies a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4597 value (i.e. a pointer image instance) in the domain of the selected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4598 window, the pointer will be changed as specified during garbage collection.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4599 Otherwise, a message will be printed in the echo area, as controlled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4600 by `gc-message'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4601 */ );
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4602 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4604 void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4605 complex_vars_of_alloc (void)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4606 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4607 Vgc_pointer_glyph = Fmake_glyph_internal (Qpointer);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4608 }