add DEFINE-MORE-FUN, use it for vararg arithmetic functions
[sbcl.git] / src / code / early-extensions.lisp
1 ;;;; various extensions (including SB-INT "internal extensions")
2 ;;;; available both in the cross-compilation host Lisp and in the
3 ;;;; target SBCL
4
5 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; more information.
7 ;;;;
8 ;;;; This software is derived from the CMU CL system, which was
9 ;;;; written at Carnegie Mellon University and released into the
10 ;;;; public domain. The software is in the public domain and is
11 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
12 ;;;; files for more information.
13
14 (in-package "SB!IMPL")
15
16 (defvar *core-pathname* nil
17   #!+sb-doc
18   "The absolute pathname of the running SBCL core.")
19
20 (defvar *runtime-pathname* nil
21   #!+sb-doc
22   "The absolute pathname of the running SBCL runtime.")
23
24 ;;; something not EQ to anything we might legitimately READ
25 (defparameter *eof-object* (make-symbol "EOF-OBJECT"))
26
27 (eval-when (:compile-toplevel :load-toplevel :execute)
28   (defconstant max-hash sb!xc:most-positive-fixnum))
29
30 (def!type hash ()
31   `(integer 0 ,max-hash))
32
33 ;;; a type used for indexing into arrays, and for related quantities
34 ;;; like lengths of lists
35 ;;;
36 ;;; It's intentionally limited to one less than the
37 ;;; ARRAY-DIMENSION-LIMIT for efficiency reasons, because in SBCL
38 ;;; ARRAY-DIMENSION-LIMIT is MOST-POSITIVE-FIXNUM, and staying below
39 ;;; that lets the system know it can increment a value of this type
40 ;;; without having to worry about using a bignum to represent the
41 ;;; result.
42 ;;;
43 ;;; (It should be safe to use ARRAY-DIMENSION-LIMIT as an exclusive
44 ;;; bound because ANSI specifies it as an exclusive bound.)
45 (def!type index () `(integer 0 (,sb!xc:array-dimension-limit)))
46
47 ;;; like INDEX, but only up to half the maximum. Used by hash-table
48 ;;; code that does plenty to (aref v (* 2 i)) and (aref v (1+ (* 2 i))).
49 (def!type index/2 () `(integer 0 (,(floor sb!xc:array-dimension-limit 2))))
50
51 ;;; like INDEX, but augmented with -1 (useful when using the index
52 ;;; to count downwards to 0, e.g. LOOP FOR I FROM N DOWNTO 0, with
53 ;;; an implementation which terminates the loop by testing for the
54 ;;; index leaving the loop range)
55 (def!type index-or-minus-1 () `(integer -1 (,sb!xc:array-dimension-limit)))
56
57 ;;; A couple of VM-related types that are currently used only on the
58 ;;; alpha platform. -- CSR, 2002-06-24
59 (def!type unsigned-byte-with-a-bite-out (s bite)
60   (cond ((eq s '*) 'integer)
61         ((and (integerp s) (> s 0))
62          (let ((bound (ash 1 s)))
63            `(integer 0 ,(- bound bite 1))))
64         (t
65          (error "Bad size specified for UNSIGNED-BYTE type specifier: ~S." s))))
66
67 ;;; Motivated by the mips port. -- CSR, 2002-08-22
68 (def!type signed-byte-with-a-bite-out (s bite)
69   (cond ((eq s '*) 'integer)
70         ((and (integerp s) (> s 1))
71          (let ((bound (ash 1 (1- s))))
72            `(integer ,(- bound) ,(- bound bite 1))))
73         (t
74          (error "Bad size specified for SIGNED-BYTE type specifier: ~S." s))))
75
76 (def!type load/store-index (scale lowtag min-offset
77                                  &optional (max-offset min-offset))
78   `(integer ,(- (truncate (+ (ash 1 16)
79                              (* min-offset sb!vm:n-word-bytes)
80                              (- lowtag))
81                           scale))
82             ,(truncate (- (+ (1- (ash 1 16)) lowtag)
83                           (* max-offset sb!vm:n-word-bytes))
84                        scale)))
85
86 #!+(or x86 x86-64)
87 (defun displacement-bounds (lowtag element-size data-offset)
88   (let* ((adjustment (- (* data-offset sb!vm:n-word-bytes) lowtag))
89          (bytes-per-element (ceiling element-size sb!vm:n-byte-bits))
90          (min (truncate (+ sb!vm::minimum-immediate-offset adjustment)
91                         bytes-per-element))
92          (max (truncate (+ sb!vm::maximum-immediate-offset adjustment)
93                         bytes-per-element)))
94     (values min max)))
95
96 #!+(or x86 x86-64)
97 (def!type constant-displacement (lowtag element-size data-offset)
98   (flet ((integerify (x)
99            (etypecase x
100              (integer x)
101              (symbol (symbol-value x)))))
102     (let ((lowtag (integerify lowtag))
103           (element-size (integerify element-size))
104           (data-offset (integerify data-offset)))
105       (multiple-value-bind (min max) (displacement-bounds lowtag
106                                                           element-size
107                                                           data-offset)
108         `(integer ,min ,max)))))
109
110 ;;; Similar to FUNCTION, but the result type is "exactly" specified:
111 ;;; if it is an object type, then the function returns exactly one
112 ;;; value, if it is a short form of VALUES, then this short form
113 ;;; specifies the exact number of values.
114 (def!type sfunction (args &optional result)
115   (let ((result (cond ((eq result '*) '*)
116                       ((or (atom result)
117                            (not (eq (car result) 'values)))
118                        `(values ,result &optional))
119                       ((intersection (cdr result) sb!xc:lambda-list-keywords)
120                        result)
121                       (t `(values ,@(cdr result) &optional)))))
122     `(function ,args ,result)))
123
124 ;;; a type specifier
125 ;;;
126 ;;; FIXME: The SB!KERNEL:INSTANCE here really means CL:CLASS.
127 ;;; However, the CL:CLASS type is only defined once PCL is loaded,
128 ;;; which is before this is evaluated.  Once PCL is moved into cold
129 ;;; init, this might be fixable.
130 (def!type type-specifier () '(or list symbol sb!kernel:instance))
131
132 ;;; the default value used for initializing character data. The ANSI
133 ;;; spec says this is arbitrary, so we use the value that falls
134 ;;; through when we just let the low-level consing code initialize
135 ;;; all newly-allocated memory to zero.
136 ;;;
137 ;;; KLUDGE: It might be nice to use something which is a
138 ;;; STANDARD-CHAR, both to reduce user surprise a little and, probably
139 ;;; more significantly, to help SBCL's cross-compiler (which knows how
140 ;;; to dump STANDARD-CHARs). Unfortunately, the old CMU CL code is
141 ;;; shot through with implicit assumptions that it's #\NULL, and code
142 ;;; in several places (notably both DEFUN MAKE-ARRAY and DEFTRANSFORM
143 ;;; MAKE-ARRAY) would have to be rewritten. -- WHN 2001-10-04
144 (eval-when (:compile-toplevel :load-toplevel :execute)
145   ;; an expression we can use to construct a DEFAULT-INIT-CHAR value
146   ;; at load time (so that we don't need to teach the cross-compiler
147   ;; how to represent and dump non-STANDARD-CHARs like #\NULL)
148   (defparameter *default-init-char-form* '(code-char 0)))
149
150 ;;; CHAR-CODE values for ASCII characters which we care about but
151 ;;; which aren't defined in section "2.1.3 Standard Characters" of the
152 ;;; ANSI specification for Lisp
153 ;;;
154 ;;; KLUDGE: These are typically used in the idiom (CODE-CHAR
155 ;;; FOO-CHAR-CODE). I suspect that the current implementation is
156 ;;; expanding this idiom into a full call to CODE-CHAR, which is an
157 ;;; annoying overhead. I should check whether this is happening, and
158 ;;; if so, perhaps implement a DEFTRANSFORM or something to stop it.
159 ;;; (or just find a nicer way of expressing characters portably?) --
160 ;;; WHN 19990713
161 (def!constant bell-char-code 7)
162 (def!constant backspace-char-code 8)
163 (def!constant tab-char-code 9)
164 (def!constant line-feed-char-code 10)
165 (def!constant form-feed-char-code 12)
166 (def!constant return-char-code 13)
167 (def!constant escape-char-code 27)
168 (def!constant rubout-char-code 127)
169 \f
170 ;;;; type-ish predicates
171
172 ;;; X may contain cycles -- a conservative approximation. This
173 ;;; occupies a somewhat uncomfortable niche between being fast for
174 ;;; common cases (we don't want to allocate a hash-table), and not
175 ;;; falling down to exponential behaviour for large trees (so we set
176 ;;; an arbitrady depth limit beyond which we punt).
177 (defun maybe-cyclic-p (x &optional (depth-limit 12))
178   (and (listp x)
179        (labels ((safe-cddr (cons)
180                   (let ((cdr (cdr cons)))
181                     (when (consp cdr)
182                       (cdr cdr))))
183                 (check-cycle (object seen depth)
184                   (when (and (consp object)
185                              (or (> depth depth-limit)
186                                  (member object seen)
187                                  (circularp object seen depth)))
188                     (return-from maybe-cyclic-p t)))
189                 (circularp (list seen depth)
190                   ;; Almost regular circular list detection, with a twist:
191                   ;; we also check each element of the list for upward
192                   ;; references using CHECK-CYCLE.
193                   (do ((fast (cons (car list) (cdr list)) (safe-cddr fast))
194                        (slow list (cdr slow)))
195                       ((not (consp fast))
196                        ;; Not CDR-circular, need to check remaining CARs yet
197                        (do ((tail slow (and (cdr tail))))
198                            ((not (consp tail))
199                             nil)
200                          (check-cycle (car tail) (cons tail seen) (1+ depth))))
201                     (check-cycle (car slow) (cons slow seen) (1+ depth))
202                     (when (eq fast slow)
203                       (return t)))))
204          (circularp x (list x) 0))))
205
206 ;;; Is X a (possibly-improper) list of at least N elements?
207 (declaim (ftype (function (t index)) list-of-length-at-least-p))
208 (defun list-of-length-at-least-p (x n)
209   (or (zerop n) ; since anything can be considered an improper list of length 0
210       (and (consp x)
211            (list-of-length-at-least-p (cdr x) (1- n)))))
212
213 (declaim (inline singleton-p))
214 (defun singleton-p (list)
215   (and (consp list)
216        (null (rest list))))
217
218 ;;; Is X is a positive prime integer?
219 (defun positive-primep (x)
220   ;; This happens to be called only from one place in sbcl-0.7.0, and
221   ;; only for fixnums, we can limit it to fixnums for efficiency. (And
222   ;; if we didn't limit it to fixnums, we should use a cleverer
223   ;; algorithm, since this one scales pretty badly for huge X.)
224   (declare (fixnum x))
225   (if (<= x 5)
226       (and (>= x 2) (/= x 4))
227       (and (not (evenp x))
228            (not (zerop (rem x 3)))
229            (do ((q 6)
230                 (r 1)
231                 (inc 2 (logxor inc 6)) ;; 2,4,2,4...
232                 (d 5 (+ d inc)))
233                ((or (= r 0) (> d q)) (/= r 0))
234              (declare (fixnum inc))
235              (multiple-value-setq (q r) (truncate x d))))))
236
237 ;;; Could this object contain other objects? (This is important to
238 ;;; the implementation of things like *PRINT-CIRCLE* and the dumper.)
239 (defun compound-object-p (x)
240   (or (consp x)
241       (%instancep x)
242       (typep x '(array t *))))
243 \f
244 ;;;; the COLLECT macro
245 ;;;;
246 ;;;; comment from CMU CL: "the ultimate collection macro..."
247
248 ;;; helper functions for COLLECT, which become the expanders of the
249 ;;; MACROLET definitions created by COLLECT
250 ;;;
251 ;;; COLLECT-NORMAL-EXPANDER handles normal collection macros.
252 ;;;
253 ;;; COLLECT-LIST-EXPANDER handles the list collection case. N-TAIL
254 ;;; is the pointer to the current tail of the list, or NIL if the list
255 ;;; is empty.
256 (eval-when (#-sb-xc :compile-toplevel :load-toplevel :execute)
257   (defun collect-normal-expander (n-value fun forms)
258     `(progn
259        ,@(mapcar (lambda (form) `(setq ,n-value (,fun ,form ,n-value))) forms)
260        ,n-value))
261   (defun collect-list-expander (n-value n-tail forms)
262     (let ((n-res (gensym)))
263       `(progn
264          ,@(mapcar (lambda (form)
265                      `(let ((,n-res (cons ,form nil)))
266                         (cond (,n-tail
267                                (setf (cdr ,n-tail) ,n-res)
268                                (setq ,n-tail ,n-res))
269                               (t
270                                (setq ,n-tail ,n-res  ,n-value ,n-res)))))
271                    forms)
272          ,n-value))))
273
274 ;;; Collect some values somehow. Each of the collections specifies a
275 ;;; bunch of things which collected during the evaluation of the body
276 ;;; of the form. The name of the collection is used to define a local
277 ;;; macro, a la MACROLET. Within the body, this macro will evaluate
278 ;;; each of its arguments and collect the result, returning the
279 ;;; current value after the collection is done. The body is evaluated
280 ;;; as a PROGN; to get the final values when you are done, just call
281 ;;; the collection macro with no arguments.
282 ;;;
283 ;;; INITIAL-VALUE is the value that the collection starts out with,
284 ;;; which defaults to NIL. FUNCTION is the function which does the
285 ;;; collection. It is a function which will accept two arguments: the
286 ;;; value to be collected and the current collection. The result of
287 ;;; the function is made the new value for the collection. As a
288 ;;; totally magical special-case, FUNCTION may be COLLECT, which tells
289 ;;; us to build a list in forward order; this is the default. If an
290 ;;; INITIAL-VALUE is supplied for COLLECT, the stuff will be RPLACD'd
291 ;;; onto the end. Note that FUNCTION may be anything that can appear
292 ;;; in the functional position, including macros and lambdas.
293 (defmacro collect (collections &body body)
294   (let ((macros ())
295         (binds ()))
296     (dolist (spec collections)
297       (unless (proper-list-of-length-p spec 1 3)
298         (error "malformed collection specifier: ~S" spec))
299       (let* ((name (first spec))
300              (default (second spec))
301              (kind (or (third spec) 'collect))
302              (n-value (gensym (concatenate 'string
303                                            (symbol-name name)
304                                            "-N-VALUE-"))))
305         (push `(,n-value ,default) binds)
306         (if (eq kind 'collect)
307           (let ((n-tail (gensym (concatenate 'string
308                                              (symbol-name name)
309                                              "-N-TAIL-"))))
310             (if default
311               (push `(,n-tail (last ,n-value)) binds)
312               (push n-tail binds))
313             (push `(,name (&rest args)
314                      (collect-list-expander ',n-value ',n-tail args))
315                   macros))
316           (push `(,name (&rest args)
317                    (collect-normal-expander ',n-value ',kind args))
318                 macros))))
319     `(macrolet ,macros (let* ,(nreverse binds) ,@body))))
320 \f
321 ;;;; some old-fashioned functions. (They're not just for old-fashioned
322 ;;;; code, they're also used as optimized forms of the corresponding
323 ;;;; general functions when the compiler can prove that they're
324 ;;;; equivalent.)
325
326 ;;; like (MEMBER ITEM LIST :TEST #'EQ)
327 (defun memq (item list)
328   #!+sb-doc
329   "Return tail of LIST beginning with first element EQ to ITEM."
330   ;; KLUDGE: These could be and probably should be defined as
331   ;;   (MEMBER ITEM LIST :TEST #'EQ)),
332   ;; but when I try to cross-compile that, I get an error from
333   ;; LTN-ANALYZE-KNOWN-CALL, "Recursive known function definition". The
334   ;; comments for that error say it "is probably a botched interpreter stub".
335   ;; Rather than try to figure that out, I just rewrote this function from
336   ;; scratch. -- WHN 19990512
337   (do ((i list (cdr i)))
338       ((null i))
339     (when (eq (car i) item)
340       (return i))))
341
342 ;;; like (ASSOC ITEM ALIST :TEST #'EQ):
343 ;;;   Return the first pair of ALIST where ITEM is EQ to the key of
344 ;;;   the pair.
345 (defun assq (item alist)
346   ;; KLUDGE: CMU CL defined this with
347   ;;   (DECLARE (INLINE ASSOC))
348   ;;   (ASSOC ITEM ALIST :TEST #'EQ))
349   ;; which is pretty, but which would have required adding awkward
350   ;; build order constraints on SBCL (or figuring out some way to make
351   ;; inline definitions installable at build-the-cross-compiler time,
352   ;; which was too ambitious for now). Rather than mess with that, we
353   ;; just define ASSQ explicitly in terms of more primitive
354   ;; operations:
355   (dolist (pair alist)
356     ;; though it may look more natural to write this as
357     ;;   (AND PAIR (EQ (CAR PAIR) ITEM))
358     ;; the temptation to do so should be resisted, as pointed out by PFD
359     ;; sbcl-devel 2003-08-16, as NIL elements are rare in association
360     ;; lists.  -- CSR, 2003-08-16
361     (when (and (eq (car pair) item) (not (null pair)))
362       (return pair))))
363
364 ;;; like (DELETE .. :TEST #'EQ):
365 ;;;   Delete all LIST entries EQ to ITEM (destructively modifying
366 ;;;   LIST), and return the modified LIST.
367 (defun delq (item list)
368   (let ((list list))
369     (do ((x list (cdr x))
370          (splice '()))
371         ((endp x) list)
372       (cond ((eq item (car x))
373              (if (null splice)
374                (setq list (cdr x))
375                (rplacd splice (cdr x))))
376             (t (setq splice x)))))) ; Move splice along to include element.
377
378
379 ;;; like (POSITION .. :TEST #'EQ):
380 ;;;   Return the position of the first element EQ to ITEM.
381 (defun posq (item list)
382   (do ((i list (cdr i))
383        (j 0 (1+ j)))
384       ((null i))
385     (when (eq (car i) item)
386       (return j))))
387
388 (declaim (inline neq))
389 (defun neq (x y)
390   (not (eq x y)))
391
392 ;;; not really an old-fashioned function, but what the calling
393 ;;; convention should've been: like NTH, but with the same argument
394 ;;; order as in all the other indexed dereferencing functions, with
395 ;;; the collection first and the index second
396 (declaim (inline nth-but-with-sane-arg-order))
397 (declaim (ftype (function (list index) t) nth-but-with-sane-arg-order))
398 (defun nth-but-with-sane-arg-order (list index)
399   (nth index list))
400
401 (defun adjust-list (list length initial-element)
402   (let ((old-length (length list)))
403     (cond ((< old-length length)
404            (append list (make-list (- length old-length)
405                                    :initial-element initial-element)))
406           ((> old-length length)
407            (subseq list 0 length))
408           (t list))))
409 \f
410 ;;;; miscellaneous iteration extensions
411
412 ;;; like Scheme's named LET
413 ;;;
414 ;;; (CMU CL called this ITERATE, and commented it as "the ultimate
415 ;;; iteration macro...". I (WHN) found the old name insufficiently
416 ;;; specific to remind me what the macro means, so I renamed it.)
417 (defmacro named-let (name binds &body body)
418   (dolist (x binds)
419     (unless (proper-list-of-length-p x 2)
420       (error "malformed NAMED-LET variable spec: ~S" x)))
421   `(labels ((,name ,(mapcar #'first binds) ,@body))
422      (,name ,@(mapcar #'second binds))))
423
424 (defun filter-dolist-declarations (decls)
425   (mapcar (lambda (decl)
426             `(declare ,@(remove-if
427                          (lambda (clause)
428                            (and (consp clause)
429                                 (or (eq (car clause) 'type)
430                                     (eq (car clause) 'ignore))))
431                          (cdr decl))))
432           decls))
433
434 ;;; just like DOLIST, but with one-dimensional arrays
435 (defmacro dovector ((elt vector &optional result) &body body)
436   (multiple-value-bind (forms decls) (parse-body body :doc-string-allowed nil)
437     (with-unique-names (index length vec)
438       `(let ((,vec ,vector))
439         (declare (type vector ,vec))
440         (do ((,index 0 (1+ ,index))
441              (,length (length ,vec)))
442             ((>= ,index ,length) (let ((,elt nil))
443                                    ,@(filter-dolist-declarations decls)
444                                    ,elt
445                                    ,result))
446           (let ((,elt (aref ,vec ,index)))
447             ,@decls
448             (tagbody
449                ,@forms)))))))
450
451 ;;; Iterate over the entries in a HASH-TABLE, first obtaining the lock
452 ;;; if the table is a synchronized table.
453 (defmacro dohash (((key-var value-var) table &key result locked) &body body)
454   (multiple-value-bind (forms decls) (parse-body body :doc-string-allowed nil)
455     (with-unique-names (gen n-more n-table)
456       (let ((iter-form `(with-hash-table-iterator (,gen ,n-table)
457                          (loop
458                            (multiple-value-bind (,n-more ,key-var ,value-var) (,gen)
459                              ,@decls
460                              (unless ,n-more (return ,result))
461                              ,@forms)))))
462         `(let ((,n-table ,table))
463            ,(if locked
464                 `(with-locked-system-table (,n-table)
465                    ,iter-form)
466                 iter-form))))))
467 \f
468 ;;;; hash cache utility
469
470 (eval-when (:compile-toplevel :load-toplevel :execute)
471   (defvar *profile-hash-cache* nil))
472
473 ;;; a flag for whether it's too early in cold init to use caches so
474 ;;; that we have a better chance of recovering so that we have a
475 ;;; better chance of getting the system running so that we have a
476 ;;; better chance of diagnosing the problem which caused us to use the
477 ;;; caches too early
478 #!+sb-show
479 (defvar *hash-caches-initialized-p*)
480
481 ;;; Define a hash cache that associates some number of argument values
482 ;;; with a result value. The TEST-FUNCTION paired with each ARG-NAME
483 ;;; is used to compare the value for that arg in a cache entry with a
484 ;;; supplied arg. The TEST-FUNCTION must not error when passed NIL as
485 ;;; its first arg, but need not return any particular value.
486 ;;; TEST-FUNCTION may be any thing that can be placed in CAR position.
487 ;;;
488 ;;; This code used to store all the arguments / return values directly
489 ;;; in the cache vector. This was both interrupt- and thread-unsafe, since
490 ;;; it was possible that *-CACHE-ENTER would scribble over a region of the
491 ;;; cache vector which *-CACHE-LOOKUP had only partially processed. Instead
492 ;;; we now store the contents of each cache bucket as a separate array, which
493 ;;; is stored in the appropriate cell in the cache vector. A new bucket array
494 ;;; is created every time *-CACHE-ENTER is called, and the old ones are never
495 ;;; modified. This means that *-CACHE-LOOKUP will always work with a set
496 ;;; of consistent data. The overhead caused by consing new buckets seems to
497 ;;; be insignificant on the grand scale of things. -- JES, 2006-11-02
498 ;;;
499 ;;; NAME is used to define these functions:
500 ;;; <name>-CACHE-LOOKUP Arg*
501 ;;;   See whether there is an entry for the specified ARGs in the
502 ;;;   cache. If not present, the :DEFAULT keyword (default NIL)
503 ;;;   determines the result(s).
504 ;;; <name>-CACHE-ENTER Arg* Value*
505 ;;;   Encache the association of the specified args with VALUE.
506 ;;; <name>-CACHE-CLEAR
507 ;;;   Reinitialize the cache, invalidating all entries and allowing
508 ;;;   the arguments and result values to be GC'd.
509 ;;;
510 ;;; These other keywords are defined:
511 ;;; :HASH-BITS <n>
512 ;;;   The size of the cache as a power of 2.
513 ;;; :HASH-FUNCTION function
514 ;;;   Some thing that can be placed in CAR position which will compute
515 ;;;   a value between 0 and (1- (expt 2 <hash-bits>)).
516 ;;; :VALUES <n>
517 ;;;   the number of return values cached for each function call
518 ;;; :INIT-WRAPPER <name>
519 ;;;   The code for initializing the cache is wrapped in a form with
520 ;;;   the specified name. (:INIT-WRAPPER is set to COLD-INIT-FORMS
521 ;;;   in type system definitions so that caches will be created
522 ;;;   before top level forms run.)
523 (defvar *cache-vector-symbols* nil)
524
525 (defun drop-all-hash-caches ()
526   (dolist (name *cache-vector-symbols*)
527     (set name nil)))
528
529 (defmacro define-hash-cache (name args &key hash-function hash-bits default
530                                   (init-wrapper 'progn)
531                                   (values 1))
532   (let* ((var-name (symbolicate "**" name "-CACHE-VECTOR**"))
533          (probes-name (when *profile-hash-cache*
534                        (symbolicate "**" name "-CACHE-PROBES**")))
535          (misses-name (when *profile-hash-cache*
536                       (symbolicate "**" name "-CACHE-MISSES**")))
537          (nargs (length args))
538          (size (ash 1 hash-bits))
539          (default-values (if (and (consp default) (eq (car default) 'values))
540                              (cdr default)
541                              (list default)))
542          (args-and-values (sb!xc:gensym "ARGS-AND-VALUES"))
543          (args-and-values-size (+ nargs values))
544          (n-index (sb!xc:gensym "INDEX"))
545          (n-cache (sb!xc:gensym "CACHE")))
546     (declare (ignorable probes-name misses-name))
547     (unless (= (length default-values) values)
548       (error "The number of default values ~S differs from :VALUES ~W."
549              default values))
550
551     (collect ((inlines)
552               (forms)
553               (inits)
554               (sets)
555               (tests)
556               (arg-vars)
557               (values-refs)
558               (values-names))
559       (dotimes (i values)
560         (let ((name (sb!xc:gensym "VALUE")))
561           (values-names name)
562           (values-refs `(svref ,args-and-values (+ ,nargs ,i)))
563           (sets `(setf (svref ,args-and-values (+ ,nargs ,i)) ,name))))
564       (let ((n 0))
565         (dolist (arg args)
566           (unless (= (length arg) 2)
567             (error "bad argument spec: ~S" arg))
568           (let ((arg-name (first arg))
569                 (test (second arg)))
570             (arg-vars arg-name)
571             (tests `(,test (svref ,args-and-values ,n) ,arg-name))
572             (sets `(setf (svref ,args-and-values ,n) ,arg-name)))
573           (incf n)))
574
575       (when *profile-hash-cache*
576         (inits `(setq ,probes-name 0))
577         (inits `(setq ,misses-name 0))
578         (forms `(declaim (fixnum ,probes-name ,misses-name))))
579
580       (let ((fun-name (symbolicate name "-CACHE-LOOKUP")))
581         (inlines fun-name)
582         (forms
583          `(defun ,fun-name ,(arg-vars)
584             ,@(when *profile-hash-cache*
585                 `((incf ,probes-name)))
586             (flet ((miss ()
587                      ,@(when *profile-hash-cache*
588                          `((incf ,misses-name)))
589                      (return-from ,fun-name ,default)))
590               (let* ((,n-index (,hash-function ,@(arg-vars)))
591                      (,n-cache (or ,var-name (miss)))
592                      (,args-and-values (svref ,n-cache ,n-index)))
593                 (cond ((and (not (eql 0 ,args-and-values))
594                             ,@(tests))
595                        (values ,@(values-refs)))
596                       (t
597                        (miss))))))))
598
599       (let ((fun-name (symbolicate name "-CACHE-ENTER")))
600         (inlines fun-name)
601         (forms
602          `(defun ,fun-name (,@(arg-vars) ,@(values-names))
603             (let ((,n-index (,hash-function ,@(arg-vars)))
604                   (,n-cache (or ,var-name
605                                 (setq ,var-name (make-array ,size :initial-element 0))))
606                   (,args-and-values (make-array ,args-and-values-size)))
607               ,@(sets)
608               (setf (svref ,n-cache ,n-index) ,args-and-values))
609             (values))))
610
611       (let ((fun-name (symbolicate name "-CACHE-CLEAR")))
612         (forms
613          `(defun ,fun-name ()
614             (setq ,var-name nil))))
615
616       ;; Needed for cold init!
617       (inits `(setq ,var-name nil))
618       #!+sb-show (inits `(setq *hash-caches-initialized-p* t))
619
620       `(progn
621          (pushnew ',var-name *cache-vector-symbols*)
622          (defglobal ,var-name nil)
623          ,@(when *profile-hash-cache*
624              `((defglobal ,probes-name 0)
625                (defglobal ,misses-name 0)))
626          (declaim (type (or null (simple-vector ,size)) ,var-name))
627          #!-sb-fluid (declaim (inline ,@(inlines)))
628          (,init-wrapper ,@(inits))
629          ,@(forms)
630          ',name))))
631
632 ;;; some syntactic sugar for defining a function whose values are
633 ;;; cached by DEFINE-HASH-CACHE
634 (defmacro defun-cached ((name &rest options &key (values 1) default
635                               &allow-other-keys)
636                         args &body body-decls-doc)
637   (let ((default-values (if (and (consp default) (eq (car default) 'values))
638                             (cdr default)
639                             (list default)))
640         (arg-names (mapcar #'car args))
641         (values-names (make-gensym-list values)))
642     (multiple-value-bind (body decls doc) (parse-body body-decls-doc)
643       `(progn
644         (define-hash-cache ,name ,args ,@options)
645         (defun ,name ,arg-names
646           ,@decls
647           ,doc
648           (cond #!+sb-show
649                 ((not (boundp '*hash-caches-initialized-p*))
650                  ;; This shouldn't happen, but it did happen to me
651                  ;; when revising the type system, and it's a lot
652                  ;; easier to figure out what what's going on with
653                  ;; that kind of problem if the system can be kept
654                  ;; alive until cold boot is complete. The recovery
655                  ;; mechanism should definitely be conditional on some
656                  ;; debugging feature (e.g. SB-SHOW) because it's big,
657                  ;; duplicating all the BODY code. -- WHN
658                  (/show0 ,name " too early in cold init, uncached")
659                  (/show0 ,(first arg-names) "=..")
660                  (/hexstr ,(first arg-names))
661                  ,@body)
662                 (t
663                  (multiple-value-bind ,values-names
664                      (,(symbolicate name "-CACHE-LOOKUP") ,@arg-names)
665                    (if (and ,@(mapcar (lambda (val def)
666                                         `(eq ,val ,def))
667                                       values-names default-values))
668                        (multiple-value-bind ,values-names
669                            (progn ,@body)
670                          (,(symbolicate name "-CACHE-ENTER") ,@arg-names
671                            ,@values-names)
672                          (values ,@values-names))
673                        (values ,@values-names))))))))))
674
675 (defmacro define-cached-synonym
676     (name &optional (original (symbolicate "%" name)))
677   (let ((cached-name (symbolicate "%%" name "-CACHED")))
678     `(progn
679        (defun-cached (,cached-name :hash-bits 8
680                                    :hash-function (lambda (x)
681                                                     (logand (sxhash x) #xff)))
682            ((args equal))
683          (apply #',original args))
684        (defun ,name (&rest args)
685          (,cached-name args)))))
686
687 ;;; FIXME: maybe not the best place
688 ;;;
689 ;;; FIXME: think of a better name -- not only does this not have the
690 ;;; CAR recursion of EQUAL, it also doesn't have the special treatment
691 ;;; of pathnames, bit-vectors and strings.
692 ;;;
693 ;;; KLUDGE: This means that we will no longer cache specifiers of the
694 ;;; form '(INTEGER (0) 4).  This is probably not a disaster.
695 ;;;
696 ;;; A helper function for the type system, which is the main user of
697 ;;; these caches: we must be more conservative than EQUAL for some of
698 ;;; our equality tests, because MEMBER and friends refer to EQLity.
699 ;;; So:
700 (defun equal-but-no-car-recursion (x y)
701   (cond
702     ((eql x y) t)
703     ((consp x)
704      (and (consp y)
705           (eql (car x) (car y))
706           (equal-but-no-car-recursion (cdr x) (cdr y))))
707     (t nil)))
708 \f
709 ;;;; package idioms
710
711 ;;; Note: Almost always you want to use FIND-UNDELETED-PACKAGE-OR-LOSE
712 ;;; instead of this function. (The distinction only actually matters when
713 ;;; PACKAGE-DESIGNATOR is actually a deleted package, and in that case
714 ;;; you generally do want to signal an error instead of proceeding.)
715 (defun %find-package-or-lose (package-designator)
716   (or (find-package package-designator)
717       (error 'sb!kernel:simple-package-error
718              :package package-designator
719              :format-control "The name ~S does not designate any package."
720              :format-arguments (list package-designator))))
721
722 ;;; ANSI specifies (in the section for FIND-PACKAGE) that the
723 ;;; consequences of most operations on deleted packages are
724 ;;; unspecified. We try to signal errors in such cases.
725 (defun find-undeleted-package-or-lose (package-designator)
726   (let ((maybe-result (%find-package-or-lose package-designator)))
727     (if (package-name maybe-result)     ; if not deleted
728         maybe-result
729         (error 'sb!kernel:simple-package-error
730                :package maybe-result
731                :format-control "The package ~S has been deleted."
732                :format-arguments (list maybe-result)))))
733 \f
734 ;;;; various operations on names
735
736 ;;; Is NAME a legal function name?
737 (declaim (inline legal-fun-name-p))
738 (defun legal-fun-name-p (name)
739   (values (valid-function-name-p name)))
740
741 (deftype function-name () '(satisfies legal-fun-name-p))
742
743 ;;; Signal an error unless NAME is a legal function name.
744 (defun legal-fun-name-or-type-error (name)
745   (unless (legal-fun-name-p name)
746     (error 'simple-type-error
747            :datum name
748            :expected-type 'function-name
749            :format-control "invalid function name: ~S"
750            :format-arguments (list name))))
751
752 ;;; Given a function name, return the symbol embedded in it.
753 ;;;
754 ;;; The ordinary use for this operator (and the motivation for the
755 ;;; name of this operator) is to convert from a function name to the
756 ;;; name of the BLOCK which encloses its body.
757 ;;;
758 ;;; Occasionally the operator is useful elsewhere, where the operator
759 ;;; name is less mnemonic. (Maybe it should be changed?)
760 (declaim (ftype (function ((or symbol cons)) symbol) fun-name-block-name))
761 (defun fun-name-block-name (fun-name)
762   (cond ((symbolp fun-name)
763          fun-name)
764         ((consp fun-name)
765          (multiple-value-bind (legalp block-name)
766              (valid-function-name-p fun-name)
767            (if legalp
768                block-name
769                (error "not legal as a function name: ~S" fun-name))))
770         (t
771          (error "not legal as a function name: ~S" fun-name))))
772
773 (defun looks-like-name-of-special-var-p (x)
774   (and (symbolp x)
775        (let ((name (symbol-name x)))
776          (and (> (length name) 2) ; to exclude '* and '**
777               (char= #\* (aref name 0))
778               (char= #\* (aref name (1- (length name))))))))
779
780 ;;; If COLD-FSET occurs not at top level, just treat it as an ordinary
781 ;;; assignment instead of doing cold static linking. That way things like
782 ;;;   (FLET ((FROB (X) ..))
783 ;;;     (DEFUN FOO (X Y) (FROB X) ..)
784 ;;;     (DEFUN BAR (Z) (AND (FROB X) ..)))
785 ;;; can still "work" for cold init: they don't do magical static
786 ;;; linking the way that true toplevel DEFUNs do, but at least they do
787 ;;; the linking eventually, so as long as #'FOO and #'BAR aren't
788 ;;; needed until "cold toplevel forms" have executed, it's OK.
789 (defmacro cold-fset (name lambda)
790   (style-warn
791    "~@<COLD-FSET ~S not cross-compiled at top level: demoting to ~
792 (SETF FDEFINITION)~:@>"
793    name)
794   ;; We convert the LAMBDA expression to the corresponding NAMED-LAMBDA
795   ;; expression so that the compiler can use NAME in debug names etc.
796   (destructuring-bind (lambda-symbol &rest lambda-rest) lambda
797     (assert (eql lambda-symbol 'lambda)) ; else dunno how to do conversion
798     `(setf (fdefinition ',name)
799            (named-lambda ,name ,@lambda-rest))))
800 \f
801 ;;;; ONCE-ONLY
802 ;;;;
803 ;;;; "The macro ONCE-ONLY has been around for a long time on various
804 ;;;; systems [..] if you can understand how to write and when to use
805 ;;;; ONCE-ONLY, then you truly understand macro." -- Peter Norvig,
806 ;;;; _Paradigms of Artificial Intelligence Programming: Case Studies
807 ;;;; in Common Lisp_, p. 853
808
809 ;;; ONCE-ONLY is a utility useful in writing source transforms and
810 ;;; macros. It provides a concise way to wrap a LET around some code
811 ;;; to ensure that some forms are only evaluated once.
812 ;;;
813 ;;; Create a LET* which evaluates each value expression, binding a
814 ;;; temporary variable to the result, and wrapping the LET* around the
815 ;;; result of the evaluation of BODY. Within the body, each VAR is
816 ;;; bound to the corresponding temporary variable.
817 (defmacro once-only (specs &body body)
818   (named-let frob ((specs specs)
819                    (body body))
820     (if (null specs)
821         `(progn ,@body)
822         (let ((spec (first specs)))
823           ;; FIXME: should just be DESTRUCTURING-BIND of SPEC
824           (unless (proper-list-of-length-p spec 2)
825             (error "malformed ONCE-ONLY binding spec: ~S" spec))
826           (let* ((name (first spec))
827                  (exp-temp (gensym "ONCE-ONLY")))
828             `(let ((,exp-temp ,(second spec))
829                    (,name (gensym ,(symbol-name name))))
830                `(let ((,,name ,,exp-temp))
831                   ,,(frob (rest specs) body))))))))
832 \f
833 ;;;; various error-checking utilities
834
835 ;;; This function can be used as the default value for keyword
836 ;;; arguments that must be always be supplied. Since it is known by
837 ;;; the compiler to never return, it will avoid any compile-time type
838 ;;; warnings that would result from a default value inconsistent with
839 ;;; the declared type. When this function is called, it signals an
840 ;;; error indicating that a required &KEY argument was not supplied.
841 ;;; This function is also useful for DEFSTRUCT slot defaults
842 ;;; corresponding to required arguments.
843 (declaim (ftype (function () nil) missing-arg))
844 (defun missing-arg ()
845   #!+sb-doc
846   (/show0 "entering MISSING-ARG")
847   (error "A required &KEY or &OPTIONAL argument was not supplied."))
848
849 ;;; like CL:ASSERT and CL:CHECK-TYPE, but lighter-weight
850 ;;;
851 ;;; (As of sbcl-0.6.11.20, we were using some 400 calls to CL:ASSERT.
852 ;;; The CL:ASSERT restarts and whatnot expand into a significant
853 ;;; amount of code when you multiply them by 400, so replacing them
854 ;;; with this should reduce the size of the system by enough to be
855 ;;; worthwhile. ENFORCE-TYPE is much less common, but might still be
856 ;;; worthwhile, and since I don't really like CERROR stuff deep in the
857 ;;; guts of complex systems anyway, I replaced it too.)
858 (defmacro aver (expr)
859   `(unless ,expr
860      (%failed-aver ',expr)))
861
862 (defun %failed-aver (expr)
863   ;; hackish way to tell we're in a cold sbcl and output the
864   ;; message before signalling error, as it may be this is too
865   ;; early in the cold init.
866   (when (find-package "SB!C")
867     (fresh-line)
868     (write-line "failed AVER:")
869     (write expr)
870     (terpri))
871   (bug "~@<failed AVER: ~2I~_~A~:>" expr))
872
873 (defun bug (format-control &rest format-arguments)
874   (error 'bug
875          :format-control format-control
876          :format-arguments format-arguments))
877
878 (defmacro enforce-type (value type)
879   (once-only ((value value))
880     `(unless (typep ,value ',type)
881        (%failed-enforce-type ,value ',type))))
882
883 (defun %failed-enforce-type (value type)
884   ;; maybe should be TYPE-BUG, subclass of BUG?  If it is changed,
885   ;; check uses of it in user-facing code (e.g. WARN)
886   (error 'simple-type-error
887          :datum value
888          :expected-type type
889          :format-control "~@<~S ~_is not a ~_~S~:>"
890          :format-arguments (list value type)))
891 \f
892 ;;; Return a function like FUN, but expecting its (two) arguments in
893 ;;; the opposite order that FUN does.
894 (declaim (inline swapped-args-fun))
895 (defun swapped-args-fun (fun)
896   (declare (type function fun))
897   (lambda (x y)
898     (funcall fun y x)))
899
900 ;;; Return the numeric value of a type bound, i.e. an interval bound
901 ;;; more or less in the format of bounds in ANSI's type specifiers,
902 ;;; where a bare numeric value is a closed bound and a list of a
903 ;;; single numeric value is an open bound.
904 ;;;
905 ;;; The "more or less" bit is that the no-bound-at-all case is
906 ;;; represented by NIL (not by * as in ANSI type specifiers); and in
907 ;;; this case we return NIL.
908 (defun type-bound-number (x)
909   (if (consp x)
910       (destructuring-bind (result) x result)
911       x))
912
913 ;;; some commonly-occuring CONSTANTLY forms
914 (macrolet ((def-constantly-fun (name constant-expr)
915              `(setf (symbol-function ',name)
916                     (constantly ,constant-expr))))
917   (def-constantly-fun constantly-t t)
918   (def-constantly-fun constantly-nil nil)
919   (def-constantly-fun constantly-0 0))
920
921 ;;; If X is a symbol, see whether it is present in *FEATURES*. Also
922 ;;; handle arbitrary combinations of atoms using NOT, AND, OR.
923 (defun featurep (x)
924   (typecase x
925     (cons
926      (case (car x)
927        ((:not not)
928         (cond
929           ((cddr x)
930            (error "too many subexpressions in feature expression: ~S" x))
931           ((null (cdr x))
932            (error "too few subexpressions in feature expression: ~S" x))
933           (t (not (featurep (cadr x))))))
934        ((:and and) (every #'featurep (cdr x)))
935        ((:or or) (some #'featurep (cdr x)))
936        (t
937         (error "unknown operator in feature expression: ~S." x))))
938     (symbol (not (null (memq x *features*))))
939     (t
940       (error "invalid feature expression: ~S" x))))
941
942 \f
943 ;;;; utilities for two-VALUES predicates
944
945 (defmacro not/type (x)
946   (let ((val (gensym "VAL"))
947         (win (gensym "WIN")))
948     `(multiple-value-bind (,val ,win)
949          ,x
950        (if ,win
951            (values (not ,val) t)
952            (values nil nil)))))
953
954 (defmacro and/type (x y)
955   `(multiple-value-bind (val1 win1) ,x
956      (if (and (not val1) win1)
957          (values nil t)
958          (multiple-value-bind (val2 win2) ,y
959            (if (and val1 val2)
960                (values t t)
961                (values nil (and win2 (not val2))))))))
962
963 ;;; sort of like ANY and EVERY, except:
964 ;;;   * We handle two-VALUES predicate functions, as SUBTYPEP does.
965 ;;;     (And if the result is uncertain, then we return (VALUES NIL NIL),
966 ;;;     as SUBTYPEP does.)
967 ;;;   * THING is just an atom, and we apply OP (an arity-2 function)
968 ;;;     successively to THING and each element of LIST.
969 (defun any/type (op thing list)
970   (declare (type function op))
971   (let ((certain? t))
972     (dolist (i list (values nil certain?))
973       (multiple-value-bind (sub-value sub-certain?) (funcall op thing i)
974         (if sub-certain?
975             (when sub-value (return (values t t)))
976             (setf certain? nil))))))
977 (defun every/type (op thing list)
978   (declare (type function op))
979   (let ((certain? t))
980     (dolist (i list (if certain? (values t t) (values nil nil)))
981       (multiple-value-bind (sub-value sub-certain?) (funcall op thing i)
982         (if sub-certain?
983             (unless sub-value (return (values nil t)))
984             (setf certain? nil))))))
985 \f
986 ;;;; DEFPRINTER
987
988 ;;; These functions are called by the expansion of the DEFPRINTER
989 ;;; macro to do the actual printing.
990 (declaim (ftype (function (symbol t stream) (values))
991                 defprinter-prin1 defprinter-princ))
992 (defun defprinter-prin1 (name value stream)
993   (defprinter-prinx #'prin1 name value stream))
994 (defun defprinter-princ (name value stream)
995   (defprinter-prinx #'princ name value stream))
996 (defun defprinter-prinx (prinx name value stream)
997   (declare (type function prinx))
998   (when *print-pretty*
999     (pprint-newline :linear stream))
1000   (format stream ":~A " name)
1001   (funcall prinx value stream)
1002   (values))
1003 (defun defprinter-print-space (stream)
1004   (write-char #\space stream))
1005
1006 ;;; Define some kind of reasonable PRINT-OBJECT method for a
1007 ;;; STRUCTURE-OBJECT class.
1008 ;;;
1009 ;;; NAME is the name of the structure class, and CONC-NAME is the same
1010 ;;; as in DEFSTRUCT.
1011 ;;;
1012 ;;; The SLOT-DESCS describe how each slot should be printed. Each
1013 ;;; SLOT-DESC can be a slot name, indicating that the slot should
1014 ;;; simply be printed. A SLOT-DESC may also be a list of a slot name
1015 ;;; and other stuff. The other stuff is composed of keywords followed
1016 ;;; by expressions. The expressions are evaluated with the variable
1017 ;;; which is the slot name bound to the value of the slot. These
1018 ;;; keywords are defined:
1019 ;;;
1020 ;;; :PRIN1    Print the value of the expression instead of the slot value.
1021 ;;; :PRINC    Like :PRIN1, only PRINC the value
1022 ;;; :TEST     Only print something if the test is true.
1023 ;;;
1024 ;;; If no printing thing is specified then the slot value is printed
1025 ;;; as if by PRIN1.
1026 ;;;
1027 ;;; The structure being printed is bound to STRUCTURE and the stream
1028 ;;; is bound to STREAM.
1029 (defmacro defprinter ((name
1030                        &key
1031                        (conc-name (concatenate 'simple-string
1032                                                (symbol-name name)
1033                                                "-"))
1034                        identity)
1035                       &rest slot-descs)
1036   (let ((first? t)
1037         maybe-print-space
1038         (reversed-prints nil)
1039         (stream (sb!xc:gensym "STREAM")))
1040     (flet ((sref (slot-name)
1041              `(,(symbolicate conc-name slot-name) structure)))
1042       (dolist (slot-desc slot-descs)
1043         (if first?
1044             (setf maybe-print-space nil
1045                   first? nil)
1046             (setf maybe-print-space `(defprinter-print-space ,stream)))
1047         (cond ((atom slot-desc)
1048                (push maybe-print-space reversed-prints)
1049                (push `(defprinter-prin1 ',slot-desc ,(sref slot-desc) ,stream)
1050                      reversed-prints))
1051               (t
1052                (let ((sname (first slot-desc))
1053                      (test t))
1054                  (collect ((stuff))
1055                    (do ((option (rest slot-desc) (cddr option)))
1056                        ((null option)
1057                         (push `(let ((,sname ,(sref sname)))
1058                                  (when ,test
1059                                    ,maybe-print-space
1060                                    ,@(or (stuff)
1061                                          `((defprinter-prin1
1062                                              ',sname ,sname ,stream)))))
1063                               reversed-prints))
1064                      (case (first option)
1065                        (:prin1
1066                         (stuff `(defprinter-prin1
1067                                   ',sname ,(second option) ,stream)))
1068                        (:princ
1069                         (stuff `(defprinter-princ
1070                                   ',sname ,(second option) ,stream)))
1071                        (:test (setq test (second option)))
1072                        (t
1073                         (error "bad option: ~S" (first option)))))))))))
1074     `(def!method print-object ((structure ,name) ,stream)
1075        (pprint-logical-block (,stream nil)
1076          (print-unreadable-object (structure
1077                                    ,stream
1078                                    :type t
1079                                    :identity ,identity)
1080            ,@(nreverse reversed-prints))))))
1081 \f
1082 ;;;; etc.
1083
1084 ;;; Given a pathname, return a corresponding physical pathname.
1085 (defun physicalize-pathname (possibly-logical-pathname)
1086   (if (typep possibly-logical-pathname 'logical-pathname)
1087       (translate-logical-pathname possibly-logical-pathname)
1088       possibly-logical-pathname))
1089
1090 ;;;; Deprecating stuff
1091
1092 (defun normalize-deprecation-replacements (replacements)
1093   (if (or (not (listp replacements))
1094           (eq 'setf (car replacements)))
1095       (list replacements)
1096       replacements))
1097
1098 (defun deprecation-error (since name replacements)
1099   (error 'deprecation-error
1100           :name name
1101           :replacements (normalize-deprecation-replacements replacements)
1102           :since since))
1103
1104 (defun deprecation-warning (state since name replacements
1105                             &key (runtime-error (neq :early state)))
1106   (warn (ecase state
1107           (:early 'early-deprecation-warning)
1108           (:late 'late-deprecation-warning)
1109           (:final 'final-deprecation-warning))
1110         :name name
1111         :replacements (normalize-deprecation-replacements replacements)
1112         :since since
1113         :runtime-error runtime-error))
1114
1115 (defun deprecated-function (since name replacements)
1116   (lambda (&rest deprecated-function-args)
1117     (declare (ignore deprecated-function-args))
1118     (deprecation-error since name replacements)))
1119
1120 (defun deprecation-compiler-macro (state since name replacements)
1121   (lambda (form env)
1122     (declare (ignore env))
1123     (deprecation-warning state since name replacements)
1124     form))
1125
1126 ;;; STATE is one of
1127 ;;;
1128 ;;;   :EARLY, for a compile-time style-warning.
1129 ;;;   :LATE, for a compile-time full warning.
1130 ;;;   :FINAL, for a compile-time full warning and runtime error.
1131 ;;;
1132 ;;; Suggested duration of each stage is one year, but some things can move faster,
1133 ;;; and some widely used legacy APIs might need to move slower. Internals we don't
1134 ;;; usually add deprecation notes for, but sometimes an internal API actually has
1135 ;;; several external users, in which case we try to be nice about it.
1136 ;;;
1137 ;;; When you deprecate something, note it here till it is fully gone: makes it
1138 ;;; easier to keep things progressing orderly. Also add the relevant section
1139 ;;; (or update it when deprecation proceeds) in the manual, in
1140 ;;; deprecated.texinfo.
1141 ;;;
1142 ;;; EARLY:
1143 ;;; - SB-THREAD::GET-MUTEX, since 1.0.37.33 (04/2010)               -> Late: 01/2013
1144 ;;;   ^- initially deprecated without compile-time warning, hence the schedule
1145 ;;; - SB-THREAD::SPINLOCK (type), since 1.0.53.11 (08/2011)         -> Late: 08/2012
1146 ;;; - SB-THREAD::MAKE-SPINLOCK, since 1.0.53.11 (08/2011)           -> Late: 08/2012
1147 ;;; - SB-THREAD::WITH-SPINLOCK, since 1.0.53.11 (08/2011)           -> Late: 08/2012
1148 ;;; - SB-THREAD::WITH-RECURSIVE-SPINLOCK, since 1.0.53.11 (08/2011) -> Late: 08/2012
1149 ;;; - SB-THREAD::GET-SPINLOCK, since 1.0.53.11 (08/2011)            -> Late: 08/2012
1150 ;;; - SB-THREAD::RELEASE-SPINLOCK, since 1.0.53.11 (08/2011)        -> Late: 08/2012
1151 ;;; - SB-THREAD::SPINLOCK-VALUE, since 1.0.53.11 (08/2011)          -> Late: 08/2012
1152 ;;; - SB-THREAD::SPINLOCK-NAME, since 1.0.53.11 (08/2011)           -> Late: 08/2012
1153 ;;; - SETF SB-THREAD::SPINLOCK-NAME, since 1.0.53.11 (08/2011)      -> Late: 08/2012
1154 ;;; - SB-C::MERGE-TAIL-CALLS (policy), since 1.0.53.74 (11/2011)    -> Late: 11/2012
1155 ;;; - SB-EXT:QUIT, since 1.0.56.55 (05/2012)                        -> Late: 05/2013
1156 ;;; - SB-UNIX:UNIX-EXIT, since 1.0.56.55 (05/2012)                  -> Late: 05/2013
1157 ;;;
1158 ;;; LATE:
1159 ;;; - SB-SYS:OUTPUT-RAW-BYTES, since 1.0.8.16 (06/2007)                 -> Final: anytime
1160 ;;; - SB-C::STACK-ALLOCATE-DYNAMIC-EXTENT (policy), since 1.0.19.7      -> Final: anytime
1161 ;;; - SB-C::STACK-ALLOCATE-VECTOR (policy), since 1.0.19.7              -> Final: anytime
1162 ;;; - SB-C::STACK-ALLOCATE-VALUE-CELLS (policy), since 1.0.19.7         -> Final: anytime
1163 ;;; - SB-INTROSPECT:FUNCTION-ARGLIST, since 1.0.24.5 (01/2009)          -> Final: anytime
1164 ;;; - SB-THREAD:JOIN-THREAD-ERROR-THREAD, since 1.0.29.17 (06/2009)     -> Final: 09/2012
1165 ;;; - SB-THREAD:INTERRUPT-THREAD-ERROR-THREAD since 1.0.29.17 (06/2009) -> Final: 06/2012
1166
1167 (defmacro define-deprecated-function (state since name replacements lambda-list &body body)
1168   (let* ((replacements (normalize-deprecation-replacements replacements))
1169          (doc (let ((*package* (find-package :keyword)))
1170                 (apply #'format nil
1171                        "~@<~S has been deprecated as of SBCL ~A.~
1172                         ~#[~; Use ~S instead.~; ~
1173                               Use ~S or ~S instead.~:; ~
1174                               Use~@{~#[~; or~] ~S~^,~} instead.~]~@:>"
1175                        name since replacements))))
1176     `(progn
1177        ,(ecase state
1178           ((:early :late)
1179            `(defun ,name ,lambda-list
1180               ,doc
1181               ,@body))
1182           ((:final)
1183            `(progn
1184               (declaim (ftype (function * nil) ,name))
1185               (setf (fdefinition ',name)
1186                     (deprecated-function ',name ',replacements ,since))
1187               (setf (documentation ',name 'function) ,doc))))
1188        (setf (compiler-macro-function ',name)
1189              (deprecation-compiler-macro ,state ,since ',name ',replacements)))))
1190
1191 ;;; Anaphoric macros
1192 (defmacro awhen (test &body body)
1193   `(let ((it ,test))
1194      (when it ,@body)))
1195
1196 (defmacro acond (&rest clauses)
1197   (if (null clauses)
1198       `()
1199       (destructuring-bind ((test &body body) &rest rest) clauses
1200         (once-only ((test test))
1201           `(if ,test
1202                (let ((it ,test)) (declare (ignorable it)),@body)
1203                (acond ,@rest))))))
1204
1205 ;;; (binding* ({(names initial-value [flag])}*) body)
1206 ;;; FLAG may be NIL or :EXIT-IF-NULL
1207 ;;;
1208 ;;; This form unites LET*, MULTIPLE-VALUE-BIND and AWHEN.
1209 (defmacro binding* ((&rest bindings) &body body)
1210   (let ((bindings (reverse bindings)))
1211     (loop with form = `(progn ,@body)
1212           for binding in bindings
1213           do (destructuring-bind (names initial-value &optional flag)
1214                  binding
1215                (multiple-value-bind (names declarations)
1216                    (etypecase names
1217                      (null
1218                       (let ((name (gensym)))
1219                         (values (list name) `((declare (ignorable ,name))))))
1220                      (symbol
1221                       (values (list names) nil))
1222                      (list
1223                       (collect ((new-names) (ignorable))
1224                         (dolist (name names)
1225                           (when (eq name nil)
1226                             (setq name (gensym))
1227                             (ignorable name))
1228                           (new-names name))
1229                         (values (new-names)
1230                                 (when (ignorable)
1231                                   `((declare (ignorable ,@(ignorable)))))))))
1232                  (setq form `(multiple-value-bind ,names
1233                                  ,initial-value
1234                                ,@declarations
1235                                ,(ecase flag
1236                                        ((nil) form)
1237                                        ((:exit-if-null)
1238                                         `(when ,(first names) ,form)))))))
1239           finally (return form))))
1240 \f
1241 ;;; Delayed evaluation
1242 (defmacro delay (form)
1243   `(cons nil (lambda () ,form)))
1244
1245 (defun force (promise)
1246   (cond ((not (consp promise)) promise)
1247         ((car promise) (cdr promise))
1248         (t (setf (car promise) t
1249                  (cdr promise) (funcall (cdr promise))))))
1250
1251 (defun promise-ready-p (promise)
1252   (or (not (consp promise))
1253       (car promise)))
1254 \f
1255 ;;; toplevel helper
1256 (defmacro with-rebound-io-syntax (&body body)
1257   `(%with-rebound-io-syntax (lambda () ,@body)))
1258
1259 (defun %with-rebound-io-syntax (function)
1260   (declare (type function function))
1261   (let ((*package* *package*)
1262         (*print-array* *print-array*)
1263         (*print-base* *print-base*)
1264         (*print-case* *print-case*)
1265         (*print-circle* *print-circle*)
1266         (*print-escape* *print-escape*)
1267         (*print-gensym* *print-gensym*)
1268         (*print-length* *print-length*)
1269         (*print-level* *print-level*)
1270         (*print-lines* *print-lines*)
1271         (*print-miser-width* *print-miser-width*)
1272         (*print-pretty* *print-pretty*)
1273         (*print-radix* *print-radix*)
1274         (*print-readably* *print-readably*)
1275         (*print-right-margin* *print-right-margin*)
1276         (*read-base* *read-base*)
1277         (*read-default-float-format* *read-default-float-format*)
1278         (*read-eval* *read-eval*)
1279         (*read-suppress* *read-suppress*)
1280         (*readtable* *readtable*))
1281     (funcall function)))
1282
1283 ;;; Bind a few "potentially dangerous" printer control variables to
1284 ;;; safe values, respecting current values if possible.
1285 (defmacro with-sane-io-syntax (&body forms)
1286   `(call-with-sane-io-syntax (lambda () ,@forms)))
1287
1288 (defun call-with-sane-io-syntax (function)
1289   (declare (type function function))
1290   (macrolet ((true (sym)
1291                `(and (boundp ',sym) ,sym)))
1292     (let ((*print-readably* nil)
1293           (*print-level* (or (true *print-level*) 6))
1294           (*print-length* (or (true *print-length*) 12)))
1295       (funcall function))))
1296
1297 ;;; Returns a list of members of LIST. Useful for dealing with circular lists.
1298 ;;; For a dotted list returns a secondary value of T -- in which case the
1299 ;;; primary return value does not include the dotted tail.
1300 (defun list-members (list)
1301   (when list
1302     (do ((tail (cdr list) (cdr tail))
1303          (members (list (car list)) (cons (car tail) members)))
1304         ((or (not (consp tail)) (eq tail list))
1305          (values members (not (listp tail)))))))
1306
1307 ;;; Default evaluator mode (interpeter / compiler)
1308
1309 (declaim (type (member :compile #!+sb-eval :interpret) *evaluator-mode*))
1310 (defparameter *evaluator-mode* :compile
1311   #!+sb-doc
1312   "Toggle between different evaluator implementations. If set to :COMPILE,
1313 an implementation of EVAL that calls the compiler will be used. If set
1314 to :INTERPRET, an interpreter will be used.")
1315
1316 ;;; Helper for making the DX closure allocation in macros expanding
1317 ;;; to CALL-WITH-FOO less ugly.
1318 (defmacro dx-flet (functions &body forms)
1319   `(flet ,functions
1320      (declare (#+sb-xc-host dynamic-extent #-sb-xc-host truly-dynamic-extent
1321                ,@(mapcar (lambda (func) `(function ,(car func))) functions)))
1322      ,@forms))
1323
1324 ;;; Another similar one.
1325 (defmacro dx-let (bindings &body forms)
1326   `(let ,bindings
1327      (declare (#+sb-xc-host dynamic-extent #-sb-xc-host truly-dynamic-extent
1328                ,@(mapcar (lambda (bind) (if (consp bind) (car bind) bind))
1329                          bindings)))
1330      ,@forms))
1331
1332 (in-package "SB!KERNEL")
1333
1334 (defun fp-zero-p (x)
1335   (typecase x
1336     (single-float (zerop x))
1337     (double-float (zerop x))
1338     #!+long-float
1339     (long-float (zerop x))
1340     (t nil)))
1341
1342 (defun neg-fp-zero (x)
1343   (etypecase x
1344     (single-float
1345      (if (eql x 0.0f0)
1346          (make-unportable-float :single-float-negative-zero)
1347          0.0f0))
1348     (double-float
1349      (if (eql x 0.0d0)
1350          (make-unportable-float :double-float-negative-zero)
1351          0.0d0))
1352     #!+long-float
1353     (long-float
1354      (if (eql x 0.0l0)
1355          (make-unportable-float :long-float-negative-zero)
1356          0.0l0))))
1357
1358 ;;; Like DEFUN, but replaces &REST with &MORE while hiding that from the
1359 ;;; lambda-list.
1360 (defmacro define-more-fun (name lambda-list &body body)
1361   (let* ((p (position '&rest lambda-list))
1362          (head (subseq lambda-list 0 p))
1363          (tail (subseq lambda-list p))
1364          (more-context (gensym "MORE-CONTEXT"))
1365          (more-count (gensym "MORE-COUNT")))
1366     (aver (= 2 (length tail)))
1367     `(progn
1368        (macrolet ((more-count ()
1369                     `(truly-the index ,',more-count))
1370                   (more-p ()
1371                     `(not (eql 0 ,',more-count)))
1372                   (more-arg (n)
1373                     `(sb!c:%more-arg ,',more-context ,n))
1374                   (do-more ((arg &optional (start 0)) &body body)
1375                     (let ((i (gensym "I")))
1376                       `(do ((,i (the index ,start) (truly-the index (1+ ,i))))
1377                            ((>= ,i (more-count)))
1378                          (declare (index ,i))
1379                          (let ((,arg (sb!c:%more-arg ,',more-context ,i)))
1380                            ,@body)))))
1381          (defun ,name (,@head &more ,more-context ,more-count)
1382            ,@body))
1383        (setf (%simple-fun-arglist #',name) ',lambda-list))))