* lisp.h (eassume): New macro.
[emacs.git] / src / lisp.h
blobe4a2caa1083e5f75491c18c6f72ed0c7357ba91b
1 /* Fundamental definitions for GNU Emacs Lisp interpreter.
3 Copyright (C) 1985-1987, 1993-1995, 1997-2013 Free Software Foundation,
4 Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
21 #ifndef EMACS_LISP_H
22 #define EMACS_LISP_H
24 #include <setjmp.h>
25 #include <stdalign.h>
26 #include <stdarg.h>
27 #include <stdbool.h>
28 #include <stddef.h>
29 #include <float.h>
30 #include <inttypes.h>
31 #include <limits.h>
33 #include <intprops.h>
34 #include <verify.h>
36 INLINE_HEADER_BEGIN
38 /* The ubiquitous max and min macros. */
39 #undef min
40 #undef max
41 #define max(a, b) ((a) > (b) ? (a) : (b))
42 #define min(a, b) ((a) < (b) ? (a) : (b))
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 */
48 #ifndef EMACS_INT_MAX
49 # if LONG_MAX < LLONG_MAX && defined WIDE_EMACS_INT
50 typedef long long int EMACS_INT;
51 typedef unsigned long long int EMACS_UINT;
52 # define EMACS_INT_MAX LLONG_MAX
53 # define pI "ll"
54 # elif INT_MAX < LONG_MAX
55 typedef long int EMACS_INT;
56 typedef unsigned long int EMACS_UINT;
57 # define EMACS_INT_MAX LONG_MAX
58 # define pI "l"
59 # else
60 typedef int EMACS_INT;
61 typedef unsigned int EMACS_UINT;
62 # define EMACS_INT_MAX INT_MAX
63 # define pI ""
64 # endif
65 #endif
67 /* An unsigned integer type representing a fixed-length bit sequence,
68 suitable for words in a Lisp bool vector. */
69 typedef size_t bits_word;
70 #define BITS_WORD_MAX SIZE_MAX
72 /* Number of bits in some machine integer types. */
73 enum
75 BITS_PER_CHAR = CHAR_BIT,
76 BITS_PER_SHORT = CHAR_BIT * sizeof (short),
77 BITS_PER_INT = CHAR_BIT * sizeof (int),
78 BITS_PER_LONG = CHAR_BIT * sizeof (long int),
79 BITS_PER_BITS_WORD = CHAR_BIT * sizeof (bits_word),
80 BITS_PER_EMACS_INT = CHAR_BIT * sizeof (EMACS_INT)
83 /* printmax_t and uprintmax_t are types for printing large integers.
84 These are the widest integers that are supported for printing.
85 pMd etc. are conversions for printing them.
86 On C99 hosts, there's no problem, as even the widest integers work.
87 Fall back on EMACS_INT on pre-C99 hosts. */
88 #ifdef PRIdMAX
89 typedef intmax_t printmax_t;
90 typedef uintmax_t uprintmax_t;
91 # define pMd PRIdMAX
92 # define pMu PRIuMAX
93 #else
94 typedef EMACS_INT printmax_t;
95 typedef EMACS_UINT uprintmax_t;
96 # define pMd pI"d"
97 # define pMu pI"u"
98 #endif
100 /* Use pD to format ptrdiff_t values, which suffice for indexes into
101 buffers and strings. Emacs never allocates objects larger than
102 PTRDIFF_MAX bytes, as they cause problems with pointer subtraction.
103 In C99, pD can always be "t"; configure it here for the sake of
104 pre-C99 libraries such as glibc 2.0 and Solaris 8. */
105 #if PTRDIFF_MAX == INT_MAX
106 # define pD ""
107 #elif PTRDIFF_MAX == LONG_MAX
108 # define pD "l"
109 #elif PTRDIFF_MAX == LLONG_MAX
110 # define pD "ll"
111 #else
112 # define pD "t"
113 #endif
115 /* Extra internal type checking? */
117 /* Define Emacs versions of <assert.h>'s 'assert (COND)' and <verify.h>'s
118 'assume (COND)'. COND should be free of side effects, as it may or
119 may not be evaluated.
121 'eassert (COND)' checks COND at runtime if ENABLE_CHECKING is
122 defined and suppress_checking is false, and does nothing otherwise.
123 Emacs dies if COND is checked and is false. The suppress_checking
124 variable is initialized to 0 in alloc.c. Set it to 1 using a
125 debugger to temporarily disable aborting on detected internal
126 inconsistencies or error conditions.
128 In some cases, a good compiler may be able to optimize away the
129 eassert macro even if ENABLE_CHECKING is true, e.g., if XSTRING (x)
130 uses eassert to test STRINGP (x), but a particular use of XSTRING
131 is invoked only after testing that STRINGP (x) is true, making the
132 test redundant.
134 eassume is like eassert except that it also causes the compiler to
135 assume that COND is true afterwards, regardless of whether runtime
136 checking is enabled. This can improve performance in some cases,
137 though it can degrade performance in others. It's often suboptimal
138 for COND to call external functions or access volatile storage. */
140 #ifndef ENABLE_CHECKING
141 # define eassert(cond) ((void) (0 && (cond))) /* Check that COND compiles. */
142 # define eassume(cond) assume (cond)
143 #else /* ENABLE_CHECKING */
145 extern _Noreturn void die (const char *, const char *, int);
147 extern bool suppress_checking EXTERNALLY_VISIBLE;
149 # define eassert(cond) \
150 (suppress_checking || (cond) \
151 ? (void) 0 \
152 : die (# cond, __FILE__, __LINE__))
153 # define eassume(cond) \
154 (suppress_checking \
155 ? assume (cond) \
156 : (cond) \
157 ? (void) 0 \
158 : die (# cond, __FILE__, __LINE__))
159 #endif /* ENABLE_CHECKING */
162 /* Use the configure flag --enable-check-lisp-object-type to make
163 Lisp_Object use a struct type instead of the default int. The flag
164 causes CHECK_LISP_OBJECT_TYPE to be defined. */
166 /***** Select the tagging scheme. *****/
167 /* The following option controls the tagging scheme:
168 - USE_LSB_TAG means that we can assume the least 3 bits of pointers are
169 always 0, and we can thus use them to hold tag bits, without
170 restricting our addressing space.
172 If ! USE_LSB_TAG, then use the top 3 bits for tagging, thus
173 restricting our possible address range.
175 USE_LSB_TAG not only requires the least 3 bits of pointers returned by
176 malloc to be 0 but also needs to be able to impose a mult-of-8 alignment
177 on the few static Lisp_Objects used: all the defsubr as well
178 as the two special buffers buffer_defaults and buffer_local_symbols. */
180 enum Lisp_Bits
182 /* Number of bits in a Lisp_Object tag. This can be used in #if,
183 and for GDB's sake also as a regular symbol. */
184 GCTYPEBITS =
185 #define GCTYPEBITS 3
186 GCTYPEBITS,
188 /* 2**GCTYPEBITS. This must be a macro that expands to a literal
189 integer constant, for MSVC. */
190 #define GCALIGNMENT 8
192 /* Number of bits in a Lisp_Object value, not counting the tag. */
193 VALBITS = BITS_PER_EMACS_INT - GCTYPEBITS,
195 /* Number of bits in a Lisp fixnum tag. */
196 INTTYPEBITS = GCTYPEBITS - 1,
198 /* Number of bits in a Lisp fixnum value, not counting the tag. */
199 FIXNUM_BITS = VALBITS + 1
202 #if GCALIGNMENT != 1 << GCTYPEBITS
203 # error "GCALIGNMENT and GCTYPEBITS are inconsistent"
204 #endif
206 /* The maximum value that can be stored in a EMACS_INT, assuming all
207 bits other than the type bits contribute to a nonnegative signed value.
208 This can be used in #if, e.g., '#if VAL_MAX < UINTPTR_MAX' below. */
209 #define VAL_MAX (EMACS_INT_MAX >> (GCTYPEBITS - 1))
211 /* Unless otherwise specified, use USE_LSB_TAG on systems where: */
212 #ifndef USE_LSB_TAG
213 /* 1. We know malloc returns a multiple of 8. */
214 # if (defined GNU_MALLOC || defined DOUG_LEA_MALLOC || defined __GLIBC__ \
215 || defined DARWIN_OS || defined __sun)
216 /* 2. We can specify multiple-of-8 alignment on static variables. */
217 # ifdef alignas
218 /* 3. Pointers-as-ints exceed VAL_MAX.
219 On hosts where pointers-as-ints do not exceed VAL_MAX, USE_LSB_TAG is:
220 a. unnecessary, because the top bits of an EMACS_INT are unused, and
221 b. slower, because it typically requires extra masking.
222 So, default USE_LSB_TAG to 1 only on hosts where it might be useful. */
223 # if VAL_MAX < UINTPTR_MAX
224 # define USE_LSB_TAG 1
225 # endif
226 # endif
227 # endif
228 #endif
229 #ifdef USE_LSB_TAG
230 # undef USE_LSB_TAG
231 enum enum_USE_LSB_TAG { USE_LSB_TAG = 1 };
232 # define USE_LSB_TAG 1
233 #else
234 enum enum_USE_LSB_TAG { USE_LSB_TAG = 0 };
235 # define USE_LSB_TAG 0
236 #endif
238 #ifndef alignas
239 # define alignas(alignment) /* empty */
240 # if USE_LSB_TAG
241 # error "USE_LSB_TAG requires alignas"
242 # endif
243 #endif
246 /* Some operations are so commonly executed that they are implemented
247 as macros, not functions, because otherwise runtime performance would
248 suffer too much when compiling with GCC without optimization.
249 There's no need to inline everything, just the operations that
250 would otherwise cause a serious performance problem.
252 For each such operation OP, define a macro lisp_h_OP that contains
253 the operation's implementation. That way, OP can be implemented
254 via a macro definition like this:
256 #define OP(x) lisp_h_OP (x)
258 and/or via a function definition like this:
260 LISP_MACRO_DEFUN (OP, Lisp_Object, (Lisp_Object x), (x))
262 which macro-expands to this:
264 Lisp_Object (OP) (Lisp_Object x) { return lisp_h_OP (x); }
266 without worrying about the implementations diverging, since
267 lisp_h_OP defines the actual implementation. The lisp_h_OP macros
268 are intended to be private to this include file, and should not be
269 used elsewhere.
271 FIXME: Remove the lisp_h_OP macros, and define just the inline OP
272 functions, once most developers have access to GCC 4.8 or later and
273 can use "gcc -Og" to debug. Maybe in the year 2016. See
274 Bug#11935.
276 Commentary for these macros can be found near their corresponding
277 functions, below. */
279 #if CHECK_LISP_OBJECT_TYPE
280 # define lisp_h_XLI(o) ((o).i)
281 # define lisp_h_XIL(i) ((Lisp_Object) { i })
282 #else
283 # define lisp_h_XLI(o) (o)
284 # define lisp_h_XIL(i) (i)
285 #endif
286 #define lisp_h_CHECK_LIST_CONS(x, y) CHECK_TYPE (CONSP (x), Qlistp, y)
287 #define lisp_h_CHECK_NUMBER(x) CHECK_TYPE (INTEGERP (x), Qintegerp, x)
288 #define lisp_h_CHECK_SYMBOL(x) CHECK_TYPE (SYMBOLP (x), Qsymbolp, x)
289 #define lisp_h_CHECK_TYPE(ok, Qxxxp, x) \
290 ((ok) ? (void) 0 : (void) wrong_type_argument (Qxxxp, x))
291 #define lisp_h_CONSP(x) (XTYPE (x) == Lisp_Cons)
292 #define lisp_h_EQ(x, y) (XLI (x) == XLI (y))
293 #define lisp_h_FLOATP(x) (XTYPE (x) == Lisp_Float)
294 #define lisp_h_INTEGERP(x) ((XTYPE (x) & ~Lisp_Int1) == 0)
295 #define lisp_h_MARKERP(x) (MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Marker)
296 #define lisp_h_MISCP(x) (XTYPE (x) == Lisp_Misc)
297 #define lisp_h_NILP(x) EQ (x, Qnil)
298 #define lisp_h_SET_SYMBOL_VAL(sym, v) \
299 (eassert ((sym)->redirect == SYMBOL_PLAINVAL), (sym)->val.value = (v))
300 #define lisp_h_SYMBOL_CONSTANT_P(sym) (XSYMBOL (sym)->constant)
301 #define lisp_h_SYMBOL_VAL(sym) \
302 (eassert ((sym)->redirect == SYMBOL_PLAINVAL), (sym)->val.value)
303 #define lisp_h_SYMBOLP(x) (XTYPE (x) == Lisp_Symbol)
304 #define lisp_h_VECTORLIKEP(x) (XTYPE (x) == Lisp_Vectorlike)
305 #define lisp_h_XCAR(c) XCONS (c)->car
306 #define lisp_h_XCDR(c) XCONS (c)->u.cdr
307 #define lisp_h_XCONS(a) \
308 (eassert (CONSP (a)), (struct Lisp_Cons *) XUNTAG (a, Lisp_Cons))
309 #define lisp_h_XHASH(a) XUINT (a)
310 #define lisp_h_XPNTR(a) \
311 ((void *) (intptr_t) ((XLI (a) & VALMASK) | DATA_SEG_BITS))
312 #define lisp_h_XSYMBOL(a) \
313 (eassert (SYMBOLP (a)), (struct Lisp_Symbol *) XUNTAG (a, Lisp_Symbol))
314 #ifndef GC_CHECK_CONS_LIST
315 # define lisp_h_check_cons_list() ((void) 0)
316 #endif
317 #if USE_LSB_TAG
318 # define lisp_h_make_number(n) XIL ((EMACS_INT) (n) << INTTYPEBITS)
319 # define lisp_h_XFASTINT(a) XINT (a)
320 # define lisp_h_XINT(a) (XLI (a) >> INTTYPEBITS)
321 # define lisp_h_XTYPE(a) ((enum Lisp_Type) (XLI (a) & ~VALMASK))
322 # define lisp_h_XUNTAG(a, type) ((void *) (XLI (a) - (type)))
323 #endif
325 /* When compiling via gcc -O0, define the key operations as macros, as
326 Emacs is too slow otherwise. To disable this optimization, compile
327 with -DINLINING=0. */
328 #if (defined __NO_INLINE__ \
329 && ! defined __OPTIMIZE__ && ! defined __OPTIMIZE_SIZE__ \
330 && ! (defined INLINING && ! INLINING))
331 # define XLI(o) lisp_h_XLI (o)
332 # define XIL(i) lisp_h_XIL (i)
333 # define CHECK_LIST_CONS(x, y) lisp_h_CHECK_LIST_CONS (x, y)
334 # define CHECK_NUMBER(x) lisp_h_CHECK_NUMBER (x)
335 # define CHECK_SYMBOL(x) lisp_h_CHECK_SYMBOL (x)
336 # define CHECK_TYPE(ok, Qxxxp, x) lisp_h_CHECK_TYPE (ok, Qxxxp, x)
337 # define CONSP(x) lisp_h_CONSP (x)
338 # define EQ(x, y) lisp_h_EQ (x, y)
339 # define FLOATP(x) lisp_h_FLOATP (x)
340 # define INTEGERP(x) lisp_h_INTEGERP (x)
341 # define MARKERP(x) lisp_h_MARKERP (x)
342 # define MISCP(x) lisp_h_MISCP (x)
343 # define NILP(x) lisp_h_NILP (x)
344 # define SET_SYMBOL_VAL(sym, v) lisp_h_SET_SYMBOL_VAL (sym, v)
345 # define SYMBOL_CONSTANT_P(sym) lisp_h_SYMBOL_CONSTANT_P (sym)
346 # define SYMBOL_VAL(sym) lisp_h_SYMBOL_VAL (sym)
347 # define SYMBOLP(x) lisp_h_SYMBOLP (x)
348 # define VECTORLIKEP(x) lisp_h_VECTORLIKEP (x)
349 # define XCAR(c) lisp_h_XCAR (c)
350 # define XCDR(c) lisp_h_XCDR (c)
351 # define XCONS(a) lisp_h_XCONS (a)
352 # define XHASH(a) lisp_h_XHASH (a)
353 # define XPNTR(a) lisp_h_XPNTR (a)
354 # define XSYMBOL(a) lisp_h_XSYMBOL (a)
355 # ifndef GC_CHECK_CONS_LIST
356 # define check_cons_list() lisp_h_check_cons_list ()
357 # endif
358 # if USE_LSB_TAG
359 # define make_number(n) lisp_h_make_number (n)
360 # define XFASTINT(a) lisp_h_XFASTINT (a)
361 # define XINT(a) lisp_h_XINT (a)
362 # define XTYPE(a) lisp_h_XTYPE (a)
363 # define XUNTAG(a, type) lisp_h_XUNTAG (a, type)
364 # endif
365 #endif
367 /* Define NAME as a lisp.h inline function that returns TYPE and has
368 arguments declared as ARGDECLS and passed as ARGS. ARGDECLS and
369 ARGS should be parenthesized. Implement the function by calling
370 lisp_h_NAME ARGS. */
371 #define LISP_MACRO_DEFUN(name, type, argdecls, args) \
372 INLINE type (name) argdecls { return lisp_h_##name args; }
374 /* like LISP_MACRO_DEFUN, except NAME returns void. */
375 #define LISP_MACRO_DEFUN_VOID(name, argdecls, args) \
376 INLINE void (name) argdecls { lisp_h_##name args; }
379 /* Define the fundamental Lisp data structures. */
381 /* This is the set of Lisp data types. If you want to define a new
382 data type, read the comments after Lisp_Fwd_Type definition
383 below. */
385 /* Lisp integers use 2 tags, to give them one extra bit, thus
386 extending their range from, e.g., -2^28..2^28-1 to -2^29..2^29-1. */
387 #define INTMASK (EMACS_INT_MAX >> (INTTYPEBITS - 1))
388 #define case_Lisp_Int case Lisp_Int0: case Lisp_Int1
390 /* Idea stolen from GDB. Pedantic GCC complains about enum bitfields,
391 MSVC doesn't support them, and xlc complains vociferously about them. */
392 #if defined __STRICT_ANSI__ || defined _MSC_VER || defined __IBMC__
393 #define ENUM_BF(TYPE) unsigned int
394 #else
395 #define ENUM_BF(TYPE) enum TYPE
396 #endif
399 enum Lisp_Type
401 /* Integer. XINT (obj) is the integer value. */
402 Lisp_Int0 = 0,
403 Lisp_Int1 = USE_LSB_TAG ? 1 << INTTYPEBITS : 1,
405 /* Symbol. XSYMBOL (object) points to a struct Lisp_Symbol. */
406 Lisp_Symbol = 2,
408 /* Miscellaneous. XMISC (object) points to a union Lisp_Misc,
409 whose first member indicates the subtype. */
410 Lisp_Misc = 3,
412 /* String. XSTRING (object) points to a struct Lisp_String.
413 The length of the string, and its contents, are stored therein. */
414 Lisp_String = USE_LSB_TAG ? 1 : 1 << INTTYPEBITS,
416 /* Vector of Lisp objects, or something resembling it.
417 XVECTOR (object) points to a struct Lisp_Vector, which contains
418 the size and contents. The size field also contains the type
419 information, if it's not a real vector object. */
420 Lisp_Vectorlike = 5,
422 /* Cons. XCONS (object) points to a struct Lisp_Cons. */
423 Lisp_Cons = 6,
425 Lisp_Float = 7
428 /* This is the set of data types that share a common structure.
429 The first member of the structure is a type code from this set.
430 The enum values are arbitrary, but we'll use large numbers to make it
431 more likely that we'll spot the error if a random word in memory is
432 mistakenly interpreted as a Lisp_Misc. */
433 enum Lisp_Misc_Type
435 Lisp_Misc_Free = 0x5eab,
436 Lisp_Misc_Marker,
437 Lisp_Misc_Overlay,
438 Lisp_Misc_Save_Value,
439 /* Currently floats are not a misc type,
440 but let's define this in case we want to change that. */
441 Lisp_Misc_Float,
442 /* This is not a type code. It is for range checking. */
443 Lisp_Misc_Limit
446 /* These are the types of forwarding objects used in the value slot
447 of symbols for special built-in variables whose value is stored in
448 C variables. */
449 enum Lisp_Fwd_Type
451 Lisp_Fwd_Int, /* Fwd to a C `int' variable. */
452 Lisp_Fwd_Bool, /* Fwd to a C boolean var. */
453 Lisp_Fwd_Obj, /* Fwd to a C Lisp_Object variable. */
454 Lisp_Fwd_Buffer_Obj, /* Fwd to a Lisp_Object field of buffers. */
455 Lisp_Fwd_Kboard_Obj /* Fwd to a Lisp_Object field of kboards. */
458 /* If you want to define a new Lisp data type, here are some
459 instructions. See the thread at
460 http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00561.html
461 for more info.
463 First, there are already a couple of Lisp types that can be used if
464 your new type does not need to be exposed to Lisp programs nor
465 displayed to users. These are Lisp_Save_Value, a Lisp_Misc
466 subtype; and PVEC_OTHER, a kind of vectorlike object. The former
467 is suitable for temporarily stashing away pointers and integers in
468 a Lisp object. The latter is useful for vector-like Lisp objects
469 that need to be used as part of other objects, but which are never
470 shown to users or Lisp code (search for PVEC_OTHER in xterm.c for
471 an example).
473 These two types don't look pretty when printed, so they are
474 unsuitable for Lisp objects that can be exposed to users.
476 To define a new data type, add one more Lisp_Misc subtype or one
477 more pseudovector subtype. Pseudovectors are more suitable for
478 objects with several slots that need to support fast random access,
479 while Lisp_Misc types are for everything else. A pseudovector object
480 provides one or more slots for Lisp objects, followed by struct
481 members that are accessible only from C. A Lisp_Misc object is a
482 wrapper for a C struct that can contain anything you like.
484 Explicit freeing is discouraged for Lisp objects in general. But if
485 you really need to exploit this, use Lisp_Misc (check free_misc in
486 alloc.c to see why). There is no way to free a vectorlike object.
488 To add a new pseudovector type, extend the pvec_type enumeration;
489 to add a new Lisp_Misc, extend the Lisp_Misc_Type enumeration.
491 For a Lisp_Misc, you will also need to add your entry to union
492 Lisp_Misc (but make sure the first word has the same structure as
493 the others, starting with a 16-bit member of the Lisp_Misc_Type
494 enumeration and a 1-bit GC markbit) and make sure the overall size
495 of the union is not increased by your addition.
497 For a new pseudovector, it's highly desirable to limit the size
498 of your data type by VBLOCK_BYTES_MAX bytes (defined in alloc.c).
499 Otherwise you will need to change sweep_vectors (also in alloc.c).
501 Then you will need to add switch branches in print.c (in
502 print_object, to print your object, and possibly also in
503 print_preprocess) and to alloc.c, to mark your object (in
504 mark_object) and to free it (in gc_sweep). The latter is also the
505 right place to call any code specific to your data type that needs
506 to run when the object is recycled -- e.g., free any additional
507 resources allocated for it that are not Lisp objects. You can even
508 make a pointer to the function that frees the resources a slot in
509 your object -- this way, the same object could be used to represent
510 several disparate C structures. */
512 #ifdef CHECK_LISP_OBJECT_TYPE
514 typedef struct { EMACS_INT i; } Lisp_Object;
516 #define LISP_INITIALLY_ZERO {0}
518 #undef CHECK_LISP_OBJECT_TYPE
519 enum CHECK_LISP_OBJECT_TYPE { CHECK_LISP_OBJECT_TYPE = 1 };
520 #else /* CHECK_LISP_OBJECT_TYPE */
522 /* If a struct type is not wanted, define Lisp_Object as just a number. */
524 typedef EMACS_INT Lisp_Object;
525 #define LISP_INITIALLY_ZERO 0
526 enum CHECK_LISP_OBJECT_TYPE { CHECK_LISP_OBJECT_TYPE = 0 };
527 #endif /* CHECK_LISP_OBJECT_TYPE */
529 /* Convert a Lisp_Object to the corresponding EMACS_INT and vice versa.
530 At the machine level, these operations are no-ops. */
531 LISP_MACRO_DEFUN (XLI, EMACS_INT, (Lisp_Object o), (o))
532 LISP_MACRO_DEFUN (XIL, Lisp_Object, (EMACS_INT i), (i))
534 /* In the size word of a vector, this bit means the vector has been marked. */
536 static ptrdiff_t const ARRAY_MARK_FLAG
537 #define ARRAY_MARK_FLAG PTRDIFF_MIN
538 = ARRAY_MARK_FLAG;
540 /* In the size word of a struct Lisp_Vector, this bit means it's really
541 some other vector-like object. */
542 static ptrdiff_t const PSEUDOVECTOR_FLAG
543 #define PSEUDOVECTOR_FLAG (PTRDIFF_MAX - PTRDIFF_MAX / 2)
544 = PSEUDOVECTOR_FLAG;
546 /* In a pseudovector, the size field actually contains a word with one
547 PSEUDOVECTOR_FLAG bit set, and one of the following values extracted
548 with PVEC_TYPE_MASK to indicate the actual type. */
549 enum pvec_type
551 PVEC_NORMAL_VECTOR,
552 PVEC_FREE,
553 PVEC_PROCESS,
554 PVEC_FRAME,
555 PVEC_WINDOW,
556 PVEC_BOOL_VECTOR,
557 PVEC_BUFFER,
558 PVEC_HASH_TABLE,
559 PVEC_TERMINAL,
560 PVEC_WINDOW_CONFIGURATION,
561 PVEC_SUBR,
562 PVEC_OTHER,
563 /* These should be last, check internal_equal to see why. */
564 PVEC_COMPILED,
565 PVEC_CHAR_TABLE,
566 PVEC_SUB_CHAR_TABLE,
567 PVEC_FONT /* Should be last because it's used for range checking. */
570 /* DATA_SEG_BITS forces extra bits to be or'd in with any pointers
571 which were stored in a Lisp_Object. */
572 #ifndef DATA_SEG_BITS
573 # define DATA_SEG_BITS 0
574 #endif
575 enum { gdb_DATA_SEG_BITS = DATA_SEG_BITS };
576 #undef DATA_SEG_BITS
578 enum More_Lisp_Bits
580 DATA_SEG_BITS = gdb_DATA_SEG_BITS,
582 /* For convenience, we also store the number of elements in these bits.
583 Note that this size is not necessarily the memory-footprint size, but
584 only the number of Lisp_Object fields (that need to be traced by GC).
585 The distinction is used, e.g., by Lisp_Process, which places extra
586 non-Lisp_Object fields at the end of the structure. */
587 PSEUDOVECTOR_SIZE_BITS = 12,
588 PSEUDOVECTOR_SIZE_MASK = (1 << PSEUDOVECTOR_SIZE_BITS) - 1,
590 /* To calculate the memory footprint of the pseudovector, it's useful
591 to store the size of non-Lisp area in word_size units here. */
592 PSEUDOVECTOR_REST_BITS = 12,
593 PSEUDOVECTOR_REST_MASK = (((1 << PSEUDOVECTOR_REST_BITS) - 1)
594 << PSEUDOVECTOR_SIZE_BITS),
596 /* Used to extract pseudovector subtype information. */
597 PSEUDOVECTOR_AREA_BITS = PSEUDOVECTOR_SIZE_BITS + PSEUDOVECTOR_REST_BITS,
598 PVEC_TYPE_MASK = 0x3f << PSEUDOVECTOR_AREA_BITS,
600 /* Number of bits to put in each character in the internal representation
601 of bool vectors. This should not vary across implementations. */
602 BOOL_VECTOR_BITS_PER_CHAR = 8
605 /* These functions extract various sorts of values from a Lisp_Object.
606 For example, if tem is a Lisp_Object whose type is Lisp_Cons,
607 XCONS (tem) is the struct Lisp_Cons * pointing to the memory for that cons. */
609 static EMACS_INT const VALMASK
610 #define VALMASK (USE_LSB_TAG ? - (1 << GCTYPEBITS) : VAL_MAX)
611 = VALMASK;
613 /* Largest and smallest representable fixnum values. These are the C
614 values. They are macros for use in static initializers. */
615 #define MOST_POSITIVE_FIXNUM (EMACS_INT_MAX >> INTTYPEBITS)
616 #define MOST_NEGATIVE_FIXNUM (-1 - MOST_POSITIVE_FIXNUM)
618 /* Extract the pointer hidden within A. */
619 LISP_MACRO_DEFUN (XPNTR, void *, (Lisp_Object a), (a))
621 #if USE_LSB_TAG
623 LISP_MACRO_DEFUN (make_number, Lisp_Object, (EMACS_INT n), (n))
624 LISP_MACRO_DEFUN (XINT, EMACS_INT, (Lisp_Object a), (a))
625 LISP_MACRO_DEFUN (XFASTINT, EMACS_INT, (Lisp_Object a), (a))
626 LISP_MACRO_DEFUN (XTYPE, enum Lisp_Type, (Lisp_Object a), (a))
627 LISP_MACRO_DEFUN (XUNTAG, void *, (Lisp_Object a, int type), (a, type))
629 #else /* ! USE_LSB_TAG */
631 /* Although compiled only if ! USE_LSB_TAG, the following functions
632 also work when USE_LSB_TAG; this is to aid future maintenance when
633 the lisp_h_* macros are eventually removed. */
635 /* Make a Lisp integer representing the value of the low order
636 bits of N. */
637 INLINE Lisp_Object
638 make_number (EMACS_INT n)
640 return XIL (USE_LSB_TAG ? n << INTTYPEBITS : n & INTMASK);
643 /* Extract A's value as a signed integer. */
644 INLINE EMACS_INT
645 XINT (Lisp_Object a)
647 EMACS_INT i = XLI (a);
648 return (USE_LSB_TAG ? i : i << INTTYPEBITS) >> INTTYPEBITS;
651 /* Like XINT (A), but may be faster. A must be nonnegative.
652 If ! USE_LSB_TAG, this takes advantage of the fact that Lisp
653 integers have zero-bits in their tags. */
654 INLINE EMACS_INT
655 XFASTINT (Lisp_Object a)
657 EMACS_INT n = USE_LSB_TAG ? XINT (a) : XLI (a);
658 eassert (0 <= n);
659 return n;
662 /* Extract A's type. */
663 INLINE enum Lisp_Type
664 XTYPE (Lisp_Object a)
666 EMACS_UINT i = XLI (a);
667 return USE_LSB_TAG ? i & ~VALMASK : i >> VALBITS;
670 /* Extract A's pointer value, assuming A's type is TYPE. */
671 INLINE void *
672 XUNTAG (Lisp_Object a, int type)
674 if (USE_LSB_TAG)
676 intptr_t i = XLI (a) - type;
677 return (void *) i;
679 return XPNTR (a);
682 #endif /* ! USE_LSB_TAG */
684 /* Extract A's value as an unsigned integer. */
685 INLINE EMACS_UINT
686 XUINT (Lisp_Object a)
688 EMACS_UINT i = XLI (a);
689 return USE_LSB_TAG ? i >> INTTYPEBITS : i & INTMASK;
692 /* Return A's (Lisp-integer sized) hash. Happens to be like XUINT
693 right now, but XUINT should only be applied to objects we know are
694 integers. */
695 LISP_MACRO_DEFUN (XHASH, EMACS_INT, (Lisp_Object a), (a))
697 /* Like make_number (N), but may be faster. N must be in nonnegative range. */
698 INLINE Lisp_Object
699 make_natnum (EMACS_INT n)
701 eassert (0 <= n && n <= MOST_POSITIVE_FIXNUM);
702 return USE_LSB_TAG ? make_number (n) : XIL (n);
705 /* Return true if X and Y are the same object. */
706 LISP_MACRO_DEFUN (EQ, bool, (Lisp_Object x, Lisp_Object y), (x, y))
708 /* Value is non-zero if I doesn't fit into a Lisp fixnum. It is
709 written this way so that it also works if I is of unsigned
710 type or if I is a NaN. */
712 #define FIXNUM_OVERFLOW_P(i) \
713 (! ((0 <= (i) || MOST_NEGATIVE_FIXNUM <= (i)) && (i) <= MOST_POSITIVE_FIXNUM))
715 INLINE ptrdiff_t
716 clip_to_bounds (ptrdiff_t lower, EMACS_INT num, ptrdiff_t upper)
718 return num < lower ? lower : num <= upper ? num : upper;
721 /* Forward declarations. */
723 /* Defined in this file. */
724 union Lisp_Fwd;
725 INLINE bool BOOL_VECTOR_P (Lisp_Object);
726 INLINE bool BUFFER_OBJFWDP (union Lisp_Fwd *);
727 INLINE bool BUFFERP (Lisp_Object);
728 INLINE bool CHAR_TABLE_P (Lisp_Object);
729 INLINE Lisp_Object CHAR_TABLE_REF_ASCII (Lisp_Object, ptrdiff_t);
730 INLINE bool (CONSP) (Lisp_Object);
731 INLINE bool (FLOATP) (Lisp_Object);
732 INLINE bool functionp (Lisp_Object);
733 INLINE bool (INTEGERP) (Lisp_Object);
734 INLINE bool (MARKERP) (Lisp_Object);
735 INLINE bool (MISCP) (Lisp_Object);
736 INLINE bool (NILP) (Lisp_Object);
737 INLINE bool OVERLAYP (Lisp_Object);
738 INLINE bool PROCESSP (Lisp_Object);
739 INLINE bool PSEUDOVECTORP (Lisp_Object, int);
740 INLINE bool SAVE_VALUEP (Lisp_Object);
741 INLINE void set_sub_char_table_contents (Lisp_Object, ptrdiff_t,
742 Lisp_Object);
743 INLINE bool STRINGP (Lisp_Object);
744 INLINE bool SUB_CHAR_TABLE_P (Lisp_Object);
745 INLINE bool SUBRP (Lisp_Object);
746 INLINE bool (SYMBOLP) (Lisp_Object);
747 INLINE bool (VECTORLIKEP) (Lisp_Object);
748 INLINE bool WINDOWP (Lisp_Object);
749 INLINE struct Lisp_Save_Value *XSAVE_VALUE (Lisp_Object);
751 /* Defined in chartab.c. */
752 extern Lisp_Object char_table_ref (Lisp_Object, int);
753 extern void char_table_set (Lisp_Object, int, Lisp_Object);
754 extern int char_table_translate (Lisp_Object, int);
756 /* Defined in data.c. */
757 extern Lisp_Object Qarrayp, Qbufferp, Qbuffer_or_string_p, Qchar_table_p;
758 extern Lisp_Object Qconsp, Qfloatp, Qintegerp, Qlambda, Qlistp, Qmarkerp, Qnil;
759 extern Lisp_Object Qnumberp, Qstringp, Qsymbolp, Qvectorp;
760 extern Lisp_Object Qbool_vector_p;
761 extern Lisp_Object Qvector_or_char_table_p, Qwholenump;
762 extern Lisp_Object Qwindow;
763 extern Lisp_Object Ffboundp (Lisp_Object);
764 extern _Noreturn Lisp_Object wrong_type_argument (Lisp_Object, Lisp_Object);
766 /* Defined in emacs.c. */
767 extern bool initialized;
769 /* Defined in eval.c. */
770 extern Lisp_Object Qautoload;
772 /* Defined in floatfns.c. */
773 extern double extract_float (Lisp_Object);
775 /* Defined in process.c. */
776 extern Lisp_Object Qprocessp;
778 /* Defined in window.c. */
779 extern Lisp_Object Qwindowp;
781 /* Defined in xdisp.c. */
782 extern Lisp_Object Qimage;
785 /* Extract a value or address from a Lisp_Object. */
787 LISP_MACRO_DEFUN (XCONS, struct Lisp_Cons *, (Lisp_Object a), (a))
789 INLINE struct Lisp_Vector *
790 XVECTOR (Lisp_Object a)
792 eassert (VECTORLIKEP (a));
793 return XUNTAG (a, Lisp_Vectorlike);
796 INLINE struct Lisp_String *
797 XSTRING (Lisp_Object a)
799 eassert (STRINGP (a));
800 return XUNTAG (a, Lisp_String);
803 LISP_MACRO_DEFUN (XSYMBOL, struct Lisp_Symbol *, (Lisp_Object a), (a))
805 INLINE struct Lisp_Float *
806 XFLOAT (Lisp_Object a)
808 eassert (FLOATP (a));
809 return XUNTAG (a, Lisp_Float);
812 /* Pseudovector types. */
814 INLINE struct Lisp_Process *
815 XPROCESS (Lisp_Object a)
817 eassert (PROCESSP (a));
818 return XUNTAG (a, Lisp_Vectorlike);
821 INLINE struct window *
822 XWINDOW (Lisp_Object a)
824 eassert (WINDOWP (a));
825 return XUNTAG (a, Lisp_Vectorlike);
828 INLINE struct terminal *
829 XTERMINAL (Lisp_Object a)
831 return XUNTAG (a, Lisp_Vectorlike);
834 INLINE struct Lisp_Subr *
835 XSUBR (Lisp_Object a)
837 eassert (SUBRP (a));
838 return XUNTAG (a, Lisp_Vectorlike);
841 INLINE struct buffer *
842 XBUFFER (Lisp_Object a)
844 eassert (BUFFERP (a));
845 return XUNTAG (a, Lisp_Vectorlike);
848 INLINE struct Lisp_Char_Table *
849 XCHAR_TABLE (Lisp_Object a)
851 eassert (CHAR_TABLE_P (a));
852 return XUNTAG (a, Lisp_Vectorlike);
855 INLINE struct Lisp_Sub_Char_Table *
856 XSUB_CHAR_TABLE (Lisp_Object a)
858 eassert (SUB_CHAR_TABLE_P (a));
859 return XUNTAG (a, Lisp_Vectorlike);
862 INLINE struct Lisp_Bool_Vector *
863 XBOOL_VECTOR (Lisp_Object a)
865 eassert (BOOL_VECTOR_P (a));
866 return XUNTAG (a, Lisp_Vectorlike);
869 /* Construct a Lisp_Object from a value or address. */
871 INLINE Lisp_Object
872 make_lisp_ptr (void *ptr, enum Lisp_Type type)
874 EMACS_UINT utype = type;
875 EMACS_UINT typebits = USE_LSB_TAG ? type : utype << VALBITS;
876 Lisp_Object a = XIL (typebits | (uintptr_t) ptr);
877 eassert (XTYPE (a) == type && XUNTAG (a, type) == ptr);
878 return a;
881 INLINE Lisp_Object
882 make_lisp_proc (struct Lisp_Process *p)
884 return make_lisp_ptr (p, Lisp_Vectorlike);
887 #define XSETINT(a, b) ((a) = make_number (b))
888 #define XSETFASTINT(a, b) ((a) = make_natnum (b))
889 #define XSETCONS(a, b) ((a) = make_lisp_ptr (b, Lisp_Cons))
890 #define XSETVECTOR(a, b) ((a) = make_lisp_ptr (b, Lisp_Vectorlike))
891 #define XSETSTRING(a, b) ((a) = make_lisp_ptr (b, Lisp_String))
892 #define XSETSYMBOL(a, b) ((a) = make_lisp_ptr (b, Lisp_Symbol))
893 #define XSETFLOAT(a, b) ((a) = make_lisp_ptr (b, Lisp_Float))
894 #define XSETMISC(a, b) ((a) = make_lisp_ptr (b, Lisp_Misc))
896 /* Pseudovector types. */
898 #define XSETPVECTYPE(v, code) \
899 ((v)->header.size |= PSEUDOVECTOR_FLAG | ((code) << PSEUDOVECTOR_AREA_BITS))
900 #define XSETPVECTYPESIZE(v, code, lispsize, restsize) \
901 ((v)->header.size = (PSEUDOVECTOR_FLAG \
902 | ((code) << PSEUDOVECTOR_AREA_BITS) \
903 | ((restsize) << PSEUDOVECTOR_SIZE_BITS) \
904 | (lispsize)))
906 /* The cast to struct vectorlike_header * avoids aliasing issues. */
907 #define XSETPSEUDOVECTOR(a, b, code) \
908 XSETTYPED_PSEUDOVECTOR (a, b, \
909 (((struct vectorlike_header *) \
910 XUNTAG (a, Lisp_Vectorlike)) \
911 ->size), \
912 code)
913 #define XSETTYPED_PSEUDOVECTOR(a, b, size, code) \
914 (XSETVECTOR (a, b), \
915 eassert ((size & (PSEUDOVECTOR_FLAG | PVEC_TYPE_MASK)) \
916 == (PSEUDOVECTOR_FLAG | (code << PSEUDOVECTOR_AREA_BITS))))
918 #define XSETWINDOW_CONFIGURATION(a, b) \
919 (XSETPSEUDOVECTOR (a, b, PVEC_WINDOW_CONFIGURATION))
920 #define XSETPROCESS(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_PROCESS))
921 #define XSETWINDOW(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_WINDOW))
922 #define XSETTERMINAL(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_TERMINAL))
923 #define XSETSUBR(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_SUBR))
924 #define XSETCOMPILED(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_COMPILED))
925 #define XSETBUFFER(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_BUFFER))
926 #define XSETCHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_CHAR_TABLE))
927 #define XSETBOOL_VECTOR(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_BOOL_VECTOR))
928 #define XSETSUB_CHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_SUB_CHAR_TABLE))
930 /* Type checking. */
932 LISP_MACRO_DEFUN_VOID (CHECK_TYPE, (int ok, Lisp_Object Qxxxp, Lisp_Object x),
933 (ok, Qxxxp, x))
935 /* Deprecated and will be removed soon. */
937 #define INTERNAL_FIELD(field) field ## _
939 /* See the macros in intervals.h. */
941 typedef struct interval *INTERVAL;
943 struct Lisp_Cons
945 /* Car of this cons cell. */
946 Lisp_Object car;
948 union
950 /* Cdr of this cons cell. */
951 Lisp_Object cdr;
953 /* Used to chain conses on a free list. */
954 struct Lisp_Cons *chain;
955 } u;
958 /* Take the car or cdr of something known to be a cons cell. */
959 /* The _addr functions shouldn't be used outside of the minimal set
960 of code that has to know what a cons cell looks like. Other code not
961 part of the basic lisp implementation should assume that the car and cdr
962 fields are not accessible. (What if we want to switch to
963 a copying collector someday? Cached cons cell field addresses may be
964 invalidated at arbitrary points.) */
965 INLINE Lisp_Object *
966 xcar_addr (Lisp_Object c)
968 return &XCONS (c)->car;
970 INLINE Lisp_Object *
971 xcdr_addr (Lisp_Object c)
973 return &XCONS (c)->u.cdr;
976 /* Use these from normal code. */
977 LISP_MACRO_DEFUN (XCAR, Lisp_Object, (Lisp_Object c), (c))
978 LISP_MACRO_DEFUN (XCDR, Lisp_Object, (Lisp_Object c), (c))
980 /* Use these to set the fields of a cons cell.
982 Note that both arguments may refer to the same object, so 'n'
983 should not be read after 'c' is first modified. */
984 INLINE void
985 XSETCAR (Lisp_Object c, Lisp_Object n)
987 *xcar_addr (c) = n;
989 INLINE void
990 XSETCDR (Lisp_Object c, Lisp_Object n)
992 *xcdr_addr (c) = n;
995 /* Take the car or cdr of something whose type is not known. */
996 INLINE Lisp_Object
997 CAR (Lisp_Object c)
999 return (CONSP (c) ? XCAR (c)
1000 : NILP (c) ? Qnil
1001 : wrong_type_argument (Qlistp, c));
1003 INLINE Lisp_Object
1004 CDR (Lisp_Object c)
1006 return (CONSP (c) ? XCDR (c)
1007 : NILP (c) ? Qnil
1008 : wrong_type_argument (Qlistp, c));
1011 /* Take the car or cdr of something whose type is not known. */
1012 INLINE Lisp_Object
1013 CAR_SAFE (Lisp_Object c)
1015 return CONSP (c) ? XCAR (c) : Qnil;
1017 INLINE Lisp_Object
1018 CDR_SAFE (Lisp_Object c)
1020 return CONSP (c) ? XCDR (c) : Qnil;
1023 /* In a string or vector, the sign bit of the `size' is the gc mark bit. */
1025 struct Lisp_String
1027 ptrdiff_t size;
1028 ptrdiff_t size_byte;
1029 INTERVAL intervals; /* Text properties in this string. */
1030 unsigned char *data;
1033 /* True if STR is a multibyte string. */
1034 INLINE bool
1035 STRING_MULTIBYTE (Lisp_Object str)
1037 return 0 <= XSTRING (str)->size_byte;
1040 /* An upper bound on the number of bytes in a Lisp string, not
1041 counting the terminating null. This a tight enough bound to
1042 prevent integer overflow errors that would otherwise occur during
1043 string size calculations. A string cannot contain more bytes than
1044 a fixnum can represent, nor can it be so long that C pointer
1045 arithmetic stops working on the string plus its terminating null.
1046 Although the actual size limit (see STRING_BYTES_MAX in alloc.c)
1047 may be a bit smaller than STRING_BYTES_BOUND, calculating it here
1048 would expose alloc.c internal details that we'd rather keep
1049 private.
1051 This is a macro for use in static initializers. The cast to
1052 ptrdiff_t ensures that the macro is signed. */
1053 #define STRING_BYTES_BOUND \
1054 ((ptrdiff_t) min (MOST_POSITIVE_FIXNUM, min (SIZE_MAX, PTRDIFF_MAX) - 1))
1056 /* Mark STR as a unibyte string. */
1057 #define STRING_SET_UNIBYTE(STR) \
1058 do { if (EQ (STR, empty_multibyte_string)) \
1059 (STR) = empty_unibyte_string; \
1060 else XSTRING (STR)->size_byte = -1; } while (0)
1062 /* Mark STR as a multibyte string. Assure that STR contains only
1063 ASCII characters in advance. */
1064 #define STRING_SET_MULTIBYTE(STR) \
1065 do { if (EQ (STR, empty_unibyte_string)) \
1066 (STR) = empty_multibyte_string; \
1067 else XSTRING (STR)->size_byte = XSTRING (STR)->size; } while (0)
1069 /* Convenience functions for dealing with Lisp strings. */
1071 INLINE unsigned char *
1072 SDATA (Lisp_Object string)
1074 return XSTRING (string)->data;
1076 INLINE char *
1077 SSDATA (Lisp_Object string)
1079 /* Avoid "differ in sign" warnings. */
1080 return (char *) SDATA (string);
1082 INLINE unsigned char
1083 SREF (Lisp_Object string, ptrdiff_t index)
1085 return SDATA (string)[index];
1087 INLINE void
1088 SSET (Lisp_Object string, ptrdiff_t index, unsigned char new)
1090 SDATA (string)[index] = new;
1092 INLINE ptrdiff_t
1093 SCHARS (Lisp_Object string)
1095 return XSTRING (string)->size;
1098 #ifdef GC_CHECK_STRING_BYTES
1099 extern ptrdiff_t string_bytes (struct Lisp_String *);
1100 #endif
1101 INLINE ptrdiff_t
1102 STRING_BYTES (struct Lisp_String *s)
1104 #ifdef GC_CHECK_STRING_BYTES
1105 return string_bytes (s);
1106 #else
1107 return s->size_byte < 0 ? s->size : s->size_byte;
1108 #endif
1111 INLINE ptrdiff_t
1112 SBYTES (Lisp_Object string)
1114 return STRING_BYTES (XSTRING (string));
1116 INLINE void
1117 STRING_SET_CHARS (Lisp_Object string, ptrdiff_t newsize)
1119 XSTRING (string)->size = newsize;
1121 INLINE void
1122 STRING_COPYIN (Lisp_Object string, ptrdiff_t index, char const *new,
1123 ptrdiff_t count)
1125 memcpy (SDATA (string) + index, new, count);
1128 /* Header of vector-like objects. This documents the layout constraints on
1129 vectors and pseudovectors (objects of PVEC_xxx subtype). It also prevents
1130 compilers from being fooled by Emacs's type punning: XSETPSEUDOVECTOR
1131 and PSEUDOVECTORP cast their pointers to struct vectorlike_header *,
1132 because when two such pointers potentially alias, a compiler won't
1133 incorrectly reorder loads and stores to their size fields. See
1134 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=8546>. */
1135 struct vectorlike_header
1137 /* The only field contains various pieces of information:
1138 - The MSB (ARRAY_MARK_FLAG) holds the gcmarkbit.
1139 - The next bit (PSEUDOVECTOR_FLAG) indicates whether this is a plain
1140 vector (0) or a pseudovector (1).
1141 - If PSEUDOVECTOR_FLAG is 0, the rest holds the size (number
1142 of slots) of the vector.
1143 - If PSEUDOVECTOR_FLAG is 1, the rest is subdivided into three fields:
1144 - a) pseudovector subtype held in PVEC_TYPE_MASK field;
1145 - b) number of Lisp_Objects slots at the beginning of the object
1146 held in PSEUDOVECTOR_SIZE_MASK field. These objects are always
1147 traced by the GC;
1148 - c) size of the rest fields held in PSEUDOVECTOR_REST_MASK and
1149 measured in word_size units. Rest fields may also include
1150 Lisp_Objects, but these objects usually needs some special treatment
1151 during GC.
1152 There are some exceptions. For PVEC_FREE, b) is always zero. For
1153 PVEC_BOOL_VECTOR and PVEC_SUBR, both b) and c) are always zero.
1154 Current layout limits the pseudovectors to 63 PVEC_xxx subtypes,
1155 4095 Lisp_Objects in GC-ed area and 4095 word-sized other slots. */
1156 ptrdiff_t size;
1159 /* Regular vector is just a header plus array of Lisp_Objects... */
1161 struct Lisp_Vector
1163 struct vectorlike_header header;
1164 union {
1165 /* ...but sometimes there is also a pointer internally used in
1166 vector allocation code. Usually you don't want to touch this. */
1167 struct Lisp_Vector *next;
1169 /* We can't use FLEXIBLE_ARRAY_MEMBER here. */
1170 Lisp_Object contents[1];
1171 } u;
1174 /* A boolvector is a kind of vectorlike, with contents are like a string. */
1176 struct Lisp_Bool_Vector
1178 /* HEADER.SIZE is the vector's size field. It doesn't have the real size,
1179 just the subtype information. */
1180 struct vectorlike_header header;
1181 /* This is the size in bits. */
1182 EMACS_INT size;
1183 /* This contains the actual bits, packed into bytes. */
1184 unsigned char data[FLEXIBLE_ARRAY_MEMBER];
1187 /* Some handy constants for calculating sizes
1188 and offsets, mostly of vectorlike objects. */
1190 enum
1192 header_size = offsetof (struct Lisp_Vector, u.contents),
1193 bool_header_size = offsetof (struct Lisp_Bool_Vector, data),
1194 word_size = sizeof (Lisp_Object)
1197 /* Conveniences for dealing with Lisp arrays. */
1199 INLINE Lisp_Object
1200 AREF (Lisp_Object array, ptrdiff_t idx)
1202 return XVECTOR (array)->u.contents[idx];
1205 INLINE Lisp_Object *
1206 aref_addr (Lisp_Object array, ptrdiff_t idx)
1208 return & XVECTOR (array)->u.contents[idx];
1211 INLINE ptrdiff_t
1212 ASIZE (Lisp_Object array)
1214 return XVECTOR (array)->header.size;
1217 INLINE void
1218 ASET (Lisp_Object array, ptrdiff_t idx, Lisp_Object val)
1220 eassert (0 <= idx && idx < ASIZE (array));
1221 XVECTOR (array)->u.contents[idx] = val;
1224 INLINE void
1225 gc_aset (Lisp_Object array, ptrdiff_t idx, Lisp_Object val)
1227 /* Like ASET, but also can be used in the garbage collector:
1228 sweep_weak_table calls set_hash_key etc. while the table is marked. */
1229 eassert (0 <= idx && idx < (ASIZE (array) & ~ARRAY_MARK_FLAG));
1230 XVECTOR (array)->u.contents[idx] = val;
1233 /* If a struct is made to look like a vector, this macro returns the length
1234 of the shortest vector that would hold that struct. */
1236 #define VECSIZE(type) \
1237 ((sizeof (type) - header_size + word_size - 1) / word_size)
1239 /* Like VECSIZE, but used when the pseudo-vector has non-Lisp_Object fields
1240 at the end and we need to compute the number of Lisp_Object fields (the
1241 ones that the GC needs to trace). */
1243 #define PSEUDOVECSIZE(type, nonlispfield) \
1244 ((offsetof (type, nonlispfield) - header_size) / word_size)
1246 /* Compute A OP B, using the unsigned comparison operator OP. A and B
1247 should be integer expressions. This is not the same as
1248 mathematical comparison; for example, UNSIGNED_CMP (0, <, -1)
1249 returns 1. For efficiency, prefer plain unsigned comparison if A
1250 and B's sizes both fit (after integer promotion). */
1251 #define UNSIGNED_CMP(a, op, b) \
1252 (max (sizeof ((a) + 0), sizeof ((b) + 0)) <= sizeof (unsigned) \
1253 ? ((a) + (unsigned) 0) op ((b) + (unsigned) 0) \
1254 : ((a) + (uintmax_t) 0) op ((b) + (uintmax_t) 0))
1256 /* Nonzero iff C is an ASCII character. */
1257 #define ASCII_CHAR_P(c) UNSIGNED_CMP (c, <, 0x80)
1259 /* A char-table is a kind of vectorlike, with contents are like a
1260 vector but with a few other slots. For some purposes, it makes
1261 sense to handle a char-table with type struct Lisp_Vector. An
1262 element of a char table can be any Lisp objects, but if it is a sub
1263 char-table, we treat it a table that contains information of a
1264 specific range of characters. A sub char-table has the same
1265 structure as a vector. A sub char table appears only in an element
1266 of a char-table, and there's no way to access it directly from
1267 Emacs Lisp program. */
1269 enum CHARTAB_SIZE_BITS
1271 CHARTAB_SIZE_BITS_0 = 6,
1272 CHARTAB_SIZE_BITS_1 = 4,
1273 CHARTAB_SIZE_BITS_2 = 5,
1274 CHARTAB_SIZE_BITS_3 = 7
1277 extern const int chartab_size[4];
1279 struct Lisp_Char_Table
1281 /* HEADER.SIZE is the vector's size field, which also holds the
1282 pseudovector type information. It holds the size, too.
1283 The size counts the defalt, parent, purpose, ascii,
1284 contents, and extras slots. */
1285 struct vectorlike_header header;
1287 /* This holds a default value,
1288 which is used whenever the value for a specific character is nil. */
1289 Lisp_Object defalt;
1291 /* This points to another char table, which we inherit from when the
1292 value for a specific character is nil. The `defalt' slot takes
1293 precedence over this. */
1294 Lisp_Object parent;
1296 /* This is a symbol which says what kind of use this char-table is
1297 meant for. */
1298 Lisp_Object purpose;
1300 /* The bottom sub char-table for characters of the range 0..127. It
1301 is nil if none of ASCII character has a specific value. */
1302 Lisp_Object ascii;
1304 Lisp_Object contents[(1 << CHARTAB_SIZE_BITS_0)];
1306 /* These hold additional data. It is a vector. */
1307 Lisp_Object extras[FLEXIBLE_ARRAY_MEMBER];
1310 struct Lisp_Sub_Char_Table
1312 /* HEADER.SIZE is the vector's size field, which also holds the
1313 pseudovector type information. It holds the size, too. */
1314 struct vectorlike_header header;
1316 /* Depth of this sub char-table. It should be 1, 2, or 3. A sub
1317 char-table of depth 1 contains 16 elements, and each element
1318 covers 4096 (128*32) characters. A sub char-table of depth 2
1319 contains 32 elements, and each element covers 128 characters. A
1320 sub char-table of depth 3 contains 128 elements, and each element
1321 is for one character. */
1322 Lisp_Object depth;
1324 /* Minimum character covered by the sub char-table. */
1325 Lisp_Object min_char;
1327 /* Use set_sub_char_table_contents to set this. */
1328 Lisp_Object contents[FLEXIBLE_ARRAY_MEMBER];
1331 INLINE Lisp_Object
1332 CHAR_TABLE_REF_ASCII (Lisp_Object ct, ptrdiff_t idx)
1334 struct Lisp_Char_Table *tbl = NULL;
1335 Lisp_Object val;
1338 tbl = tbl ? XCHAR_TABLE (tbl->parent) : XCHAR_TABLE (ct);
1339 val = (! SUB_CHAR_TABLE_P (tbl->ascii) ? tbl->ascii
1340 : XSUB_CHAR_TABLE (tbl->ascii)->contents[idx]);
1341 if (NILP (val))
1342 val = tbl->defalt;
1344 while (NILP (val) && ! NILP (tbl->parent));
1346 return val;
1349 /* Almost equivalent to Faref (CT, IDX) with optimization for ASCII
1350 characters. Do not check validity of CT. */
1351 INLINE Lisp_Object
1352 CHAR_TABLE_REF (Lisp_Object ct, int idx)
1354 return (ASCII_CHAR_P (idx)
1355 ? CHAR_TABLE_REF_ASCII (ct, idx)
1356 : char_table_ref (ct, idx));
1359 /* Equivalent to Faset (CT, IDX, VAL) with optimization for ASCII and
1360 8-bit European characters. Do not check validity of CT. */
1361 INLINE void
1362 CHAR_TABLE_SET (Lisp_Object ct, int idx, Lisp_Object val)
1364 if (ASCII_CHAR_P (idx) && SUB_CHAR_TABLE_P (XCHAR_TABLE (ct)->ascii))
1365 set_sub_char_table_contents (XCHAR_TABLE (ct)->ascii, idx, val);
1366 else
1367 char_table_set (ct, idx, val);
1370 /* This structure describes a built-in function.
1371 It is generated by the DEFUN macro only.
1372 defsubr makes it into a Lisp object. */
1374 struct Lisp_Subr
1376 struct vectorlike_header header;
1377 union {
1378 Lisp_Object (*a0) (void);
1379 Lisp_Object (*a1) (Lisp_Object);
1380 Lisp_Object (*a2) (Lisp_Object, Lisp_Object);
1381 Lisp_Object (*a3) (Lisp_Object, Lisp_Object, Lisp_Object);
1382 Lisp_Object (*a4) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
1383 Lisp_Object (*a5) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
1384 Lisp_Object (*a6) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
1385 Lisp_Object (*a7) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
1386 Lisp_Object (*a8) (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
1387 Lisp_Object (*aUNEVALLED) (Lisp_Object args);
1388 Lisp_Object (*aMANY) (ptrdiff_t, Lisp_Object *);
1389 } function;
1390 short min_args, max_args;
1391 const char *symbol_name;
1392 const char *intspec;
1393 const char *doc;
1396 /* This is the number of slots that every char table must have. This
1397 counts the ordinary slots and the top, defalt, parent, and purpose
1398 slots. */
1399 enum CHAR_TABLE_STANDARD_SLOTS
1401 CHAR_TABLE_STANDARD_SLOTS = PSEUDOVECSIZE (struct Lisp_Char_Table, extras)
1404 /* Return the number of "extra" slots in the char table CT. */
1406 INLINE int
1407 CHAR_TABLE_EXTRA_SLOTS (struct Lisp_Char_Table *ct)
1409 return ((ct->header.size & PSEUDOVECTOR_SIZE_MASK)
1410 - CHAR_TABLE_STANDARD_SLOTS);
1414 /***********************************************************************
1415 Symbols
1416 ***********************************************************************/
1418 /* Interned state of a symbol. */
1420 enum symbol_interned
1422 SYMBOL_UNINTERNED = 0,
1423 SYMBOL_INTERNED = 1,
1424 SYMBOL_INTERNED_IN_INITIAL_OBARRAY = 2
1427 enum symbol_redirect
1429 SYMBOL_PLAINVAL = 4,
1430 SYMBOL_VARALIAS = 1,
1431 SYMBOL_LOCALIZED = 2,
1432 SYMBOL_FORWARDED = 3
1435 struct Lisp_Symbol
1437 unsigned gcmarkbit : 1;
1439 /* Indicates where the value can be found:
1440 0 : it's a plain var, the value is in the `value' field.
1441 1 : it's a varalias, the value is really in the `alias' symbol.
1442 2 : it's a localized var, the value is in the `blv' object.
1443 3 : it's a forwarding variable, the value is in `forward'. */
1444 ENUM_BF (symbol_redirect) redirect : 3;
1446 /* Non-zero means symbol is constant, i.e. changing its value
1447 should signal an error. If the value is 3, then the var
1448 can be changed, but only by `defconst'. */
1449 unsigned constant : 2;
1451 /* Interned state of the symbol. This is an enumerator from
1452 enum symbol_interned. */
1453 unsigned interned : 2;
1455 /* Non-zero means that this variable has been explicitly declared
1456 special (with `defvar' etc), and shouldn't be lexically bound. */
1457 unsigned declared_special : 1;
1459 /* The symbol's name, as a Lisp string. */
1460 Lisp_Object name;
1462 /* Value of the symbol or Qunbound if unbound. Which alternative of the
1463 union is used depends on the `redirect' field above. */
1464 union {
1465 Lisp_Object value;
1466 struct Lisp_Symbol *alias;
1467 struct Lisp_Buffer_Local_Value *blv;
1468 union Lisp_Fwd *fwd;
1469 } val;
1471 /* Function value of the symbol or Qnil if not fboundp. */
1472 Lisp_Object function;
1474 /* The symbol's property list. */
1475 Lisp_Object plist;
1477 /* Next symbol in obarray bucket, if the symbol is interned. */
1478 struct Lisp_Symbol *next;
1481 /* Value is name of symbol. */
1483 LISP_MACRO_DEFUN (SYMBOL_VAL, Lisp_Object, (struct Lisp_Symbol *sym), (sym))
1485 INLINE struct Lisp_Symbol *
1486 SYMBOL_ALIAS (struct Lisp_Symbol *sym)
1488 eassert (sym->redirect == SYMBOL_VARALIAS);
1489 return sym->val.alias;
1491 INLINE struct Lisp_Buffer_Local_Value *
1492 SYMBOL_BLV (struct Lisp_Symbol *sym)
1494 eassert (sym->redirect == SYMBOL_LOCALIZED);
1495 return sym->val.blv;
1497 INLINE union Lisp_Fwd *
1498 SYMBOL_FWD (struct Lisp_Symbol *sym)
1500 eassert (sym->redirect == SYMBOL_FORWARDED);
1501 return sym->val.fwd;
1504 LISP_MACRO_DEFUN_VOID (SET_SYMBOL_VAL,
1505 (struct Lisp_Symbol *sym, Lisp_Object v), (sym, v))
1507 INLINE void
1508 SET_SYMBOL_ALIAS (struct Lisp_Symbol *sym, struct Lisp_Symbol *v)
1510 eassert (sym->redirect == SYMBOL_VARALIAS);
1511 sym->val.alias = v;
1513 INLINE void
1514 SET_SYMBOL_BLV (struct Lisp_Symbol *sym, struct Lisp_Buffer_Local_Value *v)
1516 eassert (sym->redirect == SYMBOL_LOCALIZED);
1517 sym->val.blv = v;
1519 INLINE void
1520 SET_SYMBOL_FWD (struct Lisp_Symbol *sym, union Lisp_Fwd *v)
1522 eassert (sym->redirect == SYMBOL_FORWARDED);
1523 sym->val.fwd = v;
1526 INLINE Lisp_Object
1527 SYMBOL_NAME (Lisp_Object sym)
1529 return XSYMBOL (sym)->name;
1532 /* Value is true if SYM is an interned symbol. */
1534 INLINE bool
1535 SYMBOL_INTERNED_P (Lisp_Object sym)
1537 return XSYMBOL (sym)->interned != SYMBOL_UNINTERNED;
1540 /* Value is true if SYM is interned in initial_obarray. */
1542 INLINE bool
1543 SYMBOL_INTERNED_IN_INITIAL_OBARRAY_P (Lisp_Object sym)
1545 return XSYMBOL (sym)->interned == SYMBOL_INTERNED_IN_INITIAL_OBARRAY;
1548 /* Value is non-zero if symbol is considered a constant, i.e. its
1549 value cannot be changed (there is an exception for keyword symbols,
1550 whose value can be set to the keyword symbol itself). */
1552 LISP_MACRO_DEFUN (SYMBOL_CONSTANT_P, int, (Lisp_Object sym), (sym))
1554 #define DEFSYM(sym, name) \
1555 do { (sym) = intern_c_string ((name)); staticpro (&(sym)); } while (0)
1558 /***********************************************************************
1559 Hash Tables
1560 ***********************************************************************/
1562 /* The structure of a Lisp hash table. */
1564 struct hash_table_test
1566 /* Name of the function used to compare keys. */
1567 Lisp_Object name;
1569 /* User-supplied hash function, or nil. */
1570 Lisp_Object user_hash_function;
1572 /* User-supplied key comparison function, or nil. */
1573 Lisp_Object user_cmp_function;
1575 /* C function to compare two keys. */
1576 bool (*cmpfn) (struct hash_table_test *t, Lisp_Object, Lisp_Object);
1578 /* C function to compute hash code. */
1579 EMACS_UINT (*hashfn) (struct hash_table_test *t, Lisp_Object);
1582 struct Lisp_Hash_Table
1584 /* This is for Lisp; the hash table code does not refer to it. */
1585 struct vectorlike_header header;
1587 /* Nil if table is non-weak. Otherwise a symbol describing the
1588 weakness of the table. */
1589 Lisp_Object weak;
1591 /* When the table is resized, and this is an integer, compute the
1592 new size by adding this to the old size. If a float, compute the
1593 new size by multiplying the old size with this factor. */
1594 Lisp_Object rehash_size;
1596 /* Resize hash table when number of entries/ table size is >= this
1597 ratio, a float. */
1598 Lisp_Object rehash_threshold;
1600 /* Vector of hash codes.. If hash[I] is nil, this means that that
1601 entry I is unused. */
1602 Lisp_Object hash;
1604 /* Vector used to chain entries. If entry I is free, next[I] is the
1605 entry number of the next free item. If entry I is non-free,
1606 next[I] is the index of the next entry in the collision chain. */
1607 Lisp_Object next;
1609 /* Index of first free entry in free list. */
1610 Lisp_Object next_free;
1612 /* Bucket vector. A non-nil entry is the index of the first item in
1613 a collision chain. This vector's size can be larger than the
1614 hash table size to reduce collisions. */
1615 Lisp_Object index;
1617 /* Only the fields above are traced normally by the GC. The ones below
1618 `count' are special and are either ignored by the GC or traced in
1619 a special way (e.g. because of weakness). */
1621 /* Number of key/value entries in the table. */
1622 ptrdiff_t count;
1624 /* Vector of keys and values. The key of item I is found at index
1625 2 * I, the value is found at index 2 * I + 1.
1626 This is gc_marked specially if the table is weak. */
1627 Lisp_Object key_and_value;
1629 /* The comparison and hash functions. */
1630 struct hash_table_test test;
1632 /* Next weak hash table if this is a weak hash table. The head
1633 of the list is in weak_hash_tables. */
1634 struct Lisp_Hash_Table *next_weak;
1638 INLINE struct Lisp_Hash_Table *
1639 XHASH_TABLE (Lisp_Object a)
1641 return XUNTAG (a, Lisp_Vectorlike);
1644 #define XSET_HASH_TABLE(VAR, PTR) \
1645 (XSETPSEUDOVECTOR (VAR, PTR, PVEC_HASH_TABLE))
1647 INLINE bool
1648 HASH_TABLE_P (Lisp_Object a)
1650 return PSEUDOVECTORP (a, PVEC_HASH_TABLE);
1653 /* Value is the key part of entry IDX in hash table H. */
1654 INLINE Lisp_Object
1655 HASH_KEY (struct Lisp_Hash_Table *h, ptrdiff_t idx)
1657 return AREF (h->key_and_value, 2 * idx);
1660 /* Value is the value part of entry IDX in hash table H. */
1661 INLINE Lisp_Object
1662 HASH_VALUE (struct Lisp_Hash_Table *h, ptrdiff_t idx)
1664 return AREF (h->key_and_value, 2 * idx + 1);
1667 /* Value is the index of the next entry following the one at IDX
1668 in hash table H. */
1669 INLINE Lisp_Object
1670 HASH_NEXT (struct Lisp_Hash_Table *h, ptrdiff_t idx)
1672 return AREF (h->next, idx);
1675 /* Value is the hash code computed for entry IDX in hash table H. */
1676 INLINE Lisp_Object
1677 HASH_HASH (struct Lisp_Hash_Table *h, ptrdiff_t idx)
1679 return AREF (h->hash, idx);
1682 /* Value is the index of the element in hash table H that is the
1683 start of the collision list at index IDX in the index vector of H. */
1684 INLINE Lisp_Object
1685 HASH_INDEX (struct Lisp_Hash_Table *h, ptrdiff_t idx)
1687 return AREF (h->index, idx);
1690 /* Value is the size of hash table H. */
1691 INLINE ptrdiff_t
1692 HASH_TABLE_SIZE (struct Lisp_Hash_Table *h)
1694 return ASIZE (h->next);
1697 /* Default size for hash tables if not specified. */
1699 enum DEFAULT_HASH_SIZE { DEFAULT_HASH_SIZE = 65 };
1701 /* Default threshold specifying when to resize a hash table. The
1702 value gives the ratio of current entries in the hash table and the
1703 size of the hash table. */
1705 static double const DEFAULT_REHASH_THRESHOLD = 0.8;
1707 /* Default factor by which to increase the size of a hash table. */
1709 static double const DEFAULT_REHASH_SIZE = 1.5;
1711 /* Combine two integers X and Y for hashing. The result might not fit
1712 into a Lisp integer. */
1714 INLINE EMACS_UINT
1715 sxhash_combine (EMACS_UINT x, EMACS_UINT y)
1717 return (x << 4) + (x >> (BITS_PER_EMACS_INT - 4)) + y;
1720 /* Hash X, returning a value that fits into a fixnum. */
1722 INLINE EMACS_UINT
1723 SXHASH_REDUCE (EMACS_UINT x)
1725 return (x ^ x >> (BITS_PER_EMACS_INT - FIXNUM_BITS)) & INTMASK;
1728 /* These structures are used for various misc types. */
1730 struct Lisp_Misc_Any /* Supertype of all Misc types. */
1732 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_??? */
1733 unsigned gcmarkbit : 1;
1734 int spacer : 15;
1737 struct Lisp_Marker
1739 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_Marker */
1740 unsigned gcmarkbit : 1;
1741 int spacer : 13;
1742 /* This flag is temporarily used in the functions
1743 decode/encode_coding_object to record that the marker position
1744 must be adjusted after the conversion. */
1745 unsigned int need_adjustment : 1;
1746 /* 1 means normal insertion at the marker's position
1747 leaves the marker after the inserted text. */
1748 unsigned int insertion_type : 1;
1749 /* This is the buffer that the marker points into, or 0 if it points nowhere.
1750 Note: a chain of markers can contain markers pointing into different
1751 buffers (the chain is per buffer_text rather than per buffer, so it's
1752 shared between indirect buffers). */
1753 /* This is used for (other than NULL-checking):
1754 - Fmarker_buffer
1755 - Fset_marker: check eq(oldbuf, newbuf) to avoid unchain+rechain.
1756 - unchain_marker: to find the list from which to unchain.
1757 - Fkill_buffer: to only unchain the markers of current indirect buffer.
1759 struct buffer *buffer;
1761 /* The remaining fields are meaningless in a marker that
1762 does not point anywhere. */
1764 /* For markers that point somewhere,
1765 this is used to chain of all the markers in a given buffer. */
1766 /* We could remove it and use an array in buffer_text instead.
1767 That would also allow to preserve it ordered. */
1768 struct Lisp_Marker *next;
1769 /* This is the char position where the marker points. */
1770 ptrdiff_t charpos;
1771 /* This is the byte position.
1772 It's mostly used as a charpos<->bytepos cache (i.e. it's not directly
1773 used to implement the functionality of markers, but rather to (ab)use
1774 markers as a cache for char<->byte mappings). */
1775 ptrdiff_t bytepos;
1778 /* START and END are markers in the overlay's buffer, and
1779 PLIST is the overlay's property list. */
1780 struct Lisp_Overlay
1781 /* An overlay's real data content is:
1782 - plist
1783 - buffer (really there are two buffer pointers, one per marker,
1784 and both points to the same buffer)
1785 - insertion type of both ends (per-marker fields)
1786 - start & start byte (of start marker)
1787 - end & end byte (of end marker)
1788 - next (singly linked list of overlays)
1789 - next fields of start and end markers (singly linked list of markers).
1790 I.e. 9words plus 2 bits, 3words of which are for external linked lists.
1793 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_Overlay */
1794 unsigned gcmarkbit : 1;
1795 int spacer : 15;
1796 struct Lisp_Overlay *next;
1797 Lisp_Object start;
1798 Lisp_Object end;
1799 Lisp_Object plist;
1802 /* Types of data which may be saved in a Lisp_Save_Value. */
1804 enum
1806 SAVE_UNUSED,
1807 SAVE_INTEGER,
1808 SAVE_FUNCPOINTER,
1809 SAVE_POINTER,
1810 SAVE_OBJECT
1813 /* Number of bits needed to store one of the above values. */
1814 enum { SAVE_SLOT_BITS = 3 };
1816 /* Number of slots in a save value where save_type is nonzero. */
1817 enum { SAVE_VALUE_SLOTS = 4 };
1819 /* Bit-width and values for struct Lisp_Save_Value's save_type member. */
1821 enum { SAVE_TYPE_BITS = SAVE_VALUE_SLOTS * SAVE_SLOT_BITS + 1 };
1823 enum Lisp_Save_Type
1825 SAVE_TYPE_INT_INT = SAVE_INTEGER + (SAVE_INTEGER << SAVE_SLOT_BITS),
1826 SAVE_TYPE_INT_INT_INT
1827 = (SAVE_INTEGER + (SAVE_TYPE_INT_INT << SAVE_SLOT_BITS)),
1828 SAVE_TYPE_OBJ_OBJ = SAVE_OBJECT + (SAVE_OBJECT << SAVE_SLOT_BITS),
1829 SAVE_TYPE_OBJ_OBJ_OBJ = SAVE_OBJECT + (SAVE_TYPE_OBJ_OBJ << SAVE_SLOT_BITS),
1830 SAVE_TYPE_OBJ_OBJ_OBJ_OBJ
1831 = SAVE_OBJECT + (SAVE_TYPE_OBJ_OBJ_OBJ << SAVE_SLOT_BITS),
1832 SAVE_TYPE_PTR_INT = SAVE_POINTER + (SAVE_INTEGER << SAVE_SLOT_BITS),
1833 SAVE_TYPE_PTR_OBJ = SAVE_POINTER + (SAVE_OBJECT << SAVE_SLOT_BITS),
1834 SAVE_TYPE_PTR_PTR = SAVE_POINTER + (SAVE_POINTER << SAVE_SLOT_BITS),
1835 SAVE_TYPE_FUNCPTR_PTR_OBJ
1836 = SAVE_FUNCPOINTER + (SAVE_TYPE_PTR_OBJ << SAVE_SLOT_BITS),
1838 /* This has an extra bit indicating it's raw memory. */
1839 SAVE_TYPE_MEMORY = SAVE_TYPE_PTR_INT + (1 << (SAVE_TYPE_BITS - 1))
1842 /* Special object used to hold a different values for later use.
1844 This is mostly used to package C integers and pointers to call
1845 record_unwind_protect when two or more values need to be saved.
1846 For example:
1849 struct my_data *md = get_my_data ();
1850 ptrdiff_t mi = get_my_integer ();
1851 record_unwind_protect (my_unwind, make_save_ptr_int (md, mi));
1854 Lisp_Object my_unwind (Lisp_Object arg)
1856 struct my_data *md = XSAVE_POINTER (arg, 0);
1857 ptrdiff_t mi = XSAVE_INTEGER (arg, 1);
1861 If ENABLE_CHECKING is in effect, XSAVE_xxx macros do type checking of the
1862 saved objects and raise eassert if type of the saved object doesn't match
1863 the type which is extracted. In the example above, XSAVE_INTEGER (arg, 2)
1864 and XSAVE_OBJECT (arg, 0) are wrong because nothing was saved in slot 2 and
1865 slot 0 is a pointer. */
1867 typedef void (*voidfuncptr) (void);
1869 struct Lisp_Save_Value
1871 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_Save_Value */
1872 unsigned gcmarkbit : 1;
1873 int spacer : 32 - (16 + 1 + SAVE_TYPE_BITS);
1875 /* V->data may hold up to SAVE_VALUE_SLOTS entries. The type of
1876 V's data entries are determined by V->save_type. E.g., if
1877 V->save_type == SAVE_TYPE_PTR_OBJ, V->data[0] is a pointer,
1878 V->data[1] is an integer, and V's other data entries are unused.
1880 If V->save_type == SAVE_TYPE_MEMORY, V->data[0].pointer is the address of
1881 a memory area containing V->data[1].integer potential Lisp_Objects. */
1882 ENUM_BF (Lisp_Save_Type) save_type : SAVE_TYPE_BITS;
1883 union {
1884 void *pointer;
1885 voidfuncptr funcpointer;
1886 ptrdiff_t integer;
1887 Lisp_Object object;
1888 } data[SAVE_VALUE_SLOTS];
1891 /* Return the type of V's Nth saved value. */
1892 INLINE int
1893 save_type (struct Lisp_Save_Value *v, int n)
1895 eassert (0 <= n && n < SAVE_VALUE_SLOTS);
1896 return (v->save_type >> (SAVE_SLOT_BITS * n) & ((1 << SAVE_SLOT_BITS) - 1));
1899 /* Get and set the Nth saved pointer. */
1901 INLINE void *
1902 XSAVE_POINTER (Lisp_Object obj, int n)
1904 eassert (save_type (XSAVE_VALUE (obj), n) == SAVE_POINTER);
1905 return XSAVE_VALUE (obj)->data[n].pointer;
1907 INLINE void
1908 set_save_pointer (Lisp_Object obj, int n, void *val)
1910 eassert (save_type (XSAVE_VALUE (obj), n) == SAVE_POINTER);
1911 XSAVE_VALUE (obj)->data[n].pointer = val;
1913 INLINE voidfuncptr
1914 XSAVE_FUNCPOINTER (Lisp_Object obj, int n)
1916 eassert (save_type (XSAVE_VALUE (obj), n) == SAVE_FUNCPOINTER);
1917 return XSAVE_VALUE (obj)->data[n].funcpointer;
1920 /* Likewise for the saved integer. */
1922 INLINE ptrdiff_t
1923 XSAVE_INTEGER (Lisp_Object obj, int n)
1925 eassert (save_type (XSAVE_VALUE (obj), n) == SAVE_INTEGER);
1926 return XSAVE_VALUE (obj)->data[n].integer;
1928 INLINE void
1929 set_save_integer (Lisp_Object obj, int n, ptrdiff_t val)
1931 eassert (save_type (XSAVE_VALUE (obj), n) == SAVE_INTEGER);
1932 XSAVE_VALUE (obj)->data[n].integer = val;
1935 /* Extract Nth saved object. */
1937 INLINE Lisp_Object
1938 XSAVE_OBJECT (Lisp_Object obj, int n)
1940 eassert (save_type (XSAVE_VALUE (obj), n) == SAVE_OBJECT);
1941 return XSAVE_VALUE (obj)->data[n].object;
1944 /* A miscellaneous object, when it's on the free list. */
1945 struct Lisp_Free
1947 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_Free */
1948 unsigned gcmarkbit : 1;
1949 int spacer : 15;
1950 union Lisp_Misc *chain;
1953 /* To get the type field of a union Lisp_Misc, use XMISCTYPE.
1954 It uses one of these struct subtypes to get the type field. */
1956 union Lisp_Misc
1958 struct Lisp_Misc_Any u_any; /* Supertype of all Misc types. */
1959 struct Lisp_Free u_free;
1960 struct Lisp_Marker u_marker;
1961 struct Lisp_Overlay u_overlay;
1962 struct Lisp_Save_Value u_save_value;
1965 INLINE union Lisp_Misc *
1966 XMISC (Lisp_Object a)
1968 return XUNTAG (a, Lisp_Misc);
1971 INLINE struct Lisp_Misc_Any *
1972 XMISCANY (Lisp_Object a)
1974 eassert (MISCP (a));
1975 return & XMISC (a)->u_any;
1978 INLINE enum Lisp_Misc_Type
1979 XMISCTYPE (Lisp_Object a)
1981 return XMISCANY (a)->type;
1984 INLINE struct Lisp_Marker *
1985 XMARKER (Lisp_Object a)
1987 eassert (MARKERP (a));
1988 return & XMISC (a)->u_marker;
1991 INLINE struct Lisp_Overlay *
1992 XOVERLAY (Lisp_Object a)
1994 eassert (OVERLAYP (a));
1995 return & XMISC (a)->u_overlay;
1998 INLINE struct Lisp_Save_Value *
1999 XSAVE_VALUE (Lisp_Object a)
2001 eassert (SAVE_VALUEP (a));
2002 return & XMISC (a)->u_save_value;
2005 /* Forwarding pointer to an int variable.
2006 This is allowed only in the value cell of a symbol,
2007 and it means that the symbol's value really lives in the
2008 specified int variable. */
2009 struct Lisp_Intfwd
2011 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Int */
2012 EMACS_INT *intvar;
2015 /* Boolean forwarding pointer to an int variable.
2016 This is like Lisp_Intfwd except that the ostensible
2017 "value" of the symbol is t if the int variable is nonzero,
2018 nil if it is zero. */
2019 struct Lisp_Boolfwd
2021 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Bool */
2022 bool *boolvar;
2025 /* Forwarding pointer to a Lisp_Object variable.
2026 This is allowed only in the value cell of a symbol,
2027 and it means that the symbol's value really lives in the
2028 specified variable. */
2029 struct Lisp_Objfwd
2031 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Obj */
2032 Lisp_Object *objvar;
2035 /* Like Lisp_Objfwd except that value lives in a slot in the
2036 current buffer. Value is byte index of slot within buffer. */
2037 struct Lisp_Buffer_Objfwd
2039 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Buffer_Obj */
2040 int offset;
2041 /* One of Qnil, Qintegerp, Qsymbolp, Qstringp, Qfloatp or Qnumberp. */
2042 Lisp_Object predicate;
2045 /* struct Lisp_Buffer_Local_Value is used in a symbol value cell when
2046 the symbol has buffer-local or frame-local bindings. (Exception:
2047 some buffer-local variables are built-in, with their values stored
2048 in the buffer structure itself. They are handled differently,
2049 using struct Lisp_Buffer_Objfwd.)
2051 The `realvalue' slot holds the variable's current value, or a
2052 forwarding pointer to where that value is kept. This value is the
2053 one that corresponds to the loaded binding. To read or set the
2054 variable, you must first make sure the right binding is loaded;
2055 then you can access the value in (or through) `realvalue'.
2057 `buffer' and `frame' are the buffer and frame for which the loaded
2058 binding was found. If those have changed, to make sure the right
2059 binding is loaded it is necessary to find which binding goes with
2060 the current buffer and selected frame, then load it. To load it,
2061 first unload the previous binding, then copy the value of the new
2062 binding into `realvalue' (or through it). Also update
2063 LOADED-BINDING to point to the newly loaded binding.
2065 `local_if_set' indicates that merely setting the variable creates a
2066 local binding for the current buffer. Otherwise the latter, setting
2067 the variable does not do that; only make-local-variable does that. */
2069 struct Lisp_Buffer_Local_Value
2071 /* 1 means that merely setting the variable creates a local
2072 binding for the current buffer. */
2073 unsigned int local_if_set : 1;
2074 /* 1 means this variable can have frame-local bindings, otherwise, it is
2075 can have buffer-local bindings. The two cannot be combined. */
2076 unsigned int frame_local : 1;
2077 /* 1 means that the binding now loaded was found.
2078 Presumably equivalent to (defcell!=valcell). */
2079 unsigned int found : 1;
2080 /* If non-NULL, a forwarding to the C var where it should also be set. */
2081 union Lisp_Fwd *fwd; /* Should never be (Buffer|Kboard)_Objfwd. */
2082 /* The buffer or frame for which the loaded binding was found. */
2083 Lisp_Object where;
2084 /* A cons cell that holds the default value. It has the form
2085 (SYMBOL . DEFAULT-VALUE). */
2086 Lisp_Object defcell;
2087 /* The cons cell from `where's parameter alist.
2088 It always has the form (SYMBOL . VALUE)
2089 Note that if `forward' is non-nil, VALUE may be out of date.
2090 Also if the currently loaded binding is the default binding, then
2091 this is `eq'ual to defcell. */
2092 Lisp_Object valcell;
2095 /* Like Lisp_Objfwd except that value lives in a slot in the
2096 current kboard. */
2097 struct Lisp_Kboard_Objfwd
2099 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Kboard_Obj */
2100 int offset;
2103 union Lisp_Fwd
2105 struct Lisp_Intfwd u_intfwd;
2106 struct Lisp_Boolfwd u_boolfwd;
2107 struct Lisp_Objfwd u_objfwd;
2108 struct Lisp_Buffer_Objfwd u_buffer_objfwd;
2109 struct Lisp_Kboard_Objfwd u_kboard_objfwd;
2112 INLINE enum Lisp_Fwd_Type
2113 XFWDTYPE (union Lisp_Fwd *a)
2115 return a->u_intfwd.type;
2118 INLINE struct Lisp_Buffer_Objfwd *
2119 XBUFFER_OBJFWD (union Lisp_Fwd *a)
2121 eassert (BUFFER_OBJFWDP (a));
2122 return &a->u_buffer_objfwd;
2125 /* Lisp floating point type. */
2126 struct Lisp_Float
2128 union
2130 double data;
2131 struct Lisp_Float *chain;
2132 } u;
2135 INLINE double
2136 XFLOAT_DATA (Lisp_Object f)
2138 return XFLOAT (f)->u.data;
2141 /* Most hosts nowadays use IEEE floating point, so they use IEC 60559
2142 representations, have infinities and NaNs, and do not trap on
2143 exceptions. Define IEEE_FLOATING_POINT if this host is one of the
2144 typical ones. The C11 macro __STDC_IEC_559__ is close to what is
2145 wanted here, but is not quite right because Emacs does not require
2146 all the features of C11 Annex F (and does not require C11 at all,
2147 for that matter). */
2148 enum
2150 IEEE_FLOATING_POINT
2151 = (FLT_RADIX == 2 && FLT_MANT_DIG == 24
2152 && FLT_MIN_EXP == -125 && FLT_MAX_EXP == 128)
2155 /* A character, declared with the following typedef, is a member
2156 of some character set associated with the current buffer. */
2157 #ifndef _UCHAR_T /* Protect against something in ctab.h on AIX. */
2158 #define _UCHAR_T
2159 typedef unsigned char UCHAR;
2160 #endif
2162 /* Meanings of slots in a Lisp_Compiled: */
2164 enum Lisp_Compiled
2166 COMPILED_ARGLIST = 0,
2167 COMPILED_BYTECODE = 1,
2168 COMPILED_CONSTANTS = 2,
2169 COMPILED_STACK_DEPTH = 3,
2170 COMPILED_DOC_STRING = 4,
2171 COMPILED_INTERACTIVE = 5
2174 /* Flag bits in a character. These also get used in termhooks.h.
2175 Richard Stallman <rms@gnu.ai.mit.edu> thinks that MULE
2176 (MUlti-Lingual Emacs) might need 22 bits for the character value
2177 itself, so we probably shouldn't use any bits lower than 0x0400000. */
2178 enum char_bits
2180 CHAR_ALT = 0x0400000,
2181 CHAR_SUPER = 0x0800000,
2182 CHAR_HYPER = 0x1000000,
2183 CHAR_SHIFT = 0x2000000,
2184 CHAR_CTL = 0x4000000,
2185 CHAR_META = 0x8000000,
2187 CHAR_MODIFIER_MASK =
2188 CHAR_ALT | CHAR_SUPER | CHAR_HYPER | CHAR_SHIFT | CHAR_CTL | CHAR_META,
2190 /* Actually, the current Emacs uses 22 bits for the character value
2191 itself. */
2192 CHARACTERBITS = 22
2195 /* Data type checking. */
2197 LISP_MACRO_DEFUN (NILP, bool, (Lisp_Object x), (x))
2199 INLINE bool
2200 NUMBERP (Lisp_Object x)
2202 return INTEGERP (x) || FLOATP (x);
2204 INLINE bool
2205 NATNUMP (Lisp_Object x)
2207 return INTEGERP (x) && 0 <= XINT (x);
2210 INLINE bool
2211 RANGED_INTEGERP (intmax_t lo, Lisp_Object x, intmax_t hi)
2213 return INTEGERP (x) && lo <= XINT (x) && XINT (x) <= hi;
2216 #define TYPE_RANGED_INTEGERP(type, x) \
2217 (INTEGERP (x) \
2218 && (TYPE_SIGNED (type) ? TYPE_MINIMUM (type) <= XINT (x) : 0 <= XINT (x)) \
2219 && XINT (x) <= TYPE_MAXIMUM (type))
2221 LISP_MACRO_DEFUN (CONSP, bool, (Lisp_Object x), (x))
2222 LISP_MACRO_DEFUN (FLOATP, bool, (Lisp_Object x), (x))
2223 LISP_MACRO_DEFUN (MISCP, bool, (Lisp_Object x), (x))
2224 LISP_MACRO_DEFUN (SYMBOLP, bool, (Lisp_Object x), (x))
2225 LISP_MACRO_DEFUN (INTEGERP, bool, (Lisp_Object x), (x))
2226 LISP_MACRO_DEFUN (VECTORLIKEP, bool, (Lisp_Object x), (x))
2227 LISP_MACRO_DEFUN (MARKERP, bool, (Lisp_Object x), (x))
2229 INLINE bool
2230 STRINGP (Lisp_Object x)
2232 return XTYPE (x) == Lisp_String;
2234 INLINE bool
2235 VECTORP (Lisp_Object x)
2237 return VECTORLIKEP (x) && ! (ASIZE (x) & PSEUDOVECTOR_FLAG);
2239 INLINE bool
2240 OVERLAYP (Lisp_Object x)
2242 return MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Overlay;
2244 INLINE bool
2245 SAVE_VALUEP (Lisp_Object x)
2247 return MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Save_Value;
2250 INLINE bool
2251 AUTOLOADP (Lisp_Object x)
2253 return CONSP (x) && EQ (Qautoload, XCAR (x));
2256 INLINE bool
2257 BUFFER_OBJFWDP (union Lisp_Fwd *a)
2259 return XFWDTYPE (a) == Lisp_Fwd_Buffer_Obj;
2262 INLINE bool
2263 PSEUDOVECTOR_TYPEP (struct vectorlike_header *a, int code)
2265 return ((a->size & (PSEUDOVECTOR_FLAG | PVEC_TYPE_MASK))
2266 == (PSEUDOVECTOR_FLAG | (code << PSEUDOVECTOR_AREA_BITS)));
2269 /* True if A is a pseudovector whose code is CODE. */
2270 INLINE bool
2271 PSEUDOVECTORP (Lisp_Object a, int code)
2273 if (! VECTORLIKEP (a))
2274 return 0;
2275 else
2277 /* Converting to struct vectorlike_header * avoids aliasing issues. */
2278 struct vectorlike_header *h = XUNTAG (a, Lisp_Vectorlike);
2279 return PSEUDOVECTOR_TYPEP (h, code);
2284 /* Test for specific pseudovector types. */
2286 INLINE bool
2287 WINDOW_CONFIGURATIONP (Lisp_Object a)
2289 return PSEUDOVECTORP (a, PVEC_WINDOW_CONFIGURATION);
2292 INLINE bool
2293 PROCESSP (Lisp_Object a)
2295 return PSEUDOVECTORP (a, PVEC_PROCESS);
2298 INLINE bool
2299 WINDOWP (Lisp_Object a)
2301 return PSEUDOVECTORP (a, PVEC_WINDOW);
2304 INLINE bool
2305 TERMINALP (Lisp_Object a)
2307 return PSEUDOVECTORP (a, PVEC_TERMINAL);
2310 INLINE bool
2311 SUBRP (Lisp_Object a)
2313 return PSEUDOVECTORP (a, PVEC_SUBR);
2316 INLINE bool
2317 COMPILEDP (Lisp_Object a)
2319 return PSEUDOVECTORP (a, PVEC_COMPILED);
2322 INLINE bool
2323 BUFFERP (Lisp_Object a)
2325 return PSEUDOVECTORP (a, PVEC_BUFFER);
2328 INLINE bool
2329 CHAR_TABLE_P (Lisp_Object a)
2331 return PSEUDOVECTORP (a, PVEC_CHAR_TABLE);
2334 INLINE bool
2335 SUB_CHAR_TABLE_P (Lisp_Object a)
2337 return PSEUDOVECTORP (a, PVEC_SUB_CHAR_TABLE);
2340 INLINE bool
2341 BOOL_VECTOR_P (Lisp_Object a)
2343 return PSEUDOVECTORP (a, PVEC_BOOL_VECTOR);
2346 INLINE bool
2347 FRAMEP (Lisp_Object a)
2349 return PSEUDOVECTORP (a, PVEC_FRAME);
2352 /* Test for image (image . spec) */
2353 INLINE bool
2354 IMAGEP (Lisp_Object x)
2356 return CONSP (x) && EQ (XCAR (x), Qimage);
2359 /* Array types. */
2360 INLINE bool
2361 ARRAYP (Lisp_Object x)
2363 return VECTORP (x) || STRINGP (x) || CHAR_TABLE_P (x) || BOOL_VECTOR_P (x);
2366 INLINE void
2367 CHECK_LIST (Lisp_Object x)
2369 CHECK_TYPE (CONSP (x) || NILP (x), Qlistp, x);
2372 LISP_MACRO_DEFUN_VOID (CHECK_LIST_CONS, (Lisp_Object x, Lisp_Object y), (x, y))
2373 LISP_MACRO_DEFUN_VOID (CHECK_SYMBOL, (Lisp_Object x), (x))
2374 LISP_MACRO_DEFUN_VOID (CHECK_NUMBER, (Lisp_Object x), (x))
2376 INLINE void
2377 CHECK_STRING (Lisp_Object x)
2379 CHECK_TYPE (STRINGP (x), Qstringp, x);
2381 INLINE void
2382 CHECK_STRING_CAR (Lisp_Object x)
2384 CHECK_TYPE (STRINGP (XCAR (x)), Qstringp, XCAR (x));
2386 INLINE void
2387 CHECK_CONS (Lisp_Object x)
2389 CHECK_TYPE (CONSP (x), Qconsp, x);
2391 INLINE void
2392 CHECK_VECTOR (Lisp_Object x)
2394 CHECK_TYPE (VECTORP (x), Qvectorp, x);
2396 INLINE void
2397 CHECK_BOOL_VECTOR (Lisp_Object x)
2399 CHECK_TYPE (BOOL_VECTOR_P (x), Qbool_vector_p, x);
2401 INLINE void
2402 CHECK_VECTOR_OR_STRING (Lisp_Object x)
2404 CHECK_TYPE (VECTORP (x) || STRINGP (x), Qarrayp, x);
2406 INLINE void
2407 CHECK_ARRAY (Lisp_Object x, Lisp_Object Qxxxp)
2409 CHECK_TYPE (ARRAYP (x), Qxxxp, x);
2411 INLINE void
2412 CHECK_BUFFER (Lisp_Object x)
2414 CHECK_TYPE (BUFFERP (x), Qbufferp, x);
2416 INLINE void
2417 CHECK_WINDOW (Lisp_Object x)
2419 CHECK_TYPE (WINDOWP (x), Qwindowp, x);
2421 INLINE void
2422 CHECK_PROCESS (Lisp_Object x)
2424 CHECK_TYPE (PROCESSP (x), Qprocessp, x);
2426 INLINE void
2427 CHECK_NATNUM (Lisp_Object x)
2429 CHECK_TYPE (NATNUMP (x), Qwholenump, x);
2432 #define CHECK_RANGED_INTEGER(x, lo, hi) \
2433 do { \
2434 CHECK_NUMBER (x); \
2435 if (! ((lo) <= XINT (x) && XINT (x) <= (hi))) \
2436 args_out_of_range_3 \
2437 (x, \
2438 make_number ((lo) < 0 && (lo) < MOST_NEGATIVE_FIXNUM \
2439 ? MOST_NEGATIVE_FIXNUM \
2440 : (lo)), \
2441 make_number (min (hi, MOST_POSITIVE_FIXNUM))); \
2442 } while (0)
2443 #define CHECK_TYPE_RANGED_INTEGER(type, x) \
2444 do { \
2445 if (TYPE_SIGNED (type)) \
2446 CHECK_RANGED_INTEGER (x, TYPE_MINIMUM (type), TYPE_MAXIMUM (type)); \
2447 else \
2448 CHECK_RANGED_INTEGER (x, 0, TYPE_MAXIMUM (type)); \
2449 } while (0)
2451 #define CHECK_NUMBER_COERCE_MARKER(x) \
2452 do { if (MARKERP ((x))) XSETFASTINT (x, marker_position (x)); \
2453 else CHECK_TYPE (INTEGERP (x), Qinteger_or_marker_p, x); } while (0)
2455 INLINE double
2456 XFLOATINT (Lisp_Object n)
2458 return extract_float (n);
2461 INLINE void
2462 CHECK_NUMBER_OR_FLOAT (Lisp_Object x)
2464 CHECK_TYPE (FLOATP (x) || INTEGERP (x), Qnumberp, x);
2467 #define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(x) \
2468 do { if (MARKERP (x)) XSETFASTINT (x, marker_position (x)); \
2469 else CHECK_TYPE (INTEGERP (x) || FLOATP (x), Qnumber_or_marker_p, x); } while (0)
2471 /* Since we can't assign directly to the CAR or CDR fields of a cons
2472 cell, use these when checking that those fields contain numbers. */
2473 INLINE void
2474 CHECK_NUMBER_CAR (Lisp_Object x)
2476 Lisp_Object tmp = XCAR (x);
2477 CHECK_NUMBER (tmp);
2478 XSETCAR (x, tmp);
2481 INLINE void
2482 CHECK_NUMBER_CDR (Lisp_Object x)
2484 Lisp_Object tmp = XCDR (x);
2485 CHECK_NUMBER (tmp);
2486 XSETCDR (x, tmp);
2489 /* Define a built-in function for calling from Lisp.
2490 `lname' should be the name to give the function in Lisp,
2491 as a null-terminated C string.
2492 `fnname' should be the name of the function in C.
2493 By convention, it starts with F.
2494 `sname' should be the name for the C constant structure
2495 that records information on this function for internal use.
2496 By convention, it should be the same as `fnname' but with S instead of F.
2497 It's too bad that C macros can't compute this from `fnname'.
2498 `minargs' should be a number, the minimum number of arguments allowed.
2499 `maxargs' should be a number, the maximum number of arguments allowed,
2500 or else MANY or UNEVALLED.
2501 MANY means pass a vector of evaluated arguments,
2502 in the form of an integer number-of-arguments
2503 followed by the address of a vector of Lisp_Objects
2504 which contains the argument values.
2505 UNEVALLED means pass the list of unevaluated arguments
2506 `intspec' says how interactive arguments are to be fetched.
2507 If the string starts with a `(', `intspec' is evaluated and the resulting
2508 list is the list of arguments.
2509 If it's a string that doesn't start with `(', the value should follow
2510 the one of the doc string for `interactive'.
2511 A null string means call interactively with no arguments.
2512 `doc' is documentation for the user. */
2514 /* This version of DEFUN declares a function prototype with the right
2515 arguments, so we can catch errors with maxargs at compile-time. */
2516 #ifdef _MSC_VER
2517 #define DEFUN(lname, fnname, sname, minargs, maxargs, intspec, doc) \
2518 Lisp_Object fnname DEFUN_ARGS_ ## maxargs ; \
2519 static struct Lisp_Subr alignas (GCALIGNMENT) sname = \
2520 { { (PVEC_SUBR << PSEUDOVECTOR_AREA_BITS) \
2521 | (sizeof (struct Lisp_Subr) / sizeof (EMACS_INT)) }, \
2522 { (Lisp_Object (__cdecl *)(void))fnname }, \
2523 minargs, maxargs, lname, intspec, 0}; \
2524 Lisp_Object fnname
2525 #else /* not _MSC_VER */
2526 # if __STDC_VERSION__ < 199901
2527 # define DEFUN_FUNCTION_INIT(fnname, maxargs) (Lisp_Object (*) (void)) fnname
2528 # else
2529 # define DEFUN_FUNCTION_INIT(fnname, maxargs) .a ## maxargs = fnname
2530 # endif
2531 #define DEFUN(lname, fnname, sname, minargs, maxargs, intspec, doc) \
2532 Lisp_Object fnname DEFUN_ARGS_ ## maxargs ; \
2533 static struct Lisp_Subr alignas (GCALIGNMENT) sname = \
2534 { { PVEC_SUBR << PSEUDOVECTOR_AREA_BITS }, \
2535 { DEFUN_FUNCTION_INIT (fnname, maxargs) }, \
2536 minargs, maxargs, lname, intspec, 0}; \
2537 Lisp_Object fnname
2538 #endif
2540 /* Note that the weird token-substitution semantics of ANSI C makes
2541 this work for MANY and UNEVALLED. */
2542 #define DEFUN_ARGS_MANY (ptrdiff_t, Lisp_Object *)
2543 #define DEFUN_ARGS_UNEVALLED (Lisp_Object)
2544 #define DEFUN_ARGS_0 (void)
2545 #define DEFUN_ARGS_1 (Lisp_Object)
2546 #define DEFUN_ARGS_2 (Lisp_Object, Lisp_Object)
2547 #define DEFUN_ARGS_3 (Lisp_Object, Lisp_Object, Lisp_Object)
2548 #define DEFUN_ARGS_4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object)
2549 #define DEFUN_ARGS_5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \
2550 Lisp_Object)
2551 #define DEFUN_ARGS_6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \
2552 Lisp_Object, Lisp_Object)
2553 #define DEFUN_ARGS_7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \
2554 Lisp_Object, Lisp_Object, Lisp_Object)
2555 #define DEFUN_ARGS_8 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \
2556 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object)
2558 /* True if OBJ is a Lisp function. */
2559 INLINE bool
2560 FUNCTIONP (Lisp_Object obj)
2562 return functionp (obj);
2565 /* defsubr (Sname);
2566 is how we define the symbol for function `name' at start-up time. */
2567 extern void defsubr (struct Lisp_Subr *);
2569 enum maxargs
2571 MANY = -2,
2572 UNEVALLED = -1
2575 extern void defvar_lisp (struct Lisp_Objfwd *, const char *, Lisp_Object *);
2576 extern void defvar_lisp_nopro (struct Lisp_Objfwd *, const char *, Lisp_Object *);
2577 extern void defvar_bool (struct Lisp_Boolfwd *, const char *, bool *);
2578 extern void defvar_int (struct Lisp_Intfwd *, const char *, EMACS_INT *);
2579 extern void defvar_kboard (struct Lisp_Kboard_Objfwd *, const char *, int);
2581 /* Macros we use to define forwarded Lisp variables.
2582 These are used in the syms_of_FILENAME functions.
2584 An ordinary (not in buffer_defaults, per-buffer, or per-keyboard)
2585 lisp variable is actually a field in `struct emacs_globals'. The
2586 field's name begins with "f_", which is a convention enforced by
2587 these macros. Each such global has a corresponding #define in
2588 globals.h; the plain name should be used in the code.
2590 E.g., the global "cons_cells_consed" is declared as "int
2591 f_cons_cells_consed" in globals.h, but there is a define:
2593 #define cons_cells_consed globals.f_cons_cells_consed
2595 All C code uses the `cons_cells_consed' name. This is all done
2596 this way to support indirection for multi-threaded Emacs. */
2598 #define DEFVAR_LISP(lname, vname, doc) \
2599 do { \
2600 static struct Lisp_Objfwd o_fwd; \
2601 defvar_lisp (&o_fwd, lname, &globals.f_ ## vname); \
2602 } while (0)
2603 #define DEFVAR_LISP_NOPRO(lname, vname, doc) \
2604 do { \
2605 static struct Lisp_Objfwd o_fwd; \
2606 defvar_lisp_nopro (&o_fwd, lname, &globals.f_ ## vname); \
2607 } while (0)
2608 #define DEFVAR_BOOL(lname, vname, doc) \
2609 do { \
2610 static struct Lisp_Boolfwd b_fwd; \
2611 defvar_bool (&b_fwd, lname, &globals.f_ ## vname); \
2612 } while (0)
2613 #define DEFVAR_INT(lname, vname, doc) \
2614 do { \
2615 static struct Lisp_Intfwd i_fwd; \
2616 defvar_int (&i_fwd, lname, &globals.f_ ## vname); \
2617 } while (0)
2619 #define DEFVAR_BUFFER_DEFAULTS(lname, vname, doc) \
2620 do { \
2621 static struct Lisp_Objfwd o_fwd; \
2622 defvar_lisp_nopro (&o_fwd, lname, &BVAR (&buffer_defaults, vname)); \
2623 } while (0)
2625 #define DEFVAR_KBOARD(lname, vname, doc) \
2626 do { \
2627 static struct Lisp_Kboard_Objfwd ko_fwd; \
2628 defvar_kboard (&ko_fwd, lname, offsetof (KBOARD, vname ## _)); \
2629 } while (0)
2631 /* Save and restore the instruction and environment pointers,
2632 without affecting the signal mask. */
2634 #ifdef HAVE__SETJMP
2635 typedef jmp_buf sys_jmp_buf;
2636 # define sys_setjmp(j) _setjmp (j)
2637 # define sys_longjmp(j, v) _longjmp (j, v)
2638 #elif defined HAVE_SIGSETJMP
2639 typedef sigjmp_buf sys_jmp_buf;
2640 # define sys_setjmp(j) sigsetjmp (j, 0)
2641 # define sys_longjmp(j, v) siglongjmp (j, v)
2642 #else
2643 /* A platform that uses neither _longjmp nor siglongjmp; assume
2644 longjmp does not affect the sigmask. */
2645 typedef jmp_buf sys_jmp_buf;
2646 # define sys_setjmp(j) setjmp (j)
2647 # define sys_longjmp(j, v) longjmp (j, v)
2648 #endif
2651 /* Elisp uses several stacks:
2652 - the C stack.
2653 - the bytecode stack: used internally by the bytecode interpreter.
2654 Allocated from the C stack.
2655 - The specpdl stack: keeps track of active unwind-protect and
2656 dynamic-let-bindings. Allocated from the `specpdl' array, a manually
2657 managed stack.
2658 - The handler stack: keeps track of active catch tags and condition-case
2659 handlers. Allocated in a manually managed stack implemented by a
2660 doubly-linked list allocated via xmalloc and never freed. */
2662 /* Structure for recording Lisp call stack for backtrace purposes. */
2664 /* The special binding stack holds the outer values of variables while
2665 they are bound by a function application or a let form, stores the
2666 code to be executed for unwind-protect forms.
2668 NOTE: The specbinding union is defined here, because SPECPDL_INDEX is
2669 used all over the place, needs to be fast, and needs to know the size of
2670 union specbinding. But only eval.c should access it. */
2672 enum specbind_tag {
2673 SPECPDL_UNWIND, /* An unwind_protect function on Lisp_Object. */
2674 SPECPDL_UNWIND_PTR, /* Likewise, on void *. */
2675 SPECPDL_UNWIND_INT, /* Likewise, on int. */
2676 SPECPDL_UNWIND_VOID, /* Likewise, with no arg. */
2677 SPECPDL_BACKTRACE, /* An element of the backtrace. */
2678 SPECPDL_LET, /* A plain and simple dynamic let-binding. */
2679 /* Tags greater than SPECPDL_LET must be "subkinds" of LET. */
2680 SPECPDL_LET_LOCAL, /* A buffer-local let-binding. */
2681 SPECPDL_LET_DEFAULT /* A global binding for a localized var. */
2684 union specbinding
2686 ENUM_BF (specbind_tag) kind : CHAR_BIT;
2687 struct {
2688 ENUM_BF (specbind_tag) kind : CHAR_BIT;
2689 void (*func) (Lisp_Object);
2690 Lisp_Object arg;
2691 } unwind;
2692 struct {
2693 ENUM_BF (specbind_tag) kind : CHAR_BIT;
2694 void (*func) (void *);
2695 void *arg;
2696 } unwind_ptr;
2697 struct {
2698 ENUM_BF (specbind_tag) kind : CHAR_BIT;
2699 void (*func) (int);
2700 int arg;
2701 } unwind_int;
2702 struct {
2703 ENUM_BF (specbind_tag) kind : CHAR_BIT;
2704 void (*func) (void);
2705 } unwind_void;
2706 struct {
2707 ENUM_BF (specbind_tag) kind : CHAR_BIT;
2708 /* `where' is not used in the case of SPECPDL_LET. */
2709 Lisp_Object symbol, old_value, where;
2710 } let;
2711 struct {
2712 ENUM_BF (specbind_tag) kind : CHAR_BIT;
2713 bool debug_on_exit : 1;
2714 Lisp_Object function;
2715 Lisp_Object *args;
2716 ptrdiff_t nargs;
2717 } bt;
2720 extern union specbinding *specpdl;
2721 extern union specbinding *specpdl_ptr;
2722 extern ptrdiff_t specpdl_size;
2724 INLINE ptrdiff_t
2725 SPECPDL_INDEX (void)
2727 return specpdl_ptr - specpdl;
2730 /* This structure helps implement the `catch/throw' and `condition-case/signal'
2731 control structures. A struct handler contains all the information needed to
2732 restore the state of the interpreter after a non-local jump.
2734 handler structures are chained together in a doubly linked list; the `next'
2735 member points to the next outer catchtag and the `nextfree' member points in
2736 the other direction to the next inner element (which is typically the next
2737 free element since we mostly use it on the deepest handler).
2739 A call like (throw TAG VAL) searches for a catchtag whose `tag_or_ch'
2740 member is TAG, and then unbinds to it. The `val' member is used to
2741 hold VAL while the stack is unwound; `val' is returned as the value
2742 of the catch form.
2744 All the other members are concerned with restoring the interpreter
2745 state.
2747 Members are volatile if their values need to survive _longjmp when
2748 a 'struct handler' is a local variable. */
2750 enum handlertype { CATCHER, CONDITION_CASE };
2752 struct handler
2754 enum handlertype type;
2755 Lisp_Object tag_or_ch;
2756 Lisp_Object val;
2757 struct handler *next;
2758 struct handler *nextfree;
2760 /* The bytecode interpreter can have several handlers active at the same
2761 time, so when we longjmp to one of them, it needs to know which handler
2762 this was and what was the corresponding internal state. This is stored
2763 here, and when we longjmp we make sure that handlerlist points to the
2764 proper handler. */
2765 Lisp_Object *bytecode_top;
2766 int bytecode_dest;
2768 /* Most global vars are reset to their value via the specpdl mechanism,
2769 but a few others are handled by storing their value here. */
2770 #if 1 /* GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS, but they're defined later. */
2771 struct gcpro *gcpro;
2772 #endif
2773 sys_jmp_buf jmp;
2774 EMACS_INT lisp_eval_depth;
2775 ptrdiff_t pdlcount;
2776 int poll_suppress_count;
2777 int interrupt_input_blocked;
2778 struct byte_stack *byte_stack;
2781 /* Fill in the components of c, and put it on the list. */
2782 #define PUSH_HANDLER(c, tag_ch_val, handlertype) \
2783 if (handlerlist && handlerlist->nextfree) \
2784 (c) = handlerlist->nextfree; \
2785 else \
2787 (c) = xmalloc (sizeof (struct handler)); \
2788 (c)->nextfree = NULL; \
2789 if (handlerlist) \
2790 handlerlist->nextfree = (c); \
2792 (c)->type = (handlertype); \
2793 (c)->tag_or_ch = (tag_ch_val); \
2794 (c)->val = Qnil; \
2795 (c)->next = handlerlist; \
2796 (c)->lisp_eval_depth = lisp_eval_depth; \
2797 (c)->pdlcount = SPECPDL_INDEX (); \
2798 (c)->poll_suppress_count = poll_suppress_count; \
2799 (c)->interrupt_input_blocked = interrupt_input_blocked;\
2800 (c)->gcpro = gcprolist; \
2801 (c)->byte_stack = byte_stack_list; \
2802 handlerlist = (c);
2805 extern Lisp_Object memory_signal_data;
2807 /* An address near the bottom of the stack.
2808 Tells GC how to save a copy of the stack. */
2809 extern char *stack_bottom;
2811 /* Check quit-flag and quit if it is non-nil.
2812 Typing C-g does not directly cause a quit; it only sets Vquit_flag.
2813 So the program needs to do QUIT at times when it is safe to quit.
2814 Every loop that might run for a long time or might not exit
2815 ought to do QUIT at least once, at a safe place.
2816 Unless that is impossible, of course.
2817 But it is very desirable to avoid creating loops where QUIT is impossible.
2819 Exception: if you set immediate_quit to nonzero,
2820 then the handler that responds to the C-g does the quit itself.
2821 This is a good thing to do around a loop that has no side effects
2822 and (in particular) cannot call arbitrary Lisp code.
2824 If quit-flag is set to `kill-emacs' the SIGINT handler has received
2825 a request to exit Emacs when it is safe to do. */
2827 extern void process_pending_signals (void);
2828 extern bool volatile pending_signals;
2830 extern void process_quit_flag (void);
2831 #define QUIT \
2832 do { \
2833 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) \
2834 process_quit_flag (); \
2835 else if (pending_signals) \
2836 process_pending_signals (); \
2837 } while (0)
2840 /* Nonzero if ought to quit now. */
2842 #define QUITP (!NILP (Vquit_flag) && NILP (Vinhibit_quit))
2844 extern Lisp_Object Vascii_downcase_table;
2845 extern Lisp_Object Vascii_canon_table;
2847 /* Structure for recording stack slots that need marking. */
2849 /* This is a chain of structures, each of which points at a Lisp_Object
2850 variable whose value should be marked in garbage collection.
2851 Normally every link of the chain is an automatic variable of a function,
2852 and its `val' points to some argument or local variable of the function.
2853 On exit to the function, the chain is set back to the value it had on entry.
2854 This way, no link remains in the chain when the stack frame containing the
2855 link disappears.
2857 Every function that can call Feval must protect in this fashion all
2858 Lisp_Object variables whose contents will be used again. */
2860 extern struct gcpro *gcprolist;
2862 struct gcpro
2864 struct gcpro *next;
2866 /* Address of first protected variable. */
2867 volatile Lisp_Object *var;
2869 /* Number of consecutive protected variables. */
2870 ptrdiff_t nvars;
2872 #ifdef DEBUG_GCPRO
2873 int level;
2874 #endif
2877 /* Values of GC_MARK_STACK during compilation:
2879 0 Use GCPRO as before
2880 1 Do the real thing, make GCPROs and UNGCPRO no-ops.
2881 2 Mark the stack, and check that everything GCPRO'd is
2882 marked.
2883 3 Mark using GCPRO's, mark stack last, and count how many
2884 dead objects are kept alive.
2886 Formerly, method 0 was used. Currently, method 1 is used unless
2887 otherwise specified by hand when building, e.g.,
2888 "make CPPFLAGS='-DGC_MARK_STACK=GC_USE_GCPROS_AS_BEFORE'".
2889 Methods 2 and 3 are present mainly to debug the transition from 0 to 1. */
2891 #define GC_USE_GCPROS_AS_BEFORE 0
2892 #define GC_MAKE_GCPROS_NOOPS 1
2893 #define GC_MARK_STACK_CHECK_GCPROS 2
2894 #define GC_USE_GCPROS_CHECK_ZOMBIES 3
2896 #ifndef GC_MARK_STACK
2897 #define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS
2898 #endif
2900 /* Whether we do the stack marking manually. */
2901 #define BYTE_MARK_STACK !(GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS \
2902 || GC_MARK_STACK == GC_MARK_STACK_CHECK_GCPROS)
2905 #if GC_MARK_STACK == GC_MAKE_GCPROS_NOOPS
2907 /* Do something silly with gcproN vars just so gcc shuts up. */
2908 /* You get warnings from MIPSPro... */
2910 #define GCPRO1(varname) ((void) gcpro1)
2911 #define GCPRO2(varname1, varname2) ((void) gcpro2, (void) gcpro1)
2912 #define GCPRO3(varname1, varname2, varname3) \
2913 ((void) gcpro3, (void) gcpro2, (void) gcpro1)
2914 #define GCPRO4(varname1, varname2, varname3, varname4) \
2915 ((void) gcpro4, (void) gcpro3, (void) gcpro2, (void) gcpro1)
2916 #define GCPRO5(varname1, varname2, varname3, varname4, varname5) \
2917 ((void) gcpro5, (void) gcpro4, (void) gcpro3, (void) gcpro2, (void) gcpro1)
2918 #define GCPRO6(varname1, varname2, varname3, varname4, varname5, varname6) \
2919 ((void) gcpro6, (void) gcpro5, (void) gcpro4, (void) gcpro3, (void) gcpro2, \
2920 (void) gcpro1)
2921 #define UNGCPRO ((void) 0)
2923 #else /* GC_MARK_STACK != GC_MAKE_GCPROS_NOOPS */
2925 #ifndef DEBUG_GCPRO
2927 #define GCPRO1(varname) \
2928 {gcpro1.next = gcprolist; gcpro1.var = &varname; gcpro1.nvars = 1; \
2929 gcprolist = &gcpro1; }
2931 #define GCPRO2(varname1, varname2) \
2932 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2933 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2934 gcprolist = &gcpro2; }
2936 #define GCPRO3(varname1, varname2, varname3) \
2937 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2938 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2939 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2940 gcprolist = &gcpro3; }
2942 #define GCPRO4(varname1, varname2, varname3, varname4) \
2943 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2944 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2945 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2946 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
2947 gcprolist = &gcpro4; }
2949 #define GCPRO5(varname1, varname2, varname3, varname4, varname5) \
2950 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2951 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2952 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2953 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
2954 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \
2955 gcprolist = &gcpro5; }
2957 #define GCPRO6(varname1, varname2, varname3, varname4, varname5, varname6) \
2958 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2959 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2960 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2961 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
2962 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \
2963 gcpro6.next = &gcpro5; gcpro6.var = &varname6; gcpro6.nvars = 1; \
2964 gcprolist = &gcpro6; }
2966 #define UNGCPRO (gcprolist = gcpro1.next)
2968 #else
2970 extern int gcpro_level;
2972 #define GCPRO1(varname) \
2973 {gcpro1.next = gcprolist; gcpro1.var = &varname; gcpro1.nvars = 1; \
2974 gcpro1.level = gcpro_level++; \
2975 gcprolist = &gcpro1; }
2977 #define GCPRO2(varname1, varname2) \
2978 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2979 gcpro1.level = gcpro_level; \
2980 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2981 gcpro2.level = gcpro_level++; \
2982 gcprolist = &gcpro2; }
2984 #define GCPRO3(varname1, varname2, varname3) \
2985 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2986 gcpro1.level = gcpro_level; \
2987 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2988 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2989 gcpro3.level = gcpro_level++; \
2990 gcprolist = &gcpro3; }
2992 #define GCPRO4(varname1, varname2, varname3, varname4) \
2993 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
2994 gcpro1.level = gcpro_level; \
2995 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
2996 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
2997 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
2998 gcpro4.level = gcpro_level++; \
2999 gcprolist = &gcpro4; }
3001 #define GCPRO5(varname1, varname2, varname3, varname4, varname5) \
3002 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
3003 gcpro1.level = gcpro_level; \
3004 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
3005 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
3006 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
3007 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \
3008 gcpro5.level = gcpro_level++; \
3009 gcprolist = &gcpro5; }
3011 #define GCPRO6(varname1, varname2, varname3, varname4, varname5, varname6) \
3012 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
3013 gcpro1.level = gcpro_level; \
3014 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
3015 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
3016 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
3017 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \
3018 gcpro6.next = &gcpro5; gcpro6.var = &varname6; gcpro6.nvars = 1; \
3019 gcpro6.level = gcpro_level++; \
3020 gcprolist = &gcpro6; }
3022 #define UNGCPRO \
3023 ((--gcpro_level != gcpro1.level) \
3024 ? (emacs_abort (), 0) \
3025 : ((gcprolist = gcpro1.next), 0))
3027 #endif /* DEBUG_GCPRO */
3028 #endif /* GC_MARK_STACK != GC_MAKE_GCPROS_NOOPS */
3031 /* Evaluate expr, UNGCPRO, and then return the value of expr. */
3032 #define RETURN_UNGCPRO(expr) \
3033 do \
3035 Lisp_Object ret_ungc_val; \
3036 ret_ungc_val = (expr); \
3037 UNGCPRO; \
3038 return ret_ungc_val; \
3040 while (0)
3042 /* Call staticpro (&var) to protect static variable `var'. */
3044 void staticpro (Lisp_Object *);
3046 /* Declare a Lisp-callable function. The MAXARGS parameter has the same
3047 meaning as in the DEFUN macro, and is used to construct a prototype. */
3048 /* We can use the same trick as in the DEFUN macro to generate the
3049 appropriate prototype. */
3050 #define EXFUN(fnname, maxargs) \
3051 extern Lisp_Object fnname DEFUN_ARGS_ ## maxargs
3053 #include "globals.h"
3055 /* Forward declarations for prototypes. */
3056 struct window;
3057 struct frame;
3059 /* Copy COUNT Lisp_Objects from ARGS to contents of V starting from OFFSET. */
3061 INLINE void
3062 vcopy (Lisp_Object v, ptrdiff_t offset, Lisp_Object *args, ptrdiff_t count)
3064 eassert (0 <= offset && 0 <= count && offset + count <= ASIZE (v));
3065 memcpy (XVECTOR (v)->u.contents + offset, args, count * sizeof *args);
3068 /* Functions to modify hash tables. */
3070 INLINE void
3071 set_hash_key_slot (struct Lisp_Hash_Table *h, ptrdiff_t idx, Lisp_Object val)
3073 gc_aset (h->key_and_value, 2 * idx, val);
3076 INLINE void
3077 set_hash_value_slot (struct Lisp_Hash_Table *h, ptrdiff_t idx, Lisp_Object val)
3079 gc_aset (h->key_and_value, 2 * idx + 1, val);
3082 /* Use these functions to set Lisp_Object
3083 or pointer slots of struct Lisp_Symbol. */
3085 INLINE void
3086 set_symbol_function (Lisp_Object sym, Lisp_Object function)
3088 XSYMBOL (sym)->function = function;
3091 INLINE void
3092 set_symbol_plist (Lisp_Object sym, Lisp_Object plist)
3094 XSYMBOL (sym)->plist = plist;
3097 INLINE void
3098 set_symbol_next (Lisp_Object sym, struct Lisp_Symbol *next)
3100 XSYMBOL (sym)->next = next;
3103 /* Buffer-local (also frame-local) variable access functions. */
3105 INLINE int
3106 blv_found (struct Lisp_Buffer_Local_Value *blv)
3108 eassert (blv->found == !EQ (blv->defcell, blv->valcell));
3109 return blv->found;
3112 /* Set overlay's property list. */
3114 INLINE void
3115 set_overlay_plist (Lisp_Object overlay, Lisp_Object plist)
3117 XOVERLAY (overlay)->plist = plist;
3120 /* Get text properties of S. */
3122 INLINE INTERVAL
3123 string_intervals (Lisp_Object s)
3125 return XSTRING (s)->intervals;
3128 /* Set text properties of S to I. */
3130 INLINE void
3131 set_string_intervals (Lisp_Object s, INTERVAL i)
3133 XSTRING (s)->intervals = i;
3136 /* Set a Lisp slot in TABLE to VAL. Most code should use this instead
3137 of setting slots directly. */
3139 INLINE void
3140 set_char_table_defalt (Lisp_Object table, Lisp_Object val)
3142 XCHAR_TABLE (table)->defalt = val;
3144 INLINE void
3145 set_char_table_purpose (Lisp_Object table, Lisp_Object val)
3147 XCHAR_TABLE (table)->purpose = val;
3150 /* Set different slots in (sub)character tables. */
3152 INLINE void
3153 set_char_table_extras (Lisp_Object table, ptrdiff_t idx, Lisp_Object val)
3155 eassert (0 <= idx && idx < CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (table)));
3156 XCHAR_TABLE (table)->extras[idx] = val;
3159 INLINE void
3160 set_char_table_contents (Lisp_Object table, ptrdiff_t idx, Lisp_Object val)
3162 eassert (0 <= idx && idx < (1 << CHARTAB_SIZE_BITS_0));
3163 XCHAR_TABLE (table)->contents[idx] = val;
3166 INLINE void
3167 set_sub_char_table_contents (Lisp_Object table, ptrdiff_t idx, Lisp_Object val)
3169 XSUB_CHAR_TABLE (table)->contents[idx] = val;
3172 /* Defined in data.c. */
3173 extern Lisp_Object Qnil, Qt, Qquote, Qlambda, Qunbound;
3174 extern Lisp_Object Qerror_conditions, Qerror_message, Qtop_level;
3175 extern Lisp_Object Qerror, Qquit, Qargs_out_of_range;
3176 extern Lisp_Object Qvoid_variable, Qvoid_function;
3177 extern Lisp_Object Qinvalid_read_syntax;
3178 extern Lisp_Object Qinvalid_function, Qwrong_number_of_arguments, Qno_catch;
3179 extern Lisp_Object Quser_error, Qend_of_file, Qarith_error, Qmark_inactive;
3180 extern Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only;
3181 extern Lisp_Object Qtext_read_only;
3182 extern Lisp_Object Qinteractive_form;
3183 extern Lisp_Object Qcircular_list;
3184 extern Lisp_Object Qintegerp, Qwholenump, Qsymbolp, Qlistp, Qconsp;
3185 extern Lisp_Object Qstringp, Qarrayp, Qsequencep, Qbufferp;
3186 extern Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp;
3187 extern Lisp_Object Qbuffer_or_string_p;
3188 extern Lisp_Object Qfboundp;
3189 extern Lisp_Object Qchar_table_p, Qvector_or_char_table_p;
3191 extern Lisp_Object Qcdr;
3193 extern Lisp_Object Qrange_error, Qoverflow_error;
3195 extern Lisp_Object Qfloatp;
3196 extern Lisp_Object Qnumberp, Qnumber_or_marker_p;
3198 extern Lisp_Object Qbuffer, Qinteger, Qsymbol;
3200 extern Lisp_Object Qfont_spec, Qfont_entity, Qfont_object;
3202 EXFUN (Fbyteorder, 0) ATTRIBUTE_CONST;
3204 /* Defined in data.c. */
3205 extern Lisp_Object indirect_function (Lisp_Object);
3206 extern Lisp_Object find_symbol_value (Lisp_Object);
3207 enum Arith_Comparison {
3208 ARITH_EQUAL,
3209 ARITH_NOTEQUAL,
3210 ARITH_LESS,
3211 ARITH_GRTR,
3212 ARITH_LESS_OR_EQUAL,
3213 ARITH_GRTR_OR_EQUAL
3215 extern Lisp_Object arithcompare (Lisp_Object num1, Lisp_Object num2,
3216 enum Arith_Comparison comparison);
3218 /* Convert the integer I to an Emacs representation, either the integer
3219 itself, or a cons of two or three integers, or if all else fails a float.
3220 I should not have side effects. */
3221 #define INTEGER_TO_CONS(i) \
3222 (! FIXNUM_OVERFLOW_P (i) \
3223 ? make_number (i) \
3224 : ! ((FIXNUM_OVERFLOW_P (INTMAX_MIN >> 16) \
3225 || FIXNUM_OVERFLOW_P (UINTMAX_MAX >> 16)) \
3226 && FIXNUM_OVERFLOW_P ((i) >> 16)) \
3227 ? Fcons (make_number ((i) >> 16), make_number ((i) & 0xffff)) \
3228 : ! ((FIXNUM_OVERFLOW_P (INTMAX_MIN >> 16 >> 24) \
3229 || FIXNUM_OVERFLOW_P (UINTMAX_MAX >> 16 >> 24)) \
3230 && FIXNUM_OVERFLOW_P ((i) >> 16 >> 24)) \
3231 ? Fcons (make_number ((i) >> 16 >> 24), \
3232 Fcons (make_number ((i) >> 16 & 0xffffff), \
3233 make_number ((i) & 0xffff))) \
3234 : make_float (i))
3236 /* Convert the Emacs representation CONS back to an integer of type
3237 TYPE, storing the result the variable VAR. Signal an error if CONS
3238 is not a valid representation or is out of range for TYPE. */
3239 #define CONS_TO_INTEGER(cons, type, var) \
3240 (TYPE_SIGNED (type) \
3241 ? ((var) = cons_to_signed (cons, TYPE_MINIMUM (type), TYPE_MAXIMUM (type))) \
3242 : ((var) = cons_to_unsigned (cons, TYPE_MAXIMUM (type))))
3243 extern intmax_t cons_to_signed (Lisp_Object, intmax_t, intmax_t);
3244 extern uintmax_t cons_to_unsigned (Lisp_Object, uintmax_t);
3246 extern struct Lisp_Symbol *indirect_variable (struct Lisp_Symbol *);
3247 extern _Noreturn void args_out_of_range (Lisp_Object, Lisp_Object);
3248 extern _Noreturn void args_out_of_range_3 (Lisp_Object, Lisp_Object,
3249 Lisp_Object);
3250 extern _Noreturn Lisp_Object wrong_type_argument (Lisp_Object, Lisp_Object);
3251 extern Lisp_Object do_symval_forwarding (union Lisp_Fwd *);
3252 extern void set_internal (Lisp_Object, Lisp_Object, Lisp_Object, bool);
3253 extern void syms_of_data (void);
3254 extern void swap_in_global_binding (struct Lisp_Symbol *);
3256 /* Defined in cmds.c */
3257 extern void syms_of_cmds (void);
3258 extern void keys_of_cmds (void);
3260 /* Defined in coding.c. */
3261 extern Lisp_Object Qcharset;
3262 extern Lisp_Object detect_coding_system (const unsigned char *, ptrdiff_t,
3263 ptrdiff_t, bool, bool, Lisp_Object);
3264 extern void init_coding (void);
3265 extern void init_coding_once (void);
3266 extern void syms_of_coding (void);
3268 /* Defined in character.c. */
3269 EXFUN (Fmax_char, 0) ATTRIBUTE_CONST;
3270 extern ptrdiff_t chars_in_text (const unsigned char *, ptrdiff_t);
3271 extern ptrdiff_t multibyte_chars_in_text (const unsigned char *, ptrdiff_t);
3272 extern int multibyte_char_to_unibyte (int) ATTRIBUTE_CONST;
3273 extern int multibyte_char_to_unibyte_safe (int) ATTRIBUTE_CONST;
3274 extern void syms_of_character (void);
3276 /* Defined in charset.c. */
3277 extern void init_charset (void);
3278 extern void init_charset_once (void);
3279 extern void syms_of_charset (void);
3280 /* Structure forward declarations. */
3281 struct charset;
3283 /* Defined in composite.c. */
3284 extern void syms_of_composite (void);
3286 /* Defined in syntax.c. */
3287 extern void init_syntax_once (void);
3288 extern void syms_of_syntax (void);
3290 /* Defined in fns.c. */
3291 extern Lisp_Object QCrehash_size, QCrehash_threshold;
3292 enum { NEXT_ALMOST_PRIME_LIMIT = 11 };
3293 EXFUN (Fidentity, 1) ATTRIBUTE_CONST;
3294 extern EMACS_INT next_almost_prime (EMACS_INT) ATTRIBUTE_CONST;
3295 extern Lisp_Object larger_vector (Lisp_Object, ptrdiff_t, ptrdiff_t);
3296 extern void sweep_weak_hash_tables (void);
3297 extern Lisp_Object Qcursor_in_echo_area;
3298 extern Lisp_Object Qstring_lessp;
3299 extern Lisp_Object QCsize, QCtest, QCweakness, Qequal, Qeq;
3300 EMACS_UINT hash_string (char const *, ptrdiff_t);
3301 EMACS_UINT sxhash (Lisp_Object, int);
3302 Lisp_Object make_hash_table (struct hash_table_test, Lisp_Object, Lisp_Object,
3303 Lisp_Object, Lisp_Object);
3304 ptrdiff_t hash_lookup (struct Lisp_Hash_Table *, Lisp_Object, EMACS_UINT *);
3305 ptrdiff_t hash_put (struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object,
3306 EMACS_UINT);
3307 extern struct hash_table_test hashtest_eql, hashtest_equal;
3309 extern Lisp_Object substring_both (Lisp_Object, ptrdiff_t, ptrdiff_t,
3310 ptrdiff_t, ptrdiff_t);
3311 extern Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object);
3312 extern Lisp_Object do_yes_or_no_p (Lisp_Object);
3313 extern Lisp_Object concat2 (Lisp_Object, Lisp_Object);
3314 extern Lisp_Object concat3 (Lisp_Object, Lisp_Object, Lisp_Object);
3315 extern Lisp_Object nconc2 (Lisp_Object, Lisp_Object);
3316 extern Lisp_Object assq_no_quit (Lisp_Object, Lisp_Object);
3317 extern Lisp_Object assoc_no_quit (Lisp_Object, Lisp_Object);
3318 extern void clear_string_char_byte_cache (void);
3319 extern ptrdiff_t string_char_to_byte (Lisp_Object, ptrdiff_t);
3320 extern ptrdiff_t string_byte_to_char (Lisp_Object, ptrdiff_t);
3321 extern Lisp_Object string_to_multibyte (Lisp_Object);
3322 extern Lisp_Object string_make_unibyte (Lisp_Object);
3323 extern void syms_of_fns (void);
3325 /* Defined in floatfns.c. */
3326 extern double extract_float (Lisp_Object);
3327 extern void syms_of_floatfns (void);
3328 extern Lisp_Object fmod_float (Lisp_Object x, Lisp_Object y);
3330 /* Defined in fringe.c. */
3331 extern void syms_of_fringe (void);
3332 extern void init_fringe (void);
3333 #ifdef HAVE_WINDOW_SYSTEM
3334 extern void mark_fringe_data (void);
3335 extern void init_fringe_once (void);
3336 #endif /* HAVE_WINDOW_SYSTEM */
3338 /* Defined in image.c. */
3339 extern Lisp_Object QCascent, QCmargin, QCrelief;
3340 extern Lisp_Object QCconversion;
3341 extern int x_bitmap_mask (struct frame *, ptrdiff_t);
3342 extern void reset_image_types (void);
3343 extern void syms_of_image (void);
3345 /* Defined in insdel.c. */
3346 extern Lisp_Object Qinhibit_modification_hooks;
3347 extern void move_gap_both (ptrdiff_t, ptrdiff_t);
3348 extern _Noreturn void buffer_overflow (void);
3349 extern void make_gap (ptrdiff_t);
3350 extern void make_gap_1 (struct buffer *, ptrdiff_t);
3351 extern ptrdiff_t copy_text (const unsigned char *, unsigned char *,
3352 ptrdiff_t, bool, bool);
3353 extern int count_combining_before (const unsigned char *,
3354 ptrdiff_t, ptrdiff_t, ptrdiff_t);
3355 extern int count_combining_after (const unsigned char *,
3356 ptrdiff_t, ptrdiff_t, ptrdiff_t);
3357 extern void insert (const char *, ptrdiff_t);
3358 extern void insert_and_inherit (const char *, ptrdiff_t);
3359 extern void insert_1_both (const char *, ptrdiff_t, ptrdiff_t,
3360 bool, bool, bool);
3361 extern void insert_from_gap (ptrdiff_t, ptrdiff_t, bool text_at_gap_tail);
3362 extern void insert_from_string (Lisp_Object, ptrdiff_t, ptrdiff_t,
3363 ptrdiff_t, ptrdiff_t, bool);
3364 extern void insert_from_buffer (struct buffer *, ptrdiff_t, ptrdiff_t, bool);
3365 extern void insert_char (int);
3366 extern void insert_string (const char *);
3367 extern void insert_before_markers (const char *, ptrdiff_t);
3368 extern void insert_before_markers_and_inherit (const char *, ptrdiff_t);
3369 extern void insert_from_string_before_markers (Lisp_Object, ptrdiff_t,
3370 ptrdiff_t, ptrdiff_t,
3371 ptrdiff_t, bool);
3372 extern void del_range (ptrdiff_t, ptrdiff_t);
3373 extern Lisp_Object del_range_1 (ptrdiff_t, ptrdiff_t, bool, bool);
3374 extern void del_range_byte (ptrdiff_t, ptrdiff_t, bool);
3375 extern void del_range_both (ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t, bool);
3376 extern Lisp_Object del_range_2 (ptrdiff_t, ptrdiff_t,
3377 ptrdiff_t, ptrdiff_t, bool);
3378 extern void modify_text (ptrdiff_t, ptrdiff_t);
3379 extern void prepare_to_modify_buffer (ptrdiff_t, ptrdiff_t, ptrdiff_t *);
3380 extern void prepare_to_modify_buffer_1 (ptrdiff_t, ptrdiff_t, ptrdiff_t *);
3381 extern void signal_after_change (ptrdiff_t, ptrdiff_t, ptrdiff_t);
3382 extern void adjust_after_insert (ptrdiff_t, ptrdiff_t, ptrdiff_t,
3383 ptrdiff_t, ptrdiff_t);
3384 extern void adjust_markers_for_delete (ptrdiff_t, ptrdiff_t,
3385 ptrdiff_t, ptrdiff_t);
3386 extern void replace_range (ptrdiff_t, ptrdiff_t, Lisp_Object, bool, bool, bool);
3387 extern void replace_range_2 (ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t,
3388 const char *, ptrdiff_t, ptrdiff_t, bool);
3389 extern void syms_of_insdel (void);
3391 /* Defined in dispnew.c. */
3392 #if (defined PROFILING \
3393 && (defined __FreeBSD__ || defined GNU_LINUX || defined __MINGW32__))
3394 _Noreturn void __executable_start (void);
3395 #endif
3396 extern Lisp_Object Vwindow_system;
3397 extern Lisp_Object sit_for (Lisp_Object, bool, int);
3398 extern void init_display (void);
3399 extern void syms_of_display (void);
3401 /* Defined in xdisp.c. */
3402 extern Lisp_Object Qinhibit_point_motion_hooks;
3403 extern Lisp_Object Qinhibit_redisplay, Qdisplay;
3404 extern Lisp_Object Qmenu_bar_update_hook;
3405 extern Lisp_Object Qwindow_scroll_functions;
3406 extern Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
3407 extern Lisp_Object Qimage, Qtext, Qboth, Qboth_horiz, Qtext_image_horiz;
3408 extern Lisp_Object Qspace, Qcenter, QCalign_to;
3409 extern Lisp_Object Qbar, Qhbar, Qbox, Qhollow;
3410 extern Lisp_Object Qleft_margin, Qright_margin;
3411 extern Lisp_Object QCdata, QCfile;
3412 extern Lisp_Object QCmap;
3413 extern Lisp_Object Qrisky_local_variable;
3414 extern bool noninteractive_need_newline;
3415 extern Lisp_Object echo_area_buffer[2];
3416 extern void add_to_log (const char *, Lisp_Object, Lisp_Object);
3417 extern void check_message_stack (void);
3418 extern void setup_echo_area_for_printing (int);
3419 extern bool push_message (void);
3420 extern void pop_message_unwind (void);
3421 extern Lisp_Object restore_message_unwind (Lisp_Object);
3422 extern void restore_message (void);
3423 extern Lisp_Object current_message (void);
3424 extern void clear_message (int, int);
3425 extern void message (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2);
3426 extern void message1 (const char *);
3427 extern void message1_nolog (const char *);
3428 extern void message3 (Lisp_Object);
3429 extern void message3_nolog (Lisp_Object);
3430 extern void message_dolog (const char *, ptrdiff_t, bool, bool);
3431 extern void message_with_string (const char *, Lisp_Object, int);
3432 extern void message_log_maybe_newline (void);
3433 extern void update_echo_area (void);
3434 extern void truncate_echo_area (ptrdiff_t);
3435 extern void redisplay (void);
3436 extern void redisplay_preserve_echo_area (int);
3437 extern void prepare_menu_bars (void);
3439 void set_frame_cursor_types (struct frame *, Lisp_Object);
3440 extern void syms_of_xdisp (void);
3441 extern void init_xdisp (void);
3442 extern Lisp_Object safe_eval (Lisp_Object);
3443 extern int pos_visible_p (struct window *, ptrdiff_t, int *,
3444 int *, int *, int *, int *, int *);
3446 /* Defined in xsettings.c. */
3447 extern void syms_of_xsettings (void);
3449 /* Defined in vm-limit.c. */
3450 extern void memory_warnings (void *, void (*warnfun) (const char *));
3452 /* Defined in alloc.c. */
3453 extern void check_pure_size (void);
3454 extern void free_misc (Lisp_Object);
3455 extern void allocate_string_data (struct Lisp_String *, EMACS_INT, EMACS_INT);
3456 extern void malloc_warning (const char *);
3457 extern _Noreturn void memory_full (size_t);
3458 extern _Noreturn void buffer_memory_full (ptrdiff_t);
3459 extern bool survives_gc_p (Lisp_Object);
3460 extern void mark_object (Lisp_Object);
3461 #if defined REL_ALLOC && !defined SYSTEM_MALLOC
3462 extern void refill_memory_reserve (void);
3463 #endif
3464 extern const char *pending_malloc_warning;
3465 extern Lisp_Object zero_vector;
3466 extern Lisp_Object *stack_base;
3467 extern EMACS_INT consing_since_gc;
3468 extern EMACS_INT gc_relative_threshold;
3469 extern EMACS_INT memory_full_cons_threshold;
3470 extern Lisp_Object list1 (Lisp_Object);
3471 extern Lisp_Object list2 (Lisp_Object, Lisp_Object);
3472 extern Lisp_Object list3 (Lisp_Object, Lisp_Object, Lisp_Object);
3473 extern Lisp_Object list4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3474 extern Lisp_Object list5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
3475 Lisp_Object);
3476 enum constype {CONSTYPE_HEAP, CONSTYPE_PURE};
3477 extern Lisp_Object listn (enum constype, ptrdiff_t, Lisp_Object, ...);
3479 /* Build a frequently used 2/3/4-integer lists. */
3481 INLINE Lisp_Object
3482 list2i (EMACS_INT x, EMACS_INT y)
3484 return list2 (make_number (x), make_number (y));
3487 INLINE Lisp_Object
3488 list3i (EMACS_INT x, EMACS_INT y, EMACS_INT w)
3490 return list3 (make_number (x), make_number (y), make_number (w));
3493 INLINE Lisp_Object
3494 list4i (EMACS_INT x, EMACS_INT y, EMACS_INT w, EMACS_INT h)
3496 return list4 (make_number (x), make_number (y),
3497 make_number (w), make_number (h));
3500 extern _Noreturn void string_overflow (void);
3501 extern Lisp_Object make_string (const char *, ptrdiff_t);
3502 extern Lisp_Object make_formatted_string (char *, const char *, ...)
3503 ATTRIBUTE_FORMAT_PRINTF (2, 3);
3504 extern Lisp_Object make_unibyte_string (const char *, ptrdiff_t);
3506 /* Make unibyte string from C string when the length isn't known. */
3508 INLINE Lisp_Object
3509 build_unibyte_string (const char *str)
3511 return make_unibyte_string (str, strlen (str));
3514 extern Lisp_Object make_multibyte_string (const char *, ptrdiff_t, ptrdiff_t);
3515 extern Lisp_Object make_event_array (ptrdiff_t, Lisp_Object *);
3516 extern Lisp_Object make_uninit_string (EMACS_INT);
3517 extern Lisp_Object make_uninit_multibyte_string (EMACS_INT, EMACS_INT);
3518 extern Lisp_Object make_string_from_bytes (const char *, ptrdiff_t, ptrdiff_t);
3519 extern Lisp_Object make_specified_string (const char *,
3520 ptrdiff_t, ptrdiff_t, bool);
3521 extern Lisp_Object make_pure_string (const char *, ptrdiff_t, ptrdiff_t, bool);
3522 extern Lisp_Object make_pure_c_string (const char *, ptrdiff_t);
3524 /* Make a string allocated in pure space, use STR as string data. */
3526 INLINE Lisp_Object
3527 build_pure_c_string (const char *str)
3529 return make_pure_c_string (str, strlen (str));
3532 /* Make a string from the data at STR, treating it as multibyte if the
3533 data warrants. */
3535 INLINE Lisp_Object
3536 build_string (const char *str)
3538 return make_string (str, strlen (str));
3541 extern Lisp_Object pure_cons (Lisp_Object, Lisp_Object);
3542 extern void make_byte_code (struct Lisp_Vector *);
3543 extern Lisp_Object Qautomatic_gc;
3544 extern Lisp_Object Qchar_table_extra_slots;
3545 extern struct Lisp_Vector *allocate_vector (EMACS_INT);
3547 /* Make an uninitialized vector for SIZE objects. NOTE: you must
3548 be sure that GC cannot happen until the vector is completely
3549 initialized. E.g. the following code is likely to crash:
3551 v = make_uninit_vector (3);
3552 ASET (v, 0, obj0);
3553 ASET (v, 1, Ffunction_can_gc ());
3554 ASET (v, 2, obj1); */
3556 INLINE Lisp_Object
3557 make_uninit_vector (ptrdiff_t size)
3559 Lisp_Object v;
3560 struct Lisp_Vector *p;
3562 p = allocate_vector (size);
3563 XSETVECTOR (v, p);
3564 return v;
3567 extern struct Lisp_Vector *allocate_pseudovector (int, int, enum pvec_type);
3568 #define ALLOCATE_PSEUDOVECTOR(typ,field,tag) \
3569 ((typ*) \
3570 allocate_pseudovector \
3571 (VECSIZE (typ), PSEUDOVECSIZE (typ, field), tag))
3572 extern struct Lisp_Hash_Table *allocate_hash_table (void);
3573 extern struct window *allocate_window (void);
3574 extern struct frame *allocate_frame (void);
3575 extern struct Lisp_Process *allocate_process (void);
3576 extern struct terminal *allocate_terminal (void);
3577 extern bool gc_in_progress;
3578 extern bool abort_on_gc;
3579 extern Lisp_Object make_float (double);
3580 extern void display_malloc_warning (void);
3581 extern ptrdiff_t inhibit_garbage_collection (void);
3582 extern Lisp_Object make_save_int_int_int (ptrdiff_t, ptrdiff_t, ptrdiff_t);
3583 extern Lisp_Object make_save_obj_obj_obj_obj (Lisp_Object, Lisp_Object,
3584 Lisp_Object, Lisp_Object);
3585 extern Lisp_Object make_save_ptr (void *);
3586 extern Lisp_Object make_save_ptr_int (void *, ptrdiff_t);
3587 extern Lisp_Object make_save_ptr_ptr (void *, void *);
3588 extern Lisp_Object make_save_funcptr_ptr_obj (void (*) (void), void *,
3589 Lisp_Object);
3590 extern Lisp_Object make_save_memory (Lisp_Object *, ptrdiff_t);
3591 extern void free_save_value (Lisp_Object);
3592 extern Lisp_Object build_overlay (Lisp_Object, Lisp_Object, Lisp_Object);
3593 extern void free_marker (Lisp_Object);
3594 extern void free_cons (struct Lisp_Cons *);
3595 extern void init_alloc_once (void);
3596 extern void init_alloc (void);
3597 extern void syms_of_alloc (void);
3598 extern struct buffer * allocate_buffer (void);
3599 extern int valid_lisp_object_p (Lisp_Object);
3600 #ifdef GC_CHECK_CONS_LIST
3601 extern void check_cons_list (void);
3602 #else
3603 INLINE void (check_cons_list) (void) { lisp_h_check_cons_list (); }
3604 #endif
3606 #ifdef REL_ALLOC
3607 /* Defined in ralloc.c. */
3608 extern void *r_alloc (void **, size_t);
3609 extern void r_alloc_free (void **);
3610 extern void *r_re_alloc (void **, size_t);
3611 extern void r_alloc_reset_variable (void **, void **);
3612 extern void r_alloc_inhibit_buffer_relocation (int);
3613 #endif
3615 /* Defined in chartab.c. */
3616 extern Lisp_Object copy_char_table (Lisp_Object);
3617 extern Lisp_Object char_table_ref (Lisp_Object, int);
3618 extern Lisp_Object char_table_ref_and_range (Lisp_Object, int,
3619 int *, int *);
3620 extern void char_table_set (Lisp_Object, int, Lisp_Object);
3621 extern void char_table_set_range (Lisp_Object, int, int, Lisp_Object);
3622 extern int char_table_translate (Lisp_Object, int);
3623 extern void map_char_table (void (*) (Lisp_Object, Lisp_Object,
3624 Lisp_Object),
3625 Lisp_Object, Lisp_Object, Lisp_Object);
3626 extern void map_char_table_for_charset (void (*c_function) (Lisp_Object, Lisp_Object),
3627 Lisp_Object, Lisp_Object,
3628 Lisp_Object, struct charset *,
3629 unsigned, unsigned);
3630 extern Lisp_Object uniprop_table (Lisp_Object);
3631 extern void syms_of_chartab (void);
3633 /* Defined in print.c. */
3634 extern Lisp_Object Vprin1_to_string_buffer;
3635 extern void debug_print (Lisp_Object) EXTERNALLY_VISIBLE;
3636 extern Lisp_Object Qstandard_output;
3637 extern Lisp_Object Qexternal_debugging_output;
3638 extern void temp_output_buffer_setup (const char *);
3639 extern int print_level;
3640 extern Lisp_Object Qprint_escape_newlines;
3641 extern void write_string (const char *, int);
3642 extern void print_error_message (Lisp_Object, Lisp_Object, const char *,
3643 Lisp_Object);
3644 extern Lisp_Object internal_with_output_to_temp_buffer
3645 (const char *, Lisp_Object (*) (Lisp_Object), Lisp_Object);
3646 enum FLOAT_TO_STRING_BUFSIZE { FLOAT_TO_STRING_BUFSIZE = 350 };
3647 extern int float_to_string (char *, double);
3648 extern void init_print_once (void);
3649 extern void syms_of_print (void);
3651 /* Defined in doprnt.c. */
3652 extern ptrdiff_t doprnt (char *, ptrdiff_t, const char *, const char *,
3653 va_list);
3654 extern ptrdiff_t esprintf (char *, char const *, ...)
3655 ATTRIBUTE_FORMAT_PRINTF (2, 3);
3656 extern ptrdiff_t exprintf (char **, ptrdiff_t *, char const *, ptrdiff_t,
3657 char const *, ...)
3658 ATTRIBUTE_FORMAT_PRINTF (5, 6);
3659 extern ptrdiff_t evxprintf (char **, ptrdiff_t *, char const *, ptrdiff_t,
3660 char const *, va_list)
3661 ATTRIBUTE_FORMAT_PRINTF (5, 0);
3663 /* Defined in lread.c. */
3664 extern Lisp_Object Qvariable_documentation, Qstandard_input;
3665 extern Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
3666 extern Lisp_Object Qlexical_binding;
3667 extern Lisp_Object check_obarray (Lisp_Object);
3668 extern Lisp_Object intern_1 (const char *, ptrdiff_t);
3669 extern Lisp_Object intern_c_string_1 (const char *, ptrdiff_t);
3670 extern Lisp_Object oblookup (Lisp_Object, const char *, ptrdiff_t, ptrdiff_t);
3671 INLINE void
3672 LOADHIST_ATTACH (Lisp_Object x)
3674 if (initialized)
3675 Vcurrent_load_list = Fcons (x, Vcurrent_load_list);
3677 extern int openp (Lisp_Object, Lisp_Object, Lisp_Object,
3678 Lisp_Object *, Lisp_Object);
3679 extern Lisp_Object string_to_number (char const *, int, bool);
3680 extern void map_obarray (Lisp_Object, void (*) (Lisp_Object, Lisp_Object),
3681 Lisp_Object);
3682 extern void dir_warning (const char *, Lisp_Object);
3683 extern void init_obarray (void);
3684 extern void init_lread (void);
3685 extern void syms_of_lread (void);
3687 INLINE Lisp_Object
3688 intern (const char *str)
3690 return intern_1 (str, strlen (str));
3693 INLINE Lisp_Object
3694 intern_c_string (const char *str)
3696 return intern_c_string_1 (str, strlen (str));
3699 /* Defined in eval.c. */
3700 extern Lisp_Object Qautoload, Qexit, Qinteractive, Qcommandp, Qmacro;
3701 extern Lisp_Object Qinhibit_quit, Qinternal_interpreter_environment, Qclosure;
3702 extern Lisp_Object Qand_rest;
3703 extern Lisp_Object Vautoload_queue;
3704 extern Lisp_Object Vsignaling_function;
3705 extern Lisp_Object inhibit_lisp_code;
3706 extern struct handler *handlerlist;
3708 /* To run a normal hook, use the appropriate function from the list below.
3709 The calling convention:
3711 if (!NILP (Vrun_hooks))
3712 call1 (Vrun_hooks, Qmy_funny_hook);
3714 should no longer be used. */
3715 extern Lisp_Object Vrun_hooks;
3716 extern void run_hook_with_args_2 (Lisp_Object, Lisp_Object, Lisp_Object);
3717 extern Lisp_Object run_hook_with_args (ptrdiff_t nargs, Lisp_Object *args,
3718 Lisp_Object (*funcall)
3719 (ptrdiff_t nargs, Lisp_Object *args));
3720 extern _Noreturn void xsignal (Lisp_Object, Lisp_Object);
3721 extern _Noreturn void xsignal0 (Lisp_Object);
3722 extern _Noreturn void xsignal1 (Lisp_Object, Lisp_Object);
3723 extern _Noreturn void xsignal2 (Lisp_Object, Lisp_Object, Lisp_Object);
3724 extern _Noreturn void xsignal3 (Lisp_Object, Lisp_Object, Lisp_Object,
3725 Lisp_Object);
3726 extern _Noreturn void signal_error (const char *, Lisp_Object);
3727 extern Lisp_Object eval_sub (Lisp_Object form);
3728 extern Lisp_Object apply1 (Lisp_Object, Lisp_Object);
3729 extern Lisp_Object call0 (Lisp_Object);
3730 extern Lisp_Object call1 (Lisp_Object, Lisp_Object);
3731 extern Lisp_Object call2 (Lisp_Object, Lisp_Object, Lisp_Object);
3732 extern Lisp_Object call3 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3733 extern Lisp_Object call4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3734 extern Lisp_Object call5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3735 extern Lisp_Object call6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3736 extern Lisp_Object call7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3737 extern Lisp_Object internal_catch (Lisp_Object, Lisp_Object (*) (Lisp_Object), Lisp_Object);
3738 extern Lisp_Object internal_lisp_condition_case (Lisp_Object, Lisp_Object, Lisp_Object);
3739 extern Lisp_Object internal_condition_case (Lisp_Object (*) (void), Lisp_Object, Lisp_Object (*) (Lisp_Object));
3740 extern Lisp_Object internal_condition_case_1 (Lisp_Object (*) (Lisp_Object), Lisp_Object, Lisp_Object, Lisp_Object (*) (Lisp_Object));
3741 extern Lisp_Object internal_condition_case_2 (Lisp_Object (*) (Lisp_Object, Lisp_Object), Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object (*) (Lisp_Object));
3742 extern Lisp_Object internal_condition_case_n
3743 (Lisp_Object (*) (ptrdiff_t, Lisp_Object *), ptrdiff_t, Lisp_Object *,
3744 Lisp_Object, Lisp_Object (*) (Lisp_Object, ptrdiff_t, Lisp_Object *));
3745 extern void specbind (Lisp_Object, Lisp_Object);
3746 extern void record_unwind_protect (void (*) (Lisp_Object), Lisp_Object);
3747 extern void record_unwind_protect_ptr (void (*) (void *), void *);
3748 extern void record_unwind_protect_int (void (*) (int), int);
3749 extern void record_unwind_protect_void (void (*) (void));
3750 extern void record_unwind_protect_nothing (void);
3751 extern void clear_unwind_protect (ptrdiff_t);
3752 extern void set_unwind_protect (ptrdiff_t, void (*) (Lisp_Object), Lisp_Object);
3753 extern void set_unwind_protect_ptr (ptrdiff_t, void (*) (void *), void *);
3754 extern Lisp_Object unbind_to (ptrdiff_t, Lisp_Object);
3755 extern _Noreturn void error (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2);
3756 extern _Noreturn void verror (const char *, va_list)
3757 ATTRIBUTE_FORMAT_PRINTF (1, 0);
3758 extern void un_autoload (Lisp_Object);
3759 extern Lisp_Object call_debugger (Lisp_Object arg);
3760 extern void init_eval_once (void);
3761 extern Lisp_Object safe_call (ptrdiff_t, Lisp_Object, ...);
3762 extern Lisp_Object safe_call1 (Lisp_Object, Lisp_Object);
3763 extern Lisp_Object safe_call2 (Lisp_Object, Lisp_Object, Lisp_Object);
3764 extern void init_eval (void);
3765 extern void syms_of_eval (void);
3766 extern void unwind_body (Lisp_Object);
3767 extern void record_in_backtrace (Lisp_Object function,
3768 Lisp_Object *args, ptrdiff_t nargs);
3769 extern void mark_specpdl (void);
3770 extern void get_backtrace (Lisp_Object array);
3771 Lisp_Object backtrace_top_function (void);
3772 extern bool let_shadows_buffer_binding_p (struct Lisp_Symbol *symbol);
3773 extern bool let_shadows_global_binding_p (Lisp_Object symbol);
3776 /* Defined in editfns.c. */
3777 extern Lisp_Object Qfield;
3778 extern void insert1 (Lisp_Object);
3779 extern Lisp_Object format2 (const char *, Lisp_Object, Lisp_Object);
3780 extern Lisp_Object save_excursion_save (void);
3781 extern Lisp_Object save_restriction_save (void);
3782 extern void save_excursion_restore (Lisp_Object);
3783 extern void save_restriction_restore (Lisp_Object);
3784 extern _Noreturn void time_overflow (void);
3785 extern Lisp_Object make_buffer_string (ptrdiff_t, ptrdiff_t, bool);
3786 extern Lisp_Object make_buffer_string_both (ptrdiff_t, ptrdiff_t, ptrdiff_t,
3787 ptrdiff_t, bool);
3788 extern void init_editfns (void);
3789 extern void syms_of_editfns (void);
3790 extern void set_time_zone_rule (const char *);
3792 /* Defined in buffer.c. */
3793 extern bool mouse_face_overlay_overlaps (Lisp_Object);
3794 extern _Noreturn void nsberror (Lisp_Object);
3795 extern void adjust_overlays_for_insert (ptrdiff_t, ptrdiff_t);
3796 extern void adjust_overlays_for_delete (ptrdiff_t, ptrdiff_t);
3797 extern void fix_start_end_in_overlays (ptrdiff_t, ptrdiff_t);
3798 extern void report_overlay_modification (Lisp_Object, Lisp_Object, bool,
3799 Lisp_Object, Lisp_Object, Lisp_Object);
3800 extern bool overlay_touches_p (ptrdiff_t);
3801 extern Lisp_Object other_buffer_safely (Lisp_Object);
3802 extern Lisp_Object get_truename_buffer (Lisp_Object);
3803 extern void init_buffer_once (void);
3804 extern void init_buffer (void);
3805 extern void syms_of_buffer (void);
3806 extern void keys_of_buffer (void);
3808 /* Defined in marker.c. */
3810 extern ptrdiff_t marker_position (Lisp_Object);
3811 extern ptrdiff_t marker_byte_position (Lisp_Object);
3812 extern void clear_charpos_cache (struct buffer *);
3813 extern ptrdiff_t buf_charpos_to_bytepos (struct buffer *, ptrdiff_t);
3814 extern ptrdiff_t buf_bytepos_to_charpos (struct buffer *, ptrdiff_t);
3815 extern void unchain_marker (struct Lisp_Marker *marker);
3816 extern Lisp_Object set_marker_restricted (Lisp_Object, Lisp_Object, Lisp_Object);
3817 extern Lisp_Object set_marker_both (Lisp_Object, Lisp_Object, ptrdiff_t, ptrdiff_t);
3818 extern Lisp_Object set_marker_restricted_both (Lisp_Object, Lisp_Object,
3819 ptrdiff_t, ptrdiff_t);
3820 extern Lisp_Object build_marker (struct buffer *, ptrdiff_t, ptrdiff_t);
3821 extern void syms_of_marker (void);
3823 /* Defined in fileio.c. */
3825 extern Lisp_Object Qfile_error;
3826 extern Lisp_Object Qfile_notify_error;
3827 extern Lisp_Object Qfile_exists_p;
3828 extern Lisp_Object Qfile_directory_p;
3829 extern Lisp_Object Qinsert_file_contents;
3830 extern Lisp_Object Qfile_name_history;
3831 extern Lisp_Object expand_and_dir_to_file (Lisp_Object, Lisp_Object);
3832 extern Lisp_Object write_region (Lisp_Object, Lisp_Object, Lisp_Object,
3833 Lisp_Object, Lisp_Object, Lisp_Object,
3834 Lisp_Object, int);
3835 EXFUN (Fread_file_name, 6); /* Not a normal DEFUN. */
3836 extern void close_file_unwind (int);
3837 extern void fclose_unwind (void *);
3838 extern void restore_point_unwind (Lisp_Object);
3839 extern _Noreturn void report_file_errno (const char *, Lisp_Object, int);
3840 extern _Noreturn void report_file_error (const char *, Lisp_Object);
3841 extern bool internal_delete_file (Lisp_Object);
3842 extern Lisp_Object emacs_readlinkat (int, const char *);
3843 extern bool file_directory_p (const char *);
3844 extern bool file_accessible_directory_p (const char *);
3845 extern void init_fileio (void);
3846 extern void syms_of_fileio (void);
3847 extern Lisp_Object make_temp_name (Lisp_Object, bool);
3848 extern Lisp_Object Qdelete_file;
3849 extern bool check_existing (const char *);
3851 /* Defined in search.c. */
3852 extern void shrink_regexp_cache (void);
3853 extern void restore_search_regs (void);
3854 extern void record_unwind_save_match_data (void);
3855 struct re_registers;
3856 extern struct re_pattern_buffer *compile_pattern (Lisp_Object,
3857 struct re_registers *,
3858 Lisp_Object, bool, bool);
3859 extern ptrdiff_t fast_string_match (Lisp_Object, Lisp_Object);
3860 extern ptrdiff_t fast_c_string_match_ignore_case (Lisp_Object, const char *,
3861 ptrdiff_t);
3862 extern ptrdiff_t fast_string_match_ignore_case (Lisp_Object, Lisp_Object);
3863 extern ptrdiff_t fast_looking_at (Lisp_Object, ptrdiff_t, ptrdiff_t,
3864 ptrdiff_t, ptrdiff_t, Lisp_Object);
3865 extern ptrdiff_t find_newline (ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t,
3866 ptrdiff_t, ptrdiff_t *, ptrdiff_t *, bool);
3867 extern ptrdiff_t scan_newline (ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t,
3868 ptrdiff_t, bool);
3869 extern ptrdiff_t find_newline_no_quit (ptrdiff_t, ptrdiff_t,
3870 ptrdiff_t, ptrdiff_t *);
3871 extern ptrdiff_t find_before_next_newline (ptrdiff_t, ptrdiff_t,
3872 ptrdiff_t, ptrdiff_t *);
3873 extern void syms_of_search (void);
3874 extern void clear_regexp_cache (void);
3876 /* Defined in minibuf.c. */
3878 extern Lisp_Object Qcompletion_ignore_case;
3879 extern Lisp_Object Vminibuffer_list;
3880 extern Lisp_Object last_minibuf_string;
3881 extern Lisp_Object get_minibuffer (EMACS_INT);
3882 extern void init_minibuf_once (void);
3883 extern void syms_of_minibuf (void);
3885 /* Defined in callint.c. */
3887 extern Lisp_Object Qminus, Qplus;
3888 extern Lisp_Object Qwhen;
3889 extern Lisp_Object Qmouse_leave_buffer_hook;
3890 extern void syms_of_callint (void);
3892 /* Defined in casefiddle.c. */
3894 extern Lisp_Object Qidentity;
3895 extern void syms_of_casefiddle (void);
3896 extern void keys_of_casefiddle (void);
3898 /* Defined in casetab.c. */
3900 extern void init_casetab_once (void);
3901 extern void syms_of_casetab (void);
3903 /* Defined in keyboard.c. */
3905 extern Lisp_Object echo_message_buffer;
3906 extern struct kboard *echo_kboard;
3907 extern void cancel_echoing (void);
3908 extern Lisp_Object Qdisabled, QCfilter;
3909 extern Lisp_Object Qup, Qdown, Qbottom;
3910 extern Lisp_Object Qtop;
3911 extern Lisp_Object last_undo_boundary;
3912 extern bool input_pending;
3913 extern Lisp_Object menu_bar_items (Lisp_Object);
3914 extern Lisp_Object tool_bar_items (Lisp_Object, int *);
3915 extern void discard_mouse_events (void);
3916 #ifdef USABLE_SIGIO
3917 void handle_input_available_signal (int);
3918 #endif
3919 extern Lisp_Object pending_funcalls;
3920 extern bool detect_input_pending (void);
3921 extern bool detect_input_pending_ignore_squeezables (void);
3922 extern bool detect_input_pending_run_timers (bool);
3923 extern void safe_run_hooks (Lisp_Object);
3924 extern void cmd_error_internal (Lisp_Object, const char *);
3925 extern Lisp_Object command_loop_1 (void);
3926 extern Lisp_Object read_menu_command (void);
3927 extern Lisp_Object recursive_edit_1 (void);
3928 extern void record_auto_save (void);
3929 extern void force_auto_save_soon (void);
3930 extern void init_keyboard (void);
3931 extern void syms_of_keyboard (void);
3932 extern void keys_of_keyboard (void);
3934 /* Defined in indent.c. */
3935 extern ptrdiff_t current_column (void);
3936 extern void invalidate_current_column (void);
3937 extern bool indented_beyond_p (ptrdiff_t, ptrdiff_t, EMACS_INT);
3938 extern void syms_of_indent (void);
3940 /* Defined in frame.c. */
3941 extern Lisp_Object Qonly, Qnone;
3942 extern Lisp_Object Qvisible;
3943 extern void store_frame_param (struct frame *, Lisp_Object, Lisp_Object);
3944 extern void store_in_alist (Lisp_Object *, Lisp_Object, Lisp_Object);
3945 extern Lisp_Object do_switch_frame (Lisp_Object, int, int, Lisp_Object);
3946 #if HAVE_NS || defined WINDOWSNT
3947 extern Lisp_Object get_frame_param (struct frame *, Lisp_Object);
3948 #endif
3949 extern void frames_discard_buffer (Lisp_Object);
3950 extern void syms_of_frame (void);
3952 /* Defined in emacs.c. */
3953 extern char **initial_argv;
3954 extern int initial_argc;
3955 #if defined (HAVE_X_WINDOWS) || defined (HAVE_NS)
3956 extern bool display_arg;
3957 #endif
3958 extern Lisp_Object decode_env_path (const char *, const char *);
3959 extern Lisp_Object empty_unibyte_string, empty_multibyte_string;
3960 extern Lisp_Object Qfile_name_handler_alist;
3961 extern _Noreturn void terminate_due_to_signal (int, int);
3962 extern Lisp_Object Qkill_emacs;
3963 #ifdef WINDOWSNT
3964 extern Lisp_Object Vlibrary_cache;
3965 #endif
3966 #if HAVE_SETLOCALE
3967 void fixup_locale (void);
3968 void synchronize_system_messages_locale (void);
3969 void synchronize_system_time_locale (void);
3970 #else
3971 INLINE void fixup_locale (void) {}
3972 INLINE void synchronize_system_messages_locale (void) {}
3973 INLINE void synchronize_system_time_locale (void) {}
3974 #endif
3975 extern void shut_down_emacs (int, Lisp_Object);
3977 /* True means don't do interactive redisplay and don't change tty modes. */
3978 extern bool noninteractive;
3980 /* True means remove site-lisp directories from load-path. */
3981 extern bool no_site_lisp;
3983 /* Pipe used to send exit notification to the daemon parent at
3984 startup. */
3985 extern int daemon_pipe[2];
3986 #define IS_DAEMON (daemon_pipe[1] != 0)
3988 /* True if handling a fatal error already. */
3989 extern bool fatal_error_in_progress;
3991 /* True means don't do use window-system-specific display code. */
3992 extern bool inhibit_window_system;
3993 /* True means that a filter or a sentinel is running. */
3994 extern bool running_asynch_code;
3996 /* Defined in process.c. */
3997 extern Lisp_Object QCtype, Qlocal;
3998 extern Lisp_Object Qprocessp;
3999 extern void kill_buffer_processes (Lisp_Object);
4000 extern bool wait_reading_process_output (intmax_t, int, int, bool,
4001 Lisp_Object,
4002 struct Lisp_Process *,
4003 int);
4004 /* Max value for the first argument of wait_reading_process_output. */
4005 #if __GNUC__ == 3 || (__GNUC__ == 4 && __GNUC_MINOR__ <= 5)
4006 /* Work around a bug in GCC 3.4.2, known to be fixed in GCC 4.6.3.
4007 The bug merely causes a bogus warning, but the warning is annoying. */
4008 # define WAIT_READING_MAX min (TYPE_MAXIMUM (time_t), INTMAX_MAX)
4009 #else
4010 # define WAIT_READING_MAX INTMAX_MAX
4011 #endif
4012 extern void add_keyboard_wait_descriptor (int);
4013 extern void delete_keyboard_wait_descriptor (int);
4014 #ifdef HAVE_GPM
4015 extern void add_gpm_wait_descriptor (int);
4016 extern void delete_gpm_wait_descriptor (int);
4017 #endif
4018 extern void init_process_emacs (void);
4019 extern void syms_of_process (void);
4020 extern void setup_process_coding_systems (Lisp_Object);
4022 /* Defined in callproc.c. */
4023 #ifndef DOS_NT
4024 _Noreturn
4025 #endif
4026 extern int child_setup (int, int, int, char **, bool, Lisp_Object);
4027 extern void init_callproc_1 (void);
4028 extern void init_callproc (void);
4029 extern void set_initial_environment (void);
4030 extern void syms_of_callproc (void);
4032 /* Defined in doc.c. */
4033 extern Lisp_Object Qfunction_documentation;
4034 extern Lisp_Object read_doc_string (Lisp_Object);
4035 extern Lisp_Object get_doc_string (Lisp_Object, bool, bool);
4036 extern void syms_of_doc (void);
4037 extern int read_bytecode_char (bool);
4039 /* Defined in bytecode.c. */
4040 extern void syms_of_bytecode (void);
4041 extern struct byte_stack *byte_stack_list;
4042 #if BYTE_MARK_STACK
4043 extern void mark_byte_stack (void);
4044 #endif
4045 extern void unmark_byte_stack (void);
4046 extern Lisp_Object exec_byte_code (Lisp_Object, Lisp_Object, Lisp_Object,
4047 Lisp_Object, ptrdiff_t, Lisp_Object *);
4049 /* Defined in macros.c. */
4050 extern void init_macros (void);
4051 extern void syms_of_macros (void);
4053 /* Defined in undo.c. */
4054 extern Lisp_Object Qapply;
4055 extern Lisp_Object Qinhibit_read_only;
4056 extern void truncate_undo_list (struct buffer *);
4057 extern void record_marker_adjustment (Lisp_Object, ptrdiff_t);
4058 extern void record_insert (ptrdiff_t, ptrdiff_t);
4059 extern void record_delete (ptrdiff_t, Lisp_Object);
4060 extern void record_first_change (void);
4061 extern void record_change (ptrdiff_t, ptrdiff_t);
4062 extern void record_property_change (ptrdiff_t, ptrdiff_t,
4063 Lisp_Object, Lisp_Object,
4064 Lisp_Object);
4065 extern void syms_of_undo (void);
4066 /* Defined in textprop.c. */
4067 extern Lisp_Object Qfont, Qmouse_face;
4068 extern Lisp_Object Qinsert_in_front_hooks, Qinsert_behind_hooks;
4069 extern Lisp_Object Qfront_sticky, Qrear_nonsticky;
4070 extern Lisp_Object Qminibuffer_prompt;
4072 extern void report_interval_modification (Lisp_Object, Lisp_Object);
4074 /* Defined in menu.c. */
4075 extern void syms_of_menu (void);
4077 /* Defined in xmenu.c. */
4078 extern void syms_of_xmenu (void);
4080 /* Defined in termchar.h. */
4081 struct tty_display_info;
4083 /* Defined in termhooks.h. */
4084 struct terminal;
4086 /* Defined in sysdep.c. */
4087 #ifndef HAVE_GET_CURRENT_DIR_NAME
4088 extern char *get_current_dir_name (void);
4089 #endif
4090 extern void stuff_char (char c);
4091 extern void init_foreground_group (void);
4092 extern void init_sigio (int);
4093 extern void sys_subshell (void);
4094 extern void sys_suspend (void);
4095 extern void discard_tty_input (void);
4096 extern void block_tty_out_signal (void);
4097 extern void unblock_tty_out_signal (void);
4098 extern void init_sys_modes (struct tty_display_info *);
4099 extern void reset_sys_modes (struct tty_display_info *);
4100 extern void init_all_sys_modes (void);
4101 extern void reset_all_sys_modes (void);
4102 extern void child_setup_tty (int);
4103 extern void setup_pty (int);
4104 extern int set_window_size (int, int, int);
4105 extern EMACS_INT get_random (void);
4106 extern void seed_random (void *, ptrdiff_t);
4107 extern void init_random (void);
4108 extern void emacs_backtrace (int);
4109 extern _Noreturn void emacs_abort (void) NO_INLINE;
4110 extern int emacs_open (const char *, int, int);
4111 extern int emacs_pipe (int[2]);
4112 extern int emacs_close (int);
4113 extern ptrdiff_t emacs_read (int, void *, ptrdiff_t);
4114 extern ptrdiff_t emacs_write (int, void const *, ptrdiff_t);
4115 extern ptrdiff_t emacs_write_sig (int, void const *, ptrdiff_t);
4116 extern void emacs_perror (char const *);
4118 extern void unlock_all_files (void);
4119 extern void lock_file (Lisp_Object);
4120 extern void unlock_file (Lisp_Object);
4121 extern void unlock_buffer (struct buffer *);
4122 extern void syms_of_filelock (void);
4124 /* Defined in sound.c. */
4125 extern void syms_of_sound (void);
4127 /* Defined in category.c. */
4128 extern void init_category_once (void);
4129 extern Lisp_Object char_category_set (int);
4130 extern void syms_of_category (void);
4132 /* Defined in ccl.c. */
4133 extern void syms_of_ccl (void);
4135 /* Defined in dired.c. */
4136 extern void syms_of_dired (void);
4137 extern Lisp_Object directory_files_internal (Lisp_Object, Lisp_Object,
4138 Lisp_Object, Lisp_Object,
4139 bool, Lisp_Object);
4141 /* Defined in term.c. */
4142 extern int *char_ins_del_vector;
4143 extern void syms_of_term (void);
4144 extern _Noreturn void fatal (const char *msgid, ...)
4145 ATTRIBUTE_FORMAT_PRINTF (1, 2);
4147 /* Defined in terminal.c. */
4148 extern void syms_of_terminal (void);
4150 /* Defined in font.c. */
4151 extern void syms_of_font (void);
4152 extern void init_font (void);
4154 #ifdef HAVE_WINDOW_SYSTEM
4155 /* Defined in fontset.c. */
4156 extern void syms_of_fontset (void);
4158 /* Defined in xfns.c, w32fns.c, or macfns.c. */
4159 extern Lisp_Object Qfont_param;
4160 #endif
4162 /* Defined in gfilenotify.c */
4163 #ifdef HAVE_GFILENOTIFY
4164 extern void globals_of_gfilenotify (void);
4165 extern void syms_of_gfilenotify (void);
4166 #endif
4168 /* Defined in inotify.c */
4169 #ifdef HAVE_INOTIFY
4170 extern void syms_of_inotify (void);
4171 #endif
4173 #ifdef HAVE_W32NOTIFY
4174 /* Defined on w32notify.c. */
4175 extern void syms_of_w32notify (void);
4176 #endif
4178 /* Defined in xfaces.c. */
4179 extern Lisp_Object Qdefault, Qtool_bar, Qfringe;
4180 extern Lisp_Object Qheader_line, Qscroll_bar, Qcursor;
4181 extern Lisp_Object Qmode_line_inactive;
4182 extern Lisp_Object Qface;
4183 extern Lisp_Object Qnormal;
4184 extern Lisp_Object QCfamily, QCweight, QCslant;
4185 extern Lisp_Object QCheight, QCname, QCwidth, QCforeground, QCbackground;
4186 extern Lisp_Object Qextra_light, Qlight, Qsemi_light, Qsemi_bold;
4187 extern Lisp_Object Qbold, Qextra_bold, Qultra_bold;
4188 extern Lisp_Object Qoblique, Qitalic;
4189 extern Lisp_Object Vface_alternative_font_family_alist;
4190 extern Lisp_Object Vface_alternative_font_registry_alist;
4191 extern void syms_of_xfaces (void);
4193 #ifdef HAVE_X_WINDOWS
4194 /* Defined in xfns.c. */
4195 extern void syms_of_xfns (void);
4197 /* Defined in xsmfns.c. */
4198 extern void syms_of_xsmfns (void);
4200 /* Defined in xselect.c. */
4201 extern void syms_of_xselect (void);
4203 /* Defined in xterm.c. */
4204 extern void syms_of_xterm (void);
4205 #endif /* HAVE_X_WINDOWS */
4207 #ifdef HAVE_WINDOW_SYSTEM
4208 /* Defined in xterm.c, nsterm.m, w32term.c. */
4209 extern char *x_get_keysym_name (int);
4210 #endif /* HAVE_WINDOW_SYSTEM */
4212 #ifdef HAVE_LIBXML2
4213 /* Defined in xml.c. */
4214 extern void syms_of_xml (void);
4215 extern void xml_cleanup_parser (void);
4216 #endif
4218 #ifdef HAVE_ZLIB
4219 /* Defined in decompress.c. */
4220 extern void syms_of_decompress (void);
4221 #endif
4223 #ifdef HAVE_DBUS
4224 /* Defined in dbusbind.c. */
4225 void syms_of_dbusbind (void);
4226 #endif
4229 /* Defined in profiler.c. */
4230 extern bool profiler_memory_running;
4231 extern void malloc_probe (size_t);
4232 extern void syms_of_profiler (void);
4235 #ifdef DOS_NT
4236 /* Defined in msdos.c, w32.c. */
4237 extern char *emacs_root_dir (void);
4238 #endif /* DOS_NT */
4240 /* True means Emacs has already been initialized.
4241 Used during startup to detect startup of dumped Emacs. */
4242 extern bool initialized;
4244 /* True means ^G can quit instantly. */
4245 extern bool immediate_quit;
4247 extern void *xmalloc (size_t);
4248 extern void *xzalloc (size_t);
4249 extern void *xrealloc (void *, size_t);
4250 extern void xfree (void *);
4251 extern void *xnmalloc (ptrdiff_t, ptrdiff_t);
4252 extern void *xnrealloc (void *, ptrdiff_t, ptrdiff_t);
4253 extern void *xpalloc (void *, ptrdiff_t *, ptrdiff_t, ptrdiff_t, ptrdiff_t);
4255 extern char *xstrdup (const char *);
4256 extern char *xlispstrdup (Lisp_Object);
4257 extern void xputenv (const char *);
4259 extern char *egetenv (const char *);
4261 /* Copy Lisp string to temporary (allocated on stack) C string. */
4263 #define xlispstrdupa(string) \
4264 memcpy (alloca (SBYTES (string) + 1), \
4265 SSDATA (string), SBYTES (string) + 1)
4267 /* Set up the name of the machine we're running on. */
4268 extern void init_system_name (void);
4270 /* Return the absolute value of X. X should be a signed integer
4271 expression without side effects, and X's absolute value should not
4272 exceed the maximum for its promoted type. This is called 'eabs'
4273 because 'abs' is reserved by the C standard. */
4274 #define eabs(x) ((x) < 0 ? -(x) : (x))
4276 /* Return a fixnum or float, depending on whether VAL fits in a Lisp
4277 fixnum. */
4279 #define make_fixnum_or_float(val) \
4280 (FIXNUM_OVERFLOW_P (val) ? make_float (val) : make_number (val))
4282 /* SAFE_ALLOCA normally allocates memory on the stack, but if size is
4283 larger than MAX_ALLOCA, use xmalloc to avoid overflowing the stack. */
4285 enum MAX_ALLOCA { MAX_ALLOCA = 16 * 1024 };
4287 extern void *record_xmalloc (size_t);
4289 #define USE_SAFE_ALLOCA \
4290 ptrdiff_t sa_count = SPECPDL_INDEX (); bool sa_must_free = 0
4292 /* SAFE_ALLOCA allocates a simple buffer. */
4294 #define SAFE_ALLOCA(size) ((size) < MAX_ALLOCA \
4295 ? alloca (size) \
4296 : (sa_must_free = 1, record_xmalloc (size)))
4298 /* SAFE_NALLOCA sets BUF to a newly allocated array of MULTIPLIER *
4299 NITEMS items, each of the same type as *BUF. MULTIPLIER must
4300 positive. The code is tuned for MULTIPLIER being a constant. */
4302 #define SAFE_NALLOCA(buf, multiplier, nitems) \
4303 do { \
4304 if ((nitems) <= MAX_ALLOCA / sizeof *(buf) / (multiplier)) \
4305 (buf) = alloca (sizeof *(buf) * (multiplier) * (nitems)); \
4306 else \
4308 (buf) = xnmalloc (nitems, sizeof *(buf) * (multiplier)); \
4309 sa_must_free = 1; \
4310 record_unwind_protect_ptr (xfree, buf); \
4312 } while (0)
4314 /* SAFE_FREE frees xmalloced memory and enables GC as needed. */
4316 #define SAFE_FREE() \
4317 do { \
4318 if (sa_must_free) { \
4319 sa_must_free = 0; \
4320 unbind_to (sa_count, Qnil); \
4322 } while (0)
4325 /* SAFE_ALLOCA_LISP allocates an array of Lisp_Objects. */
4327 #define SAFE_ALLOCA_LISP(buf, nelt) \
4328 do { \
4329 if ((nelt) < MAX_ALLOCA / word_size) \
4330 buf = alloca ((nelt) * word_size); \
4331 else if ((nelt) < min (PTRDIFF_MAX, SIZE_MAX) / word_size) \
4333 Lisp_Object arg_; \
4334 buf = xmalloc ((nelt) * word_size); \
4335 arg_ = make_save_memory (buf, nelt); \
4336 sa_must_free = 1; \
4337 record_unwind_protect (free_save_value, arg_); \
4339 else \
4340 memory_full (SIZE_MAX); \
4341 } while (0)
4343 /* Do a `for' loop over alist values. */
4345 #define FOR_EACH_ALIST_VALUE(head_var, list_var, value_var) \
4346 for (list_var = head_var; \
4347 (CONSP (list_var) && (value_var = XCDR (XCAR (list_var)), 1)); \
4348 list_var = XCDR (list_var))
4350 /* Check whether it's time for GC, and run it if so. */
4352 INLINE void
4353 maybe_gc (void)
4355 if ((consing_since_gc > gc_cons_threshold
4356 && consing_since_gc > gc_relative_threshold)
4357 || (!NILP (Vmemory_full)
4358 && consing_since_gc > memory_full_cons_threshold))
4359 Fgarbage_collect ();
4362 INLINE bool
4363 functionp (Lisp_Object object)
4365 if (SYMBOLP (object) && !NILP (Ffboundp (object)))
4367 object = Findirect_function (object, Qt);
4369 if (CONSP (object) && EQ (XCAR (object), Qautoload))
4371 /* Autoloaded symbols are functions, except if they load
4372 macros or keymaps. */
4373 int i;
4374 for (i = 0; i < 4 && CONSP (object); i++)
4375 object = XCDR (object);
4377 return ! (CONSP (object) && !NILP (XCAR (object)));
4381 if (SUBRP (object))
4382 return XSUBR (object)->max_args != UNEVALLED;
4383 else if (COMPILEDP (object))
4384 return 1;
4385 else if (CONSP (object))
4387 Lisp_Object car = XCAR (object);
4388 return EQ (car, Qlambda) || EQ (car, Qclosure);
4390 else
4391 return 0;
4394 /* Round x to the next multiple of y. Does not overflow. Evaluates
4395 arguments repeatedly. */
4396 #define ROUNDUP(x,y) ((y)*((x)/(y) + ((x)%(y)!=0)))
4398 INLINE_HEADER_END
4400 #endif /* EMACS_LISP_H */