Merge from trunk.
[bpt/emacs.git] / src / lisp.h
1 /* Fundamental definitions for GNU Emacs Lisp interpreter.
2 Copyright (C) 1985-1987, 1993-1995, 1997-2012
3 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
19
20 #ifndef EMACS_LISP_H
21 #define EMACS_LISP_H
22
23 #include <stdarg.h>
24 #include <stddef.h>
25 #include <inttypes.h>
26 #include <limits.h>
27
28 #include <intprops.h>
29
30 /* Use the configure flag --enable-checking[=LIST] to enable various
31 types of run time checks for Lisp objects. */
32
33 #ifdef GC_CHECK_CONS_LIST
34 extern void check_cons_list (void);
35 #define CHECK_CONS_LIST() check_cons_list ()
36 #else
37 #define CHECK_CONS_LIST() ((void) 0)
38 #endif
39
40 /* Temporarily disable wider-than-pointer integers until they're tested more.
41 Build with CFLAGS='-DWIDE_EMACS_INT' to try them out. */
42 /* #undef WIDE_EMACS_INT */
43
44 /* These are default choices for the types to use. */
45 #ifndef EMACS_INT
46 # if BITS_PER_LONG < BITS_PER_LONG_LONG && defined WIDE_EMACS_INT
47 # define EMACS_INT long long
48 # define BITS_PER_EMACS_INT BITS_PER_LONG_LONG
49 # define pI "ll"
50 # elif BITS_PER_INT < BITS_PER_LONG
51 # define EMACS_INT long
52 # define BITS_PER_EMACS_INT BITS_PER_LONG
53 # define pI "l"
54 # else
55 # define EMACS_INT int
56 # define BITS_PER_EMACS_INT BITS_PER_INT
57 # define pI ""
58 # endif
59 #endif
60 #ifndef EMACS_UINT
61 # define EMACS_UINT unsigned EMACS_INT
62 #endif
63
64 /* printmax_t and uprintmax_t are types for printing large integers.
65 These are the widest integers that are supported for printing.
66 pMd etc. are conversions for printing them.
67 On C99 hosts, there's no problem, as even the widest integers work.
68 Fall back on EMACS_INT on pre-C99 hosts. */
69 #ifdef PRIdMAX
70 typedef intmax_t printmax_t;
71 typedef uintmax_t uprintmax_t;
72 # define pMd PRIdMAX
73 # define pMu PRIuMAX
74 #else
75 typedef EMACS_INT printmax_t;
76 typedef EMACS_UINT uprintmax_t;
77 # define pMd pI"d"
78 # define pMu pI"u"
79 #endif
80
81 /* Use pD to format ptrdiff_t values, which suffice for indexes into
82 buffers and strings. Emacs never allocates objects larger than
83 PTRDIFF_MAX bytes, as they cause problems with pointer subtraction.
84 In C99, pD can always be "t"; configure it here for the sake of
85 pre-C99 libraries such as glibc 2.0 and Solaris 8. */
86 #if PTRDIFF_MAX == INT_MAX
87 # define pD ""
88 #elif PTRDIFF_MAX == LONG_MAX
89 # define pD "l"
90 #elif PTRDIFF_MAX == LLONG_MAX
91 # define pD "ll"
92 #else
93 # define pD "t"
94 #endif
95
96 /* Extra internal type checking? */
97
98 #ifdef ENABLE_CHECKING
99
100 extern void die (const char *, const char *, int) NO_RETURN;
101
102 /* The suppress_checking variable is initialized to 0 in alloc.c. Set
103 it to 1 using a debugger to temporarily disable aborting on
104 detected internal inconsistencies or error conditions.
105
106 Testing suppress_checking after the supplied condition ensures that
107 the side effects produced by CHECK will be consistent, independent
108 of whether ENABLE_CHECKING is defined, or whether the checks are
109 suppressed at run time.
110
111 In some cases, a good compiler may be able to optimize away the
112 CHECK macro altogether, e.g., if XSTRING (x) uses CHECK to test
113 STRINGP (x), but a particular use of XSTRING is invoked only after
114 testing that STRINGP (x) is true, making the test redundant. */
115
116 extern int suppress_checking EXTERNALLY_VISIBLE;
117
118 #define CHECK(check,msg) (((check) || suppress_checking \
119 ? (void) 0 \
120 : die ((msg), __FILE__, __LINE__)), \
121 0)
122 #else
123
124 /* Produce same side effects and result, but don't complain. */
125 #define CHECK(check,msg) ((check),0)
126
127 #endif
128
129 /* Define an Emacs version of "assert", since some system ones are
130 flaky. */
131 #ifndef ENABLE_CHECKING
132 #define eassert(X) ((void) (0 && (X))) /* Check that X compiles. */
133 #else /* ENABLE_CHECKING */
134 #if defined (__GNUC__) && __GNUC__ >= 2 && defined (__STDC__)
135 #define eassert(cond) CHECK (cond, "assertion failed: " #cond)
136 #else
137 #define eassert(cond) CHECK (cond, "assertion failed")
138 #endif
139 #endif /* ENABLE_CHECKING */
140 \f
141 /* Use the configure flag --enable-use-lisp-union-type to make
142 Lisp_Object use a union type instead of the default int. The flag
143 causes USE_LISP_UNION_TYPE to be defined. */
144
145 /***** Select the tagging scheme. *****/
146 /* There are basically two options that control the tagging scheme:
147 - USE_LISP_UNION_TYPE says that Lisp_Object should be a union instead
148 of an integer.
149 - USE_LSB_TAG means that we can assume the least 3 bits of pointers are
150 always 0, and we can thus use them to hold tag bits, without
151 restricting our addressing space.
152
153 If USE_LSB_TAG is not set, then we use the top 3 bits for tagging, thus
154 restricting our possible address range. Currently USE_LSB_TAG is not
155 allowed together with a union. This is not due to any fundamental
156 technical (or political ;-) problem: nobody wrote the code to do it yet.
157
158 USE_LSB_TAG not only requires the least 3 bits of pointers returned by
159 malloc to be 0 but also needs to be able to impose a mult-of-8 alignment
160 on the few static Lisp_Objects used: all the defsubr as well
161 as the two special buffers buffer_defaults and buffer_local_symbols. */
162
163 /* First, try and define DECL_ALIGN(type,var) which declares a static
164 variable VAR of type TYPE with the added requirement that it be
165 TYPEBITS-aligned. */
166
167 #ifndef GCTYPEBITS
168 #define GCTYPEBITS 3
169 #endif
170
171 #ifndef VALBITS
172 #define VALBITS (BITS_PER_EMACS_INT - GCTYPEBITS)
173 #endif
174
175 #ifndef NO_DECL_ALIGN
176 # ifndef DECL_ALIGN
177 # if HAVE_ATTRIBUTE_ALIGNED
178 # define DECL_ALIGN(type, var) \
179 type __attribute__ ((__aligned__ (1 << GCTYPEBITS))) var
180 # elif defined(_MSC_VER)
181 # define ALIGN_GCTYPEBITS 8
182 # if (1 << GCTYPEBITS) != ALIGN_GCTYPEBITS
183 # error ALIGN_GCTYPEBITS is wrong!
184 # endif
185 # define DECL_ALIGN(type, var) \
186 type __declspec(align(ALIGN_GCTYPEBITS)) var
187 # else
188 /* What directives do other compilers use? */
189 # endif
190 # endif
191 #endif
192
193 /* Let's USE_LSB_TAG on systems where we know malloc returns mult-of-8. */
194 #if (defined GNU_MALLOC || defined DOUG_LEA_MALLOC || defined __GLIBC__ \
195 || defined DARWIN_OS || defined __sun)
196 /* We also need to be able to specify mult-of-8 alignment on static vars. */
197 # if defined DECL_ALIGN
198 /* On hosts where VALBITS is greater than the pointer width in bits,
199 USE_LSB_TAG is:
200 a. unnecessary, because the top bits of an EMACS_INT are unused, and
201 b. slower, because it typically requires extra masking.
202 So, define USE_LSB_TAG only on hosts where it might be useful. */
203 # if UINTPTR_MAX >> VALBITS != 0
204 # define USE_LSB_TAG
205 # endif
206 # endif
207 #endif
208
209 /* If we cannot use 8-byte alignment, make DECL_ALIGN a no-op. */
210 #ifndef DECL_ALIGN
211 # ifdef USE_LSB_TAG
212 # error "USE_LSB_TAG used without defining DECL_ALIGN"
213 # endif
214 # define DECL_ALIGN(type, var) type var
215 #endif
216
217
218 /* Define the fundamental Lisp data structures. */
219
220 /* If USE_2_TAGBITS_FOR_INTS is defined, then Lisp integers use
221 2 tags, to give them one extra bit, thus extending their range from
222 e.g -2^28..2^28-1 to -2^29..2^29-1. */
223 #define USE_2_TAGS_FOR_INTS
224
225 /* Making it work for the union case is too much trouble. */
226 #ifdef USE_LISP_UNION_TYPE
227 # undef USE_2_TAGS_FOR_INTS
228 #endif
229
230 /* This is the set of Lisp data types. */
231
232 #if !defined USE_2_TAGS_FOR_INTS
233 # define LISP_INT_TAG Lisp_Int
234 # define case_Lisp_Int case Lisp_Int
235 # define LISP_STRING_TAG 4
236 # define LISP_INT_TAG_P(x) ((x) == Lisp_Int)
237 #else
238 # define LISP_INT_TAG Lisp_Int0
239 # define case_Lisp_Int case Lisp_Int0: case Lisp_Int1
240 # ifdef USE_LSB_TAG
241 # define LISP_INT1_TAG 4
242 # define LISP_STRING_TAG 1
243 # define LISP_INT_TAG_P(x) (((x) & 3) == 0)
244 # else
245 # define LISP_INT1_TAG 1
246 # define LISP_STRING_TAG 4
247 # define LISP_INT_TAG_P(x) (((x) & 6) == 0)
248 # endif
249 #endif
250
251 /* Stolen from GDB. The only known compiler that doesn't support
252 enums in bitfields is MSVC. */
253 #ifdef _MSC_VER
254 #define ENUM_BF(TYPE) unsigned int
255 #else
256 #define ENUM_BF(TYPE) enum TYPE
257 #endif
258
259
260 enum Lisp_Type
261 {
262 /* Integer. XINT (obj) is the integer value. */
263 #ifdef USE_2_TAGS_FOR_INTS
264 Lisp_Int0 = 0,
265 Lisp_Int1 = LISP_INT1_TAG,
266 #else
267 Lisp_Int = 0,
268 #endif
269
270 /* Symbol. XSYMBOL (object) points to a struct Lisp_Symbol. */
271 Lisp_Symbol = 2,
272
273 /* Miscellaneous. XMISC (object) points to a union Lisp_Misc,
274 whose first member indicates the subtype. */
275 Lisp_Misc = 3,
276
277 /* String. XSTRING (object) points to a struct Lisp_String.
278 The length of the string, and its contents, are stored therein. */
279 Lisp_String = LISP_STRING_TAG,
280
281 /* Vector of Lisp objects, or something resembling it.
282 XVECTOR (object) points to a struct Lisp_Vector, which contains
283 the size and contents. The size field also contains the type
284 information, if it's not a real vector object. */
285 Lisp_Vectorlike = 5,
286
287 /* Cons. XCONS (object) points to a struct Lisp_Cons. */
288 Lisp_Cons = 6,
289
290 Lisp_Float = 7,
291 };
292
293 /* This is the set of data types that share a common structure.
294 The first member of the structure is a type code from this set.
295 The enum values are arbitrary, but we'll use large numbers to make it
296 more likely that we'll spot the error if a random word in memory is
297 mistakenly interpreted as a Lisp_Misc. */
298 enum Lisp_Misc_Type
299 {
300 Lisp_Misc_Free = 0x5eab,
301 Lisp_Misc_Marker,
302 Lisp_Misc_Overlay,
303 Lisp_Misc_Save_Value,
304 /* Currently floats are not a misc type,
305 but let's define this in case we want to change that. */
306 Lisp_Misc_Float,
307 /* This is not a type code. It is for range checking. */
308 Lisp_Misc_Limit
309 };
310
311 /* These are the types of forwarding objects used in the value slot
312 of symbols for special built-in variables whose value is stored in
313 C variables. */
314 enum Lisp_Fwd_Type
315 {
316 Lisp_Fwd_Int, /* Fwd to a C `int' variable. */
317 Lisp_Fwd_Bool, /* Fwd to a C boolean var. */
318 Lisp_Fwd_Obj, /* Fwd to a C Lisp_Object variable. */
319 Lisp_Fwd_Buffer_Obj, /* Fwd to a Lisp_Object field of buffers. */
320 Lisp_Fwd_Kboard_Obj, /* Fwd to a Lisp_Object field of kboards. */
321 };
322
323 #ifdef USE_LISP_UNION_TYPE
324
325 #ifndef WORDS_BIGENDIAN
326
327 /* Definition of Lisp_Object for little-endian machines. */
328
329 typedef
330 union Lisp_Object
331 {
332 /* Used for comparing two Lisp_Objects;
333 also, positive integers can be accessed fast this way. */
334 EMACS_INT i;
335
336 struct
337 {
338 /* Use explicit signed, the signedness of a bit-field of type
339 int is implementation defined. */
340 signed EMACS_INT val : VALBITS;
341 ENUM_BF (Lisp_Type) type : GCTYPEBITS;
342 } s;
343 struct
344 {
345 EMACS_UINT val : VALBITS;
346 ENUM_BF (Lisp_Type) type : GCTYPEBITS;
347 } u;
348 }
349 Lisp_Object;
350
351 #else /* If WORDS_BIGENDIAN */
352
353 typedef
354 union Lisp_Object
355 {
356 /* Used for comparing two Lisp_Objects;
357 also, positive integers can be accessed fast this way. */
358 EMACS_INT i;
359
360 struct
361 {
362 ENUM_BF (Lisp_Type) type : GCTYPEBITS;
363 /* Use explicit signed, the signedness of a bit-field of type
364 int is implementation defined. */
365 signed EMACS_INT val : VALBITS;
366 } s;
367 struct
368 {
369 ENUM_BF (Lisp_Type) type : GCTYPEBITS;
370 EMACS_UINT val : VALBITS;
371 } u;
372 }
373 Lisp_Object;
374
375 #endif /* WORDS_BIGENDIAN */
376
377 #ifdef __GNUC__
378 static inline Lisp_Object
379 LISP_MAKE_RVALUE (Lisp_Object o)
380 {
381 return o;
382 }
383 #else
384 /* This is more portable to pre-C99 non-GCC compilers, but for
385 backwards compatibility GCC still accepts an old GNU extension
386 which caused this to only generate a warning. */
387 #define LISP_MAKE_RVALUE(o) (0 ? (o) : (o))
388 #endif
389
390 #else /* USE_LISP_UNION_TYPE */
391
392 /* If union type is not wanted, define Lisp_Object as just a number. */
393
394 typedef EMACS_INT Lisp_Object;
395 #define LISP_MAKE_RVALUE(o) (0+(o))
396 #endif /* USE_LISP_UNION_TYPE */
397
398 /* In the size word of a vector, this bit means the vector has been marked. */
399
400 #define ARRAY_MARK_FLAG PTRDIFF_MIN
401
402 /* In the size word of a struct Lisp_Vector, this bit means it's really
403 some other vector-like object. */
404 #define PSEUDOVECTOR_FLAG (PTRDIFF_MAX - PTRDIFF_MAX / 2)
405
406 /* In a pseudovector, the size field actually contains a word with one
407 PSEUDOVECTOR_FLAG bit set, and exactly one of the following bits to
408 indicate the actual type.
409 We use a bitset, even tho only one of the bits can be set at any
410 particular time just so as to be able to use micro-optimizations such as
411 testing membership of a particular subset of pseudovectors in Fequal.
412 It is not crucial, but there are plenty of bits here, so why not do it? */
413 enum pvec_type
414 {
415 PVEC_NORMAL_VECTOR = 0,
416 PVEC_PROCESS = 0x200,
417 PVEC_FRAME = 0x400,
418 PVEC_COMPILED = 0x800,
419 PVEC_WINDOW = 0x1000,
420 PVEC_WINDOW_CONFIGURATION = 0x2000,
421 PVEC_SUBR = 0x4000,
422 PVEC_CHAR_TABLE = 0x8000,
423 PVEC_BOOL_VECTOR = 0x10000,
424 PVEC_BUFFER = 0x20000,
425 PVEC_HASH_TABLE = 0x40000,
426 PVEC_TERMINAL = 0x80000,
427 PVEC_SUB_CHAR_TABLE = 0x100000,
428 PVEC_FONT = 0x200000,
429 PVEC_OTHER = 0x400000,
430 PVEC_TYPE_MASK = 0x7ffe00
431
432 #if 0 /* This is used to make the value of PSEUDOVECTOR_FLAG available to
433 GDB. It doesn't work on OS Alpha. Moved to a variable in
434 emacs.c. */
435 PVEC_FLAG = PSEUDOVECTOR_FLAG
436 #endif
437 };
438
439 /* For convenience, we also store the number of elements in these bits.
440 Note that this size is not necessarily the memory-footprint size, but
441 only the number of Lisp_Object fields (that need to be traced by the GC).
442 The distinction is used e.g. by Lisp_Process which places extra
443 non-Lisp_Object fields at the end of the structure. */
444 #define PSEUDOVECTOR_SIZE_MASK 0x1ff
445
446 /* Number of bits to put in each character in the internal representation
447 of bool vectors. This should not vary across implementations. */
448 #define BOOL_VECTOR_BITS_PER_CHAR 8
449 \f
450 /* These macros extract various sorts of values from a Lisp_Object.
451 For example, if tem is a Lisp_Object whose type is Lisp_Cons,
452 XCONS (tem) is the struct Lisp_Cons * pointing to the memory for that cons. */
453
454 #ifndef USE_LISP_UNION_TYPE
455
456 /* Return a perfect hash of the Lisp_Object representation. */
457 #define XHASH(a) (a)
458
459 #ifdef USE_LSB_TAG
460
461 #define TYPEMASK ((((EMACS_INT) 1) << GCTYPEBITS) - 1)
462 #define XTYPE(a) ((enum Lisp_Type) ((a) & TYPEMASK))
463 #ifdef USE_2_TAGS_FOR_INTS
464 # define XINT(a) (((EMACS_INT) (a)) >> (GCTYPEBITS - 1))
465 # define XUINT(a) (((EMACS_UINT) (a)) >> (GCTYPEBITS - 1))
466 # define make_number(N) (((EMACS_INT) (N)) << (GCTYPEBITS - 1))
467 #else
468 # define XINT(a) (((EMACS_INT) (a)) >> GCTYPEBITS)
469 # define XUINT(a) (((EMACS_UINT) (a)) >> GCTYPEBITS)
470 # define make_number(N) (((EMACS_INT) (N)) << GCTYPEBITS)
471 #endif
472 #define XSET(var, type, ptr) \
473 (eassert (XTYPE ((intptr_t) (ptr)) == 0), /* Check alignment. */ \
474 (var) = (type) | (intptr_t) (ptr))
475
476 #define XPNTR(a) ((intptr_t) ((a) & ~TYPEMASK))
477
478 #else /* not USE_LSB_TAG */
479
480 #define VALMASK ((((EMACS_INT) 1) << VALBITS) - 1)
481
482 /* One need to override this if there must be high bits set in data space
483 (doing the result of the below & ((1 << (GCTYPE + 1)) - 1) would work
484 on all machines, but would penalize machines which don't need it)
485 */
486 #define XTYPE(a) ((enum Lisp_Type) (((EMACS_UINT) (a)) >> VALBITS))
487
488 /* For integers known to be positive, XFASTINT provides fast retrieval
489 and XSETFASTINT provides fast storage. This takes advantage of the
490 fact that Lisp_Int is 0. */
491 #define XFASTINT(a) ((a) + 0)
492 #define XSETFASTINT(a, b) ((a) = (b))
493
494 /* Extract the value of a Lisp_Object as a (un)signed integer. */
495
496 #ifdef USE_2_TAGS_FOR_INTS
497 # define XINT(a) ((((EMACS_INT) (a)) << (GCTYPEBITS - 1)) >> (GCTYPEBITS - 1))
498 # define XUINT(a) ((EMACS_UINT) ((a) & (1 + (VALMASK << 1))))
499 # define make_number(N) ((((EMACS_INT) (N)) & (1 + (VALMASK << 1))))
500 #else
501 # define XINT(a) ((((EMACS_INT) (a)) << (BITS_PER_EMACS_INT - VALBITS)) \
502 >> (BITS_PER_EMACS_INT - VALBITS))
503 # define XUINT(a) ((EMACS_UINT) ((a) & VALMASK))
504 # define make_number(N) \
505 ((((EMACS_INT) (N)) & VALMASK) | ((EMACS_INT) Lisp_Int) << VALBITS)
506 #endif
507
508 #define XSET(var, type, ptr) \
509 ((var) = ((EMACS_INT) ((EMACS_UINT) (type) << VALBITS) \
510 + ((intptr_t) (ptr) & VALMASK)))
511
512 #ifdef DATA_SEG_BITS
513 /* DATA_SEG_BITS forces extra bits to be or'd in with any pointers
514 which were stored in a Lisp_Object */
515 #define XPNTR(a) ((uintptr_t) (((a) & VALMASK)) | DATA_SEG_BITS))
516 #else
517 #define XPNTR(a) ((uintptr_t) ((a) & VALMASK))
518 #endif
519
520 #endif /* not USE_LSB_TAG */
521
522 #else /* USE_LISP_UNION_TYPE */
523
524 #ifdef USE_2_TAGS_FOR_INTS
525 # error "USE_2_TAGS_FOR_INTS is not supported with USE_LISP_UNION_TYPE"
526 #endif
527
528 #define XHASH(a) ((a).i)
529 #define XTYPE(a) ((enum Lisp_Type) (a).u.type)
530 #define XINT(a) ((EMACS_INT) (a).s.val)
531 #define XUINT(a) ((EMACS_UINT) (a).u.val)
532
533 #ifdef USE_LSB_TAG
534
535 # define XSET(var, vartype, ptr) \
536 (eassert ((((uintptr_t) (ptr)) & ((1 << GCTYPEBITS) - 1)) == 0), \
537 (var).u.val = ((uintptr_t) (ptr)) >> GCTYPEBITS, \
538 (var).u.type = ((char) (vartype)))
539
540 /* Some versions of gcc seem to consider the bitfield width when issuing
541 the "cast to pointer from integer of different size" warning, so the
542 cast is here to widen the value back to its natural size. */
543 # define XPNTR(v) ((intptr_t) (v).s.val << GCTYPEBITS)
544
545 #else /* !USE_LSB_TAG */
546
547 /* For integers known to be positive, XFASTINT provides fast retrieval
548 and XSETFASTINT provides fast storage. This takes advantage of the
549 fact that Lisp_Int is 0. */
550 # define XFASTINT(a) ((a).i + 0)
551 # define XSETFASTINT(a, b) ((a).i = (b))
552
553 # define XSET(var, vartype, ptr) \
554 (((var).s.val = ((intptr_t) (ptr))), ((var).s.type = ((char) (vartype))))
555
556 #ifdef DATA_SEG_BITS
557 /* DATA_SEG_BITS forces extra bits to be or'd in with any pointers
558 which were stored in a Lisp_Object */
559 #define XPNTR(a) ((intptr_t) (XUINT (a) | DATA_SEG_BITS))
560 #else
561 #define XPNTR(a) ((intptr_t) XUINT (a))
562 #endif
563
564 #endif /* !USE_LSB_TAG */
565
566 #if __GNUC__ >= 2 && defined (__OPTIMIZE__)
567 #define make_number(N) \
568 (__extension__ ({ Lisp_Object _l; _l.s.val = (N); _l.s.type = Lisp_Int; _l; }))
569 #else
570 extern Lisp_Object make_number (EMACS_INT);
571 #endif
572
573 #endif /* USE_LISP_UNION_TYPE */
574
575 /* For integers known to be positive, XFASTINT sometimes provides
576 faster retrieval and XSETFASTINT provides faster storage.
577 If not, fallback on the non-accelerated path. */
578 #ifndef XFASTINT
579 # define XFASTINT(a) (XINT (a))
580 # define XSETFASTINT(a, b) (XSETINT (a, b))
581 #endif
582
583 #define EQ(x, y) (XHASH (x) == XHASH (y))
584
585 /* Number of bits in a fixnum, including the sign bit. */
586 #ifdef USE_2_TAGS_FOR_INTS
587 # define FIXNUM_BITS (VALBITS + 1)
588 #else
589 # define FIXNUM_BITS VALBITS
590 #endif
591
592 /* Mask indicating the significant bits of a fixnum. */
593 #define INTMASK (((EMACS_INT) 1 << FIXNUM_BITS) - 1)
594
595 /* Largest and smallest representable fixnum values. These are the C
596 values. */
597 #define MOST_POSITIVE_FIXNUM (INTMASK / 2)
598 #define MOST_NEGATIVE_FIXNUM (-1 - MOST_POSITIVE_FIXNUM)
599
600 /* Value is non-zero if I doesn't fit into a Lisp fixnum. It is
601 written this way so that it also works if I is of unsigned
602 type or if I is a NaN. */
603
604 #define FIXNUM_OVERFLOW_P(i) \
605 (! ((0 <= (i) || MOST_NEGATIVE_FIXNUM <= (i)) && (i) <= MOST_POSITIVE_FIXNUM))
606
607 static inline ptrdiff_t
608 clip_to_bounds (ptrdiff_t lower, EMACS_INT num, ptrdiff_t upper)
609 {
610 return num < lower ? lower : num <= upper ? num : upper;
611 }
612
613 /* Extract a value or address from a Lisp_Object. */
614
615 #define XCONS(a) (eassert (CONSP (a)), (struct Lisp_Cons *) XPNTR (a))
616 #define XVECTOR(a) (eassert (VECTORLIKEP (a)), (struct Lisp_Vector *) XPNTR (a))
617 #define XSTRING(a) (eassert (STRINGP (a)), (struct Lisp_String *) XPNTR (a))
618 #define XSYMBOL(a) (eassert (SYMBOLP (a)), (struct Lisp_Symbol *) XPNTR (a))
619 #define XFLOAT(a) (eassert (FLOATP (a)), (struct Lisp_Float *) XPNTR (a))
620
621 /* Misc types. */
622
623 #define XMISC(a) ((union Lisp_Misc *) XPNTR (a))
624 #define XMISCANY(a) (eassert (MISCP (a)), &(XMISC (a)->u_any))
625 #define XMISCTYPE(a) (XMISCANY (a)->type)
626 #define XMARKER(a) (eassert (MARKERP (a)), &(XMISC (a)->u_marker))
627 #define XOVERLAY(a) (eassert (OVERLAYP (a)), &(XMISC (a)->u_overlay))
628 #define XSAVE_VALUE(a) (eassert (SAVE_VALUEP (a)), &(XMISC (a)->u_save_value))
629
630 /* Forwarding object types. */
631
632 #define XFWDTYPE(a) (a->u_intfwd.type)
633 #define XINTFWD(a) (eassert (INTFWDP (a)), &((a)->u_intfwd))
634 #define XBOOLFWD(a) (eassert (BOOLFWDP (a)), &((a)->u_boolfwd))
635 #define XOBJFWD(a) (eassert (OBJFWDP (a)), &((a)->u_objfwd))
636 #define XBUFFER_OBJFWD(a) \
637 (eassert (BUFFER_OBJFWDP (a)), &((a)->u_buffer_objfwd))
638 #define XKBOARD_OBJFWD(a) \
639 (eassert (KBOARD_OBJFWDP (a)), &((a)->u_kboard_objfwd))
640
641 /* Pseudovector types. */
642
643 #define XPROCESS(a) (eassert (PROCESSP (a)), (struct Lisp_Process *) XPNTR (a))
644 #define XWINDOW(a) (eassert (WINDOWP (a)), (struct window *) XPNTR (a))
645 #define XTERMINAL(a) (eassert (TERMINALP (a)), (struct terminal *) XPNTR (a))
646 #define XSUBR(a) (eassert (SUBRP (a)), (struct Lisp_Subr *) XPNTR (a))
647 #define XBUFFER(a) (eassert (BUFFERP (a)), (struct buffer *) XPNTR (a))
648 #define XCHAR_TABLE(a) (eassert (CHAR_TABLE_P (a)), (struct Lisp_Char_Table *) XPNTR (a))
649 #define XSUB_CHAR_TABLE(a) (eassert (SUB_CHAR_TABLE_P (a)), (struct Lisp_Sub_Char_Table *) XPNTR (a))
650 #define XBOOL_VECTOR(a) (eassert (BOOL_VECTOR_P (a)), (struct Lisp_Bool_Vector *) XPNTR (a))
651
652 /* Construct a Lisp_Object from a value or address. */
653
654 #define XSETINT(a, b) (a) = make_number (b)
655 #define XSETCONS(a, b) XSET (a, Lisp_Cons, b)
656 #define XSETVECTOR(a, b) XSET (a, Lisp_Vectorlike, b)
657 #define XSETSTRING(a, b) XSET (a, Lisp_String, b)
658 #define XSETSYMBOL(a, b) XSET (a, Lisp_Symbol, b)
659 #define XSETFLOAT(a, b) XSET (a, Lisp_Float, b)
660
661 /* Misc types. */
662
663 #define XSETMISC(a, b) XSET (a, Lisp_Misc, b)
664 #define XSETMARKER(a, b) (XSETMISC (a, b), XMISCTYPE (a) = Lisp_Misc_Marker)
665
666 /* Pseudovector types. */
667
668 #define XSETPVECTYPE(v, code) XSETTYPED_PVECTYPE (v, header.size, code)
669 #define XSETTYPED_PVECTYPE(v, size_member, code) \
670 ((v)->size_member |= PSEUDOVECTOR_FLAG | (code))
671 #define XSETPVECTYPESIZE(v, code, sizeval) \
672 ((v)->header.size = PSEUDOVECTOR_FLAG | (code) | (sizeval))
673
674 /* The cast to struct vectorlike_header * avoids aliasing issues. */
675 #define XSETPSEUDOVECTOR(a, b, code) \
676 XSETTYPED_PSEUDOVECTOR(a, b, \
677 ((struct vectorlike_header *) XPNTR (a))->size, \
678 code)
679 #define XSETTYPED_PSEUDOVECTOR(a, b, size, code) \
680 (XSETVECTOR (a, b), \
681 eassert ((size & (PSEUDOVECTOR_FLAG | PVEC_TYPE_MASK)) \
682 == (PSEUDOVECTOR_FLAG | (code))))
683
684 #define XSETWINDOW_CONFIGURATION(a, b) \
685 (XSETPSEUDOVECTOR (a, b, PVEC_WINDOW_CONFIGURATION))
686 #define XSETPROCESS(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_PROCESS))
687 #define XSETWINDOW(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_WINDOW))
688 #define XSETTERMINAL(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_TERMINAL))
689 /* XSETSUBR is special since Lisp_Subr lacks struct vectorlike_header. */
690 #define XSETSUBR(a, b) \
691 XSETTYPED_PSEUDOVECTOR (a, b, XSUBR (a)->size, PVEC_SUBR)
692 #define XSETCOMPILED(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_COMPILED))
693 #define XSETBUFFER(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_BUFFER))
694 #define XSETCHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_CHAR_TABLE))
695 #define XSETBOOL_VECTOR(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_BOOL_VECTOR))
696 #define XSETSUB_CHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_SUB_CHAR_TABLE))
697
698 /* Convenience macros for dealing with Lisp arrays. */
699
700 #define AREF(ARRAY, IDX) XVECTOR ((ARRAY))->contents[IDX]
701 #define ASIZE(ARRAY) XVECTOR ((ARRAY))->header.size
702 /* The IDX==IDX tries to detect when the macro argument is side-effecting. */
703 #define ASET(ARRAY, IDX, VAL) \
704 (eassert ((IDX) == (IDX)), \
705 eassert ((IDX) >= 0 && (IDX) < ASIZE (ARRAY)), \
706 AREF ((ARRAY), (IDX)) = (VAL))
707
708 /* Convenience macros for dealing with Lisp strings. */
709
710 #define SDATA(string) (XSTRING (string)->data + 0)
711 #define SREF(string, index) (SDATA (string)[index] + 0)
712 #define SSET(string, index, new) (SDATA (string)[index] = (new))
713 #define SCHARS(string) (XSTRING (string)->size + 0)
714 #define SBYTES(string) (STRING_BYTES (XSTRING (string)) + 0)
715
716 /* Avoid "differ in sign" warnings. */
717 #define SSDATA(x) ((char *) SDATA (x))
718
719 #define STRING_SET_CHARS(string, newsize) \
720 (XSTRING (string)->size = (newsize))
721
722 #define STRING_COPYIN(string, index, new, count) \
723 memcpy (SDATA (string) + index, new, count)
724
725 /* Type checking. */
726
727 #define CHECK_TYPE(ok, Qxxxp, x) \
728 do { if (!(ok)) wrong_type_argument (Qxxxp, (x)); } while (0)
729
730
731 \f
732 /* See the macros in intervals.h. */
733
734 typedef struct interval *INTERVAL;
735
736 /* Complain if object is not string or buffer type */
737 #define CHECK_STRING_OR_BUFFER(x) \
738 CHECK_TYPE (STRINGP (x) || BUFFERP (x), Qbuffer_or_string_p, x)
739
740 \f
741 /* In a cons, the markbit of the car is the gc mark bit */
742
743 struct Lisp_Cons
744 {
745 /* Please do not use the names of these elements in code other
746 than the core lisp implementation. Use XCAR and XCDR below. */
747 #ifdef HIDE_LISP_IMPLEMENTATION
748 Lisp_Object car_;
749 union
750 {
751 Lisp_Object cdr_;
752 struct Lisp_Cons *chain;
753 } u;
754 #else
755 Lisp_Object car;
756 union
757 {
758 Lisp_Object cdr;
759 struct Lisp_Cons *chain;
760 } u;
761 #endif
762 };
763
764 /* Take the car or cdr of something known to be a cons cell. */
765 /* The _AS_LVALUE macros shouldn't be used outside of the minimal set
766 of code that has to know what a cons cell looks like. Other code not
767 part of the basic lisp implementation should assume that the car and cdr
768 fields are not accessible as lvalues. (What if we want to switch to
769 a copying collector someday? Cached cons cell field addresses may be
770 invalidated at arbitrary points.) */
771 #ifdef HIDE_LISP_IMPLEMENTATION
772 #define XCAR_AS_LVALUE(c) (XCONS ((c))->car_)
773 #define XCDR_AS_LVALUE(c) (XCONS ((c))->u.cdr_)
774 #else
775 #define XCAR_AS_LVALUE(c) (XCONS ((c))->car)
776 #define XCDR_AS_LVALUE(c) (XCONS ((c))->u.cdr)
777 #endif
778
779 /* Use these from normal code. */
780 #define XCAR(c) LISP_MAKE_RVALUE (XCAR_AS_LVALUE (c))
781 #define XCDR(c) LISP_MAKE_RVALUE (XCDR_AS_LVALUE (c))
782
783 /* Use these to set the fields of a cons cell.
784
785 Note that both arguments may refer to the same object, so 'n'
786 should not be read after 'c' is first modified. Also, neither
787 argument should be evaluated more than once; side effects are
788 especially common in the second argument. */
789 #define XSETCAR(c,n) (XCAR_AS_LVALUE (c) = (n))
790 #define XSETCDR(c,n) (XCDR_AS_LVALUE (c) = (n))
791
792 /* Take the car or cdr of something whose type is not known. */
793 #define CAR(c) \
794 (CONSP ((c)) ? XCAR ((c)) \
795 : NILP ((c)) ? Qnil \
796 : wrong_type_argument (Qlistp, (c)))
797
798 #define CDR(c) \
799 (CONSP ((c)) ? XCDR ((c)) \
800 : NILP ((c)) ? Qnil \
801 : wrong_type_argument (Qlistp, (c)))
802
803 /* Take the car or cdr of something whose type is not known. */
804 #define CAR_SAFE(c) \
805 (CONSP ((c)) ? XCAR ((c)) : Qnil)
806
807 #define CDR_SAFE(c) \
808 (CONSP ((c)) ? XCDR ((c)) : Qnil)
809
810 /* Nonzero if STR is a multibyte string. */
811 #define STRING_MULTIBYTE(STR) \
812 (XSTRING (STR)->size_byte >= 0)
813
814 /* Return the length in bytes of STR. */
815
816 #ifdef GC_CHECK_STRING_BYTES
817
818 struct Lisp_String;
819 extern ptrdiff_t string_bytes (struct Lisp_String *);
820 #define STRING_BYTES(S) string_bytes ((S))
821
822 #else /* not GC_CHECK_STRING_BYTES */
823
824 #define STRING_BYTES(STR) \
825 ((STR)->size_byte < 0 ? (STR)->size : (STR)->size_byte)
826
827 #endif /* not GC_CHECK_STRING_BYTES */
828
829 /* An upper bound on the number of bytes in a Lisp string, not
830 counting the terminating null. This a tight enough bound to
831 prevent integer overflow errors that would otherwise occur during
832 string size calculations. A string cannot contain more bytes than
833 a fixnum can represent, nor can it be so long that C pointer
834 arithmetic stops working on the string plus its terminating null.
835 Although the actual size limit (see STRING_BYTES_MAX in alloc.c)
836 may be a bit smaller than STRING_BYTES_BOUND, calculating it here
837 would expose alloc.c internal details that we'd rather keep
838 private. The cast to ptrdiff_t ensures that STRING_BYTES_BOUND is
839 signed. */
840 #define STRING_BYTES_BOUND \
841 min (MOST_POSITIVE_FIXNUM, (ptrdiff_t) min (SIZE_MAX, PTRDIFF_MAX) - 1)
842
843 /* Mark STR as a unibyte string. */
844 #define STRING_SET_UNIBYTE(STR) \
845 do { if (EQ (STR, empty_multibyte_string)) \
846 (STR) = empty_unibyte_string; \
847 else XSTRING (STR)->size_byte = -1; } while (0)
848
849 /* Mark STR as a multibyte string. Assure that STR contains only
850 ASCII characters in advance. */
851 #define STRING_SET_MULTIBYTE(STR) \
852 do { if (EQ (STR, empty_unibyte_string)) \
853 (STR) = empty_multibyte_string; \
854 else XSTRING (STR)->size_byte = XSTRING (STR)->size; } while (0)
855
856 /* Get text properties. */
857 #define STRING_INTERVALS(STR) (XSTRING (STR)->intervals + 0)
858
859 /* Set text properties. */
860 #define STRING_SET_INTERVALS(STR, INT) (XSTRING (STR)->intervals = (INT))
861
862 /* In a string or vector, the sign bit of the `size' is the gc mark bit */
863
864 struct Lisp_String
865 {
866 ptrdiff_t size;
867 ptrdiff_t size_byte;
868 INTERVAL intervals; /* text properties in this string */
869 unsigned char *data;
870 };
871
872 /* Header of vector-like objects. This documents the layout constraints on
873 vectors and pseudovectors other than struct Lisp_Subr. It also prevents
874 compilers from being fooled by Emacs's type punning: the XSETPSEUDOVECTOR
875 and PSEUDOVECTORP macros cast their pointers to struct vectorlike_header *,
876 because when two such pointers potentially alias, a compiler won't
877 incorrectly reorder loads and stores to their size fields. See
878 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8546>. */
879 struct vectorlike_header
880 {
881 ptrdiff_t size;
882
883 /* Pointer to the next vector-like object. It is generally a buffer or a
884 Lisp_Vector alias, so for convenience it is a union instead of a
885 pointer: this way, one can write P->next.vector instead of ((struct
886 Lisp_Vector *) P->next). */
887 union {
888 struct buffer *buffer;
889 struct Lisp_Vector *vector;
890 } next;
891 };
892
893 struct Lisp_Vector
894 {
895 struct vectorlike_header header;
896 Lisp_Object contents[1];
897 };
898
899 /* If a struct is made to look like a vector, this macro returns the length
900 of the shortest vector that would hold that struct. */
901 #define VECSIZE(type) ((sizeof (type) \
902 - offsetof (struct Lisp_Vector, contents[0]) \
903 + sizeof (Lisp_Object) - 1) /* round up */ \
904 / sizeof (Lisp_Object))
905
906 /* Like VECSIZE, but used when the pseudo-vector has non-Lisp_Object fields
907 at the end and we need to compute the number of Lisp_Object fields (the
908 ones that the GC needs to trace). */
909 #define PSEUDOVECSIZE(type, nonlispfield) \
910 ((offsetof (type, nonlispfield) - offsetof (struct Lisp_Vector, contents[0])) \
911 / sizeof (Lisp_Object))
912
913 /* A char-table is a kind of vectorlike, with contents are like a
914 vector but with a few other slots. For some purposes, it makes
915 sense to handle a char-table with type struct Lisp_Vector. An
916 element of a char table can be any Lisp objects, but if it is a sub
917 char-table, we treat it a table that contains information of a
918 specific range of characters. A sub char-table has the same
919 structure as a vector. A sub char table appears only in an element
920 of a char-table, and there's no way to access it directly from
921 Emacs Lisp program. */
922
923 /* This is the number of slots that every char table must have. This
924 counts the ordinary slots and the top, defalt, parent, and purpose
925 slots. */
926 #define CHAR_TABLE_STANDARD_SLOTS (VECSIZE (struct Lisp_Char_Table) - 1)
927
928 /* Return the number of "extra" slots in the char table CT. */
929
930 #define CHAR_TABLE_EXTRA_SLOTS(CT) \
931 (((CT)->header.size & PSEUDOVECTOR_SIZE_MASK) - CHAR_TABLE_STANDARD_SLOTS)
932
933 #ifdef __GNUC__
934
935 #define CHAR_TABLE_REF_ASCII(CT, IDX) \
936 ({struct Lisp_Char_Table *_tbl = NULL; \
937 Lisp_Object _val; \
938 do { \
939 _tbl = _tbl ? XCHAR_TABLE (_tbl->parent) : XCHAR_TABLE (CT); \
940 _val = (! SUB_CHAR_TABLE_P (_tbl->ascii) ? _tbl->ascii \
941 : XSUB_CHAR_TABLE (_tbl->ascii)->contents[IDX]); \
942 if (NILP (_val)) \
943 _val = _tbl->defalt; \
944 } while (NILP (_val) && ! NILP (_tbl->parent)); \
945 _val; })
946
947 #else /* not __GNUC__ */
948
949 #define CHAR_TABLE_REF_ASCII(CT, IDX) \
950 (! NILP (XCHAR_TABLE (CT)->ascii) \
951 ? (! SUB_CHAR_TABLE_P (XCHAR_TABLE (CT)->ascii) \
952 ? XCHAR_TABLE (CT)->ascii \
953 : ! NILP (XSUB_CHAR_TABLE (XCHAR_TABLE (CT)->ascii)->contents[IDX]) \
954 ? XSUB_CHAR_TABLE (XCHAR_TABLE (CT)->ascii)->contents[IDX] \
955 : char_table_ref ((CT), (IDX))) \
956 : char_table_ref ((CT), (IDX)))
957
958 #endif /* not __GNUC__ */
959
960 /* Compute A OP B, using the unsigned comparison operator OP. A and B
961 should be integer expressions. This is not the same as
962 mathematical comparison; for example, UNSIGNED_CMP (0, <, -1)
963 returns 1. For efficiency, prefer plain unsigned comparison if A
964 and B's sizes both fit (after integer promotion). */
965 #define UNSIGNED_CMP(a, op, b) \
966 (max (sizeof ((a) + 0), sizeof ((b) + 0)) <= sizeof (unsigned) \
967 ? ((a) + (unsigned) 0) op ((b) + (unsigned) 0) \
968 : ((a) + (uintmax_t) 0) op ((b) + (uintmax_t) 0))
969
970 /* Nonzero iff C is an ASCII character. */
971 #define ASCII_CHAR_P(c) UNSIGNED_CMP (c, <, 0x80)
972
973 /* Almost equivalent to Faref (CT, IDX) with optimization for ASCII
974 characters. Do not check validity of CT. */
975 #define CHAR_TABLE_REF(CT, IDX) \
976 (ASCII_CHAR_P (IDX) ? CHAR_TABLE_REF_ASCII ((CT), (IDX)) \
977 : char_table_ref ((CT), (IDX)))
978
979 /* Almost equivalent to Faref (CT, IDX). However, if the result is
980 not a character, return IDX.
981
982 For these characters, do not check validity of CT
983 and do not follow parent. */
984 #define CHAR_TABLE_TRANSLATE(CT, IDX) \
985 char_table_translate (CT, IDX)
986
987 /* Equivalent to Faset (CT, IDX, VAL) with optimization for ASCII and
988 8-bit European characters. Do not check validity of CT. */
989 #define CHAR_TABLE_SET(CT, IDX, VAL) \
990 (ASCII_CHAR_P (IDX) && SUB_CHAR_TABLE_P (XCHAR_TABLE (CT)->ascii) \
991 ? XSUB_CHAR_TABLE (XCHAR_TABLE (CT)->ascii)->contents[IDX] = VAL \
992 : char_table_set (CT, IDX, VAL))
993
994 #define CHARTAB_SIZE_BITS_0 6
995 #define CHARTAB_SIZE_BITS_1 4
996 #define CHARTAB_SIZE_BITS_2 5
997 #define CHARTAB_SIZE_BITS_3 7
998
999 extern const int chartab_size[4];
1000
1001 struct Lisp_Sub_Char_Table;
1002
1003 struct Lisp_Char_Table
1004 {
1005 /* HEADER.SIZE is the vector's size field, which also holds the
1006 pseudovector type information. It holds the size, too.
1007 The size counts the defalt, parent, purpose, ascii,
1008 contents, and extras slots. */
1009 struct vectorlike_header header;
1010
1011 /* This holds a default value,
1012 which is used whenever the value for a specific character is nil. */
1013 Lisp_Object defalt;
1014
1015 /* This points to another char table, which we inherit from when the
1016 value for a specific character is nil. The `defalt' slot takes
1017 precedence over this. */
1018 Lisp_Object parent;
1019
1020 /* This is a symbol which says what kind of use this char-table is
1021 meant for. */
1022 Lisp_Object purpose;
1023
1024 /* The bottom sub char-table for characters of the range 0..127. It
1025 is nil if none of ASCII character has a specific value. */
1026 Lisp_Object ascii;
1027
1028 Lisp_Object contents[(1 << CHARTAB_SIZE_BITS_0)];
1029
1030 /* These hold additional data. It is a vector. */
1031 Lisp_Object extras[1];
1032 };
1033
1034 struct Lisp_Sub_Char_Table
1035 {
1036 /* HEADER.SIZE is the vector's size field, which also holds the
1037 pseudovector type information. It holds the size, too. */
1038 struct vectorlike_header header;
1039
1040 /* Depth of this sub char-table. It should be 1, 2, or 3. A sub
1041 char-table of depth 1 contains 16 elements, and each element
1042 covers 4096 (128*32) characters. A sub char-table of depth 2
1043 contains 32 elements, and each element covers 128 characters. A
1044 sub char-table of depth 3 contains 128 elements, and each element
1045 is for one character. */
1046 Lisp_Object depth;
1047
1048 /* Minimum character covered by the sub char-table. */
1049 Lisp_Object min_char;
1050
1051 Lisp_Object contents[1];
1052 };
1053
1054 /* A boolvector is a kind of vectorlike, with contents are like a string. */
1055 struct Lisp_Bool_Vector
1056 {
1057 /* HEADER.SIZE is the vector's size field. It doesn't have the real size,
1058 just the subtype information. */
1059 struct vectorlike_header header;
1060 /* This is the size in bits. */
1061 EMACS_INT size;
1062 /* This contains the actual bits, packed into bytes. */
1063 unsigned char data[1];
1064 };
1065
1066 /* This structure describes a built-in function.
1067 It is generated by the DEFUN macro only.
1068 defsubr makes it into a Lisp object.
1069
1070 This type is treated in most respects as a pseudovector,
1071 but since we never dynamically allocate or free them,
1072 we don't need a struct vectorlike_header and its 'next' field. */
1073
1074 struct Lisp_Subr
1075 {
1076 ptrdiff_t size;
1077 union {
1078 Lisp_Object (*a0) (void);
1079 Lisp_Object (*a1) (Lisp_Object);
1080 Lisp_Object (*a2) (Lisp_Object, Lisp_Object);
1081 Lisp_Object (*a3) (Lisp_Object, Lisp_Object, Lisp_Object);
1082 Lisp_Object (*a4) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
1083 Lisp_Object (*a5) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
1084 Lisp_Object (*a6) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
1085 Lisp_Object (*a7) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
1086 Lisp_Object (*a8) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
1087 Lisp_Object (*aUNEVALLED) (Lisp_Object args);
1088 Lisp_Object (*aMANY) (ptrdiff_t, Lisp_Object *);
1089 } function;
1090 short min_args, max_args;
1091 const char *symbol_name;
1092 const char *intspec;
1093 const char *doc;
1094 };
1095
1096 \f
1097 /***********************************************************************
1098 Symbols
1099 ***********************************************************************/
1100
1101 /* Interned state of a symbol. */
1102
1103 enum symbol_interned
1104 {
1105 SYMBOL_UNINTERNED = 0,
1106 SYMBOL_INTERNED = 1,
1107 SYMBOL_INTERNED_IN_INITIAL_OBARRAY = 2
1108 };
1109
1110 enum symbol_redirect
1111 {
1112 SYMBOL_PLAINVAL = 4,
1113 SYMBOL_VARALIAS = 1,
1114 SYMBOL_LOCALIZED = 2,
1115 SYMBOL_FORWARDED = 3
1116 };
1117
1118 struct Lisp_Symbol
1119 {
1120 unsigned gcmarkbit : 1;
1121
1122 /* Indicates where the value can be found:
1123 0 : it's a plain var, the value is in the `value' field.
1124 1 : it's a varalias, the value is really in the `alias' symbol.
1125 2 : it's a localized var, the value is in the `blv' object.
1126 3 : it's a forwarding variable, the value is in `forward'. */
1127 ENUM_BF (symbol_redirect) redirect : 3;
1128
1129 /* Non-zero means symbol is constant, i.e. changing its value
1130 should signal an error. If the value is 3, then the var
1131 can be changed, but only by `defconst'. */
1132 unsigned constant : 2;
1133
1134 /* Interned state of the symbol. This is an enumerator from
1135 enum symbol_interned. */
1136 unsigned interned : 2;
1137
1138 /* Non-zero means that this variable has been explicitly declared
1139 special (with `defvar' etc), and shouldn't be lexically bound. */
1140 unsigned declared_special : 1;
1141
1142 /* The symbol's name, as a Lisp string.
1143 The name "xname" is used to intentionally break code referring to
1144 the old field "name" of type pointer to struct Lisp_String. */
1145 Lisp_Object xname;
1146
1147 /* Value of the symbol or Qunbound if unbound. Which alternative of the
1148 union is used depends on the `redirect' field above. */
1149 union {
1150 Lisp_Object value;
1151 struct Lisp_Symbol *alias;
1152 struct Lisp_Buffer_Local_Value *blv;
1153 union Lisp_Fwd *fwd;
1154 } val;
1155
1156 /* Function value of the symbol or Qunbound if not fboundp. */
1157 Lisp_Object function;
1158
1159 /* The symbol's property list. */
1160 Lisp_Object plist;
1161
1162 /* Next symbol in obarray bucket, if the symbol is interned. */
1163 struct Lisp_Symbol *next;
1164 };
1165
1166 /* Value is name of symbol. */
1167
1168 #define SYMBOL_VAL(sym) \
1169 (eassert ((sym)->redirect == SYMBOL_PLAINVAL), (sym)->val.value)
1170 #define SYMBOL_ALIAS(sym) \
1171 (eassert ((sym)->redirect == SYMBOL_VARALIAS), (sym)->val.alias)
1172 #define SYMBOL_BLV(sym) \
1173 (eassert ((sym)->redirect == SYMBOL_LOCALIZED), (sym)->val.blv)
1174 #define SYMBOL_FWD(sym) \
1175 (eassert ((sym)->redirect == SYMBOL_FORWARDED), (sym)->val.fwd)
1176 #define SET_SYMBOL_VAL(sym, v) \
1177 (eassert ((sym)->redirect == SYMBOL_PLAINVAL), (sym)->val.value = (v))
1178 #define SET_SYMBOL_ALIAS(sym, v) \
1179 (eassert ((sym)->redirect == SYMBOL_VARALIAS), (sym)->val.alias = (v))
1180 #define SET_SYMBOL_BLV(sym, v) \
1181 (eassert ((sym)->redirect == SYMBOL_LOCALIZED), (sym)->val.blv = (v))
1182 #define SET_SYMBOL_FWD(sym, v) \
1183 (eassert ((sym)->redirect == SYMBOL_FORWARDED), (sym)->val.fwd = (v))
1184
1185 #define SYMBOL_NAME(sym) \
1186 LISP_MAKE_RVALUE (XSYMBOL (sym)->xname)
1187
1188 /* Value is non-zero if SYM is an interned symbol. */
1189
1190 #define SYMBOL_INTERNED_P(sym) \
1191 (XSYMBOL (sym)->interned != SYMBOL_UNINTERNED)
1192
1193 /* Value is non-zero if SYM is interned in initial_obarray. */
1194
1195 #define SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P(sym) \
1196 (XSYMBOL (sym)->interned == SYMBOL_INTERNED_IN_INITIAL_OBARRAY)
1197
1198 /* Value is non-zero if symbol is considered a constant, i.e. its
1199 value cannot be changed (there is an exception for keyword symbols,
1200 whose value can be set to the keyword symbol itself). */
1201
1202 #define SYMBOL_CONSTANT_P(sym) XSYMBOL (sym)->constant
1203
1204 #define DEFSYM(sym, name) \
1205 do { (sym) = intern_c_string ((name)); staticpro (&(sym)); } while (0)
1206
1207 \f
1208 /***********************************************************************
1209 Hash Tables
1210 ***********************************************************************/
1211
1212 /* The structure of a Lisp hash table. */
1213
1214 struct Lisp_Hash_Table
1215 {
1216 /* This is for Lisp; the hash table code does not refer to it. */
1217 struct vectorlike_header header;
1218
1219 /* Function used to compare keys. */
1220 Lisp_Object test;
1221
1222 /* Nil if table is non-weak. Otherwise a symbol describing the
1223 weakness of the table. */
1224 Lisp_Object weak;
1225
1226 /* When the table is resized, and this is an integer, compute the
1227 new size by adding this to the old size. If a float, compute the
1228 new size by multiplying the old size with this factor. */
1229 Lisp_Object rehash_size;
1230
1231 /* Resize hash table when number of entries/ table size is >= this
1232 ratio, a float. */
1233 Lisp_Object rehash_threshold;
1234
1235 /* Vector of hash codes.. If hash[I] is nil, this means that that
1236 entry I is unused. */
1237 Lisp_Object hash;
1238
1239 /* Vector used to chain entries. If entry I is free, next[I] is the
1240 entry number of the next free item. If entry I is non-free,
1241 next[I] is the index of the next entry in the collision chain. */
1242 Lisp_Object next;
1243
1244 /* Index of first free entry in free list. */
1245 Lisp_Object next_free;
1246
1247 /* Bucket vector. A non-nil entry is the index of the first item in
1248 a collision chain. This vector's size can be larger than the
1249 hash table size to reduce collisions. */
1250 Lisp_Object index;
1251
1252 /* User-supplied hash function, or nil. */
1253 Lisp_Object user_hash_function;
1254
1255 /* User-supplied key comparison function, or nil. */
1256 Lisp_Object user_cmp_function;
1257
1258 /* Only the fields above are traced normally by the GC. The ones below
1259 `count' are special and are either ignored by the GC or traced in
1260 a special way (e.g. because of weakness). */
1261
1262 /* Number of key/value entries in the table. */
1263 ptrdiff_t count;
1264
1265 /* Vector of keys and values. The key of item I is found at index
1266 2 * I, the value is found at index 2 * I + 1.
1267 This is gc_marked specially if the table is weak. */
1268 Lisp_Object key_and_value;
1269
1270 /* Next weak hash table if this is a weak hash table. The head
1271 of the list is in weak_hash_tables. */
1272 struct Lisp_Hash_Table *next_weak;
1273
1274 /* C function to compare two keys. */
1275 int (*cmpfn) (struct Lisp_Hash_Table *,
1276 Lisp_Object, EMACS_UINT,
1277 Lisp_Object, EMACS_UINT);
1278
1279 /* C function to compute hash code. */
1280 EMACS_UINT (*hashfn) (struct Lisp_Hash_Table *, Lisp_Object);
1281 };
1282
1283
1284 #define XHASH_TABLE(OBJ) \
1285 ((struct Lisp_Hash_Table *) XPNTR (OBJ))
1286
1287 #define XSET_HASH_TABLE(VAR, PTR) \
1288 (XSETPSEUDOVECTOR (VAR, PTR, PVEC_HASH_TABLE))
1289
1290 #define HASH_TABLE_P(OBJ) PSEUDOVECTORP (OBJ, PVEC_HASH_TABLE)
1291
1292 #define CHECK_HASH_TABLE(x) \
1293 CHECK_TYPE (HASH_TABLE_P (x), Qhash_table_p, x)
1294
1295 /* Value is the key part of entry IDX in hash table H. */
1296
1297 #define HASH_KEY(H, IDX) AREF ((H)->key_and_value, 2 * (IDX))
1298
1299 /* Value is the value part of entry IDX in hash table H. */
1300
1301 #define HASH_VALUE(H, IDX) AREF ((H)->key_and_value, 2 * (IDX) + 1)
1302
1303 /* Value is the index of the next entry following the one at IDX
1304 in hash table H. */
1305
1306 #define HASH_NEXT(H, IDX) AREF ((H)->next, (IDX))
1307
1308 /* Value is the hash code computed for entry IDX in hash table H. */
1309
1310 #define HASH_HASH(H, IDX) AREF ((H)->hash, (IDX))
1311
1312 /* Value is the index of the element in hash table H that is the
1313 start of the collision list at index IDX in the index vector of H. */
1314
1315 #define HASH_INDEX(H, IDX) AREF ((H)->index, (IDX))
1316
1317 /* Value is the size of hash table H. */
1318
1319 #define HASH_TABLE_SIZE(H) ASIZE ((H)->next)
1320
1321 /* Default size for hash tables if not specified. */
1322
1323 #define DEFAULT_HASH_SIZE 65
1324
1325 /* Default threshold specifying when to resize a hash table. The
1326 value gives the ratio of current entries in the hash table and the
1327 size of the hash table. */
1328
1329 #define DEFAULT_REHASH_THRESHOLD 0.8
1330
1331 /* Default factor by which to increase the size of a hash table. */
1332
1333 #define DEFAULT_REHASH_SIZE 1.5
1334
1335 \f
1336 /* These structures are used for various misc types. */
1337
1338 struct Lisp_Misc_Any /* Supertype of all Misc types. */
1339 {
1340 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_??? */
1341 unsigned gcmarkbit : 1;
1342 int spacer : 15;
1343 };
1344
1345 struct Lisp_Marker
1346 {
1347 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_Marker */
1348 unsigned gcmarkbit : 1;
1349 int spacer : 13;
1350 /* This flag is temporarily used in the functions
1351 decode/encode_coding_object to record that the marker position
1352 must be adjusted after the conversion. */
1353 unsigned int need_adjustment : 1;
1354 /* 1 means normal insertion at the marker's position
1355 leaves the marker after the inserted text. */
1356 unsigned int insertion_type : 1;
1357 /* This is the buffer that the marker points into, or 0 if it points nowhere.
1358 Note: a chain of markers can contain markers pointing into different
1359 buffers (the chain is per buffer_text rather than per buffer, so it's
1360 shared between indirect buffers). */
1361 /* This is used for (other than NULL-checking):
1362 - Fmarker_buffer
1363 - Fset_marker: check eq(oldbuf, newbuf) to avoid unchain+rechain.
1364 - unchain_marker: to find the list from which to unchain.
1365 - Fkill_buffer: to only unchain the markers of current indirect buffer.
1366 */
1367 struct buffer *buffer;
1368
1369 /* The remaining fields are meaningless in a marker that
1370 does not point anywhere. */
1371
1372 /* For markers that point somewhere,
1373 this is used to chain of all the markers in a given buffer. */
1374 /* We could remove it and use an array in buffer_text instead.
1375 That would also allow to preserve it ordered. */
1376 struct Lisp_Marker *next;
1377 /* This is the char position where the marker points. */
1378 ptrdiff_t charpos;
1379 /* This is the byte position.
1380 It's mostly used as a charpos<->bytepos cache (i.e. it's not directly
1381 used to implement the functionality of markers, but rather to (ab)use
1382 markers as a cache for char<->byte mappings). */
1383 ptrdiff_t bytepos;
1384 };
1385
1386 /* Forwarding pointer to an int variable.
1387 This is allowed only in the value cell of a symbol,
1388 and it means that the symbol's value really lives in the
1389 specified int variable. */
1390 struct Lisp_Intfwd
1391 {
1392 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Int */
1393 EMACS_INT *intvar;
1394 };
1395
1396 /* Boolean forwarding pointer to an int variable.
1397 This is like Lisp_Intfwd except that the ostensible
1398 "value" of the symbol is t if the int variable is nonzero,
1399 nil if it is zero. */
1400 struct Lisp_Boolfwd
1401 {
1402 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Bool */
1403 int *boolvar;
1404 };
1405
1406 /* Forwarding pointer to a Lisp_Object variable.
1407 This is allowed only in the value cell of a symbol,
1408 and it means that the symbol's value really lives in the
1409 specified variable. */
1410 struct Lisp_Objfwd
1411 {
1412 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Obj */
1413 Lisp_Object *objvar;
1414 };
1415
1416 /* Like Lisp_Objfwd except that value lives in a slot in the
1417 current buffer. Value is byte index of slot within buffer. */
1418 struct Lisp_Buffer_Objfwd
1419 {
1420 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Buffer_Obj */
1421 int offset;
1422 Lisp_Object slottype; /* Qnil, Lisp_Int, Lisp_Symbol, or Lisp_String. */
1423 };
1424
1425 /* struct Lisp_Buffer_Local_Value is used in a symbol value cell when
1426 the symbol has buffer-local or frame-local bindings. (Exception:
1427 some buffer-local variables are built-in, with their values stored
1428 in the buffer structure itself. They are handled differently,
1429 using struct Lisp_Buffer_Objfwd.)
1430
1431 The `realvalue' slot holds the variable's current value, or a
1432 forwarding pointer to where that value is kept. This value is the
1433 one that corresponds to the loaded binding. To read or set the
1434 variable, you must first make sure the right binding is loaded;
1435 then you can access the value in (or through) `realvalue'.
1436
1437 `buffer' and `frame' are the buffer and frame for which the loaded
1438 binding was found. If those have changed, to make sure the right
1439 binding is loaded it is necessary to find which binding goes with
1440 the current buffer and selected frame, then load it. To load it,
1441 first unload the previous binding, then copy the value of the new
1442 binding into `realvalue' (or through it). Also update
1443 LOADED-BINDING to point to the newly loaded binding.
1444
1445 `local_if_set' indicates that merely setting the variable creates a
1446 local binding for the current buffer. Otherwise the latter, setting
1447 the variable does not do that; only make-local-variable does that. */
1448
1449 struct Lisp_Buffer_Local_Value
1450 {
1451 /* 1 means that merely setting the variable creates a local
1452 binding for the current buffer */
1453 unsigned int local_if_set : 1;
1454 /* 1 means this variable can have frame-local bindings, otherwise, it is
1455 can have buffer-local bindings. The two cannot be combined. */
1456 unsigned int frame_local : 1;
1457 /* 1 means that the binding now loaded was found.
1458 Presumably equivalent to (defcell!=valcell) */
1459 unsigned int found : 1;
1460 /* If non-NULL, a forwarding to the C var where it should also be set. */
1461 union Lisp_Fwd *fwd; /* Should never be (Buffer|Kboard)_Objfwd. */
1462 /* The buffer or frame for which the loaded binding was found. */
1463 Lisp_Object where;
1464 /* A cons cell that holds the default value. It has the form
1465 (SYMBOL . DEFAULT-VALUE). */
1466 Lisp_Object defcell;
1467 /* The cons cell from `where's parameter alist.
1468 It always has the form (SYMBOL . VALUE)
1469 Note that if `forward' is non-nil, VALUE may be out of date.
1470 Also if the currently loaded binding is the default binding, then
1471 this is `eq'ual to defcell. */
1472 Lisp_Object valcell;
1473 };
1474
1475 #define BLV_FOUND(blv) \
1476 (eassert ((blv)->found == !EQ ((blv)->defcell, (blv)->valcell)), (blv)->found)
1477 #define SET_BLV_FOUND(blv, v) \
1478 (eassert ((v) == !EQ ((blv)->defcell, (blv)->valcell)), (blv)->found = (v))
1479
1480 #define BLV_VALUE(blv) (XCDR ((blv)->valcell))
1481 #define SET_BLV_VALUE(blv, v) (XSETCDR ((blv)->valcell, v))
1482
1483 /* START and END are markers in the overlay's buffer, and
1484 PLIST is the overlay's property list. */
1485 struct Lisp_Overlay
1486 /* An overlay's real data content is:
1487 - plist
1488 - buffer
1489 - insertion type of both ends
1490 - start & start_byte
1491 - end & end_byte
1492 - next (singly linked list of overlays).
1493 - start_next and end_next (singly linked list of markers).
1494 I.e. 9words plus 2 bits, 3words of which are for external linked lists.
1495 */
1496 {
1497 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_Overlay */
1498 unsigned gcmarkbit : 1;
1499 int spacer : 15;
1500 struct Lisp_Overlay *next;
1501 Lisp_Object start, end, plist;
1502 };
1503
1504 /* Like Lisp_Objfwd except that value lives in a slot in the
1505 current kboard. */
1506 struct Lisp_Kboard_Objfwd
1507 {
1508 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Kboard_Obj */
1509 int offset;
1510 };
1511
1512 /* Hold a C pointer for later use.
1513 This type of object is used in the arg to record_unwind_protect. */
1514 struct Lisp_Save_Value
1515 {
1516 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_Save_Value */
1517 unsigned gcmarkbit : 1;
1518 int spacer : 14;
1519 /* If DOGC is set, POINTER is the address of a memory
1520 area containing INTEGER potential Lisp_Objects. */
1521 unsigned int dogc : 1;
1522 void *pointer;
1523 ptrdiff_t integer;
1524 };
1525
1526
1527 /* A miscellaneous object, when it's on the free list. */
1528 struct Lisp_Free
1529 {
1530 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_Free */
1531 unsigned gcmarkbit : 1;
1532 int spacer : 15;
1533 union Lisp_Misc *chain;
1534 };
1535
1536 /* To get the type field of a union Lisp_Misc, use XMISCTYPE.
1537 It uses one of these struct subtypes to get the type field. */
1538
1539 union Lisp_Misc
1540 {
1541 struct Lisp_Misc_Any u_any; /* Supertype of all Misc types. */
1542 struct Lisp_Free u_free;
1543 struct Lisp_Marker u_marker;
1544 struct Lisp_Overlay u_overlay;
1545 struct Lisp_Save_Value u_save_value;
1546 };
1547
1548 union Lisp_Fwd
1549 {
1550 struct Lisp_Intfwd u_intfwd;
1551 struct Lisp_Boolfwd u_boolfwd;
1552 struct Lisp_Objfwd u_objfwd;
1553 struct Lisp_Buffer_Objfwd u_buffer_objfwd;
1554 struct Lisp_Kboard_Objfwd u_kboard_objfwd;
1555 };
1556 \f
1557 /* Lisp floating point type */
1558 struct Lisp_Float
1559 {
1560 union
1561 {
1562 #ifdef HIDE_LISP_IMPLEMENTATION
1563 double data_;
1564 #else
1565 double data;
1566 #endif
1567 struct Lisp_Float *chain;
1568 } u;
1569 };
1570
1571 #ifdef HIDE_LISP_IMPLEMENTATION
1572 #define XFLOAT_DATA(f) (0 ? XFLOAT (f)->u.data_ : XFLOAT (f)->u.data_)
1573 #else
1574 #define XFLOAT_DATA(f) (0 ? XFLOAT (f)->u.data : XFLOAT (f)->u.data)
1575 /* This should be used only in alloc.c, which always disables
1576 HIDE_LISP_IMPLEMENTATION. */
1577 #define XFLOAT_INIT(f,n) (XFLOAT (f)->u.data = (n))
1578 #endif
1579
1580 /* A character, declared with the following typedef, is a member
1581 of some character set associated with the current buffer. */
1582 #ifndef _UCHAR_T /* Protect against something in ctab.h on AIX. */
1583 #define _UCHAR_T
1584 typedef unsigned char UCHAR;
1585 #endif
1586
1587 /* Meanings of slots in a Lisp_Compiled: */
1588
1589 #define COMPILED_ARGLIST 0
1590 #define COMPILED_BYTECODE 1
1591 #define COMPILED_CONSTANTS 2
1592 #define COMPILED_STACK_DEPTH 3
1593 #define COMPILED_DOC_STRING 4
1594 #define COMPILED_INTERACTIVE 5
1595
1596 /* Flag bits in a character. These also get used in termhooks.h.
1597 Richard Stallman <rms@gnu.ai.mit.edu> thinks that MULE
1598 (MUlti-Lingual Emacs) might need 22 bits for the character value
1599 itself, so we probably shouldn't use any bits lower than 0x0400000. */
1600 #define CHAR_ALT (0x0400000)
1601 #define CHAR_SUPER (0x0800000)
1602 #define CHAR_HYPER (0x1000000)
1603 #define CHAR_SHIFT (0x2000000)
1604 #define CHAR_CTL (0x4000000)
1605 #define CHAR_META (0x8000000)
1606
1607 #define CHAR_MODIFIER_MASK \
1608 (CHAR_ALT | CHAR_SUPER | CHAR_HYPER | CHAR_SHIFT | CHAR_CTL | CHAR_META)
1609
1610
1611 /* Actually, the current Emacs uses 22 bits for the character value
1612 itself. */
1613 #define CHARACTERBITS 22
1614
1615 \f
1616 /* The glyph datatype, used to represent characters on the display.
1617 It consists of a char code and a face id. */
1618
1619 typedef struct {
1620 int ch;
1621 int face_id;
1622 } GLYPH;
1623
1624 /* Return a glyph's character code. */
1625 #define GLYPH_CHAR(glyph) ((glyph).ch)
1626
1627 /* Return a glyph's face ID. */
1628 #define GLYPH_FACE(glyph) ((glyph).face_id)
1629
1630 #define SET_GLYPH_CHAR(glyph, char) ((glyph).ch = (char))
1631 #define SET_GLYPH_FACE(glyph, face) ((glyph).face_id = (face))
1632 #define SET_GLYPH(glyph, char, face) ((glyph).ch = (char), (glyph).face_id = (face))
1633
1634 /* Return 1 if GLYPH contains valid character code. */
1635 #define GLYPH_CHAR_VALID_P(glyph) CHAR_VALID_P (GLYPH_CHAR (glyph))
1636
1637
1638 /* Glyph Code from a display vector may either be an integer which
1639 encodes a char code in the lower CHARACTERBITS bits and a (very small)
1640 face-id in the upper bits, or it may be a cons (CHAR . FACE-ID). */
1641
1642 #define GLYPH_CODE_P(gc) \
1643 (CONSP (gc) \
1644 ? (CHARACTERP (XCAR (gc)) \
1645 && RANGED_INTEGERP (0, XCDR (gc), MAX_FACE_ID)) \
1646 : (RANGED_INTEGERP \
1647 (0, gc, \
1648 (MAX_FACE_ID < TYPE_MAXIMUM (EMACS_INT) >> CHARACTERBITS \
1649 ? ((EMACS_INT) MAX_FACE_ID << CHARACTERBITS) | MAX_CHAR \
1650 : TYPE_MAXIMUM (EMACS_INT)))))
1651
1652 /* The following are valid only if GLYPH_CODE_P (gc). */
1653
1654 #define GLYPH_CODE_CHAR(gc) \
1655 (CONSP (gc) ? XINT (XCAR (gc)) : XINT (gc) & ((1 << CHARACTERBITS) - 1))
1656
1657 #define GLYPH_CODE_FACE(gc) \
1658 (CONSP (gc) ? XINT (XCDR (gc)) : XINT (gc) >> CHARACTERBITS)
1659
1660 #define SET_GLYPH_FROM_GLYPH_CODE(glyph, gc) \
1661 do \
1662 { \
1663 if (CONSP (gc)) \
1664 SET_GLYPH (glyph, XINT (XCAR (gc)), XINT (XCDR (gc))); \
1665 else \
1666 SET_GLYPH (glyph, (XINT (gc) & ((1 << CHARACTERBITS)-1)), \
1667 (XINT (gc) >> CHARACTERBITS)); \
1668 } \
1669 while (0)
1670
1671 /* The ID of the mode line highlighting face. */
1672 #define GLYPH_MODE_LINE_FACE 1
1673 \f
1674 /* Structure to hold mouse highlight data. This is here because other
1675 header files need it for defining struct x_output etc. */
1676 typedef struct {
1677 /* These variables describe the range of text currently shown in its
1678 mouse-face, together with the window they apply to. As long as
1679 the mouse stays within this range, we need not redraw anything on
1680 its account. Rows and columns are glyph matrix positions in
1681 MOUSE_FACE_WINDOW. */
1682 int mouse_face_beg_row, mouse_face_beg_col;
1683 int mouse_face_beg_x, mouse_face_beg_y;
1684 int mouse_face_end_row, mouse_face_end_col;
1685 int mouse_face_end_x, mouse_face_end_y;
1686 int mouse_face_past_end;
1687 Lisp_Object mouse_face_window;
1688 int mouse_face_face_id;
1689 Lisp_Object mouse_face_overlay;
1690
1691 /* 1 if a mouse motion event came and we didn't handle it right away because
1692 gc was in progress. */
1693 int mouse_face_deferred_gc;
1694
1695 /* FRAME and X, Y position of mouse when last checked for
1696 highlighting. X and Y can be negative or out of range for the frame. */
1697 struct frame *mouse_face_mouse_frame;
1698 int mouse_face_mouse_x, mouse_face_mouse_y;
1699
1700 /* Nonzero means defer mouse-motion highlighting. */
1701 int mouse_face_defer;
1702
1703 /* Nonzero means that the mouse highlight should not be shown. */
1704 int mouse_face_hidden;
1705
1706 int mouse_face_image_state;
1707 } Mouse_HLInfo;
1708 \f
1709 /* Data type checking */
1710
1711 #define NILP(x) EQ (x, Qnil)
1712
1713 #define NUMBERP(x) (INTEGERP (x) || FLOATP (x))
1714 #define NATNUMP(x) (INTEGERP (x) && XINT (x) >= 0)
1715
1716 #define RANGED_INTEGERP(lo, x, hi) \
1717 (INTEGERP (x) && (lo) <= XINT (x) && XINT (x) <= (hi))
1718 #define TYPE_RANGED_INTEGERP(type, x) \
1719 (TYPE_SIGNED (type) \
1720 ? RANGED_INTEGERP (TYPE_MINIMUM (type), x, TYPE_MAXIMUM (type)) \
1721 : RANGED_INTEGERP (0, x, TYPE_MAXIMUM (type)))
1722
1723 #define INTEGERP(x) (LISP_INT_TAG_P (XTYPE ((x))))
1724 #define SYMBOLP(x) (XTYPE ((x)) == Lisp_Symbol)
1725 #define MISCP(x) (XTYPE ((x)) == Lisp_Misc)
1726 #define VECTORLIKEP(x) (XTYPE ((x)) == Lisp_Vectorlike)
1727 #define STRINGP(x) (XTYPE ((x)) == Lisp_String)
1728 #define CONSP(x) (XTYPE ((x)) == Lisp_Cons)
1729
1730 #define FLOATP(x) (XTYPE ((x)) == Lisp_Float)
1731 #define VECTORP(x) (VECTORLIKEP (x) && !(ASIZE (x) & PSEUDOVECTOR_FLAG))
1732 #define OVERLAYP(x) (MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Overlay)
1733 #define MARKERP(x) (MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Marker)
1734 #define SAVE_VALUEP(x) (MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Save_Value)
1735
1736 #define INTFWDP(x) (XFWDTYPE (x) == Lisp_Fwd_Int)
1737 #define BOOLFWDP(x) (XFWDTYPE (x) == Lisp_Fwd_Bool)
1738 #define OBJFWDP(x) (XFWDTYPE (x) == Lisp_Fwd_Obj)
1739 #define BUFFER_OBJFWDP(x) (XFWDTYPE (x) == Lisp_Fwd_Buffer_Obj)
1740 #define KBOARD_OBJFWDP(x) (XFWDTYPE (x) == Lisp_Fwd_Kboard_Obj)
1741
1742 /* True if object X is a pseudovector whose code is CODE. The cast to struct
1743 vectorlike_header * avoids aliasing issues. */
1744 #define PSEUDOVECTORP(x, code) \
1745 TYPED_PSEUDOVECTORP(x, vectorlike_header, code)
1746
1747 /* True if object X, with internal type struct T *, is a pseudovector whose
1748 code is CODE. */
1749 #define TYPED_PSEUDOVECTORP(x, t, code) \
1750 (VECTORLIKEP (x) \
1751 && (((((struct t *) XPNTR (x))->size \
1752 & (PSEUDOVECTOR_FLAG | (code)))) \
1753 == (PSEUDOVECTOR_FLAG | (code))))
1754
1755 /* Test for specific pseudovector types. */
1756 #define WINDOW_CONFIGURATIONP(x) PSEUDOVECTORP (x, PVEC_WINDOW_CONFIGURATION)
1757 #define PROCESSP(x) PSEUDOVECTORP (x, PVEC_PROCESS)
1758 #define WINDOWP(x) PSEUDOVECTORP (x, PVEC_WINDOW)
1759 #define TERMINALP(x) PSEUDOVECTORP (x, PVEC_TERMINAL)
1760 /* SUBRP is special since Lisp_Subr lacks struct vectorlike_header. */
1761 #define SUBRP(x) TYPED_PSEUDOVECTORP (x, Lisp_Subr, PVEC_SUBR)
1762 #define COMPILEDP(x) PSEUDOVECTORP (x, PVEC_COMPILED)
1763 #define BUFFERP(x) PSEUDOVECTORP (x, PVEC_BUFFER)
1764 #define CHAR_TABLE_P(x) PSEUDOVECTORP (x, PVEC_CHAR_TABLE)
1765 #define SUB_CHAR_TABLE_P(x) PSEUDOVECTORP (x, PVEC_SUB_CHAR_TABLE)
1766 #define BOOL_VECTOR_P(x) PSEUDOVECTORP (x, PVEC_BOOL_VECTOR)
1767 #define FRAMEP(x) PSEUDOVECTORP (x, PVEC_FRAME)
1768
1769 /* Test for image (image . spec) */
1770 #define IMAGEP(x) (CONSP (x) && EQ (XCAR (x), Qimage))
1771
1772 /* Array types. */
1773
1774 #define ARRAYP(x) \
1775 (VECTORP (x) || STRINGP (x) || CHAR_TABLE_P (x) || BOOL_VECTOR_P (x))
1776 \f
1777 #define CHECK_LIST(x) \
1778 CHECK_TYPE (CONSP (x) || NILP (x), Qlistp, x)
1779
1780 #define CHECK_LIST_CONS(x, y) \
1781 CHECK_TYPE (CONSP (x), Qlistp, y)
1782
1783 #define CHECK_LIST_END(x, y) \
1784 CHECK_TYPE (NILP (x), Qlistp, y)
1785
1786 #define CHECK_STRING(x) \
1787 CHECK_TYPE (STRINGP (x), Qstringp, x)
1788
1789 #define CHECK_STRING_CAR(x) \
1790 CHECK_TYPE (STRINGP (XCAR (x)), Qstringp, XCAR (x))
1791
1792 #define CHECK_CONS(x) \
1793 CHECK_TYPE (CONSP (x), Qconsp, x)
1794
1795 #define CHECK_SYMBOL(x) \
1796 CHECK_TYPE (SYMBOLP (x), Qsymbolp, x)
1797
1798 #define CHECK_CHAR_TABLE(x) \
1799 CHECK_TYPE (CHAR_TABLE_P (x), Qchar_table_p, x)
1800
1801 #define CHECK_VECTOR(x) \
1802 CHECK_TYPE (VECTORP (x), Qvectorp, x)
1803
1804 #define CHECK_VECTOR_OR_STRING(x) \
1805 CHECK_TYPE (VECTORP (x) || STRINGP (x), Qarrayp, x)
1806
1807 #define CHECK_ARRAY(x, Qxxxp) \
1808 CHECK_TYPE (ARRAYP (x), Qxxxp, x)
1809
1810 #define CHECK_VECTOR_OR_CHAR_TABLE(x) \
1811 CHECK_TYPE (VECTORP (x) || CHAR_TABLE_P (x), Qvector_or_char_table_p, x)
1812
1813 #define CHECK_BUFFER(x) \
1814 CHECK_TYPE (BUFFERP (x), Qbufferp, x)
1815
1816 #define CHECK_WINDOW(x) \
1817 CHECK_TYPE (WINDOWP (x), Qwindowp, x)
1818
1819 #define CHECK_WINDOW_CONFIGURATION(x) \
1820 CHECK_TYPE (WINDOW_CONFIGURATIONP (x), Qwindow_configuration_p, x)
1821
1822 /* This macro rejects windows on the interior of the window tree as
1823 "dead", which is what we want; this is an argument-checking macro, and
1824 the user should never get access to interior windows.
1825
1826 A window of any sort, leaf or interior, is dead if the buffer,
1827 vchild, and hchild members are all nil. */
1828
1829 #define CHECK_LIVE_WINDOW(x) \
1830 CHECK_TYPE (WINDOWP (x) && !NILP (XWINDOW (x)->buffer), Qwindow_live_p, x)
1831
1832 #define CHECK_PROCESS(x) \
1833 CHECK_TYPE (PROCESSP (x), Qprocessp, x)
1834
1835 #define CHECK_SUBR(x) \
1836 CHECK_TYPE (SUBRP (x), Qsubrp, x)
1837
1838 #define CHECK_NUMBER(x) \
1839 CHECK_TYPE (INTEGERP (x), Qintegerp, x)
1840
1841 #define CHECK_NATNUM(x) \
1842 CHECK_TYPE (NATNUMP (x), Qwholenump, x)
1843
1844 #define CHECK_RANGED_INTEGER(lo, x, hi) \
1845 do { \
1846 CHECK_NUMBER (x); \
1847 if (! ((lo) <= XINT (x) && XINT (x) <= (hi))) \
1848 args_out_of_range_3 \
1849 (x, \
1850 make_number ((lo) < 0 && (lo) < MOST_NEGATIVE_FIXNUM \
1851 ? MOST_NEGATIVE_FIXNUM \
1852 : (lo)), \
1853 make_number (min (hi, MOST_POSITIVE_FIXNUM))); \
1854 } while (0)
1855 #define CHECK_TYPE_RANGED_INTEGER(type, x) \
1856 do { \
1857 if (TYPE_SIGNED (type)) \
1858 CHECK_RANGED_INTEGER (TYPE_MINIMUM (type), x, TYPE_MAXIMUM (type)); \
1859 else \
1860 CHECK_RANGED_INTEGER (0, x, TYPE_MAXIMUM (type)); \
1861 } while (0)
1862
1863 #define CHECK_MARKER(x) \
1864 CHECK_TYPE (MARKERP (x), Qmarkerp, x)
1865
1866 #define CHECK_NUMBER_COERCE_MARKER(x) \
1867 do { if (MARKERP ((x))) XSETFASTINT (x, marker_position (x)); \
1868 else CHECK_TYPE (INTEGERP (x), Qinteger_or_marker_p, x); } while (0)
1869
1870 #define XFLOATINT(n) extract_float((n))
1871
1872 #define CHECK_FLOAT(x) \
1873 CHECK_TYPE (FLOATP (x), Qfloatp, x)
1874
1875 #define CHECK_NUMBER_OR_FLOAT(x) \
1876 CHECK_TYPE (FLOATP (x) || INTEGERP (x), Qnumberp, x)
1877
1878 #define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(x) \
1879 do { if (MARKERP (x)) XSETFASTINT (x, marker_position (x)); \
1880 else CHECK_TYPE (INTEGERP (x) || FLOATP (x), Qnumber_or_marker_p, x); } while (0)
1881
1882 #define CHECK_OVERLAY(x) \
1883 CHECK_TYPE (OVERLAYP (x), Qoverlayp, x)
1884
1885 /* Since we can't assign directly to the CAR or CDR fields of a cons
1886 cell, use these when checking that those fields contain numbers. */
1887 #define CHECK_NUMBER_CAR(x) \
1888 do { \
1889 Lisp_Object tmp = XCAR (x); \
1890 CHECK_NUMBER (tmp); \
1891 XSETCAR ((x), tmp); \
1892 } while (0)
1893
1894 #define CHECK_NUMBER_CDR(x) \
1895 do { \
1896 Lisp_Object tmp = XCDR (x); \
1897 CHECK_NUMBER (tmp); \
1898 XSETCDR ((x), tmp); \
1899 } while (0)
1900
1901 #define CHECK_NATNUM_CAR(x) \
1902 do { \
1903 Lisp_Object tmp = XCAR (x); \
1904 CHECK_NATNUM (tmp); \
1905 XSETCAR ((x), tmp); \
1906 } while (0)
1907
1908 #define CHECK_NATNUM_CDR(x) \
1909 do { \
1910 Lisp_Object tmp = XCDR (x); \
1911 CHECK_NATNUM (tmp); \
1912 XSETCDR ((x), tmp); \
1913 } while (0)
1914 \f
1915 /* Define a built-in function for calling from Lisp.
1916 `lname' should be the name to give the function in Lisp,
1917 as a null-terminated C string.
1918 `fnname' should be the name of the function in C.
1919 By convention, it starts with F.
1920 `sname' should be the name for the C constant structure
1921 that records information on this function for internal use.
1922 By convention, it should be the same as `fnname' but with S instead of F.
1923 It's too bad that C macros can't compute this from `fnname'.
1924 `minargs' should be a number, the minimum number of arguments allowed.
1925 `maxargs' should be a number, the maximum number of arguments allowed,
1926 or else MANY or UNEVALLED.
1927 MANY means pass a vector of evaluated arguments,
1928 in the form of an integer number-of-arguments
1929 followed by the address of a vector of Lisp_Objects
1930 which contains the argument values.
1931 UNEVALLED means pass the list of unevaluated arguments
1932 `intspec' says how interactive arguments are to be fetched.
1933 If the string starts with a `(', `intspec' is evaluated and the resulting
1934 list is the list of arguments.
1935 If it's a string that doesn't start with `(', the value should follow
1936 the one of the doc string for `interactive'.
1937 A null string means call interactively with no arguments.
1938 `doc' is documentation for the user. */
1939
1940 /* This version of DEFUN declares a function prototype with the right
1941 arguments, so we can catch errors with maxargs at compile-time. */
1942 #ifdef _MSC_VER
1943 #define DEFUN(lname, fnname, sname, minargs, maxargs, intspec, doc) \
1944 Lisp_Object fnname DEFUN_ARGS_ ## maxargs ; \
1945 static DECL_ALIGN (struct Lisp_Subr, sname) = \
1946 { PVEC_SUBR | (sizeof (struct Lisp_Subr) / sizeof (EMACS_INT)), \
1947 { (Lisp_Object (__cdecl *)(void))fnname }, \
1948 minargs, maxargs, lname, intspec, 0}; \
1949 Lisp_Object fnname
1950 #else /* not _MSC_VER */
1951 #define DEFUN(lname, fnname, sname, minargs, maxargs, intspec, doc) \
1952 Lisp_Object fnname DEFUN_ARGS_ ## maxargs ; \
1953 static DECL_ALIGN (struct Lisp_Subr, sname) = \
1954 { PVEC_SUBR, \
1955 { .a ## maxargs = fnname }, \
1956 minargs, maxargs, lname, intspec, 0}; \
1957 Lisp_Object fnname
1958 #endif
1959
1960 /* Note that the weird token-substitution semantics of ANSI C makes
1961 this work for MANY and UNEVALLED. */
1962 #define DEFUN_ARGS_MANY (ptrdiff_t, Lisp_Object *)
1963 #define DEFUN_ARGS_UNEVALLED (Lisp_Object)
1964 #define DEFUN_ARGS_0 (void)
1965 #define DEFUN_ARGS_1 (Lisp_Object)
1966 #define DEFUN_ARGS_2 (Lisp_Object, Lisp_Object)
1967 #define DEFUN_ARGS_3 (Lisp_Object, Lisp_Object, Lisp_Object)
1968 #define DEFUN_ARGS_4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object)
1969 #define DEFUN_ARGS_5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \
1970 Lisp_Object)
1971 #define DEFUN_ARGS_6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \
1972 Lisp_Object, Lisp_Object)
1973 #define DEFUN_ARGS_7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \
1974 Lisp_Object, Lisp_Object, Lisp_Object)
1975 #define DEFUN_ARGS_8 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \
1976 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object)
1977
1978 /* Non-zero if OBJ is a Lisp function. */
1979 #define FUNCTIONP(OBJ) \
1980 ((CONSP (OBJ) && EQ (XCAR (OBJ), Qlambda)) \
1981 || (SYMBOLP (OBJ) && !NILP (Ffboundp (OBJ))) \
1982 || COMPILEDP (OBJ) \
1983 || SUBRP (OBJ))
1984
1985 /* defsubr (Sname);
1986 is how we define the symbol for function `name' at start-up time. */
1987 extern void defsubr (struct Lisp_Subr *);
1988
1989 #define MANY -2
1990 #define UNEVALLED -1
1991
1992 extern void defvar_lisp (struct Lisp_Objfwd *, const char *, Lisp_Object *);
1993 extern void defvar_lisp_nopro (struct Lisp_Objfwd *, const char *, Lisp_Object *);
1994 extern void defvar_bool (struct Lisp_Boolfwd *, const char *, int *);
1995 extern void defvar_int (struct Lisp_Intfwd *, const char *, EMACS_INT *);
1996 extern void defvar_kboard (struct Lisp_Kboard_Objfwd *, const char *, int);
1997
1998 /* Macros we use to define forwarded Lisp variables.
1999 These are used in the syms_of_FILENAME functions.
2000
2001 An ordinary (not in buffer_defaults, per-buffer, or per-keyboard)
2002 lisp variable is actually a field in `struct emacs_globals'. The
2003 field's name begins with "f_", which is a convention enforced by
2004 these macros. Each such global has a corresponding #define in
2005 globals.h; the plain name should be used in the code.
2006
2007 E.g., the global "cons_cells_consed" is declared as "int
2008 f_cons_cells_consed" in globals.h, but there is a define:
2009
2010 #define cons_cells_consed globals.f_cons_cells_consed
2011
2012 All C code uses the `cons_cells_consed' name. This is all done
2013 this way to support indirection for multi-threaded Emacs. */
2014
2015 #define DEFVAR_LISP(lname, vname, doc) \
2016 do { \
2017 static struct Lisp_Objfwd o_fwd; \
2018 defvar_lisp (&o_fwd, lname, &globals.f_ ## vname); \
2019 } while (0)
2020 #define DEFVAR_LISP_NOPRO(lname, vname, doc) \
2021 do { \
2022 static struct Lisp_Objfwd o_fwd; \
2023 defvar_lisp_nopro (&o_fwd, lname, &globals.f_ ## vname); \
2024 } while (0)
2025 #define DEFVAR_BOOL(lname, vname, doc) \
2026 do { \
2027 static struct Lisp_Boolfwd b_fwd; \
2028 defvar_bool (&b_fwd, lname, &globals.f_ ## vname); \
2029 } while (0)
2030 #define DEFVAR_INT(lname, vname, doc) \
2031 do { \
2032 static struct Lisp_Intfwd i_fwd; \
2033 defvar_int (&i_fwd, lname, &globals.f_ ## vname); \
2034 } while (0)
2035
2036 #define DEFVAR_BUFFER_DEFAULTS(lname, vname, doc) \
2037 do { \
2038 static struct Lisp_Objfwd o_fwd; \
2039 defvar_lisp_nopro (&o_fwd, lname, &BVAR (&buffer_defaults, vname)); \
2040 } while (0)
2041
2042 #define DEFVAR_KBOARD(lname, vname, doc) \
2043 do { \
2044 static struct Lisp_Kboard_Objfwd ko_fwd; \
2045 defvar_kboard (&ko_fwd, lname, offsetof (KBOARD, vname ## _)); \
2046 } while (0)
2047
2048
2049 \f
2050 /* Structure for recording Lisp call stack for backtrace purposes. */
2051
2052 /* The special binding stack holds the outer values of variables while
2053 they are bound by a function application or a let form, stores the
2054 code to be executed for Lisp unwind-protect forms, and stores the C
2055 functions to be called for record_unwind_protect.
2056
2057 If func is non-zero, undoing this binding applies func to old_value;
2058 This implements record_unwind_protect.
2059
2060 Otherwise, the element is a variable binding.
2061
2062 If the symbol field is a symbol, it is an ordinary variable binding.
2063
2064 Otherwise, it should be a structure (SYMBOL WHERE . CURRENT-BUFFER),
2065 which means having bound a local value while CURRENT-BUFFER was active.
2066 If WHERE is nil this means we saw the default value when binding SYMBOL.
2067 WHERE being a buffer or frame means we saw a buffer-local or frame-local
2068 value. Other values of WHERE mean an internal error. */
2069
2070 typedef Lisp_Object (*specbinding_func) (Lisp_Object);
2071
2072 struct specbinding
2073 {
2074 Lisp_Object symbol, old_value;
2075 specbinding_func func;
2076 Lisp_Object unused; /* Dividing by 16 is faster than by 12 */
2077 };
2078
2079 extern struct specbinding *specpdl;
2080 extern struct specbinding *specpdl_ptr;
2081 extern ptrdiff_t specpdl_size;
2082
2083 #define SPECPDL_INDEX() (specpdl_ptr - specpdl)
2084
2085 /* Everything needed to describe an active condition case. */
2086 struct handler
2087 {
2088 /* The handler clauses and variable from the condition-case form. */
2089 /* For a handler set up in Lisp code, this is always a list.
2090 For an internal handler set up by internal_condition_case*,
2091 this can instead be the symbol t or `error'.
2092 t: handle all conditions.
2093 error: handle all conditions, and errors can run the debugger
2094 or display a backtrace. */
2095 Lisp_Object handler;
2096 Lisp_Object var;
2097 /* Fsignal stores here the condition-case clause that applies,
2098 and Fcondition_case thus knows which clause to run. */
2099 Lisp_Object chosen_clause;
2100
2101 /* Used to effect the longjump out to the handler. */
2102 struct catchtag *tag;
2103
2104 /* The next enclosing handler. */
2105 struct handler *next;
2106 };
2107
2108 /* This structure helps implement the `catch' and `throw' control
2109 structure. A struct catchtag contains all the information needed
2110 to restore the state of the interpreter after a non-local jump.
2111
2112 Handlers for error conditions (represented by `struct handler'
2113 structures) just point to a catch tag to do the cleanup required
2114 for their jumps.
2115
2116 catchtag structures are chained together in the C calling stack;
2117 the `next' member points to the next outer catchtag.
2118
2119 A call like (throw TAG VAL) searches for a catchtag whose `tag'
2120 member is TAG, and then unbinds to it. The `val' member is used to
2121 hold VAL while the stack is unwound; `val' is returned as the value
2122 of the catch form.
2123
2124 All the other members are concerned with restoring the interpreter
2125 state. */
2126
2127 struct catchtag
2128 {
2129 Lisp_Object tag;
2130 Lisp_Object val;
2131 struct catchtag *next;
2132 struct gcpro *gcpro;
2133 jmp_buf jmp;
2134 struct backtrace *backlist;
2135 struct handler *handlerlist;
2136 EMACS_INT lisp_eval_depth;
2137 ptrdiff_t pdlcount;
2138 int poll_suppress_count;
2139 int interrupt_input_blocked;
2140 struct byte_stack *byte_stack;
2141 };
2142
2143 extern Lisp_Object memory_signal_data;
2144
2145 /* An address near the bottom of the stack.
2146 Tells GC how to save a copy of the stack. */
2147 extern char *stack_bottom;
2148
2149 /* Check quit-flag and quit if it is non-nil.
2150 Typing C-g does not directly cause a quit; it only sets Vquit_flag.
2151 So the program needs to do QUIT at times when it is safe to quit.
2152 Every loop that might run for a long time or might not exit
2153 ought to do QUIT at least once, at a safe place.
2154 Unless that is impossible, of course.
2155 But it is very desirable to avoid creating loops where QUIT is impossible.
2156
2157 Exception: if you set immediate_quit to nonzero,
2158 then the handler that responds to the C-g does the quit itself.
2159 This is a good thing to do around a loop that has no side effects
2160 and (in particular) cannot call arbitrary Lisp code.
2161
2162 If quit-flag is set to `kill-emacs' the SIGINT handler has received
2163 a request to exit Emacs when it is safe to do. */
2164
2165 #ifdef SYNC_INPUT
2166 extern void process_pending_signals (void);
2167 extern int pending_signals;
2168 #define ELSE_PENDING_SIGNALS \
2169 else if (pending_signals) \
2170 process_pending_signals ();
2171 #else /* not SYNC_INPUT */
2172 #define ELSE_PENDING_SIGNALS
2173 #endif /* not SYNC_INPUT */
2174
2175 extern void process_quit_flag (void);
2176 #define QUIT \
2177 do { \
2178 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) \
2179 process_quit_flag (); \
2180 ELSE_PENDING_SIGNALS \
2181 } while (0)
2182
2183
2184 /* Nonzero if ought to quit now. */
2185
2186 #define QUITP (!NILP (Vquit_flag) && NILP (Vinhibit_quit))
2187 \f
2188 extern Lisp_Object Vascii_downcase_table;
2189 extern Lisp_Object Vascii_canon_table;
2190 \f
2191 /* Number of bytes of structure consed since last GC. */
2192
2193 extern EMACS_INT consing_since_gc;
2194
2195 extern EMACS_INT gc_relative_threshold;
2196
2197 extern EMACS_INT memory_full_cons_threshold;
2198
2199 /* Structure for recording stack slots that need marking. */
2200
2201 /* This is a chain of structures, each of which points at a Lisp_Object
2202 variable whose value should be marked in garbage collection.
2203 Normally every link of the chain is an automatic variable of a function,
2204 and its `val' points to some argument or local variable of the function.
2205 On exit to the function, the chain is set back to the value it had on entry.
2206 This way, no link remains in the chain when the stack frame containing the
2207 link disappears.
2208
2209 Every function that can call Feval must protect in this fashion all
2210 Lisp_Object variables whose contents will be used again. */
2211
2212 extern struct gcpro *gcprolist;
2213
2214 struct gcpro
2215 {
2216 struct gcpro *next;
2217
2218 /* Address of first protected variable. */
2219 volatile Lisp_Object *var;
2220
2221 /* Number of consecutive protected variables. */
2222 ptrdiff_t nvars;
2223
2224 #ifdef DEBUG_GCPRO
2225 int level;
2226 #endif
2227 };
2228
2229 /* Values of GC_MARK_STACK during compilation:
2230
2231 0 Use GCPRO as before
2232 1 Do the real thing, make GCPROs and UNGCPRO no-ops.
2233 2 Mark the stack, and check that everything GCPRO'd is
2234 marked.
2235 3 Mark using GCPRO's, mark stack last, and count how many
2236 dead objects are kept alive. */
2237
2238
2239 #define GC_USE_GCPROS_AS_BEFORE 0
2240 #define GC_MAKE_GCPROS_NOOPS 1
2241 #define GC_MARK_STACK_CHECK_GCPROS 2
2242 #define GC_USE_GCPROS_CHECK_ZOMBIES 3
2243
2244 #ifndef GC_MARK_STACK
2245 #define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS
2246 #endif
2247
2248 /* Whether we do the stack marking manually. */
2249 #define BYTE_MARK_STACK !(GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS \
2250 || GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS)
2251
2252
2253 #if GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS
2254
2255 /* Do something silly with gcproN vars just so gcc shuts up. */
2256 /* You get warnings from MIPSPro... */
2257
2258 #define GCPRO1(varname) ((void) gcpro1)
2259 #define GCPRO2(varname1, varname2) ((void) gcpro2, (void) gcpro1)
2260 #define GCPRO3(varname1, varname2, varname3) \
2261 ((void) gcpro3, (void) gcpro2, (void) gcpro1)
2262 #define GCPRO4(varname1, varname2, varname3, varname4) \
2263 ((void) gcpro4, (void) gcpro3, (void) gcpro2, (void) gcpro1)
2264 #define GCPRO5(varname1, varname2, varname3, varname4, varname5) \
2265 ((void) gcpro5, (void) gcpro4, (void) gcpro3, (void) gcpro2, (void) gcpro1)
2266 #define GCPRO6(varname1, varname2, varname3, varname4, varname5, varname6) \
2267 ((void) gcpro6, (void) gcpro5, (void) gcpro4, (void) gcpro3, (void) gcpro2, \
2268 (void) gcpro1)
2269 #define UNGCPRO ((void) 0)
2270
2271 #else /* GC_MARK_STACK != GC_MAKE_GCPROS_NOOPS */
2272
2273 #ifndef DEBUG_GCPRO
2274
2275 #define GCPRO1(varname) \
2276 {gcpro1.next = gcprolist; gcpro1.var = &varname; gcpro1.nvars = 1; \
2277 gcprolist = &gcpro1; }
2278
2279 #define GCPRO2(varname1, varname2) \
2280 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2281 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2282 gcprolist = &gcpro2; }
2283
2284 #define GCPRO3(varname1, varname2, varname3) \
2285 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2286 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2287 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2288 gcprolist = &gcpro3; }
2289
2290 #define GCPRO4(varname1, varname2, varname3, varname4) \
2291 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2292 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2293 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2294 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
2295 gcprolist = &gcpro4; }
2296
2297 #define GCPRO5(varname1, varname2, varname3, varname4, varname5) \
2298 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2299 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2300 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2301 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
2302 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \
2303 gcprolist = &gcpro5; }
2304
2305 #define GCPRO6(varname1, varname2, varname3, varname4, varname5, varname6) \
2306 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2307 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2308 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2309 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
2310 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \
2311 gcpro6.next = &gcpro5; gcpro6.var = &varname6; gcpro6.nvars = 1; \
2312 gcprolist = &gcpro6; }
2313
2314 #define UNGCPRO (gcprolist = gcpro1.next)
2315
2316 #else
2317
2318 extern int gcpro_level;
2319
2320 #define GCPRO1(varname) \
2321 {gcpro1.next = gcprolist; gcpro1.var = &varname; gcpro1.nvars = 1; \
2322 gcpro1.level = gcpro_level++; \
2323 gcprolist = &gcpro1; }
2324
2325 #define GCPRO2(varname1, varname2) \
2326 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2327 gcpro1.level = gcpro_level; \
2328 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2329 gcpro2.level = gcpro_level++; \
2330 gcprolist = &gcpro2; }
2331
2332 #define GCPRO3(varname1, varname2, varname3) \
2333 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2334 gcpro1.level = gcpro_level; \
2335 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2336 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2337 gcpro3.level = gcpro_level++; \
2338 gcprolist = &gcpro3; }
2339
2340 #define GCPRO4(varname1, varname2, varname3, varname4) \
2341 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2342 gcpro1.level = gcpro_level; \
2343 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2344 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2345 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
2346 gcpro4.level = gcpro_level++; \
2347 gcprolist = &gcpro4; }
2348
2349 #define GCPRO5(varname1, varname2, varname3, varname4, varname5) \
2350 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2351 gcpro1.level = gcpro_level; \
2352 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2353 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2354 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
2355 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \
2356 gcpro5.level = gcpro_level++; \
2357 gcprolist = &gcpro5; }
2358
2359 #define GCPRO6(varname1, varname2, varname3, varname4, varname5, varname6) \
2360 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2361 gcpro1.level = gcpro_level; \
2362 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2363 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2364 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
2365 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \
2366 gcpro6.next = &gcpro5; gcpro6.var = &varname6; gcpro6.nvars = 1; \
2367 gcpro6.level = gcpro_level++; \
2368 gcprolist = &gcpro6; }
2369
2370 #define UNGCPRO \
2371 ((--gcpro_level != gcpro1.level) \
2372 ? (abort (), 0) \
2373 : ((gcprolist = gcpro1.next), 0))
2374
2375 #endif /* DEBUG_GCPRO */
2376 #endif /* GC_MARK_STACK != GC_MAKE_GCPROS_NOOPS */
2377
2378
2379 /* Evaluate expr, UNGCPRO, and then return the value of expr. */
2380 #define RETURN_UNGCPRO(expr) \
2381 do \
2382 { \
2383 Lisp_Object ret_ungc_val; \
2384 ret_ungc_val = (expr); \
2385 UNGCPRO; \
2386 return ret_ungc_val; \
2387 } \
2388 while (0)
2389
2390 /* Call staticpro (&var) to protect static variable `var'. */
2391
2392 void staticpro (Lisp_Object *);
2393 \f
2394 /* Declare a Lisp-callable function. The MAXARGS parameter has the same
2395 meaning as in the DEFUN macro, and is used to construct a prototype. */
2396 /* We can use the same trick as in the DEFUN macro to generate the
2397 appropriate prototype. */
2398 #define EXFUN(fnname, maxargs) \
2399 extern Lisp_Object fnname DEFUN_ARGS_ ## maxargs
2400
2401 /* Forward declarations for prototypes. */
2402 struct window;
2403 struct frame;
2404
2405 /* Defined in data.c. */
2406 extern Lisp_Object Qnil, Qt, Qquote, Qlambda, Qunbound;
2407 extern Lisp_Object Qerror_conditions, Qerror_message, Qtop_level;
2408 extern Lisp_Object Qerror, Qquit, Qargs_out_of_range;
2409 extern Lisp_Object Qvoid_variable, Qvoid_function;
2410 extern Lisp_Object Qinvalid_read_syntax;
2411 extern Lisp_Object Qinvalid_function, Qwrong_number_of_arguments, Qno_catch;
2412 extern Lisp_Object Qend_of_file, Qarith_error, Qmark_inactive;
2413 extern Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only;
2414 extern Lisp_Object Qtext_read_only;
2415 extern Lisp_Object Qinteractive_form;
2416 extern Lisp_Object Qcircular_list;
2417 extern Lisp_Object Qintegerp, Qwholenump, Qsymbolp, Qlistp, Qconsp;
2418 extern Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp;
2419 extern Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp;
2420 extern Lisp_Object Qbuffer_or_string_p;
2421 extern Lisp_Object Qfboundp;
2422 extern Lisp_Object Qchar_table_p, Qvector_or_char_table_p;
2423
2424 extern Lisp_Object Qcdr;
2425
2426 extern Lisp_Object Qrange_error, Qdomain_error, Qsingularity_error;
2427 extern Lisp_Object Qoverflow_error, Qunderflow_error;
2428
2429 extern Lisp_Object Qfloatp;
2430 extern Lisp_Object Qnumberp, Qnumber_or_marker_p;
2431
2432 extern Lisp_Object Qinteger;
2433
2434 extern Lisp_Object Qfont_spec, Qfont_entity, Qfont_object;
2435
2436 EXFUN (Finteractive_form, 1);
2437 EXFUN (Fbyteorder, 0);
2438
2439 /* Defined in frame.c */
2440 extern Lisp_Object Qframep;
2441
2442 /* Defined in data.c */
2443 EXFUN (Fcar, 1);
2444 EXFUN (Fcar_safe, 1);
2445 EXFUN (Fcdr, 1);
2446 EXFUN (Fcdr_safe, 1);
2447 EXFUN (Fsetcar, 2);
2448 EXFUN (Fsetcdr, 2);
2449 EXFUN (Fboundp, 1);
2450 EXFUN (Ffboundp, 1);
2451 EXFUN (Fsymbol_function, 1);
2452 EXFUN (Fsymbol_name, 1);
2453 extern Lisp_Object indirect_function (Lisp_Object);
2454 EXFUN (Findirect_function, 2);
2455 EXFUN (Ffset, 2);
2456 EXFUN (Fsymbol_value, 1);
2457 extern Lisp_Object find_symbol_value (Lisp_Object);
2458 EXFUN (Fset, 2);
2459 EXFUN (Fdefault_value, 1);
2460 EXFUN (Fset_default, 2);
2461 EXFUN (Fdefault_boundp, 1);
2462 EXFUN (Fmake_local_variable, 1);
2463 EXFUN (Flocal_variable_p, 2);
2464
2465 EXFUN (Faref, 2);
2466 EXFUN (Faset, 3);
2467
2468 EXFUN (Fstring_to_number, 2);
2469 EXFUN (Fnumber_to_string, 1);
2470 EXFUN (Fgtr, 2);
2471 EXFUN (Flss, 2);
2472 EXFUN (Fgeq, 2);
2473 EXFUN (Fleq, 2);
2474 EXFUN (Fzerop, 1);
2475 EXFUN (Fplus, MANY);
2476 EXFUN (Fminus, MANY);
2477 EXFUN (Ftimes, MANY);
2478 EXFUN (Fquo, MANY);
2479 EXFUN (Frem, 2);
2480 EXFUN (Fmax, MANY);
2481 EXFUN (Fmin, MANY);
2482
2483 EXFUN (Fadd1, 1);
2484 EXFUN (Fsub1, 1);
2485 EXFUN (Fmake_variable_buffer_local, 1);
2486
2487 /* Convert the integer I to an Emacs representation, either the integer
2488 itself, or a cons of two or three integers, or if all else fails a float.
2489 I should not have side effects. */
2490 #define INTEGER_TO_CONS(i) \
2491 (! FIXNUM_OVERFLOW_P (i) \
2492 ? make_number (i) \
2493 : ! ((FIXNUM_OVERFLOW_P (INTMAX_MIN >> 16) \
2494 || FIXNUM_OVERFLOW_P (UINTMAX_MAX >> 16)) \
2495 && FIXNUM_OVERFLOW_P ((i) >> 16)) \
2496 ? Fcons (make_number ((i) >> 16), make_number ((i) & 0xffff)) \
2497 : ! ((FIXNUM_OVERFLOW_P (INTMAX_MIN >> 16 >> 24) \
2498 || FIXNUM_OVERFLOW_P (UINTMAX_MAX >> 16 >> 24)) \
2499 && FIXNUM_OVERFLOW_P ((i) >> 16 >> 24)) \
2500 ? Fcons (make_number ((i) >> 16 >> 24), \
2501 Fcons (make_number ((i) >> 16 & 0xffffff), \
2502 make_number ((i) & 0xffff))) \
2503 : make_float (i))
2504
2505 /* Convert the Emacs representation CONS back to an integer of type
2506 TYPE, storing the result the variable VAR. Signal an error if CONS
2507 is not a valid representation or is out of range for TYPE. */
2508 #define CONS_TO_INTEGER(cons, type, var) \
2509 (TYPE_SIGNED (type) \
2510 ? ((var) = cons_to_signed (cons, TYPE_MINIMUM (type), TYPE_MAXIMUM (type))) \
2511 : ((var) = cons_to_unsigned (cons, TYPE_MAXIMUM (type))))
2512 extern intmax_t cons_to_signed (Lisp_Object, intmax_t, intmax_t);
2513 extern uintmax_t cons_to_unsigned (Lisp_Object, uintmax_t);
2514
2515 extern struct Lisp_Symbol *indirect_variable (struct Lisp_Symbol *);
2516 extern void args_out_of_range (Lisp_Object, Lisp_Object) NO_RETURN;
2517 extern void args_out_of_range_3 (Lisp_Object, Lisp_Object,
2518 Lisp_Object) NO_RETURN;
2519 extern Lisp_Object wrong_type_argument (Lisp_Object, Lisp_Object) NO_RETURN;
2520 extern Lisp_Object do_symval_forwarding (union Lisp_Fwd *);
2521 extern void set_internal (Lisp_Object, Lisp_Object, Lisp_Object, int);
2522 extern void syms_of_data (void);
2523 extern void init_data (void);
2524 extern void swap_in_global_binding (struct Lisp_Symbol *);
2525
2526 /* Defined in cmds.c */
2527 EXFUN (Fend_of_line, 1);
2528 EXFUN (Fforward_char, 1);
2529 EXFUN (Fforward_line, 1);
2530 extern void syms_of_cmds (void);
2531 extern void keys_of_cmds (void);
2532
2533 /* Defined in coding.c */
2534 extern Lisp_Object Qcharset;
2535 EXFUN (Fcoding_system_p, 1);
2536 EXFUN (Fcoding_system_base, 1);
2537 EXFUN (Fcoding_system_eol_type, 1);
2538 EXFUN (Fcheck_coding_system, 1);
2539 EXFUN (Fread_coding_system, 2);
2540 EXFUN (Fread_non_nil_coding_system, 1);
2541 EXFUN (Ffind_operation_coding_system, MANY);
2542 EXFUN (Fdecode_coding_string, 4);
2543 extern Lisp_Object detect_coding_system (const unsigned char *, ptrdiff_t,
2544 ptrdiff_t, int, int, Lisp_Object);
2545 extern void init_coding (void);
2546 extern void init_coding_once (void);
2547 extern void syms_of_coding (void);
2548
2549 /* Defined in character.c */
2550 EXFUN (Fchar_width, 1);
2551 EXFUN (Fstring, MANY);
2552 extern ptrdiff_t chars_in_text (const unsigned char *, ptrdiff_t);
2553 extern ptrdiff_t multibyte_chars_in_text (const unsigned char *, ptrdiff_t);
2554 extern int multibyte_char_to_unibyte (int);
2555 extern int multibyte_char_to_unibyte_safe (int);
2556 extern void init_character_once (void);
2557 extern void syms_of_character (void);
2558
2559 /* Defined in charset.c */
2560 extern void init_charset (void);
2561 extern void init_charset_once (void);
2562 extern void syms_of_charset (void);
2563 /* Structure forward declarations. */
2564 struct charset;
2565
2566 /* Defined in composite.c */
2567 extern void syms_of_composite (void);
2568
2569 /* Defined in syntax.c */
2570 EXFUN (Fforward_word, 1);
2571 EXFUN (Fskip_chars_forward, 2);
2572 EXFUN (Fskip_chars_backward, 2);
2573 extern void init_syntax_once (void);
2574 extern void syms_of_syntax (void);
2575
2576 /* Defined in fns.c */
2577 extern Lisp_Object QCrehash_size, QCrehash_threshold;
2578 enum { NEXT_ALMOST_PRIME_LIMIT = 11 };
2579 extern EMACS_INT next_almost_prime (EMACS_INT);
2580 extern Lisp_Object larger_vector (Lisp_Object, ptrdiff_t, ptrdiff_t);
2581 extern void sweep_weak_hash_tables (void);
2582 extern Lisp_Object Qcursor_in_echo_area;
2583 extern Lisp_Object Qstring_lessp;
2584 extern Lisp_Object QCsize, QCtest, QCweakness, Qequal, Qeq, Qeql;
2585 EMACS_UINT hash_string (char const *, ptrdiff_t);
2586 EMACS_UINT sxhash (Lisp_Object, int);
2587 Lisp_Object make_hash_table (Lisp_Object, Lisp_Object, Lisp_Object,
2588 Lisp_Object, Lisp_Object, Lisp_Object,
2589 Lisp_Object);
2590 ptrdiff_t hash_lookup (struct Lisp_Hash_Table *, Lisp_Object, EMACS_UINT *);
2591 ptrdiff_t hash_put (struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object,
2592 EMACS_UINT);
2593 void init_weak_hash_tables (void);
2594 extern void init_fns (void);
2595 EXFUN (Fmake_hash_table, MANY);
2596 EXFUN (Fgethash, 3);
2597 EXFUN (Fputhash, 3);
2598 EXFUN (Fremhash, 2);
2599
2600 EXFUN (Fidentity, 1);
2601 EXFUN (Flength, 1);
2602 EXFUN (Fappend, MANY);
2603 EXFUN (Fconcat, MANY);
2604 EXFUN (Fvconcat, MANY);
2605 EXFUN (Fcopy_sequence, 1);
2606 EXFUN (Fstring_make_multibyte, 1);
2607 EXFUN (Fstring_make_unibyte, 1);
2608 EXFUN (Fstring_as_multibyte, 1);
2609 EXFUN (Fstring_as_unibyte, 1);
2610 EXFUN (Fstring_to_multibyte, 1);
2611 EXFUN (Fsubstring, 3);
2612 extern Lisp_Object substring_both (Lisp_Object, ptrdiff_t, ptrdiff_t,
2613 ptrdiff_t, ptrdiff_t);
2614 EXFUN (Fnth, 2);
2615 EXFUN (Fnthcdr, 2);
2616 EXFUN (Fmemq, 2);
2617 EXFUN (Fassq, 2);
2618 EXFUN (Fassoc, 2);
2619 EXFUN (Felt, 2);
2620 EXFUN (Fmember, 2);
2621 EXFUN (Frassq, 2);
2622 EXFUN (Fdelq, 2);
2623 EXFUN (Fdelete, 2);
2624 EXFUN (Fsort, 2);
2625 EXFUN (Freverse, 1);
2626 EXFUN (Fnreverse, 1);
2627 EXFUN (Fget, 2);
2628 EXFUN (Fput, 3);
2629 EXFUN (Fequal, 2);
2630 EXFUN (Fnconc, MANY);
2631 EXFUN (Fmapcar, 2);
2632 EXFUN (Fmapconcat, 3);
2633 extern Lisp_Object do_yes_or_no_p (Lisp_Object);
2634 EXFUN (Fprovide, 2);
2635 extern Lisp_Object concat2 (Lisp_Object, Lisp_Object);
2636 extern Lisp_Object concat3 (Lisp_Object, Lisp_Object, Lisp_Object);
2637 extern Lisp_Object nconc2 (Lisp_Object, Lisp_Object);
2638 extern Lisp_Object assq_no_quit (Lisp_Object, Lisp_Object);
2639 extern Lisp_Object assoc_no_quit (Lisp_Object, Lisp_Object);
2640 extern void clear_string_char_byte_cache (void);
2641 extern ptrdiff_t string_char_to_byte (Lisp_Object, ptrdiff_t);
2642 extern ptrdiff_t string_byte_to_char (Lisp_Object, ptrdiff_t);
2643 extern Lisp_Object string_to_multibyte (Lisp_Object);
2644 extern Lisp_Object string_make_unibyte (Lisp_Object);
2645 EXFUN (Fcopy_alist, 1);
2646 EXFUN (Fplist_get, 2);
2647 EXFUN (Fplist_put, 3);
2648 EXFUN (Fplist_member, 2);
2649 EXFUN (Frassoc, 2);
2650 EXFUN (Fstring_equal, 2);
2651 EXFUN (Fcompare_strings, 7);
2652 EXFUN (Fstring_lessp, 2);
2653 extern void syms_of_fns (void);
2654
2655 /* Defined in floatfns.c */
2656 extern double extract_float (Lisp_Object);
2657 EXFUN (Ffloat, 1);
2658 EXFUN (Ftruncate, 2);
2659 extern void init_floatfns (void);
2660 extern void syms_of_floatfns (void);
2661 extern Lisp_Object fmod_float (Lisp_Object x, Lisp_Object y);
2662
2663 /* Defined in fringe.c */
2664 extern void syms_of_fringe (void);
2665 extern void init_fringe (void);
2666 #ifdef HAVE_WINDOW_SYSTEM
2667 extern void mark_fringe_data (void);
2668 extern void init_fringe_once (void);
2669 #endif /* HAVE_WINDOW_SYSTEM */
2670
2671 /* Defined in image.c */
2672 extern Lisp_Object QCascent, QCmargin, QCrelief;
2673 extern Lisp_Object QCconversion;
2674 extern int x_bitmap_mask (struct frame *, ptrdiff_t);
2675 extern void syms_of_image (void);
2676 extern void init_image (void);
2677
2678 /* Defined in insdel.c */
2679 extern Lisp_Object Qinhibit_modification_hooks;
2680 extern void move_gap (ptrdiff_t);
2681 extern void move_gap_both (ptrdiff_t, ptrdiff_t);
2682 extern void buffer_overflow (void) NO_RETURN;
2683 extern void make_gap (ptrdiff_t);
2684 extern ptrdiff_t copy_text (const unsigned char *, unsigned char *,
2685 ptrdiff_t, int, int);
2686 extern int count_combining_before (const unsigned char *,
2687 ptrdiff_t, ptrdiff_t, ptrdiff_t);
2688 extern int count_combining_after (const unsigned char *,
2689 ptrdiff_t, ptrdiff_t, ptrdiff_t);
2690 extern void insert (const char *, ptrdiff_t);
2691 extern void insert_and_inherit (const char *, ptrdiff_t);
2692 extern void insert_1 (const char *, ptrdiff_t, int, int, int);
2693 extern void insert_1_both (const char *, ptrdiff_t, ptrdiff_t,
2694 int, int, int);
2695 extern void insert_from_gap (ptrdiff_t, ptrdiff_t);
2696 extern void insert_from_string (Lisp_Object, ptrdiff_t, ptrdiff_t,
2697 ptrdiff_t, ptrdiff_t, int);
2698 extern void insert_from_buffer (struct buffer *, ptrdiff_t, ptrdiff_t, int);
2699 extern void insert_char (int);
2700 extern void insert_string (const char *);
2701 extern void insert_before_markers (const char *, ptrdiff_t);
2702 extern void insert_before_markers_and_inherit (const char *, ptrdiff_t);
2703 extern void insert_from_string_before_markers (Lisp_Object, ptrdiff_t,
2704 ptrdiff_t, ptrdiff_t,
2705 ptrdiff_t, int);
2706 extern void del_range (ptrdiff_t, ptrdiff_t);
2707 extern Lisp_Object del_range_1 (ptrdiff_t, ptrdiff_t, int, int);
2708 extern void del_range_byte (ptrdiff_t, ptrdiff_t, int);
2709 extern void del_range_both (ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t, int);
2710 extern Lisp_Object del_range_2 (ptrdiff_t, ptrdiff_t,
2711 ptrdiff_t, ptrdiff_t, int);
2712 extern void modify_region (struct buffer *, ptrdiff_t, ptrdiff_t, int);
2713 extern void prepare_to_modify_buffer (ptrdiff_t, ptrdiff_t, ptrdiff_t *);
2714 extern void signal_after_change (ptrdiff_t, ptrdiff_t, ptrdiff_t);
2715 extern void adjust_after_insert (ptrdiff_t, ptrdiff_t, ptrdiff_t,
2716 ptrdiff_t, ptrdiff_t);
2717 extern void adjust_markers_for_delete (ptrdiff_t, ptrdiff_t,
2718 ptrdiff_t, ptrdiff_t);
2719 extern void replace_range (ptrdiff_t, ptrdiff_t, Lisp_Object, int, int, int);
2720 extern void replace_range_2 (ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t,
2721 const char *, ptrdiff_t, ptrdiff_t, int);
2722 extern void syms_of_insdel (void);
2723
2724 /* Defined in dispnew.c */
2725 extern Lisp_Object selected_frame;
2726 extern Lisp_Object Vwindow_system;
2727 EXFUN (Fding, 1);
2728 EXFUN (Fredraw_frame, 1);
2729 void duration_to_sec_usec (double, int *, int *);
2730 EXFUN (Fsleep_for, 2);
2731 EXFUN (Fredisplay, 1);
2732 extern Lisp_Object sit_for (Lisp_Object, int, int);
2733 extern void init_display (void);
2734 extern void syms_of_display (void);
2735
2736 /* Defined in xdisp.c */
2737 extern Lisp_Object Qinhibit_point_motion_hooks;
2738 extern Lisp_Object Qinhibit_redisplay, Qdisplay;
2739 extern Lisp_Object Qmenu_bar_update_hook;
2740 extern Lisp_Object Qwindow_scroll_functions;
2741 extern Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
2742 extern Lisp_Object Qimage, Qtext, Qboth, Qboth_horiz, Qtext_image_horiz;
2743 extern Lisp_Object Qspace, Qcenter, QCalign_to;
2744 extern Lisp_Object Qbar, Qhbar, Qbox, Qhollow;
2745 extern Lisp_Object Qleft_margin, Qright_margin;
2746 extern Lisp_Object Qglyphless_char;
2747 extern Lisp_Object QCdata, QCfile;
2748 extern Lisp_Object QCmap;
2749 extern Lisp_Object Qrisky_local_variable;
2750 extern struct frame *last_glyphless_glyph_frame;
2751 extern int last_glyphless_glyph_face_id;
2752 extern int last_glyphless_glyph_merged_face_id;
2753 extern int noninteractive_need_newline;
2754 extern Lisp_Object echo_area_buffer[2];
2755 extern void add_to_log (const char *, Lisp_Object, Lisp_Object);
2756 extern void check_message_stack (void);
2757 extern void setup_echo_area_for_printing (int);
2758 extern int push_message (void);
2759 extern Lisp_Object pop_message_unwind (Lisp_Object);
2760 extern Lisp_Object restore_message_unwind (Lisp_Object);
2761 extern void restore_message (void);
2762 extern Lisp_Object current_message (void);
2763 extern void clear_message (int, int);
2764 extern void message (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2);
2765 extern void message1 (const char *);
2766 extern void message1_nolog (const char *);
2767 extern void message2 (const char *, ptrdiff_t, int);
2768 extern void message2_nolog (const char *, ptrdiff_t, int);
2769 extern void message3 (Lisp_Object, ptrdiff_t, int);
2770 extern void message3_nolog (Lisp_Object, ptrdiff_t, int);
2771 extern void message_dolog (const char *, ptrdiff_t, int, int);
2772 extern void message_with_string (const char *, Lisp_Object, int);
2773 extern void message_log_maybe_newline (void);
2774 extern void update_echo_area (void);
2775 extern void truncate_echo_area (ptrdiff_t);
2776 extern void redisplay (void);
2777 extern void redisplay_preserve_echo_area (int);
2778 extern void prepare_menu_bars (void);
2779
2780 void set_frame_cursor_types (struct frame *, Lisp_Object);
2781 extern void syms_of_xdisp (void);
2782 extern void init_xdisp (void);
2783 extern Lisp_Object safe_eval (Lisp_Object);
2784 extern int pos_visible_p (struct window *, ptrdiff_t, int *,
2785 int *, int *, int *, int *, int *);
2786
2787 /* Defined in xsettings.c */
2788 extern void syms_of_xsettings (void);
2789
2790 /* Defined in vm-limit.c. */
2791 extern void memory_warnings (POINTER_TYPE *, void (*warnfun) (const char *));
2792
2793 /* Defined in alloc.c */
2794 extern void check_pure_size (void);
2795 extern void allocate_string_data (struct Lisp_String *, EMACS_INT, EMACS_INT);
2796 extern void reset_malloc_hooks (void);
2797 extern void uninterrupt_malloc (void);
2798 extern void malloc_warning (const char *);
2799 extern void memory_full (size_t) NO_RETURN;
2800 extern void buffer_memory_full (ptrdiff_t) NO_RETURN;
2801 extern int survives_gc_p (Lisp_Object);
2802 extern void mark_object (Lisp_Object);
2803 #if defined REL_ALLOC && !defined SYSTEM_MALLOC
2804 extern void refill_memory_reserve (void);
2805 #endif
2806 extern const char *pending_malloc_warning;
2807 extern Lisp_Object *stack_base;
2808 EXFUN (Fcons, 2);
2809 extern Lisp_Object list1 (Lisp_Object);
2810 extern Lisp_Object list2 (Lisp_Object, Lisp_Object);
2811 extern Lisp_Object list3 (Lisp_Object, Lisp_Object, Lisp_Object);
2812 extern Lisp_Object list4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
2813 extern Lisp_Object list5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
2814 Lisp_Object);
2815 EXFUN (Flist, MANY);
2816 EXFUN (Fmake_list, 2);
2817 extern Lisp_Object allocate_misc (void);
2818 EXFUN (Fmake_vector, 2);
2819 EXFUN (Fvector, MANY);
2820 EXFUN (Fmake_symbol, 1);
2821 EXFUN (Fmake_marker, 0);
2822 extern void string_overflow (void) NO_RETURN;
2823 EXFUN (Fmake_string, 2);
2824 extern Lisp_Object build_string (const char *);
2825 extern Lisp_Object make_string (const char *, ptrdiff_t);
2826 extern Lisp_Object make_unibyte_string (const char *, ptrdiff_t);
2827 extern Lisp_Object make_multibyte_string (const char *, ptrdiff_t, ptrdiff_t);
2828 extern Lisp_Object make_event_array (int, Lisp_Object *);
2829 extern Lisp_Object make_uninit_string (EMACS_INT);
2830 extern Lisp_Object make_uninit_multibyte_string (EMACS_INT, EMACS_INT);
2831 extern Lisp_Object make_string_from_bytes (const char *, ptrdiff_t, ptrdiff_t);
2832 extern Lisp_Object make_specified_string (const char *,
2833 ptrdiff_t, ptrdiff_t, int);
2834 EXFUN (Fpurecopy, 1);
2835 extern Lisp_Object make_pure_string (const char *, ptrdiff_t, ptrdiff_t, int);
2836 extern Lisp_Object make_pure_c_string (const char *data);
2837 extern Lisp_Object pure_cons (Lisp_Object, Lisp_Object);
2838 extern Lisp_Object make_pure_vector (ptrdiff_t);
2839 EXFUN (Fgarbage_collect, 0);
2840 EXFUN (Fmake_byte_code, MANY);
2841 EXFUN (Fmake_bool_vector, 2);
2842 extern Lisp_Object Qchar_table_extra_slots;
2843 extern struct Lisp_Vector *allocate_vector (EMACS_INT);
2844 extern struct Lisp_Vector *allocate_pseudovector (int memlen, int lisplen, int tag);
2845 #define ALLOCATE_PSEUDOVECTOR(typ,field,tag) \
2846 ((typ*) \
2847 allocate_pseudovector \
2848 (VECSIZE (typ), PSEUDOVECSIZE (typ, field), tag))
2849 extern struct Lisp_Hash_Table *allocate_hash_table (void);
2850 extern struct window *allocate_window (void);
2851 extern struct frame *allocate_frame (void);
2852 extern struct Lisp_Process *allocate_process (void);
2853 extern struct terminal *allocate_terminal (void);
2854 extern int gc_in_progress;
2855 extern int abort_on_gc;
2856 extern Lisp_Object make_float (double);
2857 extern void display_malloc_warning (void);
2858 extern ptrdiff_t inhibit_garbage_collection (void);
2859 extern Lisp_Object make_save_value (void *, ptrdiff_t);
2860 extern void free_marker (Lisp_Object);
2861 extern void free_cons (struct Lisp_Cons *);
2862 extern void init_alloc_once (void);
2863 extern void init_alloc (void);
2864 extern void syms_of_alloc (void);
2865 extern struct buffer * allocate_buffer (void);
2866 extern int valid_lisp_object_p (Lisp_Object);
2867
2868 #ifdef REL_ALLOC
2869 /* Defined in ralloc.c */
2870 extern void *r_alloc (void **, size_t);
2871 extern void r_alloc_free (void **);
2872 extern void *r_re_alloc (void **, size_t);
2873 extern void r_alloc_reset_variable (void **, void **);
2874 #endif
2875
2876 /* Defined in chartab.c */
2877 EXFUN (Fmake_char_table, 2);
2878 EXFUN (Fset_char_table_parent, 2);
2879 EXFUN (Fchar_table_extra_slot, 2);
2880 EXFUN (Fset_char_table_extra_slot, 3);
2881 EXFUN (Fset_char_table_range, 3);
2882 EXFUN (Foptimize_char_table, 2);
2883 extern Lisp_Object copy_char_table (Lisp_Object);
2884 extern Lisp_Object char_table_ref (Lisp_Object, int);
2885 extern Lisp_Object char_table_ref_and_range (Lisp_Object, int,
2886 int *, int *);
2887 extern Lisp_Object char_table_set (Lisp_Object, int, Lisp_Object);
2888 extern Lisp_Object char_table_set_range (Lisp_Object, int, int,
2889 Lisp_Object);
2890 extern int char_table_translate (Lisp_Object, int);
2891 extern void map_char_table (void (*) (Lisp_Object, Lisp_Object,
2892 Lisp_Object),
2893 Lisp_Object, Lisp_Object, Lisp_Object);
2894 extern void map_char_table_for_charset (void (*c_function) (Lisp_Object, Lisp_Object),
2895 Lisp_Object, Lisp_Object,
2896 Lisp_Object, struct charset *,
2897 unsigned, unsigned);
2898 extern Lisp_Object uniprop_table (Lisp_Object);
2899 extern void syms_of_chartab (void);
2900
2901 /* Defined in print.c */
2902 extern Lisp_Object Vprin1_to_string_buffer;
2903 extern void debug_print (Lisp_Object) EXTERNALLY_VISIBLE;
2904 EXFUN (Fprin1, 2);
2905 EXFUN (Fprin1_to_string, 2);
2906 EXFUN (Fterpri, 1);
2907 EXFUN (Fprint, 2);
2908 EXFUN (Ferror_message_string, 1);
2909 extern Lisp_Object Qstandard_output;
2910 extern Lisp_Object Qexternal_debugging_output;
2911 extern void temp_output_buffer_setup (const char *);
2912 extern int print_level;
2913 extern Lisp_Object Qprint_escape_newlines;
2914 extern void write_string (const char *, int);
2915 extern void print_error_message (Lisp_Object, Lisp_Object, const char *,
2916 Lisp_Object);
2917 extern Lisp_Object internal_with_output_to_temp_buffer
2918 (const char *, Lisp_Object (*) (Lisp_Object), Lisp_Object);
2919 #define FLOAT_TO_STRING_BUFSIZE 350
2920 extern void float_to_string (char *, double);
2921 extern void syms_of_print (void);
2922
2923 /* Defined in doprnt.c */
2924 extern ptrdiff_t doprnt (char *, ptrdiff_t, const char *, const char *,
2925 va_list);
2926 extern ptrdiff_t esprintf (char *, char const *, ...)
2927 ATTRIBUTE_FORMAT_PRINTF (2, 3);
2928 extern ptrdiff_t exprintf (char **, ptrdiff_t *, char const *, ptrdiff_t,
2929 char const *, ...)
2930 ATTRIBUTE_FORMAT_PRINTF (5, 6);
2931 extern ptrdiff_t evxprintf (char **, ptrdiff_t *, char const *, ptrdiff_t,
2932 char const *, va_list)
2933 ATTRIBUTE_FORMAT_PRINTF (5, 0);
2934
2935 /* Defined in lread.c. */
2936 extern Lisp_Object Qvariable_documentation, Qstandard_input;
2937 extern Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
2938 EXFUN (Fread, 1);
2939 EXFUN (Fread_from_string, 3);
2940 EXFUN (Fintern, 2);
2941 EXFUN (Fintern_soft, 2);
2942 EXFUN (Funintern, 2);
2943 EXFUN (Fload, 5);
2944 EXFUN (Fget_load_suffixes, 0);
2945 EXFUN (Fread_char, 3);
2946 EXFUN (Fread_event, 3);
2947 extern Lisp_Object check_obarray (Lisp_Object);
2948 extern Lisp_Object intern (const char *);
2949 extern Lisp_Object intern_c_string (const char *);
2950 extern Lisp_Object oblookup (Lisp_Object, const char *, ptrdiff_t, ptrdiff_t);
2951 #define LOADHIST_ATTACH(x) \
2952 do { \
2953 if (initialized) Vcurrent_load_list = Fcons (x, Vcurrent_load_list); \
2954 } while (0)
2955 extern int openp (Lisp_Object, Lisp_Object, Lisp_Object,
2956 Lisp_Object *, Lisp_Object);
2957 Lisp_Object string_to_number (char const *, int, int);
2958 extern void map_obarray (Lisp_Object, void (*) (Lisp_Object, Lisp_Object),
2959 Lisp_Object);
2960 extern void dir_warning (const char *, Lisp_Object);
2961 extern void close_load_descs (void);
2962 extern void init_obarray (void);
2963 extern void init_lread (void);
2964 extern void syms_of_lread (void);
2965
2966 /* Defined in eval.c. */
2967 extern Lisp_Object Qautoload, Qexit, Qinteractive, Qcommandp, Qdefun, Qmacro;
2968 extern Lisp_Object Qinhibit_quit, Qclosure;
2969 extern Lisp_Object Qand_rest;
2970 extern Lisp_Object Vautoload_queue;
2971 extern Lisp_Object Vsignaling_function;
2972 extern Lisp_Object inhibit_lisp_code;
2973 extern int handling_signal;
2974 #if BYTE_MARK_STACK
2975 extern struct catchtag *catchlist;
2976 extern struct handler *handlerlist;
2977 #endif
2978 /* To run a normal hook, use the appropriate function from the list below.
2979 The calling convention:
2980
2981 if (!NILP (Vrun_hooks))
2982 call1 (Vrun_hooks, Qmy_funny_hook);
2983
2984 should no longer be used. */
2985 extern Lisp_Object Vrun_hooks;
2986 EXFUN (Frun_hooks, MANY);
2987 EXFUN (Frun_hook_with_args, MANY);
2988 EXFUN (Frun_hook_with_args_until_failure, MANY);
2989 extern void run_hook_with_args_2 (Lisp_Object, Lisp_Object, Lisp_Object);
2990 extern Lisp_Object run_hook_with_args (ptrdiff_t nargs, Lisp_Object *args,
2991 Lisp_Object (*funcall)
2992 (ptrdiff_t nargs, Lisp_Object *args));
2993 EXFUN (Fprogn, UNEVALLED);
2994 EXFUN (Finteractive_p, 0);
2995 EXFUN (Fthrow, 2) NO_RETURN;
2996 EXFUN (Fsignal, 2);
2997 extern void xsignal (Lisp_Object, Lisp_Object) NO_RETURN;
2998 extern void xsignal0 (Lisp_Object) NO_RETURN;
2999 extern void xsignal1 (Lisp_Object, Lisp_Object) NO_RETURN;
3000 extern void xsignal2 (Lisp_Object, Lisp_Object, Lisp_Object) NO_RETURN;
3001 extern void xsignal3 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object) NO_RETURN;
3002 extern void signal_error (const char *, Lisp_Object) NO_RETURN;
3003 EXFUN (Fcommandp, 2);
3004 EXFUN (Ffunctionp, 1);
3005 EXFUN (Feval, 2);
3006 extern Lisp_Object eval_sub (Lisp_Object form);
3007 EXFUN (Fapply, MANY);
3008 EXFUN (Ffuncall, MANY);
3009 extern Lisp_Object apply1 (Lisp_Object, Lisp_Object);
3010 extern Lisp_Object call0 (Lisp_Object);
3011 extern Lisp_Object call1 (Lisp_Object, Lisp_Object);
3012 extern Lisp_Object call2 (Lisp_Object, Lisp_Object, Lisp_Object);
3013 extern Lisp_Object call3 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3014 extern Lisp_Object call4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3015 extern Lisp_Object call5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3016 extern Lisp_Object call6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3017 extern Lisp_Object call7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3018 EXFUN (Fdo_auto_save, 2);
3019 extern Lisp_Object internal_catch (Lisp_Object, Lisp_Object (*) (Lisp_Object), Lisp_Object);
3020 extern Lisp_Object internal_lisp_condition_case (Lisp_Object, Lisp_Object, Lisp_Object);
3021 extern Lisp_Object internal_condition_case (Lisp_Object (*) (void), Lisp_Object, Lisp_Object (*) (Lisp_Object));
3022 extern Lisp_Object internal_condition_case_1 (Lisp_Object (*) (Lisp_Object), Lisp_Object, Lisp_Object, Lisp_Object (*) (Lisp_Object));
3023 extern Lisp_Object internal_condition_case_2 (Lisp_Object (*) (Lisp_Object, Lisp_Object), Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object (*) (Lisp_Object));
3024 extern Lisp_Object internal_condition_case_n (Lisp_Object (*) (ptrdiff_t, Lisp_Object *), ptrdiff_t, Lisp_Object *, Lisp_Object, Lisp_Object (*) (Lisp_Object));
3025 extern void specbind (Lisp_Object, Lisp_Object);
3026 extern void record_unwind_protect (Lisp_Object (*) (Lisp_Object), Lisp_Object);
3027 extern Lisp_Object unbind_to (ptrdiff_t, Lisp_Object);
3028 extern void error (const char *, ...) NO_RETURN ATTRIBUTE_FORMAT_PRINTF (1, 2);
3029 extern void verror (const char *, va_list)
3030 NO_RETURN ATTRIBUTE_FORMAT_PRINTF (1, 0);
3031 extern void do_autoload (Lisp_Object, Lisp_Object);
3032 extern Lisp_Object un_autoload (Lisp_Object);
3033 extern void init_eval_once (void);
3034 extern Lisp_Object safe_call (ptrdiff_t, Lisp_Object *);
3035 extern Lisp_Object safe_call1 (Lisp_Object, Lisp_Object);
3036 extern Lisp_Object safe_call2 (Lisp_Object, Lisp_Object, Lisp_Object);
3037 extern void init_eval (void);
3038 #if BYTE_MARK_STACK
3039 extern void mark_backtrace (void);
3040 #endif
3041 extern void syms_of_eval (void);
3042
3043 /* Defined in editfns.c */
3044 extern Lisp_Object Qfield;
3045 EXFUN (Fcurrent_message, 0);
3046 EXFUN (Fgoto_char, 1);
3047 EXFUN (Fpoint_max_marker, 0);
3048 EXFUN (Fpoint, 0);
3049 EXFUN (Fpoint_marker, 0);
3050 EXFUN (Fline_beginning_position, 1);
3051 EXFUN (Fline_end_position, 1);
3052 EXFUN (Ffollowing_char, 0);
3053 EXFUN (Fprevious_char, 0);
3054 EXFUN (Fchar_after, 1);
3055 EXFUN (Finsert, MANY);
3056 EXFUN (Finsert_char, 3);
3057 extern void insert1 (Lisp_Object);
3058 EXFUN (Feolp, 0);
3059 EXFUN (Feobp, 0);
3060 EXFUN (Fbolp, 0);
3061 EXFUN (Fbobp, 0);
3062 EXFUN (Fformat, MANY);
3063 EXFUN (Fmessage, MANY);
3064 extern Lisp_Object format2 (const char *, Lisp_Object, Lisp_Object);
3065 EXFUN (Fbuffer_substring, 2);
3066 EXFUN (Fbuffer_string, 0);
3067 extern Lisp_Object save_excursion_save (void);
3068 extern Lisp_Object save_restriction_save (void);
3069 extern Lisp_Object save_excursion_restore (Lisp_Object);
3070 extern Lisp_Object save_restriction_restore (Lisp_Object);
3071 EXFUN (Fchar_to_string, 1);
3072 EXFUN (Fdelete_region, 2);
3073 EXFUN (Fnarrow_to_region, 2);
3074 EXFUN (Fwiden, 0);
3075 EXFUN (Fuser_login_name, 1);
3076 EXFUN (Fsystem_name, 0);
3077 EXFUN (Fcurrent_time, 0);
3078 EXFUN (Fget_internal_run_time, 0);
3079 extern Lisp_Object make_buffer_string (ptrdiff_t, ptrdiff_t, int);
3080 extern Lisp_Object make_buffer_string_both (ptrdiff_t, ptrdiff_t, ptrdiff_t,
3081 ptrdiff_t, int);
3082 extern void init_editfns (void);
3083 const char *get_system_name (void);
3084 extern void syms_of_editfns (void);
3085 EXFUN (Fconstrain_to_field, 5);
3086 EXFUN (Ffield_end, 3);
3087 extern void set_time_zone_rule (const char *);
3088
3089 /* Defined in buffer.c */
3090 extern int mouse_face_overlay_overlaps (Lisp_Object);
3091 extern void nsberror (Lisp_Object) NO_RETURN;
3092 EXFUN (Fset_buffer_multibyte, 1);
3093 EXFUN (Foverlay_start, 1);
3094 EXFUN (Foverlay_end, 1);
3095 extern void adjust_overlays_for_insert (ptrdiff_t, ptrdiff_t);
3096 extern void adjust_overlays_for_delete (ptrdiff_t, ptrdiff_t);
3097 extern void fix_start_end_in_overlays (ptrdiff_t, ptrdiff_t);
3098 extern void report_overlay_modification (Lisp_Object, Lisp_Object, int,
3099 Lisp_Object, Lisp_Object, Lisp_Object);
3100 extern int overlay_touches_p (ptrdiff_t);
3101 extern Lisp_Object Vbuffer_alist;
3102 EXFUN (Fget_buffer, 1);
3103 EXFUN (Fget_buffer_create, 1);
3104 EXFUN (Fgenerate_new_buffer_name, 2);
3105 EXFUN (Fset_buffer, 1);
3106 extern Lisp_Object set_buffer_if_live (Lisp_Object);
3107 EXFUN (Fbarf_if_buffer_read_only, 0);
3108 EXFUN (Fcurrent_buffer, 0);
3109 EXFUN (Fother_buffer, 3);
3110 extern Lisp_Object other_buffer_safely (Lisp_Object);
3111 EXFUN (Foverlay_get, 2);
3112 EXFUN (Fbuffer_modified_p, 1);
3113 EXFUN (Fset_buffer_modified_p, 1);
3114 EXFUN (Fkill_buffer, 1);
3115 EXFUN (Fkill_all_local_variables, 0);
3116 EXFUN (Fbuffer_enable_undo, 1);
3117 EXFUN (Ferase_buffer, 0);
3118 extern Lisp_Object Qpriority, Qwindow, Qbefore_string, Qafter_string;
3119 extern Lisp_Object get_truename_buffer (Lisp_Object);
3120 extern struct buffer *all_buffers;
3121 EXFUN (Fprevious_overlay_change, 1);
3122 EXFUN (Fbuffer_file_name, 1);
3123 extern void init_buffer_once (void);
3124 extern void init_buffer (void);
3125 extern void syms_of_buffer (void);
3126 extern void keys_of_buffer (void);
3127
3128 /* Defined in marker.c */
3129
3130 EXFUN (Fmarker_position, 1);
3131 EXFUN (Fmarker_buffer, 1);
3132 EXFUN (Fcopy_marker, 2);
3133 EXFUN (Fset_marker, 3);
3134 extern ptrdiff_t marker_position (Lisp_Object);
3135 extern ptrdiff_t marker_byte_position (Lisp_Object);
3136 extern void clear_charpos_cache (struct buffer *);
3137 extern ptrdiff_t charpos_to_bytepos (ptrdiff_t);
3138 extern ptrdiff_t buf_charpos_to_bytepos (struct buffer *, ptrdiff_t);
3139 extern ptrdiff_t buf_bytepos_to_charpos (struct buffer *, ptrdiff_t);
3140 extern void unchain_marker (struct Lisp_Marker *marker);
3141 extern Lisp_Object set_marker_restricted (Lisp_Object, Lisp_Object, Lisp_Object);
3142 extern Lisp_Object set_marker_both (Lisp_Object, Lisp_Object, ptrdiff_t, ptrdiff_t);
3143 extern Lisp_Object set_marker_restricted_both (Lisp_Object, Lisp_Object,
3144 ptrdiff_t, ptrdiff_t);
3145 extern void syms_of_marker (void);
3146
3147 /* Defined in fileio.c */
3148
3149 extern Lisp_Object Qfile_error;
3150 extern Lisp_Object Qfile_exists_p;
3151 extern Lisp_Object Qfile_directory_p;
3152 extern Lisp_Object Qinsert_file_contents;
3153 extern Lisp_Object Qfile_name_history;
3154 EXFUN (Ffind_file_name_handler, 2);
3155 EXFUN (Ffile_name_as_directory, 1);
3156 EXFUN (Fexpand_file_name, 2);
3157 EXFUN (Ffile_name_nondirectory, 1);
3158 EXFUN (Fsubstitute_in_file_name, 1);
3159 EXFUN (Ffile_symlink_p, 1);
3160 EXFUN (Fverify_visited_file_modtime, 1);
3161 EXFUN (Ffile_exists_p, 1);
3162 EXFUN (Ffile_name_absolute_p, 1);
3163 EXFUN (Fdirectory_file_name, 1);
3164 EXFUN (Ffile_name_directory, 1);
3165 extern Lisp_Object expand_and_dir_to_file (Lisp_Object, Lisp_Object);
3166 EXFUN (Ffile_accessible_directory_p, 1);
3167 EXFUN (Funhandled_file_name_directory, 1);
3168 EXFUN (Ffile_directory_p, 1);
3169 EXFUN (Fwrite_region, 7);
3170 EXFUN (Ffile_readable_p, 1);
3171 EXFUN (Fread_file_name, 6);
3172 extern Lisp_Object close_file_unwind (Lisp_Object);
3173 extern Lisp_Object restore_point_unwind (Lisp_Object);
3174 extern void report_file_error (const char *, Lisp_Object) NO_RETURN;
3175 extern int internal_delete_file (Lisp_Object);
3176 extern void syms_of_fileio (void);
3177 extern Lisp_Object make_temp_name (Lisp_Object, int);
3178 extern Lisp_Object Qdelete_file;
3179
3180 /* Defined in search.c */
3181 extern void shrink_regexp_cache (void);
3182 EXFUN (Fstring_match, 3);
3183 extern void restore_search_regs (void);
3184 EXFUN (Fmatch_data, 3);
3185 EXFUN (Fset_match_data, 2);
3186 EXFUN (Fmatch_beginning, 1);
3187 EXFUN (Fmatch_end, 1);
3188 extern void record_unwind_save_match_data (void);
3189 struct re_registers;
3190 extern struct re_pattern_buffer *compile_pattern (Lisp_Object,
3191 struct re_registers *,
3192 Lisp_Object, int, int);
3193 extern ptrdiff_t fast_string_match (Lisp_Object, Lisp_Object);
3194 extern ptrdiff_t fast_c_string_match_ignore_case (Lisp_Object, const char *);
3195 extern ptrdiff_t fast_string_match_ignore_case (Lisp_Object, Lisp_Object);
3196 extern ptrdiff_t fast_looking_at (Lisp_Object, ptrdiff_t, ptrdiff_t,
3197 ptrdiff_t, ptrdiff_t, Lisp_Object);
3198 extern ptrdiff_t scan_buffer (int, ptrdiff_t, ptrdiff_t, ptrdiff_t,
3199 ptrdiff_t *, int);
3200 extern EMACS_INT scan_newline (ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t,
3201 EMACS_INT, int);
3202 extern ptrdiff_t find_next_newline (ptrdiff_t, int);
3203 extern ptrdiff_t find_next_newline_no_quit (ptrdiff_t, ptrdiff_t);
3204 extern ptrdiff_t find_before_next_newline (ptrdiff_t, ptrdiff_t, ptrdiff_t);
3205 extern void syms_of_search (void);
3206 extern void clear_regexp_cache (void);
3207
3208 /* Defined in minibuf.c */
3209
3210 extern Lisp_Object Qcompletion_ignore_case;
3211 extern Lisp_Object Vminibuffer_list;
3212 extern Lisp_Object last_minibuf_string;
3213 EXFUN (Fcompleting_read, 8);
3214 EXFUN (Fread_from_minibuffer, 7);
3215 EXFUN (Fread_variable, 2);
3216 EXFUN (Fread_buffer, 3);
3217 EXFUN (Fread_minibuffer, 2);
3218 EXFUN (Feval_minibuffer, 2);
3219 EXFUN (Fread_string, 5);
3220 EXFUN (Fassoc_string, 3);
3221 extern Lisp_Object get_minibuffer (EMACS_INT);
3222 extern void init_minibuf_once (void);
3223 extern void syms_of_minibuf (void);
3224
3225 /* Defined in callint.c */
3226
3227 extern Lisp_Object Qminus, Qplus;
3228 extern Lisp_Object Qwhen;
3229 extern Lisp_Object Qcall_interactively, Qmouse_leave_buffer_hook;
3230 EXFUN (Fprefix_numeric_value, 1);
3231 extern void syms_of_callint (void);
3232
3233 /* Defined in casefiddle.c */
3234
3235 extern Lisp_Object Qidentity;
3236 EXFUN (Fdowncase, 1);
3237 EXFUN (Fupcase, 1);
3238 EXFUN (Fupcase_region, 2);
3239 EXFUN (Fupcase_initials, 1);
3240 EXFUN (Fupcase_initials_region, 2);
3241 extern void syms_of_casefiddle (void);
3242 extern void keys_of_casefiddle (void);
3243
3244 /* Defined in casetab.c */
3245
3246 EXFUN (Fset_case_table, 1);
3247 EXFUN (Fset_standard_case_table, 1);
3248 extern void init_casetab_once (void);
3249 extern void syms_of_casetab (void);
3250
3251 /* Defined in keyboard.c */
3252
3253 extern Lisp_Object echo_message_buffer;
3254 extern struct kboard *echo_kboard;
3255 extern void cancel_echoing (void);
3256 extern Lisp_Object Qdisabled, QCfilter;
3257 extern Lisp_Object Qup, Qdown, Qbottom;
3258 extern Lisp_Object Qtop;
3259 extern int input_pending;
3260 EXFUN (Fdiscard_input, 0);
3261 EXFUN (Frecursive_edit, 0);
3262 EXFUN (Ftop_level, 0) NO_RETURN;
3263 extern Lisp_Object menu_bar_items (Lisp_Object);
3264 extern Lisp_Object tool_bar_items (Lisp_Object, int *);
3265 extern void discard_mouse_events (void);
3266 EXFUN (Fevent_convert_list, 1);
3267 EXFUN (Fread_key_sequence, 5);
3268 EXFUN (Fset_input_interrupt_mode, 1);
3269 EXFUN (Fset_input_mode, 4);
3270 extern Lisp_Object pending_funcalls;
3271 extern int detect_input_pending (void);
3272 extern int detect_input_pending_ignore_squeezables (void);
3273 extern int detect_input_pending_run_timers (int);
3274 extern void safe_run_hooks (Lisp_Object);
3275 extern void cmd_error_internal (Lisp_Object, const char *);
3276 extern Lisp_Object command_loop_1 (void);
3277 extern Lisp_Object recursive_edit_1 (void);
3278 extern void record_auto_save (void);
3279 #ifdef SIGDANGER
3280 extern void force_auto_save_soon (void);
3281 #endif
3282 extern void init_keyboard (void);
3283 extern void syms_of_keyboard (void);
3284 extern void keys_of_keyboard (void);
3285
3286 /* Defined in indent.c */
3287 EXFUN (Fvertical_motion, 2);
3288 EXFUN (Findent_to, 2);
3289 EXFUN (Fmove_to_column, 2);
3290 extern ptrdiff_t current_column (void);
3291 extern void invalidate_current_column (void);
3292 extern int indented_beyond_p (ptrdiff_t, ptrdiff_t, EMACS_INT);
3293 extern void syms_of_indent (void);
3294
3295 /* Defined in frame.c */
3296 #ifdef HAVE_WINDOW_SYSTEM
3297 #endif /* HAVE_WINDOW_SYSTEM */
3298 extern Lisp_Object Qonly;
3299 extern Lisp_Object Qvisible;
3300 extern void store_frame_param (struct frame *, Lisp_Object, Lisp_Object);
3301 extern void store_in_alist (Lisp_Object *, Lisp_Object, Lisp_Object);
3302 extern Lisp_Object do_switch_frame (Lisp_Object, int, int, Lisp_Object);
3303 #if HAVE_NS
3304 extern Lisp_Object get_frame_param (struct frame *, Lisp_Object);
3305 #endif
3306 extern Lisp_Object frame_buffer_predicate (Lisp_Object);
3307 EXFUN (Fselect_frame, 2);
3308 EXFUN (Fselected_frame, 0);
3309 EXFUN (Fmake_frame_visible, 1);
3310 EXFUN (Ficonify_frame, 1);
3311 EXFUN (Fframe_parameter, 2);
3312 EXFUN (Fmodify_frame_parameters, 2);
3313 EXFUN (Fraise_frame, 1);
3314 EXFUN (Fredirect_frame_focus, 2);
3315 extern void frames_discard_buffer (Lisp_Object);
3316 extern void syms_of_frame (void);
3317
3318 /* Defined in emacs.c */
3319 extern char **initial_argv;
3320 extern int initial_argc;
3321 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NS)
3322 extern int display_arg;
3323 #endif
3324 extern Lisp_Object decode_env_path (const char *, const char *);
3325 extern Lisp_Object empty_unibyte_string, empty_multibyte_string;
3326 extern Lisp_Object Qfile_name_handler_alist;
3327 #ifdef FLOAT_CATCH_SIGILL
3328 extern void fatal_error_signal (int);
3329 #endif
3330 extern Lisp_Object Qkill_emacs;
3331 EXFUN (Fkill_emacs, 1) NO_RETURN;
3332 #if HAVE_SETLOCALE
3333 void fixup_locale (void);
3334 void synchronize_system_messages_locale (void);
3335 void synchronize_system_time_locale (void);
3336 #else
3337 #define setlocale(category, locale)
3338 #define fixup_locale()
3339 #define synchronize_system_messages_locale()
3340 #define synchronize_system_time_locale()
3341 #endif
3342 void shut_down_emacs (int, int, Lisp_Object);
3343 /* Nonzero means don't do interactive redisplay and don't change tty modes. */
3344 extern int noninteractive;
3345
3346 /* Nonzero means remove site-lisp directories from load-path. */
3347 extern int no_site_lisp;
3348
3349 /* Pipe used to send exit notification to the daemon parent at
3350 startup. */
3351 extern int daemon_pipe[2];
3352 #define IS_DAEMON (daemon_pipe[1] != 0)
3353
3354 /* Nonzero means don't do use window-system-specific display code. */
3355 extern int inhibit_window_system;
3356 /* Nonzero means that a filter or a sentinel is running. */
3357 extern int running_asynch_code;
3358
3359 /* Defined in process.c. */
3360 extern Lisp_Object QCtype, Qlocal;
3361 EXFUN (Fget_buffer_process, 1);
3362 EXFUN (Fprocess_status, 1);
3363 EXFUN (Fkill_process, 2);
3364 EXFUN (Fwaiting_for_user_input_p, 0);
3365 extern Lisp_Object Qprocessp;
3366 extern void kill_buffer_processes (Lisp_Object);
3367 extern int wait_reading_process_output (int, int, int, int,
3368 Lisp_Object,
3369 struct Lisp_Process *,
3370 int);
3371 extern void add_keyboard_wait_descriptor (int);
3372 extern void delete_keyboard_wait_descriptor (int);
3373 #ifdef HAVE_GPM
3374 extern void add_gpm_wait_descriptor (int);
3375 extern void delete_gpm_wait_descriptor (int);
3376 #endif
3377 extern void close_process_descs (void);
3378 extern void init_process (void);
3379 extern void syms_of_process (void);
3380 extern void setup_process_coding_systems (Lisp_Object);
3381
3382 EXFUN (Fcall_process, MANY);
3383 extern int child_setup (int, int, int, char **, int, Lisp_Object)
3384 #ifndef DOS_NT
3385 NO_RETURN
3386 #endif
3387 ;
3388 extern void init_callproc_1 (void);
3389 extern void init_callproc (void);
3390 extern void set_initial_environment (void);
3391 extern void syms_of_callproc (void);
3392
3393 /* Defined in doc.c */
3394 extern Lisp_Object Qfunction_documentation;
3395 EXFUN (Fsubstitute_command_keys, 1);
3396 extern Lisp_Object read_doc_string (Lisp_Object);
3397 extern Lisp_Object get_doc_string (Lisp_Object, int, int);
3398 extern void syms_of_doc (void);
3399 extern int read_bytecode_char (int);
3400
3401 /* Defined in bytecode.c */
3402 extern Lisp_Object Qbytecode;
3403 extern void syms_of_bytecode (void);
3404 extern struct byte_stack *byte_stack_list;
3405 #if BYTE_MARK_STACK
3406 extern void mark_byte_stack (void);
3407 #endif
3408 extern void unmark_byte_stack (void);
3409 extern Lisp_Object exec_byte_code (Lisp_Object, Lisp_Object, Lisp_Object,
3410 Lisp_Object, ptrdiff_t, Lisp_Object *);
3411
3412 /* Defined in macros.c */
3413 extern Lisp_Object Qexecute_kbd_macro;
3414 EXFUN (Fexecute_kbd_macro, 3);
3415 EXFUN (Fcancel_kbd_macro_events, 0);
3416 extern void init_macros (void);
3417 extern void syms_of_macros (void);
3418
3419 /* Defined in undo.c */
3420 extern Lisp_Object Qapply;
3421 extern Lisp_Object Qinhibit_read_only;
3422 EXFUN (Fundo_boundary, 0);
3423 extern void truncate_undo_list (struct buffer *);
3424 extern void record_marker_adjustment (Lisp_Object, ptrdiff_t);
3425 extern void record_insert (ptrdiff_t, ptrdiff_t);
3426 extern void record_delete (ptrdiff_t, Lisp_Object);
3427 extern void record_first_change (void);
3428 extern void record_change (ptrdiff_t, ptrdiff_t);
3429 extern void record_property_change (ptrdiff_t, ptrdiff_t,
3430 Lisp_Object, Lisp_Object,
3431 Lisp_Object);
3432 extern void syms_of_undo (void);
3433 /* Defined in textprop.c */
3434 extern Lisp_Object Qfont, Qmouse_face;
3435 extern Lisp_Object Qinsert_in_front_hooks, Qinsert_behind_hooks;
3436 extern Lisp_Object Qfront_sticky, Qrear_nonsticky;
3437 extern Lisp_Object Qminibuffer_prompt;
3438
3439 EXFUN (Fnext_single_property_change, 4);
3440 EXFUN (Fnext_single_char_property_change, 4);
3441 EXFUN (Fprevious_single_property_change, 4);
3442 EXFUN (Fget_text_property, 3);
3443 EXFUN (Fput_text_property, 5);
3444 EXFUN (Fprevious_char_property_change, 2);
3445 EXFUN (Fnext_char_property_change, 2);
3446 extern void report_interval_modification (Lisp_Object, Lisp_Object);
3447
3448 /* Defined in menu.c */
3449 extern void syms_of_menu (void);
3450
3451 /* Defined in xmenu.c */
3452 EXFUN (Fx_popup_menu, 2);
3453 EXFUN (Fx_popup_dialog, 3);
3454 extern void syms_of_xmenu (void);
3455
3456 /* Defined in termchar.h */
3457 struct tty_display_info;
3458
3459 /* Defined in termhooks.h */
3460 struct terminal;
3461
3462 /* Defined in sysdep.c */
3463 #ifndef HAVE_GET_CURRENT_DIR_NAME
3464 extern char *get_current_dir_name (void);
3465 #endif
3466 extern void stuff_char (char c);
3467 extern void init_sigio (int);
3468 extern void sys_subshell (void);
3469 extern void sys_suspend (void);
3470 extern void discard_tty_input (void);
3471 extern void init_sys_modes (struct tty_display_info *);
3472 extern void reset_sys_modes (struct tty_display_info *);
3473 extern void init_all_sys_modes (void);
3474 extern void reset_all_sys_modes (void);
3475 extern void wait_for_termination (pid_t);
3476 extern void interruptible_wait_for_termination (pid_t);
3477 extern void flush_pending_output (int);
3478 extern void child_setup_tty (int);
3479 extern void setup_pty (int);
3480 extern int set_window_size (int, int, int);
3481 extern EMACS_INT get_random (void);
3482 extern void seed_random (long);
3483 extern int emacs_open (const char *, int, int);
3484 extern int emacs_close (int);
3485 extern ptrdiff_t emacs_read (int, char *, ptrdiff_t);
3486 extern ptrdiff_t emacs_write (int, const char *, ptrdiff_t);
3487 enum { READLINK_BUFSIZE = 1024 };
3488 extern char *emacs_readlink (const char *, char [READLINK_BUFSIZE]);
3489
3490 EXFUN (Funlock_buffer, 0);
3491 extern void unlock_all_files (void);
3492 extern void lock_file (Lisp_Object);
3493 extern void unlock_file (Lisp_Object);
3494 extern void unlock_buffer (struct buffer *);
3495 extern void syms_of_filelock (void);
3496 extern void init_filelock (void);
3497
3498 /* Defined in sound.c */
3499 extern void syms_of_sound (void);
3500 extern void init_sound (void);
3501
3502 /* Defined in category.c */
3503 extern void init_category_once (void);
3504 extern Lisp_Object char_category_set (int);
3505 extern void syms_of_category (void);
3506
3507 /* Defined in ccl.c */
3508 extern void syms_of_ccl (void);
3509
3510 /* Defined in dired.c */
3511 extern void syms_of_dired (void);
3512 extern Lisp_Object directory_files_internal (Lisp_Object, Lisp_Object,
3513 Lisp_Object, Lisp_Object,
3514 int, Lisp_Object);
3515
3516 /* Defined in term.c */
3517 extern int *char_ins_del_vector;
3518 extern void mark_ttys (void);
3519 extern void syms_of_term (void);
3520 extern void fatal (const char *msgid, ...)
3521 NO_RETURN ATTRIBUTE_FORMAT_PRINTF (1, 2);
3522
3523 /* Defined in terminal.c */
3524 EXFUN (Fframe_terminal, 1);
3525 EXFUN (Fdelete_terminal, 2);
3526 extern void syms_of_terminal (void);
3527
3528 /* Defined in font.c */
3529 extern void syms_of_font (void);
3530 extern void init_font (void);
3531
3532 #ifdef HAVE_WINDOW_SYSTEM
3533 /* Defined in fontset.c */
3534 extern void syms_of_fontset (void);
3535
3536 /* Defined in xfns.c, w32fns.c, or macfns.c */
3537 extern Lisp_Object Qfont_param;
3538 EXFUN (Fxw_display_color_p, 1);
3539 EXFUN (Fx_focus_frame, 1);
3540 #endif
3541
3542 /* Defined in xfaces.c */
3543 extern Lisp_Object Qdefault, Qtool_bar, Qfringe;
3544 extern Lisp_Object Qheader_line, Qscroll_bar, Qcursor;
3545 extern Lisp_Object Qmode_line_inactive;
3546 extern Lisp_Object Qface;
3547 extern Lisp_Object Qnormal;
3548 extern Lisp_Object QCfamily, QCweight, QCslant;
3549 extern Lisp_Object QCheight, QCname, QCwidth, QCforeground, QCbackground;
3550 extern Lisp_Object Vface_alternative_font_family_alist;
3551 extern Lisp_Object Vface_alternative_font_registry_alist;
3552 EXFUN (Fclear_face_cache, 1);
3553 EXFUN (Fx_load_color_file, 1);
3554 extern void syms_of_xfaces (void);
3555
3556 #ifdef HAVE_X_WINDOWS
3557 /* Defined in xfns.c */
3558 extern void syms_of_xfns (void);
3559
3560 /* Defined in xsmfns.c */
3561 extern void syms_of_xsmfns (void);
3562
3563 /* Defined in xselect.c */
3564 extern void syms_of_xselect (void);
3565
3566 /* Defined in xterm.c */
3567 extern void syms_of_xterm (void);
3568 #endif /* HAVE_X_WINDOWS */
3569
3570 #ifdef HAVE_WINDOW_SYSTEM
3571 /* Defined in xterm.c, nsterm.m, w32term.c */
3572 extern char *x_get_keysym_name (int);
3573 #endif /* HAVE_WINDOW_SYSTEM */
3574
3575 #ifdef MSDOS
3576 /* Defined in msdos.c */
3577 EXFUN (Fmsdos_downcase_filename, 1);
3578 #endif
3579
3580 #ifdef HAVE_LIBXML2
3581 /* Defined in xml.c */
3582 extern void syms_of_xml (void);
3583 extern void xml_cleanup_parser (void);
3584 #endif
3585
3586 #ifdef HAVE_MENUS
3587 /* Defined in (x|w32)fns.c, nsfns.m... */
3588 extern int have_menus_p (void);
3589 #endif
3590
3591 #ifdef HAVE_DBUS
3592 /* Defined in dbusbind.c */
3593 void syms_of_dbusbind (void);
3594 #endif
3595
3596 #ifdef DOS_NT
3597 /* Defined in msdos.c, w32.c */
3598 extern char *emacs_root_dir (void);
3599 #endif /* DOS_NT */
3600 \f
3601 /* Nonzero means Emacs has already been initialized.
3602 Used during startup to detect startup of dumped Emacs. */
3603 extern int initialized;
3604
3605 extern int immediate_quit; /* Nonzero means ^G can quit instantly */
3606
3607 extern POINTER_TYPE *xmalloc (size_t);
3608 extern POINTER_TYPE *xrealloc (POINTER_TYPE *, size_t);
3609 extern void xfree (POINTER_TYPE *);
3610 extern void *xnmalloc (ptrdiff_t, ptrdiff_t);
3611 extern void *xnrealloc (void *, ptrdiff_t, ptrdiff_t);
3612 extern void *xpalloc (void *, ptrdiff_t *, ptrdiff_t, ptrdiff_t, ptrdiff_t);
3613
3614 extern char *xstrdup (const char *);
3615
3616 extern char *egetenv (const char *);
3617
3618 /* Set up the name of the machine we're running on. */
3619 extern void init_system_name (void);
3620
3621 /* Some systems (e.g., NT) use a different path separator than Unix,
3622 in addition to a device separator. Set the path separator
3623 to '/', and don't test for a device separator in IS_ANY_SEP. */
3624
3625 #define DIRECTORY_SEP '/'
3626 #ifndef IS_DIRECTORY_SEP
3627 #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
3628 #endif
3629 #ifndef IS_DEVICE_SEP
3630 #ifndef DEVICE_SEP
3631 #define IS_DEVICE_SEP(_c_) 0
3632 #else
3633 #define IS_DEVICE_SEP(_c_) ((_c_) == DEVICE_SEP)
3634 #endif
3635 #endif
3636 #ifndef IS_ANY_SEP
3637 #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
3638 #endif
3639
3640 #define SWITCH_ENUM_CAST(x) (x)
3641
3642 /* Use this to suppress gcc's warnings. */
3643 #ifdef lint
3644
3645 /* Use CODE only if lint checking is in effect. */
3646 # define IF_LINT(Code) Code
3647
3648 /* Assume that the expression COND is true. This differs in intent
3649 from 'assert', as it is a message from the programmer to the compiler. */
3650 # define lint_assume(cond) ((cond) ? (void) 0 : abort ())
3651
3652 #else
3653 # define IF_LINT(Code) /* empty */
3654 # define lint_assume(cond) ((void) (0 && (cond)))
3655 #endif
3656
3657 /* The ubiquitous min and max macros. */
3658
3659 #ifdef max
3660 #undef max
3661 #undef min
3662 #endif
3663 #define min(a, b) ((a) < (b) ? (a) : (b))
3664 #define max(a, b) ((a) > (b) ? (a) : (b))
3665
3666 /* We used to use `abs', but that clashes with system headers on some
3667 platforms, and using a name reserved by Standard C is a bad idea
3668 anyway. */
3669 #if !defined (eabs)
3670 #define eabs(x) ((x) < 0 ? -(x) : (x))
3671 #endif
3672
3673 /* Return a fixnum or float, depending on whether VAL fits in a Lisp
3674 fixnum. */
3675
3676 #define make_fixnum_or_float(val) \
3677 (FIXNUM_OVERFLOW_P (val) ? make_float (val) : make_number (val))
3678
3679
3680 /* Checks the `cycle check' variable CHECK to see if it indicates that
3681 EL is part of a cycle; CHECK must be either Qnil or a value returned
3682 by an earlier use of CYCLE_CHECK. SUSPICIOUS is the number of
3683 elements after which a cycle might be suspected; after that many
3684 elements, this macro begins consing in order to keep more precise
3685 track of elements.
3686
3687 Returns nil if a cycle was detected, otherwise a new value for CHECK
3688 that includes EL.
3689
3690 CHECK is evaluated multiple times, EL and SUSPICIOUS 0 or 1 times, so
3691 the caller should make sure that's ok. */
3692
3693 #define CYCLE_CHECK(check, el, suspicious) \
3694 (NILP (check) \
3695 ? make_number (0) \
3696 : (INTEGERP (check) \
3697 ? (XFASTINT (check) < (suspicious) \
3698 ? make_number (XFASTINT (check) + 1) \
3699 : Fcons (el, Qnil)) \
3700 : (!NILP (Fmemq ((el), (check))) \
3701 ? Qnil \
3702 : Fcons ((el), (check)))))
3703
3704
3705 /* SAFE_ALLOCA normally allocates memory on the stack, but if size is
3706 larger than MAX_ALLOCA, use xmalloc to avoid overflowing the stack. */
3707
3708 #define MAX_ALLOCA 16*1024
3709
3710 extern Lisp_Object safe_alloca_unwind (Lisp_Object);
3711
3712 #define USE_SAFE_ALLOCA \
3713 ptrdiff_t sa_count = SPECPDL_INDEX (); int sa_must_free = 0
3714
3715 /* SAFE_ALLOCA allocates a simple buffer. */
3716
3717 #define SAFE_ALLOCA(buf, type, size) \
3718 do { \
3719 if ((size) < MAX_ALLOCA) \
3720 buf = (type) alloca (size); \
3721 else \
3722 { \
3723 buf = (type) xmalloc (size); \
3724 sa_must_free = 1; \
3725 record_unwind_protect (safe_alloca_unwind, \
3726 make_save_value (buf, 0)); \
3727 } \
3728 } while (0)
3729
3730 /* SAFE_NALLOCA sets BUF to a newly allocated array of MULTIPLIER *
3731 NITEMS items, each of the same type as *BUF. MULTIPLIER must
3732 positive. The code is tuned for MULTIPLIER being a constant. */
3733
3734 #define SAFE_NALLOCA(buf, multiplier, nitems) \
3735 do { \
3736 if ((nitems) <= MAX_ALLOCA / sizeof *(buf) / (multiplier)) \
3737 (buf) = alloca (sizeof *(buf) * (multiplier) * (nitems)); \
3738 else \
3739 { \
3740 (buf) = xnmalloc (nitems, sizeof *(buf) * (multiplier)); \
3741 sa_must_free = 1; \
3742 record_unwind_protect (safe_alloca_unwind, \
3743 make_save_value (buf, 0)); \
3744 } \
3745 } while (0)
3746
3747 /* SAFE_FREE frees xmalloced memory and enables GC as needed. */
3748
3749 #define SAFE_FREE() \
3750 do { \
3751 if (sa_must_free) { \
3752 sa_must_free = 0; \
3753 unbind_to (sa_count, Qnil); \
3754 } \
3755 } while (0)
3756
3757
3758 /* SAFE_ALLOCA_LISP allocates an array of Lisp_Objects. */
3759
3760 #define SAFE_ALLOCA_LISP(buf, nelt) \
3761 do { \
3762 if ((nelt) < MAX_ALLOCA / sizeof (Lisp_Object)) \
3763 buf = (Lisp_Object *) alloca ((nelt) * sizeof (Lisp_Object)); \
3764 else if ((nelt) < min (PTRDIFF_MAX, SIZE_MAX) / sizeof (Lisp_Object)) \
3765 { \
3766 Lisp_Object arg_; \
3767 buf = (Lisp_Object *) xmalloc ((nelt) * sizeof (Lisp_Object)); \
3768 arg_ = make_save_value (buf, nelt); \
3769 XSAVE_VALUE (arg_)->dogc = 1; \
3770 sa_must_free = 1; \
3771 record_unwind_protect (safe_alloca_unwind, arg_); \
3772 } \
3773 else \
3774 memory_full (SIZE_MAX); \
3775 } while (0)
3776
3777
3778 #include "globals.h"
3779
3780 #endif /* EMACS_LISP_H */