annotate src/lisp.h @ 165:5a88923fcbfe r20-3b9

Import from CVS: tag r20-3b9
author cvs
date Mon, 13 Aug 2007 09:44:42 +0200
parents 6b37e6ddd302
children 8eaf7971accc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Fundamental definitions for XEmacs Lisp interpreter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Copyright (C) 1985-1987, 1992-1995 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1993-1996 Richard Mlynarik.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 Copyright (C) 1995, 1996 Ben Wing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /* Synched up with: FSF 19.30. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #ifndef _XEMACS_LISP_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 #define _XEMACS_LISP_H_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 /* general definitions */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 /* We include the following generally useful header files so that you
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 don't have to worry about prototypes when using the standard C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 library functions and macros. These files shouldn't be excessively
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 large so they shouldn't cause that much of a slowdown. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include <stdlib.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include <string.h> /* primarily for memcpy, etc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 #include <stdio.h> /* NULL, etc. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 #include <ctype.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 #include <stdarg.h>
157
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
42
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
43 #ifdef HAVE_LIMITS_H
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
44 #include <limits.h>
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
45 #endif
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
46 /* Define INT_MAX, DBL_DIG if not in limits.h */
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
47 #ifndef INT_MAX
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
48 #define INT_MAX ((int) ((1U << (INTBITS - 1)) - 1))
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
49 #endif
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
50 #ifndef DBL_DIG
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
51 #define DBL_DIG 16
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
52 #endif
6b37e6ddd302 Import from CVS: tag r20-3b5
cvs
parents: 149
diff changeset
53
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 #ifdef HAVE_UNISTD_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 #include <unistd.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 #ifndef INCLUDED_FCNTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 # define INCLUDED_FCNTL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 # include <fcntl.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 #endif /* INCLUDED_FCNTL */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #ifdef __lucid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 # include <sysent.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 #include "blocktype.h" /* A generally useful include */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 #include "dynarr.h" /* A generally useful include */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 #include "symsinit.h" /* compiler warning suppression */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 /* Also define min() and max(). (Some compilers put them in strange
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 places that won't be referenced by the above include files, such
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 as 'macros.h' under Solaris.) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 #ifndef min
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 #define min(a,b) ((a) <= (b) ? (a) : (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 #ifndef max
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 #define max(a,b) ((a) > (b) ? (a) : (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 /* Emacs needs to use its own definitions of certain system calls on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 some systems (like SunOS 4.1 and USG systems, where the read system
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 call is interruptible but Emacs expects it not to be; and under
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 MULE, where all filenames need to be converted to external format).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 To do this, we #define read to be sys_read, which is defined in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 sysdep.c. We first #undef read, in case some system file defines
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 read as a macro. sysdep.c doesn't encapsulate read, so the call to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 read inside of sys_read will do the right thing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 DONT_ENCAPSULATE is used in files such as sysdep.c that want to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 call the actual system calls rather than the encapsulated versions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 Those files can call sys_read to get the (possibly) encapsulated
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 versions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 IMPORTANT: the redefinition of the system call must occur *after* the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 inclusion of any header files that declare or define the system call;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 otherwise lots of unfriendly things can happen. This goes for all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 encapsulated system calls.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 We encapsulate the most common system calls here; we assume their
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 declarations are in one of the standard header files included above.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 Other encapsulations are declared in the appropriate sys*.h file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 #if defined (ENCAPSULATE_READ) && !defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 # undef read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 # define read sys_read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 #if !defined (ENCAPSULATE_READ) && defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 # define sys_read read
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 #if defined (ENCAPSULATE_WRITE) && !defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 # undef write
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 # define write sys_write
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 #if !defined (ENCAPSULATE_WRITE) && defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 # define sys_write write
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 #if defined (ENCAPSULATE_OPEN) && !defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 # undef open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 # define open sys_open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 #if !defined (ENCAPSULATE_OPEN) && defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 # define sys_open open
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 #if defined (ENCAPSULATE_CLOSE) && !defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 # undef close
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 # define close sys_close
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 #if !defined (ENCAPSULATE_CLOSE) && defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 # define sys_close close
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 /* Now the stdio versions ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 #if defined (ENCAPSULATE_FREAD) && !defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 # undef fread
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 # define fread sys_fread
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 #if !defined (ENCAPSULATE_FREAD) && defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 # define sys_fread fread
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 #if defined (ENCAPSULATE_FWRITE) && !defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 # undef fwrite
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 # define fwrite sys_fwrite
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 #if !defined (ENCAPSULATE_FWRITE) && defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 # define sys_fwrite fwrite
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 #if defined (ENCAPSULATE_FOPEN) && !defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 # undef fopen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 # define fopen sys_fopen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 #if !defined (ENCAPSULATE_FOPEN) && defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 # define sys_fopen fopen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 #if defined (ENCAPSULATE_FCLOSE) && !defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 # undef fclose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 # define fclose sys_fclose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 #if !defined (ENCAPSULATE_FCLOSE) && defined (DONT_ENCAPSULATE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 # define sys_fclose fclose
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 /* generally useful */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 #define countof(x) (sizeof(x)/sizeof(x[0]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 #define slot_offset(type, slot_name) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 ((unsigned) (((char *) (&(((type *)0)->slot_name))) - ((char *)0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 #define malloc_type(type) ((type *) xmalloc (sizeof (type)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 #define malloc_type_and_zero(type) ((type *) xmalloc_and_zero (sizeof (type)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 /* also generally useful if you want to avoid arbitrary size limits
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 but don't need a full dynamic array. Assumes that BASEVAR points
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 to a malloced array of TYPE objects (or possibly a NULL pointer,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 if SIZEVAR is 0), with the total size stored in SIZEVAR. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 macro will realloc BASEVAR as necessary so that it can hold at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 least NEEDED_SIZE objects. The reallocing is done by doubling,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 which ensures constant amortized time per element. */
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
184 #define DO_REALLOC(basevar, sizevar, needed_size, type) do \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
185 { \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
186 /* Avoid side-effectualness. */ \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
187 /* Dammit! Macros suffer from dynamic scope! */ \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
188 /* We demand inline functions! */ \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
189 int do_realloc_needed_size = (needed_size); \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
190 int newsize = 0; \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
191 while ((sizevar) < (do_realloc_needed_size)) { \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
192 newsize = 2*(sizevar); \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
193 if (newsize < 32) \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
194 newsize = 32; \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
195 (sizevar) = newsize; \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
196 } \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
197 if (newsize) \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
198 (basevar) = (type *) xrealloc (basevar, \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
199 (newsize)*sizeof(type)); \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 #ifdef ERROR_CHECK_MALLOC
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
203 #define xfree(lvalue) do \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
204 { \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
205 void **ptr = (void **) &(lvalue); \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
206 xfree_1 (*ptr); \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
207 *ptr = (void *) 0xDEADBEEF; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 #define xfree_1 xfree
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 /* We assume an ANSI C compiler and libraries and memcpy, memset, memcmp */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 /* (This definition is here because system header file macros may want
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 * to call bzero (eg FD_ZERO) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 #ifndef bzero
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 # define bzero(m, l) memset ((m), 0, (l))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 #ifndef PRINTF_ARGS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 # if defined (__GNUC__) && (__GNUC__ >= 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 # define PRINTF_ARGS(string_index,first_to_check) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 __attribute__ ((format (printf, string_index, first_to_check)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 # define PRINTF_ARGS(string_index,first_to_check)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 # endif /* GNUC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 #ifndef DOESNT_RETURN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 # if defined __GNUC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 # if ((__GNUC__ > 2) || (__GNUC__ == 2) && (__GNUC_MINOR__ >= 5))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 # define DOESNT_RETURN void volatile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 # define DECLARE_DOESNT_RETURN(decl) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 extern void volatile decl __attribute__ ((noreturn))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 # define DECLARE_DOESNT_RETURN_GCC__ATTRIBUTE__SYNTAX_SUCKS(decl,str,idx) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 /* Should be able to state multiple independent __attribute__s, but \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 the losing syntax doesn't work that way, and screws losing cpp */ \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 extern void volatile decl \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 __attribute__ ((noreturn, format (printf, str, idx)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 # define DOESNT_RETURN void volatile
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 # define DECLARE_DOESNT_RETURN(decl) extern void volatile decl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 # define DECLARE_DOESNT_RETURN_GCC__ATTRIBUTE__SYNTAX_SUCKS(decl,str,idx) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 extern void volatile decl PRINTF_ARGS(str,idx)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 # endif /* GNUC 2.5 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 # define DOESNT_RETURN void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 # define DECLARE_DOESNT_RETURN(decl) extern void decl
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 # define DECLARE_DOESNT_RETURN_GCC__ATTRIBUTE__SYNTAX_SUCKS(decl,str,idx) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 extern void decl PRINTF_ARGS(str,idx)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 # endif /* GNUC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 #ifndef ALIGNOF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 # if defined (__GNUC__) && (__GNUC__ >= 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 # define ALIGNOF(x) __alignof (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 # define ALIGNOF(x) sizeof (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 #define ALIGN_SIZE(len, unit) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 ((((len) + (unit) - 1) / (unit)) * (unit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 /* #### Yuck, this is kind of evil */
80
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
266 #define ALIGN_PTR(ptr, unit) \
1ce6082ce73f Import from CVS: tag r20-0b90
cvs
parents: 74
diff changeset
267 ((void *) ALIGN_SIZE ((long) (ptr), unit))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 #ifdef QUANTIFY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 #include "quantify.h"
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 136
diff changeset
271 #define QUANTIFY_START_RECORDING quantify_start_recording_data ()
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 136
diff changeset
272 #define QUANTIFY_STOP_RECORDING quantify_stop_recording_data ()
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 #else /* !QUANTIFY */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 #define QUANTIFY_START_RECORDING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 #define QUANTIFY_STOP_RECORDING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 #endif /* !QUANTIFY */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 #ifndef DO_NOTHING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 #define DO_NOTHING do {} while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 /* We define assert iff USE_ASSERTIONS or DEBUG_XEMACS is defined.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 Otherwise we it to NULL. Quantify has shown that the time the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 assert checks take is measurable so let's not include them in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 production binaries. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 #ifdef USE_ASSERTIONS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 /* Highly dubious kludge */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 /* (thanks, Jamie, I feel better now -- ben) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 DECLARE_DOESNT_RETURN (assert_failed (CONST char *, int, CONST char *));
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
291 # define abort() (assert_failed (__FILE__, __LINE__, "abort()"))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 # define assert(x) ((x) ? (void) 0 : assert_failed (__FILE__, __LINE__, #x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 # ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 # define assert(x) ((x) ? (void) 0 : (void) abort ())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 # define assert(x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 #ifdef DEBUG_XEMACS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 #define REGISTER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 #define REGISTER register
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 #if defined (__GNUC__) && (__GNUC__ >= 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 /* Entomological studies have revealed that the following junk is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 necessary under GCC. GCC has a compiler bug where incorrect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 code will be generated if you use a global temporary variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 in a macro and the macro occurs twice in the same expression.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 As it happens, we can avoid this problem using a GCC language
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 extension. Thus we play weird games with syntax to avoid having
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 to provide two definitions for lots of macros.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 The approximate way this works is as follows:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 1. Use these macros whenever you want to avoid evaluating an
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 argument more than once in a macro. (It's almost always a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 good idea to make your macros safe like this.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 2. Choose a name for the temporary variable you will store
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 the parameter in. It should begin with `MT' and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 be distinguishing, since it will (or may) be a global
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 3. In the same header file as the macro, put in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 MAC_DECLARE_EXTERN for the temporary variable. This
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 resolves to an external variable declaration for some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 compilers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 4. Put a MAC_DEFINE for the variable in a C file somewhere.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 This resolves to a variable definition for some compilers.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 5. Write your macro with no semicolons or commas in it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 Remember to use parentheses to surround macro arguments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 but you do not need to surround each separate statement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 or the temporary variable with parentheses.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 6. Write your macro like this:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 #define foo(bar,baz) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 MAC_BEGIN \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 MAC_DECLARE (struct frobozz *, MTfoobar, bar) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 SOME_EXPRESSION \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 MAC_SEP \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 SOME OTHER EXPRESSION \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 MAC_END
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 7. You only need to use MAC_SEP if you have more than one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 expression in the macro, not counting any MAC_DECLARE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 statements.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 DONT_DECLARE_MAC_VARS is used in signal.c, for asynchronous signals.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 All functions that may be called from within an asynchronous signal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 handler must declare local variables (with MAC_DECLARE_LOCAL) for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 the (normally global) variables used in these sorts of macros.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 Otherwise, a signal could occur in the middle of processing one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 of these macros and the signal handler could use the same macro,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 resulting in the global variable getting overwritten and yielding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 nasty evil crashes that are very difficult to track down.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 # define MAC_BEGIN ({
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 # define MAC_DECLARE(type, var, value) type var = (value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 # define MAC_SEP ;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 # define MAC_END ; })
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 # define MAC_DECLARE_EXTERN(type, var)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 # define MAC_DECLARE_LOCAL(type, var)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 # define MAC_DEFINE(type, var)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 # define MAC_BEGIN (
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 # define MAC_DECLARE(type, var, value) var = (value),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 # define MAC_SEP ,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 # define MAC_END )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 # ifdef DONT_DECLARE_MAC_VARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 # define MAC_DECLARE_EXTERN(type, var)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 # else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 # define MAC_DECLARE_EXTERN(type, var) extern type var;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 # define MAC_DECLARE_LOCAL(type, var) type var;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 # define MAC_DEFINE(type, var) type var;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 /* For Lo, the Lord didst appear and look upon the face of the code,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 and the Lord was unhappy with the strange syntax that had come
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 into vogue with the cryptic name of "C". And so the Lord didst
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 decree, that from now on all programmers shall use Pascal syntax,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 a syntax truly and in sooth ordained in heaven. Amen. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 /* typedefs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 /* We put typedefs here so that prototype declarations don't choke.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 Note that we don't actually declare the structures here (except
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 maybe for simple structures like Dynarrs); that keeps them private
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 to the routines that actually use them. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 /* The data representing the text in a buffer is logically a set
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 of Bufbytes, declared as follows. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 typedef unsigned char Bufbyte;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 /* The data representing a string in "external" format (simple
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 binary format) is logically a set of Extbytes, declared as follows. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 typedef unsigned char Extbyte;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 /* To the user, a buffer is made up of characters, declared as follows.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 In the non-Mule world, characters and Bufbytes are equivalent.
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
407 In the Mule world, a character requires (typically) 1 to 4
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 Bufbytes for its representation in a buffer. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 typedef int Emchar;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 /* Different ways of referring to a position in a buffer. We use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 the typedefs in preference to 'int' to make it clearer what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 sort of position is being used. See extents.c for a description
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 of the different positions. We put them here instead of in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 buffer.h (where they rightfully belong) to avoid syntax errors
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 in function prototypes. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 typedef int Bufpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 typedef int Bytind;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 typedef int Memind;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 /* Counts of bytes or chars */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 typedef int Bytecount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 typedef int Charcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 /* Length in bytes of a string in external format */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 typedef int Extcount;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 typedef struct lstream Lstream;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 typedef unsigned int face_index;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 typedef struct face_cachel_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 Dynarr_declare (struct face_cachel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 } face_cachel_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 typedef unsigned int glyph_index;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 typedef struct glyph_cachel_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 Dynarr_declare (struct glyph_cachel);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 } glyph_cachel_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 struct buffer; /* "buffer.h" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 struct console; /* "console.h" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 struct device; /* "device.h" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 struct extent_fragment;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 struct extent;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 struct frame; /* "frame.h" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 struct window; /* "window.h" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 struct Lisp_Event; /* "events.h" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 struct Lisp_Face;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 struct Lisp_Process; /* "process.c" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 struct stat; /* <sys/stat.h> */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 struct Lisp_Color_Instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 struct Lisp_Font_Instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 struct Lisp_Image_Instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 struct display_line;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 struct redisplay_info;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 struct window_mirror;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 struct scrollbar_instance;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 struct font_metric_info;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 struct face_cachel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 struct console_type_entry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 typedef struct bufbyte_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 Dynarr_declare (Bufbyte);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 } bufbyte_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 typedef struct extbyte_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 Dynarr_declare (Extbyte);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 } extbyte_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 typedef struct emchar_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 Dynarr_declare (Emchar);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 } emchar_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 typedef struct unsigned_char_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 Dynarr_declare (unsigned char);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 } unsigned_char_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 typedef struct int_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 Dynarr_declare (int);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 } int_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 typedef struct bufpos_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 Dynarr_declare (Bufpos);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 } bufpos_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 typedef struct bytind_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 Dynarr_declare (Bytind);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 } bytind_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 typedef struct charcount_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 Dynarr_declare (Charcount);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 } charcount_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 typedef struct bytecount_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 Dynarr_declare (Bytecount);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 } bytecount_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 typedef struct console_type_entry_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 Dynarr_declare (struct console_type_entry);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 } console_type_entry_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 /* Need to declare this here. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 enum external_data_format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 /* Binary format. This is the simplest format and is what we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 use in the absence of a more appropriate format. This converts
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 according to the `binary' coding system:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 a) On input, bytes 0 - 255 are converted into characters 0 - 255.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 b) On output, characters 0 - 255 are converted into bytes 0 - 255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 and other characters are converted into `X'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 FORMAT_BINARY,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 /* Format used for filenames. In the original Mule, this is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 user-definable with the `pathname-coding-system' variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 For the moment, we just use the `binary' coding system. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 FORMAT_FILENAME,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 /* Format used for output to the terminal. This should be controlled
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
536 by the `terminal-coding-system' variable. Under kterm, this will
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 be some ISO2022 system. On some DOS machines, this is Shift-JIS. */
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
538 FORMAT_TERMINAL,
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 /* Format used for input from the terminal. This should be controlled
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 by the `keyboard-coding-system' variable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 FORMAT_KEYBOARD,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 /* Format used for the external Unix environment -- argv[], stuff
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 from getenv(), stuff from the /etc/passwd file, etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 Perhaps should be the same as FORMAT_FILENAME. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 FORMAT_OS,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 /* Compound-text format. This is the standard X format used for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 data stored in properties, selections, and the like. This is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 an 8-bit no-lock-shift ISO2022 coding system. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 FORMAT_CTEXT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555
149
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 136
diff changeset
556 #define FORMAT_NATIVE FORMAT_FILENAME
538048ae2ab8 Import from CVS: tag r20-3b1
cvs
parents: 136
diff changeset
557
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 enum run_hooks_condition
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 RUN_HOOKS_TO_COMPLETION,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 RUN_HOOKS_UNTIL_SUCCESS,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 RUN_HOOKS_UNTIL_FAILURE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 #ifdef HAVE_TOOLBARS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 enum toolbar_pos
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 TOP_TOOLBAR,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 BOTTOM_TOOLBAR,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 LEFT_TOOLBAR,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 RIGHT_TOOLBAR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 #ifndef ERROR_CHECK_TYPECHECK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 typedef enum error_behavior
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 ERROR_ME,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 ERROR_ME_NOT,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 ERROR_ME_WARN
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 } Error_behavior;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 #define ERRB_EQ(a, b) ((a) == (b))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 /* By defining it like this, we provide strict type-checking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 for code that lazily uses ints. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 typedef struct _error_behavior_struct_
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 int really_unlikely_name_to_have_accidentally_in_a_non_errb_structure;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 } Error_behavior;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 extern Error_behavior ERROR_ME;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 extern Error_behavior ERROR_ME_NOT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 extern Error_behavior ERROR_ME_WARN;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 #define ERRB_EQ(a, b) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 ((a).really_unlikely_name_to_have_accidentally_in_a_non_errb_structure == \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 (b).really_unlikely_name_to_have_accidentally_in_a_non_errb_structure)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 enum munge_me_out_the_door
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 MUNGE_ME_FUNCTION_KEY,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 MUNGE_ME_KEY_TRANSLATION
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 /* Definition of Lisp_Object data type */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 /* There's not any particular reason not to use lrecords for these; some
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 objects get slightly larger, but we get 3 bit tags instead of 4.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 */
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 100
diff changeset
620 /* #define LRECORD_SYMBOL */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 /* Define the fundamental Lisp data structures */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 /* This is the set of Lisp data types */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 enum Lisp_Type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 /* Integer. XINT(obj) is the integer value. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 Lisp_Int /* 0 DTP-FIXNUM */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 /* XRECORD_LHEADER (object) points to a struct lrecord_header
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 lheader->implementation determines the type (and GC behaviour)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 of the object. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 ,Lisp_Record /* 1 DTP-OTHER-POINTER */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 /* Cons. XCONS (object) points to a struct Lisp_Cons. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 ,Lisp_Cons /* 2 DTP-LIST */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 /* LRECORD_STRING is NYI */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 /* String. XSTRING (object) points to a struct Lisp_String.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 The length of the string, and its contents, are stored therein. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 ,Lisp_String /* 3 DTP-STRING */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 #ifndef LRECORD_VECTOR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 /* Vector of Lisp objects. XVECTOR(object) points to a struct Lisp_Vector.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 The length of the vector, and its contents, are stored therein. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 ,Lisp_Vector /* 4 DTP-SIMPLE-ARRAY */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 #ifndef LRECORD_SYMBOL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 /* Symbol. XSYMBOL (object) points to a struct Lisp_Symbol. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 ,Lisp_Symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 #endif /* !LRECORD_SYMBOL */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
655
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
656 ,Lisp_Char /* 5 DTP-CHAR */
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
657 };
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 /* unsafe! */
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
660 #define POINTER_TYPE_P(type) ((type) != Lisp_Int && (type) != Lisp_Char)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
662 /* This should be the underlying type into which a Lisp_Object must fit.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 In a strict ANSI world, this must be `int', since ANSI says you can't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 use bitfields on any type other than `int'. However, on a machine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 where `int' and `long' are not the same size, this should be the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 longer of the two. (This also must be something into which a pointer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 to an arbitrary object will fit, modulo any DATA_SEG_BITS cruft.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 #if (LONGBITS > INTBITS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 # define EMACS_INT long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 # define EMACS_UINT unsigned long
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 # define EMACS_INT int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 # define EMACS_UINT unsigned int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 /* Overridden by m/next.h */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 #ifndef ASSERT_VALID_POINTER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 # define ASSERT_VALID_POINTER(pnt) (assert ((((EMACS_UINT) pnt) & 3) == 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 /* These values are overridden by the m- file on some machines. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 #ifndef GCTYPEBITS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 # define GCTYPEBITS 3L
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 #ifndef VALBITS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 # define VALBITS ((LONGBITS)-((GCTYPEBITS)+1L))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 #ifdef NO_UNION_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 # include "lisp-disunion.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 #else /* !NO_UNION_TYPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 # include "lisp-union.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 #endif /* !NO_UNION_TYPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 /* WARNING WARNING WARNING. You must ensure on your own that proper
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 GC protection is provided for the elements in this array. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 typedef struct lisp_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 Dynarr_declare (Lisp_Object);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 } lisp_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 /* Close your eyes now lest you vomit or spontaneously combust ... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 #define HACKEQ_UNSAFE(obj1, obj2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 (EQ (obj1, obj2) || (!POINTER_TYPE_P (XGCTYPE (obj1)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 && !POINTER_TYPE_P (XGCTYPE (obj2)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 && XREALINT (obj1) == XREALINT (obj2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
711 #ifdef DEBUG_XEMACS
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
712 extern int debug_issue_ebola_notices;
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
713 int eq_with_ebola_notice (Lisp_Object, Lisp_Object);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
714 #define EQ_WITH_EBOLA_NOTICE(obj1, obj2) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
715 (debug_issue_ebola_notices ? eq_with_ebola_notice (obj1, obj2) \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
716 : EQ (obj1, obj2))
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
717 #else
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
718 #define EQ_WITH_EBOLA_NOTICE(obj1, obj2) EQ (obj1, obj2)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
719 #endif
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 /* OK, you can open them again */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 /* Definitions of basic Lisp objects */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 #include "lrecord.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 /********** unbound ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 /* Qunbound is a special Lisp_Object (actually of type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 symbol-value-forward), that can never be visible to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 the Lisp caller and thus can be used in the C code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 to mean "no such value". */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 #define UNBOUNDP(val) EQ (val, Qunbound)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 #define GC_UNBOUNDP(val) GC_EQ (val, Qunbound)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 /*********** cons ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 /* In a cons, the markbit of the car is the gc mark bit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 struct Lisp_Cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 Lisp_Object car, cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 #if 0 /* FSFmacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 /* Like a cons, but records info on where the text lives that it was read from */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 /* This is not really in use now */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 struct Lisp_Buffer_Cons
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 Lisp_Object car, cdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 struct buffer *buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 int bufpos;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 DECLARE_NONRECORD (cons, Lisp_Cons, struct Lisp_Cons);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 #define XCONS(a) XNONRECORD (a, cons, Lisp_Cons, struct Lisp_Cons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 #define XSETCONS(c, p) XSETOBJ (c, Lisp_Cons, p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 #define CONSP(x) (XTYPE (x) == Lisp_Cons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 #define GC_CONSP(x) (XGCTYPE (x) == Lisp_Cons)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 #define CHECK_CONS(x) CHECK_NONRECORD (x, Lisp_Cons, Qconsp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 #define CONCHECK_CONS(x) CONCHECK_NONRECORD (x, Lisp_Cons, Qconsp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 /* Define these because they're used in a few places, inside and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 out of alloc.c */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 #define CONS_MARKED_P(c) XMARKBIT (c->car)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 #define MARK_CONS(c) XMARK (c->car)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 #define NILP(x) EQ (x, Qnil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 #define GC_NILP(x) GC_EQ (x, Qnil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 #define CHECK_LIST(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 do { if ((!CONSP (x)) && !NILP (x)) dead_wrong_type_argument (Qlistp, x); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 #define CONCHECK_LIST(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 do { if ((!CONSP (x)) && !NILP (x)) x = wrong_type_argument (Qlistp, x); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 #define XCAR(a) (XCONS (a)->car)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 #define XCDR(a) (XCONS (a)->cdr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782 /* For a list that's known to be in valid list format --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 will abort() if the list is not in valid format */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 #define LIST_LOOP(consvar, list) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 for (consvar = list; !NILP (consvar); consvar = XCDR (consvar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 /* For a list that's known to be in valid list format, where we may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 be deleting the current element out of the list --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 will abort() if the list is not in valid format */
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
790 #define LIST_LOOP_DELETING(consvar, nextconsvar, list) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
791 for (consvar = list; \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
792 !NILP (consvar) ? (nextconsvar = XCDR (consvar), 1) : 0; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 consvar = nextconsvar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 /* For a list that may not be in valid list format --
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 will signal an error if the list is not in valid format */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 #define EXTERNAL_LIST_LOOP(consvar, listp) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 for (consvar = listp; !NILP (consvar); consvar = XCDR (consvar)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 if (!CONSP (consvar)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 signal_simple_error ("Invalid list format", listp); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803 /* For a property list (alternating keywords/values) that may not be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 in valid list format -- will signal an error if the list is not in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 valid format. CONSVAR is used to keep track of the iterations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 without modifying LISTP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 We have to be tricky to still keep the same C format.*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 #define EXTERNAL_PROPERTY_LIST_LOOP(consvar, keyword, value, listp) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 for (consvar = listp; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 (CONSP (consvar) && CONSP (XCDR (consvar)) ? \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 (keyword = XCAR (consvar), value = XCAR (XCDR (consvar))) : \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 (keyword = Qunbound, value = Qunbound)), \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 !NILP (consvar); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 consvar = XCDR (XCDR (consvar))) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 if (UNBOUNDP (keyword)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 signal_simple_error ("Invalid property list format", listp); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 /*********** string ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 /* In a string or vector, the sign bit of the `size' is the gc mark bit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 /* (The size and data fields have underscores prepended to catch old
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 code that attempts to reference the fields directly) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 struct Lisp_String
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 #ifdef LRECORD_STRING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 struct lrecord_header lheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 #endif
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
831 Bytecount _size;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 Bufbyte *_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 Lisp_Object plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 #ifdef LRECORD_STRING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 DECLARE_LRECORD (string, struct Lisp_String);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 #define XSTRING(x) XRECORD (x, string, struct Lisp_String)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 #define XSETSTRING(x, p) XSETRECORD (x, p, string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 #define STRINGP(x) RECORDP (x, string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 #define GC_STRINGP(x) GC_RECORDP (x, string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 #define CHECK_STRING(x) CHECK_RECORD (x, string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 #define CONCHECK_STRING(x) CONCHECK_RECORD (x, string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 DECLARE_NONRECORD (string, Lisp_String, struct Lisp_String);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 #define XSTRING(x) XNONRECORD (x, string, Lisp_String, struct Lisp_String)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 #define XSETSTRING(x, p) XSETOBJ (x, Lisp_String, p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 #define STRINGP(x) (XTYPE (x) == Lisp_String)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 #define GC_STRINGP(x) (XGCTYPE (x) == Lisp_String)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 #define CHECK_STRING(x) CHECK_NONRECORD (x, Lisp_String, Qstringp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 #define CONCHECK_STRING(x) CONCHECK_NONRECORD (x, Lisp_String, Qstringp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
858 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
859
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
860 Charcount bytecount_to_charcount (CONST Bufbyte *ptr, Bytecount len);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
861 Bytecount charcount_to_bytecount (CONST Bufbyte *ptr, Charcount len);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
862
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
863 #else /* not MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 # define bytecount_to_charcount(ptr, len) (len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 # define charcount_to_bytecount(ptr, len) (len)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
868 #endif /* not MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
869
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 #define string_length(s) ((s)->_size)
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
871 #define XSTRING_LENGTH(s) string_length (XSTRING (s))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 #define string_data(s) ((s)->_data + 0)
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
873 #define XSTRING_DATA(s) string_data (XSTRING (s))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 #define string_byte(s, i) ((s)->_data[i] + 0)
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
875 #define XSTRING_BYTE(s, i) string_byte (XSTRING (s), i)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 #define string_byte_addr(s, i) (&((s)->_data[i]))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 #define set_string_length(s, len) do { (s)->_size = (len); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 #define set_string_data(s, ptr) do { (s)->_data = (ptr); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 #define set_string_byte(s, i, c) do { (s)->_data[i] = (c); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 void resize_string (struct Lisp_String *s, Bytecount pos, Bytecount delta);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
883 #ifdef MULE
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
884
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
885 INLINE Charcount string_char_length (struct Lisp_String *s);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
886 INLINE Charcount
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
887 string_char_length (struct Lisp_String *s)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
888 {
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
889 return bytecount_to_charcount (string_data (s), string_length (s));
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
890 }
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
891
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
892 # define string_char(s, i) charptr_emchar_n (string_data (s), i)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
893 # define string_char_addr(s, i) charptr_n_addr (string_data (s), i)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
894 void set_string_char (struct Lisp_String *s, Charcount i, Emchar c);
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
895
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
896 #else /* not MULE */
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
897
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 # define string_char_length(s) string_length (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 # define string_char(s, i) ((Emchar) string_byte (s, i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 # define string_char_addr(s, i) string_byte_addr (s, i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 # define set_string_char(s, i, c) set_string_byte (s, i, c)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
903 #endif /* not MULE */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 /*********** vector ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 struct Lisp_Vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909 #ifdef LRECORD_VECTOR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 struct lrecord_header lheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 long size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 /* next is now chained through v->contents[size], terminated by Qzero.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
914 This means that pure vectors don't need a "next" */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 /* struct Lisp_Vector *next; */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 Lisp_Object contents[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 #ifdef LRECORD_VECTOR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 DECLARE_LRECORD (vector, struct Lisp_Vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922 #define XVECTOR(x) XRECORD (x, vector, struct Lisp_Vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 #define XSETVECTOR(x, p) XSETRECORD (x, p, vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 #define VECTORP(x) RECORDP (x, vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 #define GC_VECTORP(x) GC_RECORDP (x, vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 #define CHECK_VECTOR(x) CHECK_RECORD (x, vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 #define CONCHECK_VECTOR(x) CONCHECK_RECORD (x, vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 DECLARE_NONRECORD (vector, Lisp_Vector, struct Lisp_Vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 #define XVECTOR(x) XNONRECORD (x, vector, Lisp_Vector, struct Lisp_Vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 #define XSETVECTOR(x, p) XSETOBJ (x, Lisp_Vector, p)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 #define VECTORP(x) (XTYPE (x) == Lisp_Vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 #define GC_VECTORP(x) (XGCTYPE (x) == Lisp_Vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 #define CHECK_VECTOR(x) CHECK_NONRECORD (x, Lisp_Vector, Qvectorp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 #define CONCHECK_VECTOR(x) CONCHECK_NONRECORD (x, Lisp_Vector, Qvectorp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 #define vector_length(v) ((v)->size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 #define vector_data(v) ((v)->contents)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 #define vector_next(v) ((v)->contents[(v)->size])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 /*********** bit vector ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 #if (LONGBITS < 16)
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
948 #error What the hell?!
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 #elif (LONGBITS < 32)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 # define LONGBITS_LOG2 4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951 # define LONGBITS_POWER_OF_2 16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 #elif (LONGBITS < 64)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953 # define LONGBITS_LOG2 5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 # define LONGBITS_POWER_OF_2 32
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955 #elif (LONGBITS < 128)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 # define LONGBITS_LOG2 6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 # define LONGBITS_POWER_OF_2 64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 #error You really have 128-bit integers?!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 struct Lisp_Bit_Vector
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 struct lrecord_header lheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 Lisp_Object next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 long size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 unsigned int bits[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 DECLARE_LRECORD (bit_vector, struct Lisp_Bit_Vector);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971 #define XBIT_VECTOR(x) XRECORD (x, bit_vector, struct Lisp_Bit_Vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
972 #define XSETBIT_VECTOR(x, p) XSETRECORD (x, p, bit_vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 #define BIT_VECTORP(x) RECORDP (x, bit_vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 #define GC_BIT_VECTORP(x) GC_RECORDP (x, bit_vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 #define CHECK_BIT_VECTOR(x) CHECK_RECORD (x, bit_vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 #define CONCHECK_BIT_VECTOR(x) CONCHECK_RECORD (x, bit_vector)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 #define BITP(x) (INTP (x) && (XINT (x) == 0 || XINT (x) == 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 #define GC_BITP(x) (GC_INTP (x) && (XINT (x) == 0 || XINT (x) == 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 #define CHECK_BIT(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 do { if (!BITP (x)) dead_wrong_type_argument (Qbitp, x); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 #define CONCHECK_BIT(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 do { if (!BITP (x)) x = wrong_type_argument (Qbitp, x); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 #define bit_vector_length(v) ((v)->size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 #define bit_vector_next(v) ((v)->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 INLINE int bit_vector_bit (struct Lisp_Bit_Vector *v, int i);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990 INLINE int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 bit_vector_bit (struct Lisp_Bit_Vector *v, int i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 unsigned int ui = (unsigned int) i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 return (((v)->bits[ui >> LONGBITS_LOG2] >> (ui & (LONGBITS_POWER_OF_2 - 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 & 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 INLINE void set_bit_vector_bit (struct Lisp_Bit_Vector *v, int i, int value);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 INLINE void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001 set_bit_vector_bit (struct Lisp_Bit_Vector *v, int i, int value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 unsigned int ui = (unsigned int) i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 if (value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005 (v)->bits[ui >> LONGBITS_LOG2] |= (1 << (ui & (LONGBITS_POWER_OF_2 - 1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 (v)->bits[ui >> LONGBITS_LOG2] &= ~(1 << (ui & (LONGBITS_POWER_OF_2 - 1)));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 /* Number of longs required to hold LEN bits */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011 #define BIT_VECTOR_LONG_STORAGE(len) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 ((len + LONGBITS_POWER_OF_2 - 1) >> LONGBITS_LOG2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 /*********** symbol ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 /* In a symbol, the markbit of the plist is used as the gc mark bit */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 struct Lisp_Symbol
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 #ifdef LRECORD_SYMBOL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022 struct lrecord_header lheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 /* next symbol in this obarray bucket */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 struct Lisp_Symbol *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026 struct Lisp_String *name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 Lisp_Object value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 Lisp_Object function;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 Lisp_Object plist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032 #define SYMBOL_IS_KEYWORD(sym) (string_byte (XSYMBOL(sym)->name, 0) == ':')
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 #define KEYWORDP(obj) (SYMBOLP (obj) && SYMBOL_IS_KEYWORD (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 #ifdef LRECORD_SYMBOL
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 DECLARE_LRECORD (symbol, struct Lisp_Symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 #define XSYMBOL(x) XRECORD (x, symbol, struct Lisp_Symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 #define XSETSYMBOL(x, p) XSETRECORD (x, p, symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 #define SYMBOLP(x) RECORDP (x, symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041 #define GC_SYMBOLP(x) GC_RECORDP (x, symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 #define CHECK_SYMBOL(x) CHECK_RECORD (x, symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043 #define CONCHECK_SYMBOL(x) CONCHECK_RECORD (x, symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047 DECLARE_NONRECORD (symbol, Lisp_Symbol, struct Lisp_Symbol);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 #define XSYMBOL(x) XNONRECORD (x, symbol, Lisp_Symbol, struct Lisp_Symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 #define XSETSYMBOL(s, p) XSETOBJ ((s), Lisp_Symbol, (p))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050 #define SYMBOLP(x) (XTYPE (x) == Lisp_Symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 #define GC_SYMBOLP(x) (XGCTYPE (x) == Lisp_Symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 #define CHECK_SYMBOL(x) CHECK_NONRECORD (x, Lisp_Symbol, Qsymbolp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 #define CONCHECK_SYMBOL(x) CONCHECK_NONRECORD (x, Lisp_Symbol, Qsymbolp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 #define symbol_next(s) ((s)->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 #define symbol_name(s) ((s)->name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 #define symbol_value(s) ((s)->value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 #define symbol_function(s) ((s)->function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 #define symbol_plist(s) ((s)->plist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 /*********** subr ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1065 typedef Lisp_Object (*lisp_fn_t) (Lisp_Object, ...);
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1066
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 struct Lisp_Subr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069 struct lrecord_header lheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 short min_args, max_args;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 CONST char *prompt;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 CONST char *doc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 CONST char *name;
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1074 lisp_fn_t subr_fn;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 DECLARE_LRECORD (subr, struct Lisp_Subr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 #define XSUBR(x) XRECORD (x, subr, struct Lisp_Subr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 #define XSETSUBR(x, p) XSETRECORD (x, p, subr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 #define SUBRP(x) RECORDP (x, subr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 #define GC_SUBRP(x) GC_RECORDP (x, subr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 #define CHECK_SUBR(x) CHECK_RECORD (x, subr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 #define CONCHECK_SUBR(x) CONCHECK_RECORD (x, subr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085 #define subr_function(subr) (subr)->subr_fn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 #define subr_name(subr) (subr)->name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 /*********** marker ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 struct Lisp_Marker
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 struct lrecord_header lheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 struct Lisp_Marker *next, *prev;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 struct buffer *buffer;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 Memind memind;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 char insertion_type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 DECLARE_LRECORD (marker, struct Lisp_Marker);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 #define XMARKER(x) XRECORD (x, marker, struct Lisp_Marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 #define XSETMARKER(x, p) XSETRECORD (x, p, marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 #define MARKERP(x) RECORDP (x, marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 #define GC_MARKERP(x) GC_RECORDP (x, marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 #define CHECK_MARKER(x) CHECK_RECORD (x, marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 #define CONCHECK_MARKER(x) CONCHECK_RECORD (x, marker)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1106
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 /* The second check was looking for GCed markers still in use */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 /* if (INTP (XMARKER (x)->lheader.next.v)) abort (); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 #define marker_next(m) ((m)->next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 #define marker_prev(m) ((m)->prev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 /*********** char ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
1115 #define CHARP(x) (XTYPE (x) == Lisp_Char)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
1116 #define GC_CHARP(x) (XGCTYPE (x) == Lisp_Char)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 #ifdef ERROR_CHECK_TYPECHECK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 INLINE Emchar XCHAR (Lisp_Object obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 INLINE Emchar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 XCHAR (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 {
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
1124 assert (CHARP (obj));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 return XREALINT (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
1130 #define XCHAR(x) XREALINT (x)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
1134 #define CHECK_CHAR(x) CHECK_NONRECORD (x, Lisp_Char, Qcharacterp)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 56
diff changeset
1135 #define CONCHECK_CHAR(x) CONCHECK_NONRECORD (x, Lisp_Char, Qcharacterp)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 /*********** float ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140 #ifdef LISP_FLOAT_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 struct Lisp_Float
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 struct lrecord_header lheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145 union { double d; struct Lisp_Float *next; } data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 DECLARE_LRECORD (float, struct Lisp_Float);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 #define XFLOAT(x) XRECORD (x, float, struct Lisp_Float)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 #define XSETFLOAT(x, p) XSETRECORD (x, p, float)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 #define FLOATP(x) RECORDP (x, float)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152 #define GC_FLOATP(x) GC_RECORDP (x, float)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 #define CHECK_FLOAT(x) CHECK_RECORD (x, float)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 #define CONCHECK_FLOAT(x) CONCHECK_RECORD (x, float)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 #define float_next(f) ((f)->data.next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 #define float_data(f) ((f)->data.d)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 #define XFLOATINT(n) extract_float (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 #define CHECK_INT_OR_FLOAT(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 do { if ( !INTP (x) && !FLOATP (x)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 dead_wrong_type_argument (Qnumberp, (x)); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 #define CONCHECK_INT_OR_FLOAT(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 do { if ( !INTP (x) && !FLOATP (x)) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166 x = wrong_type_argument (Qnumberp, (x)); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 /* These are always continuable because they change their arguments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 even when no error is signalled. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1171 #define CHECK_INT_OR_FLOAT_COERCE_MARKER(x) do \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1172 { if (INTP (x) || FLOATP (x)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1173 ; \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1174 else if (MARKERP (x)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1175 x = make_int (marker_position (x)); \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1176 else \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1177 x = wrong_type_argument (Qnumber_or_marker_p, x); \
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1178 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1180 #define CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER(x) do \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1181 { if (INTP (x) || FLOATP (x)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1182 ; \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1183 else if (CHARP (x)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1184 x = make_int (XCHAR (x)); \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1185 else if (MARKERP (x)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1186 x = make_int (marker_position (x)); \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1187 else \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1188 x = wrong_type_argument (Qnumber_char_or_marker_p, x); \
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1189 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 # define INT_OR_FLOATP(x) (INTP (x) || FLOATP (x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192 # define GC_INT_OR_FLOATP(x) (GC_INTP (x) || GC_FLOATP (x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 #else /* not LISP_FLOAT_TYPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 #define XFLOAT(x) --- error! No float support. ---
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 #define XSETFLOAT(x, p) --- error! No float support. ---
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 #define FLOATP(x) 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 #define GC_FLOATP(x) 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 #define CHECK_FLOAT(x) --- error! No float support. ---
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 #define CONCHECK_FLOAT(x) --- error! No float support. ---
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 #define XFLOATINT(n) XINT(n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 #define CHECK_INT_OR_FLOAT CHECK_INT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 #define CONCHECK_INT_OR_FLOAT CONCHECK_INT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 #define CHECK_INT_OR_FLOAT_COERCE_MARKER CHECK_INT_COERCE_MARKER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207 #define CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 CHECK_INT_COERCE_CHAR_OR_MARKER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 #define INT_OR_FLOATP(x) (INTP (x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 # define GC_INT_OR_FLOATP(x) (GC_INTP (x))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 #endif /* not LISP_FLOAT_TYPE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214 #define INTP(x) (XTYPE (x) == Lisp_Int)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 #define GC_INTP(x) (XGCTYPE (x) == Lisp_Int)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 #define ZEROP(x) EQ (x, Qzero)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 #define GC_ZEROP(x) GC_EQ (x, Qzero)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 #ifdef ERROR_CHECK_TYPECHECK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 INLINE EMACS_INT XINT (Lisp_Object obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 INLINE EMACS_INT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 XINT (Lisp_Object obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 assert (INTP (obj));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 return XREALINT (obj);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 #define XINT(obj) XREALINT (obj)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 #define CHECK_INT(x) CHECK_NONRECORD (x, Lisp_Int, Qintegerp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 #define CONCHECK_INT(x) CONCHECK_NONRECORD (x, Lisp_Int, Qintegerp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 #define NATNUMP(x) (INTP (x) && XINT (x) >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 #define GC_NATNUMP(x) (GC_INTP (x) && XINT (x) >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 #define CHECK_NATNUM(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243 do { if (!NATNUMP (x)) dead_wrong_type_argument (Qnatnump, x); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 #define CONCHECK_NATNUM(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 do { if (!NATNUMP (x)) x = wrong_type_argument (Qnatnump, x); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 /* next three always continuable because they coerce their arguments. */
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1248 #define CHECK_INT_COERCE_CHAR(x) do \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1249 { if (INTP (x)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1250 ; \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1251 else if (CHARP (x)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1252 x = make_int (XCHAR (x)); \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1253 else \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1254 x = wrong_type_argument (Qinteger_or_char_p, x); \
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1255 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1257 #define CHECK_INT_COERCE_MARKER(x) do \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1258 { if (INTP (x)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1259 ; \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1260 else if (MARKERP (x)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1261 x = make_int (marker_position (x)); \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1262 else \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1263 x = wrong_type_argument (Qinteger_or_marker_p, x); \
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1264 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1266 #define CHECK_INT_COERCE_CHAR_OR_MARKER(x) do \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1267 { if (INTP (x)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1268 ; \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1269 else if (CHARP (x)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1270 x = make_int (XCHAR (x)); \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1271 else if (MARKERP (x)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1272 x = make_int (marker_position (x)); \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1273 else \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1274 x = wrong_type_argument (Qinteger_char_or_marker_p, x); \
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1275 } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1277 /*********** pure space ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1279 #define CHECK_IMPURE(obj) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1280 do { if (purified (obj)) pure_write_error (); } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1281
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1282 /*********** structures ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1284 struct structure_keyword_entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1285 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1286 Lisp_Object keyword;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1287 int (*validate) (Lisp_Object keyword, Lisp_Object value,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1288 Error_behavior errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1289 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1290
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1291 typedef struct structure_keyword_entry_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1292 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1293 Dynarr_declare (struct structure_keyword_entry);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1294 } Structure_keyword_entry_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1296 struct structure_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1297 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1298 Lisp_Object type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1299 Structure_keyword_entry_dynarr *keywords;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1300 int (*validate) (Lisp_Object data, Error_behavior errb);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1301 Lisp_Object (*instantiate) (Lisp_Object data);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1302 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1303
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1304 typedef struct structure_type_dynarr_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1305 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1306 Dynarr_declare (struct structure_type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1307 } Structure_type_dynarr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1309 struct structure_type *define_structure_type (Lisp_Object type,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1310 int (*validate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1311 (Lisp_Object data,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1312 Error_behavior errb),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1313 Lisp_Object (*instantiate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1314 (Lisp_Object data));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1315 void define_structure_type_keyword (struct structure_type *st,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1316 Lisp_Object keyword,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1317 int (*validate) (Lisp_Object keyword,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1318 Lisp_Object value,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1319 Error_behavior errb));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1320
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1321 /*********** weak lists ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1323 enum weak_list_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1324 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1325 /* element disappears if it's unmarked. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1326 WEAK_LIST_SIMPLE,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1327 /* element disappears if it's a cons and either its car or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1328 cdr is unmarked. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1329 WEAK_LIST_ASSOC,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1330 /* element disappears if it's a cons and its car is unmarked. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1331 WEAK_LIST_KEY_ASSOC,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1332 /* element disappears if it's a cons and its cdr is unmarked. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1333 WEAK_LIST_VALUE_ASSOC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1334 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1336 struct weak_list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1337 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1338 struct lcrecord_header header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1339 Lisp_Object list; /* don't mark through this! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1340 enum weak_list_type type;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1341 Lisp_Object next_weak; /* don't mark through this! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1342 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1343
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1344 DECLARE_LRECORD (weak_list, struct weak_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1345 #define XWEAK_LIST(x) XRECORD (x, weak_list, struct weak_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1346 #define XSETWEAK_LIST(x, p) XSETRECORD (x, p, weak_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1347 #define WEAK_LISTP(x) RECORDP (x, weak_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1348 #define GC_WEAK_LISTP(x) GC_RECORDP (x, weak_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1349 #define CHECK_WEAK_LIST(x) CHECK_RECORD (x, weak_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1350 #define CONCHECK_WEAK_LIST(x) CONCHECK_RECORD (x, weak_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1351
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1352 #define weak_list_list(w) ((w)->list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1353 #define XWEAK_LIST_LIST(w) (XWEAK_LIST (w)->list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1355 Lisp_Object make_weak_list (enum weak_list_type type);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1356 /* The following two are only called by the garbage collector */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1357 int finish_marking_weak_lists (int (*obj_marked_p) (Lisp_Object),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1358 void (*markobj) (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1359 void prune_weak_lists (int (*obj_marked_p) (Lisp_Object));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1361 /*********** lcrecord lists ***********/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1363 struct lcrecord_list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1364 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1365 struct lcrecord_header header;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1366 Lisp_Object free;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1367 int size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1368 CONST struct lrecord_implementation *implementation;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1369 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1371 DECLARE_LRECORD (lcrecord_list, struct lcrecord_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1372 #define XLCRECORD_LIST(x) XRECORD (x, lcrecord_list, struct lcrecord_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1373 #define XSETLCRECORD_LIST(x, p) XSETRECORD (x, p, lcrecord_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1374 #define LCRECORD_LISTP(x) RECORDP (x, lcrecord_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1375 #define GC_LCRECORD_LISTP(x) GC_RECORDP (x, lcrecord_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1376 /* #define CHECK_LCRECORD_LIST(x) CHECK_RECORD (x, lcrecord_list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1377 Lcrecord lists should never escape to the Lisp level, so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1378 functions should not be doing this. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1379
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1380 Lisp_Object make_lcrecord_list (int size,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1381 CONST struct lrecord_implementation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1382 *implementation);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1383 Lisp_Object allocate_managed_lcrecord (Lisp_Object lcrecord_list);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1384 void free_managed_lcrecord (Lisp_Object lcrecord_list, Lisp_Object lcrecord);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1387 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1388 /* Definitions of primitive Lisp functions and variables */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1389 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1390
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1391
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1392 /* DEFUN - Define a built-in Lisp-visible C function or `subr'.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1393 `lname' should be the name to give the function in Lisp,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1394 as a null-terminated C string.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1395 `Fname' should be the C equivalent of `lname', using only characters
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1396 valid in a C identifier, with an "F" prepended.
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1397 The name of the C constant structure that records information
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1398 on this function for internal use is "S" concatenated with Fname.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1399 `minargs' should be a number, the minimum number of arguments allowed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1400 `maxargs' should be a number, the maximum number of arguments allowed,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1401 or else MANY or UNEVALLED.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1402 MANY means pass a vector of evaluated arguments,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1403 in the form of an integer number-of-arguments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1404 followed by the address of a vector of Lisp_Objects
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1405 which contains the argument values.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1406 UNEVALLED means pass the list of unevaluated arguments.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1407 `prompt' says how to read arguments for an interactive call.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1408 See the doc string for `interactive'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1409 A null string means call interactively with no arguments.
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1410 `arglist' are the comma-separated arguments (always Lisp_Objects) for
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1411 the function.
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1412 The docstring for the function is placed as a "C" comment between
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1413 the prompt and the `args' argument. make-docfile reads the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1414 comment and creates the DOC file form it.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1415 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1416
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1417 #define SUBR_MAX_ARGS 8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1418 #define MANY -2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1419 #define UNEVALLED -1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1421 /* Can't be const, because then subr->doc is read-only and
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1422 Snarf_documentation chokes */
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1423
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1424 #define DEFUN(lname, Fname, minargs, maxargs, prompt, arglist) \
100
4be1180a9e89 Import from CVS: tag r20-1b2
cvs
parents: 84
diff changeset
1425 Lisp_Object Fname (DEFUN_##maxargs arglist) ; /* See below */ \
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1426 static struct Lisp_Subr S##Fname = { {lrecord_subr}, \
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
1427 minargs, maxargs, prompt, 0, lname, (lisp_fn_t) Fname }; \
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1428 Lisp_Object Fname (DEFUN_##maxargs arglist)
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1429
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1430 /* Heavy ANSI C preprocessor hackery to get DEFUN to declare a
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1431 prototype that matches maxargs, and add the obligatory
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1432 `Lisp_Object' type declaration to the formal C arguments. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1433
20
859a2309aef8 Import from CVS: tag r19-15b93
cvs
parents: 16
diff changeset
1434 #define DEFUN_MANY(named_int, named_Lisp_Object) named_int, named_Lisp_Object
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1435 #define DEFUN_UNEVALLED(args) Lisp_Object args
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1436 #define DEFUN_0() void
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1437 #define DEFUN_1(a) Lisp_Object a
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1438 #define DEFUN_2(a,b) DEFUN_1(a), Lisp_Object b
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1439 #define DEFUN_3(a,b,c) DEFUN_2(a,b), Lisp_Object c
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1440 #define DEFUN_4(a,b,c,d) DEFUN_3(a,b,c), Lisp_Object d
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1441 #define DEFUN_5(a,b,c,d,e) DEFUN_4(a,b,c,d), Lisp_Object e
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1442 #define DEFUN_6(a,b,c,d,e,f) DEFUN_5(a,b,c,d,e), Lisp_Object f
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1443 #define DEFUN_7(a,b,c,d,e,f,g) DEFUN_6(a,b,c,d,e,f), Lisp_Object g
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1444 #define DEFUN_8(a,b,c,d,e,f,g,h) DEFUN_7(a,b,c,d,e,f,g), Lisp_Object h
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1445
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1446 /* WARNING: If you add defines here for higher values of maxargs,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1447 make sure to also fix the clauses in primitive_funcall(),
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1448 and change the define of SUBR_MAX_ARGS above. */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1450 #include "symeval.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1451
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1452 /* Depth of special binding/unwind-protect stack. Use as arg to `unbind_to' */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1453 int specpdl_depth (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1454
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1456 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1457 /* Checking for QUIT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1458 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1459
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1460 /* Asynchronous events set something_happened, and then are processed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1461 within the QUIT macro. At this point, we are guaranteed to not be in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1462 any sensitive code. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1464 extern volatile int something_happened;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1465 int check_what_happened (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1466
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1467 extern volatile int quit_check_signal_happened;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1468 extern volatile int quit_check_signal_tick_count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1469 int check_quit (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1470
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1471 void signal_quit (void);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1472
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1473 /* Nonzero if ought to quit now. */
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1474 #define QUITP \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1475 ((quit_check_signal_happened ? check_quit () : 0), \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1476 (!NILP (Vquit_flag) && (NILP (Vinhibit_quit) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1477 || EQ (Vquit_flag, Qcritical))))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1478
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1479 /* QUIT used to call QUITP, but there are some places where QUITP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1480 is called directly, and check_what_happened() should only be called
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1481 when Emacs is actually ready to quit because it could do things
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1482 like switch threads. */
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1483 #define INTERNAL_QUITP \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1484 ((something_happened ? check_what_happened () : 0), \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1485 (!NILP (Vquit_flag) && \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1486 (NILP (Vinhibit_quit) || EQ (Vquit_flag, Qcritical))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1487
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1488 #define INTERNAL_REALLY_QUITP \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1489 (check_what_happened (), \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1490 (!NILP (Vquit_flag) && \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1491 (NILP (Vinhibit_quit) || EQ (Vquit_flag, Qcritical))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1492
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1493 /* Check quit-flag and quit if it is non-nil. Also do any other things
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1494 that might have gotten queued until it was safe. */
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1495 #define QUIT do { if (INTERNAL_QUITP) signal_quit (); } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1496
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1497 #define REALLY_QUIT do { if (INTERNAL_REALLY_QUITP) signal_quit (); } while (0)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1499
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1500 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1501 /* hashing */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1502 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1503
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1504 /* #### for a 64-bit machine, we should substitute a prime just over 2^32 */
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1505 #define GOOD_HASH 65599 /* prime number just over 2^16; Dragon book, p. 435 */
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1506 #define HASH2(a,b) (GOOD_HASH * (a) + (b))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1507 #define HASH3(a,b,c) (GOOD_HASH * HASH2 (a,b) + (c))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1508 #define HASH4(a,b,c,d) (GOOD_HASH * HASH3 (a,b,c) + (d))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1509 #define HASH5(a,b,c,d,e) (GOOD_HASH * HASH4 (a,b,c,d) + (e))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1510 #define HASH6(a,b,c,d,e,f) (GOOD_HASH * HASH5 (a,b,c,d,e) + (f))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1511 #define HASH7(a,b,c,d,e,f,g) (GOOD_HASH * HASH6 (a,b,c,d,e,f) + (g))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1512 #define HASH8(a,b,c,d,e,f,g,h) (GOOD_HASH * HASH7 (a,b,c,d,e,f,g) + (h))
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1513 #define HASH9(a,b,c,d,e,f,g,h,i) (GOOD_HASH * HASH8 (a,b,c,d,e,f,g,h) + (i))
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1514
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1515 /* Enough already! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1516
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1517 #define LISP_HASH(obj) ((unsigned long) LISP_TO_VOID (obj))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1518 unsigned long string_hash (CONST void *xv);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1519 unsigned long memory_hash (CONST void *xv, int size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1520 unsigned long internal_hash (Lisp_Object obj, int depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1521 unsigned long internal_array_hash (Lisp_Object *arr, int size, int depth);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1522
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1524 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1525 /* String translation */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1526 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1527
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1528 #ifdef I18N3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1529 #ifdef HAVE_LIBINTL_H
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1530 #include <libintl.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1531 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1532 char *dgettext (CONST char *, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1533 char *gettext (CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1534 char *textdomain (CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1535 char *bindtextdomain (CONST char *, CONST char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1536 #endif /* HAVE_LIBINTL_H */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1537
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1538 #define GETTEXT(x) gettext(x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1539 #define LISP_GETTEXT(x) Fgettext (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1540 #else /* !I18N3 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1541 #define GETTEXT(x) (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1542 #define LISP_GETTEXT(x) (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1543 #endif /* !I18N3 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1544
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1545 /* DEFER_GETTEXT is used to identify strings which are translated when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1546 they are referenced instead of when they are defined.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1547 These include Qerror_messages and initialized arrays of strings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1548 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1549 #define DEFER_GETTEXT(x) (x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1550
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1552 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1553 /* Garbage collection / GC-protection */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1554 /************************************************************************/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1556 /* number of bytes of structure consed since last GC */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1558 extern EMACS_INT consing_since_gc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1559
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1560 /* threshold for doing another gc */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1561
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1562 extern EMACS_INT gc_cons_threshold;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1563
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1564 /* Structure for recording stack slots that need marking */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1565
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1566 /* This is a chain of structures, each of which points at a Lisp_Object
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1567 variable whose value should be marked in garbage collection.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1568 Normally every link of the chain is an automatic variable of a function,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1569 and its `val' points to some argument or local variable of the function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1570 On exit to the function, the chain is set back to the value it had on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1571 entry. This way, no link remains in the chain when the stack frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1572 containing the link disappears.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1574 Every function that can call Feval must protect in this fashion all
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1575 Lisp_Object variables whose contents will be used again. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1577 extern struct gcpro *gcprolist;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1578
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1579 struct gcpro
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1580 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1581 struct gcpro *next;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1582 Lisp_Object *var; /* Address of first protected variable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1583 int nvars; /* Number of consecutive protected variables */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1584 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1586 /* Normally, you declare variables gcpro1, gcpro2, ... and use the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1587 GCPROn() macros. However, if you need to have nested gcpro's,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1588 declare ngcpro1, ngcpro2, ... and use NGCPROn(). If you need
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1589 to nest another level, use nngcpro1, nngcpro2, ... and use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1590 NNGCPROn(). If you need to nest yet another level, create
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1591 the appropriate macros. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1593 #ifdef DEBUG_GCPRO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1594
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1595 void debug_gcpro1 ();
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1596 void debug_gcpro2 ();
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1597 void debug_gcpro3 ();
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1598 void debug_gcpro4 ();
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1599 void debug_gcpro5 ();
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1600 void debug_ungcpro();
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1601
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1602 #define GCPRO1(v) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1603 debug_gcpro1 (__FILE__, __LINE__,&gcpro1,&v)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1604 #define GCPRO2(v1,v2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1605 debug_gcpro2 (__FILE__, __LINE__,&gcpro1,&gcpro2,&v1,&v2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1606 #define GCPRO3(v1,v2,v3) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1607 debug_gcpro3 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&v1,&v2,&v3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1608 #define GCPRO4(v1,v2,v3,v4) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1609 debug_gcpro4 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&gcpro4,\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1610 &v1,&v2,&v3,&v4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1611 #define GCPRO5(v1,v2,v3,v4,v5) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1612 debug_gcpro5 (__FILE__, __LINE__,&gcpro1,&gcpro2,&gcpro3,&gcpro4,&gcpro5,\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1613 &v1,&v2,&v3,&v4,&v5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1614 #define UNGCPRO \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1615 debug_ungcpro(__FILE__, __LINE__,&gcpro1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1616
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1617 #define NGCPRO1(v) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1618 debug_gcpro1 (__FILE__, __LINE__,&ngcpro1,&v)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1619 #define NGCPRO2(v1,v2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1620 debug_gcpro2 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&v1,&v2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1621 #define NGCPRO3(v1,v2,v3) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1622 debug_gcpro3 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&v1,&v2,&v3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1623 #define NGCPRO4(v1,v2,v3,v4) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1624 debug_gcpro4 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&ngcpro4,\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1625 &v1,&v2,&v3,&v4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1626 #define NGCPRO5(v1,v2,v3,v4,v5) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1627 debug_gcpro5 (__FILE__, __LINE__,&ngcpro1,&ngcpro2,&ngcpro3,&ngcpro4,\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1628 &ngcpro5,&v1,&v2,&v3,&v4,&v5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1629 #define NUNGCPRO \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1630 debug_ungcpro(__FILE__, __LINE__,&ngcpro1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1631
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1632 #define NNGCPRO1(v) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1633 debug_gcpro1 (__FILE__, __LINE__,&nngcpro1,&v)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1634 #define NNGCPRO2(v1,v2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1635 debug_gcpro2 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&v1,&v2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1636 #define NNGCPRO3(v1,v2,v3) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1637 debug_gcpro3 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&v1,&v2,&v3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1638 #define NNGCPRO4(v1,v2,v3,v4) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1639 debug_gcpro4 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&nngcpro4,\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1640 &v1,&v2,&v3,&v4)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1641 #define NNGCPRO5(v1,v2,v3,v4,v5) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1642 debug_gcpro5 (__FILE__, __LINE__,&nngcpro1,&nngcpro2,&nngcpro3,&nngcpro4,\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1643 &nngcpro5,&v1,&v2,&v3,&v4,&v5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1644 #define NUNNGCPRO \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1645 debug_ungcpro(__FILE__, __LINE__,&nngcpro1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1647 #else /* ! DEBUG_GCPRO */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1648
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1649 #define GCPRO1(varname) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1650 {gcpro1.next = gcprolist; gcpro1.var = &varname; gcpro1.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1651 gcprolist = &gcpro1; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1653 #define GCPRO2(varname1, varname2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1654 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 14
diff changeset
1655 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1656 gcprolist = &gcpro2; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1657
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1658 #define GCPRO3(varname1, varname2, varname3) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1659 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1660 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1661 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1662 gcprolist = &gcpro3; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1664 #define GCPRO4(varname1, varname2, varname3, varname4) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1665 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1666 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1667 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1668 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1669 gcprolist = &gcpro4; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1670
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1671 #define GCPRO5(varname1, varname2, varname3, varname4, varname5) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1672 {gcpro1.next = gcprolist; gcpro1.var = &varname1; gcpro1.nvars = 1; \
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1673 gcpro2.next = &gcpro1; gcpro2.var = &varname2; gcpro2.nvars = 1; \
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1674 gcpro3.next = &gcpro2; gcpro3.var = &varname3; gcpro3.nvars = 1; \
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1675 gcpro4.next = &gcpro3; gcpro4.var = &varname4; gcpro4.nvars = 1; \
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1676 gcpro5.next = &gcpro4; gcpro5.var = &varname5; gcpro5.nvars = 1; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1677 gcprolist = &gcpro5; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1678
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1679 #define UNGCPRO (gcprolist = gcpro1.next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1681 #define NGCPRO1(varname) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1682 {ngcpro1.next = gcprolist; ngcpro1.var = &varname; ngcpro1.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1683 gcprolist = &ngcpro1; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1684
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1685 #define NGCPRO2(varname1, varname2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1686 {ngcpro1.next = gcprolist; ngcpro1.var = &varname1; ngcpro1.nvars = 1; \
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1687 ngcpro2.next = &ngcpro1; ngcpro2.var = &varname2; ngcpro2.nvars = 1; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1688 gcprolist = &ngcpro2; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1689
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1690 #define NGCPRO3(varname1, varname2, varname3) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1691 {ngcpro1.next = gcprolist; ngcpro1.var = &varname1; ngcpro1.nvars = 1; \
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1692 ngcpro2.next = &ngcpro1; ngcpro2.var = &varname2; ngcpro2.nvars = 1; \
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1693 ngcpro3.next = &ngcpro2; ngcpro3.var = &varname3; ngcpro3.nvars = 1; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1694 gcprolist = &ngcpro3; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1695
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1696 #define NGCPRO4(varname1, varname2, varname3, varname4) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1697 {ngcpro1.next = gcprolist; ngcpro1.var = &varname1; ngcpro1.nvars = 1; \
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1698 ngcpro2.next = &ngcpro1; ngcpro2.var = &varname2; ngcpro2.nvars = 1; \
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1699 ngcpro3.next = &ngcpro2; ngcpro3.var = &varname3; ngcpro3.nvars = 1; \
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1700 ngcpro4.next = &ngcpro3; ngcpro4.var = &varname4; ngcpro4.nvars = 1; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1701 gcprolist = &ngcpro4; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1702
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1703 #define NGCPRO5(varname1, varname2, varname3, varname4, varname5) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1704 {ngcpro1.next = gcprolist; ngcpro1.var = &varname1; ngcpro1.nvars = 1; \
14
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1705 ngcpro2.next = &ngcpro1; ngcpro2.var = &varname2; ngcpro2.nvars = 1; \
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1706 ngcpro3.next = &ngcpro2; ngcpro3.var = &varname3; ngcpro3.nvars = 1; \
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1707 ngcpro4.next = &ngcpro3; ngcpro4.var = &varname4; ngcpro4.nvars = 1; \
9ee227acff29 Import from CVS: tag r19-15b90
cvs
parents: 2
diff changeset
1708 ngcpro5.next = &ngcpro4; ngcpro5.var = &varname5; ngcpro5.nvars = 1; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1709 gcprolist = &ngcpro5; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1710
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1711 #define NUNGCPRO (gcprolist = ngcpro1.next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1712
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1713 #define NNGCPRO1(varname) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1714 {nngcpro1.next = gcprolist; nngcpro1.var = &varname; nngcpro1.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1715 gcprolist = &nngcpro1; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1716
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1717 #define NNGCPRO2(varname1, varname2) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1718 {nngcpro1.next = gcprolist; nngcpro1.var = &varname1; nngcpro1.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1719 nngcpro2.next = &nngcpro1; nngcpro2.var = &varname2; nngcpro2.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1720 gcprolist = &nngcpro2; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1721
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1722 #define NNGCPRO3(varname1, varname2, varname3) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1723 {nngcpro1.next = gcprolist; nngcpro1.var = &varname1; nngcpro1.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1724 nngcpro2.next = &nngcpro1; nngcpro2.var = &varname2; nngcpro2.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1725 nngcpro3.next = &nngcpro2; nngcpro3.var = &varname3; nngcpro3.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1726 gcprolist = &nngcpro3; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1727
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1728 #define NNGCPRO4(varname1, varname2, varname3, varname4) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1729 {nngcpro1.next = gcprolist; nngcpro1.var = &varname1; nngcpro1.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1730 nngcpro2.next = &nngcpro1; nngcpro2.var = &varname2; nngcpro2.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1731 nngcpro3.next = &nngcpro2; nngcpro3.var = &varname3; nngcpro3.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1732 nngcpro4.next = &nngcpro3; nngcpro4.var = &varname4; nngcpro4.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1733 gcprolist = &nngcpro4; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1734
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1735 #define NNGCPRO5(varname1, varname2, varname3, varname4, varname5) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1736 {nngcpro1.next = gcprolist; nngcpro1.var = &varname1; nngcpro1.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1737 nngcpro2.next = &nngcpro1; nngcpro2.var = &varname2; nngcpro2.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1738 nngcpro3.next = &nngcpro2; nngcpro3.var = &varname3; nngcpro3.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1739 nngcpro4.next = &nngcpro3; nngcpro4.var = &varname4; nngcpro4.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1740 nngcpro5.next = &nngcpro4; nngcpro5.var = &varname5; nngcpro5.nvars = 1; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1741 gcprolist = &nngcpro5; }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1742
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1743 #define NNUNGCPRO (gcprolist = nngcpro1.next)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1744
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1745 #endif /* ! DEBUG_GCPRO */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1746
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1747 /* Another try to fix SunPro C compiler warnings */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1748 /* "end-of-loop code not reached" */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1749 /* "statement not reached */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1750 #ifdef __SUNPRO_C
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1751 #define RETURN__ if (1) return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1752 #define RETURN_NOT_REACHED(value)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1753 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1754 #define RETURN__ return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1755 #define RETURN_NOT_REACHED(value) return value;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1756 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1758 /* Evaluate expr, UNGCPRO, and then return the value of expr. */
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1759 #define RETURN_UNGCPRO(expr) do \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1760 { \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1761 Lisp_Object ret_ungc_val = (expr); \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1762 UNGCPRO; \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1763 RETURN__ ret_ungc_val; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1764 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1765
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1766 /* Evaluate expr, NUNGCPRO, UNGCPRO, and then return the value of expr. */
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1767 #define RETURN_NUNGCPRO(expr) do \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1768 { \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1769 Lisp_Object ret_ungc_val = (expr); \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1770 NUNGCPRO; \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1771 UNGCPRO; \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1772 RETURN__ ret_ungc_val; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1773 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1774
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1775 /* Evaluate expr, NNUNGCPRO, NUNGCPRO, UNGCPRO, and then return the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1776 value of expr. */
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1777 #define RETURN_NNUNGCPRO(expr) do \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1778 { \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1779 Lisp_Object ret_ungc_val = (expr); \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1780 NNUNGCPRO; \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1781 NUNGCPRO; \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1782 UNGCPRO; \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1783 RETURN__ ret_ungc_val; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1784 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1785
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1786 /* Evaluate expr, return it if it's not Qunbound. */
84
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1787 #define RETURN_IF_NOT_UNBOUND(expr) do \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1788 { \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1789 Lisp_Object ret_nunb_val = (expr); \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1790 if (!UNBOUNDP (ret_nunb_val)) \
ac0620f6398e Import from CVS: tag r20-0b92
cvs
parents: 80
diff changeset
1791 RETURN__ ret_nunb_val; \
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1792 } while (0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1794 /* Call staticpro (&var) to protect static variable `var'. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1795 void staticpro (Lisp_Object *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1796
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1797 /* Nonzero means Emacs has already been initialized.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1798 Used during startup to detect startup of dumped Emacs. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1799 extern int initialized;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1800
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1801 #ifdef MEMORY_USAGE_STATS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1802
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1803 /* This structure is used to keep statistics on the amount of memory
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1804 in use.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1805
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1806 WAS_REQUESTED stores the actual amount of memory that was requested
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1807 of the allocation function. The *_OVERHEAD fields store the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1808 additional amount of memory that was grabbed by the functions to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1809 facilitate allocation, reallocation, etc. MALLOC_OVERHEAD is for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1810 memory allocated with malloc(); DYNARR_OVERHEAD is for dynamic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1811 arrays; GAP_OVERHEAD is for gap arrays. Note that for (e.g.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1812 dynamic arrays, there is both MALLOC_OVERHEAD and DYNARR_OVERHEAD
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1813 memory: The dynamic array allocates memory above and beyond what
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1814 was asked of it, and when it in turns allocates memory using
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1815 malloc(), malloc() allocates memory beyond what it was asked
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1816 to allocate.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1817
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1818 Functions that accept a structure of this sort do not initialize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1819 the fields to 0, and add any existing values to whatever was there
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1820 before; this way, you can get a cumulative effect. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1821
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1822 struct overhead_stats
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1823 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1824 int was_requested;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1825 int malloc_overhead;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1826 int dynarr_overhead;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1827 int gap_overhead;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1828 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1829
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1830 #endif /* MEMORY_USAGE_STATS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1832 /* Some systems (e.g., NT) use a different path separator than Unix,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1833 in addition to a device separator. Default the path separator
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1834 to '/', and don't test for a device separator in IS_ANY_SEP. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1835
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1836 #ifndef DIRECTORY_SEP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1837 #define DIRECTORY_SEP '/'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1838 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1839 #ifndef IS_DIRECTORY_SEP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1840 #define IS_DIRECTORY_SEP(_c_) ((_c_) == DIRECTORY_SEP)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1841 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1842 #ifndef IS_DEVICE_SEP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1843 #ifndef DEVICE_SEP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1844 #define IS_DEVICE_SEP(_c_) 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1845 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1846 #define IS_DEVICE_SEP(_c_) ((_c_) == DEVICE_SEP)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1847 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1848 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1849 #ifndef IS_ANY_SEP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1850 #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1851 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1852
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1853 #ifdef HAVE_INTTYPES_H
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1854 #include <inttypes.h>
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1855 #elif SIZEOF_VOID_P == SIZEOF_INT
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1856 typedef int intptr_t;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1857 typedef unsigned int uintptr_t;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1858 #elif SIZEOF_VOID_P == SIZEOF_LONG
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1859 typedef long intptr_t;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1860 typedef unsigned long uintptr_t;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1861 #elif defined(SIZEOF_LONG_LONG) && SIZEOF_VOID_P == SIZEOF_LONG_LONG
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1862 typedef long long intptr_t;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1863 typedef unsigned long long uintptr_t;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1864 #else
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1865 /* Just pray. May break, may not. */
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1866 typedef char *intptr_t;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1867 typedef char *uintptr_t;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1868 #endif
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents: 157
diff changeset
1869
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1870 #include "emacsfns.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1872 #endif /* _XEMACS_LISP_H_ */