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