0
|
1 /* Primitive operations on Lisp data types for XEmacs Lisp interpreter.
|
|
2 Copyright (C) 1985, 1986, 1988, 1992, 1993, 1994, 1995
|
|
3 Free Software Foundation, Inc.
|
|
4
|
|
5 This file is part of XEmacs.
|
|
6
|
|
7 XEmacs is free software; you can redistribute it and/or modify it
|
|
8 under the terms of the GNU General Public License as published by the
|
|
9 Free Software Foundation; either version 2, or (at your option) any
|
|
10 later version.
|
|
11
|
|
12 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 for more details.
|
|
16
|
|
17 You should have received a copy of the GNU General Public License
|
|
18 along with XEmacs; see the file COPYING. If not, write to
|
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
20 Boston, MA 02111-1307, USA. */
|
|
21
|
|
22 /* Synched up with: Mule 2.0, FSF 19.30. Some of FSF's data.c is in
|
|
23 XEmacs' symbols.c. */
|
|
24
|
|
25 /* This file has been Mule-ized. */
|
|
26
|
|
27 #include <config.h>
|
|
28 #include "lisp.h"
|
|
29
|
|
30 #include "buffer.h"
|
|
31 #include "bytecode.h"
|
|
32
|
|
33 #include "syssignal.h"
|
|
34 #ifdef LISP_FLOAT_TYPE
|
|
35 /* Need to define a differentiating symbol -- see sysfloat.h */
|
|
36 # define THIS_FILENAME data_c
|
|
37 # include "sysfloat.h"
|
|
38 #endif /* LISP_FLOAT_TYPE */
|
|
39
|
|
40 Lisp_Object Qnil, Qt, Qquote, Qlambda, Qunbound;
|
|
41 Lisp_Object Qerror_conditions, Qerror_message, Qtop_level;
|
|
42 Lisp_Object Qsignal, Qerror, Qquit, Qwrong_type_argument, Qargs_out_of_range;
|
|
43 Lisp_Object Qvoid_variable, Qcyclic_variable_indirection;
|
|
44 Lisp_Object Qvoid_function, Qcyclic_function_indirection;
|
|
45 Lisp_Object Qsetting_constant, Qinvalid_read_syntax;
|
|
46 Lisp_Object Qmalformed_list, Qmalformed_property_list;
|
|
47 Lisp_Object Qcircular_list, Qcircular_property_list;
|
|
48 Lisp_Object Qinvalid_function, Qwrong_number_of_arguments, Qno_catch;
|
|
49 Lisp_Object Qio_error, Qend_of_file;
|
|
50 Lisp_Object Qarith_error, Qrange_error, Qdomain_error;
|
|
51 Lisp_Object Qsingularity_error, Qoverflow_error, Qunderflow_error;
|
|
52 Lisp_Object Qbeginning_of_buffer, Qend_of_buffer, Qbuffer_read_only;
|
|
53 Lisp_Object Qintegerp, Qnatnump, Qsymbolp, Qkeywordp, Qlistp, Qconsp, Qsubrp;
|
|
54 Lisp_Object Qcharacterp, Qstringp, Qarrayp, Qsequencep, Qbufferp;
|
|
55 Lisp_Object Qcompiled_functionp;
|
|
56 Lisp_Object Qchar_or_string_p, Qmarkerp, Qinteger_or_marker_p, Qvectorp;
|
|
57 Lisp_Object Qinteger_or_char_p, Qinteger_char_or_marker_p;
|
|
58 Lisp_Object Qbit_vectorp, Qbitp;
|
|
59
|
|
60 /* Qstring, Qinteger, Qsymbol, Qvector defined in general.c */
|
|
61 Lisp_Object Qcons, Qkeyword;
|
|
62
|
|
63 Lisp_Object Qcdr;
|
|
64
|
|
65 Lisp_Object Qignore;
|
|
66
|
|
67 #ifdef LISP_FLOAT_TYPE
|
|
68 Lisp_Object Qfloatp;
|
|
69 #endif
|
|
70 Lisp_Object Qnumberp, Qnumber_or_marker_p, Qnumber_char_or_marker_p;
|
|
71
|
|
72 Lisp_Object Qweak_listp;
|
70
|
73
|
|
74 #ifdef DEBUG_XEMACS
|
|
75
|
|
76 int debug_issue_ebola_notices;
|
|
77
|
|
78 int debug_ebola_backtrace_length;
|
|
79
|
161
|
80 #if 0
|
|
81 /*#ifndef LRECORD_SYMBOL*/
|
159
|
82 #include "backtrace.h"
|
161
|
83 #endif
|
159
|
84
|
70
|
85 int
|
|
86 eq_with_ebola_notice (Lisp_Object obj1, Lisp_Object obj2)
|
|
87 {
|
|
88 if (((CHARP (obj1) && INTP (obj2)) || (CHARP (obj2) && INTP (obj1)))
|
|
89 && (debug_issue_ebola_notices >= 2
|
|
90 || XREALINT (obj1) == XREALINT (obj2)))
|
|
91 {
|
161
|
92 #if 0
|
|
93 /*#ifndef LRECORD_SYMBOL*/
|
159
|
94 struct backtrace *bt = backtrace_list;
|
|
95 char *p;
|
108
|
96 /* Continuing the joke by printing `Ebola warning!!!' confuses */
|
|
97 /* too many people. The message must be printed because Emacs used */
|
|
98 /* to work differently for two decades. */
|
159
|
99 /* temporary hack that will probably be around too long -slb */
|
|
100 if (XTYPE(*bt->function) == Lisp_Symbol)
|
|
101 {
|
|
102 p = (XSYMBOL(*bt->function)->name)->_data;
|
|
103 if (!strcmp(p, "byte-compile-constant") ||
|
|
104 !strcmp(p, "byte-compile-constants-vector") ||
|
|
105 !strcmp(p, "byte-optimize-minus") ||
|
|
106 !strcmp(p, "byte-optimize-plus") ||
|
161
|
107 !strcmp(p, "byte-decompile-bytecode-1") ||
|
|
108 !strcmp(p, "byte-optimize-logmumble") ||
|
|
109 !strcmp(p, "byte-compile-push-constant")) goto sc;
|
159
|
110 }
|
|
111 #endif
|
108
|
112 stderr_out("Comparison between integer and character is constant nil (");
|
70
|
113 Fprinc (obj1, Qexternal_debugging_output);
|
|
114 stderr_out (" and ");
|
|
115 Fprinc (obj2, Qexternal_debugging_output);
|
|
116 stderr_out (")\n");
|
|
117 debug_short_backtrace (debug_ebola_backtrace_length);
|
|
118 }
|
159
|
119 sc:
|
70
|
120 return EQ (obj1, obj2);
|
|
121 }
|
|
122
|
|
123 #endif /* DEBUG_XEMACS */
|
|
124
|
|
125
|
0
|
126
|
|
127 Lisp_Object
|
|
128 wrong_type_argument (Lisp_Object predicate, Lisp_Object value)
|
|
129 {
|
|
130 /* This function can GC */
|
|
131 REGISTER Lisp_Object tem;
|
|
132 do
|
|
133 {
|
|
134 value = Fsignal (Qwrong_type_argument, list2 (predicate, value));
|
|
135 tem = call1 (predicate, value);
|
|
136 }
|
|
137 while (NILP (tem));
|
|
138 return value;
|
|
139 }
|
|
140
|
|
141 DOESNT_RETURN
|
|
142 dead_wrong_type_argument (Lisp_Object predicate, Lisp_Object value)
|
|
143 {
|
|
144 signal_error (Qwrong_type_argument, list2 (predicate, value));
|
|
145 }
|
|
146
|
20
|
147 DEFUN ("wrong-type-argument", Fwrong_type_argument, 2, 2, 0, /*
|
0
|
148 Signal an error until the correct type value is given by the user.
|
|
149 This function loops, signalling a continuable `wrong-type-argument' error
|
|
150 with PREDICATE and VALUE as the data associated with the error and then
|
|
151 calling PREDICATE on the returned value, until the value gotten satisfies
|
|
152 PREDICATE. At that point, the gotten value is returned.
|
20
|
153 */
|
|
154 (predicate, value))
|
0
|
155 {
|
|
156 return wrong_type_argument (predicate, value);
|
|
157 }
|
|
158
|
|
159 DOESNT_RETURN
|
|
160 pure_write_error (void)
|
|
161 {
|
|
162 error ("Attempt to modify read-only object");
|
|
163 }
|
|
164
|
|
165 DOESNT_RETURN
|
|
166 args_out_of_range (Lisp_Object a1, Lisp_Object a2)
|
|
167 {
|
|
168 signal_error (Qargs_out_of_range, list2 (a1, a2));
|
|
169 }
|
|
170
|
|
171 DOESNT_RETURN
|
|
172 args_out_of_range_3 (Lisp_Object a1, Lisp_Object a2, Lisp_Object a3)
|
|
173 {
|
|
174 signal_error (Qargs_out_of_range, list3 (a1, a2, a3));
|
|
175 }
|
|
176
|
|
177 void
|
|
178 check_int_range (int val, int min, int max)
|
|
179 {
|
|
180 if (val < min || val > max)
|
|
181 args_out_of_range_3 (make_int (val), make_int (min),
|
|
182 make_int (max));
|
|
183 }
|
|
184
|
|
185 #ifndef make_int
|
|
186 Lisp_Object
|
|
187 make_int (EMACS_INT num)
|
|
188 {
|
|
189 Lisp_Object val;
|
|
190 /* Don't use XSETINT here -- it's defined in terms of make_int (). */
|
|
191 XSETOBJ (val, Lisp_Int, num);
|
|
192 return val;
|
|
193 }
|
|
194 #endif /* ! defined (make_int) */
|
|
195
|
|
196 /* On some machines, XINT needs a temporary location.
|
|
197 Here it is, in case it is needed. */
|
|
198
|
|
199 EMACS_INT sign_extend_temp;
|
|
200
|
|
201 /* On a few machines, XINT can only be done by calling this. */
|
|
202 /* XEmacs: only used by m/convex.h */
|
|
203 int sign_extend_lisp_int (EMACS_INT num);
|
|
204 int
|
|
205 sign_extend_lisp_int (EMACS_INT num)
|
|
206 {
|
|
207 if (num & (1L << (VALBITS - 1)))
|
|
208 return num | ((-1L) << VALBITS);
|
|
209 else
|
|
210 return num & ((1L << VALBITS) - 1);
|
|
211 }
|
|
212
|
|
213 /* characters do not need to sign extend so there's no need for special
|
|
214 futzing like with ints. */
|
|
215 Lisp_Object
|
|
216 make_char (Emchar num)
|
|
217 {
|
16
|
218 Lisp_Object val;
|
70
|
219 /* Don't use XSETCHAR here -- it's defined in terms of make_char (). */
|
|
220 XSETOBJ (val, Lisp_Char, num);
|
16
|
221 return val;
|
0
|
222 }
|
|
223
|
|
224 /* Data type predicates */
|
|
225
|
20
|
226 DEFUN ("eq", Feq, 2, 2, 0, /*
|
0
|
227 T if the two args are the same Lisp object.
|
20
|
228 */
|
|
229 (obj1, obj2))
|
0
|
230 {
|
70
|
231 return EQ_WITH_EBOLA_NOTICE (obj1, obj2) ? Qt : Qnil;
|
|
232 }
|
|
233
|
|
234 DEFUN ("old-eq", Fold_eq, 2, 2, 0, /*
|
|
235 T if the two args are (in most cases) the same Lisp object.
|
|
236
|
|
237 Special kludge: A character is considered `old-eq' to its equivalent integer
|
|
238 even though they are not the same object and are in fact of different
|
|
239 types. This is ABSOLUTELY AND UTTERLY HORRENDOUS but is necessary to
|
|
240 preserve byte-code compatibility with v19. This kludge is known as the
|
104
|
241 \"char-to-int confoundance disease\" and appears in a number of other
|
70
|
242 functions with `old-foo' equivalents.
|
|
243
|
|
244 Do not use this function!
|
|
245 */
|
|
246 (obj1, obj2))
|
|
247 {
|
|
248 /* The miscreant responsible for this blasphemy is known as
|
|
249 Richard M. Stallman, and he will burn in hell for it. */
|
|
250 return HACKEQ_UNSAFE (obj1, obj2) ? Qt : Qnil;
|
0
|
251 }
|
|
252
|
20
|
253 DEFUN ("null", Fnull, 1, 1, 0, /*
|
0
|
254 T if OBJECT is nil.
|
20
|
255 */
|
|
256 (object))
|
0
|
257 {
|
16
|
258 return NILP (object) ? Qt : Qnil;
|
0
|
259 }
|
|
260
|
20
|
261 DEFUN ("consp", Fconsp, 1, 1, 0, /*
|
0
|
262 T if OBJECT is a cons cell.
|
20
|
263 */
|
|
264 (object))
|
0
|
265 {
|
16
|
266 return CONSP (object) ? Qt : Qnil;
|
0
|
267 }
|
|
268
|
20
|
269 DEFUN ("atom", Fatom, 1, 1, 0, /*
|
0
|
270 T if OBJECT is not a cons cell. This includes nil.
|
20
|
271 */
|
|
272 (object))
|
0
|
273 {
|
16
|
274 return CONSP (object) ? Qnil : Qt;
|
0
|
275 }
|
|
276
|
20
|
277 DEFUN ("listp", Flistp, 1, 1, 0, /*
|
0
|
278 T if OBJECT is a list. This includes nil.
|
20
|
279 */
|
|
280 (object))
|
0
|
281 {
|
16
|
282 return (CONSP (object) || NILP (object)) ? Qt : Qnil;
|
0
|
283 }
|
|
284
|
20
|
285 DEFUN ("nlistp", Fnlistp, 1, 1, 0, /*
|
0
|
286 T if OBJECT is not a list. Lists include nil.
|
20
|
287 */
|
|
288 (object))
|
0
|
289 {
|
16
|
290 return (CONSP (object) || NILP (object)) ? Qnil : Qt;
|
0
|
291 }
|
|
292
|
20
|
293 DEFUN ("symbolp", Fsymbolp, 1, 1, 0, /*
|
0
|
294 T if OBJECT is a symbol.
|
20
|
295 */
|
|
296 (object))
|
0
|
297 {
|
16
|
298 return SYMBOLP (object) ? Qt : Qnil;
|
0
|
299 }
|
|
300
|
20
|
301 DEFUN ("keywordp", Fkeywordp, 1, 1, 0, /*
|
0
|
302 T if OBJECT is a keyword.
|
20
|
303 */
|
|
304 (object))
|
0
|
305 {
|
16
|
306 return KEYWORDP (object) ? Qt : Qnil;
|
0
|
307 }
|
|
308
|
20
|
309 DEFUN ("vectorp", Fvectorp, 1, 1, 0, /*
|
0
|
310 T if OBJECT is a vector.
|
20
|
311 */
|
|
312 (object))
|
0
|
313 {
|
16
|
314 return VECTORP (object) ? Qt : Qnil;
|
0
|
315 }
|
|
316
|
20
|
317 DEFUN ("bit-vector-p", Fbit_vector_p, 1, 1, 0, /*
|
0
|
318 T if OBJECT is a bit vector.
|
20
|
319 */
|
|
320 (object))
|
0
|
321 {
|
16
|
322 return BIT_VECTORP (object) ? Qt : Qnil;
|
0
|
323 }
|
|
324
|
20
|
325 DEFUN ("stringp", Fstringp, 1, 1, 0, /*
|
0
|
326 T if OBJECT is a string.
|
20
|
327 */
|
|
328 (object))
|
0
|
329 {
|
16
|
330 return STRINGP (object) ? Qt : Qnil;
|
0
|
331 }
|
|
332
|
20
|
333 DEFUN ("arrayp", Farrayp, 1, 1, 0, /*
|
0
|
334 T if OBJECT is an array (string, vector, or bit vector).
|
20
|
335 */
|
|
336 (object))
|
0
|
337 {
|
16
|
338 return (VECTORP (object) ||
|
|
339 STRINGP (object) ||
|
|
340 BIT_VECTORP (object))
|
|
341 ? Qt : Qnil;
|
0
|
342 }
|
|
343
|
20
|
344 DEFUN ("sequencep", Fsequencep, 1, 1, 0, /*
|
0
|
345 T if OBJECT is a sequence (list or array).
|
20
|
346 */
|
|
347 (object))
|
0
|
348 {
|
16
|
349 return (CONSP (object) ||
|
|
350 NILP (object) ||
|
|
351 VECTORP (object) ||
|
|
352 STRINGP (object) ||
|
|
353 BIT_VECTORP (object))
|
|
354 ? Qt : Qnil;
|
0
|
355 }
|
|
356
|
20
|
357 DEFUN ("markerp", Fmarkerp, 1, 1, 0, /*
|
0
|
358 T if OBJECT is a marker (editor pointer).
|
20
|
359 */
|
|
360 (object))
|
0
|
361 {
|
16
|
362 return MARKERP (object) ? Qt : Qnil;
|
0
|
363 }
|
|
364
|
20
|
365 DEFUN ("subrp", Fsubrp, 1, 1, 0, /*
|
0
|
366 T if OBJECT is a built-in function.
|
20
|
367 */
|
|
368 (object))
|
0
|
369 {
|
16
|
370 return SUBRP (object) ? Qt : Qnil;
|
0
|
371 }
|
|
372
|
20
|
373 DEFUN ("subr-min-args", Fsubr_min_args, 1, 1, 0, /*
|
0
|
374 Return minimum number of args built-in function SUBR may be called with.
|
20
|
375 */
|
|
376 (subr))
|
0
|
377 {
|
|
378 CHECK_SUBR (subr);
|
|
379 return make_int (XSUBR (subr)->min_args);
|
|
380 }
|
|
381
|
20
|
382 DEFUN ("subr-max-args", Fsubr_max_args, 1, 1, 0, /*
|
0
|
383 Return maximum number of args built-in function SUBR may be called with,
|
16
|
384 or nil if it takes an arbitrary number of arguments or is a special form.
|
20
|
385 */
|
|
386 (subr))
|
0
|
387 {
|
|
388 int nargs;
|
|
389 CHECK_SUBR (subr);
|
|
390 nargs = XSUBR (subr)->max_args;
|
|
391 if (nargs == MANY || nargs == UNEVALLED)
|
|
392 return Qnil;
|
|
393 else
|
|
394 return make_int (nargs);
|
|
395 }
|
|
396
|
20
|
397 DEFUN ("compiled-function-p", Fcompiled_function_p, 1, 1, 0, /*
|
0
|
398 t if OBJECT is a byte-compiled function object.
|
20
|
399 */
|
|
400 (object))
|
0
|
401 {
|
16
|
402 return COMPILED_FUNCTIONP (object) ? Qt : Qnil;
|
0
|
403 }
|
|
404
|
|
405
|
20
|
406 DEFUN ("characterp", Fcharacterp, 1, 1, 0, /*
|
0
|
407 t if OBJECT is a character.
|
110
|
408 Unlike in XEmacs v19 and Emacs, a character is its own primitive type.
|
70
|
409 Any character can be converted into an equivalent integer using
|
104
|
410 `char-to-int'. To convert the other way, use `int-to-char'; however,
|
70
|
411 only some integers can be converted into characters. Such an integer
|
110
|
412 is called a `char-int'; see `char-int-p'.
|
70
|
413
|
|
414 Some functions that work on integers (e.g. the comparison functions
|
|
415 <, <=, =, /=, etc. and the arithmetic functions +, -, *, etc.)
|
|
416 accept characters and implicitly convert them into integers. In
|
|
417 general, functions that work on characters also accept char-ints and
|
|
418 implicitly convert them into characters. WARNING: Neither of these
|
|
419 behaviors is very desirable, and they are maintained for backward
|
|
420 compatibility with old E-Lisp programs that confounded characters and
|
|
421 integers willy-nilly. These behaviors may change in the future; therefore,
|
|
422 do not rely on them. Instead, use the character-specific functions such
|
|
423 as `char='.
|
20
|
424 */
|
|
425 (object))
|
0
|
426 {
|
16
|
427 return CHARP (object) ? Qt : Qnil;
|
0
|
428 }
|
|
429
|
104
|
430 DEFUN ("char-to-int", Fchar_to_int, 1, 1, 0, /*
|
70
|
431 Convert a character into an equivalent integer.
|
|
432 The resulting integer will always be non-negative. The integers in
|
|
433 the range 0 - 255 map to characters as follows:
|
|
434
|
|
435 0 - 31 Control set 0
|
|
436 32 - 127 ASCII
|
|
437 128 - 159 Control set 1
|
|
438 160 - 255 Right half of ISO-8859-1
|
|
439
|
|
440 If support for Mule does not exist, these are the only valid character
|
|
441 values. When Mule support exists, the values assigned to other characters
|
|
442 may vary depending on the particular version of XEmacs, the order in which
|
|
443 character sets were loaded, etc., and you should not depend on them.
|
|
444 */
|
|
445 (ch))
|
|
446 {
|
|
447 CHECK_CHAR (ch);
|
|
448 return make_int (XCHAR (ch));
|
|
449 }
|
|
450
|
104
|
451 DEFUN ("int-to-char", Fint_to_char, 1, 1, 0, /*
|
70
|
452 Convert an integer into the equivalent character.
|
|
453 Not all integers correspond to valid characters; use `char-int-p' to
|
|
454 determine whether this is the case. If the integer cannot be converted,
|
|
455 nil is returned.
|
|
456 */
|
|
457 (integer))
|
|
458 {
|
|
459 CHECK_INT (integer);
|
|
460 if (CHAR_INTP (integer))
|
|
461 return make_char (XINT (integer));
|
|
462 else
|
|
463 return Qnil;
|
|
464 }
|
|
465
|
|
466 DEFUN ("char-int-p", Fchar_int_p, 1, 1, 0, /*
|
|
467 t if OBJECT is an integer that can be converted into a character.
|
104
|
468 See `char-to-int'.
|
70
|
469 */
|
|
470 (object))
|
|
471 {
|
|
472 return CHAR_INTP (object) ? Qt : Qnil;
|
|
473 }
|
|
474
|
|
475 DEFUN ("char-or-char-int-p", Fchar_or_char_int_p, 1, 1, 0, /*
|
|
476 t if OBJECT is a character or an integer that can be converted into one.
|
|
477 */
|
|
478 (object))
|
|
479 {
|
|
480 return CHAR_OR_CHAR_INTP (object) ? Qt : Qnil;
|
|
481 }
|
|
482
|
20
|
483 DEFUN ("char-or-string-p", Fchar_or_string_p, 1, 1, 0, /*
|
70
|
484 t if OBJECT is a character (or a char-int) or a string.
|
|
485 It is semi-hateful that we allow a char-int here, as it goes against
|
|
486 the name of this function, but it makes the most sense considering the
|
|
487 other steps we take to maintain compatibility with the old character/integer
|
|
488 confoundedness in older versions of E-Lisp.
|
20
|
489 */
|
|
490 (object))
|
0
|
491 {
|
16
|
492 return CHAR_OR_CHAR_INTP (object) || STRINGP (object) ? Qt : Qnil;
|
0
|
493 }
|
|
494
|
20
|
495 DEFUN ("integerp", Fintegerp, 1, 1, 0, /*
|
0
|
496 t if OBJECT is an integer.
|
20
|
497 */
|
|
498 (object))
|
0
|
499 {
|
16
|
500 return INTP (object) ? Qt : Qnil;
|
0
|
501 }
|
|
502
|
20
|
503 DEFUN ("integer-or-marker-p", Finteger_or_marker_p, 1, 1, 0, /*
|
0
|
504 t if OBJECT is an integer or a marker (editor pointer).
|
20
|
505 */
|
|
506 (object))
|
0
|
507 {
|
16
|
508 return INTP (object) || MARKERP (object) ? Qt : Qnil;
|
0
|
509 }
|
|
510
|
70
|
511 DEFUN ("integer-or-char-p", Finteger_or_char_p, 1, 1, 0, /*
|
|
512 t if OBJECT is an integer or a character.
|
|
513 */
|
|
514 (object))
|
|
515 {
|
|
516 return INTP (object) || CHARP (object) ? Qt : Qnil;
|
|
517 }
|
|
518
|
|
519 DEFUN ("integer-char-or-marker-p", Finteger_char_or_marker_p, 1, 1, 0, /*
|
|
520 t if OBJECT is an integer, character or a marker (editor pointer).
|
|
521 */
|
|
522 (object))
|
|
523 {
|
|
524 return INTP (object) || CHARP (object) || MARKERP (object) ? Qt : Qnil;
|
|
525 }
|
|
526
|
20
|
527 DEFUN ("natnump", Fnatnump, 1, 1, 0, /*
|
0
|
528 t if OBJECT is a nonnegative integer.
|
20
|
529 */
|
|
530 (object))
|
0
|
531 {
|
16
|
532 return NATNUMP (object) ? Qt : Qnil;
|
0
|
533 }
|
|
534
|
20
|
535 DEFUN ("bitp", Fbitp, 1, 1, 0, /*
|
0
|
536 t if OBJECT is a bit (0 or 1).
|
20
|
537 */
|
|
538 (object))
|
0
|
539 {
|
16
|
540 return BITP (object) ? Qt : Qnil;
|
0
|
541 }
|
|
542
|
20
|
543 DEFUN ("numberp", Fnumberp, 1, 1, 0, /*
|
0
|
544 t if OBJECT is a number (floating point or integer).
|
20
|
545 */
|
|
546 (object))
|
0
|
547 {
|
16
|
548 return INT_OR_FLOATP (object) ? Qt : Qnil;
|
0
|
549 }
|
|
550
|
20
|
551 DEFUN ("number-or-marker-p", Fnumber_or_marker_p, 1, 1, 0, /*
|
0
|
552 t if OBJECT is a number or a marker.
|
20
|
553 */
|
|
554 (object))
|
0
|
555 {
|
16
|
556 return INT_OR_FLOATP (object) || MARKERP (object) ? Qt : Qnil;
|
0
|
557 }
|
|
558
|
70
|
559 DEFUN ("number-char-or-marker-p", Fnumber_char_or_marker_p, 1, 1, 0, /*
|
|
560 t if OBJECT is a number, character or a marker.
|
|
561 */
|
|
562 (object))
|
|
563 {
|
|
564 return (INT_OR_FLOATP (object) ||
|
|
565 CHARP (object) ||
|
|
566 MARKERP (object))
|
|
567 ? Qt : Qnil;
|
|
568 }
|
|
569
|
0
|
570 #ifdef LISP_FLOAT_TYPE
|
20
|
571 DEFUN ("floatp", Ffloatp, 1, 1, 0, /*
|
0
|
572 t if OBJECT is a floating point number.
|
20
|
573 */
|
|
574 (object))
|
0
|
575 {
|
16
|
576 return FLOATP (object) ? Qt : Qnil;
|
0
|
577 }
|
|
578 #endif /* LISP_FLOAT_TYPE */
|
|
579
|
20
|
580 DEFUN ("type-of", Ftype_of, 1, 1, 0, /*
|
0
|
581 Return a symbol representing the type of OBJECT.
|
20
|
582 */
|
|
583 (object))
|
0
|
584 {
|
16
|
585 if (CONSP (object)) return Qcons;
|
|
586 if (SYMBOLP (object)) return Qsymbol;
|
|
587 if (KEYWORDP (object)) return Qkeyword;
|
|
588 if (INTP (object)) return Qinteger;
|
70
|
589 if (CHARP (object)) return Qcharacter;
|
16
|
590 if (STRINGP (object)) return Qstring;
|
|
591 if (VECTORP (object)) return Qvector;
|
|
592
|
0
|
593 assert (LRECORDP (object));
|
|
594 return intern (XRECORD_LHEADER (object)->implementation->name);
|
|
595 }
|
|
596
|
|
597
|
|
598 /* Extract and set components of lists */
|
|
599
|
20
|
600 DEFUN ("car", Fcar, 1, 1, 0, /*
|
0
|
601 Return the car of LIST. If arg is nil, return nil.
|
|
602 Error if arg is not nil and not a cons cell. See also `car-safe'.
|
20
|
603 */
|
|
604 (list))
|
0
|
605 {
|
|
606 while (1)
|
|
607 {
|
|
608 if (CONSP (list))
|
|
609 return XCAR (list);
|
|
610 else if (NILP (list))
|
|
611 return Qnil;
|
|
612 else
|
|
613 list = wrong_type_argument (Qconsp, list);
|
|
614 }
|
|
615 }
|
|
616
|
20
|
617 DEFUN ("car-safe", Fcar_safe, 1, 1, 0, /*
|
0
|
618 Return the car of OBJECT if it is a cons cell, or else nil.
|
20
|
619 */
|
|
620 (object))
|
0
|
621 {
|
16
|
622 return CONSP (object) ? XCAR (object) : Qnil;
|
0
|
623 }
|
|
624
|
20
|
625 DEFUN ("cdr", Fcdr, 1, 1, 0, /*
|
0
|
626 Return the cdr of LIST. If arg is nil, return nil.
|
|
627 Error if arg is not nil and not a cons cell. See also `cdr-safe'.
|
20
|
628 */
|
|
629 (list))
|
0
|
630 {
|
|
631 while (1)
|
|
632 {
|
|
633 if (CONSP (list))
|
|
634 return XCDR (list);
|
|
635 else if (NILP (list))
|
|
636 return Qnil;
|
|
637 else
|
|
638 list = wrong_type_argument (Qconsp, list);
|
|
639 }
|
|
640 }
|
|
641
|
20
|
642 DEFUN ("cdr-safe", Fcdr_safe, 1, 1, 0, /*
|
0
|
643 Return the cdr of OBJECT if it is a cons cell, or else nil.
|
20
|
644 */
|
|
645 (object))
|
0
|
646 {
|
16
|
647 return CONSP (object) ? XCDR (object) : Qnil;
|
0
|
648 }
|
|
649
|
20
|
650 DEFUN ("setcar", Fsetcar, 2, 2, 0, /*
|
0
|
651 Set the car of CONSCELL to be NEWCAR. Returns NEWCAR.
|
20
|
652 */
|
|
653 (conscell, newcar))
|
0
|
654 {
|
|
655 if (!CONSP (conscell))
|
|
656 conscell = wrong_type_argument (Qconsp, conscell);
|
|
657
|
|
658 CHECK_IMPURE (conscell);
|
|
659 XCAR (conscell) = newcar;
|
|
660 return newcar;
|
|
661 }
|
|
662
|
20
|
663 DEFUN ("setcdr", Fsetcdr, 2, 2, 0, /*
|
0
|
664 Set the cdr of CONSCELL to be NEWCDR. Returns NEWCDR.
|
20
|
665 */
|
|
666 (conscell, newcdr))
|
0
|
667 {
|
|
668 if (!CONSP (conscell))
|
|
669 conscell = wrong_type_argument (Qconsp, conscell);
|
|
670
|
|
671 CHECK_IMPURE (conscell);
|
|
672 XCDR (conscell) = newcdr;
|
|
673 return newcdr;
|
|
674 }
|
|
675
|
|
676 /* Find the function at the end of a chain of symbol function indirections. */
|
|
677
|
|
678 /* If OBJECT is a symbol, find the end of its function chain and
|
|
679 return the value found there. If OBJECT is not a symbol, just
|
|
680 return it. If there is a cycle in the function chain, signal a
|
|
681 cyclic-function-indirection error.
|
|
682
|
|
683 This is like Findirect_function, except that it doesn't signal an
|
|
684 error if the chain ends up unbound. */
|
|
685 Lisp_Object
|
|
686 indirect_function (Lisp_Object object, int errorp)
|
|
687 {
|
|
688 Lisp_Object tortoise = object;
|
16
|
689 Lisp_Object hare = object;
|
0
|
690
|
|
691 for (;;)
|
|
692 {
|
|
693 if (!SYMBOLP (hare) || UNBOUNDP (hare))
|
|
694 break;
|
|
695 hare = XSYMBOL (hare)->function;
|
|
696 if (!SYMBOLP (hare) || UNBOUNDP (hare))
|
|
697 break;
|
|
698 hare = XSYMBOL (hare)->function;
|
|
699
|
|
700 tortoise = XSYMBOL (tortoise)->function;
|
|
701
|
|
702 if (EQ (hare, tortoise))
|
|
703 return (Fsignal (Qcyclic_function_indirection, list1 (object)));
|
|
704 }
|
|
705
|
|
706 if (UNBOUNDP (hare) && errorp)
|
|
707 return Fsignal (Qvoid_function, list1 (object));
|
|
708 return hare;
|
|
709 }
|
|
710
|
20
|
711 DEFUN ("indirect-function", Findirect_function, 1, 1, 0, /*
|
0
|
712 Return the function at the end of OBJECT's function chain.
|
|
713 If OBJECT is a symbol, follow all function indirections and return
|
|
714 the final function binding.
|
|
715 If OBJECT is not a symbol, just return it.
|
|
716 Signal a void-function error if the final symbol is unbound.
|
|
717 Signal a cyclic-function-indirection error if there is a loop in the
|
|
718 function chain of symbols.
|
20
|
719 */
|
|
720 (object))
|
0
|
721 {
|
|
722 return indirect_function (object, 1);
|
|
723 }
|
|
724
|
|
725 /* Extract and set vector and string elements */
|
|
726
|
20
|
727 DEFUN ("aref", Faref, 2, 2, 0, /*
|
0
|
728 Return the element of ARRAY at index INDEX.
|
|
729 ARRAY may be a vector, bit vector, string, or byte-code object.
|
|
730 IDX starts at 0.
|
20
|
731 */
|
|
732 (array, idx))
|
0
|
733 {
|
|
734 int idxval;
|
|
735
|
|
736 retry:
|
|
737 CHECK_INT_COERCE_CHAR (idx); /* yuck! */
|
|
738 idxval = XINT (idx);
|
|
739 if (idxval < 0)
|
|
740 {
|
|
741 lose:
|
|
742 args_out_of_range (array, idx);
|
|
743 }
|
|
744 if (VECTORP (array))
|
|
745 {
|
|
746 if (idxval >= vector_length (XVECTOR (array))) goto lose;
|
|
747 return vector_data (XVECTOR (array))[idxval];
|
|
748 }
|
|
749 else if (BIT_VECTORP (array))
|
|
750 {
|
|
751 if (idxval >= bit_vector_length (XBIT_VECTOR (array))) goto lose;
|
|
752 return make_int (bit_vector_bit (XBIT_VECTOR (array), idxval));
|
|
753 }
|
|
754 else if (STRINGP (array))
|
|
755 {
|
|
756 if (idxval >= string_char_length (XSTRING (array))) goto lose;
|
|
757 return (make_char (string_char (XSTRING (array), idxval)));
|
|
758 }
|
|
759 #ifdef LOSING_BYTECODE
|
|
760 else if (COMPILED_FUNCTIONP (array))
|
|
761 {
|
|
762 /* Weird, gross compatibility kludge */
|
|
763 return (Felt (array, idx));
|
|
764 }
|
|
765 #endif
|
|
766 else
|
|
767 {
|
|
768 check_losing_bytecode ("aref", array);
|
|
769 array = wrong_type_argument (Qarrayp, array);
|
|
770 goto retry;
|
|
771 }
|
|
772 }
|
|
773
|
20
|
774 DEFUN ("aset", Faset, 3, 3, 0, /*
|
0
|
775 Store into the element of ARRAY at index IDX the value NEWVAL.
|
|
776 ARRAY may be a vector, bit vector, or string. IDX starts at 0.
|
20
|
777 */
|
|
778 (array, idx, newval))
|
0
|
779 {
|
|
780 int idxval;
|
|
781
|
|
782 CHECK_INT_COERCE_CHAR (idx); /* yuck! */
|
|
783 if (!VECTORP (array) && !BIT_VECTORP (array) && !STRINGP (array))
|
|
784 array = wrong_type_argument (Qarrayp, array);
|
|
785
|
|
786 idxval = XINT (idx);
|
|
787 if (idxval < 0)
|
|
788 {
|
|
789 lose:
|
|
790 args_out_of_range (array, idx);
|
|
791 }
|
|
792 CHECK_IMPURE (array);
|
|
793
|
|
794 if (VECTORP (array))
|
|
795 {
|
|
796 if (idxval >= vector_length (XVECTOR (array))) goto lose;
|
|
797 vector_data (XVECTOR (array))[idxval] = newval;
|
|
798 }
|
|
799 else if (BIT_VECTORP (array))
|
|
800 {
|
|
801 if (idxval >= bit_vector_length (XBIT_VECTOR (array))) goto lose;
|
|
802 CHECK_BIT (newval);
|
|
803 set_bit_vector_bit (XBIT_VECTOR (array), idxval, !ZEROP (newval));
|
|
804 }
|
|
805 else /* string */
|
|
806 {
|
|
807 CHECK_CHAR_COERCE_INT (newval);
|
|
808 if (idxval >= string_char_length (XSTRING (array))) goto lose;
|
|
809 set_string_char (XSTRING (array), idxval, XCHAR (newval));
|
|
810 bump_string_modiff (array);
|
|
811 }
|
|
812
|
|
813 return newval;
|
|
814 }
|
|
815
|
|
816
|
|
817 /**********************************************************************/
|
|
818 /* Compiled-function objects */
|
|
819 /**********************************************************************/
|
|
820
|
|
821 /* The compiled_function->doc_and_interactive slot uses the minimal
|
|
822 number of conses, based on compiled_function->flags; it may take
|
|
823 any of the following forms:
|
|
824
|
|
825 doc
|
|
826 interactive
|
|
827 domain
|
|
828 (doc . interactive)
|
|
829 (doc . domain)
|
|
830 (interactive . domain)
|
|
831 (doc . (interactive . domain))
|
|
832 */
|
|
833
|
|
834 /* Caller must check flags.interactivep first */
|
|
835 Lisp_Object
|
|
836 compiled_function_interactive (struct Lisp_Compiled_Function *b)
|
|
837 {
|
|
838 assert (b->flags.interactivep);
|
|
839 if (b->flags.documentationp && b->flags.domainp)
|
|
840 return (XCAR (XCDR (b->doc_and_interactive)));
|
|
841 else if (b->flags.documentationp)
|
|
842 return (XCDR (b->doc_and_interactive));
|
|
843 else if (b->flags.domainp)
|
|
844 return (XCAR (b->doc_and_interactive));
|
|
845
|
|
846 /* if all else fails... */
|
|
847 return (b->doc_and_interactive);
|
|
848 }
|
|
849
|
|
850 /* Caller need not check flags.documentationp first */
|
|
851 Lisp_Object
|
|
852 compiled_function_documentation (struct Lisp_Compiled_Function *b)
|
|
853 {
|
|
854 if (! b->flags.documentationp)
|
|
855 return Qnil;
|
|
856 else if (b->flags.interactivep && b->flags.domainp)
|
|
857 return (XCAR (b->doc_and_interactive));
|
|
858 else if (b->flags.interactivep)
|
|
859 return (XCAR (b->doc_and_interactive));
|
|
860 else if (b->flags.domainp)
|
|
861 return (XCAR (b->doc_and_interactive));
|
|
862 else
|
|
863 return (b->doc_and_interactive);
|
|
864 }
|
|
865
|
|
866 /* Caller need not check flags.domainp first */
|
|
867 Lisp_Object
|
|
868 compiled_function_domain (struct Lisp_Compiled_Function *b)
|
|
869 {
|
|
870 if (! b->flags.domainp)
|
|
871 return Qnil;
|
|
872 else if (b->flags.documentationp && b->flags.interactivep)
|
|
873 return (XCDR (XCDR (b->doc_and_interactive)));
|
|
874 else if (b->flags.documentationp)
|
|
875 return (XCDR (b->doc_and_interactive));
|
|
876 else if (b->flags.interactivep)
|
|
877 return (XCDR (b->doc_and_interactive));
|
|
878 else
|
|
879 return (b->doc_and_interactive);
|
|
880 }
|
|
881
|
|
882 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
|
|
883
|
|
884 Lisp_Object
|
|
885 compiled_function_annotation (struct Lisp_Compiled_Function *b)
|
|
886 {
|
|
887 return b->annotated;
|
|
888 }
|
|
889
|
|
890 #endif
|
|
891
|
|
892 /* used only by Snarf-documentation; there must be doc already. */
|
|
893 void
|
|
894 set_compiled_function_documentation (struct Lisp_Compiled_Function *b,
|
|
895 Lisp_Object new)
|
|
896 {
|
|
897 assert (b->flags.documentationp);
|
|
898 assert (INTP (new) || STRINGP (new));
|
|
899
|
|
900 if (b->flags.interactivep && b->flags.domainp)
|
|
901 XCAR (b->doc_and_interactive) = new;
|
|
902 else if (b->flags.interactivep)
|
|
903 XCAR (b->doc_and_interactive) = new;
|
|
904 else if (b->flags.domainp)
|
|
905 XCAR (b->doc_and_interactive) = new;
|
|
906 else
|
|
907 b->doc_and_interactive = new;
|
|
908 }
|
|
909
|
20
|
910 DEFUN ("compiled-function-instructions", Fcompiled_function_instructions, 1, 1, 0, /*
|
0
|
911 Return the byte-opcode string of the compiled-function object.
|
20
|
912 */
|
|
913 (function))
|
0
|
914 {
|
|
915 CHECK_COMPILED_FUNCTION (function);
|
|
916 return (XCOMPILED_FUNCTION (function)->bytecodes);
|
|
917 }
|
|
918
|
20
|
919 DEFUN ("compiled-function-constants", Fcompiled_function_constants, 1, 1, 0, /*
|
0
|
920 Return the constants vector of the compiled-function object.
|
20
|
921 */
|
|
922 (function))
|
0
|
923 {
|
|
924 CHECK_COMPILED_FUNCTION (function);
|
|
925 return (XCOMPILED_FUNCTION (function)->constants);
|
|
926 }
|
|
927
|
20
|
928 DEFUN ("compiled-function-stack-depth", Fcompiled_function_stack_depth, 1, 1, 0, /*
|
0
|
929 Return the max stack depth of the compiled-function object.
|
20
|
930 */
|
|
931 (function))
|
0
|
932 {
|
|
933 CHECK_COMPILED_FUNCTION (function);
|
|
934 return (make_int (XCOMPILED_FUNCTION (function)->maxdepth));
|
|
935 }
|
|
936
|
20
|
937 DEFUN ("compiled-function-arglist", Fcompiled_function_arglist, 1, 1, 0, /*
|
0
|
938 Return the argument list of the compiled-function object.
|
20
|
939 */
|
|
940 (function))
|
0
|
941 {
|
|
942 CHECK_COMPILED_FUNCTION (function);
|
|
943 return (XCOMPILED_FUNCTION (function)->arglist);
|
|
944 }
|
|
945
|
20
|
946 DEFUN ("compiled-function-interactive", Fcompiled_function_interactive, 1, 1, 0, /*
|
0
|
947 Return the interactive spec of the compiled-function object, or nil.
|
|
948 If non-nil, the return value will be a list whose first element is
|
|
949 `interactive' and whose second element is the interactive spec.
|
20
|
950 */
|
|
951 (function))
|
0
|
952 {
|
|
953 CHECK_COMPILED_FUNCTION (function);
|
|
954 if (!XCOMPILED_FUNCTION (function)->flags.interactivep)
|
|
955 return Qnil;
|
|
956 return (list2 (Qinteractive,
|
|
957 compiled_function_interactive
|
|
958 (XCOMPILED_FUNCTION (function))));
|
|
959 }
|
|
960
|
20
|
961 DEFUN ("compiled-function-doc-string", Fcompiled_function_doc_string, 1, 1, 0, /*
|
0
|
962 Return the doc string of the compiled-function object, if available.
|
171
|
963 Functions that had their doc strings snarfed into the DOC file will have
|
|
964 an integer returned instead of a string.
|
20
|
965 */
|
|
966 (function))
|
0
|
967 {
|
|
968 CHECK_COMPILED_FUNCTION (function);
|
171
|
969
|
|
970 return compiled_function_documentation (XCOMPILED_FUNCTION (function));
|
0
|
971 }
|
|
972
|
|
973 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
|
|
974
|
20
|
975 DEFUN ("compiled-function-annotation", Fcompiled_function_annotation, 1, 1, 0, /*
|
0
|
976 Return the annotation of the compiled-function object, or nil.
|
|
977 The annotation is a piece of information indicating where this
|
|
978 compiled-function object came from. Generally this will be
|
|
979 a symbol naming a function; or a string naming a file, if the
|
|
980 compiled-function object was not defined in a function; or nil,
|
|
981 if the compiled-function object was not created as a result of
|
|
982 a `load'.
|
20
|
983 */
|
|
984 (function))
|
0
|
985 {
|
|
986 CHECK_COMPILED_FUNCTION (function);
|
|
987 return (compiled_function_annotation (XCOMPILED_FUNCTION (function)));
|
|
988 }
|
|
989
|
|
990 #endif /* COMPILED_FUNCTION_ANNOTATION_HACK */
|
|
991
|
20
|
992 DEFUN ("compiled-function-domain", Fcompiled_function_domain, 1, 1, 0, /*
|
0
|
993 Return the domain of the compiled-function object, or nil.
|
|
994 This is only meaningful if I18N3 was enabled when emacs was compiled.
|
20
|
995 */
|
|
996 (function))
|
0
|
997 {
|
|
998 CHECK_COMPILED_FUNCTION (function);
|
|
999 if (!XCOMPILED_FUNCTION (function)->flags.domainp)
|
|
1000 return Qnil;
|
|
1001 return (compiled_function_domain (XCOMPILED_FUNCTION (function)));
|
|
1002 }
|
|
1003
|
|
1004
|
|
1005 /**********************************************************************/
|
|
1006 /* Arithmetic functions */
|
|
1007 /**********************************************************************/
|
|
1008
|
|
1009 enum comparison { equal, notequal, less, grtr, less_or_equal, grtr_or_equal };
|
|
1010
|
|
1011 static Lisp_Object
|
16
|
1012 arithcompare (Lisp_Object num1, Lisp_Object num2, enum comparison comparison)
|
0
|
1013 {
|
|
1014 CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER (num1);
|
|
1015 CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER (num2);
|
|
1016
|
|
1017 #ifdef LISP_FLOAT_TYPE
|
|
1018 if (FLOATP (num1) || FLOATP (num2))
|
|
1019 {
|
16
|
1020 double f1 = (FLOATP (num1)) ? float_data (XFLOAT (num1)) : XINT (num1);
|
|
1021 double f2 = (FLOATP (num2)) ? float_data (XFLOAT (num2)) : XINT (num2);
|
0
|
1022
|
|
1023 switch (comparison)
|
16
|
1024 {
|
|
1025 case equal: return f1 == f2 ? Qt : Qnil;
|
|
1026 case notequal: return f1 != f2 ? Qt : Qnil;
|
|
1027 case less: return f1 < f2 ? Qt : Qnil;
|
|
1028 case less_or_equal: return f1 <= f2 ? Qt : Qnil;
|
|
1029 case grtr: return f1 > f2 ? Qt : Qnil;
|
|
1030 case grtr_or_equal: return f1 >= f2 ? Qt : Qnil;
|
|
1031 }
|
0
|
1032 }
|
|
1033 #endif /* LISP_FLOAT_TYPE */
|
70
|
1034
|
16
|
1035 switch (comparison)
|
0
|
1036 {
|
16
|
1037 case equal: return XINT (num1) == XINT (num2) ? Qt : Qnil;
|
|
1038 case notequal: return XINT (num1) != XINT (num2) ? Qt : Qnil;
|
|
1039 case less: return XINT (num1) < XINT (num2) ? Qt : Qnil;
|
|
1040 case less_or_equal: return XINT (num1) <= XINT (num2) ? Qt : Qnil;
|
|
1041 case grtr: return XINT (num1) > XINT (num2) ? Qt : Qnil;
|
|
1042 case grtr_or_equal: return XINT (num1) >= XINT (num2) ? Qt : Qnil;
|
|
1043 }
|
0
|
1044
|
|
1045 abort ();
|
|
1046 return Qnil; /* suppress compiler warning */
|
|
1047 }
|
|
1048
|
20
|
1049 DEFUN ("=", Feqlsign, 2, 2, 0, /*
|
70
|
1050 T if two args, both numbers, characters or markers, are equal.
|
20
|
1051 */
|
|
1052 (num1, num2))
|
0
|
1053 {
|
|
1054 return arithcompare (num1, num2, equal);
|
|
1055 }
|
|
1056
|
20
|
1057 DEFUN ("<", Flss, 2, 2, 0, /*
|
16
|
1058 T if first arg is less than second arg.
|
70
|
1059 Both must be numbers, characters or markers.
|
20
|
1060 */
|
|
1061 (num1, num2))
|
0
|
1062 {
|
|
1063 return arithcompare (num1, num2, less);
|
|
1064 }
|
|
1065
|
20
|
1066 DEFUN (">", Fgtr, 2, 2, 0, /*
|
16
|
1067 T if first arg is greater than second arg.
|
70
|
1068 Both must be numbers, characters or markers.
|
20
|
1069 */
|
|
1070 (num1, num2))
|
0
|
1071 {
|
|
1072 return arithcompare (num1, num2, grtr);
|
|
1073 }
|
|
1074
|
20
|
1075 DEFUN ("<=", Fleq, 2, 2, 0, /*
|
0
|
1076 T if first arg is less than or equal to second arg.
|
70
|
1077 Both must be numbers, characters or markers.
|
20
|
1078 */
|
|
1079 (num1, num2))
|
0
|
1080 {
|
|
1081 return arithcompare (num1, num2, less_or_equal);
|
|
1082 }
|
|
1083
|
20
|
1084 DEFUN (">=", Fgeq, 2, 2, 0, /*
|
0
|
1085 T if first arg is greater than or equal to second arg.
|
70
|
1086 Both must be numbers, characters or markers.
|
20
|
1087 */
|
|
1088 (num1, num2))
|
0
|
1089 {
|
|
1090 return arithcompare (num1, num2, grtr_or_equal);
|
|
1091 }
|
|
1092
|
20
|
1093 DEFUN ("/=", Fneq, 2, 2, 0, /*
|
16
|
1094 T if first arg is not equal to second arg.
|
70
|
1095 Both must be numbers, characters or markers.
|
20
|
1096 */
|
|
1097 (num1, num2))
|
0
|
1098 {
|
|
1099 return arithcompare (num1, num2, notequal);
|
|
1100 }
|
|
1101
|
70
|
1102 #if 0
|
|
1103 /* I tried implementing Common Lisp multi-arg comparison functions,
|
|
1104 but failed because the byte-compiler needs to be hacked as well. */
|
|
1105
|
|
1106 static Lisp_Object
|
|
1107 arithcompare_many (enum comparison comparison, int nargs, Lisp_Object *args)
|
|
1108 {
|
|
1109 REGISTER int argnum;
|
|
1110 for (argnum = 1; argnum < nargs; argnum++)
|
|
1111 if (EQ (arithcompare ( args[argnum-1], args[argnum], comparison), Qnil))
|
|
1112 return Qnil;
|
|
1113
|
|
1114 return Qt;
|
|
1115 }
|
|
1116
|
|
1117 xxxDEFUN ("=", Feqlsign, 1, MANY, 0, /*
|
|
1118 T if all the arguments are equal.
|
|
1119 The arguments may be numbers, characters or markers.
|
|
1120 */
|
|
1121 (int nargs, Lisp_Object *args))
|
|
1122 {
|
|
1123 return arithcompare (equal, nargs, args);
|
|
1124 }
|
|
1125
|
|
1126 xxxDEFUN ("<", Flss, 1, MANY, 0, /*
|
|
1127 T if the sequence of arguments is monotonically increasing.
|
|
1128 The arguments may be numbers, characters or markers.
|
|
1129 */
|
|
1130 (int nargs, Lisp_Object *args))
|
|
1131 {
|
|
1132 return arithcompare (less, nargs, args);
|
|
1133 }
|
|
1134
|
|
1135 xxxDEFUN (">", Fgtr, 1, MANY, 0, /*
|
|
1136 T if the sequence of arguments is monotonically decreasing.
|
|
1137 The arguments may be numbers, characters or markers.
|
|
1138 */
|
|
1139 (int nargs, Lisp_Object *args))
|
|
1140 {
|
|
1141 return arithcompare (grtr, nargs, args);
|
|
1142 }
|
|
1143
|
|
1144 xxxDEFUN ("<=", Fleq, 1, MANY, 0, /*
|
|
1145 T if the sequence of arguments is monotonically nondecreasing.
|
|
1146 The arguments may be numbers, characters or markers.
|
|
1147 */
|
|
1148 (int nargs, Lisp_Object *args))
|
|
1149 {
|
|
1150 return arithcompare (less_or_equal, nargs, args);
|
|
1151 }
|
|
1152
|
|
1153 xxxDEFUN (">=", Fgeq, 1, MANY, 0, /*
|
|
1154 T if the sequence of arguments is monotonically nonincreasing.
|
|
1155 The arguments may be numbers, characters or markers.
|
|
1156 */
|
|
1157 (int nargs, Lisp_Object *args))
|
|
1158 {
|
|
1159 return arithcompare_many (grtr_or_equal, nargs, args);
|
|
1160 }
|
|
1161
|
|
1162 xxxDEFUN ("/=", Fneq, 1, MANY, 0, /*
|
|
1163 T if the sequence of arguments is monotonically increasing.
|
|
1164 The arguments may be numbers, characters or markers.
|
|
1165 */
|
|
1166 (int nargs, Lisp_Object *args))
|
|
1167 {
|
|
1168 return arithcompare_many (notequal, nargs, args);
|
|
1169 }
|
|
1170 #endif /* 0 - disabled for now */
|
|
1171
|
20
|
1172 DEFUN ("zerop", Fzerop, 1, 1, 0, /*
|
0
|
1173 T if NUMBER is zero.
|
20
|
1174 */
|
|
1175 (number))
|
0
|
1176 {
|
|
1177 CHECK_INT_OR_FLOAT (number);
|
|
1178
|
|
1179 #ifdef LISP_FLOAT_TYPE
|
|
1180 if (FLOATP (number))
|
16
|
1181 return (float_data (XFLOAT (number)) == 0.0) ? Qt : Qnil;
|
0
|
1182 #endif /* LISP_FLOAT_TYPE */
|
|
1183
|
16
|
1184 return (XINT (number) == 0) ? Qt : Qnil;
|
0
|
1185 }
|
|
1186
|
|
1187 /* Convert between a 32-bit value and a cons of two 16-bit values.
|
|
1188 This is used to pass 32-bit integers to and from the user.
|
|
1189 Use time_to_lisp() and lisp_to_time() for time values.
|
|
1190
|
|
1191 If you're thinking of using this to store a pointer into a Lisp Object
|
|
1192 for internal purposes (such as when calling record_unwind_protect()),
|
|
1193 try using make_opaque_ptr()/get_opaque_ptr() instead. */
|
|
1194 Lisp_Object
|
|
1195 word_to_lisp (unsigned int item)
|
|
1196 {
|
|
1197 return Fcons (make_int (item >> 16), make_int (item & 0xffff));
|
|
1198 }
|
|
1199
|
|
1200 unsigned int
|
|
1201 lisp_to_word (Lisp_Object item)
|
|
1202 {
|
|
1203 if (INTP (item))
|
|
1204 return XINT (item);
|
|
1205 else
|
|
1206 {
|
|
1207 Lisp_Object top = Fcar (item);
|
|
1208 Lisp_Object bot = Fcdr (item);
|
|
1209 CHECK_INT (top);
|
|
1210 CHECK_INT (bot);
|
|
1211 return (XINT (top) << 16) | (XINT (bot) & 0xffff);
|
|
1212 }
|
|
1213 }
|
|
1214
|
|
1215
|
20
|
1216 DEFUN ("number-to-string", Fnumber_to_string, 1, 1, 0, /*
|
0
|
1217 Convert NUM to a string by printing it in decimal.
|
|
1218 Uses a minus sign if negative.
|
|
1219 NUM may be an integer or a floating point number.
|
20
|
1220 */
|
|
1221 (num))
|
0
|
1222 {
|
|
1223 char buffer[VALBITS];
|
|
1224
|
|
1225 CHECK_INT_OR_FLOAT (num);
|
|
1226
|
|
1227 #ifdef LISP_FLOAT_TYPE
|
|
1228 if (FLOATP (num))
|
|
1229 {
|
|
1230 char pigbuf[350]; /* see comments in float_to_string */
|
|
1231
|
|
1232 float_to_string (pigbuf, float_data (XFLOAT (num)));
|
|
1233 return build_string (pigbuf);
|
|
1234 }
|
|
1235 #endif /* LISP_FLOAT_TYPE */
|
|
1236
|
|
1237 if (sizeof (int) == sizeof (EMACS_INT))
|
|
1238 sprintf (buffer, "%d", XINT (num));
|
|
1239 else if (sizeof (long) == sizeof (EMACS_INT))
|
|
1240 sprintf (buffer, "%ld", (long) XINT (num));
|
|
1241 else
|
|
1242 abort ();
|
|
1243 return build_string (buffer);
|
|
1244 }
|
|
1245
|
169
|
1246 static int
|
|
1247 digit_to_number (int character, int base)
|
|
1248 {
|
|
1249 int digit;
|
|
1250
|
|
1251 if (character >= '0' && character <= '9')
|
|
1252 digit = character - '0';
|
|
1253 else if (character >= 'a' && character <= 'z')
|
|
1254 digit = character - 'a' + 10;
|
|
1255 else if (character >= 'A' && character <= 'Z')
|
|
1256 digit = character - 'A' + 10;
|
|
1257 else
|
|
1258 return -1;
|
|
1259
|
|
1260 if (digit >= base)
|
|
1261 return -1;
|
|
1262 else
|
|
1263 return digit;
|
|
1264 }
|
|
1265
|
|
1266 DEFUN ("string-to-number", Fstring_to_number, 1, 2, 0, /*
|
0
|
1267 Convert STRING to a number by parsing it as a decimal number.
|
|
1268 This parses both integers and floating point numbers.
|
|
1269 It ignores leading spaces and tabs.
|
169
|
1270
|
|
1271 If BASE, interpret STRING as a number in that base. If BASE isn't
|
|
1272 present, base 10 is used. BASE must be between 2 and 16 (inclusive).
|
|
1273 Floating point numbers always use base 10.
|
20
|
1274 */
|
169
|
1275 (string, base))
|
0
|
1276 {
|
|
1277 char *p;
|
169
|
1278 int b;
|
|
1279
|
0
|
1280 CHECK_STRING (string);
|
|
1281
|
169
|
1282 if (NILP (base))
|
|
1283 b = 10;
|
|
1284 else
|
|
1285 {
|
|
1286 CHECK_INT (base);
|
|
1287 b = XINT (base);
|
171
|
1288 check_int_range (b, 2, 16);
|
169
|
1289 }
|
|
1290
|
16
|
1291 p = (char *) XSTRING_DATA (string);
|
169
|
1292
|
0
|
1293 /* Skip any whitespace at the front of the number. Some versions of
|
|
1294 atoi do this anyway, so we might as well make Emacs lisp consistent. */
|
|
1295 while (*p == ' ' || *p == '\t')
|
|
1296 p++;
|
|
1297
|
|
1298 #ifdef LISP_FLOAT_TYPE
|
|
1299 if (isfloat_string (p))
|
|
1300 return make_float (atof (p));
|
|
1301 #endif /* LISP_FLOAT_TYPE */
|
|
1302
|
171
|
1303 if (b == 10)
|
169
|
1304 {
|
|
1305 /* Use the system-provided functions for base 10. */
|
|
1306 Lisp_Object value;
|
|
1307 if (sizeof (int) == sizeof (EMACS_INT))
|
|
1308 XSETINT (value, atoi (p));
|
|
1309 else if (sizeof (long) == sizeof (EMACS_INT))
|
|
1310 XSETINT (value, atol (p));
|
|
1311 else
|
|
1312 abort ();
|
|
1313 return value;
|
|
1314 }
|
0
|
1315 else
|
169
|
1316 {
|
|
1317 int digit, negative = 1;
|
|
1318 EMACS_INT v = 0;
|
|
1319
|
|
1320 if (*p == '-')
|
|
1321 {
|
|
1322 negative = -1;
|
|
1323 p++;
|
|
1324 }
|
|
1325 else if (*p == '+')
|
|
1326 p++;
|
|
1327 while (1)
|
|
1328 {
|
|
1329 digit = digit_to_number (*p++, b);
|
|
1330 if (digit < 0)
|
|
1331 break;
|
|
1332 v = v * b + digit;
|
|
1333 }
|
|
1334 return make_int (negative * v);
|
|
1335 }
|
0
|
1336 }
|
|
1337
|
|
1338 enum arithop
|
|
1339 { Aadd, Asub, Amult, Adiv, Alogand, Alogior, Alogxor, Amax, Amin };
|
|
1340
|
70
|
1341
|
0
|
1342 #ifdef LISP_FLOAT_TYPE
|
|
1343 static Lisp_Object
|
|
1344 float_arith_driver (double accum, int argnum, enum arithop code, int nargs,
|
|
1345 Lisp_Object *args)
|
|
1346 {
|
|
1347 REGISTER Lisp_Object val;
|
|
1348 double next;
|
|
1349
|
|
1350 for (; argnum < nargs; argnum++)
|
|
1351 {
|
16
|
1352 /* using args[argnum] as argument to CHECK_INT_OR_FLOAT_... */
|
|
1353 val = args[argnum];
|
0
|
1354 CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER (val);
|
|
1355
|
|
1356 if (FLOATP (val))
|
|
1357 {
|
|
1358 next = float_data (XFLOAT (val));
|
|
1359 }
|
|
1360 else
|
|
1361 {
|
|
1362 args[argnum] = val; /* runs into a compiler bug. */
|
|
1363 next = XINT (args[argnum]);
|
|
1364 }
|
|
1365 switch (code)
|
|
1366 {
|
|
1367 case Aadd:
|
|
1368 accum += next;
|
|
1369 break;
|
|
1370 case Asub:
|
|
1371 if (!argnum && nargs != 1)
|
|
1372 next = - next;
|
|
1373 accum -= next;
|
|
1374 break;
|
|
1375 case Amult:
|
|
1376 accum *= next;
|
|
1377 break;
|
|
1378 case Adiv:
|
|
1379 if (!argnum)
|
|
1380 accum = next;
|
|
1381 else
|
|
1382 {
|
|
1383 if (next == 0)
|
|
1384 Fsignal (Qarith_error, Qnil);
|
|
1385 accum /= next;
|
|
1386 }
|
|
1387 break;
|
|
1388 case Alogand:
|
|
1389 case Alogior:
|
|
1390 case Alogxor:
|
70
|
1391 return wrong_type_argument (Qinteger_char_or_marker_p, val);
|
0
|
1392 case Amax:
|
|
1393 if (!argnum || isnan (next) || next > accum)
|
|
1394 accum = next;
|
|
1395 break;
|
|
1396 case Amin:
|
|
1397 if (!argnum || isnan (next) || next < accum)
|
|
1398 accum = next;
|
|
1399 break;
|
|
1400 }
|
|
1401 }
|
|
1402
|
|
1403 return make_float (accum);
|
|
1404 }
|
|
1405 #endif /* LISP_FLOAT_TYPE */
|
|
1406
|
16
|
1407 static Lisp_Object
|
|
1408 arith_driver (enum arithop code, int nargs, Lisp_Object *args)
|
|
1409 {
|
|
1410 Lisp_Object val;
|
|
1411 REGISTER int argnum;
|
|
1412 REGISTER EMACS_INT accum = 0;
|
|
1413 REGISTER EMACS_INT next;
|
|
1414
|
|
1415 switch (code)
|
|
1416 {
|
|
1417 case Alogior:
|
|
1418 case Alogxor:
|
|
1419 case Aadd:
|
|
1420 case Asub:
|
|
1421 accum = 0; break;
|
|
1422 case Amult:
|
|
1423 accum = 1; break;
|
|
1424 case Alogand:
|
|
1425 accum = -1; break;
|
|
1426 case Adiv:
|
|
1427 case Amax:
|
|
1428 case Amin:
|
|
1429 accum = 0; break;
|
|
1430 default:
|
|
1431 abort ();
|
|
1432 }
|
|
1433
|
|
1434 for (argnum = 0; argnum < nargs; argnum++)
|
|
1435 {
|
|
1436 /* using args[argnum] as argument to CHECK_INT_OR_FLOAT_... */
|
|
1437 val = args[argnum];
|
|
1438 CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER (val);
|
|
1439
|
|
1440 #ifdef LISP_FLOAT_TYPE
|
|
1441 if (FLOATP (val)) /* time to do serious math */
|
|
1442 return (float_arith_driver ((double) accum, argnum, code,
|
|
1443 nargs, args));
|
|
1444 #endif /* LISP_FLOAT_TYPE */
|
|
1445 args[argnum] = val; /* runs into a compiler bug. */
|
|
1446 next = XINT (args[argnum]);
|
|
1447 switch (code)
|
|
1448 {
|
|
1449 case Aadd: accum += next; break;
|
|
1450 case Asub:
|
|
1451 if (!argnum && nargs != 1)
|
|
1452 next = - next;
|
|
1453 accum -= next;
|
|
1454 break;
|
|
1455 case Amult: accum *= next; break;
|
|
1456 case Adiv:
|
|
1457 if (!argnum) accum = next;
|
|
1458 else
|
|
1459 {
|
|
1460 if (next == 0)
|
|
1461 Fsignal (Qarith_error, Qnil);
|
|
1462 accum /= next;
|
|
1463 }
|
|
1464 break;
|
|
1465 case Alogand: accum &= next; break;
|
|
1466 case Alogior: accum |= next; break;
|
|
1467 case Alogxor: accum ^= next; break;
|
|
1468 case Amax: if (!argnum || next > accum) accum = next; break;
|
|
1469 case Amin: if (!argnum || next < accum) accum = next; break;
|
|
1470 }
|
|
1471 }
|
|
1472
|
|
1473 XSETINT (val, accum);
|
|
1474 return val;
|
|
1475 }
|
|
1476
|
20
|
1477 DEFUN ("+", Fplus, 0, MANY, 0, /*
|
16
|
1478 Return sum of any number of arguments.
|
70
|
1479 The arguments should all be numbers, characters or markers.
|
20
|
1480 */
|
|
1481 (int nargs, Lisp_Object *args))
|
0
|
1482 {
|
|
1483 return arith_driver (Aadd, nargs, args);
|
|
1484 }
|
|
1485
|
20
|
1486 DEFUN ("-", Fminus, 0, MANY, 0, /*
|
70
|
1487 Negate number or subtract numbers, characters or markers.
|
0
|
1488 With one arg, negates it. With more than one arg,
|
|
1489 subtracts all but the first from the first.
|
20
|
1490 */
|
|
1491 (int nargs, Lisp_Object *args))
|
0
|
1492 {
|
|
1493 return arith_driver (Asub, nargs, args);
|
|
1494 }
|
|
1495
|
20
|
1496 DEFUN ("*", Ftimes, 0, MANY, 0, /*
|
16
|
1497 Return product of any number of arguments.
|
70
|
1498 The arguments should all be numbers, characters or markers.
|
20
|
1499 */
|
|
1500 (int nargs, Lisp_Object *args))
|
0
|
1501 {
|
|
1502 return arith_driver (Amult, nargs, args);
|
|
1503 }
|
|
1504
|
20
|
1505 DEFUN ("/", Fquo, 2, MANY, 0, /*
|
0
|
1506 Return first argument divided by all the remaining arguments.
|
70
|
1507 The arguments must be numbers, characters or markers.
|
20
|
1508 */
|
|
1509 (int nargs, Lisp_Object *args))
|
0
|
1510 {
|
|
1511 return arith_driver (Adiv, nargs, args);
|
|
1512 }
|
|
1513
|
20
|
1514 DEFUN ("%", Frem, 2, 2, 0, /*
|
0
|
1515 Return remainder of first arg divided by second.
|
70
|
1516 Both must be integers, characters or markers.
|
20
|
1517 */
|
|
1518 (num1, num2))
|
0
|
1519 {
|
|
1520 CHECK_INT_COERCE_CHAR_OR_MARKER (num1);
|
|
1521 CHECK_INT_COERCE_CHAR_OR_MARKER (num2);
|
|
1522
|
|
1523 if (ZEROP (num2))
|
|
1524 Fsignal (Qarith_error, Qnil);
|
|
1525
|
|
1526 return (make_int (XINT (num1) % XINT (num2)));
|
|
1527 }
|
|
1528
|
|
1529 /* Note, ANSI *requires* the presence of the fmod() library routine.
|
|
1530 If your system doesn't have it, complain to your vendor, because
|
|
1531 that is a bug. */
|
|
1532
|
|
1533 #ifndef HAVE_FMOD
|
|
1534 double
|
|
1535 fmod (double f1, double f2)
|
|
1536 {
|
|
1537 if (f2 < 0.0)
|
|
1538 f2 = -f2;
|
|
1539 return (f1 - f2 * floor (f1/f2));
|
|
1540 }
|
|
1541 #endif /* ! HAVE_FMOD */
|
|
1542
|
|
1543
|
20
|
1544 DEFUN ("mod", Fmod, 2, 2, 0, /*
|
0
|
1545 Return X modulo Y.
|
|
1546 The result falls between zero (inclusive) and Y (exclusive).
|
70
|
1547 Both X and Y must be numbers, characters or markers.
|
0
|
1548 If either argument is a float, a float will be returned.
|
20
|
1549 */
|
|
1550 (x, y))
|
0
|
1551 {
|
|
1552 EMACS_INT i1, i2;
|
|
1553
|
|
1554 #ifdef LISP_FLOAT_TYPE
|
|
1555 CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER (x);
|
|
1556 CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER (y);
|
|
1557
|
|
1558 if (FLOATP (x) || FLOATP (y))
|
|
1559 {
|
|
1560 double f1, f2;
|
|
1561
|
|
1562 f1 = ((FLOATP (x)) ? float_data (XFLOAT (x)) : XINT (x));
|
|
1563 f2 = ((FLOATP (y)) ? float_data (XFLOAT (y)) : XINT (y));
|
|
1564 if (f2 == 0)
|
|
1565 Fsignal (Qarith_error, Qnil);
|
|
1566
|
|
1567 f1 = fmod (f1, f2);
|
|
1568
|
|
1569 /* If the "remainder" comes out with the wrong sign, fix it. */
|
|
1570 if (f2 < 0 ? f1 > 0 : f1 < 0)
|
|
1571 f1 += f2;
|
|
1572 return (make_float (f1));
|
|
1573 }
|
|
1574 #else /* not LISP_FLOAT_TYPE */
|
|
1575 CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER (x);
|
|
1576 CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER (y);
|
|
1577 #endif /* not LISP_FLOAT_TYPE */
|
|
1578
|
|
1579 i1 = XINT (x);
|
|
1580 i2 = XINT (y);
|
|
1581
|
|
1582 if (i2 == 0)
|
|
1583 Fsignal (Qarith_error, Qnil);
|
|
1584
|
|
1585 i1 %= i2;
|
|
1586
|
|
1587 /* If the "remainder" comes out with the wrong sign, fix it. */
|
|
1588 if (i2 < 0 ? i1 > 0 : i1 < 0)
|
|
1589 i1 += i2;
|
|
1590
|
|
1591 return (make_int (i1));
|
|
1592 }
|
|
1593
|
|
1594
|
20
|
1595 DEFUN ("max", Fmax, 1, MANY, 0, /*
|
16
|
1596 Return largest of all the arguments.
|
70
|
1597 All arguments must be numbers, characters or markers.
|
|
1598 The value is always a number; markers and characters are converted
|
|
1599 to numbers.
|
20
|
1600 */
|
|
1601 (int nargs, Lisp_Object *args))
|
0
|
1602 {
|
|
1603 return arith_driver (Amax, nargs, args);
|
|
1604 }
|
|
1605
|
20
|
1606 DEFUN ("min", Fmin, 1, MANY, 0, /*
|
16
|
1607 Return smallest of all the arguments.
|
70
|
1608 All arguments must be numbers, characters or markers.
|
|
1609 The value is always a number; markers and characters are converted
|
|
1610 to numbers.
|
20
|
1611 */
|
|
1612 (int nargs, Lisp_Object *args))
|
0
|
1613 {
|
|
1614 return arith_driver (Amin, nargs, args);
|
|
1615 }
|
|
1616
|
20
|
1617 DEFUN ("logand", Flogand, 0, MANY, 0, /*
|
0
|
1618 Return bitwise-and of all the arguments.
|
70
|
1619 Arguments may be integers, or markers or characters converted to integers.
|
20
|
1620 */
|
|
1621 (int nargs, Lisp_Object *args))
|
0
|
1622 {
|
|
1623 return arith_driver (Alogand, nargs, args);
|
|
1624 }
|
|
1625
|
20
|
1626 DEFUN ("logior", Flogior, 0, MANY, 0, /*
|
0
|
1627 Return bitwise-or of all the arguments.
|
70
|
1628 Arguments may be integers, or markers or characters converted to integers.
|
20
|
1629 */
|
|
1630 (int nargs, Lisp_Object *args))
|
0
|
1631 {
|
|
1632 return arith_driver (Alogior, nargs, args);
|
|
1633 }
|
|
1634
|
20
|
1635 DEFUN ("logxor", Flogxor, 0, MANY, 0, /*
|
0
|
1636 Return bitwise-exclusive-or of all the arguments.
|
70
|
1637 Arguments may be integers, or markers or characters converted to integers.
|
20
|
1638 */
|
|
1639 (int nargs, Lisp_Object *args))
|
0
|
1640 {
|
|
1641 return arith_driver (Alogxor, nargs, args);
|
|
1642 }
|
|
1643
|
20
|
1644 DEFUN ("ash", Fash, 2, 2, 0, /*
|
0
|
1645 Return VALUE with its bits shifted left by COUNT.
|
|
1646 If COUNT is negative, shifting is actually to the right.
|
|
1647 In this case, the sign bit is duplicated.
|
20
|
1648 */
|
|
1649 (value, count))
|
0
|
1650 {
|
|
1651 CHECK_INT_COERCE_CHAR (value);
|
|
1652 CHECK_INT (count);
|
|
1653
|
16
|
1654 return make_int (XINT (count) > 0 ?
|
70
|
1655 XINT (value) << XINT (count) :
|
|
1656 XINT (value) >> -XINT (count));
|
0
|
1657 }
|
|
1658
|
20
|
1659 DEFUN ("lsh", Flsh, 2, 2, 0, /*
|
0
|
1660 Return VALUE with its bits shifted left by COUNT.
|
|
1661 If COUNT is negative, shifting is actually to the right.
|
70
|
1662 In this case, zeros are shifted in on the left.
|
20
|
1663 */
|
|
1664 (value, count))
|
0
|
1665 {
|
|
1666 Lisp_Object val;
|
|
1667
|
|
1668 CHECK_INT_COERCE_CHAR (value);
|
|
1669 CHECK_INT (count);
|
|
1670
|
70
|
1671 {
|
|
1672 int C_count = XINT (count);
|
|
1673 EMACS_UINT C_value = (EMACS_UINT) XUINT (value);
|
|
1674 XSETINT (val, C_count > 0 ? C_value << C_count : C_value >> -C_count);
|
|
1675 }
|
0
|
1676 return val;
|
|
1677 }
|
|
1678
|
20
|
1679 DEFUN ("1+", Fadd1, 1, 1, 0, /*
|
0
|
1680 Return NUMBER plus one. NUMBER may be a number or a marker.
|
70
|
1681 Markers and characters are converted to integers.
|
20
|
1682 */
|
|
1683 (number))
|
0
|
1684 {
|
|
1685 CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER (number);
|
|
1686
|
|
1687 #ifdef LISP_FLOAT_TYPE
|
|
1688 if (FLOATP (number))
|
|
1689 return (make_float (1.0 + float_data (XFLOAT (number))));
|
|
1690 #endif /* LISP_FLOAT_TYPE */
|
|
1691
|
|
1692 return (make_int (XINT (number) + 1));
|
|
1693 }
|
|
1694
|
20
|
1695 DEFUN ("1-", Fsub1, 1, 1, 0, /*
|
0
|
1696 Return NUMBER minus one. NUMBER may be a number or a marker.
|
70
|
1697 Markers and characters are converted to integers.
|
20
|
1698 */
|
|
1699 (number))
|
0
|
1700 {
|
|
1701 CHECK_INT_OR_FLOAT_COERCE_CHAR_OR_MARKER (number);
|
|
1702
|
|
1703 #ifdef LISP_FLOAT_TYPE
|
|
1704 if (FLOATP (number))
|
|
1705 return (make_float (-1.0 + (float_data (XFLOAT (number)))));
|
|
1706 #endif /* LISP_FLOAT_TYPE */
|
|
1707
|
|
1708 return (make_int (XINT (number) - 1));
|
|
1709 }
|
|
1710
|
20
|
1711 DEFUN ("lognot", Flognot, 1, 1, 0, /*
|
0
|
1712 Return the bitwise complement of NUMBER. NUMBER must be an integer.
|
20
|
1713 */
|
|
1714 (number))
|
0
|
1715 {
|
|
1716 CHECK_INT (number);
|
|
1717 return (make_int (~XINT (number)));
|
|
1718 }
|
|
1719
|
|
1720
|
|
1721 /************************************************************************/
|
|
1722 /* weak lists */
|
|
1723 /************************************************************************/
|
|
1724
|
|
1725 /* A weak list is like a normal list except that elements automatically
|
|
1726 disappear when no longer in use, i.e. when no longer GC-protected.
|
|
1727 The basic idea is that we don't mark the elements during GC, but
|
|
1728 wait for them to be marked elsewhere. If they're not marked, we
|
|
1729 remove them. This is analogous to weak hashtables; see the explanation
|
|
1730 there for more info. */
|
|
1731
|
|
1732 static Lisp_Object mark_weak_list (Lisp_Object, void (*) (Lisp_Object));
|
|
1733 static void print_weak_list (Lisp_Object, Lisp_Object, int);
|
|
1734 static int weak_list_equal (Lisp_Object, Lisp_Object, int depth);
|
|
1735 static unsigned long weak_list_hash (Lisp_Object obj, int depth);
|
|
1736 DEFINE_LRECORD_IMPLEMENTATION ("weak-list", weak_list,
|
|
1737 mark_weak_list, print_weak_list,
|
|
1738 0, weak_list_equal, weak_list_hash,
|
|
1739 struct weak_list);
|
|
1740
|
|
1741 static Lisp_Object Vall_weak_lists; /* Gemarke es nicht!!! */
|
|
1742
|
|
1743 static Lisp_Object encode_weak_list_type (enum weak_list_type type);
|
|
1744
|
|
1745 static Lisp_Object
|
|
1746 mark_weak_list (Lisp_Object obj, void (*markobj) (Lisp_Object))
|
|
1747 {
|
|
1748 return Qnil; /* nichts ist gemarkt */
|
|
1749 }
|
|
1750
|
|
1751 static void
|
|
1752 print_weak_list (Lisp_Object obj, Lisp_Object printcharfun, int escapeflag)
|
|
1753 {
|
|
1754 if (print_readably)
|
|
1755 error ("printing unreadable object #<weak-list>");
|
|
1756
|
|
1757 write_c_string ("#<weak-list ", printcharfun);
|
|
1758 print_internal (encode_weak_list_type (XWEAK_LIST (obj)->type),
|
|
1759 printcharfun, 0);
|
|
1760 write_c_string (" ", printcharfun);
|
|
1761 print_internal (XWEAK_LIST (obj)->list, printcharfun, escapeflag);
|
|
1762 write_c_string (">", printcharfun);
|
|
1763 }
|
|
1764
|
|
1765 static int
|
|
1766 weak_list_equal (Lisp_Object o1, Lisp_Object o2, int depth)
|
|
1767 {
|
|
1768 struct weak_list *w1 = XWEAK_LIST (o1);
|
|
1769 struct weak_list *w2 = XWEAK_LIST (o2);
|
|
1770
|
70
|
1771 return (w1->type == w2->type) &&
|
|
1772 internal_equal (w1->list, w2->list, depth + 1);
|
0
|
1773 }
|
|
1774
|
|
1775 static unsigned long
|
|
1776 weak_list_hash (Lisp_Object obj, int depth)
|
|
1777 {
|
|
1778 struct weak_list *w = XWEAK_LIST (obj);
|
|
1779
|
|
1780 return HASH2 ((unsigned long) w->type,
|
|
1781 internal_hash (w->list, depth + 1));
|
|
1782 }
|
|
1783
|
|
1784 Lisp_Object
|
|
1785 make_weak_list (enum weak_list_type type)
|
|
1786 {
|
|
1787 Lisp_Object result = Qnil;
|
|
1788
|
|
1789 struct weak_list *wl =
|
|
1790 alloc_lcrecord (sizeof (struct weak_list), lrecord_weak_list);
|
|
1791 wl->list = Qnil;
|
|
1792 wl->type = type;
|
|
1793 XSETWEAK_LIST (result, wl);
|
|
1794 wl->next_weak = Vall_weak_lists;
|
|
1795 Vall_weak_lists = result;
|
|
1796 return result;
|
|
1797 }
|
|
1798
|
|
1799 /*
|
|
1800 -- we do not mark the list elements (either the elements themselves
|
|
1801 or the cons cells that hold them) in the normal marking phase.
|
|
1802 -- at the end of marking, we go through all weak lists that are
|
|
1803 marked, and mark the cons cells that hold all marked
|
|
1804 objects, and possibly parts of the objects themselves.
|
|
1805 (See alloc.c, "after-mark".)
|
|
1806 -- after that, we prune away all the cons cells that are not marked.
|
|
1807
|
|
1808 WARNING WARNING WARNING WARNING WARNING:
|
|
1809
|
|
1810 The code in the following two functions is *unbelievably* tricky.
|
|
1811 Don't mess with it. You'll be sorry.
|
|
1812
|
|
1813 Linked lists just majorly suck, d'ya know?
|
|
1814 */
|
|
1815
|
|
1816 int
|
|
1817 finish_marking_weak_lists (int (*obj_marked_p) (Lisp_Object),
|
|
1818 void (*markobj) (Lisp_Object))
|
|
1819 {
|
|
1820 Lisp_Object rest;
|
|
1821 int did_mark = 0;
|
|
1822
|
|
1823 for (rest = Vall_weak_lists;
|
|
1824 !GC_NILP (rest);
|
|
1825 rest = XWEAK_LIST (rest)->next_weak)
|
|
1826 {
|
|
1827 Lisp_Object rest2;
|
|
1828 enum weak_list_type type = XWEAK_LIST (rest)->type;
|
|
1829
|
|
1830 if (! ((*obj_marked_p) (rest)))
|
|
1831 /* The weak list is probably garbage. Ignore it. */
|
|
1832 continue;
|
|
1833
|
|
1834 for (rest2 = XWEAK_LIST (rest)->list;
|
|
1835 /* We need to be trickier since we're inside of GC;
|
|
1836 use CONSP instead of !NILP in case of user-visible
|
|
1837 imperfect lists */
|
|
1838 GC_CONSP (rest2);
|
|
1839 rest2 = XCDR (rest2))
|
|
1840 {
|
|
1841 Lisp_Object elem;
|
|
1842 /* If the element is "marked" (meaning depends on the type
|
|
1843 of weak list), we need to mark the cons containing the
|
|
1844 element, and maybe the element itself (if only some part
|
|
1845 was already marked). */
|
|
1846 int need_to_mark_cons = 0;
|
|
1847 int need_to_mark_elem = 0;
|
|
1848
|
|
1849 /* If a cons is already marked, then its car is already marked
|
|
1850 (either because of an external pointer or because of
|
|
1851 a previous call to this function), and likewise for all
|
|
1852 the rest of the elements in the list, so we can stop now. */
|
|
1853 if ((*obj_marked_p) (rest2))
|
|
1854 break;
|
|
1855
|
|
1856 elem = XCAR (rest2);
|
|
1857
|
|
1858 switch (type)
|
|
1859 {
|
|
1860 case WEAK_LIST_SIMPLE:
|
|
1861 if ((*obj_marked_p) (elem))
|
|
1862 need_to_mark_cons = 1;
|
|
1863 break;
|
|
1864
|
|
1865 case WEAK_LIST_ASSOC:
|
|
1866 if (!GC_CONSP (elem))
|
|
1867 {
|
|
1868 /* just leave bogus elements there */
|
|
1869 need_to_mark_cons = 1;
|
|
1870 need_to_mark_elem = 1;
|
|
1871 }
|
|
1872 else if ((*obj_marked_p) (XCAR (elem)) &&
|
|
1873 (*obj_marked_p) (XCDR (elem)))
|
|
1874 {
|
|
1875 need_to_mark_cons = 1;
|
|
1876 /* We still need to mark elem, because it's
|
|
1877 probably not marked. */
|
|
1878 need_to_mark_elem = 1;
|
|
1879 }
|
|
1880 break;
|
|
1881
|
|
1882 case WEAK_LIST_KEY_ASSOC:
|
|
1883 if (!GC_CONSP (elem))
|
|
1884 {
|
|
1885 /* just leave bogus elements there */
|
|
1886 need_to_mark_cons = 1;
|
|
1887 need_to_mark_elem = 1;
|
|
1888 }
|
|
1889 else if ((*obj_marked_p) (XCAR (elem)))
|
|
1890 {
|
|
1891 need_to_mark_cons = 1;
|
|
1892 /* We still need to mark elem and XCDR (elem);
|
|
1893 marking elem does both */
|
|
1894 need_to_mark_elem = 1;
|
|
1895 }
|
|
1896 break;
|
|
1897
|
|
1898 case WEAK_LIST_VALUE_ASSOC:
|
|
1899 if (!GC_CONSP (elem))
|
|
1900 {
|
|
1901 /* just leave bogus elements there */
|
|
1902 need_to_mark_cons = 1;
|
|
1903 need_to_mark_elem = 1;
|
|
1904 }
|
|
1905 else if ((*obj_marked_p) (XCDR (elem)))
|
|
1906 {
|
|
1907 need_to_mark_cons = 1;
|
|
1908 /* We still need to mark elem and XCAR (elem);
|
|
1909 marking elem does both */
|
|
1910 need_to_mark_elem = 1;
|
|
1911 }
|
|
1912 break;
|
|
1913
|
|
1914 default:
|
|
1915 abort ();
|
|
1916 }
|
|
1917
|
|
1918 if (need_to_mark_elem && ! (*obj_marked_p) (elem))
|
|
1919 {
|
|
1920 (*markobj) (elem);
|
|
1921 did_mark = 1;
|
|
1922 }
|
|
1923
|
|
1924 /* We also need to mark the cons that holds the elem or
|
|
1925 assoc-pair. We do *not* want to call (markobj) here
|
|
1926 because that will mark the entire list; we just want to
|
|
1927 mark the cons itself.
|
|
1928 */
|
|
1929 if (need_to_mark_cons)
|
|
1930 {
|
|
1931 struct Lisp_Cons *ptr = XCONS (rest2);
|
|
1932 if (!CONS_MARKED_P (ptr))
|
|
1933 {
|
|
1934 MARK_CONS (ptr);
|
|
1935 did_mark = 1;
|
|
1936 }
|
|
1937 }
|
|
1938 }
|
|
1939
|
|
1940 /* In case of imperfect list, need to mark the final cons
|
|
1941 because we're not removing it */
|
|
1942 if (!GC_NILP (rest2) && ! (obj_marked_p) (rest2))
|
|
1943 {
|
|
1944 (markobj) (rest2);
|
|
1945 did_mark = 1;
|
|
1946 }
|
|
1947 }
|
|
1948
|
|
1949 return did_mark;
|
|
1950 }
|
|
1951
|
|
1952 void
|
|
1953 prune_weak_lists (int (*obj_marked_p) (Lisp_Object))
|
|
1954 {
|
|
1955 Lisp_Object rest, prev = Qnil;
|
|
1956
|
|
1957 for (rest = Vall_weak_lists;
|
|
1958 !GC_NILP (rest);
|
|
1959 rest = XWEAK_LIST (rest)->next_weak)
|
|
1960 {
|
|
1961 if (! ((*obj_marked_p) (rest)))
|
|
1962 {
|
|
1963 /* This weak list itself is garbage. Remove it from the list. */
|
|
1964 if (GC_NILP (prev))
|
|
1965 Vall_weak_lists = XWEAK_LIST (rest)->next_weak;
|
|
1966 else
|
|
1967 XWEAK_LIST (prev)->next_weak =
|
|
1968 XWEAK_LIST (rest)->next_weak;
|
|
1969 }
|
|
1970 else
|
|
1971 {
|
|
1972 Lisp_Object rest2, prev2 = Qnil;
|
|
1973 Lisp_Object tortoise;
|
|
1974 int go_tortoise = 0;
|
|
1975
|
|
1976 for (rest2 = XWEAK_LIST (rest)->list, tortoise = rest2;
|
|
1977 /* We need to be trickier since we're inside of GC;
|
|
1978 use CONSP instead of !NILP in case of user-visible
|
|
1979 imperfect lists */
|
|
1980 GC_CONSP (rest2);)
|
|
1981 {
|
|
1982 /* It suffices to check the cons for marking,
|
|
1983 regardless of the type of weak list:
|
|
1984
|
|
1985 -- if the cons is pointed to somewhere else,
|
|
1986 then it should stay around and will be marked.
|
|
1987 -- otherwise, if it should stay around, it will
|
|
1988 have been marked in finish_marking_weak_lists().
|
|
1989 -- otherwise, it's not marked and should disappear.
|
|
1990 */
|
|
1991 if (!(*obj_marked_p) (rest2))
|
|
1992 {
|
|
1993 /* bye bye :-( */
|
|
1994 if (GC_NILP (prev2))
|
|
1995 XWEAK_LIST (rest)->list = XCDR (rest2);
|
|
1996 else
|
|
1997 XCDR (prev2) = XCDR (rest2);
|
|
1998 rest2 = XCDR (rest2);
|
|
1999 /* Ouch. Circularity checking is even trickier
|
|
2000 than I thought. When we cut out a link
|
|
2001 like this, we can't advance the turtle or
|
|
2002 it'll catch up to us. Imagine that we're
|
|
2003 standing on floor tiles and moving forward --
|
|
2004 what we just did here is as if the floor
|
|
2005 tile under us just disappeared and all the
|
|
2006 ones ahead of us slid one tile towards us.
|
|
2007 In other words, we didn't move at all;
|
|
2008 if the tortoise was one step behind us
|
|
2009 previously, it still is, and therefore
|
|
2010 it must not move. */
|
|
2011 }
|
|
2012 else
|
|
2013 {
|
|
2014 prev2 = rest2;
|
|
2015
|
|
2016 /* Implementing circularity checking is trickier here
|
|
2017 than in other places because we have to guarantee
|
|
2018 that we've processed all elements before exiting
|
|
2019 due to a circularity. (In most places, an error
|
|
2020 is issued upon encountering a circularity, so it
|
|
2021 doesn't really matter if all elements are processed.)
|
|
2022 The idea is that we process along with the hare
|
|
2023 rather than the tortoise. If at any point in
|
|
2024 our forward process we encounter the tortoise,
|
|
2025 we must have already visited the spot, so we exit.
|
|
2026 (If we process with the tortoise, we can fail to
|
|
2027 process cases where a cons points to itself, or
|
|
2028 where cons A points to cons B, which points to
|
|
2029 cons A.) */
|
|
2030
|
|
2031 rest2 = XCDR (rest2);
|
|
2032 if (go_tortoise)
|
|
2033 tortoise = XCDR (tortoise);
|
|
2034 go_tortoise = !go_tortoise;
|
|
2035 if (GC_EQ (rest2, tortoise))
|
|
2036 break;
|
|
2037 }
|
|
2038 }
|
|
2039
|
|
2040 prev = rest;
|
|
2041 }
|
|
2042 }
|
|
2043 }
|
|
2044
|
|
2045 static enum weak_list_type
|
|
2046 decode_weak_list_type (Lisp_Object symbol)
|
|
2047 {
|
|
2048 CHECK_SYMBOL (symbol);
|
16
|
2049 if (EQ (symbol, Qsimple)) return WEAK_LIST_SIMPLE;
|
|
2050 if (EQ (symbol, Qassoc)) return WEAK_LIST_ASSOC;
|
70
|
2051 if (EQ (symbol, Qold_assoc)) return WEAK_LIST_ASSOC; /* EBOLA ALERT! */
|
16
|
2052 if (EQ (symbol, Qkey_assoc)) return WEAK_LIST_KEY_ASSOC;
|
|
2053 if (EQ (symbol, Qvalue_assoc)) return WEAK_LIST_VALUE_ASSOC;
|
0
|
2054
|
|
2055 signal_simple_error ("Invalid weak list type", symbol);
|
|
2056 return WEAK_LIST_SIMPLE; /* not reached */
|
|
2057 }
|
|
2058
|
|
2059 static Lisp_Object
|
|
2060 encode_weak_list_type (enum weak_list_type type)
|
|
2061 {
|
|
2062 switch (type)
|
|
2063 {
|
16
|
2064 case WEAK_LIST_SIMPLE: return Qsimple;
|
|
2065 case WEAK_LIST_ASSOC: return Qassoc;
|
|
2066 case WEAK_LIST_KEY_ASSOC: return Qkey_assoc;
|
|
2067 case WEAK_LIST_VALUE_ASSOC: return Qvalue_assoc;
|
0
|
2068 default:
|
|
2069 abort ();
|
|
2070 }
|
|
2071
|
16
|
2072 return Qnil; /* not reached */
|
0
|
2073 }
|
|
2074
|
20
|
2075 DEFUN ("weak-list-p", Fweak_list_p, 1, 1, 0, /*
|
0
|
2076 Return non-nil if OBJECT is a weak list.
|
20
|
2077 */
|
|
2078 (object))
|
0
|
2079 {
|
|
2080 return WEAK_LISTP (object) ? Qt : Qnil;
|
|
2081 }
|
|
2082
|
20
|
2083 DEFUN ("make-weak-list", Fmake_weak_list, 0, 1, 0, /*
|
0
|
2084 Create a new weak list.
|
|
2085 A weak list object is an object that contains a list. This list behaves
|
|
2086 like any other list except that its elements do not count towards
|
|
2087 garbage collection -- if the only pointer to an object in inside a weak
|
|
2088 list (other than pointers in similar objects such as weak hash tables),
|
|
2089 the object is garbage collected and automatically removed from the list.
|
|
2090 This is used internally, for example, to manage the list holding the
|
|
2091 children of an extent -- an extent that is unused but has a parent will
|
|
2092 still be reclaimed, and will automatically be removed from its parent's
|
|
2093 list of children.
|
|
2094
|
|
2095 Optional argument TYPE specifies the type of the weak list, and defaults
|
|
2096 to `simple'. Recognized types are
|
|
2097
|
|
2098 `simple' Objects in the list disappear if not pointed to.
|
|
2099 `assoc' Objects in the list disappear if they are conses
|
|
2100 and either the car or the cdr of the cons is not
|
|
2101 pointed to.
|
|
2102 `key-assoc' Objects in the list disappear if they are conses
|
|
2103 and the car is not pointed to.
|
|
2104 `value-assoc' Objects in the list disappear if they are conses
|
|
2105 and the cdr is not pointed to.
|
20
|
2106 */
|
|
2107 (type))
|
0
|
2108 {
|
|
2109 if (NILP (type))
|
|
2110 type = Qsimple;
|
|
2111
|
|
2112 return make_weak_list (decode_weak_list_type (type));
|
|
2113 }
|
|
2114
|
20
|
2115 DEFUN ("weak-list-type", Fweak_list_type, 1, 1, 0, /*
|
0
|
2116 Return the type of the given weak-list object.
|
20
|
2117 */
|
|
2118 (weak))
|
0
|
2119 {
|
|
2120 CHECK_WEAK_LIST (weak);
|
|
2121 return encode_weak_list_type (XWEAK_LIST (weak)->type);
|
|
2122 }
|
|
2123
|
20
|
2124 DEFUN ("weak-list-list", Fweak_list_list, 1, 1, 0, /*
|
0
|
2125 Return the list contained in a weak-list object.
|
20
|
2126 */
|
|
2127 (weak))
|
0
|
2128 {
|
|
2129 CHECK_WEAK_LIST (weak);
|
|
2130 return XWEAK_LIST_LIST (weak);
|
|
2131 }
|
|
2132
|
20
|
2133 DEFUN ("set-weak-list-list", Fset_weak_list_list, 2, 2, 0, /*
|
0
|
2134 Change the list contained in a weak-list object.
|
20
|
2135 */
|
|
2136 (weak, new_list))
|
0
|
2137 {
|
|
2138 CHECK_WEAK_LIST (weak);
|
|
2139 XWEAK_LIST_LIST (weak) = new_list;
|
|
2140 return new_list;
|
|
2141 }
|
|
2142
|
|
2143
|
|
2144 /************************************************************************/
|
|
2145 /* initialization */
|
|
2146 /************************************************************************/
|
|
2147
|
|
2148 static SIGTYPE
|
|
2149 arith_error (int signo)
|
|
2150 {
|
|
2151 EMACS_REESTABLISH_SIGNAL (signo, arith_error);
|
|
2152 EMACS_UNBLOCK_SIGNAL (signo);
|
|
2153 signal_error (Qarith_error, Qnil);
|
|
2154 }
|
|
2155
|
|
2156 void
|
|
2157 init_data_very_early (void)
|
|
2158 {
|
|
2159 /* Don't do this if just dumping out.
|
|
2160 We don't want to call `signal' in this case
|
|
2161 so that we don't have trouble with dumping
|
|
2162 signal-delivering routines in an inconsistent state. */
|
|
2163 #ifndef CANNOT_DUMP
|
|
2164 if (!initialized)
|
|
2165 return;
|
|
2166 #endif /* CANNOT_DUMP */
|
|
2167 signal (SIGFPE, arith_error);
|
|
2168 #ifdef uts
|
|
2169 signal (SIGEMT, arith_error);
|
|
2170 #endif /* uts */
|
|
2171 }
|
|
2172
|
|
2173 void
|
|
2174 init_errors_once_early (void)
|
|
2175 {
|
|
2176 defsymbol (&Qerror_conditions, "error-conditions");
|
|
2177 defsymbol (&Qerror_message, "error-message");
|
|
2178
|
|
2179 /* We declare the errors here because some other deferrors depend
|
|
2180 on some of the errors below. */
|
|
2181
|
|
2182 /* ERROR is used as a signaler for random errors for which nothing
|
|
2183 else is right */
|
|
2184
|
|
2185 deferror (&Qerror, "error", "error", Qnil);
|
|
2186 deferror (&Qquit, "quit", "Quit", Qnil);
|
|
2187
|
|
2188 deferror (&Qwrong_type_argument, "wrong-type-argument",
|
|
2189 "Wrong type argument", Qerror);
|
|
2190 deferror (&Qargs_out_of_range, "args-out-of-range", "Args out of range",
|
|
2191 Qerror);
|
|
2192 deferror (&Qvoid_function, "void-function",
|
|
2193 "Symbol's function definition is void", Qerror);
|
|
2194 deferror (&Qcyclic_function_indirection, "cyclic-function-indirection",
|
|
2195 "Symbol's chain of function indirections contains a loop", Qerror);
|
|
2196 deferror (&Qvoid_variable, "void-variable",
|
|
2197 "Symbol's value as variable is void", Qerror);
|
|
2198 deferror (&Qcyclic_variable_indirection, "cyclic-variable-indirection",
|
|
2199 "Symbol's chain of variable indirections contains a loop", Qerror);
|
|
2200 deferror (&Qsetting_constant, "setting-constant",
|
|
2201 "Attempt to set a constant symbol", Qerror);
|
|
2202 deferror (&Qinvalid_read_syntax, "invalid-read-syntax",
|
|
2203 "Invalid read syntax", Qerror);
|
|
2204 deferror (&Qmalformed_list, "malformed-list",
|
|
2205 "Malformed list", Qerror);
|
|
2206 deferror (&Qmalformed_property_list, "malformed-property-list",
|
|
2207 "Malformed property list", Qerror);
|
|
2208 deferror (&Qcircular_list, "circular-list",
|
|
2209 "Circular list", Qerror);
|
|
2210 deferror (&Qcircular_property_list, "circular-property-list",
|
|
2211 "Circular property list", Qerror);
|
|
2212 deferror (&Qinvalid_function, "invalid-function", "Invalid function",
|
|
2213 Qerror);
|
|
2214 deferror (&Qwrong_number_of_arguments, "wrong-number-of-arguments",
|
|
2215 "Wrong number of arguments", Qerror);
|
|
2216 deferror (&Qno_catch, "no-catch", "No catch for tag",
|
|
2217 Qerror);
|
|
2218 deferror (&Qbeginning_of_buffer, "beginning-of-buffer",
|
|
2219 "Beginning of buffer", Qerror);
|
|
2220 deferror (&Qend_of_buffer, "end-of-buffer", "End of buffer", Qerror);
|
|
2221 deferror (&Qbuffer_read_only, "buffer-read-only", "Buffer is read-only",
|
|
2222 Qerror);
|
|
2223
|
|
2224 deferror (&Qio_error, "io-error", "IO Error", Qerror);
|
|
2225 deferror (&Qend_of_file, "end-of-file", "End of stream", Qio_error);
|
|
2226
|
|
2227 deferror (&Qarith_error, "arith-error", "Arithmetic error", Qerror);
|
|
2228 deferror (&Qrange_error, "range-error", "Arithmetic range error",
|
|
2229 Qarith_error);
|
|
2230 deferror (&Qdomain_error, "domain-error", "Arithmetic domain error",
|
|
2231 Qarith_error);
|
|
2232 deferror (&Qsingularity_error, "singularity-error",
|
|
2233 "Arithmetic singularity error", Qdomain_error);
|
|
2234 deferror (&Qoverflow_error, "overflow-error",
|
|
2235 "Arithmetic overflow error", Qdomain_error);
|
|
2236 deferror (&Qunderflow_error, "underflow-error",
|
|
2237 "Arithmetic underflow error", Qdomain_error);
|
|
2238 }
|
|
2239
|
|
2240 void
|
|
2241 syms_of_data (void)
|
|
2242 {
|
|
2243 defsymbol (&Qcons, "cons");
|
|
2244 defsymbol (&Qkeyword, "keyword");
|
|
2245 /* Qstring, Qinteger, Qsymbol, Qvector defined in general.c */
|
|
2246
|
|
2247 defsymbol (&Qquote, "quote");
|
|
2248 defsymbol (&Qlambda, "lambda");
|
|
2249 defsymbol (&Qsignal, "signal");
|
|
2250 defsymbol (&Qtop_level, "top-level");
|
|
2251 defsymbol (&Qignore, "ignore");
|
|
2252
|
|
2253 defsymbol (&Qlistp, "listp");
|
|
2254 defsymbol (&Qconsp, "consp");
|
|
2255 defsymbol (&Qsubrp, "subrp");
|
|
2256 defsymbol (&Qsymbolp, "symbolp");
|
|
2257 defsymbol (&Qkeywordp, "keywordp");
|
|
2258 defsymbol (&Qintegerp, "integerp");
|
|
2259 defsymbol (&Qcharacterp, "characterp");
|
|
2260 defsymbol (&Qnatnump, "natnump");
|
|
2261 defsymbol (&Qstringp, "stringp");
|
|
2262 defsymbol (&Qarrayp, "arrayp");
|
|
2263 defsymbol (&Qsequencep, "sequencep");
|
|
2264 defsymbol (&Qbufferp, "bufferp");
|
|
2265 defsymbol (&Qbitp, "bitp");
|
|
2266 defsymbol (&Qbit_vectorp, "bit-vector-p");
|
|
2267 defsymbol (&Qvectorp, "vectorp");
|
|
2268 defsymbol (&Qcompiled_functionp, "compiled-function-p");
|
|
2269 defsymbol (&Qchar_or_string_p, "char-or-string-p");
|
|
2270 defsymbol (&Qmarkerp, "markerp");
|
|
2271 defsymbol (&Qinteger_or_marker_p, "integer-or-marker-p");
|
70
|
2272 defsymbol (&Qinteger_or_char_p, "integer-or-char-p");
|
|
2273 defsymbol (&Qinteger_char_or_marker_p, "integer-char-or-marker-p");
|
0
|
2274
|
|
2275 #ifdef LISP_FLOAT_TYPE
|
|
2276 defsymbol (&Qfloatp, "floatp");
|
|
2277 #endif /* LISP_FLOAT_TYPE */
|
|
2278 defsymbol (&Qnumberp, "numberp");
|
|
2279 defsymbol (&Qnumber_or_marker_p, "number-or-marker-p");
|
70
|
2280 defsymbol (&Qnumber_char_or_marker_p, "number-char-or-marker-p");
|
0
|
2281
|
|
2282 defsymbol (&Qcdr, "cdr");
|
|
2283
|
|
2284 defsymbol (&Qweak_listp, "weak-list-p");
|
|
2285
|
20
|
2286 DEFSUBR (Fwrong_type_argument);
|
0
|
2287
|
20
|
2288 DEFSUBR (Feq);
|
70
|
2289 DEFSUBR (Fold_eq);
|
20
|
2290 DEFSUBR (Fnull);
|
|
2291 DEFSUBR (Flistp);
|
|
2292 DEFSUBR (Fnlistp);
|
|
2293 DEFSUBR (Fconsp);
|
|
2294 DEFSUBR (Fatom);
|
|
2295 DEFSUBR (Fchar_or_string_p);
|
|
2296 DEFSUBR (Fcharacterp);
|
70
|
2297 DEFSUBR (Fchar_int_p);
|
104
|
2298 DEFSUBR (Fchar_to_int);
|
|
2299 DEFSUBR (Fint_to_char);
|
70
|
2300 DEFSUBR (Fchar_or_char_int_p);
|
20
|
2301 DEFSUBR (Fintegerp);
|
|
2302 DEFSUBR (Finteger_or_marker_p);
|
70
|
2303 DEFSUBR (Finteger_or_char_p);
|
|
2304 DEFSUBR (Finteger_char_or_marker_p);
|
20
|
2305 DEFSUBR (Fnumberp);
|
|
2306 DEFSUBR (Fnumber_or_marker_p);
|
70
|
2307 DEFSUBR (Fnumber_char_or_marker_p);
|
0
|
2308 #ifdef LISP_FLOAT_TYPE
|
20
|
2309 DEFSUBR (Ffloatp);
|
0
|
2310 #endif /* LISP_FLOAT_TYPE */
|
20
|
2311 DEFSUBR (Fnatnump);
|
|
2312 DEFSUBR (Fsymbolp);
|
|
2313 DEFSUBR (Fkeywordp);
|
|
2314 DEFSUBR (Fstringp);
|
|
2315 DEFSUBR (Fvectorp);
|
|
2316 DEFSUBR (Fbitp);
|
|
2317 DEFSUBR (Fbit_vector_p);
|
|
2318 DEFSUBR (Farrayp);
|
|
2319 DEFSUBR (Fsequencep);
|
|
2320 DEFSUBR (Fmarkerp);
|
|
2321 DEFSUBR (Fsubrp);
|
|
2322 DEFSUBR (Fsubr_min_args);
|
|
2323 DEFSUBR (Fsubr_max_args);
|
|
2324 DEFSUBR (Fcompiled_function_p);
|
|
2325 DEFSUBR (Ftype_of);
|
|
2326 DEFSUBR (Fcar);
|
|
2327 DEFSUBR (Fcdr);
|
|
2328 DEFSUBR (Fcar_safe);
|
|
2329 DEFSUBR (Fcdr_safe);
|
|
2330 DEFSUBR (Fsetcar);
|
|
2331 DEFSUBR (Fsetcdr);
|
|
2332 DEFSUBR (Findirect_function);
|
|
2333 DEFSUBR (Faref);
|
|
2334 DEFSUBR (Faset);
|
0
|
2335
|
20
|
2336 DEFSUBR (Fcompiled_function_instructions);
|
|
2337 DEFSUBR (Fcompiled_function_constants);
|
|
2338 DEFSUBR (Fcompiled_function_stack_depth);
|
|
2339 DEFSUBR (Fcompiled_function_arglist);
|
|
2340 DEFSUBR (Fcompiled_function_interactive);
|
|
2341 DEFSUBR (Fcompiled_function_doc_string);
|
|
2342 DEFSUBR (Fcompiled_function_domain);
|
0
|
2343 #ifdef COMPILED_FUNCTION_ANNOTATION_HACK
|
20
|
2344 DEFSUBR (Fcompiled_function_annotation);
|
0
|
2345 #endif
|
|
2346
|
20
|
2347 DEFSUBR (Fnumber_to_string);
|
|
2348 DEFSUBR (Fstring_to_number);
|
|
2349 DEFSUBR (Feqlsign);
|
|
2350 DEFSUBR (Flss);
|
|
2351 DEFSUBR (Fgtr);
|
|
2352 DEFSUBR (Fleq);
|
|
2353 DEFSUBR (Fgeq);
|
|
2354 DEFSUBR (Fneq);
|
|
2355 DEFSUBR (Fzerop);
|
|
2356 DEFSUBR (Fplus);
|
|
2357 DEFSUBR (Fminus);
|
|
2358 DEFSUBR (Ftimes);
|
|
2359 DEFSUBR (Fquo);
|
|
2360 DEFSUBR (Frem);
|
|
2361 DEFSUBR (Fmod);
|
|
2362 DEFSUBR (Fmax);
|
|
2363 DEFSUBR (Fmin);
|
|
2364 DEFSUBR (Flogand);
|
|
2365 DEFSUBR (Flogior);
|
|
2366 DEFSUBR (Flogxor);
|
|
2367 DEFSUBR (Flsh);
|
|
2368 DEFSUBR (Fash);
|
|
2369 DEFSUBR (Fadd1);
|
|
2370 DEFSUBR (Fsub1);
|
|
2371 DEFSUBR (Flognot);
|
0
|
2372
|
20
|
2373 DEFSUBR (Fweak_list_p);
|
|
2374 DEFSUBR (Fmake_weak_list);
|
|
2375 DEFSUBR (Fweak_list_type);
|
|
2376 DEFSUBR (Fweak_list_list);
|
|
2377 DEFSUBR (Fset_weak_list_list);
|
0
|
2378 }
|
|
2379
|
|
2380 void
|
|
2381 vars_of_data (void)
|
|
2382 {
|
|
2383 /* This must not be staticpro'd */
|
|
2384 Vall_weak_lists = Qnil;
|
70
|
2385
|
|
2386 #ifdef DEBUG_XEMACS
|
|
2387 DEFVAR_INT ("debug-issue-ebola-notices", &debug_issue_ebola_notices /*
|
|
2388 If non-nil, note when your code may be suffering from char-int confoundance.
|
|
2389 That is to say, if XEmacs encounters a usage of `eq', `memq', `equal',
|
|
2390 etc. where a int and a char with the same value are being compared,
|
|
2391 it will issue a notice on stderr to this effect, along with a backtrace.
|
|
2392 In such situations, the result would be different in XEmacs 19 versus
|
|
2393 XEmacs 20, and you probably don't want this.
|
|
2394
|
|
2395 Note that in order to see these notices, you have to byte compile your
|
|
2396 code under XEmacs 20 -- any code byte-compiled under XEmacs 19 will
|
|
2397 have its chars and ints all confounded in the byte code, making it
|
|
2398 impossible to accurately determine Ebola infection.
|
|
2399 */ );
|
|
2400
|
|
2401 debug_issue_ebola_notices = 2; /* #### temporary hack */
|
|
2402
|
|
2403 DEFVAR_INT ("debug-ebola-backtrace-length",
|
|
2404 &debug_ebola_backtrace_length /*
|
|
2405 Length (in stack frames) of short backtrace printed out in Ebola notices.
|
|
2406 See `debug-issue-ebola-notices'.
|
|
2407 */ );
|
159
|
2408 debug_ebola_backtrace_length = 32;
|
70
|
2409
|
|
2410 #endif /* DEBUG_XEMACS */
|
0
|
2411 }
|