guile-elisp bootstrap (C)
[bpt/emacs.git] / src / lisp.h
CommitLineData
3cfe6dfd 1/* Fundamental definitions for GNU Emacs Lisp interpreter.
e2017fe2 2
ba318903
PE
3Copyright (C) 1985-1987, 1993-1995, 1997-2014 Free Software Foundation,
4Inc.
3cfe6dfd
JB
5
6This file is part of GNU Emacs.
7
b9b1cc14 8GNU Emacs is free software: you can redistribute it and/or modify
3cfe6dfd 9it under the terms of the GNU General Public License as published by
b9b1cc14
GM
10the Free Software Foundation, either version 3 of the License, or
11(at your option) any later version.
3cfe6dfd
JB
12
13GNU Emacs is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.
17
18You should have received a copy of the GNU General Public License
b9b1cc14 19along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
3cfe6dfd 20
6b61353c
KH
21#ifndef EMACS_LISP_H
22#define EMACS_LISP_H
23
0328b6de 24#include <setjmp.h>
e32a5799 25#include <stdalign.h>
6a8033e1 26#include <stdarg.h>
89887d67 27#include <stddef.h>
4d7e6e51 28#include <float.h>
8ac068ac 29#include <inttypes.h>
dd3482fe 30#include <limits.h>
be44ca6c 31#include <intprops.h>
b9ff995e 32#include <verify.h>
49609976 33#include <libguile.h>
be44ca6c 34
f162bcc3 35INLINE_HEADER_BEGIN
f162bcc3 36
bb9937df
PE
37/* Define a TYPE constant ID as an externally visible name. Use like this:
38
bba89481
PE
39 #define ID_val (some integer preprocessor expression)
40 #if ENUMABLE (ID_val)
41 DEFINE_GDB_SYMBOL_ENUM (ID)
42 #else
bb9937df 43 DEFINE_GDB_SYMBOL_BEGIN (TYPE, ID)
bba89481 44 # define ID ID_val
bb9937df 45 DEFINE_GDB_SYMBOL_END (ID)
bba89481 46 #endif
bb9937df
PE
47
48 This hack is for the benefit of compilers that do not make macro
49 definitions visible to the debugger. It's used for symbols that
50 .gdbinit needs, symbols whose values may not fit in 'int' (where an
bba89481
PE
51 enum would suffice).
52
53 Some GCC versions before GCC 4.2 omit enums in debugging output;
54 see GCC bug 23336. So don't use enums with older GCC. */
55
56#if !defined __GNUC__ || 4 < __GNUC__ + (2 <= __GNUC_MINOR__)
57# define ENUMABLE(val) (INT_MIN <= (val) && (val) <= INT_MAX)
58#else
59# define ENUMABLE(val) 0
60#endif
61
bba89481 62#define DEFINE_GDB_SYMBOL_ENUM(id) enum { id = id##_val };
0f679e86 63#if defined MAIN_PROGRAM
bb9937df
PE
64# define DEFINE_GDB_SYMBOL_BEGIN(type, id) type const id EXTERNALLY_VISIBLE
65# define DEFINE_GDB_SYMBOL_END(id) = id;
66#else
67# define DEFINE_GDB_SYMBOL_BEGIN(type, id)
68# define DEFINE_GDB_SYMBOL_END(val)
69#endif
70
03a660a6
PE
71/* The ubiquitous max and min macros. */
72#undef min
73#undef max
74#define max(a, b) ((a) > (b) ? (a) : (b))
75#define min(a, b) ((a) < (b) ? (a) : (b))
76
faa52174
PE
77/* Number of elements in an array. */
78#define ARRAYELTS(arr) (sizeof (arr) / sizeof (arr)[0])
01ae0fbf 79
5403b2d3
PE
80/* Number of bits in a Lisp_Object tag. */
81DEFINE_GDB_SYMBOL_BEGIN (int, GCTYPEBITS)
82#define GCTYPEBITS 3
83DEFINE_GDB_SYMBOL_END (GCTYPEBITS)
84
85/* The number of bits needed in an EMACS_INT over and above the number
86 of bits in a pointer. This is 0 on systems where:
87 1. We can specify multiple-of-8 alignment on static variables.
88 2. We know malloc returns a multiple of 8. */
89#if (defined alignas \
90 && (defined GNU_MALLOC || defined DOUG_LEA_MALLOC || defined __GLIBC__ \
587fd086 91 || defined DARWIN_OS || defined __sun || defined __MINGW32__))
5403b2d3
PE
92# define NONPOINTER_BITS 0
93#else
94# define NONPOINTER_BITS GCTYPEBITS
95#endif
96
34374650
PE
97/* EMACS_INT - signed integer wide enough to hold an Emacs value
98 EMACS_INT_MAX - maximum value of EMACS_INT; can be used in #if
99 pI - printf length modifier for EMACS_INT
100 EMACS_UINT - unsigned variant of EMACS_INT */
49609976
BT
101
102typedef scm_t_signed_bits EMACS_INT;
103typedef scm_t_bits EMACS_UINT;
104#define EMACS_INT_MAX SCM_T_SIGNED_BITS_MAX
105
106#if INTPTR_MAX == INT_MAX
107#define pI ""
108#elif INTPTR_MAX == LONG_MAX
109#define pI "l"
110#elif INTPTR_MAX == LLONG_MAX
111#define pI "ll"
112#elif INTPTR_MAX == INTMAX_MAX
113#define pI "j"
114#else
115#error "Cannot determine length modifier for EMACS_INT"
68c45bf0 116#endif
34374650 117
df5b4930
PE
118/* Number of bits to put in each character in the internal representation
119 of bool vectors. This should not vary across implementations. */
120enum { BOOL_VECTOR_BITS_PER_CHAR =
121#define BOOL_VECTOR_BITS_PER_CHAR 8
122 BOOL_VECTOR_BITS_PER_CHAR
123};
124
87c4314d 125/* An unsigned integer type representing a fixed-length bit sequence,
9c23779a 126 suitable for bool vector words, GC mark bits, etc. Normally it is size_t
df5b4930 127 for speed, but it is unsigned char on weird platforms. */
2cf00efc 128#if BOOL_VECTOR_BITS_PER_CHAR == CHAR_BIT
87c4314d 129typedef size_t bits_word;
2cf00efc 130# define BITS_WORD_MAX SIZE_MAX
df5b4930
PE
131enum { BITS_PER_BITS_WORD = CHAR_BIT * sizeof (bits_word) };
132#else
133typedef unsigned char bits_word;
2cf00efc 134# define BITS_WORD_MAX ((1u << BOOL_VECTOR_BITS_PER_CHAR) - 1)
df5b4930
PE
135enum { BITS_PER_BITS_WORD = BOOL_VECTOR_BITS_PER_CHAR };
136#endif
2cf00efc 137verify (BITS_WORD_MAX >> (BITS_PER_BITS_WORD - 1) == 1);
87c4314d 138
34374650
PE
139/* Number of bits in some machine integer types. */
140enum
141 {
142 BITS_PER_CHAR = CHAR_BIT,
143 BITS_PER_SHORT = CHAR_BIT * sizeof (short),
34374650
PE
144 BITS_PER_LONG = CHAR_BIT * sizeof (long int),
145 BITS_PER_EMACS_INT = CHAR_BIT * sizeof (EMACS_INT)
146 };
ce99fd65 147
a81d11a3
PE
148/* printmax_t and uprintmax_t are types for printing large integers.
149 These are the widest integers that are supported for printing.
150 pMd etc. are conversions for printing them.
151 On C99 hosts, there's no problem, as even the widest integers work.
152 Fall back on EMACS_INT on pre-C99 hosts. */
153#ifdef PRIdMAX
154typedef intmax_t printmax_t;
155typedef uintmax_t uprintmax_t;
156# define pMd PRIdMAX
157# define pMu PRIuMAX
158#else
159typedef EMACS_INT printmax_t;
160typedef EMACS_UINT uprintmax_t;
161# define pMd pI"d"
162# define pMu pI"u"
163#endif
164
9c4c5f81
PE
165/* Use pD to format ptrdiff_t values, which suffice for indexes into
166 buffers and strings. Emacs never allocates objects larger than
167 PTRDIFF_MAX bytes, as they cause problems with pointer subtraction.
168 In C99, pD can always be "t"; configure it here for the sake of
169 pre-C99 libraries such as glibc 2.0 and Solaris 8. */
170#if PTRDIFF_MAX == INT_MAX
171# define pD ""
172#elif PTRDIFF_MAX == LONG_MAX
173# define pD "l"
174#elif PTRDIFF_MAX == LLONG_MAX
175# define pD "ll"
176#else
177# define pD "t"
178#endif
179
e0b8c689 180/* Extra internal type checking? */
c6129d7e 181
b9ff995e
PE
182/* Define Emacs versions of <assert.h>'s 'assert (COND)' and <verify.h>'s
183 'assume (COND)'. COND should be free of side effects, as it may or
184 may not be evaluated.
185
186 'eassert (COND)' checks COND at runtime if ENABLE_CHECKING is
187 defined and suppress_checking is false, and does nothing otherwise.
188 Emacs dies if COND is checked and is false. The suppress_checking
189 variable is initialized to 0 in alloc.c. Set it to 1 using a
190 debugger to temporarily disable aborting on detected internal
191 inconsistencies or error conditions.
192
193 In some cases, a good compiler may be able to optimize away the
194 eassert macro even if ENABLE_CHECKING is true, e.g., if XSTRING (x)
195 uses eassert to test STRINGP (x), but a particular use of XSTRING
196 is invoked only after testing that STRINGP (x) is true, making the
197 test redundant.
198
199 eassume is like eassert except that it also causes the compiler to
200 assume that COND is true afterwards, regardless of whether runtime
201 checking is enabled. This can improve performance in some cases,
202 though it can degrade performance in others. It's often suboptimal
203 for COND to call external functions or access volatile storage. */
204
310fbfa8 205#ifndef ENABLE_CHECKING
96c06863 206# define eassert(cond) ((void) (false && (cond))) /* Check COND compiles. */
b9ff995e 207# define eassume(cond) assume (cond)
310fbfa8 208#else /* ENABLE_CHECKING */
c6129d7e 209
845ca893 210extern _Noreturn void die (const char *, const char *, int);
244ed907 211
fce31d69 212extern bool suppress_checking EXTERNALLY_VISIBLE;
244ed907 213
310fbfa8 214# define eassert(cond) \
5013fc08 215 (suppress_checking || (cond) \
0d5d3029 216 ? (void) 0 \
5013fc08 217 : die (# cond, __FILE__, __LINE__))
b9ff995e
PE
218# define eassume(cond) \
219 (suppress_checking \
220 ? assume (cond) \
221 : (cond) \
222 ? (void) 0 \
223 : die (# cond, __FILE__, __LINE__))
3694b4ab 224#endif /* ENABLE_CHECKING */
3e0b94e7 225
b9466edb 226\f
4706125e
PE
227enum Lisp_Bits
228 {
b6b3b294
PE
229 /* 2**GCTYPEBITS. This must be a macro that expands to a literal
230 integer constant, for MSVC. */
e32a5799 231#define GCALIGNMENT 8
e32a5799 232
4706125e 233 /* Number of bits in a Lisp fixnum value, not counting the tag. */
49609976 234 FIXNUM_BITS = SCM_I_FIXNUM_BIT
4706125e 235 };
34374650 236
e32a5799
PE
237#if GCALIGNMENT != 1 << GCTYPEBITS
238# error "GCALIGNMENT and GCTYPEBITS are inconsistent"
239#endif
240
5403b2d3 241DEFINE_GDB_SYMBOL_BEGIN (bool, USE_LSB_TAG)
ee52e81d 242#define USE_LSB_TAG 1
5403b2d3
PE
243DEFINE_GDB_SYMBOL_END (USE_LSB_TAG)
244
e32a5799
PE
245#ifndef alignas
246# define alignas(alignment) /* empty */
bfe3e0a2 247# if USE_LSB_TAG
e32a5799 248# error "USE_LSB_TAG requires alignas"
b9466edb 249# endif
b9466edb
SM
250#endif
251
84575e67
PE
252/* Some operations are so commonly executed that they are implemented
253 as macros, not functions, because otherwise runtime performance would
254 suffer too much when compiling with GCC without optimization.
255 There's no need to inline everything, just the operations that
256 would otherwise cause a serious performance problem.
257
258 For each such operation OP, define a macro lisp_h_OP that contains
5ebb1ee6 259 the operation's implementation. That way, OP can be implemented
84575e67
PE
260 via a macro definition like this:
261
262 #define OP(x) lisp_h_OP (x)
263
264 and/or via a function definition like this:
265
266 LISP_MACRO_DEFUN (OP, Lisp_Object, (Lisp_Object x), (x))
267
268 which macro-expands to this:
269
270 Lisp_Object (OP) (Lisp_Object x) { return lisp_h_OP (x); }
271
272 without worrying about the implementations diverging, since
273 lisp_h_OP defines the actual implementation. The lisp_h_OP macros
274 are intended to be private to this include file, and should not be
275 used elsewhere.
276
277 FIXME: Remove the lisp_h_OP macros, and define just the inline OP
278 functions, once most developers have access to GCC 4.8 or later and
279 can use "gcc -Og" to debug. Maybe in the year 2016. See
280 Bug#11935.
281
282 Commentary for these macros can be found near their corresponding
283 functions, below. */
284
49609976
BT
285#define SMOB_PTR(a) ((void *) SCM_SMOB_DATA (a))
286#define SMOB_TYPEP(x, tag) (x && SCM_SMOB_PREDICATE (tag, x))
287#define lisp_h_XLI(o) (SCM_UNPACK (o))
288#define lisp_h_XIL(i) (SCM_PACK (i))
84575e67
PE
289#define lisp_h_CHECK_LIST_CONS(x, y) CHECK_TYPE (CONSP (x), Qlistp, y)
290#define lisp_h_CHECK_NUMBER(x) CHECK_TYPE (INTEGERP (x), Qintegerp, x)
291#define lisp_h_CHECK_SYMBOL(x) CHECK_TYPE (SYMBOLP (x), Qsymbolp, x)
40f5d4b7
PE
292#define lisp_h_CHECK_TYPE(ok, predicate, x) \
293 ((ok) ? (void) 0 : (void) wrong_type_argument (predicate, x))
e642c718 294#define lisp_h_CONSP(x) (x && scm_is_pair (x))
49609976 295#define lisp_h_EQ(x, y) (scm_is_eq (x, y))
ed446f1e 296#define lisp_h_FLOATP(x) (x && SCM_INEXACTP (x))
49609976 297#define lisp_h_INTEGERP(x) (SCM_I_INUMP (x))
84575e67 298#define lisp_h_MARKERP(x) (MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Marker)
49609976 299#define lisp_h_MISCP(x) (SMOB_TYPEP (x, lisp_misc_tag))
73880000 300#define lisp_h_NILP(x) (scm_is_lisp_false (x))
84575e67 301#define lisp_h_SET_SYMBOL_VAL(sym, v) \
844e0de1
BT
302 (eassert (SYMBOL_REDIRECT (sym) == SYMBOL_PLAINVAL), \
303 scm_c_vector_set_x (sym, 4, v))
304#define lisp_h_SYMBOL_CONSTANT_P(sym) (SYMBOL_CONSTANT (XSYMBOL (sym)))
84575e67 305#define lisp_h_SYMBOL_VAL(sym) \
844e0de1
BT
306 (eassert (SYMBOL_REDIRECT (sym) == SYMBOL_PLAINVAL), \
307 scm_c_vector_ref (sym, 4))
73880000
BT
308#define lisp_h_SYMBOLP(x) \
309 (x && (scm_is_symbol (x) || EQ (x, Qnil) || EQ (x, Qt)))
49609976 310#define lisp_h_VECTORLIKEP(x) (SMOB_TYPEP (x, lisp_vectorlike_tag))
e642c718
BT
311#define lisp_h_XCAR(c) (scm_car (c))
312#define lisp_h_XCDR(c) (scm_cdr (c))
49609976 313#define lisp_h_XHASH(a) (SCM_UNPACK (a))
84575e67
PE
314
315/* Define NAME as a lisp.h inline function that returns TYPE and has
316 arguments declared as ARGDECLS and passed as ARGS. ARGDECLS and
317 ARGS should be parenthesized. Implement the function by calling
318 lisp_h_NAME ARGS. */
319#define LISP_MACRO_DEFUN(name, type, argdecls, args) \
00382e8b 320 INLINE type (name) argdecls { return lisp_h_##name args; }
84575e67
PE
321
322/* like LISP_MACRO_DEFUN, except NAME returns void. */
323#define LISP_MACRO_DEFUN_VOID(name, argdecls, args) \
00382e8b 324 INLINE void (name) argdecls { lisp_h_##name args; }
84575e67
PE
325
326
99a3d506 327/* Define the fundamental Lisp data structures. */
3cfe6dfd 328
c95a4266
EZ
329/* This is the set of Lisp data types. If you want to define a new
330 data type, read the comments after Lisp_Fwd_Type definition
331 below. */
3cfe6dfd 332
49609976
BT
333#define INTMASK SCM_MOST_POSITIVE_FIXNUM
334#define case_Lisp_Int case Lisp_Int
2de9f71c 335
29abe551 336/* Idea stolen from GDB. Pedantic GCC complains about enum bitfields,
91f2d272
PE
337 MSVC doesn't support them, and xlc and Oracle Studio c99 complain
338 vociferously about them. */
339#if (defined __STRICT_ANSI__ || defined _MSC_VER || defined __IBMC__ \
340 || (defined __SUNPRO_C && __STDC__))
a6fc3b5c
EZ
341#define ENUM_BF(TYPE) unsigned int
342#else
343#define ENUM_BF(TYPE) enum TYPE
344#endif
345
49609976
BT
346scm_t_bits lisp_misc_tag;
347scm_t_bits lisp_string_tag;
348scm_t_bits lisp_vectorlike_tag;
a6fc3b5c 349
3cfe6dfd
JB
350enum Lisp_Type
351 {
01099ad1
BT
352 Lisp_Other,
353
99a3d506 354 /* Integer. XINT (obj) is the integer value. */
49609976 355 Lisp_Int,
3cfe6dfd 356
99a3d506 357 /* Symbol. XSYMBOL (object) points to a struct Lisp_Symbol. */
49609976 358 Lisp_Symbol,
3cfe6dfd 359
84d1833e
KH
360 /* Miscellaneous. XMISC (object) points to a union Lisp_Misc,
361 whose first member indicates the subtype. */
49609976 362 Lisp_Misc,
3cfe6dfd
JB
363
364 /* String. XSTRING (object) points to a struct Lisp_String.
99a3d506 365 The length of the string, and its contents, are stored therein. */
49609976 366 Lisp_String,
3cfe6dfd 367
b5088f80 368 /* Vector of Lisp objects, or something resembling it.
7c06ac2b 369 XVECTOR (object) points to a struct Lisp_Vector, which contains
b5088f80
KH
370 the size and contents. The size field also contains the type
371 information, if it's not a real vector object. */
49609976 372 Lisp_Vectorlike,
3cfe6dfd 373
99a3d506 374 /* Cons. XCONS (object) points to a struct Lisp_Cons. */
49609976 375 Lisp_Cons,
4d1207f6 376
49609976 377 Lisp_Float
3cfe6dfd
JB
378 };
379
a32fa736 380/* This is the set of data types that share a common structure.
c98adc1b
KH
381 The first member of the structure is a type code from this set.
382 The enum values are arbitrary, but we'll use large numbers to make it
383 more likely that we'll spot the error if a random word in memory is
384 mistakenly interpreted as a Lisp_Misc. */
1c4ca5a3
KH
385enum Lisp_Misc_Type
386 {
c98adc1b 387 Lisp_Misc_Free = 0x5eab,
84d1833e 388 Lisp_Misc_Marker,
99a3d506 389 Lisp_Misc_Overlay,
222151aa 390 Lisp_Misc_Save_Value,
99a3d506
RS
391 /* Currently floats are not a misc type,
392 but let's define this in case we want to change that. */
393 Lisp_Misc_Float,
394 /* This is not a type code. It is for range checking. */
395 Lisp_Misc_Limit
1c4ca5a3
KH
396 };
397
ce5b453a
SM
398/* These are the types of forwarding objects used in the value slot
399 of symbols for special built-in variables whose value is stored in
400 C variables. */
401enum Lisp_Fwd_Type
402 {
403 Lisp_Fwd_Int, /* Fwd to a C `int' variable. */
404 Lisp_Fwd_Bool, /* Fwd to a C boolean var. */
405 Lisp_Fwd_Obj, /* Fwd to a C Lisp_Object variable. */
406 Lisp_Fwd_Buffer_Obj, /* Fwd to a Lisp_Object field of buffers. */
29abe551 407 Lisp_Fwd_Kboard_Obj /* Fwd to a Lisp_Object field of kboards. */
ce5b453a
SM
408 };
409
49609976
BT
410typedef SCM Lisp_Object;
411
412#define LISP_INITIALLY_ZERO SCM_INUM0
3cfe6dfd 413
84575e67
PE
414/* Convert a Lisp_Object to the corresponding EMACS_INT and vice versa.
415 At the machine level, these operations are no-ops. */
416LISP_MACRO_DEFUN (XLI, EMACS_INT, (Lisp_Object o), (o))
417LISP_MACRO_DEFUN (XIL, Lisp_Object, (EMACS_INT i), (i))
418
b5088f80
KH
419/* In the size word of a struct Lisp_Vector, this bit means it's really
420 some other vector-like object. */
bba89481
PE
421#define PSEUDOVECTOR_FLAG_val (PTRDIFF_MAX - PTRDIFF_MAX / 2)
422#if ENUMABLE (PSEUDOVECTOR_FLAG_val)
423DEFINE_GDB_SYMBOL_ENUM (PSEUDOVECTOR_FLAG)
424#else
bb9937df 425DEFINE_GDB_SYMBOL_BEGIN (ptrdiff_t, PSEUDOVECTOR_FLAG)
bba89481 426# define PSEUDOVECTOR_FLAG PSEUDOVECTOR_FLAG_val
bb9937df 427DEFINE_GDB_SYMBOL_END (PSEUDOVECTOR_FLAG)
bba89481 428#endif
b5088f80 429
303a5c93 430/* In a pseudovector, the size field actually contains a word with one
6aea7528
DA
431 PSEUDOVECTOR_FLAG bit set, and one of the following values extracted
432 with PVEC_TYPE_MASK to indicate the actual type. */
99a3d506
RS
433enum pvec_type
434{
6aea7528 435 PVEC_NORMAL_VECTOR,
ee28be33
SM
436 PVEC_FREE,
437 PVEC_PROCESS,
438 PVEC_FRAME,
439 PVEC_WINDOW,
440 PVEC_BOOL_VECTOR,
441 PVEC_BUFFER,
442 PVEC_HASH_TABLE,
443 PVEC_TERMINAL,
444 PVEC_WINDOW_CONFIGURATION,
ee28be33 445 PVEC_OTHER,
914adc42
DA
446 /* These should be last, check internal_equal to see why. */
447 PVEC_COMPILED,
448 PVEC_CHAR_TABLE,
449 PVEC_SUB_CHAR_TABLE,
450 PVEC_FONT /* Should be last because it's used for range checking. */
99a3d506 451};
b5088f80 452
4706125e 453enum More_Lisp_Bits
1781b9e9 454 {
4706125e
PE
455 /* For convenience, we also store the number of elements in these bits.
456 Note that this size is not necessarily the memory-footprint size, but
457 only the number of Lisp_Object fields (that need to be traced by GC).
458 The distinction is used, e.g., by Lisp_Process, which places extra
459 non-Lisp_Object fields at the end of the structure. */
914adc42 460 PSEUDOVECTOR_SIZE_BITS = 12,
1781b9e9 461 PSEUDOVECTOR_SIZE_MASK = (1 << PSEUDOVECTOR_SIZE_BITS) - 1,
914adc42
DA
462
463 /* To calculate the memory footprint of the pseudovector, it's useful
464 to store the size of non-Lisp area in word_size units here. */
465 PSEUDOVECTOR_REST_BITS = 12,
04a2d0d3 466 PSEUDOVECTOR_REST_MASK = (((1 << PSEUDOVECTOR_REST_BITS) - 1)
914adc42
DA
467 << PSEUDOVECTOR_SIZE_BITS),
468
469 /* Used to extract pseudovector subtype information. */
470 PSEUDOVECTOR_AREA_BITS = PSEUDOVECTOR_SIZE_BITS + PSEUDOVECTOR_REST_BITS,
56a0e352 471 PVEC_TYPE_MASK = 0x3f << PSEUDOVECTOR_AREA_BITS
4706125e 472 };
3cfe6dfd 473\f
84575e67 474/* These functions extract various sorts of values from a Lisp_Object.
bb9937df
PE
475 For example, if tem is a Lisp_Object whose type is Lisp_Cons,
476 XCONS (tem) is the struct Lisp_Cons * pointing to the memory for
477 that cons. */
3cfe6dfd 478
84575e67
PE
479/* Largest and smallest representable fixnum values. These are the C
480 values. They are macros for use in static initializers. */
49609976
BT
481#define MOST_POSITIVE_FIXNUM SCM_MOST_POSITIVE_FIXNUM
482#define MOST_NEGATIVE_FIXNUM SCM_MOST_NEGATIVE_FIXNUM
3cfe6dfd 483
84575e67
PE
484/* Make a Lisp integer representing the value of the low order
485 bits of N. */
00382e8b 486INLINE Lisp_Object
84575e67
PE
487make_number (EMACS_INT n)
488{
49609976 489 return SCM_I_MAKINUM (n);
84575e67 490}
3cfe6dfd 491
84575e67 492/* Extract A's value as a signed integer. */
00382e8b 493INLINE EMACS_INT
84575e67
PE
494XINT (Lisp_Object a)
495{
49609976 496 return SCM_I_INUM (a);
84575e67 497}
3cfe6dfd 498
84575e67
PE
499/* Like XINT (A), but may be faster. A must be nonnegative.
500 If ! USE_LSB_TAG, this takes advantage of the fact that Lisp
501 integers have zero-bits in their tags. */
00382e8b 502INLINE EMACS_INT
84575e67
PE
503XFASTINT (Lisp_Object a)
504{
49609976 505 EMACS_INT n = XINT (a);
84575e67
PE
506 eassert (0 <= n);
507 return n;
508}
b7acde90 509
84575e67 510/* Extract A's value as an unsigned integer. */
00382e8b 511INLINE EMACS_UINT
84575e67
PE
512XUINT (Lisp_Object a)
513{
49609976 514 return SCM_I_INUM (a);
84575e67 515}
b349d111 516
84575e67
PE
517/* Return A's (Lisp-integer sized) hash. Happens to be like XUINT
518 right now, but XUINT should only be applied to objects we know are
519 integers. */
520LISP_MACRO_DEFUN (XHASH, EMACS_INT, (Lisp_Object a), (a))
b263a6b0 521
84575e67 522/* Like make_number (N), but may be faster. N must be in nonnegative range. */
00382e8b 523INLINE Lisp_Object
84575e67
PE
524make_natnum (EMACS_INT n)
525{
526 eassert (0 <= n && n <= MOST_POSITIVE_FIXNUM);
49609976 527 return make_number (n);
84575e67 528}
b9466edb 529
84575e67
PE
530/* Return true if X and Y are the same object. */
531LISP_MACRO_DEFUN (EQ, bool, (Lisp_Object x, Lisp_Object y), (x, y))
0de4bb68 532
96c06863 533/* Value is true if I doesn't fit into a Lisp fixnum. It is
987c9327 534 written this way so that it also works if I is of unsigned
2e6578fb 535 type or if I is a NaN. */
dc8e8b07
GM
536
537#define FIXNUM_OVERFLOW_P(i) \
7216e43b 538 (! ((0 <= (i) || MOST_NEGATIVE_FIXNUM <= (i)) && (i) <= MOST_POSITIVE_FIXNUM))
dc8e8b07 539
00382e8b 540INLINE ptrdiff_t
d311d28c
PE
541clip_to_bounds (ptrdiff_t lower, EMACS_INT num, ptrdiff_t upper)
542{
543 return num < lower ? lower : num <= upper ? num : upper;
544}
84575e67
PE
545\f
546/* Forward declarations. */
547
548/* Defined in this file. */
549union Lisp_Fwd;
00382e8b
PE
550INLINE bool BOOL_VECTOR_P (Lisp_Object);
551INLINE bool BUFFER_OBJFWDP (union Lisp_Fwd *);
552INLINE bool BUFFERP (Lisp_Object);
553INLINE bool CHAR_TABLE_P (Lisp_Object);
554INLINE Lisp_Object CHAR_TABLE_REF_ASCII (Lisp_Object, ptrdiff_t);
555INLINE bool (CONSP) (Lisp_Object);
556INLINE bool (FLOATP) (Lisp_Object);
557INLINE bool functionp (Lisp_Object);
558INLINE bool (INTEGERP) (Lisp_Object);
559INLINE bool (MARKERP) (Lisp_Object);
560INLINE bool (MISCP) (Lisp_Object);
561INLINE bool (NILP) (Lisp_Object);
562INLINE bool OVERLAYP (Lisp_Object);
563INLINE bool PROCESSP (Lisp_Object);
564INLINE bool PSEUDOVECTORP (Lisp_Object, int);
565INLINE bool SAVE_VALUEP (Lisp_Object);
566INLINE void set_sub_char_table_contents (Lisp_Object, ptrdiff_t,
84575e67 567 Lisp_Object);
00382e8b
PE
568INLINE bool STRINGP (Lisp_Object);
569INLINE bool SUB_CHAR_TABLE_P (Lisp_Object);
00382e8b
PE
570INLINE bool (SYMBOLP) (Lisp_Object);
571INLINE bool (VECTORLIKEP) (Lisp_Object);
572INLINE bool WINDOWP (Lisp_Object);
573INLINE struct Lisp_Save_Value *XSAVE_VALUE (Lisp_Object);
d311d28c 574
84575e67
PE
575/* Defined in chartab.c. */
576extern Lisp_Object char_table_ref (Lisp_Object, int);
577extern void char_table_set (Lisp_Object, int, Lisp_Object);
578extern int char_table_translate (Lisp_Object, int);
579
580/* Defined in data.c. */
581extern Lisp_Object Qarrayp, Qbufferp, Qbuffer_or_string_p, Qchar_table_p;
582extern Lisp_Object Qconsp, Qfloatp, Qintegerp, Qlambda, Qlistp, Qmarkerp, Qnil;
2f1205e0 583extern Lisp_Object Qnumberp, Qstringp, Qsymbolp, Qt, Qvectorp;
3e0b94e7 584extern Lisp_Object Qbool_vector_p;
84575e67 585extern Lisp_Object Qvector_or_char_table_p, Qwholenump;
8f3a2c26 586extern Lisp_Object Qwindow;
84575e67
PE
587extern _Noreturn Lisp_Object wrong_type_argument (Lisp_Object, Lisp_Object);
588
589/* Defined in emacs.c. */
f58269c4 590extern bool might_dump;
73bfe891
PE
591/* True means Emacs has already been initialized.
592 Used during startup to detect startup of dumped Emacs. */
593extern bool initialized;
84575e67
PE
594
595/* Defined in eval.c. */
596extern Lisp_Object Qautoload;
597
598/* Defined in floatfns.c. */
599extern double extract_float (Lisp_Object);
600
601/* Defined in process.c. */
602extern Lisp_Object Qprocessp;
603
604/* Defined in window.c. */
605extern Lisp_Object Qwindowp;
606
607/* Defined in xdisp.c. */
608extern Lisp_Object Qimage;
7b1123d8 609\f
49609976
BT
610/* Extract A's type. */
611INLINE enum Lisp_Type
612XTYPE (Lisp_Object o)
613{
614 if (INTEGERP (o))
615 return Lisp_Int;
616 else if (SYMBOLP (o))
617 return Lisp_Symbol;
618 else if (MISCP (o))
619 return Lisp_Misc;
620 else if (STRINGP (o))
621 return Lisp_String;
622 else if (VECTORLIKEP (o))
623 return Lisp_Vectorlike;
624 else if (CONSP (o))
625 return Lisp_Cons;
626 else if (FLOATP (o))
627 return Lisp_Float;
628 else
01099ad1 629 return Lisp_Other;
49609976 630}
84575e67 631
99a3d506 632/* Extract a value or address from a Lisp_Object. */
3cfe6dfd 633
00382e8b 634INLINE struct Lisp_Vector *
84575e67
PE
635XVECTOR (Lisp_Object a)
636{
637 eassert (VECTORLIKEP (a));
49609976 638 return SMOB_PTR (a);
84575e67 639}
c9f6631c 640
00382e8b 641INLINE struct Lisp_String *
84575e67
PE
642XSTRING (Lisp_Object a)
643{
644 eassert (STRINGP (a));
49609976 645 return SMOB_PTR (a);
84575e67 646}
ce5b453a 647
d23d13c0
BT
648extern void initialize_symbol (Lisp_Object, Lisp_Object);
649INLINE Lisp_Object build_string (const char *);
650extern Lisp_Object symbol_module;
1d59fbe3 651extern Lisp_Object function_module;
29418031 652extern Lisp_Object plist_module;
73880000 653extern Lisp_Object Qt, Qnil, Qt_, Qnil_;
d23d13c0 654
844e0de1
BT
655typedef Lisp_Object sym_t;
656
d1c3da7b 657INLINE sym_t XSYMBOL (Lisp_Object a);
ce5b453a 658
7c06ac2b 659/* Pseudovector types. */
84575e67 660
00382e8b 661INLINE struct Lisp_Process *
84575e67
PE
662XPROCESS (Lisp_Object a)
663{
664 eassert (PROCESSP (a));
49609976 665 return SMOB_PTR (a);
84575e67
PE
666}
667
00382e8b 668INLINE struct window *
84575e67
PE
669XWINDOW (Lisp_Object a)
670{
671 eassert (WINDOWP (a));
49609976 672 return SMOB_PTR (a);
84575e67
PE
673}
674
00382e8b 675INLINE struct terminal *
84575e67
PE
676XTERMINAL (Lisp_Object a)
677{
49609976 678 return SMOB_PTR (a);
84575e67
PE
679}
680
00382e8b 681INLINE struct buffer *
84575e67
PE
682XBUFFER (Lisp_Object a)
683{
684 eassert (BUFFERP (a));
49609976 685 return SMOB_PTR (a);
84575e67
PE
686}
687
00382e8b 688INLINE struct Lisp_Char_Table *
84575e67
PE
689XCHAR_TABLE (Lisp_Object a)
690{
691 eassert (CHAR_TABLE_P (a));
49609976 692 return SMOB_PTR (a);
84575e67
PE
693}
694
00382e8b 695INLINE struct Lisp_Sub_Char_Table *
84575e67
PE
696XSUB_CHAR_TABLE (Lisp_Object a)
697{
698 eassert (SUB_CHAR_TABLE_P (a));
49609976 699 return SMOB_PTR (a);
84575e67
PE
700}
701
00382e8b 702INLINE struct Lisp_Bool_Vector *
84575e67
PE
703XBOOL_VECTOR (Lisp_Object a)
704{
705 eassert (BOOL_VECTOR_P (a));
49609976 706 return SMOB_PTR (a);
84575e67
PE
707}
708
00382e8b 709INLINE Lisp_Object
84575e67
PE
710make_lisp_proc (struct Lisp_Process *p)
711{
49609976 712 return scm_new_smob (lisp_vectorlike_tag, (scm_t_bits) p);
84575e67
PE
713}
714
ff55dfe8 715#define XSETINT(a, b) ((a) = make_number (b))
84575e67 716#define XSETFASTINT(a, b) ((a) = make_natnum (b))
49609976
BT
717#define XSETVECTOR(a, b) ((a) = (b)->header.self)
718#define XSETSTRING(a, b) ((a) = (b)->self)
844e0de1 719#define XSETSYMBOL(a, b) ((a) = scm_c_vector_ref (b, 0))
49609976 720#define XSETMISC(a, b) (a) = ((union Lisp_Misc *) (b))->u_any.self
7c06ac2b
RS
721
722/* Pseudovector types. */
c9f6631c 723
914adc42
DA
724#define XSETPVECTYPE(v, code) \
725 ((v)->header.size |= PSEUDOVECTOR_FLAG | ((code) << PSEUDOVECTOR_AREA_BITS))
726#define XSETPVECTYPESIZE(v, code, lispsize, restsize) \
ee28be33 727 ((v)->header.size = (PSEUDOVECTOR_FLAG \
914adc42
DA
728 | ((code) << PSEUDOVECTOR_AREA_BITS) \
729 | ((restsize) << PSEUDOVECTOR_SIZE_BITS) \
730 | (lispsize)))
aa0b0087
PE
731
732/* The cast to struct vectorlike_header * avoids aliasing issues. */
7c06ac2b 733#define XSETPSEUDOVECTOR(a, b, code) \
7555c33f
SM
734 XSETTYPED_PSEUDOVECTOR (a, b, \
735 (((struct vectorlike_header *) \
49609976 736 SCM_SMOB_DATA (a)) \
7555c33f
SM
737 ->size), \
738 code)
eab3844f 739#define XSETTYPED_PSEUDOVECTOR(a, b, size, code) \
beb9f745 740 (XSETVECTOR (a, b), \
eab3844f 741 eassert ((size & (PSEUDOVECTOR_FLAG | PVEC_TYPE_MASK)) \
914adc42 742 == (PSEUDOVECTOR_FLAG | (code << PSEUDOVECTOR_AREA_BITS))))
aa0b0087 743
7c06ac2b
RS
744#define XSETWINDOW_CONFIGURATION(a, b) \
745 (XSETPSEUDOVECTOR (a, b, PVEC_WINDOW_CONFIGURATION))
746#define XSETPROCESS(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_PROCESS))
747#define XSETWINDOW(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_WINDOW))
49e49fb5 748#define XSETTERMINAL(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_TERMINAL))
914adc42 749#define XSETSUBR(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_SUBR))
7c06ac2b 750#define XSETCOMPILED(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_COMPILED))
99a3d506 751#define XSETBUFFER(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_BUFFER))
608ff985
RS
752#define XSETCHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_CHAR_TABLE))
753#define XSETBOOL_VECTOR(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_BOOL_VECTOR))
1842abb2 754#define XSETSUB_CHAR_TABLE(a, b) (XSETPSEUDOVECTOR (a, b, PVEC_SUB_CHAR_TABLE))
c9f6631c 755
c8a39089
KS
756/* Type checking. */
757
40f5d4b7
PE
758LISP_MACRO_DEFUN_VOID (CHECK_TYPE,
759 (int ok, Lisp_Object predicate, Lisp_Object x),
760 (ok, predicate, x))
c8a39089 761
c644523b 762/* Deprecated and will be removed soon. */
e34f7f79
DA
763
764#define INTERNAL_FIELD(field) field ## _
c8a39089 765
5f6bf5fe 766/* See the macros in intervals.h. */
e221eae3
JA
767
768typedef struct interval *INTERVAL;
769
84575e67
PE
770LISP_MACRO_DEFUN (XCAR, Lisp_Object, (Lisp_Object c), (c))
771LISP_MACRO_DEFUN (XCDR, Lisp_Object, (Lisp_Object c), (c))
f3fbd155
KR
772
773/* Use these to set the fields of a cons cell.
774
775 Note that both arguments may refer to the same object, so 'n'
84575e67 776 should not be read after 'c' is first modified. */
00382e8b 777INLINE void
84575e67
PE
778XSETCAR (Lisp_Object c, Lisp_Object n)
779{
e642c718 780 scm_set_car_x (c, n);
84575e67 781}
00382e8b 782INLINE void
84575e67
PE
783XSETCDR (Lisp_Object c, Lisp_Object n)
784{
e642c718 785 scm_set_cdr_x (c, n);
84575e67 786}
f3fbd155 787
b7acde90 788/* Take the car or cdr of something whose type is not known. */
00382e8b 789INLINE Lisp_Object
84575e67
PE
790CAR (Lisp_Object c)
791{
792 return (CONSP (c) ? XCAR (c)
793 : NILP (c) ? Qnil
794 : wrong_type_argument (Qlistp, c));
795}
00382e8b 796INLINE Lisp_Object
84575e67
PE
797CDR (Lisp_Object c)
798{
799 return (CONSP (c) ? XCDR (c)
800 : NILP (c) ? Qnil
801 : wrong_type_argument (Qlistp, c));
802}
b7acde90 803
c8a39089 804/* Take the car or cdr of something whose type is not known. */
00382e8b 805INLINE Lisp_Object
84575e67
PE
806CAR_SAFE (Lisp_Object c)
807{
808 return CONSP (c) ? XCAR (c) : Qnil;
809}
00382e8b 810INLINE Lisp_Object
84575e67
PE
811CDR_SAFE (Lisp_Object c)
812{
813 return CONSP (c) ? XCDR (c) : Qnil;
814}
35f464a7 815
84575e67 816/* In a string or vector, the sign bit of the `size' is the gc mark bit. */
35f464a7 817
84575e67
PE
818struct Lisp_String
819 {
49609976 820 Lisp_Object self;
84575e67
PE
821 ptrdiff_t size;
822 ptrdiff_t size_byte;
823 INTERVAL intervals; /* Text properties in this string. */
824 unsigned char *data;
825 };
d8fc7ce4 826
84575e67 827/* True if STR is a multibyte string. */
00382e8b 828INLINE bool
84575e67
PE
829STRING_MULTIBYTE (Lisp_Object str)
830{
831 return 0 <= XSTRING (str)->size_byte;
832}
35f464a7 833
c9d624c6
PE
834/* An upper bound on the number of bytes in a Lisp string, not
835 counting the terminating null. This a tight enough bound to
836 prevent integer overflow errors that would otherwise occur during
837 string size calculations. A string cannot contain more bytes than
838 a fixnum can represent, nor can it be so long that C pointer
839 arithmetic stops working on the string plus its terminating null.
840 Although the actual size limit (see STRING_BYTES_MAX in alloc.c)
841 may be a bit smaller than STRING_BYTES_BOUND, calculating it here
842 would expose alloc.c internal details that we'd rather keep
03a660a6
PE
843 private.
844
7b1123d8
PE
845 This is a macro for use in static initializers. The cast to
846 ptrdiff_t ensures that the macro is signed. */
c9d624c6 847#define STRING_BYTES_BOUND \
88fb40b4 848 ((ptrdiff_t) min (MOST_POSITIVE_FIXNUM, min (SIZE_MAX, PTRDIFF_MAX) - 1))
d1f3d2af 849
491c2516 850/* Mark STR as a unibyte string. */
96c06863
PE
851#define STRING_SET_UNIBYTE(STR) \
852 do { \
853 if (EQ (STR, empty_multibyte_string)) \
854 (STR) = empty_unibyte_string; \
855 else \
856 XSTRING (STR)->size_byte = -1; \
857 } while (false)
491c2516 858
94ef4d69
KH
859/* Mark STR as a multibyte string. Assure that STR contains only
860 ASCII characters in advance. */
96c06863
PE
861#define STRING_SET_MULTIBYTE(STR) \
862 do { \
863 if (EQ (STR, empty_unibyte_string)) \
864 (STR) = empty_multibyte_string; \
865 else \
866 XSTRING (STR)->size_byte = XSTRING (STR)->size; \
867 } while (false)
94ef4d69 868
84575e67 869/* Convenience functions for dealing with Lisp strings. */
3cfe6dfd 870
00382e8b 871INLINE unsigned char *
84575e67
PE
872SDATA (Lisp_Object string)
873{
874 return XSTRING (string)->data;
875}
00382e8b 876INLINE char *
84575e67
PE
877SSDATA (Lisp_Object string)
878{
879 /* Avoid "differ in sign" warnings. */
880 return (char *) SDATA (string);
881}
00382e8b 882INLINE unsigned char
84575e67
PE
883SREF (Lisp_Object string, ptrdiff_t index)
884{
885 return SDATA (string)[index];
886}
00382e8b 887INLINE void
84575e67
PE
888SSET (Lisp_Object string, ptrdiff_t index, unsigned char new)
889{
890 SDATA (string)[index] = new;
891}
00382e8b 892INLINE ptrdiff_t
84575e67
PE
893SCHARS (Lisp_Object string)
894{
895 return XSTRING (string)->size;
896}
fbe9e0b9 897
00382e8b 898INLINE ptrdiff_t
84575e67
PE
899STRING_BYTES (struct Lisp_String *s)
900{
84575e67 901 return s->size_byte < 0 ? s->size : s->size_byte;
84575e67 902}
fbe9e0b9 903
00382e8b 904INLINE ptrdiff_t
84575e67
PE
905SBYTES (Lisp_Object string)
906{
907 return STRING_BYTES (XSTRING (string));
908}
00382e8b 909INLINE void
84575e67
PE
910STRING_SET_CHARS (Lisp_Object string, ptrdiff_t newsize)
911{
912 XSTRING (string)->size = newsize;
913}
3cfe6dfd 914
aa0b0087 915/* Header of vector-like objects. This documents the layout constraints on
914adc42 916 vectors and pseudovectors (objects of PVEC_xxx subtype). It also prevents
84575e67
PE
917 compilers from being fooled by Emacs's type punning: XSETPSEUDOVECTOR
918 and PSEUDOVECTORP cast their pointers to struct vectorlike_header *,
aa0b0087
PE
919 because when two such pointers potentially alias, a compiler won't
920 incorrectly reorder loads and stores to their size fields. See
df5b4930 921 Bug#8546. */
b102ceb1 922struct vectorlike_header
3cfe6dfd 923 {
49609976
BT
924 Lisp_Object self;
925
926 /* This field contains various pieces of information:
2bdeb39a 927 - The second bit (PSEUDOVECTOR_FLAG) indicates whether this is a plain
ee28be33
SM
928 vector (0) or a pseudovector (1).
929 - If PSEUDOVECTOR_FLAG is 0, the rest holds the size (number
930 of slots) of the vector.
914adc42
DA
931 - If PSEUDOVECTOR_FLAG is 1, the rest is subdivided into three fields:
932 - a) pseudovector subtype held in PVEC_TYPE_MASK field;
933 - b) number of Lisp_Objects slots at the beginning of the object
934 held in PSEUDOVECTOR_SIZE_MASK field. These objects are always
935 traced by the GC;
936 - c) size of the rest fields held in PSEUDOVECTOR_REST_MASK and
937 measured in word_size units. Rest fields may also include
938 Lisp_Objects, but these objects usually needs some special treatment
939 during GC.
940 There are some exceptions. For PVEC_FREE, b) is always zero. For
941 PVEC_BOOL_VECTOR and PVEC_SUBR, both b) and c) are always zero.
942 Current layout limits the pseudovectors to 63 PVEC_xxx subtypes,
943 4095 Lisp_Objects in GC-ed area and 4095 word-sized other slots. */
d311d28c 944 ptrdiff_t size;
eab3844f
PE
945 };
946
91f2d272 947/* A regular vector is just a header plus an array of Lisp_Objects. */
663e2b3f 948
eab3844f
PE
949struct Lisp_Vector
950 {
b102ceb1 951 struct vectorlike_header header;
91f2d272
PE
952 Lisp_Object contents[FLEXIBLE_ARRAY_MEMBER];
953 };
0a858ebf 954
91f2d272
PE
955/* C11 prohibits alignof (struct Lisp_Vector), so compute it manually. */
956enum
957 {
958 ALIGNOF_STRUCT_LISP_VECTOR
959 = alignof (union { struct vectorlike_header a; Lisp_Object b; })
3cfe6dfd
JB
960 };
961
91f2d272 962/* A boolvector is a kind of vectorlike, with contents like a string. */
663e2b3f
DA
963
964struct Lisp_Bool_Vector
965 {
966 /* HEADER.SIZE is the vector's size field. It doesn't have the real size,
967 just the subtype information. */
968 struct vectorlike_header header;
969 /* This is the size in bits. */
970 EMACS_INT size;
2cf00efc 971 /* The actual bits, packed into bytes.
75360f19 972 Zeros fill out the last word if needed.
2cf00efc
PE
973 The bits are in little-endian order in the bytes, and
974 the bytes are in little-endian order in the words. */
df5b4930 975 bits_word data[FLEXIBLE_ARRAY_MEMBER];
663e2b3f
DA
976 };
977
1c0a7493
PE
978INLINE EMACS_INT
979bool_vector_size (Lisp_Object a)
980{
981 EMACS_INT size = XBOOL_VECTOR (a)->size;
982 eassume (0 <= size);
983 return size;
984}
985
df5b4930
PE
986INLINE bits_word *
987bool_vector_data (Lisp_Object a)
988{
989 return XBOOL_VECTOR (a)->data;
990}
991
992INLINE unsigned char *
993bool_vector_uchar_data (Lisp_Object a)
994{
995 return (unsigned char *) bool_vector_data (a);
996}
997
2cf00efc 998/* The number of data words and bytes in a bool vector with SIZE bits. */
df5b4930
PE
999
1000INLINE EMACS_INT
1001bool_vector_words (EMACS_INT size)
1002{
1003 eassume (0 <= size && size <= EMACS_INT_MAX - (BITS_PER_BITS_WORD - 1));
1004 return (size + BITS_PER_BITS_WORD - 1) / BITS_PER_BITS_WORD;
1005}
1006
2cf00efc
PE
1007INLINE EMACS_INT
1008bool_vector_bytes (EMACS_INT size)
1009{
1010 eassume (0 <= size && size <= EMACS_INT_MAX - (BITS_PER_BITS_WORD - 1));
1011 return (size + BOOL_VECTOR_BITS_PER_CHAR - 1) / BOOL_VECTOR_BITS_PER_CHAR;
1012}
1013
df5b4930
PE
1014/* True if A's Ith bit is set. */
1015
1016INLINE bool
1017bool_vector_bitref (Lisp_Object a, EMACS_INT i)
1018{
1019 eassume (0 <= i && i < bool_vector_size (a));
1020 return !! (bool_vector_uchar_data (a)[i / BOOL_VECTOR_BITS_PER_CHAR]
1021 & (1 << (i % BOOL_VECTOR_BITS_PER_CHAR)));
1022}
1023
1024INLINE Lisp_Object
1025bool_vector_ref (Lisp_Object a, EMACS_INT i)
1026{
1027 return bool_vector_bitref (a, i) ? Qt : Qnil;
1028}
1029
1030/* Set A's Ith bit to B. */
1031
1032INLINE void
1033bool_vector_set (Lisp_Object a, EMACS_INT i, bool b)
1034{
1035 unsigned char *addr;
1036
1037 eassume (0 <= i && i < bool_vector_size (a));
1038 addr = &bool_vector_uchar_data (a)[i / BOOL_VECTOR_BITS_PER_CHAR];
1039
1040 if (b)
1041 *addr |= 1 << (i % BOOL_VECTOR_BITS_PER_CHAR);
1042 else
1043 *addr &= ~ (1 << (i % BOOL_VECTOR_BITS_PER_CHAR));
1044}
1045
663e2b3f
DA
1046/* Some handy constants for calculating sizes
1047 and offsets, mostly of vectorlike objects. */
1048
1049enum
1050 {
91f2d272 1051 header_size = offsetof (struct Lisp_Vector, contents),
663e2b3f
DA
1052 bool_header_size = offsetof (struct Lisp_Bool_Vector, data),
1053 word_size = sizeof (Lisp_Object)
1054 };
1055
84575e67
PE
1056/* Conveniences for dealing with Lisp arrays. */
1057
00382e8b 1058INLINE Lisp_Object
84575e67
PE
1059AREF (Lisp_Object array, ptrdiff_t idx)
1060{
91f2d272 1061 return XVECTOR (array)->contents[idx];
84575e67
PE
1062}
1063
00382e8b 1064INLINE Lisp_Object *
84575e67
PE
1065aref_addr (Lisp_Object array, ptrdiff_t idx)
1066{
91f2d272 1067 return & XVECTOR (array)->contents[idx];
84575e67
PE
1068}
1069
00382e8b 1070INLINE ptrdiff_t
84575e67
PE
1071ASIZE (Lisp_Object array)
1072{
1073 return XVECTOR (array)->header.size;
1074}
1075
00382e8b 1076INLINE void
84575e67
PE
1077ASET (Lisp_Object array, ptrdiff_t idx, Lisp_Object val)
1078{
1079 eassert (0 <= idx && idx < ASIZE (array));
91f2d272 1080 XVECTOR (array)->contents[idx] = val;
84575e67
PE
1081}
1082
00382e8b 1083INLINE void
84575e67
PE
1084gc_aset (Lisp_Object array, ptrdiff_t idx, Lisp_Object val)
1085{
1086 /* Like ASET, but also can be used in the garbage collector:
1087 sweep_weak_table calls set_hash_key etc. while the table is marked. */
f2b0b0d1 1088 eassert (0 <= idx && idx < (ASIZE (array)));
91f2d272 1089 XVECTOR (array)->contents[idx] = val;
84575e67
PE
1090}
1091
94225242 1092/* If a struct is made to look like a vector, this macro returns the length
4115d3f7 1093 of the shortest vector that would hold that struct. */
663e2b3f
DA
1094
1095#define VECSIZE(type) \
1096 ((sizeof (type) - header_size + word_size - 1) / word_size)
94225242 1097
d0ebe33a
SM
1098/* Like VECSIZE, but used when the pseudo-vector has non-Lisp_Object fields
1099 at the end and we need to compute the number of Lisp_Object fields (the
1100 ones that the GC needs to trace). */
663e2b3f
DA
1101
1102#define PSEUDOVECSIZE(type, nonlispfield) \
1103 ((offsetof (type, nonlispfield) - header_size) / word_size)
d0ebe33a 1104
ea204efb
PE
1105/* Compute A OP B, using the unsigned comparison operator OP. A and B
1106 should be integer expressions. This is not the same as
53964682 1107 mathematical comparison; for example, UNSIGNED_CMP (0, <, -1)
96c06863 1108 returns true. For efficiency, prefer plain unsigned comparison if A
ea204efb
PE
1109 and B's sizes both fit (after integer promotion). */
1110#define UNSIGNED_CMP(a, op, b) \
1111 (max (sizeof ((a) + 0), sizeof ((b) + 0)) <= sizeof (unsigned) \
1112 ? ((a) + (unsigned) 0) op ((b) + (unsigned) 0) \
1113 : ((a) + (uintmax_t) 0) op ((b) + (uintmax_t) 0))
1114
96c06863 1115/* True iff C is an ASCII character. */
ea204efb 1116#define ASCII_CHAR_P(c) UNSIGNED_CMP (c, <, 0x80)
15206ed9 1117
84575e67
PE
1118/* A char-table is a kind of vectorlike, with contents are like a
1119 vector but with a few other slots. For some purposes, it makes
1120 sense to handle a char-table with type struct Lisp_Vector. An
1121 element of a char table can be any Lisp objects, but if it is a sub
1122 char-table, we treat it a table that contains information of a
1123 specific range of characters. A sub char-table has the same
1124 structure as a vector. A sub char table appears only in an element
1125 of a char-table, and there's no way to access it directly from
1126 Emacs Lisp program. */
1842abb2 1127
03a660a6
PE
1128enum CHARTAB_SIZE_BITS
1129 {
1130 CHARTAB_SIZE_BITS_0 = 6,
1131 CHARTAB_SIZE_BITS_1 = 4,
1132 CHARTAB_SIZE_BITS_2 = 5,
1133 CHARTAB_SIZE_BITS_3 = 7
1134 };
1842abb2
KH
1135
1136extern const int chartab_size[4];
1137
608ff985
RS
1138struct Lisp_Char_Table
1139 {
eab3844f 1140 /* HEADER.SIZE is the vector's size field, which also holds the
608ff985 1141 pseudovector type information. It holds the size, too.
c73bd236
MB
1142 The size counts the defalt, parent, purpose, ascii,
1143 contents, and extras slots. */
b102ceb1 1144 struct vectorlike_header header;
1842abb2 1145
608ff985
RS
1146 /* This holds a default value,
1147 which is used whenever the value for a specific character is nil. */
1148 Lisp_Object defalt;
ea724a01 1149
8f924df7
KH
1150 /* This points to another char table, which we inherit from when the
1151 value for a specific character is nil. The `defalt' slot takes
1152 precedence over this. */
608ff985 1153 Lisp_Object parent;
1842abb2 1154
8f924df7
KH
1155 /* This is a symbol which says what kind of use this char-table is
1156 meant for. */
7f73dc9d 1157 Lisp_Object purpose;
1842abb2 1158
8f924df7
KH
1159 /* The bottom sub char-table for characters of the range 0..127. It
1160 is nil if none of ASCII character has a specific value. */
1161 Lisp_Object ascii;
1842abb2 1162
8f924df7 1163 Lisp_Object contents[(1 << CHARTAB_SIZE_BITS_0)];
1842abb2 1164
8f924df7 1165 /* These hold additional data. It is a vector. */
fbe9e0b9 1166 Lisp_Object extras[FLEXIBLE_ARRAY_MEMBER];
608ff985
RS
1167 };
1168
1842abb2 1169struct Lisp_Sub_Char_Table
8f924df7 1170 {
eab3844f 1171 /* HEADER.SIZE is the vector's size field, which also holds the
8f924df7 1172 pseudovector type information. It holds the size, too. */
b102ceb1 1173 struct vectorlike_header header;
1842abb2 1174
8f924df7 1175 /* Depth of this sub char-table. It should be 1, 2, or 3. A sub
78edd3b7 1176 char-table of depth 1 contains 16 elements, and each element
8f924df7
KH
1177 covers 4096 (128*32) characters. A sub char-table of depth 2
1178 contains 32 elements, and each element covers 128 characters. A
1179 sub char-table of depth 3 contains 128 elements, and each element
1180 is for one character. */
1181 Lisp_Object depth;
1842abb2 1182
8f924df7
KH
1183 /* Minimum character covered by the sub char-table. */
1184 Lisp_Object min_char;
1842abb2 1185
34dabdb7 1186 /* Use set_sub_char_table_contents to set this. */
fbe9e0b9 1187 Lisp_Object contents[FLEXIBLE_ARRAY_MEMBER];
8f924df7 1188 };
608ff985 1189
00382e8b 1190INLINE Lisp_Object
84575e67
PE
1191CHAR_TABLE_REF_ASCII (Lisp_Object ct, ptrdiff_t idx)
1192{
1193 struct Lisp_Char_Table *tbl = NULL;
1194 Lisp_Object val;
1195 do
1196 {
1197 tbl = tbl ? XCHAR_TABLE (tbl->parent) : XCHAR_TABLE (ct);
1198 val = (! SUB_CHAR_TABLE_P (tbl->ascii) ? tbl->ascii
1199 : XSUB_CHAR_TABLE (tbl->ascii)->contents[idx]);
1200 if (NILP (val))
1201 val = tbl->defalt;
1202 }
1203 while (NILP (val) && ! NILP (tbl->parent));
1204
1205 return val;
1206}
1207
1208/* Almost equivalent to Faref (CT, IDX) with optimization for ASCII
1209 characters. Do not check validity of CT. */
00382e8b 1210INLINE Lisp_Object
84575e67
PE
1211CHAR_TABLE_REF (Lisp_Object ct, int idx)
1212{
1213 return (ASCII_CHAR_P (idx)
1214 ? CHAR_TABLE_REF_ASCII (ct, idx)
1215 : char_table_ref (ct, idx));
1216}
1217
1218/* Equivalent to Faset (CT, IDX, VAL) with optimization for ASCII and
1219 8-bit European characters. Do not check validity of CT. */
00382e8b 1220INLINE void
84575e67
PE
1221CHAR_TABLE_SET (Lisp_Object ct, int idx, Lisp_Object val)
1222{
1223 if (ASCII_CHAR_P (idx) && SUB_CHAR_TABLE_P (XCHAR_TABLE (ct)->ascii))
1224 set_sub_char_table_contents (XCHAR_TABLE (ct)->ascii, idx, val);
1225 else
1226 char_table_set (ct, idx, val);
1227}
1228
03a660a6
PE
1229/* This is the number of slots that every char table must have. This
1230 counts the ordinary slots and the top, defalt, parent, and purpose
1231 slots. */
1232enum CHAR_TABLE_STANDARD_SLOTS
1233 {
fbe9e0b9 1234 CHAR_TABLE_STANDARD_SLOTS = PSEUDOVECSIZE (struct Lisp_Char_Table, extras)
03a660a6
PE
1235 };
1236
1237/* Return the number of "extra" slots in the char table CT. */
1238
00382e8b 1239INLINE int
84575e67
PE
1240CHAR_TABLE_EXTRA_SLOTS (struct Lisp_Char_Table *ct)
1241{
1242 return ((ct->header.size & PSEUDOVECTOR_SIZE_MASK)
1243 - CHAR_TABLE_STANDARD_SLOTS);
1244}
03a660a6 1245
5010d3b8 1246\f
a32fa736
GM
1247/***********************************************************************
1248 Symbols
1249 ***********************************************************************/
1250
ce5b453a
SM
1251enum symbol_redirect
1252{
1253 SYMBOL_PLAINVAL = 4,
1254 SYMBOL_VARALIAS = 1,
1255 SYMBOL_LOCALIZED = 2,
9aba6043 1256 SYMBOL_FORWARDED = 3
ce5b453a
SM
1257};
1258
a32fa736
GM
1259struct Lisp_Symbol
1260{
844e0de1 1261 Lisp_Object self_;
49609976 1262
ce5b453a
SM
1263 /* Indicates where the value can be found:
1264 0 : it's a plain var, the value is in the `value' field.
1265 1 : it's a varalias, the value is really in the `alias' symbol.
1266 2 : it's a localized var, the value is in the `blv' object.
9aba6043 1267 3 : it's a forwarding variable, the value is in `forward'. */
844e0de1 1268 ENUM_BF (symbol_redirect) redirect_ : 3;
a32fa736
GM
1269
1270 /* Non-zero means symbol is constant, i.e. changing its value
ce5b453a
SM
1271 should signal an error. If the value is 3, then the var
1272 can be changed, but only by `defconst'. */
844e0de1 1273 unsigned constant_ : 2;
a32fa736 1274
96c06863 1275 /* True means that this variable has been explicitly declared
b9598260 1276 special (with `defvar' etc), and shouldn't be lexically bound. */
844e0de1 1277 bool_bf declared_special_ : 1;
e3b83880 1278
9aba6043
SM
1279 /* Value of the symbol or Qunbound if unbound. Which alternative of the
1280 union is used depends on the `redirect' field above. */
ce5b453a 1281 union {
844e0de1
BT
1282 Lisp_Object value_;
1283 sym_t alias_;
1284 struct Lisp_Buffer_Local_Value *blv_;
1285 union Lisp_Fwd *fwd_;
1286 };
a32fa736
GM
1287};
1288
844e0de1
BT
1289#define SYMBOL_SELF(sym) (scm_c_vector_ref (sym, 0))
1290#define SET_SYMBOL_SELF(sym, v) (scm_c_vector_set_x (sym, 0, v))
1291#define SYMBOL_REDIRECT(sym) (XINT (scm_c_vector_ref (sym, 1)))
1292#define SET_SYMBOL_REDIRECT(sym, v) (scm_c_vector_set_x (sym, 1, make_number (v)))
1293#define SYMBOL_CONSTANT(sym) (XINT (scm_c_vector_ref (sym, 2)))
1294#define SET_SYMBOL_CONSTANT(sym, v) (scm_c_vector_set_x (sym, 2, make_number (v)))
1295#define SYMBOL_DECLARED_SPECIAL(sym) (XINT (scm_c_vector_ref (sym, 3)))
1296#define SET_SYMBOL_DECLARED_SPECIAL(sym, v) (scm_c_vector_set_x (sym, 3, make_number (v)))
74d70085 1297
844e0de1 1298/* Value is name of symbol. */
ce5b453a 1299
844e0de1
BT
1300INLINE sym_t
1301SYMBOL_ALIAS (sym_t sym)
84575e67 1302{
844e0de1
BT
1303 eassert (SYMBOL_REDIRECT (sym) == SYMBOL_VARALIAS);
1304 return scm_c_vector_ref (sym, 4);
84575e67 1305}
00382e8b 1306INLINE struct Lisp_Buffer_Local_Value *
844e0de1 1307SYMBOL_BLV (sym_t sym)
84575e67 1308{
844e0de1
BT
1309 eassert (SYMBOL_REDIRECT (sym) == SYMBOL_LOCALIZED);
1310 return scm_to_pointer (scm_c_vector_ref (sym, 4));
84575e67 1311}
00382e8b 1312INLINE union Lisp_Fwd *
844e0de1 1313SYMBOL_FWD (sym_t sym)
84575e67 1314{
844e0de1
BT
1315 eassert (SYMBOL_REDIRECT (sym) == SYMBOL_FORWARDED);
1316 return scm_to_pointer (scm_c_vector_ref (sym, 4));
84575e67 1317}
74d70085 1318
84575e67 1319LISP_MACRO_DEFUN_VOID (SET_SYMBOL_VAL,
844e0de1 1320 (sym_t sym, Lisp_Object v), (sym, v))
a32fa736 1321
00382e8b 1322INLINE void
844e0de1 1323SET_SYMBOL_ALIAS (sym_t sym, sym_t v)
84575e67 1324{
844e0de1
BT
1325 eassert (SYMBOL_REDIRECT (sym) == SYMBOL_VARALIAS);
1326 scm_c_vector_set_x (sym, 4, v);
84575e67 1327}
00382e8b 1328INLINE void
844e0de1 1329SET_SYMBOL_BLV (sym_t sym, struct Lisp_Buffer_Local_Value *v)
84575e67 1330{
844e0de1
BT
1331 eassert (SYMBOL_REDIRECT (sym) == SYMBOL_LOCALIZED);
1332 scm_c_vector_set_x (sym, 4, scm_from_pointer (v, NULL));
84575e67 1333}
00382e8b 1334INLINE void
844e0de1 1335SET_SYMBOL_FWD (sym_t sym, union Lisp_Fwd *v)
84575e67 1336{
844e0de1
BT
1337 eassert (SYMBOL_REDIRECT (sym) == SYMBOL_FORWARDED);
1338 scm_c_vector_set_x (sym, 4, scm_from_pointer (v, NULL));
84575e67
PE
1339}
1340
00382e8b 1341INLINE Lisp_Object
84575e67
PE
1342SYMBOL_NAME (Lisp_Object sym)
1343{
d1c3da7b 1344 return build_string (scm_to_locale_string (scm_call_1 (scm_c_public_ref ("language elisp runtime", "symbol-name"), sym)));
84575e67
PE
1345}
1346
1347/* Value is true if SYM is an interned symbol. */
1348
00382e8b 1349INLINE bool
84575e67
PE
1350SYMBOL_INTERNED_P (Lisp_Object sym)
1351{
d1c3da7b
BT
1352 if (EQ (sym, Qnil)) return true;
1353 if (EQ (sym, Qt)) return true;
42c30833 1354 return scm_is_true (scm_symbol_interned_p (sym));
84575e67 1355}
a32fa736 1356
1d59fbe3
BT
1357INLINE Lisp_Object
1358SYMBOL_FUNCTION (Lisp_Object sym)
1359{
d1c3da7b 1360 return scm_call_1 (scm_c_public_ref ("elisp-functions", "symbol-function"), sym);
1d59fbe3
BT
1361}
1362
a32fa736
GM
1363/* Value is non-zero if symbol is considered a constant, i.e. its
1364 value cannot be changed (there is an exception for keyword symbols,
1365 whose value can be set to the keyword symbol itself). */
1366
84575e67 1367LISP_MACRO_DEFUN (SYMBOL_CONSTANT_P, int, (Lisp_Object sym), (sym))
a32fa736 1368
c644523b 1369#define DEFSYM(sym, name) \
96c06863 1370 do { (sym) = intern_c_string ((name)); staticpro (&(sym)); } while (false)
cd3520a4 1371
844e0de1
BT
1372LISP_MACRO_DEFUN (SYMBOL_VAL, Lisp_Object, (sym_t sym), (sym))
1373
a32fa736 1374\f
5010d3b8
GM
1375/***********************************************************************
1376 Hash Tables
1377 ***********************************************************************/
1378
1379/* The structure of a Lisp hash table. */
1380
b7432bb2
SM
1381struct hash_table_test
1382{
1383 /* Name of the function used to compare keys. */
1384 Lisp_Object name;
1385
1386 /* User-supplied hash function, or nil. */
1387 Lisp_Object user_hash_function;
1388
1389 /* User-supplied key comparison function, or nil. */
1390 Lisp_Object user_cmp_function;
1391
1392 /* C function to compare two keys. */
1393 bool (*cmpfn) (struct hash_table_test *t, Lisp_Object, Lisp_Object);
1394
1395 /* C function to compute hash code. */
1396 EMACS_UINT (*hashfn) (struct hash_table_test *t, Lisp_Object);
1397};
1398
5010d3b8
GM
1399struct Lisp_Hash_Table
1400{
eab3844f 1401 /* This is for Lisp; the hash table code does not refer to it. */
b102ceb1 1402 struct vectorlike_header header;
e2c0561e 1403
5010d3b8
GM
1404 /* Nil if table is non-weak. Otherwise a symbol describing the
1405 weakness of the table. */
1406 Lisp_Object weak;
e2c0561e 1407
5010d3b8
GM
1408 /* When the table is resized, and this is an integer, compute the
1409 new size by adding this to the old size. If a float, compute the
1410 new size by multiplying the old size with this factor. */
1411 Lisp_Object rehash_size;
1412
1413 /* Resize hash table when number of entries/ table size is >= this
1414 ratio, a float. */
1415 Lisp_Object rehash_threshold;
1416
5833dd93
EZ
1417 /* Vector of hash codes. If hash[I] is nil, this means that the
1418 I-th entry is unused. */
5010d3b8
GM
1419 Lisp_Object hash;
1420
1421 /* Vector used to chain entries. If entry I is free, next[I] is the
1422 entry number of the next free item. If entry I is non-free,
1423 next[I] is the index of the next entry in the collision chain. */
1424 Lisp_Object next;
1425
1426 /* Index of first free entry in free list. */
1427 Lisp_Object next_free;
1428
1429 /* Bucket vector. A non-nil entry is the index of the first item in
1430 a collision chain. This vector's size can be larger than the
1431 hash table size to reduce collisions. */
1432 Lisp_Object index;
1433
878f97ff 1434 /* Only the fields above are traced normally by the GC. The ones below
78edd3b7 1435 `count' are special and are either ignored by the GC or traced in
878f97ff
SM
1436 a special way (e.g. because of weakness). */
1437
1438 /* Number of key/value entries in the table. */
d311d28c 1439 ptrdiff_t count;
878f97ff
SM
1440
1441 /* Vector of keys and values. The key of item I is found at index
1442 2 * I, the value is found at index 2 * I + 1.
1443 This is gc_marked specially if the table is weak. */
1444 Lisp_Object key_and_value;
1445
b7432bb2
SM
1446 /* The comparison and hash functions. */
1447 struct hash_table_test test;
1448
6c661ec9
SM
1449 /* Next weak hash table if this is a weak hash table. The head
1450 of the list is in weak_hash_tables. */
1451 struct Lisp_Hash_Table *next_weak;
5010d3b8
GM
1452};
1453
1454
00382e8b 1455INLINE struct Lisp_Hash_Table *
84575e67
PE
1456XHASH_TABLE (Lisp_Object a)
1457{
49609976 1458 return SMOB_PTR (a);
84575e67 1459}
5010d3b8
GM
1460
1461#define XSET_HASH_TABLE(VAR, PTR) \
1462 (XSETPSEUDOVECTOR (VAR, PTR, PVEC_HASH_TABLE))
1463
00382e8b 1464INLINE bool
84575e67
PE
1465HASH_TABLE_P (Lisp_Object a)
1466{
1467 return PSEUDOVECTORP (a, PVEC_HASH_TABLE);
1468}
5010d3b8 1469
141788b5 1470/* Value is the key part of entry IDX in hash table H. */
00382e8b 1471INLINE Lisp_Object
84575e67
PE
1472HASH_KEY (struct Lisp_Hash_Table *h, ptrdiff_t idx)
1473{
1474 return AREF (h->key_and_value, 2 * idx);
1475}
141788b5
SM
1476
1477/* Value is the value part of entry IDX in hash table H. */
00382e8b 1478INLINE Lisp_Object
84575e67
PE
1479HASH_VALUE (struct Lisp_Hash_Table *h, ptrdiff_t idx)
1480{
1481 return AREF (h->key_and_value, 2 * idx + 1);
1482}
141788b5
SM
1483
1484/* Value is the index of the next entry following the one at IDX
1485 in hash table H. */
00382e8b 1486INLINE Lisp_Object
84575e67
PE
1487HASH_NEXT (struct Lisp_Hash_Table *h, ptrdiff_t idx)
1488{
1489 return AREF (h->next, idx);
1490}
141788b5
SM
1491
1492/* Value is the hash code computed for entry IDX in hash table H. */
00382e8b 1493INLINE Lisp_Object
84575e67
PE
1494HASH_HASH (struct Lisp_Hash_Table *h, ptrdiff_t idx)
1495{
1496 return AREF (h->hash, idx);
1497}
141788b5
SM
1498
1499/* Value is the index of the element in hash table H that is the
1500 start of the collision list at index IDX in the index vector of H. */
00382e8b 1501INLINE Lisp_Object
84575e67
PE
1502HASH_INDEX (struct Lisp_Hash_Table *h, ptrdiff_t idx)
1503{
1504 return AREF (h->index, idx);
1505}
141788b5
SM
1506
1507/* Value is the size of hash table H. */
00382e8b 1508INLINE ptrdiff_t
84575e67
PE
1509HASH_TABLE_SIZE (struct Lisp_Hash_Table *h)
1510{
1511 return ASIZE (h->next);
1512}
141788b5 1513
5010d3b8
GM
1514/* Default size for hash tables if not specified. */
1515
03a660a6 1516enum DEFAULT_HASH_SIZE { DEFAULT_HASH_SIZE = 65 };
5010d3b8
GM
1517
1518/* Default threshold specifying when to resize a hash table. The
1519 value gives the ratio of current entries in the hash table and the
1520 size of the hash table. */
1521
185ee146 1522static double const DEFAULT_REHASH_THRESHOLD = 0.8;
5010d3b8
GM
1523
1524/* Default factor by which to increase the size of a hash table. */
1525
185ee146 1526static double const DEFAULT_REHASH_SIZE = 1.5;
5010d3b8 1527
04a2d0d3
PE
1528/* Combine two integers X and Y for hashing. The result might not fit
1529 into a Lisp integer. */
1530
00382e8b 1531INLINE EMACS_UINT
04a2d0d3
PE
1532sxhash_combine (EMACS_UINT x, EMACS_UINT y)
1533{
1534 return (x << 4) + (x >> (BITS_PER_EMACS_INT - 4)) + y;
1535}
1536
eff1c190
PE
1537/* Hash X, returning a value that fits into a fixnum. */
1538
00382e8b 1539INLINE EMACS_UINT
eff1c190
PE
1540SXHASH_REDUCE (EMACS_UINT x)
1541{
49609976 1542 return (x ^ x >> (BITS_PER_EMACS_INT - FIXNUM_BITS + 1)) & INTMASK;
eff1c190
PE
1543}
1544
7c06ac2b
RS
1545/* These structures are used for various misc types. */
1546
67ee9f6e
SM
1547struct Lisp_Misc_Any /* Supertype of all Misc types. */
1548{
49609976 1549 Lisp_Object self;
a6fc3b5c 1550 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_??? */
67ee9f6e
SM
1551};
1552
3cfe6dfd 1553struct Lisp_Marker
308e97d0 1554{
49609976 1555 Lisp_Object self;
a6fc3b5c 1556 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_Marker */
9bb13d08
KH
1557 /* This flag is temporarily used in the functions
1558 decode/encode_coding_object to record that the marker position
1559 must be adjusted after the conversion. */
96c06863
PE
1560 bool_bf need_adjustment : 1;
1561 /* True means normal insertion at the marker's position
308e97d0 1562 leaves the marker after the inserted text. */
96c06863 1563 bool_bf insertion_type : 1;
b9466edb
SM
1564 /* This is the buffer that the marker points into, or 0 if it points nowhere.
1565 Note: a chain of markers can contain markers pointing into different
1566 buffers (the chain is per buffer_text rather than per buffer, so it's
1567 shared between indirect buffers). */
1568 /* This is used for (other than NULL-checking):
1569 - Fmarker_buffer
1570 - Fset_marker: check eq(oldbuf, newbuf) to avoid unchain+rechain.
1571 - unchain_marker: to find the list from which to unchain.
ce5b453a 1572 - Fkill_buffer: to only unchain the markers of current indirect buffer.
b9466edb 1573 */
308e97d0 1574 struct buffer *buffer;
4ed24bf3
RS
1575
1576 /* The remaining fields are meaningless in a marker that
1577 does not point anywhere. */
1578
1579 /* For markers that point somewhere,
1580 this is used to chain of all the markers in a given buffer. */
d6aa1876
SM
1581 /* We could remove it and use an array in buffer_text instead.
1582 That would also allow to preserve it ordered. */
c0ac2f4a 1583 struct Lisp_Marker *next;
4ed24bf3 1584 /* This is the char position where the marker points. */
d311d28c 1585 ptrdiff_t charpos;
ce5b453a
SM
1586 /* This is the byte position.
1587 It's mostly used as a charpos<->bytepos cache (i.e. it's not directly
1588 used to implement the functionality of markers, but rather to (ab)use
1589 markers as a cache for char<->byte mappings). */
d311d28c 1590 ptrdiff_t bytepos;
308e97d0 1591};
3cfe6dfd 1592
7555c33f
SM
1593/* START and END are markers in the overlay's buffer, and
1594 PLIST is the overlay's property list. */
1595struct Lisp_Overlay
fa691a83
DA
1596/* An overlay's real data content is:
1597 - plist
1598 - buffer (really there are two buffer pointers, one per marker,
1599 and both points to the same buffer)
1600 - insertion type of both ends (per-marker fields)
1601 - start & start byte (of start marker)
1602 - end & end byte (of end marker)
1603 - next (singly linked list of overlays)
1604 - next fields of start and end markers (singly linked list of markers).
1605 I.e. 9words plus 2 bits, 3words of which are for external linked lists.
1606*/
7555c33f 1607 {
49609976 1608 Lisp_Object self;
7555c33f 1609 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_Overlay */
7555c33f 1610 struct Lisp_Overlay *next;
c644523b
DA
1611 Lisp_Object start;
1612 Lisp_Object end;
1613 Lisp_Object plist;
7555c33f
SM
1614 };
1615
73ebd38f
DA
1616/* Types of data which may be saved in a Lisp_Save_Value. */
1617
1618enum
1619 {
1620 SAVE_UNUSED,
1621 SAVE_INTEGER,
52a9bcae 1622 SAVE_FUNCPOINTER,
73ebd38f
DA
1623 SAVE_POINTER,
1624 SAVE_OBJECT
1625 };
1626
7b1123d8 1627/* Number of bits needed to store one of the above values. */
52a9bcae 1628enum { SAVE_SLOT_BITS = 3 };
7b1123d8
PE
1629
1630/* Number of slots in a save value where save_type is nonzero. */
1631enum { SAVE_VALUE_SLOTS = 4 };
1632
1633/* Bit-width and values for struct Lisp_Save_Value's save_type member. */
1634
1635enum { SAVE_TYPE_BITS = SAVE_VALUE_SLOTS * SAVE_SLOT_BITS + 1 };
1636
1637enum Lisp_Save_Type
1638 {
1639 SAVE_TYPE_INT_INT = SAVE_INTEGER + (SAVE_INTEGER << SAVE_SLOT_BITS),
1640 SAVE_TYPE_INT_INT_INT
1641 = (SAVE_INTEGER + (SAVE_TYPE_INT_INT << SAVE_SLOT_BITS)),
1642 SAVE_TYPE_OBJ_OBJ = SAVE_OBJECT + (SAVE_OBJECT << SAVE_SLOT_BITS),
1643 SAVE_TYPE_OBJ_OBJ_OBJ = SAVE_OBJECT + (SAVE_TYPE_OBJ_OBJ << SAVE_SLOT_BITS),
1644 SAVE_TYPE_OBJ_OBJ_OBJ_OBJ
1645 = SAVE_OBJECT + (SAVE_TYPE_OBJ_OBJ_OBJ << SAVE_SLOT_BITS),
1646 SAVE_TYPE_PTR_INT = SAVE_POINTER + (SAVE_INTEGER << SAVE_SLOT_BITS),
1647 SAVE_TYPE_PTR_OBJ = SAVE_POINTER + (SAVE_OBJECT << SAVE_SLOT_BITS),
1648 SAVE_TYPE_PTR_PTR = SAVE_POINTER + (SAVE_POINTER << SAVE_SLOT_BITS),
52a9bcae
PE
1649 SAVE_TYPE_FUNCPTR_PTR_OBJ
1650 = SAVE_FUNCPOINTER + (SAVE_TYPE_PTR_OBJ << SAVE_SLOT_BITS),
7b1123d8
PE
1651
1652 /* This has an extra bit indicating it's raw memory. */
1653 SAVE_TYPE_MEMORY = SAVE_TYPE_PTR_INT + (1 << (SAVE_TYPE_BITS - 1))
1654 };
1655
468afbac
DA
1656/* Special object used to hold a different values for later use.
1657
1658 This is mostly used to package C integers and pointers to call
27e498e6 1659 record_unwind_protect when two or more values need to be saved.
1396ac86 1660 For example:
468afbac
DA
1661
1662 ...
1663 struct my_data *md = get_my_data ();
1396ac86
PE
1664 ptrdiff_t mi = get_my_integer ();
1665 record_unwind_protect (my_unwind, make_save_ptr_int (md, mi));
468afbac
DA
1666 ...
1667
1668 Lisp_Object my_unwind (Lisp_Object arg)
1669 {
1670 struct my_data *md = XSAVE_POINTER (arg, 0);
1396ac86 1671 ptrdiff_t mi = XSAVE_INTEGER (arg, 1);
468afbac
DA
1672 ...
1673 }
1674
1675 If ENABLE_CHECKING is in effect, XSAVE_xxx macros do type checking of the
1676 saved objects and raise eassert if type of the saved object doesn't match
1677 the type which is extracted. In the example above, XSAVE_INTEGER (arg, 2)
1396ac86
PE
1678 and XSAVE_OBJECT (arg, 0) are wrong because nothing was saved in slot 2 and
1679 slot 0 is a pointer. */
73ebd38f 1680
52a9bcae
PE
1681typedef void (*voidfuncptr) (void);
1682
7555c33f
SM
1683struct Lisp_Save_Value
1684 {
49609976 1685 Lisp_Object self;
7555c33f 1686 ENUM_BF (Lisp_Misc_Type) type : 16; /* = Lisp_Misc_Save_Value */
2bdeb39a 1687 unsigned spacer : 32 - (16 + SAVE_TYPE_BITS);
7b1123d8 1688
1396ac86
PE
1689 /* V->data may hold up to SAVE_VALUE_SLOTS entries. The type of
1690 V's data entries are determined by V->save_type. E.g., if
1691 V->save_type == SAVE_TYPE_PTR_OBJ, V->data[0] is a pointer,
1692 V->data[1] is an integer, and V's other data entries are unused.
7b1123d8 1693
1396ac86
PE
1694 If V->save_type == SAVE_TYPE_MEMORY, V->data[0].pointer is the address of
1695 a memory area containing V->data[1].integer potential Lisp_Objects. */
7b1123d8 1696 ENUM_BF (Lisp_Save_Type) save_type : SAVE_TYPE_BITS;
73ebd38f
DA
1697 union {
1698 void *pointer;
52a9bcae 1699 voidfuncptr funcpointer;
73ebd38f
DA
1700 ptrdiff_t integer;
1701 Lisp_Object object;
7b1123d8 1702 } data[SAVE_VALUE_SLOTS];
7555c33f
SM
1703 };
1704
84575e67 1705/* Return the type of V's Nth saved value. */
00382e8b 1706INLINE int
84575e67
PE
1707save_type (struct Lisp_Save_Value *v, int n)
1708{
1709 eassert (0 <= n && n < SAVE_VALUE_SLOTS);
1710 return (v->save_type >> (SAVE_SLOT_BITS * n) & ((1 << SAVE_SLOT_BITS) - 1));
1711}
1712
1713/* Get and set the Nth saved pointer. */
1714
00382e8b 1715INLINE void *
84575e67
PE
1716XSAVE_POINTER (Lisp_Object obj, int n)
1717{
1718 eassert (save_type (XSAVE_VALUE (obj), n) == SAVE_POINTER);
52a9bcae 1719 return XSAVE_VALUE (obj)->data[n].pointer;
84575e67 1720}
00382e8b 1721INLINE void
84575e67
PE
1722set_save_pointer (Lisp_Object obj, int n, void *val)
1723{
1724 eassert (save_type (XSAVE_VALUE (obj), n) == SAVE_POINTER);
1725 XSAVE_VALUE (obj)->data[n].pointer = val;
1726}
00382e8b 1727INLINE voidfuncptr
52a9bcae
PE
1728XSAVE_FUNCPOINTER (Lisp_Object obj, int n)
1729{
1730 eassert (save_type (XSAVE_VALUE (obj), n) == SAVE_FUNCPOINTER);
1731 return XSAVE_VALUE (obj)->data[n].funcpointer;
1732}
84575e67
PE
1733
1734/* Likewise for the saved integer. */
1735
00382e8b 1736INLINE ptrdiff_t
84575e67
PE
1737XSAVE_INTEGER (Lisp_Object obj, int n)
1738{
1739 eassert (save_type (XSAVE_VALUE (obj), n) == SAVE_INTEGER);
1740 return XSAVE_VALUE (obj)->data[n].integer;
1741}
00382e8b 1742INLINE void
84575e67
PE
1743set_save_integer (Lisp_Object obj, int n, ptrdiff_t val)
1744{
1745 eassert (save_type (XSAVE_VALUE (obj), n) == SAVE_INTEGER);
1746 XSAVE_VALUE (obj)->data[n].integer = val;
1747}
1748
1749/* Extract Nth saved object. */
1750
00382e8b 1751INLINE Lisp_Object
84575e67
PE
1752XSAVE_OBJECT (Lisp_Object obj, int n)
1753{
1754 eassert (save_type (XSAVE_VALUE (obj), n) == SAVE_OBJECT);
1755 return XSAVE_VALUE (obj)->data[n].object;
1756}
1757
7555c33f
SM
1758/* To get the type field of a union Lisp_Misc, use XMISCTYPE.
1759 It uses one of these struct subtypes to get the type field. */
1760
1761union Lisp_Misc
1762 {
1763 struct Lisp_Misc_Any u_any; /* Supertype of all Misc types. */
7555c33f
SM
1764 struct Lisp_Marker u_marker;
1765 struct Lisp_Overlay u_overlay;
1766 struct Lisp_Save_Value u_save_value;
1767 };
1768
00382e8b 1769INLINE union Lisp_Misc *
84575e67
PE
1770XMISC (Lisp_Object a)
1771{
49609976 1772 return SMOB_PTR (a);
84575e67
PE
1773}
1774
00382e8b 1775INLINE struct Lisp_Misc_Any *
84575e67
PE
1776XMISCANY (Lisp_Object a)
1777{
1778 eassert (MISCP (a));
1779 return & XMISC (a)->u_any;
1780}
1781
00382e8b 1782INLINE enum Lisp_Misc_Type
84575e67
PE
1783XMISCTYPE (Lisp_Object a)
1784{
1785 return XMISCANY (a)->type;
1786}
1787
00382e8b 1788INLINE struct Lisp_Marker *
84575e67
PE
1789XMARKER (Lisp_Object a)
1790{
1791 eassert (MARKERP (a));
1792 return & XMISC (a)->u_marker;
1793}
1794
00382e8b 1795INLINE struct Lisp_Overlay *
84575e67
PE
1796XOVERLAY (Lisp_Object a)
1797{
1798 eassert (OVERLAYP (a));
1799 return & XMISC (a)->u_overlay;
1800}
1801
00382e8b 1802INLINE struct Lisp_Save_Value *
84575e67
PE
1803XSAVE_VALUE (Lisp_Object a)
1804{
1805 eassert (SAVE_VALUEP (a));
1806 return & XMISC (a)->u_save_value;
1807}
1808\f
ee4c9ce4
KH
1809/* Forwarding pointer to an int variable.
1810 This is allowed only in the value cell of a symbol,
1811 and it means that the symbol's value really lives in the
1812 specified int variable. */
1813struct Lisp_Intfwd
84d1833e 1814 {
ce5b453a 1815 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Int */
31ade731 1816 EMACS_INT *intvar;
ee4c9ce4
KH
1817 };
1818
1819/* Boolean forwarding pointer to an int variable.
1820 This is like Lisp_Intfwd except that the ostensible
96c06863
PE
1821 "value" of the symbol is t if the bool variable is true,
1822 nil if it is false. */
ee4c9ce4
KH
1823struct Lisp_Boolfwd
1824 {
ce5b453a 1825 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Bool */
f5d9e83a 1826 bool *boolvar;
ee4c9ce4
KH
1827 };
1828
1829/* Forwarding pointer to a Lisp_Object variable.
1830 This is allowed only in the value cell of a symbol,
1831 and it means that the symbol's value really lives in the
1832 specified variable. */
1833struct Lisp_Objfwd
1834 {
ce5b453a 1835 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Obj */
ee4c9ce4
KH
1836 Lisp_Object *objvar;
1837 };
1838
1839/* Like Lisp_Objfwd except that value lives in a slot in the
1840 current buffer. Value is byte index of slot within buffer. */
1841struct Lisp_Buffer_Objfwd
1842 {
ce5b453a 1843 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Buffer_Obj */
ee4c9ce4 1844 int offset;
58cc0a01
DA
1845 /* One of Qnil, Qintegerp, Qsymbolp, Qstringp, Qfloatp or Qnumberp. */
1846 Lisp_Object predicate;
84d1833e
KH
1847 };
1848
65d0110b
RS
1849/* struct Lisp_Buffer_Local_Value is used in a symbol value cell when
1850 the symbol has buffer-local or frame-local bindings. (Exception:
1851 some buffer-local variables are built-in, with their values stored
1852 in the buffer structure itself. They are handled differently,
1853 using struct Lisp_Buffer_Objfwd.)
1854
1855 The `realvalue' slot holds the variable's current value, or a
1856 forwarding pointer to where that value is kept. This value is the
1857 one that corresponds to the loaded binding. To read or set the
1858 variable, you must first make sure the right binding is loaded;
1859 then you can access the value in (or through) `realvalue'.
e2c0561e 1860
65d0110b
RS
1861 `buffer' and `frame' are the buffer and frame for which the loaded
1862 binding was found. If those have changed, to make sure the right
1863 binding is loaded it is necessary to find which binding goes with
1864 the current buffer and selected frame, then load it. To load it,
1865 first unload the previous binding, then copy the value of the new
1866 binding into `realvalue' (or through it). Also update
1867 LOADED-BINDING to point to the newly loaded binding.
7d65f1c2 1868
78edd3b7
JB
1869 `local_if_set' indicates that merely setting the variable creates a
1870 local binding for the current buffer. Otherwise the latter, setting
1871 the variable does not do that; only make-local-variable does that. */
65d0110b 1872
7d65f1c2
KH
1873struct Lisp_Buffer_Local_Value
1874 {
96c06863 1875 /* True means that merely setting the variable creates a local
7555c33f 1876 binding for the current buffer. */
96c06863
PE
1877 bool_bf local_if_set : 1;
1878 /* True means this variable can have frame-local bindings, otherwise, it is
ce5b453a 1879 can have buffer-local bindings. The two cannot be combined. */
96c06863
PE
1880 bool_bf frame_local : 1;
1881 /* True means that the binding now loaded was found.
7555c33f 1882 Presumably equivalent to (defcell!=valcell). */
96c06863 1883 bool_bf found : 1;
ce5b453a
SM
1884 /* If non-NULL, a forwarding to the C var where it should also be set. */
1885 union Lisp_Fwd *fwd; /* Should never be (Buffer|Kboard)_Objfwd. */
1886 /* The buffer or frame for which the loaded binding was found. */
1887 Lisp_Object where;
1888 /* A cons cell that holds the default value. It has the form
1889 (SYMBOL . DEFAULT-VALUE). */
1890 Lisp_Object defcell;
1891 /* The cons cell from `where's parameter alist.
1892 It always has the form (SYMBOL . VALUE)
1893 Note that if `forward' is non-nil, VALUE may be out of date.
1894 Also if the currently loaded binding is the default binding, then
1895 this is `eq'ual to defcell. */
1896 Lisp_Object valcell;
7d65f1c2
KH
1897 };
1898
f334de0e 1899/* Like Lisp_Objfwd except that value lives in a slot in the
32462604
KH
1900 current kboard. */
1901struct Lisp_Kboard_Objfwd
f334de0e 1902 {
ce5b453a 1903 enum Lisp_Fwd_Type type; /* = Lisp_Fwd_Kboard_Obj */
f334de0e
KH
1904 int offset;
1905 };
1906
ce5b453a
SM
1907union Lisp_Fwd
1908 {
d55c12ed
AS
1909 struct Lisp_Intfwd u_intfwd;
1910 struct Lisp_Boolfwd u_boolfwd;
1911 struct Lisp_Objfwd u_objfwd;
1912 struct Lisp_Buffer_Objfwd u_buffer_objfwd;
1913 struct Lisp_Kboard_Objfwd u_kboard_objfwd;
84d1833e 1914 };
84575e67 1915
00382e8b 1916INLINE enum Lisp_Fwd_Type
84575e67
PE
1917XFWDTYPE (union Lisp_Fwd *a)
1918{
1919 return a->u_intfwd.type;
1920}
1921
00382e8b 1922INLINE struct Lisp_Buffer_Objfwd *
84575e67
PE
1923XBUFFER_OBJFWD (union Lisp_Fwd *a)
1924{
1925 eassert (BUFFER_OBJFWDP (a));
1926 return &a->u_buffer_objfwd;
1927}
7c06ac2b 1928\f
ed446f1e 1929#define XFLOAT_DATA(f) (scm_to_double (f))
3cfe6dfd 1930
4d7e6e51
PE
1931/* Most hosts nowadays use IEEE floating point, so they use IEC 60559
1932 representations, have infinities and NaNs, and do not trap on
1933 exceptions. Define IEEE_FLOATING_POINT if this host is one of the
1934 typical ones. The C11 macro __STDC_IEC_559__ is close to what is
1935 wanted here, but is not quite right because Emacs does not require
1936 all the features of C11 Annex F (and does not require C11 at all,
1937 for that matter). */
84575e67
PE
1938enum
1939 {
1940 IEEE_FLOATING_POINT
1941 = (FLT_RADIX == 2 && FLT_MANT_DIG == 24
1942 && FLT_MIN_EXP == -125 && FLT_MAX_EXP == 128)
1943 };
4d7e6e51 1944
3cfe6dfd 1945/* A character, declared with the following typedef, is a member
99a3d506 1946 of some character set associated with the current buffer. */
b2ba7b00
RS
1947#ifndef _UCHAR_T /* Protect against something in ctab.h on AIX. */
1948#define _UCHAR_T
3cfe6dfd 1949typedef unsigned char UCHAR;
b2ba7b00 1950#endif
3cfe6dfd
JB
1951
1952/* Meanings of slots in a Lisp_Compiled: */
1953
03a660a6
PE
1954enum Lisp_Compiled
1955 {
1956 COMPILED_ARGLIST = 0,
1957 COMPILED_BYTECODE = 1,
1958 COMPILED_CONSTANTS = 2,
1959 COMPILED_STACK_DEPTH = 3,
1960 COMPILED_DOC_STRING = 4,
1961 COMPILED_INTERACTIVE = 5
1962 };
88dbfee5 1963
d03f79ef
JB
1964/* Flag bits in a character. These also get used in termhooks.h.
1965 Richard Stallman <rms@gnu.ai.mit.edu> thinks that MULE
7c06ac2b
RS
1966 (MUlti-Lingual Emacs) might need 22 bits for the character value
1967 itself, so we probably shouldn't use any bits lower than 0x0400000. */
03a660a6
PE
1968enum char_bits
1969 {
1970 CHAR_ALT = 0x0400000,
1971 CHAR_SUPER = 0x0800000,
1972 CHAR_HYPER = 0x1000000,
1973 CHAR_SHIFT = 0x2000000,
1974 CHAR_CTL = 0x4000000,
1975 CHAR_META = 0x8000000,
1976
1977 CHAR_MODIFIER_MASK =
88fb40b4 1978 CHAR_ALT | CHAR_SUPER | CHAR_HYPER | CHAR_SHIFT | CHAR_CTL | CHAR_META,
03a660a6
PE
1979
1980 /* Actually, the current Emacs uses 22 bits for the character value
1981 itself. */
1982 CHARACTERBITS = 22
1983 };
3cfe6dfd 1984\f
e7032e7c 1985/* Data type checking. */
3cfe6dfd 1986
84575e67 1987LISP_MACRO_DEFUN (NILP, bool, (Lisp_Object x), (x))
3cfe6dfd 1988
00382e8b 1989INLINE bool
84575e67
PE
1990NUMBERP (Lisp_Object x)
1991{
1992 return INTEGERP (x) || FLOATP (x);
1993}
00382e8b 1994INLINE bool
84575e67
PE
1995NATNUMP (Lisp_Object x)
1996{
1997 return INTEGERP (x) && 0 <= XINT (x);
1998}
1999
00382e8b 2000INLINE bool
84575e67
PE
2001RANGED_INTEGERP (intmax_t lo, Lisp_Object x, intmax_t hi)
2002{
2003 return INTEGERP (x) && lo <= XINT (x) && XINT (x) <= hi;
2004}
4746118a 2005
ca9ce8f2 2006#define TYPE_RANGED_INTEGERP(type, x) \
84575e67
PE
2007 (INTEGERP (x) \
2008 && (TYPE_SIGNED (type) ? TYPE_MINIMUM (type) <= XINT (x) : 0 <= XINT (x)) \
2009 && XINT (x) <= TYPE_MAXIMUM (type))
2010
2011LISP_MACRO_DEFUN (CONSP, bool, (Lisp_Object x), (x))
2012LISP_MACRO_DEFUN (FLOATP, bool, (Lisp_Object x), (x))
2013LISP_MACRO_DEFUN (MISCP, bool, (Lisp_Object x), (x))
2014LISP_MACRO_DEFUN (SYMBOLP, bool, (Lisp_Object x), (x))
2015LISP_MACRO_DEFUN (INTEGERP, bool, (Lisp_Object x), (x))
2016LISP_MACRO_DEFUN (VECTORLIKEP, bool, (Lisp_Object x), (x))
2017LISP_MACRO_DEFUN (MARKERP, bool, (Lisp_Object x), (x))
2018
00382e8b 2019INLINE bool
84575e67
PE
2020STRINGP (Lisp_Object x)
2021{
49609976 2022 return SMOB_TYPEP (x, lisp_string_tag);
84575e67 2023}
00382e8b 2024INLINE bool
84575e67
PE
2025VECTORP (Lisp_Object x)
2026{
2027 return VECTORLIKEP (x) && ! (ASIZE (x) & PSEUDOVECTOR_FLAG);
2028}
00382e8b 2029INLINE bool
84575e67
PE
2030OVERLAYP (Lisp_Object x)
2031{
2032 return MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Overlay;
2033}
00382e8b 2034INLINE bool
84575e67
PE
2035SAVE_VALUEP (Lisp_Object x)
2036{
2037 return MISCP (x) && XMISCTYPE (x) == Lisp_Misc_Save_Value;
2038}
2039
00382e8b 2040INLINE bool
84575e67
PE
2041AUTOLOADP (Lisp_Object x)
2042{
2043 return CONSP (x) && EQ (Qautoload, XCAR (x));
2044}
7b1123d8 2045
00382e8b 2046INLINE bool
84575e67 2047BUFFER_OBJFWDP (union Lisp_Fwd *a)
7b1123d8 2048{
84575e67 2049 return XFWDTYPE (a) == Lisp_Fwd_Buffer_Obj;
7b1123d8 2050}
edfa9106 2051
00382e8b 2052INLINE bool
84575e67 2053PSEUDOVECTOR_TYPEP (struct vectorlike_header *a, int code)
717b8bcd 2054{
84575e67
PE
2055 return ((a->size & (PSEUDOVECTOR_FLAG | PVEC_TYPE_MASK))
2056 == (PSEUDOVECTOR_FLAG | (code << PSEUDOVECTOR_AREA_BITS)));
717b8bcd
SM
2057}
2058
84575e67 2059/* True if A is a pseudovector whose code is CODE. */
00382e8b 2060INLINE bool
84575e67 2061PSEUDOVECTORP (Lisp_Object a, int code)
717b8bcd 2062{
84575e67 2063 if (! VECTORLIKEP (a))
96c06863 2064 return false;
84575e67
PE
2065 else
2066 {
2067 /* Converting to struct vectorlike_header * avoids aliasing issues. */
49609976 2068 struct vectorlike_header *h = SMOB_PTR (a);
84575e67
PE
2069 return PSEUDOVECTOR_TYPEP (h, code);
2070 }
717b8bcd
SM
2071}
2072
84575e67
PE
2073/* Test for specific pseudovector types. */
2074
00382e8b 2075INLINE bool
84575e67 2076WINDOW_CONFIGURATIONP (Lisp_Object a)
717b8bcd 2077{
84575e67 2078 return PSEUDOVECTORP (a, PVEC_WINDOW_CONFIGURATION);
717b8bcd 2079}
84575e67 2080
00382e8b 2081INLINE bool
84575e67 2082PROCESSP (Lisp_Object a)
717b8bcd 2083{
84575e67 2084 return PSEUDOVECTORP (a, PVEC_PROCESS);
717b8bcd
SM
2085}
2086
00382e8b 2087INLINE bool
84575e67 2088WINDOWP (Lisp_Object a)
717b8bcd 2089{
84575e67 2090 return PSEUDOVECTORP (a, PVEC_WINDOW);
717b8bcd 2091}
84575e67 2092
00382e8b 2093INLINE bool
84575e67 2094TERMINALP (Lisp_Object a)
717b8bcd 2095{
84575e67 2096 return PSEUDOVECTORP (a, PVEC_TERMINAL);
717b8bcd
SM
2097}
2098
00382e8b 2099INLINE bool
84575e67
PE
2100COMPILEDP (Lisp_Object a)
2101{
2102 return PSEUDOVECTORP (a, PVEC_COMPILED);
2103}
32e5c58c 2104
00382e8b 2105INLINE bool
84575e67
PE
2106BUFFERP (Lisp_Object a)
2107{
2108 return PSEUDOVECTORP (a, PVEC_BUFFER);
2109}
7c06ac2b 2110
00382e8b 2111INLINE bool
84575e67
PE
2112CHAR_TABLE_P (Lisp_Object a)
2113{
2114 return PSEUDOVECTORP (a, PVEC_CHAR_TABLE);
2115}
ee28be33 2116
00382e8b 2117INLINE bool
84575e67
PE
2118SUB_CHAR_TABLE_P (Lisp_Object a)
2119{
2120 return PSEUDOVECTORP (a, PVEC_SUB_CHAR_TABLE);
2121}
eab3844f 2122
00382e8b 2123INLINE bool
84575e67
PE
2124BOOL_VECTOR_P (Lisp_Object a)
2125{
2126 return PSEUDOVECTORP (a, PVEC_BOOL_VECTOR);
2127}
7c06ac2b 2128
00382e8b 2129INLINE bool
84575e67
PE
2130FRAMEP (Lisp_Object a)
2131{
2132 return PSEUDOVECTORP (a, PVEC_FRAME);
2133}
ea724a01 2134
6b61353c 2135/* Test for image (image . spec) */
00382e8b 2136INLINE bool
84575e67
PE
2137IMAGEP (Lisp_Object x)
2138{
2139 return CONSP (x) && EQ (XCAR (x), Qimage);
2140}
6b61353c 2141
c8a39089 2142/* Array types. */
00382e8b 2143INLINE bool
84575e67
PE
2144ARRAYP (Lisp_Object x)
2145{
2146 return VECTORP (x) || STRINGP (x) || CHAR_TABLE_P (x) || BOOL_VECTOR_P (x);
2147}
7c06ac2b 2148\f
00382e8b 2149INLINE void
84575e67
PE
2150CHECK_LIST (Lisp_Object x)
2151{
2152 CHECK_TYPE (CONSP (x) || NILP (x), Qlistp, x);
2153}
3cfe6dfd 2154
84575e67
PE
2155LISP_MACRO_DEFUN_VOID (CHECK_LIST_CONS, (Lisp_Object x, Lisp_Object y), (x, y))
2156LISP_MACRO_DEFUN_VOID (CHECK_SYMBOL, (Lisp_Object x), (x))
2157LISP_MACRO_DEFUN_VOID (CHECK_NUMBER, (Lisp_Object x), (x))
3cfe6dfd 2158
00382e8b 2159INLINE void
84575e67
PE
2160CHECK_STRING (Lisp_Object x)
2161{
2162 CHECK_TYPE (STRINGP (x), Qstringp, x);
2163}
00382e8b 2164INLINE void
84575e67
PE
2165CHECK_STRING_CAR (Lisp_Object x)
2166{
2167 CHECK_TYPE (STRINGP (XCAR (x)), Qstringp, XCAR (x));
2168}
00382e8b 2169INLINE void
84575e67
PE
2170CHECK_CONS (Lisp_Object x)
2171{
2172 CHECK_TYPE (CONSP (x), Qconsp, x);
2173}
00382e8b 2174INLINE void
84575e67
PE
2175CHECK_VECTOR (Lisp_Object x)
2176{
2177 CHECK_TYPE (VECTORP (x), Qvectorp, x);
2178}
00382e8b 2179INLINE void
3e0b94e7
DC
2180CHECK_BOOL_VECTOR (Lisp_Object x)
2181{
2182 CHECK_TYPE (BOOL_VECTOR_P (x), Qbool_vector_p, x);
2183}
2184INLINE void
84575e67
PE
2185CHECK_VECTOR_OR_STRING (Lisp_Object x)
2186{
2187 CHECK_TYPE (VECTORP (x) || STRINGP (x), Qarrayp, x);
2188}
00382e8b 2189INLINE void
40f5d4b7 2190CHECK_ARRAY (Lisp_Object x, Lisp_Object predicate)
84575e67 2191{
40f5d4b7 2192 CHECK_TYPE (ARRAYP (x), predicate, x);
84575e67 2193}
00382e8b 2194INLINE void
84575e67
PE
2195CHECK_BUFFER (Lisp_Object x)
2196{
2197 CHECK_TYPE (BUFFERP (x), Qbufferp, x);
2198}
00382e8b 2199INLINE void
84575e67
PE
2200CHECK_WINDOW (Lisp_Object x)
2201{
2202 CHECK_TYPE (WINDOWP (x), Qwindowp, x);
2203}
bf6b4923 2204#ifdef subprocesses
00382e8b 2205INLINE void
84575e67
PE
2206CHECK_PROCESS (Lisp_Object x)
2207{
2208 CHECK_TYPE (PROCESSP (x), Qprocessp, x);
2209}
bf6b4923 2210#endif
00382e8b 2211INLINE void
84575e67
PE
2212CHECK_NATNUM (Lisp_Object x)
2213{
2214 CHECK_TYPE (NATNUMP (x), Qwholenump, x);
2215}
3cfe6dfd 2216
af5a5a98 2217#define CHECK_RANGED_INTEGER(x, lo, hi) \
d311d28c
PE
2218 do { \
2219 CHECK_NUMBER (x); \
2220 if (! ((lo) <= XINT (x) && XINT (x) <= (hi))) \
2221 args_out_of_range_3 \
2222 (x, \
2223 make_number ((lo) < 0 && (lo) < MOST_NEGATIVE_FIXNUM \
2224 ? MOST_NEGATIVE_FIXNUM \
2225 : (lo)), \
2226 make_number (min (hi, MOST_POSITIVE_FIXNUM))); \
96c06863 2227 } while (false)
d311d28c
PE
2228#define CHECK_TYPE_RANGED_INTEGER(type, x) \
2229 do { \
2230 if (TYPE_SIGNED (type)) \
af5a5a98 2231 CHECK_RANGED_INTEGER (x, TYPE_MINIMUM (type), TYPE_MAXIMUM (type)); \
d311d28c 2232 else \
af5a5a98 2233 CHECK_RANGED_INTEGER (x, 0, TYPE_MAXIMUM (type)); \
96c06863 2234 } while (false)
d311d28c 2235
96c06863
PE
2236#define CHECK_NUMBER_COERCE_MARKER(x) \
2237 do { \
2238 if (MARKERP ((x))) \
2239 XSETFASTINT (x, marker_position (x)); \
2240 else \
2241 CHECK_TYPE (INTEGERP (x), Qinteger_or_marker_p, x); \
2242 } while (false)
3cfe6dfd 2243
00382e8b 2244INLINE double
84575e67
PE
2245XFLOATINT (Lisp_Object n)
2246{
2247 return extract_float (n);
2248}
3cfe6dfd 2249
00382e8b 2250INLINE void
84575e67
PE
2251CHECK_NUMBER_OR_FLOAT (Lisp_Object x)
2252{
2253 CHECK_TYPE (FLOATP (x) || INTEGERP (x), Qnumberp, x);
2254}
3cfe6dfd 2255
96c06863
PE
2256#define CHECK_NUMBER_OR_FLOAT_COERCE_MARKER(x) \
2257 do { \
2258 if (MARKERP (x)) \
2259 XSETFASTINT (x, marker_position (x)); \
2260 else \
2261 CHECK_TYPE (INTEGERP (x) || FLOATP (x), Qnumber_or_marker_p, x); \
2262 } while (false)
3cfe6dfd 2263
f3fbd155
KR
2264/* Since we can't assign directly to the CAR or CDR fields of a cons
2265 cell, use these when checking that those fields contain numbers. */
00382e8b 2266INLINE void
84575e67
PE
2267CHECK_NUMBER_CAR (Lisp_Object x)
2268{
2269 Lisp_Object tmp = XCAR (x);
2270 CHECK_NUMBER (tmp);
2271 XSETCAR (x, tmp);
2272}
8f924df7 2273
00382e8b 2274INLINE void
84575e67
PE
2275CHECK_NUMBER_CDR (Lisp_Object x)
2276{
2277 Lisp_Object tmp = XCDR (x);
2278 CHECK_NUMBER (tmp);
2279 XSETCDR (x, tmp);
2280}
3cfe6dfd
JB
2281\f
2282/* Define a built-in function for calling from Lisp.
2283 `lname' should be the name to give the function in Lisp,
2284 as a null-terminated C string.
2285 `fnname' should be the name of the function in C.
2286 By convention, it starts with F.
2287 `sname' should be the name for the C constant structure
2288 that records information on this function for internal use.
2289 By convention, it should be the same as `fnname' but with S instead of F.
2290 It's too bad that C macros can't compute this from `fnname'.
2291 `minargs' should be a number, the minimum number of arguments allowed.
2292 `maxargs' should be a number, the maximum number of arguments allowed,
2293 or else MANY or UNEVALLED.
2294 MANY means pass a vector of evaluated arguments,
2295 in the form of an integer number-of-arguments
2296 followed by the address of a vector of Lisp_Objects
2297 which contains the argument values.
2298 UNEVALLED means pass the list of unevaluated arguments
4bca9161
MC
2299 `intspec' says how interactive arguments are to be fetched.
2300 If the string starts with a `(', `intspec' is evaluated and the resulting
2301 list is the list of arguments.
2302 If it's a string that doesn't start with `(', the value should follow
2303 the one of the doc string for `interactive'.
3cfe6dfd 2304 A null string means call interactively with no arguments.
eab9d423 2305 `doc' is documentation for the user. */
3cfe6dfd 2306
c451d7b1 2307/* This version of DEFUN declares a function prototype with the right
99a3d506 2308 arguments, so we can catch errors with maxargs at compile-time. */
a6fc3b5c 2309#define DEFUN(lname, fnname, sname, minargs, maxargs, intspec, doc) \
62947569 2310 SCM_SNARF_INIT (defsubr (lname, gsubr_ ## fnname, minargs, maxargs, intspec)) \
72aa8b2e 2311 Lisp_Object fnname DEFUN_ARGS_ ## maxargs ; \
62947569 2312 DEFUN_GSUBR_ ## maxargs (lname, fnname, minargs, maxargs) \
a6fc3b5c 2313 Lisp_Object fnname
62947569
BT
2314
2315#define GSUBR_ARGS_1(f) f (arg1)
2316#define GSUBR_ARGS_2(f) GSUBR_ARGS_1 (f), f (arg2)
2317#define GSUBR_ARGS_3(f) GSUBR_ARGS_2 (f), f (arg3)
2318#define GSUBR_ARGS_4(f) GSUBR_ARGS_3 (f), f (arg4)
2319#define GSUBR_ARGS_5(f) GSUBR_ARGS_4 (f), f (arg5)
2320#define GSUBR_ARGS_6(f) GSUBR_ARGS_5 (f), f (arg6)
2321#define GSUBR_ARGS_7(f) GSUBR_ARGS_6 (f), f (arg7)
2322#define GSUBR_ARGS_8(f) GSUBR_ARGS_7 (f), f (arg8)
2323
2324#define GSUBR_ARGS(n) GSUBR_ARGS_PASTE (GSUBR_ARGS_, n)
2325#define GSUBR_ARGS_PASTE(a, b) a ## b
2326
2327#define DEFUN_GSUBR_N(fn, maxargs) \
2328 Lisp_Object \
2329 gsubr_ ## fn \
2330 (GSUBR_ARGS (maxargs) (Lisp_Object)) \
2331 { \
2332 return fn (GSUBR_ARGS (maxargs) (GSUBR_ARG)); \
2333 }
2334#define GSUBR_ARG(x) (SCM_UNBNDP (x) ? Qnil : x)
2335
2336#define DEFUN_GSUBR_0(lname, fn, minargs, maxargs) \
2337 Lisp_Object gsubr_ ## fn (void) { return fn (); }
2338#define DEFUN_GSUBR_1(lname, fn, min, max) DEFUN_GSUBR_N(fn, max)
2339#define DEFUN_GSUBR_2(lname, fn, min, max) DEFUN_GSUBR_N(fn, max)
2340#define DEFUN_GSUBR_3(lname, fn, min, max) DEFUN_GSUBR_N(fn, max)
2341#define DEFUN_GSUBR_4(lname, fn, min, max) DEFUN_GSUBR_N(fn, max)
2342#define DEFUN_GSUBR_5(lname, fn, min, max) DEFUN_GSUBR_N(fn, max)
2343#define DEFUN_GSUBR_6(lname, fn, min, max) DEFUN_GSUBR_N(fn, max)
2344#define DEFUN_GSUBR_7(lname, fn, min, max) DEFUN_GSUBR_N(fn, max)
2345#define DEFUN_GSUBR_8(lname, fn, min, max) DEFUN_GSUBR_N(fn, max)
2346
2347#define DEFUN_GSUBR_UNEVALLED(lname, fn, minargs, maxargs) \
2348 Lisp_Object \
2349 gsubr_ ## fn (Lisp_Object rest) \
2350 { \
2351 Lisp_Object len = Flength (rest); \
2352 if (XINT (len) < minargs) \
2353 xsignal2 (Qwrong_number_of_arguments, \
2354 intern (lname), len); \
2355 return fn (rest); \
2356 }
2357#define DEFUN_GSUBR_MANY(lname, fn, minargs, maxargs) \
2358 Lisp_Object \
2359 gsubr_ ## fn (Lisp_Object rest) \
2360 { \
2361 int len = scm_to_int (scm_length (rest)); \
2362 Lisp_Object *args; \
2363 SAFE_ALLOCA_LISP (args, len); \
2364 int i; \
2365 for (i = 0; \
2366 i < len && scm_is_pair (rest); \
2367 i++, rest = SCM_CDR (rest)) \
2368 args[i] = SCM_CAR (rest); \
2369 if (i < minargs) \
2370 xsignal2 (Qwrong_number_of_arguments, \
2371 intern (lname), make_number (i)); \
2372 return fn (i, args); \
2373 }
c451d7b1
RS
2374
2375/* Note that the weird token-substitution semantics of ANSI C makes
99a3d506 2376 this work for MANY and UNEVALLED. */
f66c7cf8 2377#define DEFUN_ARGS_MANY (ptrdiff_t, Lisp_Object *)
c451d7b1
RS
2378#define DEFUN_ARGS_UNEVALLED (Lisp_Object)
2379#define DEFUN_ARGS_0 (void)
2380#define DEFUN_ARGS_1 (Lisp_Object)
2381#define DEFUN_ARGS_2 (Lisp_Object, Lisp_Object)
2382#define DEFUN_ARGS_3 (Lisp_Object, Lisp_Object, Lisp_Object)
2383#define DEFUN_ARGS_4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object)
2384#define DEFUN_ARGS_5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \
2385 Lisp_Object)
2386#define DEFUN_ARGS_6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \
2387 Lisp_Object, Lisp_Object)
2388#define DEFUN_ARGS_7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \
2389 Lisp_Object, Lisp_Object, Lisp_Object)
5593f7e3
KH
2390#define DEFUN_ARGS_8 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, \
2391 Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object)
276680c4 2392
d1c3da7b
BT
2393#define WRAP1(cfn, lfn) Lisp_Object cfn (Lisp_Object a) { return call1 (intern (lfn), a); }
2394#define WRAP2(cfn, lfn) Lisp_Object cfn (Lisp_Object a, Lisp_Object b) { return call2 (intern (lfn), a, b); }
2395
84575e67 2396/* True if OBJ is a Lisp function. */
00382e8b 2397INLINE bool
84575e67
PE
2398FUNCTIONP (Lisp_Object obj)
2399{
2400 return functionp (obj);
2401}
e2c0561e 2402
3cfe6dfd 2403/* defsubr (Sname);
d19b9aa8 2404 is how we define the symbol for function `name' at start-up time. */
62947569 2405extern void defsubr (const char *, scm_t_subr, short, short, const char *);
3cfe6dfd 2406
03a660a6
PE
2407enum maxargs
2408 {
2409 MANY = -2,
2410 UNEVALLED = -1
2411 };
3cfe6dfd 2412
ce5b453a
SM
2413extern void defvar_lisp (struct Lisp_Objfwd *, const char *, Lisp_Object *);
2414extern void defvar_lisp_nopro (struct Lisp_Objfwd *, const char *, Lisp_Object *);
f5d9e83a 2415extern void defvar_bool (struct Lisp_Boolfwd *, const char *, bool *);
ce5b453a
SM
2416extern void defvar_int (struct Lisp_Intfwd *, const char *, EMACS_INT *);
2417extern void defvar_kboard (struct Lisp_Kboard_Objfwd *, const char *, int);
3cfe6dfd
JB
2418
2419/* Macros we use to define forwarded Lisp variables.
29208e82 2420 These are used in the syms_of_FILENAME functions.
51b59d79 2421
29208e82
TT
2422 An ordinary (not in buffer_defaults, per-buffer, or per-keyboard)
2423 lisp variable is actually a field in `struct emacs_globals'. The
2424 field's name begins with "f_", which is a convention enforced by
2425 these macros. Each such global has a corresponding #define in
2426 globals.h; the plain name should be used in the code.
2427
2428 E.g., the global "cons_cells_consed" is declared as "int
2429 f_cons_cells_consed" in globals.h, but there is a define:
2430
2431 #define cons_cells_consed globals.f_cons_cells_consed
2432
2433 All C code uses the `cons_cells_consed' name. This is all done
2434 this way to support indirection for multi-threaded Emacs. */
3cfe6dfd 2435
ce5b453a
SM
2436#define DEFVAR_LISP(lname, vname, doc) \
2437 do { \
2438 static struct Lisp_Objfwd o_fwd; \
29208e82 2439 defvar_lisp (&o_fwd, lname, &globals.f_ ## vname); \
96c06863 2440 } while (false)
ce5b453a
SM
2441#define DEFVAR_LISP_NOPRO(lname, vname, doc) \
2442 do { \
2443 static struct Lisp_Objfwd o_fwd; \
29208e82 2444 defvar_lisp_nopro (&o_fwd, lname, &globals.f_ ## vname); \
96c06863 2445 } while (false)
ce5b453a
SM
2446#define DEFVAR_BOOL(lname, vname, doc) \
2447 do { \
2448 static struct Lisp_Boolfwd b_fwd; \
29208e82 2449 defvar_bool (&b_fwd, lname, &globals.f_ ## vname); \
96c06863 2450 } while (false)
ce5b453a
SM
2451#define DEFVAR_INT(lname, vname, doc) \
2452 do { \
2453 static struct Lisp_Intfwd i_fwd; \
29208e82 2454 defvar_int (&i_fwd, lname, &globals.f_ ## vname); \
96c06863 2455 } while (false)
92d2947b 2456
422745d0
TT
2457#define DEFVAR_BUFFER_DEFAULTS(lname, vname, doc) \
2458 do { \
2459 static struct Lisp_Objfwd o_fwd; \
eb4916d7 2460 defvar_lisp_nopro (&o_fwd, lname, &BVAR (&buffer_defaults, vname)); \
96c06863 2461 } while (false)
422745d0 2462
ce5b453a
SM
2463#define DEFVAR_KBOARD(lname, vname, doc) \
2464 do { \
2465 static struct Lisp_Kboard_Objfwd ko_fwd; \
437b2cb4 2466 defvar_kboard (&ko_fwd, lname, offsetof (KBOARD, vname ## _)); \
96c06863 2467 } while (false)
0328b6de
PE
2468\f
2469/* Save and restore the instruction and environment pointers,
2470 without affecting the signal mask. */
2471
2472#ifdef HAVE__SETJMP
2473typedef jmp_buf sys_jmp_buf;
2474# define sys_setjmp(j) _setjmp (j)
2475# define sys_longjmp(j, v) _longjmp (j, v)
2476#elif defined HAVE_SIGSETJMP
2477typedef sigjmp_buf sys_jmp_buf;
2478# define sys_setjmp(j) sigsetjmp (j, 0)
2479# define sys_longjmp(j, v) siglongjmp (j, v)
2480#else
7105c8cb
EZ
2481/* A platform that uses neither _longjmp nor siglongjmp; assume
2482 longjmp does not affect the sigmask. */
0328b6de
PE
2483typedef jmp_buf sys_jmp_buf;
2484# define sys_setjmp(j) setjmp (j)
2485# define sys_longjmp(j, v) longjmp (j, v)
2486#endif
df7cd53b 2487
3cfe6dfd 2488\f
2f592f95
SM
2489/* Elisp uses several stacks:
2490 - the C stack.
2491 - the bytecode stack: used internally by the bytecode interpreter.
2492 Allocated from the C stack.
2493 - The specpdl stack: keeps track of active unwind-protect and
2494 dynamic-let-bindings. Allocated from the `specpdl' array, a manually
2495 managed stack.
adf2aa61
SM
2496 - The handler stack: keeps track of active catch tags and condition-case
2497 handlers. Allocated in a manually managed stack implemented by a
2498 doubly-linked list allocated via xmalloc and never freed. */
2f592f95 2499
78ca380c
JB
2500/* Structure for recording Lisp call stack for backtrace purposes. */
2501
2502/* The special binding stack holds the outer values of variables while
2503 they are bound by a function application or a let form, stores the
2f592f95 2504 code to be executed for unwind-protect forms.
78ca380c 2505
9349e5f7 2506 NOTE: The specbinding union is defined here, because SPECPDL_INDEX is
2f592f95 2507 used all over the place, needs to be fast, and needs to know the size of
9349e5f7 2508 union specbinding. But only eval.c should access it. */
5fd6e274 2509
2f592f95 2510enum specbind_tag {
2f592f95
SM
2511 SPECPDL_BACKTRACE, /* An element of the backtrace. */
2512 SPECPDL_LET, /* A plain and simple dynamic let-binding. */
2513 /* Tags greater than SPECPDL_LET must be "subkinds" of LET. */
2514 SPECPDL_LET_LOCAL, /* A buffer-local let-binding. */
2515 SPECPDL_LET_DEFAULT /* A global binding for a localized var. */
2516};
2517
9349e5f7 2518union specbinding
3cfe6dfd 2519 {
9349e5f7 2520 ENUM_BF (specbind_tag) kind : CHAR_BIT;
a26b12fa
BT
2521 struct {
2522 ENUM_BF (specbind_tag) kind : CHAR_BIT;
2523 } frame;
9349e5f7
PE
2524 struct {
2525 ENUM_BF (specbind_tag) kind : CHAR_BIT;
5d1922cd 2526 bool wind_explicitly;
27e498e6 2527 void (*func) (Lisp_Object);
9349e5f7 2528 Lisp_Object arg;
9349e5f7 2529 } unwind;
27e498e6
PE
2530 struct {
2531 ENUM_BF (specbind_tag) kind : CHAR_BIT;
5d1922cd 2532 bool wind_explicitly;
27e498e6
PE
2533 void (*func) (void *);
2534 void *arg;
2535 } unwind_ptr;
2536 struct {
2537 ENUM_BF (specbind_tag) kind : CHAR_BIT;
5d1922cd 2538 bool wind_explicitly;
27e498e6
PE
2539 void (*func) (int);
2540 int arg;
2541 } unwind_int;
2542 struct {
2543 ENUM_BF (specbind_tag) kind : CHAR_BIT;
5d1922cd 2544 bool wind_explicitly;
27e498e6
PE
2545 void (*func) (void);
2546 } unwind_void;
9349e5f7
PE
2547 struct {
2548 ENUM_BF (specbind_tag) kind : CHAR_BIT;
2549 /* `where' is not used in the case of SPECPDL_LET. */
2550 Lisp_Object symbol, old_value, where;
2551 } let;
2552 struct {
2553 ENUM_BF (specbind_tag) kind : CHAR_BIT;
96c06863 2554 bool_bf debug_on_exit : 1;
9349e5f7
PE
2555 Lisp_Object function;
2556 Lisp_Object *args;
2557 ptrdiff_t nargs;
2558 } bt;
3cfe6dfd
JB
2559 };
2560
9349e5f7
PE
2561extern union specbinding *specpdl;
2562extern union specbinding *specpdl_ptr;
d311d28c 2563extern ptrdiff_t specpdl_size;
3cfe6dfd 2564
00382e8b 2565INLINE ptrdiff_t
84575e67
PE
2566SPECPDL_INDEX (void)
2567{
2568 return specpdl_ptr - specpdl;
2569}
acb8dc44 2570
adf2aa61
SM
2571/* This structure helps implement the `catch/throw' and `condition-case/signal'
2572 control structures. A struct handler contains all the information needed to
2573 restore the state of the interpreter after a non-local jump.
50f2e553 2574
adf2aa61
SM
2575 handler structures are chained together in a doubly linked list; the `next'
2576 member points to the next outer catchtag and the `nextfree' member points in
2577 the other direction to the next inner element (which is typically the next
2578 free element since we mostly use it on the deepest handler).
3cfe6dfd 2579
adf2aa61 2580 A call like (throw TAG VAL) searches for a catchtag whose `tag_or_ch'
d7306fe6
DN
2581 member is TAG, and then unbinds to it. The `val' member is used to
2582 hold VAL while the stack is unwound; `val' is returned as the value
2583 of the catch form.
2584
2585 All the other members are concerned with restoring the interpreter
50f2e553 2586 state.
d7306fe6 2587
50f2e553 2588 Members are volatile if their values need to survive _longjmp when
adf2aa61
SM
2589 a 'struct handler' is a local variable. */
2590
2591enum handlertype { CATCHER, CONDITION_CASE };
2592
2593struct handler
d7306fe6 2594{
adf2aa61 2595 enum handlertype type;
6376ba30 2596 Lisp_Object ptag;
adf2aa61
SM
2597 Lisp_Object tag_or_ch;
2598 Lisp_Object val;
6376ba30
BT
2599 Lisp_Object var;
2600 Lisp_Object body;
adf2aa61 2601 struct handler *next;
d311d28c 2602 EMACS_INT lisp_eval_depth;
d7306fe6 2603 int interrupt_input_blocked;
d7306fe6
DN
2604};
2605
22bbbd42
RS
2606extern Lisp_Object memory_signal_data;
2607
4742f524
RS
2608/* Check quit-flag and quit if it is non-nil.
2609 Typing C-g does not directly cause a quit; it only sets Vquit_flag.
2610 So the program needs to do QUIT at times when it is safe to quit.
2611 Every loop that might run for a long time or might not exit
2612 ought to do QUIT at least once, at a safe place.
2613 Unless that is impossible, of course.
2614 But it is very desirable to avoid creating loops where QUIT is impossible.
2615
96c06863 2616 Exception: if you set immediate_quit to true,
4742f524
RS
2617 then the handler that responds to the C-g does the quit itself.
2618 This is a good thing to do around a loop that has no side effects
6c07aac2
AS
2619 and (in particular) cannot call arbitrary Lisp code.
2620
2621 If quit-flag is set to `kill-emacs' the SIGINT handler has received
2622 a request to exit Emacs when it is safe to do. */
3cfe6dfd 2623
383e0970 2624extern void process_pending_signals (void);
88d69b7d 2625extern bool volatile pending_signals;
6b61353c 2626
7dbda6df 2627extern void process_quit_flag (void);
a69a6e61
GM
2628#define QUIT \
2629 do { \
2630 if (!NILP (Vquit_flag) && NILP (Vinhibit_quit)) \
6d5eb5b0 2631 process_quit_flag (); \
0caaedb1
PE
2632 else if (pending_signals) \
2633 process_pending_signals (); \
96c06863 2634 } while (false)
3cfe6dfd 2635
6b61353c 2636
96c06863 2637/* True if ought to quit now. */
3cfe6dfd 2638
efb859b4 2639#define QUITP (!NILP (Vquit_flag) && NILP (Vinhibit_quit))
3cfe6dfd 2640\f
31cd66f3
PE
2641extern Lisp_Object Vascii_downcase_table;
2642extern Lisp_Object Vascii_canon_table;
3cfe6dfd 2643\f
99a3d506 2644/* Structure for recording stack slots that need marking. */
3cfe6dfd 2645
78edd3b7
JB
2646/* This is a chain of structures, each of which points at a Lisp_Object
2647 variable whose value should be marked in garbage collection.
2648 Normally every link of the chain is an automatic variable of a function,
2649 and its `val' points to some argument or local variable of the function.
2650 On exit to the function, the chain is set back to the value it had on entry.
2651 This way, no link remains in the chain when the stack frame containing the
2652 link disappears.
3cfe6dfd 2653
78edd3b7
JB
2654 Every function that can call Feval must protect in this fashion all
2655 Lisp_Object variables whose contents will be used again. */
3cfe6dfd
JB
2656
2657extern struct gcpro *gcprolist;
2658
2659struct gcpro
834168ef
GM
2660{
2661 struct gcpro *next;
e2c0561e 2662
834168ef
GM
2663 /* Address of first protected variable. */
2664 volatile Lisp_Object *var;
e2c0561e 2665
834168ef 2666 /* Number of consecutive protected variables. */
f66c7cf8 2667 ptrdiff_t nvars;
e2c0561e 2668
4742f524 2669#ifdef DEBUG_GCPRO
834168ef 2670 int level;
4742f524 2671#endif
834168ef 2672};
3cfe6dfd 2673
9f0443f9 2674/* Do something silly with gcproN vars just so gcc shuts up. */
656c33dc 2675/* You get warnings from MIPSPro... */
9f0443f9 2676
dbf31225
PE
2677#define GCPRO1(varname) ((void) gcpro1)
2678#define GCPRO2(varname1, varname2) ((void) gcpro2, (void) gcpro1)
2679#define GCPRO3(varname1, varname2, varname3) \
2680 ((void) gcpro3, (void) gcpro2, (void) gcpro1)
2681#define GCPRO4(varname1, varname2, varname3, varname4) \
2682 ((void) gcpro4, (void) gcpro3, (void) gcpro2, (void) gcpro1)
2683#define GCPRO5(varname1, varname2, varname3, varname4, varname5) \
2684 ((void) gcpro5, (void) gcpro4, (void) gcpro3, (void) gcpro2, (void) gcpro1)
2685#define GCPRO6(varname1, varname2, varname3, varname4, varname5, varname6) \
2686 ((void) gcpro6, (void) gcpro5, (void) gcpro4, (void) gcpro3, (void) gcpro2, \
2687 (void) gcpro1)
518c40a2 2688#define GCPRO7(a, b, c, d, e, f, g) (GCPRO6 (a, b, c, d, e, f), (void) gcpro7)
dbf31225 2689#define UNGCPRO ((void) 0)
1216f5e4 2690
5db82c9d 2691/* Evaluate expr, UNGCPRO, and then return the value of expr. */
c47b8d02 2692#define RETURN_UNGCPRO(expr) \
96c06863 2693 do \
c47b8d02
RS
2694 { \
2695 Lisp_Object ret_ungc_val; \
2696 ret_ungc_val = (expr); \
2697 UNGCPRO; \
2698 return ret_ungc_val; \
2699 } \
96c06863 2700 while (false)
4742f524
RS
2701
2702/* Call staticpro (&var) to protect static variable `var'. */
2703
383e0970 2704void staticpro (Lisp_Object *);
3cfe6dfd 2705\f
2f69f2ec
RS
2706/* Declare a Lisp-callable function. The MAXARGS parameter has the same
2707 meaning as in the DEFUN macro, and is used to construct a prototype. */
2f69f2ec
RS
2708/* We can use the same trick as in the DEFUN macro to generate the
2709 appropriate prototype. */
2710#define EXFUN(fnname, maxargs) \
2711 extern Lisp_Object fnname DEFUN_ARGS_ ## maxargs
2f69f2ec 2712
84575e67
PE
2713#include "globals.h"
2714
526a2be7
AS
2715/* Forward declarations for prototypes. */
2716struct window;
2717struct frame;
2f69f2ec 2718
086ca913
DA
2719/* Copy COUNT Lisp_Objects from ARGS to contents of V starting from OFFSET. */
2720
00382e8b 2721INLINE void
086ca913
DA
2722vcopy (Lisp_Object v, ptrdiff_t offset, Lisp_Object *args, ptrdiff_t count)
2723{
7216e43b 2724 eassert (0 <= offset && 0 <= count && offset + count <= ASIZE (v));
91f2d272 2725 memcpy (XVECTOR (v)->contents + offset, args, count * sizeof *args);
086ca913
DA
2726}
2727
2728/* Functions to modify hash tables. */
2729
00382e8b 2730INLINE void
e83064be 2731set_hash_key_slot (struct Lisp_Hash_Table *h, ptrdiff_t idx, Lisp_Object val)
4939150c 2732{
8834c57a 2733 gc_aset (h->key_and_value, 2 * idx, val);
4939150c
PE
2734}
2735
00382e8b 2736INLINE void
e83064be 2737set_hash_value_slot (struct Lisp_Hash_Table *h, ptrdiff_t idx, Lisp_Object val)
4939150c 2738{
8834c57a 2739 gc_aset (h->key_and_value, 2 * idx + 1, val);
4939150c
PE
2740}
2741
c644523b
DA
2742/* Use these functions to set Lisp_Object
2743 or pointer slots of struct Lisp_Symbol. */
2744
00382e8b 2745INLINE void
c644523b
DA
2746set_symbol_function (Lisp_Object sym, Lisp_Object function)
2747{
d1c3da7b
BT
2748 scm_call_2 (scm_c_public_ref ("language elisp runtime", "set-symbol-function!"),
2749 sym, function);
c644523b
DA
2750}
2751
061cde10
BT
2752INLINE Lisp_Object
2753symbol_plist (Lisp_Object sym)
2754{
d1c3da7b
BT
2755 return scm_call_1 (scm_c_public_ref ("language elisp runtime", "symbol-plist"),
2756 sym);
061cde10
BT
2757}
2758
00382e8b 2759INLINE void
c644523b
DA
2760set_symbol_plist (Lisp_Object sym, Lisp_Object plist)
2761{
d1c3da7b
BT
2762 scm_call_2 (scm_c_public_ref ("language elisp runtime", "set-symbol-plist!"),
2763 sym, plist);
c644523b
DA
2764}
2765
a04e2c62
DA
2766/* Buffer-local (also frame-local) variable access functions. */
2767
00382e8b 2768INLINE int
a04e2c62
DA
2769blv_found (struct Lisp_Buffer_Local_Value *blv)
2770{
2771 eassert (blv->found == !EQ (blv->defcell, blv->valcell));
2772 return blv->found;
2773}
2774
c644523b
DA
2775/* Set overlay's property list. */
2776
00382e8b 2777INLINE void
c644523b
DA
2778set_overlay_plist (Lisp_Object overlay, Lisp_Object plist)
2779{
2780 XOVERLAY (overlay)->plist = plist;
2781}
2782
ad8c997f
DA
2783/* Get text properties of S. */
2784
00382e8b 2785INLINE INTERVAL
0c94c8d6 2786string_intervals (Lisp_Object s)
ad8c997f
DA
2787{
2788 return XSTRING (s)->intervals;
2789}
2790
2791/* Set text properties of S to I. */
2792
00382e8b 2793INLINE void
0c94c8d6 2794set_string_intervals (Lisp_Object s, INTERVAL i)
ad8c997f
DA
2795{
2796 XSTRING (s)->intervals = i;
2797}
2798
742af32f
PE
2799/* Set a Lisp slot in TABLE to VAL. Most code should use this instead
2800 of setting slots directly. */
2801
00382e8b 2802INLINE void
742af32f
PE
2803set_char_table_defalt (Lisp_Object table, Lisp_Object val)
2804{
2805 XCHAR_TABLE (table)->defalt = val;
2806}
00382e8b 2807INLINE void
742af32f
PE
2808set_char_table_purpose (Lisp_Object table, Lisp_Object val)
2809{
2810 XCHAR_TABLE (table)->purpose = val;
2811}
2812
a098c930
DA
2813/* Set different slots in (sub)character tables. */
2814
00382e8b 2815INLINE void
34dabdb7 2816set_char_table_extras (Lisp_Object table, ptrdiff_t idx, Lisp_Object val)
a098c930
DA
2817{
2818 eassert (0 <= idx && idx < CHAR_TABLE_EXTRA_SLOTS (XCHAR_TABLE (table)));
2819 XCHAR_TABLE (table)->extras[idx] = val;
2820}
2821
00382e8b 2822INLINE void
34dabdb7 2823set_char_table_contents (Lisp_Object table, ptrdiff_t idx, Lisp_Object val)
a098c930
DA
2824{
2825 eassert (0 <= idx && idx < (1 << CHARTAB_SIZE_BITS_0));
2826 XCHAR_TABLE (table)->contents[idx] = val;
2827}
2828
00382e8b 2829INLINE void
34dabdb7 2830set_sub_char_table_contents (Lisp_Object table, ptrdiff_t idx, Lisp_Object val)
a098c930
DA
2831{
2832 XSUB_CHAR_TABLE (table)->contents[idx] = val;
2833}
2834
f6d62986 2835/* Defined in data.c. */
73880000 2836extern Lisp_Object Qnil_, Qt_;
73bfe891 2837extern Lisp_Object Qquote, Qunbound;
3cfe6dfd 2838extern Lisp_Object Qerror_conditions, Qerror_message, Qtop_level;
955cbe7b 2839extern Lisp_Object Qerror, Qquit, Qargs_out_of_range;
3cfe6dfd 2840extern Lisp_Object Qvoid_variable, Qvoid_function;
955cbe7b 2841extern Lisp_Object Qinvalid_read_syntax;
3cfe6dfd 2842extern Lisp_Object Qinvalid_function, Qwrong_number_of_arguments, Qno_catch;
71873e2b 2843extern Lisp_Object Quser_error, Qend_of_file, Qarith_error, Qmark_inactive;
3cfe6dfd 2844extern Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only;
6b61353c 2845extern Lisp_Object Qtext_read_only;
e6cba650 2846extern Lisp_Object Qinteractive_form;
99f3388e 2847extern Lisp_Object Qcircular_list;
73bfe891
PE
2848extern Lisp_Object Qsequencep;
2849extern Lisp_Object Qchar_or_string_p, Qinteger_or_marker_p;
955cbe7b 2850extern Lisp_Object Qfboundp;
62947569 2851extern Lisp_Object Qspecial_operator;
6b61353c 2852
3cfe6dfd
JB
2853extern Lisp_Object Qcdr;
2854
c990426a 2855extern Lisp_Object Qrange_error, Qoverflow_error;
3cfe6dfd 2856
73bfe891 2857extern Lisp_Object Qnumber_or_marker_p;
6b61353c 2858
b52d6985 2859extern Lisp_Object Qbuffer, Qinteger, Qsymbol;
3cfe6dfd 2860
e7032e7c 2861/* Defined in data.c. */
383e0970 2862extern Lisp_Object indirect_function (Lisp_Object);
383e0970 2863extern Lisp_Object find_symbol_value (Lisp_Object);
ebb99847
BR
2864enum Arith_Comparison {
2865 ARITH_EQUAL,
2866 ARITH_NOTEQUAL,
2867 ARITH_LESS,
2868 ARITH_GRTR,
2869 ARITH_LESS_OR_EQUAL,
2870 ARITH_GRTR_OR_EQUAL
2871};
2872extern Lisp_Object arithcompare (Lisp_Object num1, Lisp_Object num2,
2873 enum Arith_Comparison comparison);
2f69f2ec 2874
be44ca6c
PE
2875/* Convert the integer I to an Emacs representation, either the integer
2876 itself, or a cons of two or three integers, or if all else fails a float.
2877 I should not have side effects. */
2878#define INTEGER_TO_CONS(i) \
2879 (! FIXNUM_OVERFLOW_P (i) \
2880 ? make_number (i) \
2881 : ! ((FIXNUM_OVERFLOW_P (INTMAX_MIN >> 16) \
2882 || FIXNUM_OVERFLOW_P (UINTMAX_MAX >> 16)) \
2883 && FIXNUM_OVERFLOW_P ((i) >> 16)) \
2884 ? Fcons (make_number ((i) >> 16), make_number ((i) & 0xffff)) \
2885 : ! ((FIXNUM_OVERFLOW_P (INTMAX_MIN >> 16 >> 24) \
2886 || FIXNUM_OVERFLOW_P (UINTMAX_MAX >> 16 >> 24)) \
2887 && FIXNUM_OVERFLOW_P ((i) >> 16 >> 24)) \
2888 ? Fcons (make_number ((i) >> 16 >> 24), \
2889 Fcons (make_number ((i) >> 16 & 0xffffff), \
2890 make_number ((i) & 0xffff))) \
2891 : make_float (i))
2892
2893/* Convert the Emacs representation CONS back to an integer of type
2894 TYPE, storing the result the variable VAR. Signal an error if CONS
2895 is not a valid representation or is out of range for TYPE. */
2896#define CONS_TO_INTEGER(cons, type, var) \
2897 (TYPE_SIGNED (type) \
2898 ? ((var) = cons_to_signed (cons, TYPE_MINIMUM (type), TYPE_MAXIMUM (type))) \
2899 : ((var) = cons_to_unsigned (cons, TYPE_MAXIMUM (type))))
2900extern intmax_t cons_to_signed (Lisp_Object, intmax_t, intmax_t);
2901extern uintmax_t cons_to_unsigned (Lisp_Object, uintmax_t);
2902
844e0de1 2903extern sym_t indirect_variable (sym_t );
845ca893
PE
2904extern _Noreturn void args_out_of_range (Lisp_Object, Lisp_Object);
2905extern _Noreturn void args_out_of_range_3 (Lisp_Object, Lisp_Object,
2906 Lisp_Object);
ce5b453a 2907extern Lisp_Object do_symval_forwarding (union Lisp_Fwd *);
de1339b0 2908extern void set_internal (Lisp_Object, Lisp_Object, Lisp_Object, bool);
383e0970 2909extern void syms_of_data (void);
844e0de1 2910extern void swap_in_global_binding (sym_t );
3cfe6dfd 2911
a37e10f9 2912/* Defined in cmds.c */
383e0970
J
2913extern void syms_of_cmds (void);
2914extern void keys_of_cmds (void);
a37e10f9 2915
e7032e7c 2916/* Defined in coding.c. */
2f7c71a1 2917extern Lisp_Object Qcharset;
d311d28c 2918extern Lisp_Object detect_coding_system (const unsigned char *, ptrdiff_t,
f10fe38f 2919 ptrdiff_t, bool, bool, Lisp_Object);
383e0970
J
2920extern void init_coding (void);
2921extern void init_coding_once (void);
2922extern void syms_of_coding (void);
1842abb2 2923
e7032e7c 2924/* Defined in character.c. */
d311d28c
PE
2925extern ptrdiff_t chars_in_text (const unsigned char *, ptrdiff_t);
2926extern ptrdiff_t multibyte_chars_in_text (const unsigned char *, ptrdiff_t);
2f7c71a1
AS
2927extern void syms_of_character (void);
2928
e7032e7c 2929/* Defined in charset.c. */
383e0970
J
2930extern void init_charset (void);
2931extern void init_charset_once (void);
2932extern void syms_of_charset (void);
8f924df7
KH
2933/* Structure forward declarations. */
2934struct charset;
5e741a41 2935
e7032e7c 2936/* Defined in syntax.c. */
383e0970
J
2937extern void init_syntax_once (void);
2938extern void syms_of_syntax (void);
a37e10f9 2939
e7032e7c 2940/* Defined in fns.c. */
99f3388e 2941extern Lisp_Object QCrehash_size, QCrehash_threshold;
ca9ce8f2 2942enum { NEXT_ALMOST_PRIME_LIMIT = 11 };
5994c183 2943extern EMACS_INT next_almost_prime (EMACS_INT) ATTRIBUTE_CONST;
d311d28c 2944extern Lisp_Object larger_vector (Lisp_Object, ptrdiff_t, ptrdiff_t);
383e0970 2945extern void sweep_weak_hash_tables (void);
e6cba650 2946extern Lisp_Object Qcursor_in_echo_area;
3cfe6dfd 2947extern Lisp_Object Qstring_lessp;
53371430 2948extern Lisp_Object QCsize, QCtest, QCweakness, Qequal, Qeq;
3cc5a532 2949EMACS_UINT hash_string (char const *, ptrdiff_t);
0de4bb68 2950EMACS_UINT sxhash (Lisp_Object, int);
b7432bb2
SM
2951Lisp_Object make_hash_table (struct hash_table_test, Lisp_Object, Lisp_Object,
2952 Lisp_Object, Lisp_Object);
d3411f89
PE
2953ptrdiff_t hash_lookup (struct Lisp_Hash_Table *, Lisp_Object, EMACS_UINT *);
2954ptrdiff_t hash_put (struct Lisp_Hash_Table *, Lisp_Object, Lisp_Object,
0de4bb68 2955 EMACS_UINT);
53371430 2956extern struct hash_table_test hashtest_eql, hashtest_equal;
51e12e8e
DA
2957extern void validate_subarray (Lisp_Object, Lisp_Object, Lisp_Object,
2958 ptrdiff_t, ptrdiff_t *, ptrdiff_t *);
d311d28c
PE
2959extern Lisp_Object substring_both (Lisp_Object, ptrdiff_t, ptrdiff_t,
2960 ptrdiff_t, ptrdiff_t);
6318cde0 2961extern Lisp_Object merge (Lisp_Object, Lisp_Object, Lisp_Object);
383e0970 2962extern Lisp_Object do_yes_or_no_p (Lisp_Object);
383e0970
J
2963extern Lisp_Object concat2 (Lisp_Object, Lisp_Object);
2964extern Lisp_Object concat3 (Lisp_Object, Lisp_Object, Lisp_Object);
2965extern Lisp_Object nconc2 (Lisp_Object, Lisp_Object);
2966extern Lisp_Object assq_no_quit (Lisp_Object, Lisp_Object);
2967extern Lisp_Object assoc_no_quit (Lisp_Object, Lisp_Object);
2968extern void clear_string_char_byte_cache (void);
d311d28c
PE
2969extern ptrdiff_t string_char_to_byte (Lisp_Object, ptrdiff_t);
2970extern ptrdiff_t string_byte_to_char (Lisp_Object, ptrdiff_t);
383e0970
J
2971extern Lisp_Object string_to_multibyte (Lisp_Object);
2972extern Lisp_Object string_make_unibyte (Lisp_Object);
42808ce3 2973extern void init_fns_once (void);
383e0970 2974extern void syms_of_fns (void);
2f69f2ec 2975
e7032e7c 2976/* Defined in floatfns.c. */
383e0970 2977extern void syms_of_floatfns (void);
3d608a86 2978extern Lisp_Object fmod_float (Lisp_Object x, Lisp_Object y);
3cfe6dfd 2979
e7032e7c 2980/* Defined in fringe.c. */
383e0970
J
2981extern void syms_of_fringe (void);
2982extern void init_fringe (void);
524c7aa6
PE
2983#ifdef HAVE_WINDOW_SYSTEM
2984extern void mark_fringe_data (void);
383e0970 2985extern void init_fringe_once (void);
524c7aa6 2986#endif /* HAVE_WINDOW_SYSTEM */
6b61353c 2987
e7032e7c 2988/* Defined in image.c. */
955cbe7b
PE
2989extern Lisp_Object QCascent, QCmargin, QCrelief;
2990extern Lisp_Object QCconversion;
0766b489 2991extern int x_bitmap_mask (struct frame *, ptrdiff_t);
aa15c6bb 2992extern void reset_image_types (void);
383e0970 2993extern void syms_of_image (void);
6b61353c 2994
e7032e7c 2995/* Defined in insdel.c. */
b8b31967 2996extern Lisp_Object Qinhibit_modification_hooks;
73bfe891 2997extern Lisp_Object Qregion_extract_function;
d311d28c 2998extern void move_gap_both (ptrdiff_t, ptrdiff_t);
845ca893 2999extern _Noreturn void buffer_overflow (void);
d311d28c 3000extern void make_gap (ptrdiff_t);
eefd7278 3001extern void make_gap_1 (struct buffer *, ptrdiff_t);
d311d28c 3002extern ptrdiff_t copy_text (const unsigned char *, unsigned char *,
a08d4ba7 3003 ptrdiff_t, bool, bool);
ae19ba7c 3004extern int count_combining_before (const unsigned char *,
d311d28c 3005 ptrdiff_t, ptrdiff_t, ptrdiff_t);
ae19ba7c 3006extern int count_combining_after (const unsigned char *,
d311d28c
PE
3007 ptrdiff_t, ptrdiff_t, ptrdiff_t);
3008extern void insert (const char *, ptrdiff_t);
3009extern void insert_and_inherit (const char *, ptrdiff_t);
d311d28c 3010extern void insert_1_both (const char *, ptrdiff_t, ptrdiff_t,
a08d4ba7 3011 bool, bool, bool);
8a44e6d1 3012extern void insert_from_gap (ptrdiff_t, ptrdiff_t, bool text_at_gap_tail);
d311d28c 3013extern void insert_from_string (Lisp_Object, ptrdiff_t, ptrdiff_t,
a08d4ba7
PE
3014 ptrdiff_t, ptrdiff_t, bool);
3015extern void insert_from_buffer (struct buffer *, ptrdiff_t, ptrdiff_t, bool);
ae19ba7c
SM
3016extern void insert_char (int);
3017extern void insert_string (const char *);
d311d28c
PE
3018extern void insert_before_markers (const char *, ptrdiff_t);
3019extern void insert_before_markers_and_inherit (const char *, ptrdiff_t);
3020extern void insert_from_string_before_markers (Lisp_Object, ptrdiff_t,
3021 ptrdiff_t, ptrdiff_t,
a08d4ba7 3022 ptrdiff_t, bool);
d311d28c 3023extern void del_range (ptrdiff_t, ptrdiff_t);
a08d4ba7
PE
3024extern Lisp_Object del_range_1 (ptrdiff_t, ptrdiff_t, bool, bool);
3025extern void del_range_byte (ptrdiff_t, ptrdiff_t, bool);
3026extern void del_range_both (ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t, bool);
d311d28c 3027extern Lisp_Object del_range_2 (ptrdiff_t, ptrdiff_t,
a08d4ba7 3028 ptrdiff_t, ptrdiff_t, bool);
00012b86 3029extern void modify_text (ptrdiff_t, ptrdiff_t);
d311d28c 3030extern void prepare_to_modify_buffer (ptrdiff_t, ptrdiff_t, ptrdiff_t *);
00012b86 3031extern void prepare_to_modify_buffer_1 (ptrdiff_t, ptrdiff_t, ptrdiff_t *);
37c790b3 3032extern void invalidate_buffer_caches (struct buffer *, ptrdiff_t, ptrdiff_t);
d311d28c
PE
3033extern void signal_after_change (ptrdiff_t, ptrdiff_t, ptrdiff_t);
3034extern void adjust_after_insert (ptrdiff_t, ptrdiff_t, ptrdiff_t,
3035 ptrdiff_t, ptrdiff_t);
3036extern void adjust_markers_for_delete (ptrdiff_t, ptrdiff_t,
3037 ptrdiff_t, ptrdiff_t);
a08d4ba7 3038extern void replace_range (ptrdiff_t, ptrdiff_t, Lisp_Object, bool, bool, bool);
d311d28c 3039extern void replace_range_2 (ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t,
a08d4ba7 3040 const char *, ptrdiff_t, ptrdiff_t, bool);
ae19ba7c 3041extern void syms_of_insdel (void);
c98adc1b 3042
e7032e7c 3043/* Defined in dispnew.c. */
9e4bf381
PE
3044#if (defined PROFILING \
3045 && (defined __FreeBSD__ || defined GNU_LINUX || defined __MINGW32__))
845ca893 3046_Noreturn void __executable_start (void);
9e4bf381 3047#endif
7684e57b 3048extern Lisp_Object Vwindow_system;
59ea14cd 3049extern Lisp_Object sit_for (Lisp_Object, bool, int);
1747fb16 3050
e7032e7c 3051/* Defined in xdisp.c. */
c6ae41f3 3052extern Lisp_Object Qinhibit_point_motion_hooks;
73bfe891 3053extern Lisp_Object Qinhibit_redisplay;
99f3388e 3054extern Lisp_Object Qmenu_bar_update_hook;
29208e82 3055extern Lisp_Object Qwindow_scroll_functions;
99f3388e 3056extern Lisp_Object Qoverriding_local_map, Qoverriding_terminal_local_map;
73bfe891 3057extern Lisp_Object Qtext, Qboth, Qboth_horiz, Qtext_image_horiz;
89dc303e 3058extern Lisp_Object Qspace, Qcenter, QCalign_to;
73bfe891 3059extern Lisp_Object Qbar, Qhbar, Qhollow;
99f3388e 3060extern Lisp_Object Qleft_margin, Qright_margin;
89dc303e 3061extern Lisp_Object QCdata, QCfile;
99f3388e 3062extern Lisp_Object QCmap;
e6cba650 3063extern Lisp_Object Qrisky_local_variable;
e08813d0 3064extern bool noninteractive_need_newline;
986113df 3065extern Lisp_Object echo_area_buffer[2];
89dc303e 3066extern void add_to_log (const char *, Lisp_Object, Lisp_Object);
383e0970
J
3067extern void check_message_stack (void);
3068extern void setup_echo_area_for_printing (int);
fce31d69 3069extern bool push_message (void);
27e498e6 3070extern void pop_message_unwind (void);
383e0970 3071extern Lisp_Object restore_message_unwind (Lisp_Object);
383e0970
J
3072extern void restore_message (void);
3073extern Lisp_Object current_message (void);
44ad1cf7 3074extern void clear_message (bool, bool);
1e973bc7 3075extern void message (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2);
a8fe7202
AS
3076extern void message1 (const char *);
3077extern void message1_nolog (const char *);
b09cca6a
SM
3078extern void message3 (Lisp_Object);
3079extern void message3_nolog (Lisp_Object);
0063fdb1 3080extern void message_dolog (const char *, ptrdiff_t, bool, bool);
a8fe7202 3081extern void message_with_string (const char *, Lisp_Object, int);
383e0970
J
3082extern void message_log_maybe_newline (void);
3083extern void update_echo_area (void);
d311d28c 3084extern void truncate_echo_area (ptrdiff_t);
383e0970 3085extern void redisplay (void);
c4bf5bc3 3086
383e0970
J
3087void set_frame_cursor_types (struct frame *, Lisp_Object);
3088extern void syms_of_xdisp (void);
3089extern void init_xdisp (void);
3090extern Lisp_Object safe_eval (Lisp_Object);
d311d28c 3091extern int pos_visible_p (struct window *, ptrdiff_t, int *,
383e0970 3092 int *, int *, int *, int *, int *);
c98adc1b 3093
e7032e7c 3094/* Defined in xsettings.c. */
383e0970 3095extern void syms_of_xsettings (void);
637fa988 3096
15b0ced5 3097/* Defined in vm-limit.c. */
261cb4bb 3098extern void memory_warnings (void *, void (*warnfun) (const char *));
9043c90a 3099
e7032e7c 3100/* Defined in alloc.c. */
383e0970 3101extern void check_pure_size (void);
73ebd38f 3102extern void free_misc (Lisp_Object);
413d18e7 3103extern void allocate_string_data (struct Lisp_String *, EMACS_INT, EMACS_INT);
a8fe7202 3104extern void malloc_warning (const char *);
845ca893
PE
3105extern _Noreturn void memory_full (size_t);
3106extern _Noreturn void buffer_memory_full (ptrdiff_t);
69003fd8 3107#if defined REL_ALLOC && !defined SYSTEM_MALLOC
84dfc8a7 3108extern void refill_memory_reserve (void);
69003fd8 3109#endif
50c77428 3110extern const char *pending_malloc_warning;
9730daca 3111extern Lisp_Object zero_vector;
2f7c71a1
AS
3112extern Lisp_Object list1 (Lisp_Object);
3113extern Lisp_Object list2 (Lisp_Object, Lisp_Object);
3114extern Lisp_Object list3 (Lisp_Object, Lisp_Object, Lisp_Object);
3115extern Lisp_Object list4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3116extern Lisp_Object list5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object,
3117 Lisp_Object);
3438fe21 3118enum constype {CONSTYPE_HEAP, CONSTYPE_PURE};
694b6c97 3119extern Lisp_Object listn (enum constype, ptrdiff_t, Lisp_Object, ...);
3de717bd
DA
3120
3121/* Build a frequently used 2/3/4-integer lists. */
3122
00382e8b 3123INLINE Lisp_Object
3de717bd
DA
3124list2i (EMACS_INT x, EMACS_INT y)
3125{
3126 return list2 (make_number (x), make_number (y));
3127}
3128
00382e8b 3129INLINE Lisp_Object
3de717bd
DA
3130list3i (EMACS_INT x, EMACS_INT y, EMACS_INT w)
3131{
3132 return list3 (make_number (x), make_number (y), make_number (w));
3133}
3134
00382e8b 3135INLINE Lisp_Object
3de717bd
DA
3136list4i (EMACS_INT x, EMACS_INT y, EMACS_INT w, EMACS_INT h)
3137{
3138 return list4 (make_number (x), make_number (y),
3139 make_number (w), make_number (h));
3140}
3141
2cf00efc
PE
3142extern Lisp_Object make_uninit_bool_vector (EMACS_INT);
3143extern Lisp_Object bool_vector_fill (Lisp_Object, Lisp_Object);
845ca893 3144extern _Noreturn void string_overflow (void);
d311d28c 3145extern Lisp_Object make_string (const char *, ptrdiff_t);
26bccfae
PE
3146extern Lisp_Object make_formatted_string (char *, const char *, ...)
3147 ATTRIBUTE_FORMAT_PRINTF (2, 3);
d311d28c 3148extern Lisp_Object make_unibyte_string (const char *, ptrdiff_t);
d7ea76b4
DA
3149
3150/* Make unibyte string from C string when the length isn't known. */
3151
00382e8b 3152INLINE Lisp_Object
d7ea76b4
DA
3153build_unibyte_string (const char *str)
3154{
3155 return make_unibyte_string (str, strlen (str));
3156}
3157
d311d28c 3158extern Lisp_Object make_multibyte_string (const char *, ptrdiff_t, ptrdiff_t);
0c90b9ee 3159extern Lisp_Object make_event_array (ptrdiff_t, Lisp_Object *);
413d18e7
EZ
3160extern Lisp_Object make_uninit_string (EMACS_INT);
3161extern Lisp_Object make_uninit_multibyte_string (EMACS_INT, EMACS_INT);
d311d28c 3162extern Lisp_Object make_string_from_bytes (const char *, ptrdiff_t, ptrdiff_t);
14162469 3163extern Lisp_Object make_specified_string (const char *,
fce31d69
PE
3164 ptrdiff_t, ptrdiff_t, bool);
3165extern Lisp_Object make_pure_string (const char *, ptrdiff_t, ptrdiff_t, bool);
2a0213a6
DA
3166extern Lisp_Object make_pure_c_string (const char *, ptrdiff_t);
3167
3168/* Make a string allocated in pure space, use STR as string data. */
3169
00382e8b 3170INLINE Lisp_Object
2a0213a6
DA
3171build_pure_c_string (const char *str)
3172{
3173 return make_pure_c_string (str, strlen (str));
3174}
1130ecfc
DA
3175
3176/* Make a string from the data at STR, treating it as multibyte if the
3177 data warrants. */
3178
00382e8b 3179INLINE Lisp_Object
1130ecfc
DA
3180build_string (const char *str)
3181{
3182 return make_string (str, strlen (str));
3183}
3184
383e0970 3185extern Lisp_Object pure_cons (Lisp_Object, Lisp_Object);
3017f87f 3186extern void make_byte_code (struct Lisp_Vector *);
7f73dc9d 3187extern Lisp_Object Qchar_table_extra_slots;
383e0970 3188extern struct Lisp_Vector *allocate_vector (EMACS_INT);
25721f5b 3189
8b17a8b9 3190/* Make an uninitialized vector for SIZE objects. NOTE: you must
25721f5b
DA
3191 be sure that GC cannot happen until the vector is completely
3192 initialized. E.g. the following code is likely to crash:
3193
3194 v = make_uninit_vector (3);
3195 ASET (v, 0, obj0);
3196 ASET (v, 1, Ffunction_can_gc ());
3197 ASET (v, 2, obj1); */
3198
00382e8b 3199INLINE Lisp_Object
25721f5b
DA
3200make_uninit_vector (ptrdiff_t size)
3201{
3202 Lisp_Object v;
3203 struct Lisp_Vector *p;
3204
3205 p = allocate_vector (size);
3206 XSETVECTOR (v, p);
3207 return v;
3208}
3209
914adc42 3210extern struct Lisp_Vector *allocate_pseudovector (int, int, enum pvec_type);
30f95089
SM
3211#define ALLOCATE_PSEUDOVECTOR(typ,field,tag) \
3212 ((typ*) \
3213 allocate_pseudovector \
3214 (VECSIZE (typ), PSEUDOVECSIZE (typ, field), tag))
383e0970
J
3215extern struct Lisp_Hash_Table *allocate_hash_table (void);
3216extern struct window *allocate_window (void);
3217extern struct frame *allocate_frame (void);
3218extern struct Lisp_Process *allocate_process (void);
3219extern struct terminal *allocate_terminal (void);
383e0970
J
3220extern Lisp_Object make_float (double);
3221extern void display_malloc_warning (void);
1396ac86
PE
3222extern Lisp_Object make_save_int_int_int (ptrdiff_t, ptrdiff_t, ptrdiff_t);
3223extern Lisp_Object make_save_obj_obj_obj_obj (Lisp_Object, Lisp_Object,
3224 Lisp_Object, Lisp_Object);
3225extern Lisp_Object make_save_ptr (void *);
3226extern Lisp_Object make_save_ptr_int (void *, ptrdiff_t);
3227extern Lisp_Object make_save_ptr_ptr (void *, void *);
3228extern Lisp_Object make_save_funcptr_ptr_obj (void (*) (void), void *,
3229 Lisp_Object);
3230extern Lisp_Object make_save_memory (Lisp_Object *, ptrdiff_t);
27e498e6 3231extern void free_save_value (Lisp_Object);
d7a7fda3 3232extern Lisp_Object build_overlay (Lisp_Object, Lisp_Object, Lisp_Object);
383e0970
J
3233extern void init_alloc_once (void);
3234extern void init_alloc (void);
3235extern void syms_of_alloc (void);
3236extern struct buffer * allocate_buffer (void);
3237extern int valid_lisp_object_p (Lisp_Object);
8d3103b1 3238extern int relocatable_string_data_p (const char *);
3cfe6dfd 3239
a041960a 3240#ifdef REL_ALLOC
e7032e7c 3241/* Defined in ralloc.c. */
74fde0f4 3242extern void *r_alloc (void **, size_t) ATTRIBUTE_ALLOC_SIZE ((2));
a041960a 3243extern void r_alloc_free (void **);
74fde0f4 3244extern void *r_re_alloc (void **, size_t) ATTRIBUTE_ALLOC_SIZE ((2));
a041960a 3245extern void r_alloc_reset_variable (void **, void **);
57b81a9f 3246extern void r_alloc_inhibit_buffer_relocation (int);
a041960a
PE
3247#endif
3248
e7032e7c 3249/* Defined in chartab.c. */
383e0970 3250extern Lisp_Object copy_char_table (Lisp_Object);
383e0970
J
3251extern Lisp_Object char_table_ref_and_range (Lisp_Object, int,
3252 int *, int *);
e757f1c6 3253extern void char_table_set_range (Lisp_Object, int, int, Lisp_Object);
383e0970
J
3254extern void map_char_table (void (*) (Lisp_Object, Lisp_Object,
3255 Lisp_Object),
3256 Lisp_Object, Lisp_Object, Lisp_Object);
e6cba650
DN
3257extern void map_char_table_for_charset (void (*c_function) (Lisp_Object, Lisp_Object),
3258 Lisp_Object, Lisp_Object,
3259 Lisp_Object, struct charset *,
3260 unsigned, unsigned);
5cc7f7af 3261extern Lisp_Object uniprop_table (Lisp_Object);
383e0970 3262extern void syms_of_chartab (void);
1842abb2 3263
e7032e7c 3264/* Defined in print.c. */
3cfe6dfd 3265extern Lisp_Object Vprin1_to_string_buffer;
42c8bc9b 3266extern void debug_print (Lisp_Object) EXTERNALLY_VISIBLE;
29208e82 3267extern Lisp_Object Qstandard_output;
9453ea7b 3268extern Lisp_Object Qexternal_debugging_output;
383e0970 3269extern void temp_output_buffer_setup (const char *);
29208e82 3270extern int print_level;
3cfe6dfd 3271extern Lisp_Object Qprint_escape_newlines;
a8fe7202 3272extern void write_string (const char *, int);
a8fe7202
AS
3273extern void print_error_message (Lisp_Object, Lisp_Object, const char *,
3274 Lisp_Object);
526a2be7 3275extern Lisp_Object internal_with_output_to_temp_buffer
383e0970 3276 (const char *, Lisp_Object (*) (Lisp_Object), Lisp_Object);
1915d8d6 3277#define FLOAT_TO_STRING_BUFSIZE 350
99027bdd 3278extern int float_to_string (char *, double);
cf4bb06d 3279extern void init_print_once (void);
383e0970 3280extern void syms_of_print (void);
526a2be7 3281
e7032e7c 3282/* Defined in doprnt.c. */
c2d1e36d
PE
3283extern ptrdiff_t doprnt (char *, ptrdiff_t, const char *, const char *,
3284 va_list);
62f19c19
PE
3285extern ptrdiff_t esprintf (char *, char const *, ...)
3286 ATTRIBUTE_FORMAT_PRINTF (2, 3);
62f19c19
PE
3287extern ptrdiff_t exprintf (char **, ptrdiff_t *, char const *, ptrdiff_t,
3288 char const *, ...)
3289 ATTRIBUTE_FORMAT_PRINTF (5, 6);
3290extern ptrdiff_t evxprintf (char **, ptrdiff_t *, char const *, ptrdiff_t,
3291 char const *, va_list)
3292 ATTRIBUTE_FORMAT_PRINTF (5, 0);
e6c3da20 3293
ea6c7ae6 3294/* Defined in lread.c. */
3cfe6dfd 3295extern Lisp_Object Qvariable_documentation, Qstandard_input;
99f3388e 3296extern Lisp_Object Qbackquote, Qcomma, Qcomma_at, Qcomma_dot, Qfunction;
a411ac43 3297extern Lisp_Object Qlexical_binding;
383e0970 3298extern Lisp_Object check_obarray (Lisp_Object);
e8df9267
DA
3299extern Lisp_Object intern_1 (const char *, ptrdiff_t);
3300extern Lisp_Object intern_c_string_1 (const char *, ptrdiff_t);
d23d13c0 3301extern Lisp_Object obhash (Lisp_Object);
00382e8b 3302INLINE void
84575e67
PE
3303LOADHIST_ATTACH (Lisp_Object x)
3304{
3305 if (initialized)
3306 Vcurrent_load_list = Fcons (x, Vcurrent_load_list);
3307}
383e0970 3308extern int openp (Lisp_Object, Lisp_Object, Lisp_Object,
518c40a2 3309 Lisp_Object *, Lisp_Object, bool);
7cded46f 3310extern Lisp_Object string_to_number (char const *, int, bool);
383e0970
J
3311extern void map_obarray (Lisp_Object, void (*) (Lisp_Object, Lisp_Object),
3312 Lisp_Object);
a8fe7202 3313extern void dir_warning (const char *, Lisp_Object);
383e0970
J
3314extern void init_obarray (void);
3315extern void init_lread (void);
3316extern void syms_of_lread (void);
3cfe6dfd 3317
00382e8b 3318INLINE Lisp_Object
e8df9267
DA
3319intern (const char *str)
3320{
3321 return intern_1 (str, strlen (str));
3322}
3323
00382e8b 3324INLINE Lisp_Object
e8df9267
DA
3325intern_c_string (const char *str)
3326{
3327 return intern_c_string_1 (str, strlen (str));
3328}
3329
f6d62986 3330/* Defined in eval.c. */
73bfe891 3331extern Lisp_Object Qexit, Qinteractive, Qcommandp, Qmacro;
a411ac43 3332extern Lisp_Object Qinhibit_quit, Qinternal_interpreter_environment, Qclosure;
955cbe7b 3333extern Lisp_Object Qand_rest;
3cfe6dfd 3334extern Lisp_Object Vautoload_queue;
fab88cb7 3335extern Lisp_Object Vsignaling_function;
d1f55f16 3336extern Lisp_Object inhibit_lisp_code;
244ed907 3337extern struct handler *handlerlist;
adf2aa61 3338
f1b6e5fc
SM
3339/* To run a normal hook, use the appropriate function from the list below.
3340 The calling convention:
3341
846d69ac 3342 if (!NILP (Vrun_hooks))
f1b6e5fc
SM
3343 call1 (Vrun_hooks, Qmy_funny_hook);
3344
3345 should no longer be used. */
3cfe6dfd 3346extern Lisp_Object Vrun_hooks;
383e0970 3347extern void run_hook_with_args_2 (Lisp_Object, Lisp_Object, Lisp_Object);
f66c7cf8 3348extern Lisp_Object run_hook_with_args (ptrdiff_t nargs, Lisp_Object *args,
f6d62986 3349 Lisp_Object (*funcall)
f66c7cf8 3350 (ptrdiff_t nargs, Lisp_Object *args));
845ca893
PE
3351extern _Noreturn void xsignal (Lisp_Object, Lisp_Object);
3352extern _Noreturn void xsignal0 (Lisp_Object);
3353extern _Noreturn void xsignal1 (Lisp_Object, Lisp_Object);
3354extern _Noreturn void xsignal2 (Lisp_Object, Lisp_Object, Lisp_Object);
3355extern _Noreturn void xsignal3 (Lisp_Object, Lisp_Object, Lisp_Object,
3356 Lisp_Object);
3357extern _Noreturn void signal_error (const char *, Lisp_Object);
defb1411 3358extern Lisp_Object eval_sub (Lisp_Object form);
c0ff0ac2 3359extern Lisp_Object Ffuncall (ptrdiff_t nargs, Lisp_Object *args);
383e0970
J
3360extern Lisp_Object apply1 (Lisp_Object, Lisp_Object);
3361extern Lisp_Object call0 (Lisp_Object);
3362extern Lisp_Object call1 (Lisp_Object, Lisp_Object);
3363extern Lisp_Object call2 (Lisp_Object, Lisp_Object, Lisp_Object);
3364extern Lisp_Object call3 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3365extern Lisp_Object call4 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3366extern Lisp_Object call5 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3367extern Lisp_Object call6 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
3368extern Lisp_Object call7 (Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object);
383e0970
J
3369extern Lisp_Object internal_catch (Lisp_Object, Lisp_Object (*) (Lisp_Object), Lisp_Object);
3370extern Lisp_Object internal_lisp_condition_case (Lisp_Object, Lisp_Object, Lisp_Object);
3371extern Lisp_Object internal_condition_case (Lisp_Object (*) (void), Lisp_Object, Lisp_Object (*) (Lisp_Object));
3372extern Lisp_Object internal_condition_case_1 (Lisp_Object (*) (Lisp_Object), Lisp_Object, Lisp_Object, Lisp_Object (*) (Lisp_Object));
3373extern Lisp_Object internal_condition_case_2 (Lisp_Object (*) (Lisp_Object, Lisp_Object), Lisp_Object, Lisp_Object, Lisp_Object, Lisp_Object (*) (Lisp_Object));
cc92c454
SM
3374extern Lisp_Object internal_condition_case_n
3375 (Lisp_Object (*) (ptrdiff_t, Lisp_Object *), ptrdiff_t, Lisp_Object *,
3376 Lisp_Object, Lisp_Object (*) (Lisp_Object, ptrdiff_t, Lisp_Object *));
383e0970 3377extern void specbind (Lisp_Object, Lisp_Object);
5d1922cd 3378extern void record_unwind_protect_1 (void (*) (Lisp_Object), Lisp_Object, bool);
27e498e6 3379extern void record_unwind_protect (void (*) (Lisp_Object), Lisp_Object);
5d1922cd 3380extern void record_unwind_protect_ptr_1 (void (*) (void *), void *, bool);
27e498e6 3381extern void record_unwind_protect_ptr (void (*) (void *), void *);
5d1922cd 3382extern void record_unwind_protect_int_1 (void (*) (int), int, bool);
94fcd171 3383extern void record_unwind_protect_int (void (*) (int), int);
5d1922cd 3384extern void record_unwind_protect_void_1 (void (*) (void), bool);
27e498e6 3385extern void record_unwind_protect_void (void (*) (void));
a26b12fa
BT
3386extern void dynwind_begin (void);
3387extern void dynwind_end (void);
845ca893
PE
3388extern _Noreturn void error (const char *, ...) ATTRIBUTE_FORMAT_PRINTF (1, 2);
3389extern _Noreturn void verror (const char *, va_list)
3390 ATTRIBUTE_FORMAT_PRINTF (1, 0);
27e498e6 3391extern void un_autoload (Lisp_Object);
7f7e0167 3392extern Lisp_Object call_debugger (Lisp_Object arg);
383e0970 3393extern void init_eval_once (void);
6cd7a139 3394extern Lisp_Object safe_call (ptrdiff_t, Lisp_Object, ...);
383e0970 3395extern Lisp_Object safe_call1 (Lisp_Object, Lisp_Object);
58555d81 3396extern Lisp_Object safe_call2 (Lisp_Object, Lisp_Object, Lisp_Object);
383e0970
J
3397extern void init_eval (void);
3398extern void syms_of_eval (void);
27e498e6 3399extern void unwind_body (Lisp_Object);
2f592f95
SM
3400extern void record_in_backtrace (Lisp_Object function,
3401 Lisp_Object *args, ptrdiff_t nargs);
3402extern void mark_specpdl (void);
3403extern void get_backtrace (Lisp_Object array);
3404Lisp_Object backtrace_top_function (void);
844e0de1 3405extern bool let_shadows_buffer_binding_p (sym_t symbol);
2f592f95 3406extern bool let_shadows_global_binding_p (Lisp_Object symbol);
6376ba30
BT
3407extern _Noreturn SCM abort_to_prompt (SCM, SCM);
3408extern SCM call_with_prompt (SCM, SCM, SCM);
3409extern SCM make_prompt_tag (void);
2f592f95 3410
3cfe6dfd 3411
7abaf5cc 3412/* Defined in editfns.c. */
e6cba650 3413extern Lisp_Object Qfield;
383e0970 3414extern void insert1 (Lisp_Object);
a8fe7202 3415extern Lisp_Object format2 (const char *, Lisp_Object, Lisp_Object);
383e0970
J
3416extern Lisp_Object save_excursion_save (void);
3417extern Lisp_Object save_restriction_save (void);
27e498e6
PE
3418extern void save_excursion_restore (Lisp_Object);
3419extern void save_restriction_restore (Lisp_Object);
845ca893 3420extern _Noreturn void time_overflow (void);
a08d4ba7 3421extern Lisp_Object make_buffer_string (ptrdiff_t, ptrdiff_t, bool);
d311d28c 3422extern Lisp_Object make_buffer_string_both (ptrdiff_t, ptrdiff_t, ptrdiff_t,
a08d4ba7 3423 ptrdiff_t, bool);
383e0970
J
3424extern void init_editfns (void);
3425extern void syms_of_editfns (void);
a8fe7202 3426extern void set_time_zone_rule (const char *);
3cfe6dfd 3427
7abaf5cc 3428/* Defined in buffer.c. */
37ef52bb 3429extern bool mouse_face_overlay_overlaps (Lisp_Object);
845ca893 3430extern _Noreturn void nsberror (Lisp_Object);
d311d28c
PE
3431extern void adjust_overlays_for_insert (ptrdiff_t, ptrdiff_t);
3432extern void adjust_overlays_for_delete (ptrdiff_t, ptrdiff_t);
3433extern void fix_start_end_in_overlays (ptrdiff_t, ptrdiff_t);
37ef52bb 3434extern void report_overlay_modification (Lisp_Object, Lisp_Object, bool,
383e0970 3435 Lisp_Object, Lisp_Object, Lisp_Object);
37ef52bb 3436extern bool overlay_touches_p (ptrdiff_t);
9397e56f 3437extern Lisp_Object other_buffer_safely (Lisp_Object);
383e0970 3438extern Lisp_Object get_truename_buffer (Lisp_Object);
383e0970 3439extern void init_buffer_once (void);
0bbb27fc 3440extern void init_buffer (int);
383e0970
J
3441extern void syms_of_buffer (void);
3442extern void keys_of_buffer (void);
3cfe6dfd 3443
7abaf5cc 3444/* Defined in marker.c. */
3cfe6dfd 3445
d311d28c
PE
3446extern ptrdiff_t marker_position (Lisp_Object);
3447extern ptrdiff_t marker_byte_position (Lisp_Object);
383e0970 3448extern void clear_charpos_cache (struct buffer *);
d311d28c
PE
3449extern ptrdiff_t buf_charpos_to_bytepos (struct buffer *, ptrdiff_t);
3450extern ptrdiff_t buf_bytepos_to_charpos (struct buffer *, ptrdiff_t);
eeaea515 3451extern void unchain_marker (struct Lisp_Marker *marker);
383e0970 3452extern Lisp_Object set_marker_restricted (Lisp_Object, Lisp_Object, Lisp_Object);
d311d28c 3453extern Lisp_Object set_marker_both (Lisp_Object, Lisp_Object, ptrdiff_t, ptrdiff_t);
383e0970 3454extern Lisp_Object set_marker_restricted_both (Lisp_Object, Lisp_Object,
eeaea515 3455 ptrdiff_t, ptrdiff_t);
657924ff 3456extern Lisp_Object build_marker (struct buffer *, ptrdiff_t, ptrdiff_t);
383e0970 3457extern void syms_of_marker (void);
3cfe6dfd 3458
e7032e7c 3459/* Defined in fileio.c. */
3cfe6dfd
JB
3460
3461extern Lisp_Object Qfile_error;
86dfb7a8 3462extern Lisp_Object Qfile_notify_error;
99f3388e 3463extern Lisp_Object Qfile_exists_p;
e6cba650
DN
3464extern Lisp_Object Qfile_directory_p;
3465extern Lisp_Object Qinsert_file_contents;
7684e57b 3466extern Lisp_Object Qfile_name_history;
383e0970 3467extern Lisp_Object expand_and_dir_to_file (Lisp_Object, Lisp_Object);
94fcd171
PE
3468extern Lisp_Object write_region (Lisp_Object, Lisp_Object, Lisp_Object,
3469 Lisp_Object, Lisp_Object, Lisp_Object,
3470 Lisp_Object, int);
27e498e6 3471extern void close_file_unwind (int);
5d1922cd 3472extern void close_file_ptr_unwind (void *);
f4b1eb36 3473extern void fclose_unwind (void *);
5d1922cd 3474extern void fclose_ptr_unwind (void *);
27e498e6 3475extern void restore_point_unwind (Lisp_Object);
a773ed9a 3476extern _Noreturn void report_file_errno (const char *, Lisp_Object, int);
845ca893 3477extern _Noreturn void report_file_error (const char *, Lisp_Object);
7d80ea23 3478extern bool internal_delete_file (Lisp_Object);
8654f9d7 3479extern Lisp_Object emacs_readlinkat (int, const char *);
73dcdb9f
PE
3480extern bool file_directory_p (const char *);
3481extern bool file_accessible_directory_p (const char *);
9fe43ff6 3482extern void init_fileio (void);
383e0970 3483extern void syms_of_fileio (void);
f75d7a91 3484extern Lisp_Object make_temp_name (Lisp_Object, bool);
b86cfd28 3485extern Lisp_Object Qdelete_file;
3cfe6dfd 3486
e7032e7c 3487/* Defined in search.c. */
383e0970 3488extern void shrink_regexp_cache (void);
383e0970 3489extern void restore_search_regs (void);
383e0970 3490extern void record_unwind_save_match_data (void);
dbd37a95
PE
3491struct re_registers;
3492extern struct re_pattern_buffer *compile_pattern (Lisp_Object,
3493 struct re_registers *,
457882c2 3494 Lisp_Object, bool, bool);
d311d28c 3495extern ptrdiff_t fast_string_match (Lisp_Object, Lisp_Object);
d923b542
DA
3496extern ptrdiff_t fast_c_string_match_ignore_case (Lisp_Object, const char *,
3497 ptrdiff_t);
d311d28c
PE
3498extern ptrdiff_t fast_string_match_ignore_case (Lisp_Object, Lisp_Object);
3499extern ptrdiff_t fast_looking_at (Lisp_Object, ptrdiff_t, ptrdiff_t,
3500 ptrdiff_t, ptrdiff_t, Lisp_Object);
b5426561
DA
3501extern ptrdiff_t find_newline (ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t,
3502 ptrdiff_t, ptrdiff_t *, ptrdiff_t *, bool);
d2b36813
DA
3503extern ptrdiff_t scan_newline (ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t,
3504 ptrdiff_t, bool);
b5426561
DA
3505extern ptrdiff_t find_newline_no_quit (ptrdiff_t, ptrdiff_t,
3506 ptrdiff_t, ptrdiff_t *);
2a14a4f1
DA
3507extern ptrdiff_t find_before_next_newline (ptrdiff_t, ptrdiff_t,
3508 ptrdiff_t, ptrdiff_t *);
383e0970
J
3509extern void syms_of_search (void);
3510extern void clear_regexp_cache (void);
3cfe6dfd 3511
464d5a5e 3512/* Defined in minibuf.c. */
3cfe6dfd 3513
e6cba650 3514extern Lisp_Object Qcompletion_ignore_case;
99f3388e 3515extern Lisp_Object Vminibuffer_list;
3cfe6dfd 3516extern Lisp_Object last_minibuf_string;
62f19c19 3517extern Lisp_Object get_minibuffer (EMACS_INT);
383e0970
J
3518extern void init_minibuf_once (void);
3519extern void syms_of_minibuf (void);
3cfe6dfd 3520
464d5a5e 3521/* Defined in callint.c. */
3cfe6dfd 3522
29208e82 3523extern Lisp_Object Qminus, Qplus;
12b1389c 3524extern Lisp_Object Qprogn;
99f3388e 3525extern Lisp_Object Qwhen;
6e65b9cc 3526extern Lisp_Object Qmouse_leave_buffer_hook;
383e0970 3527extern void syms_of_callint (void);
3cfe6dfd 3528
464d5a5e 3529/* Defined in casefiddle.c. */
3cfe6dfd 3530
99f3388e 3531extern Lisp_Object Qidentity;
383e0970
J
3532extern void syms_of_casefiddle (void);
3533extern void keys_of_casefiddle (void);
3cfe6dfd 3534
464d5a5e 3535/* Defined in casetab.c. */
1747fb16 3536
383e0970
J
3537extern void init_casetab_once (void);
3538extern void syms_of_casetab (void);
1747fb16 3539
464d5a5e 3540/* Defined in keyboard.c. */
3cfe6dfd 3541
54cd1651 3542extern Lisp_Object echo_message_buffer;
417750de 3543extern struct kboard *echo_kboard;
383e0970 3544extern void cancel_echoing (void);
1425dcb6 3545extern Lisp_Object Qdisabled, QCfilter;
73bfe891 3546extern Lisp_Object Qup, Qdown;
464d5a5e 3547extern Lisp_Object last_undo_boundary;
9fa1de30 3548extern bool input_pending;
383e0970
J
3549extern Lisp_Object menu_bar_items (Lisp_Object);
3550extern Lisp_Object tool_bar_items (Lisp_Object, int *);
383e0970 3551extern void discard_mouse_events (void);
4d7e6e51
PE
3552#ifdef USABLE_SIGIO
3553void handle_input_available_signal (int);
3554#endif
58555d81 3555extern Lisp_Object pending_funcalls;
9fa1de30
PE
3556extern bool detect_input_pending (void);
3557extern bool detect_input_pending_ignore_squeezables (void);
3558extern bool detect_input_pending_run_timers (bool);
383e0970 3559extern void safe_run_hooks (Lisp_Object);
a8fe7202 3560extern void cmd_error_internal (Lisp_Object, const char *);
383e0970 3561extern Lisp_Object command_loop_1 (void);
3b158d11 3562extern Lisp_Object read_menu_command (void);
383e0970
J
3563extern Lisp_Object recursive_edit_1 (void);
3564extern void record_auto_save (void);
4752793e 3565extern void force_auto_save_soon (void);
383e0970
J
3566extern void init_keyboard (void);
3567extern void syms_of_keyboard (void);
3568extern void keys_of_keyboard (void);
3cfe6dfd 3569
464d5a5e 3570/* Defined in indent.c. */
d311d28c 3571extern ptrdiff_t current_column (void);
383e0970 3572extern void invalidate_current_column (void);
578098f3 3573extern bool indented_beyond_p (ptrdiff_t, ptrdiff_t, EMACS_INT);
383e0970 3574extern void syms_of_indent (void);
3cfe6dfd 3575
464d5a5e 3576/* Defined in frame.c. */
9fb0c957 3577extern Lisp_Object Qonly, Qnone;
880e6158 3578extern void set_frame_param (struct frame *, Lisp_Object, Lisp_Object);
383e0970
J
3579extern void store_frame_param (struct frame *, Lisp_Object, Lisp_Object);
3580extern void store_in_alist (Lisp_Object *, Lisp_Object, Lisp_Object);
3581extern Lisp_Object do_switch_frame (Lisp_Object, int, int, Lisp_Object);
3582extern Lisp_Object get_frame_param (struct frame *, Lisp_Object);
383e0970 3583extern void frames_discard_buffer (Lisp_Object);
383e0970 3584extern void syms_of_frame (void);
3cfe6dfd 3585
464d5a5e 3586/* Defined in emacs.c. */
99f3388e
DN
3587extern char **initial_argv;
3588extern int initial_argc;
5e617bc2 3589#if defined (HAVE_X_WINDOWS) || defined (HAVE_NS)
1882aa38 3590extern bool display_arg;
89dc303e 3591#endif
17e0445b 3592extern Lisp_Object decode_env_path (const char *, const char *, bool);
2c668b9a 3593extern Lisp_Object empty_unibyte_string, empty_multibyte_string;
e6cba650 3594extern Lisp_Object Qfile_name_handler_alist;
4d7e6e51 3595extern _Noreturn void terminate_due_to_signal (int, int);
6c07aac2 3596extern Lisp_Object Qkill_emacs;
aa15c6bb
JB
3597#ifdef WINDOWSNT
3598extern Lisp_Object Vlibrary_cache;
3599#endif
68c45bf0 3600#if HAVE_SETLOCALE
383e0970
J
3601void fixup_locale (void);
3602void synchronize_system_messages_locale (void);
3603void synchronize_system_time_locale (void);
68c45bf0 3604#else
00382e8b
PE
3605INLINE void fixup_locale (void) {}
3606INLINE void synchronize_system_messages_locale (void) {}
3607INLINE void synchronize_system_time_locale (void) {}
68c45bf0 3608#endif
1882aa38 3609extern void shut_down_emacs (int, Lisp_Object);
ff808935 3610
1882aa38
PE
3611/* True means don't do interactive redisplay and don't change tty modes. */
3612extern bool noninteractive;
3613
3614/* True means remove site-lisp directories from load-path. */
3615extern bool no_site_lisp;
66b7b0fe 3616
ff808935
DN
3617/* Pipe used to send exit notification to the daemon parent at
3618 startup. */
3619extern int daemon_pipe[2];
3620#define IS_DAEMON (daemon_pipe[1] != 0)
3621
1882aa38
PE
3622/* True if handling a fatal error already. */
3623extern bool fatal_error_in_progress;
3624
3625/* True means don't do use window-system-specific display code. */
3626extern bool inhibit_window_system;
3627/* True means that a filter or a sentinel is running. */
3628extern bool running_asynch_code;
3cfe6dfd 3629
6c60eb9f 3630/* Defined in process.c. */
89dc303e 3631extern Lisp_Object QCtype, Qlocal;
383e0970 3632extern void kill_buffer_processes (Lisp_Object);
05d28210
PE
3633extern int wait_reading_process_output (intmax_t, int, int, bool, Lisp_Object,
3634 struct Lisp_Process *, int);
f1dd8073
PE
3635/* Max value for the first argument of wait_reading_process_output. */
3636#if __GNUC__ == 3 || (__GNUC__ == 4 && __GNUC_MINOR__ <= 5)
3637/* Work around a bug in GCC 3.4.2, known to be fixed in GCC 4.6.3.
3638 The bug merely causes a bogus warning, but the warning is annoying. */
3639# define WAIT_READING_MAX min (TYPE_MAXIMUM (time_t), INTMAX_MAX)
3640#else
3641# define WAIT_READING_MAX INTMAX_MAX
3642#endif
383e0970
J
3643extern void add_keyboard_wait_descriptor (int);
3644extern void delete_keyboard_wait_descriptor (int);
4475bec4 3645#ifdef HAVE_GPM
383e0970
J
3646extern void add_gpm_wait_descriptor (int);
3647extern void delete_gpm_wait_descriptor (int);
4475bec4 3648#endif
b82da769 3649extern void init_process_emacs (void);
383e0970
J
3650extern void syms_of_process (void);
3651extern void setup_process_coding_systems (Lisp_Object);
3cfe6dfd 3652
4ebbdd67 3653/* Defined in callproc.c. */
6bd8c144 3654#ifndef DOS_NT
845ca893 3655 _Noreturn
6bd8c144 3656#endif
2f221583 3657extern int child_setup (int, int, int, char **, bool, Lisp_Object);
383e0970
J
3658extern void init_callproc_1 (void);
3659extern void init_callproc (void);
3660extern void set_initial_environment (void);
3661extern void syms_of_callproc (void);
3cfe6dfd 3662
e7032e7c 3663/* Defined in doc.c. */
99f3388e 3664extern Lisp_Object Qfunction_documentation;
383e0970 3665extern Lisp_Object read_doc_string (Lisp_Object);
a08d4ba7 3666extern Lisp_Object get_doc_string (Lisp_Object, bool, bool);
383e0970 3667extern void syms_of_doc (void);
a08d4ba7 3668extern int read_bytecode_char (bool);
3cfe6dfd 3669
e7032e7c 3670/* Defined in bytecode.c. */
383e0970 3671extern void syms_of_bytecode (void);
0ee81a0c 3672extern Lisp_Object exec_byte_code (Lisp_Object, Lisp_Object, Lisp_Object,
f66c7cf8 3673 Lisp_Object, ptrdiff_t, Lisp_Object *);
3cfe6dfd 3674
e7032e7c 3675/* Defined in macros.c. */
383e0970
J
3676extern void init_macros (void);
3677extern void syms_of_macros (void);
3cfe6dfd 3678
e7032e7c 3679/* Defined in undo.c. */
89dc303e 3680extern Lisp_Object Qapply;
a387611b 3681extern Lisp_Object Qinhibit_read_only;
383e0970 3682extern void truncate_undo_list (struct buffer *);
d311d28c 3683extern void record_insert (ptrdiff_t, ptrdiff_t);
37ea8275 3684extern void record_delete (ptrdiff_t, Lisp_Object, bool);
383e0970 3685extern void record_first_change (void);
d311d28c
PE
3686extern void record_change (ptrdiff_t, ptrdiff_t);
3687extern void record_property_change (ptrdiff_t, ptrdiff_t,
c8a66ab8 3688 Lisp_Object, Lisp_Object,
383e0970
J
3689 Lisp_Object);
3690extern void syms_of_undo (void);
e7032e7c 3691/* Defined in textprop.c. */
73bfe891 3692extern Lisp_Object Qmouse_face;
c2d8811c 3693extern Lisp_Object Qinsert_in_front_hooks, Qinsert_behind_hooks;
e6cba650
DN
3694extern Lisp_Object Qminibuffer_prompt;
3695
383e0970 3696extern void report_interval_modification (Lisp_Object, Lisp_Object);
8537f1cb 3697
e7032e7c 3698/* Defined in menu.c. */
383e0970 3699extern void syms_of_menu (void);
febcacdd 3700
e7032e7c 3701/* Defined in xmenu.c. */
383e0970 3702extern void syms_of_xmenu (void);
526a2be7 3703
e7032e7c 3704/* Defined in termchar.h. */
28d7d09f
KL
3705struct tty_display_info;
3706
e7032e7c 3707/* Defined in termhooks.h. */
6ed8eeff 3708struct terminal;
28d440ab 3709
e7032e7c 3710/* Defined in sysdep.c. */
2412f586 3711#ifndef HAVE_GET_CURRENT_DIR_NAME
383e0970 3712extern char *get_current_dir_name (void);
2b94e598 3713#endif
383e0970 3714extern void stuff_char (char c);
322aea6d 3715extern void init_foreground_group (void);
383e0970
J
3716extern void sys_subshell (void);
3717extern void sys_suspend (void);
3718extern void discard_tty_input (void);
3719extern void init_sys_modes (struct tty_display_info *);
3720extern void reset_sys_modes (struct tty_display_info *);
3721extern void init_all_sys_modes (void);
3722extern void reset_all_sys_modes (void);
383e0970
J
3723extern void child_setup_tty (int);
3724extern void setup_pty (int);
3725extern int set_window_size (int, int, int);
ede49d71 3726extern EMACS_INT get_random (void);
0e23ef9d
PE
3727extern void seed_random (void *, ptrdiff_t);
3728extern void init_random (void);
cf29dd84 3729extern void emacs_backtrace (int);
1088b922 3730extern _Noreturn void emacs_abort (void) NO_INLINE;
383e0970 3731extern int emacs_open (const char *, int, int);
c7ddc792 3732extern int emacs_pipe (int[2]);
383e0970 3733extern int emacs_close (int);
223752d7
PE
3734extern ptrdiff_t emacs_read (int, void *, ptrdiff_t);
3735extern ptrdiff_t emacs_write (int, void const *, ptrdiff_t);
3736extern ptrdiff_t emacs_write_sig (int, void const *, ptrdiff_t);
4ebbdd67 3737extern void emacs_perror (char const *);
526a2be7 3738
383e0970
J
3739extern void unlock_all_files (void);
3740extern void lock_file (Lisp_Object);
3741extern void unlock_file (Lisp_Object);
3742extern void unlock_buffer (struct buffer *);
3743extern void syms_of_filelock (void);
15b0ced5 3744
e7032e7c 3745/* Defined in sound.c. */
383e0970 3746extern void syms_of_sound (void);
46abf440 3747
e7032e7c 3748/* Defined in category.c. */
383e0970
J
3749extern void init_category_once (void);
3750extern Lisp_Object char_category_set (int);
3751extern void syms_of_category (void);
46abf440 3752
e7032e7c 3753/* Defined in ccl.c. */
383e0970 3754extern void syms_of_ccl (void);
46abf440 3755
e7032e7c 3756/* Defined in dired.c. */
383e0970
J
3757extern void syms_of_dired (void);
3758extern Lisp_Object directory_files_internal (Lisp_Object, Lisp_Object,
3759 Lisp_Object, Lisp_Object,
86ec63ba 3760 bool, Lisp_Object);
46abf440 3761
e7032e7c 3762/* Defined in term.c. */
e6cba650 3763extern int *char_ins_del_vector;
383e0970 3764extern void syms_of_term (void);
845ca893
PE
3765extern _Noreturn void fatal (const char *msgid, ...)
3766 ATTRIBUTE_FORMAT_PRINTF (1, 2);
46abf440 3767
e7032e7c 3768/* Defined in terminal.c. */
383e0970 3769extern void syms_of_terminal (void);
ed8dad6b 3770
e7032e7c 3771/* Defined in font.c. */
383e0970
J
3772extern void syms_of_font (void);
3773extern void init_font (void);
b86cfd28 3774
4f48f1ab 3775#ifdef HAVE_WINDOW_SYSTEM
e7032e7c 3776/* Defined in fontset.c. */
383e0970 3777extern void syms_of_fontset (void);
4f48f1ab 3778
e7032e7c 3779/* Defined in xfns.c, w32fns.c, or macfns.c. */
99f3388e 3780extern Lisp_Object Qfont_param;
46abf440
AS
3781#endif
3782
c9628c79
MA
3783/* Defined in gfilenotify.c */
3784#ifdef HAVE_GFILENOTIFY
90db8702 3785extern void globals_of_gfilenotify (void);
c9628c79 3786extern void syms_of_gfilenotify (void);
477f1e50
EZ
3787#endif
3788
81606b10
RS
3789/* Defined in inotify.c */
3790#ifdef HAVE_INOTIFY
3791extern void syms_of_inotify (void);
3792#endif
3793
c9628c79
MA
3794#ifdef HAVE_W32NOTIFY
3795/* Defined on w32notify.c. */
3796extern void syms_of_w32notify (void);
3797#endif
3798
e7032e7c 3799/* Defined in xfaces.c. */
73bfe891
PE
3800extern Lisp_Object Qdefault, Qfringe;
3801extern Lisp_Object Qscroll_bar, Qcursor;
955cbe7b 3802extern Lisp_Object Qmode_line_inactive;
e6cba650 3803extern Lisp_Object Qface;
89dc303e 3804extern Lisp_Object Qnormal;
0e9c8657
JB
3805extern Lisp_Object QCfamily, QCweight, QCslant;
3806extern Lisp_Object QCheight, QCname, QCwidth, QCforeground, QCbackground;
a411ac43
PE
3807extern Lisp_Object Qextra_light, Qlight, Qsemi_light, Qsemi_bold;
3808extern Lisp_Object Qbold, Qextra_bold, Qultra_bold;
3809extern Lisp_Object Qoblique, Qitalic;
99f3388e 3810extern Lisp_Object Vface_alternative_font_family_alist;
99f3388e 3811extern Lisp_Object Vface_alternative_font_registry_alist;
383e0970 3812extern void syms_of_xfaces (void);
46abf440
AS
3813
3814#ifdef HAVE_X_WINDOWS
e7032e7c 3815/* Defined in xfns.c. */
383e0970 3816extern void syms_of_xfns (void);
46abf440 3817
e7032e7c 3818/* Defined in xsmfns.c. */
383e0970 3819extern void syms_of_xsmfns (void);
e02207d4 3820
e7032e7c 3821/* Defined in xselect.c. */
383e0970 3822extern void syms_of_xselect (void);
46abf440 3823
e7032e7c 3824/* Defined in xterm.c. */
383e0970 3825extern void syms_of_xterm (void);
4f48f1ab 3826#endif /* HAVE_X_WINDOWS */
4baa6f88 3827
7af07b96 3828#ifdef HAVE_WINDOW_SYSTEM
e7032e7c 3829/* Defined in xterm.c, nsterm.m, w32term.c. */
7af07b96
AS
3830extern char *x_get_keysym_name (int);
3831#endif /* HAVE_WINDOW_SYSTEM */
3832
381408e2 3833#ifdef HAVE_LIBXML2
e7032e7c 3834/* Defined in xml.c. */
381408e2 3835extern void syms_of_xml (void);
9078ead6 3836extern void xml_cleanup_parser (void);
381408e2
LMI
3837#endif
3838
313546eb
LMI
3839#ifdef HAVE_ZLIB
3840/* Defined in decompress.c. */
3841extern void syms_of_decompress (void);
3842#endif
3843
b86cfd28 3844#ifdef HAVE_DBUS
e7032e7c 3845/* Defined in dbusbind.c. */
383e0970 3846void syms_of_dbusbind (void);
b86cfd28 3847#endif
36e053eb 3848
ad942b63
SM
3849
3850/* Defined in profiler.c. */
6521894d 3851extern bool profiler_memory_running;
c2d7786e 3852extern void malloc_probe (size_t);
c2d7786e
TM
3853extern void syms_of_profiler (void);
3854
ad942b63 3855
36e053eb 3856#ifdef DOS_NT
e7032e7c 3857/* Defined in msdos.c, w32.c. */
36e053eb
DN
3858extern char *emacs_root_dir (void);
3859#endif /* DOS_NT */
3cfe6dfd 3860
9fa1de30
PE
3861/* True means ^G can quit instantly. */
3862extern bool immediate_quit;
3cfe6dfd 3863
74fde0f4
PE
3864extern void *xmalloc (size_t) ATTRIBUTE_MALLOC_SIZE ((1));
3865extern void *xzalloc (size_t) ATTRIBUTE_MALLOC_SIZE ((1));
3866extern void *xrealloc (void *, size_t) ATTRIBUTE_ALLOC_SIZE ((2));
261cb4bb 3867extern void xfree (void *);
f11db2f4 3868extern void *xmalloc_uncollectable (size_t) ATTRIBUTE_MALLOC_SIZE ((1));
0a38955b 3869extern void *xmalloc_unsafe (size_t) ATTRIBUTE_MALLOC_SIZE ((1));
74fde0f4
PE
3870extern void *xnmalloc (ptrdiff_t, ptrdiff_t) ATTRIBUTE_MALLOC_SIZE ((1,2));
3871extern void *xnrealloc (void *, ptrdiff_t, ptrdiff_t)
3872 ATTRIBUTE_ALLOC_SIZE ((2,3));
0065d054 3873extern void *xpalloc (void *, ptrdiff_t *, ptrdiff_t, ptrdiff_t, ptrdiff_t);
143439dd
RT
3874extern void *xmalloc_atomic (size_t) ATTRIBUTE_MALLOC_SIZE ((1));
3875extern void *xzalloc_atomic (size_t) ATTRIBUTE_MALLOC_SIZE ((1));
3876extern void *xmalloc_atomic_unsafe (size_t) ATTRIBUTE_MALLOC_SIZE ((1));
3877extern void *xnmalloc_atomic (ptrdiff_t, ptrdiff_t) ATTRIBUTE_MALLOC_SIZE ((1,2));
074b6efe 3878
74fde0f4
PE
3879extern char *xstrdup (const char *) ATTRIBUTE_MALLOC;
3880extern char *xlispstrdup (Lisp_Object) ATTRIBUTE_MALLOC;
8268febf 3881extern void dupstring (char **, char const *);
5745a7df 3882extern void xputenv (const char *);
3cfe6dfd 3883
a8fe7202 3884extern char *egetenv (const char *);
e98227af 3885
5b71542d
DA
3886/* Copy Lisp string to temporary (allocated on stack) C string. */
3887
3888#define xlispstrdupa(string) \
3889 memcpy (alloca (SBYTES (string) + 1), \
3890 SSDATA (string), SBYTES (string) + 1)
3891
5d6be39f 3892/* Set up the name of the machine we're running on. */
383e0970 3893extern void init_system_name (void);
881a5a80 3894
d7a0a7c9
PE
3895/* Return the absolute value of X. X should be a signed integer
3896 expression without side effects, and X's absolute value should not
3897 exceed the maximum for its promoted type. This is called 'eabs'
3898 because 'abs' is reserved by the C standard. */
555b10b0 3899#define eabs(x) ((x) < 0 ? -(x) : (x))
096e8667 3900
53ede3f4
GM
3901/* Return a fixnum or float, depending on whether VAL fits in a Lisp
3902 fixnum. */
3903
3904#define make_fixnum_or_float(val) \
cbeff735 3905 (FIXNUM_OVERFLOW_P (val) ? make_float (val) : make_number (val))
6b61353c 3906
79518a8d
KS
3907/* SAFE_ALLOCA normally allocates memory on the stack, but if size is
3908 larger than MAX_ALLOCA, use xmalloc to avoid overflowing the stack. */
3909
e7032e7c 3910enum MAX_ALLOCA { MAX_ALLOCA = 16 * 1024 };
79518a8d 3911
e96be6dd 3912#define USE_SAFE_ALLOCA ((void) 0)
79518a8d 3913
a9e6bacc
KS
3914/* SAFE_ALLOCA allocates a simple buffer. */
3915
98c6f1e3
PE
3916#define SAFE_ALLOCA(size) ((size) < MAX_ALLOCA \
3917 ? alloca (size) \
e96be6dd 3918 : xmalloc (size))
79518a8d 3919
0065d054
PE
3920/* SAFE_NALLOCA sets BUF to a newly allocated array of MULTIPLIER *
3921 NITEMS items, each of the same type as *BUF. MULTIPLIER must
3922 positive. The code is tuned for MULTIPLIER being a constant. */
3923
468afbac
DA
3924#define SAFE_NALLOCA(buf, multiplier, nitems) \
3925 do { \
3926 if ((nitems) <= MAX_ALLOCA / sizeof *(buf) / (multiplier)) \
3927 (buf) = alloca (sizeof *(buf) * (multiplier) * (nitems)); \
3928 else \
e96be6dd
BT
3929 (buf) = xnmalloc (nitems, sizeof *(buf) * (multiplier)); \
3930 } while (0)
0065d054 3931
a9e6bacc
KS
3932/* SAFE_FREE frees xmalloced memory and enables GC as needed. */
3933
e96be6dd 3934#define SAFE_FREE() ((void) 0)
79518a8d 3935
5f5d6c62
KS
3936/* SAFE_ALLOCA_LISP allocates an array of Lisp_Objects. */
3937
663e2b3f
DA
3938#define SAFE_ALLOCA_LISP(buf, nelt) \
3939 do { \
3940 if ((nelt) < MAX_ALLOCA / word_size) \
96c06863 3941 (buf) = alloca ((nelt) * word_size); \
663e2b3f 3942 else if ((nelt) < min (PTRDIFF_MAX, SIZE_MAX) / word_size) \
e96be6dd 3943 buf = xmalloc ((nelt) * word_size); \
663e2b3f
DA
3944 else \
3945 memory_full (SIZE_MAX); \
96c06863 3946 } while (false)
5f5d6c62 3947
105324ce
SM
3948/* Loop over all tails of a list, checking for cycles.
3949 FIXME: Make tortoise and n internal declarations.
3950 FIXME: Unroll the loop body so we don't need `n'. */
3951#define FOR_EACH_TAIL(hare, list, tortoise, n) \
96c06863 3952 for ((tortoise) = (hare) = (list), (n) = true; \
105324ce 3953 CONSP (hare); \
96c06863
PE
3954 (hare = XCDR (hare), (n) = !(n), \
3955 ((n) \
3956 ? (EQ (hare, tortoise) \
3957 ? xsignal1 (Qcircular_list, list) \
3958 : (void) 0) \
105324ce
SM
3959 /* Move tortoise before the next iteration, in case */ \
3960 /* the next iteration does an Fsetcdr. */ \
96c06863 3961 : (void) ((tortoise) = XCDR (tortoise)))))
105324ce 3962
d5a1acfa
DA
3963/* Do a `for' loop over alist values. */
3964
3965#define FOR_EACH_ALIST_VALUE(head_var, list_var, value_var) \
96c06863
PE
3966 for ((list_var) = (head_var); \
3967 (CONSP (list_var) && ((value_var) = XCDR (XCAR (list_var)), true)); \
3968 (list_var) = XCDR (list_var))
79518a8d 3969
dac616ff
DA
3970/* Check whether it's time for GC, and run it if so. */
3971
00382e8b 3972INLINE void
dac616ff
DA
3973maybe_gc (void)
3974{
b782773b 3975 return;
dac616ff
DA
3976}
3977
00382e8b 3978INLINE bool
e1f29348
BR
3979functionp (Lisp_Object object)
3980{
3981 if (SYMBOLP (object) && !NILP (Ffboundp (object)))
3982 {
3983 object = Findirect_function (object, Qt);
3984
3985 if (CONSP (object) && EQ (XCAR (object), Qautoload))
3986 {
3987 /* Autoloaded symbols are functions, except if they load
3988 macros or keymaps. */
3989 int i;
3990 for (i = 0; i < 4 && CONSP (object); i++)
3991 object = XCDR (object);
3992
3993 return ! (CONSP (object) && !NILP (XCAR (object)));
3994 }
3995 }
3996
62947569
BT
3997 if (scm_is_true (scm_procedure_p (object)))
3998 return 1;
e1f29348 3999 else if (COMPILEDP (object))
96c06863 4000 return true;
e1f29348
BR
4001 else if (CONSP (object))
4002 {
4003 Lisp_Object car = XCAR (object);
4004 return EQ (car, Qlambda) || EQ (car, Qclosure);
4005 }
e1f29348
BR
4006}
4007
d1c3da7b
BT
4008INLINE sym_t
4009XSYMBOL (Lisp_Object a)
4010{
4011 return scm_call_1 (scm_c_public_ref ("language elisp runtime", "symbol-desc"),
4012 a);
4013}
4014
f162bcc3 4015INLINE_HEADER_END
6b61353c 4016#endif /* EMACS_LISP_H */