1 ;;;; lots of basic macros for the target SBCL
3 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
12 (in-package "SB!IMPL")
14 ;;;; ASSERT and CHECK-TYPE
16 ;;; ASSERT is written this way, to call ASSERT-ERROR, because of how
17 ;;; closures are compiled. RESTART-CASE has forms with closures that
18 ;;; the compiler causes to be generated at the top of any function
19 ;;; using RESTART-CASE, regardless of whether they are needed. Thus if
20 ;;; we just wrapped a RESTART-CASE around the call to ERROR, we'd have
21 ;;; to do a significant amount of work at runtime allocating and
22 ;;; deallocating the closures regardless of whether they were ever
25 ;;; ASSERT-ERROR isn't defined until a later file because it uses the
26 ;;; macro RESTART-CASE, which isn't defined until a later file.
27 (defmacro-mundanely assert (test-form &optional places datum &rest arguments)
29 "Signals an error if the value of test-form is nil. Continuing from this
30 error using the CONTINUE restart will allow the user to alter the value of
31 some locations known to SETF, starting over with test-form. Returns NIL."
33 (assert-error ',test-form ',places ,datum ,@arguments)
34 ,@(mapcar (lambda (place)
35 `(setf ,place (assert-prompt ',place ,place)))
38 (defun assert-prompt (name value)
39 (cond ((y-or-n-p "The old value of ~S is ~S.~
40 ~%Do you want to supply a new value? "
42 (format *query-io* "~&Type a form to be evaluated:~%")
43 (flet ((read-it () (eval (read *query-io*))))
44 (if (symbolp name) ;help user debug lexical variables
45 (progv (list name) (list value) (read-it))
49 ;;; CHECK-TYPE is written this way, to call CHECK-TYPE-ERROR, because
50 ;;; of how closures are compiled. RESTART-CASE has forms with closures
51 ;;; that the compiler causes to be generated at the top of any
52 ;;; function using RESTART-CASE, regardless of whether they are
53 ;;; needed. Because it would be nice if CHECK-TYPE were cheap to use,
54 ;;; and some things (e.g., READ-CHAR) can't afford this excessive
55 ;;; consing, we bend backwards a little.
57 ;;; CHECK-TYPE-ERROR isn't defined until a later file because it uses
58 ;;; the macro RESTART-CASE, which isn't defined until a later file.
59 (defmacro-mundanely check-type (place type &optional type-string
62 "Signal a restartable error of type TYPE-ERROR if the value of PLACE
63 is not of the specified type. If an error is signalled and the restart
64 is used to return, this can only return if the STORE-VALUE restart is
65 invoked. In that case it will store into PLACE and start over."
66 ;; Detect a common user-error.
67 (when (and (consp type) (eq 'quote (car type)))
68 (error 'simple-reference-error
69 :format-control "Quoted type specifier in ~S: ~S"
70 :format-arguments (list 'check-type type)
71 :references (list '(:ansi-cl :macro check-type))))
72 ;; KLUDGE: We use a simpler form of expansion if PLACE is just a
73 ;; variable to work around Python's blind spot in type derivation.
74 ;; For more complex places getting the type derived should not
75 ;; matter so much anyhow.
76 (let ((expanded (sb!xc:macroexpand place env)))
77 (if (symbolp expanded)
79 ((typep ,place ',type))
80 (setf ,place (check-type-error ',place ,place ',type ,type-string)))
81 (let ((value (gensym)))
82 `(do ((,value ,place ,place))
83 ((typep ,value ',type))
85 (check-type-error ',place ,value ',type ,type-string)))))))
87 ;;;; DEFINE-SYMBOL-MACRO
89 (defmacro-mundanely define-symbol-macro (name expansion)
90 `(eval-when (:compile-toplevel :load-toplevel :execute)
91 (sb!c::%define-symbol-macro ',name ',expansion (sb!c:source-location))))
93 (defun sb!c::%define-symbol-macro (name expansion source-location)
94 (unless (symbolp name)
95 (error 'simple-type-error :datum name :expected-type 'symbol
96 :format-control "Symbol macro name is not a symbol: ~S."
97 :format-arguments (list name)))
98 (with-single-package-locked-error
99 (:symbol name "defining ~A as a symbol-macro"))
100 (sb!c:with-source-location (source-location)
101 (setf (info :source-location :symbol-macro name) source-location))
102 (let ((kind (info :variable :kind name)))
105 (setf (info :variable :kind name) :macro)
106 (setf (info :variable :macro-expansion name) expansion))
108 (error 'simple-program-error
109 :format-control "Symbol macro name already declared ~A: ~S."
110 :format-arguments (list kind name)))
112 (error 'simple-program-error
113 :format-control "Symbol macro name already defined as a constant: ~S."
114 :format-arguments (list name)))))
117 ;;;; DEFINE-COMPILER-MACRO
119 (defmacro-mundanely define-compiler-macro (name lambda-list &body body)
121 "Define a compiler-macro for NAME."
122 (legal-fun-name-or-type-error name)
123 (when (and (symbolp name) (special-operator-p name))
124 (error 'simple-program-error
125 :format-control "cannot define a compiler-macro for a special operator: ~S"
126 :format-arguments (list name)))
127 (with-unique-names (whole environment)
128 (multiple-value-bind (body local-decs doc)
129 (parse-defmacro lambda-list whole body name 'define-compiler-macro
130 :environment environment)
131 (let ((def `(lambda (,whole ,environment)
134 (debug-name (sb!c::debug-name 'compiler-macro-function name)))
135 `(eval-when (:compile-toplevel :load-toplevel :execute)
136 (sb!c::%define-compiler-macro ',name
142 ;;; FIXME: This will look remarkably similar to those who have already
143 ;;; seen the code for %DEFMACRO in src/code/defmacro.lisp. Various
144 ;;; bits of logic should be shared (notably arglist setting).
147 `(eval-when (,@times)
148 (defun sb!c::%define-compiler-macro
149 (name definition lambda-list doc debug-name)
151 '((declare (ignore lambda-list debug-name))))
152 ;; FIXME: warn about incompatible lambda list with
153 ;; respect to parent function?
154 (setf (sb!xc:compiler-macro-function name) definition)
156 `(setf (%fun-doc definition) doc
157 (%fun-lambda-list definition) lambda-list
158 (%fun-name definition) debug-name))
161 (def (:load-toplevel :execute) #-sb-xc-host t #+sb-xc-host nil)
162 #-sb-xc (def (:compile-toplevel) nil)))
164 ;;;; CASE, TYPECASE, and friends
166 (eval-when (#-sb-xc :compile-toplevel :load-toplevel :execute)
168 (define-condition duplicate-case-key-warning (style-warning)
170 :reader case-warning-key)
171 (case-kind :initarg :case-kind
172 :reader case-warning-case-kind)
173 (occurrences :initarg :occurrences
175 :reader duplicate-case-key-warning-occurrences))
177 (lambda (condition stream)
179 "Duplicate key ~S in ~S form, ~
180 occurring in~{~#[~; and~]~{ the ~:R clause:~%~< ~S~:>~}~^,~}."
181 (case-warning-key condition)
182 (case-warning-case-kind condition)
183 (duplicate-case-key-warning-occurrences condition)))))
185 ;;; CASE-BODY returns code for all the standard "case" macros. NAME is
186 ;;; the macro name, and KEYFORM is the thing to case on. MULTI-P
187 ;;; indicates whether a branch may fire off a list of keys; otherwise,
188 ;;; a key that is a list is interpreted in some way as a single key.
189 ;;; When MULTI-P, TEST is applied to the value of KEYFORM and each key
190 ;;; for a given branch; otherwise, TEST is applied to the value of
191 ;;; KEYFORM and the entire first element, instead of each part, of the
192 ;;; case branch. When ERRORP, no OTHERWISE-CLAUSEs are recognized,
193 ;;; and an ERROR form is generated where control falls off the end
194 ;;; of the ordinary clauses. When PROCEEDP, it is an error to
195 ;;; omit ERRORP, and the ERROR form generated is executed within a
196 ;;; RESTART-CASE allowing KEYFORM to be set and retested.
197 (defun case-body (name keyform cases multi-p test errorp proceedp needcasesp)
198 (unless (or cases (not needcasesp))
199 (warn "no clauses in ~S" name))
200 (let ((keyform-value (gensym))
203 (keys-seen (make-hash-table :test #'eql)))
204 (do* ((cases cases (cdr cases))
205 (case (car cases) (car cases))
206 (case-position 1 (1+ case-position)))
208 (flet ((check-clause (case-keys)
209 (loop for k in case-keys
210 for existing = (gethash k keys-seen)
212 (let ((sb!c::*current-path*
213 (when (boundp 'sb!c::*source-paths*)
214 (or (sb!c::get-source-path case)
215 sb!c::*current-path*))))
216 (warn 'duplicate-case-key-warning
219 :occurrences `(,existing (,case-position (,case)))))))
220 (let ((record (list case-position (list case))))
221 (dolist (k case-keys)
222 (setf (gethash k keys-seen) record)))))
223 (unless (list-of-length-at-least-p case 1)
224 (error "~S -- bad clause in ~S" case name))
225 (destructuring-bind (keyoid &rest forms) case
226 (cond (;; an OTHERWISE-CLAUSE
228 ;; By the way... The old code here tried gave
229 ;; STYLE-WARNINGs for normal-clauses which looked as
230 ;; though they might've been intended to be
231 ;; otherwise-clauses. As Tony Martinez reported on
232 ;; sbcl-devel 2004-11-09 there are sometimes good
233 ;; reasons to write clauses like that; and as I noticed
234 ;; when trying to understand the old code so I could
235 ;; understand his patch, trying to guess which clauses
236 ;; don't have good reasons is fundamentally kind of a
237 ;; mess. SBCL does issue style warnings rather
238 ;; enthusiastically, and I have often justified that by
239 ;; arguing that we're doing that to detect issues which
240 ;; are tedious for programmers to detect for by
241 ;; proofreading (like small typoes in long symbol
242 ;; names, or duplicate function definitions in large
243 ;; files). This doesn't seem to be an issue like that,
244 ;; and I can't think of a comparably good justification
245 ;; for giving STYLE-WARNINGs for legal code here, so
246 ;; now we just hope the programmer knows what he's
247 ;; doing. -- WHN 2004-11-20
248 (and (not errorp) ; possible only in CASE or TYPECASE,
249 ; not in [EC]CASE or [EC]TYPECASE
250 (memq keyoid '(t otherwise))
252 (push `(t nil ,@forms) clauses))
253 ((and multi-p (listp keyoid))
254 (setf keys (append keyoid keys))
255 (check-clause keyoid)
256 (push `((or ,@(mapcar (lambda (key)
257 `(,test ,keyform-value ',key))
264 (check-clause (list keyoid))
265 (push `((,test ,keyform-value ',keyoid)
269 (case-body-aux name keyform keyform-value clauses keys errorp proceedp
270 `(,(if multi-p 'member 'or) ,@keys))))
272 ;;; CASE-BODY-AUX provides the expansion once CASE-BODY has groveled
273 ;;; all the cases. Note: it is not necessary that the resulting code
274 ;;; signal case-failure conditions, but that's what KMP's prototype
275 ;;; code did. We call CASE-BODY-ERROR, because of how closures are
276 ;;; compiled. RESTART-CASE has forms with closures that the compiler
277 ;;; causes to be generated at the top of any function using the case
278 ;;; macros, regardless of whether they are needed.
280 ;;; The CASE-BODY-ERROR function is defined later, when the
281 ;;; RESTART-CASE macro has been defined.
282 (defun case-body-aux (name keyform keyform-value clauses keys
283 errorp proceedp expected-type)
285 (let ((block (gensym))
287 `(let ((,keyform-value ,keyform))
293 (cond ,@(nreverse clauses)
298 ',name ',keyform ,keyform-value
299 ',expected-type ',keys)))
301 `(let ((,keyform-value ,keyform))
302 (declare (ignorable ,keyform-value)) ; e.g. (CASE KEY (T))
306 `((t (case-failure ',name ,keyform-value ',keys))))))))
309 (defmacro-mundanely case (keyform &body cases)
311 "CASE Keyform {({(Key*) | Key} Form*)}*
312 Evaluates the Forms in the first clause with a Key EQL to the value of
313 Keyform. If a singleton key is T then the clause is a default clause."
314 (case-body 'case keyform cases t 'eql nil nil nil))
316 (defmacro-mundanely ccase (keyform &body cases)
318 "CCASE Keyform {({(Key*) | Key} Form*)}*
319 Evaluates the Forms in the first clause with a Key EQL to the value of
320 Keyform. If none of the keys matches then a correctable error is
322 (case-body 'ccase keyform cases t 'eql t t t))
324 (defmacro-mundanely ecase (keyform &body cases)
326 "ECASE Keyform {({(Key*) | Key} Form*)}*
327 Evaluates the Forms in the first clause with a Key EQL to the value of
328 Keyform. If none of the keys matches then an error is signalled."
329 (case-body 'ecase keyform cases t 'eql t nil t))
331 (defmacro-mundanely typecase (keyform &body cases)
333 "TYPECASE Keyform {(Type Form*)}*
334 Evaluates the Forms in the first clause for which TYPEP of Keyform and Type
336 (case-body 'typecase keyform cases nil 'typep nil nil nil))
338 (defmacro-mundanely ctypecase (keyform &body cases)
340 "CTYPECASE Keyform {(Type Form*)}*
341 Evaluates the Forms in the first clause for which TYPEP of Keyform and Type
342 is true. If no form is satisfied then a correctable error is signalled."
343 (case-body 'ctypecase keyform cases nil 'typep t t t))
345 (defmacro-mundanely etypecase (keyform &body cases)
347 "ETYPECASE Keyform {(Type Form*)}*
348 Evaluates the Forms in the first clause for which TYPEP of Keyform and Type
349 is true. If no form is satisfied then an error is signalled."
350 (case-body 'etypecase keyform cases nil 'typep t nil t))
352 ;;;; WITH-FOO i/o-related macros
354 (defmacro-mundanely with-open-stream ((var stream) &body forms-decls)
355 (multiple-value-bind (forms decls)
356 (parse-body forms-decls :doc-string-allowed nil)
357 (let ((abortp (gensym)))
358 `(let ((,var ,stream)
362 (multiple-value-prog1
366 (close ,var :abort ,abortp)))))))
368 (defmacro-mundanely with-open-file ((stream filespec &rest options)
370 `(with-open-stream (,stream (open ,filespec ,@options))
373 (defmacro-mundanely with-input-from-string ((var string &key index start end)
375 (multiple-value-bind (forms decls)
376 (parse-body forms-decls :doc-string-allowed nil)
377 ;; The ONCE-ONLY inhibits compiler note for unreachable code when
379 (once-only ((string string))
382 `(make-string-input-stream ,string ,(or start 0)))
385 (make-string-input-stream ,string
388 (make-string-input-stream ,string
391 `(make-string-input-stream ,string
395 (multiple-value-prog1
400 `((setf ,index (string-input-stream-current ,var)))))))))
402 (defmacro-mundanely with-output-to-string
403 ((var &optional string &key (element-type ''character))
405 (multiple-value-bind (forms decls)
406 (parse-body forms-decls :doc-string-allowed nil)
408 (let ((element-type-var (gensym)))
409 `(let ((,var (make-fill-pointer-output-stream ,string))
410 ;; ELEMENT-TYPE isn't currently used for anything
411 ;; (see FILL-POINTER-OUTPUT-STREAM FIXME in stream.lisp),
412 ;; but it still has to be evaluated for side-effects.
413 (,element-type-var ,element-type))
414 (declare (ignore ,element-type-var))
419 `(let ((,var (make-string-output-stream :element-type ,element-type)))
424 (get-output-stream-string ,var)))))
426 ;;;; miscellaneous macros
428 (defmacro-mundanely nth-value (n form)
430 "Evaluate FORM and return the Nth value (zero based). This involves no
431 consing when N is a trivial constant integer."
432 ;; FIXME: The above is true, if slightly misleading. The
433 ;; MULTIPLE-VALUE-BIND idiom [ as opposed to MULTIPLE-VALUE-CALL
434 ;; (LAMBDA (&REST VALUES) (NTH N VALUES)) ] does indeed not cons at
435 ;; runtime. However, for large N (say N = 200), COMPILE on such a
436 ;; form will take longer than can be described as adequate, as the
437 ;; optional dispatch mechanism for the M-V-B gets increasingly
440 (let ((dummy-list (make-gensym-list n))
441 (keeper (sb!xc:gensym "KEEPER")))
442 `(multiple-value-bind (,@dummy-list ,keeper) ,form
443 (declare (ignore ,@dummy-list))
446 `(case (the fixnum ,n)
447 (0 (nth-value 0 ,form))
448 (1 (nth-value 1 ,form))
449 (2 (nth-value 2 ,form))
450 (t (nth (the fixnum ,n) (multiple-value-list ,form)))))))
452 (defmacro-mundanely declaim (&rest specs)
454 "DECLAIM Declaration*
455 Do a declaration or declarations for the global environment."
456 `(eval-when (:compile-toplevel :load-toplevel :execute)
457 ,@(mapcar (lambda (spec) `(sb!xc:proclaim ',spec))
460 (defmacro-mundanely print-unreadable-object ((object stream &key type identity)
462 "Output OBJECT to STREAM with \"#<\" prefix, \">\" suffix, optionally
463 with object-type prefix and object-identity suffix, and executing the
464 code in BODY to provide possible further output."
465 `(%print-unreadable-object ,object ,stream ,type ,identity
470 (defmacro-mundanely ignore-errors (&rest forms)
472 "Execute FORMS handling ERROR conditions, returning the result of the last
473 form, or (VALUES NIL the-ERROR-that-was-caught) if an ERROR was handled."
474 `(handler-case (progn ,@forms)
475 (error (condition) (values nil condition))))