1.0.11.35: fixed bug 417
[sbcl/simd.git] / src / compiler / ir1-translators.lisp
blobaffa00fc8c45945bda762ce881eb79ffe480081c
1 ;;;; the usual place for DEF-IR1-TRANSLATOR forms (and their
2 ;;;; close personal friends)
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
7 ;;;; This software is derived from the CMU CL system, which was
8 ;;;; written at Carnegie Mellon University and released into the
9 ;;;; public domain. The software is in the public domain and is
10 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
11 ;;;; files for more information.
13 (in-package "SB!C")
15 ;;;; special forms for control
17 (def-ir1-translator progn ((&rest forms) start next result)
18 #!+sb-doc
19 "PROGN form*
21 Evaluates each FORM in order, returning the values of the last form. With no
22 forms, returns NIL."
23 (ir1-convert-progn-body start next result forms))
25 (def-ir1-translator if ((test then &optional else) start next result)
26 #!+sb-doc
27 "IF predicate then [else]
29 If PREDICATE evaluates to false, evaluate THEN and return its values,
30 otherwise evaluate ELSE and return its values. ELSE defaults to NIL."
31 (let* ((pred-ctran (make-ctran))
32 (pred-lvar (make-lvar))
33 (then-ctran (make-ctran))
34 (then-block (ctran-starts-block then-ctran))
35 (else-ctran (make-ctran))
36 (else-block (ctran-starts-block else-ctran))
37 (maybe-instrument *instrument-if-for-code-coverage*)
38 (*instrument-if-for-code-coverage* t)
39 (node (make-if :test pred-lvar
40 :consequent then-block
41 :alternative else-block)))
42 ;; IR1-CONVERT-MAYBE-PREDICATE requires DEST to be CIF, so the
43 ;; order of the following two forms is important
44 (setf (lvar-dest pred-lvar) node)
45 (ir1-convert start pred-ctran pred-lvar test)
46 (link-node-to-previous-ctran node pred-ctran)
48 (let ((start-block (ctran-block pred-ctran)))
49 (setf (block-last start-block) node)
50 (ctran-starts-block next)
52 (link-blocks start-block then-block)
53 (link-blocks start-block else-block))
55 (let ((path (best-sub-source-path test)))
56 (ir1-convert (if (and path maybe-instrument)
57 (let ((*current-path* path))
58 (instrument-coverage then-ctran :then test))
59 then-ctran)
60 next result then)
61 (ir1-convert (if (and path maybe-instrument)
62 (let ((*current-path* path))
63 (instrument-coverage else-ctran :else test))
64 else-ctran)
65 next result else))))
67 ;;; To get even remotely sensible results for branch coverage
68 ;;; tracking, we need good source paths. If the macroexpansions
69 ;;; interfere enough the TEST of the conditional doesn't actually have
70 ;;; an original source location (e.g. (UNLESS FOO ...) -> (IF (NOT
71 ;;; FOO) ...). Look through the form, and try to find some subform
72 ;;; that has one.
73 (defun best-sub-source-path (form)
74 (if (policy *lexenv* (= store-coverage-data 0))
75 nil
76 (labels ((sub (form)
77 (or (get-source-path form)
78 (and (consp form)
79 (some #'sub form)))))
80 (or (sub form)))))
82 ;;;; BLOCK and TAGBODY
84 ;;;; We make an ENTRY node to mark the start and a :ENTRY cleanup to
85 ;;;; mark its extent. When doing GO or RETURN-FROM, we emit an EXIT
86 ;;;; node.
88 ;;; Make a :ENTRY cleanup and emit an ENTRY node, then convert the
89 ;;; body in the modified environment. We make NEXT start a block now,
90 ;;; since if it was done later, the block would be in the wrong
91 ;;; environment.
92 (def-ir1-translator block ((name &rest forms) start next result)
93 #!+sb-doc
94 "BLOCK name form*
96 Evaluate the FORMS as a PROGN. Within the lexical scope of the body,
97 RETURN-FROM can be used to exit the form."
98 (unless (symbolp name)
99 (compiler-error "The block name ~S is not a symbol." name))
100 (start-block start)
101 (ctran-starts-block next)
102 (let* ((dummy (make-ctran))
103 (entry (make-entry))
104 (cleanup (make-cleanup :kind :block
105 :mess-up entry)))
106 (push entry (lambda-entries (lexenv-lambda *lexenv*)))
107 (setf (entry-cleanup entry) cleanup)
108 (link-node-to-previous-ctran entry start)
109 (use-ctran entry dummy)
111 (let* ((env-entry (list entry next result))
112 (*lexenv* (make-lexenv :blocks (list (cons name env-entry))
113 :cleanup cleanup)))
114 (ir1-convert-progn-body dummy next result forms))))
116 (def-ir1-translator return-from ((name &optional value) start next result)
117 #!+sb-doc
118 "RETURN-FROM block-name value-form
120 Evaluate the VALUE-FORM, returning its values from the lexically enclosing
121 block BLOCK-NAME. This is constrained to be used only within the dynamic
122 extent of the block."
123 ;; old comment:
124 ;; We make NEXT start a block just so that it will have a block
125 ;; assigned. People assume that when they pass a ctran into
126 ;; IR1-CONVERT as NEXT, it will have a block when it is done.
127 ;; KLUDGE: Note that this block is basically fictitious. In the code
128 ;; (BLOCK B (RETURN-FROM B) (SETQ X 3))
129 ;; it's the block which answers the question "which block is
130 ;; the (SETQ X 3) in?" when the right answer is that (SETQ X 3) is
131 ;; dead code and so doesn't really have a block at all. The existence
132 ;; of this block, and that way that it doesn't explicitly say
133 ;; "I'm actually nowhere at all" makes some logic (e.g.
134 ;; BLOCK-HOME-LAMBDA-OR-NULL) more obscure, and it might be better
135 ;; to get rid of it, perhaps using a special placeholder value
136 ;; to indicate the orphanedness of the code.
137 (declare (ignore result))
138 (ctran-starts-block next)
139 (let* ((found (or (lexenv-find name blocks)
140 (compiler-error "return for unknown block: ~S" name)))
141 (exit-ctran (second found))
142 (value-ctran (make-ctran))
143 (value-lvar (make-lvar))
144 (entry (first found))
145 (exit (make-exit :entry entry
146 :value value-lvar)))
147 (when (ctran-deleted-p exit-ctran)
148 (throw 'locall-already-let-converted exit-ctran))
149 (push exit (entry-exits entry))
150 (setf (lvar-dest value-lvar) exit)
151 (ir1-convert start value-ctran value-lvar value)
152 (link-node-to-previous-ctran exit value-ctran)
153 (let ((home-lambda (ctran-home-lambda-or-null start)))
154 (when home-lambda
155 (sset-adjoin entry (lambda-calls-or-closes home-lambda))))
156 (use-continuation exit exit-ctran (third found))))
158 ;;; Return a list of the segments of a TAGBODY. Each segment looks
159 ;;; like (<tag> <form>* (go <next tag>)). That is, we break up the
160 ;;; tagbody into segments of non-tag statements, and explicitly
161 ;;; represent the drop-through with a GO. The first segment has a
162 ;;; dummy NIL tag, since it represents code before the first tag. Note
163 ;;; however that NIL may appear as the tag of an inner segment. The
164 ;;; last segment (which may also be the first segment) ends in NIL
165 ;;; rather than a GO.
166 (defun parse-tagbody (body)
167 (declare (list body))
168 (collect ((tags)
169 (segments))
170 (let ((current body))
171 (loop
172 (let ((next-segment (member-if #'atom current)))
173 (unless next-segment
174 (segments `(,@current nil))
175 (return))
176 (let ((tag (car next-segment)))
177 (when (member tag (tags))
178 (compiler-error
179 "The tag ~S appears more than once in a tagbody."
180 tag))
181 (unless (or (symbolp tag) (integerp tag))
182 (compiler-error "~S is not a legal go tag." tag))
183 (tags tag)
184 (segments `(,@(ldiff current next-segment) (go ,tag))))
185 (setq current (rest next-segment))))
186 (mapcar #'cons (cons nil (tags)) (segments)))))
188 ;;; Set up the cleanup, emitting the entry node. Then make a block for
189 ;;; each tag, building up the tag list for LEXENV-TAGS as we go.
190 ;;; Finally, convert each segment with the precomputed Start and Cont
191 ;;; values.
192 (def-ir1-translator tagbody ((&rest statements) start next result)
193 #!+sb-doc
194 "TAGBODY {tag | statement}*
196 Define tags for use with GO. The STATEMENTS are evaluated in order ,skipping
197 TAGS, and NIL is returned. If a statement contains a GO to a defined TAG
198 within the lexical scope of the form, then control is transferred to the next
199 statement following that tag. A TAG must an integer or a symbol. A STATEMENT
200 must be a list. Other objects are illegal within the body."
201 (start-block start)
202 (ctran-starts-block next)
203 (let* ((dummy (make-ctran))
204 (entry (make-entry))
205 (segments (parse-tagbody statements))
206 (cleanup (make-cleanup :kind :tagbody
207 :mess-up entry)))
208 (push entry (lambda-entries (lexenv-lambda *lexenv*)))
209 (setf (entry-cleanup entry) cleanup)
210 (link-node-to-previous-ctran entry start)
211 (use-ctran entry dummy)
213 (collect ((tags)
214 (starts)
215 (ctrans))
216 (starts dummy)
217 (dolist (segment (rest segments))
218 (let* ((tag-ctran (make-ctran))
219 (tag (list (car segment) entry tag-ctran)))
220 (ctrans tag-ctran)
221 (starts tag-ctran)
222 (ctran-starts-block tag-ctran)
223 (tags tag)))
224 (ctrans next)
226 (let ((*lexenv* (make-lexenv :cleanup cleanup :tags (tags))))
227 (mapc (lambda (segment start end)
228 (ir1-convert-progn-body start end
229 (when (eq end next) result)
230 (rest segment)))
231 segments (starts) (ctrans))))))
233 ;;; Emit an EXIT node without any value.
234 (def-ir1-translator go ((tag) start next result)
235 #!+sb-doc
236 "GO tag
238 Transfer control to the named TAG in the lexically enclosing TAGBODY. This is
239 constrained to be used only within the dynamic extent of the TAGBODY."
240 (ctran-starts-block next)
241 (let* ((found (or (lexenv-find tag tags :test #'eql)
242 (compiler-error "attempt to GO to nonexistent tag: ~S"
243 tag)))
244 (entry (first found))
245 (exit (make-exit :entry entry)))
246 (push exit (entry-exits entry))
247 (link-node-to-previous-ctran exit start)
248 (let ((home-lambda (ctran-home-lambda-or-null start)))
249 (when home-lambda
250 (sset-adjoin entry (lambda-calls-or-closes home-lambda))))
251 (use-ctran exit (second found))))
253 ;;;; translators for compiler-magic special forms
255 ;;; This handles EVAL-WHEN in non-top-level forms. (EVAL-WHENs in top
256 ;;; level forms are picked off and handled by PROCESS-TOPLEVEL-FORM,
257 ;;; so that they're never seen at this level.)
259 ;;; ANSI "3.2.3.1 Processing of Top Level Forms" says that processing
260 ;;; of non-top-level EVAL-WHENs is very simple:
261 ;;; EVAL-WHEN forms cause compile-time evaluation only at top level.
262 ;;; Both :COMPILE-TOPLEVEL and :LOAD-TOPLEVEL situation specifications
263 ;;; are ignored for non-top-level forms. For non-top-level forms, an
264 ;;; eval-when specifying the :EXECUTE situation is treated as an
265 ;;; implicit PROGN including the forms in the body of the EVAL-WHEN
266 ;;; form; otherwise, the forms in the body are ignored.
267 (def-ir1-translator eval-when ((situations &rest forms) start next result)
268 #!+sb-doc
269 "EVAL-WHEN (situation*) form*
271 Evaluate the FORMS in the specified SITUATIONS (any of :COMPILE-TOPLEVEL,
272 :LOAD-TOPLEVEL, or :EXECUTE, or (deprecated) COMPILE, LOAD, or EVAL)."
273 (multiple-value-bind (ct lt e) (parse-eval-when-situations situations)
274 (declare (ignore ct lt))
275 (ir1-convert-progn-body start next result (and e forms)))
276 (values))
278 ;;; common logic for MACROLET and SYMBOL-MACROLET
280 ;;; Call DEFINITIONIZE-FUN on each element of DEFINITIONS to find its
281 ;;; in-lexenv representation, stuff the results into *LEXENV*, and
282 ;;; call FUN (with no arguments).
283 (defun %funcall-in-foomacrolet-lexenv (definitionize-fun
284 definitionize-keyword
285 definitions
286 fun)
287 (declare (type function definitionize-fun fun))
288 (declare (type (member :vars :funs) definitionize-keyword))
289 (declare (type list definitions))
290 (unless (= (length definitions)
291 (length (remove-duplicates definitions :key #'first)))
292 (compiler-style-warn "duplicate definitions in ~S" definitions))
293 (let* ((processed-definitions (mapcar definitionize-fun definitions))
294 (*lexenv* (make-lexenv definitionize-keyword processed-definitions)))
295 ;; I wonder how much of an compiler performance penalty this
296 ;; non-constant keyword is.
297 (funcall fun definitionize-keyword processed-definitions)))
299 ;;; Tweak LEXENV to include the DEFINITIONS from a MACROLET, then
300 ;;; call FUN (with no arguments).
302 ;;; This is split off from the IR1 convert method so that it can be
303 ;;; shared by the special-case top level MACROLET processing code, and
304 ;;; further split so that the special-case MACROLET processing code in
305 ;;; EVAL can likewise make use of it.
306 (defun macrolet-definitionize-fun (context lexenv)
307 (flet ((fail (control &rest args)
308 (ecase context
309 (:compile (apply #'compiler-error control args))
310 (:eval (error 'simple-program-error
311 :format-control control
312 :format-arguments args)))))
313 (lambda (definition)
314 (unless (list-of-length-at-least-p definition 2)
315 (fail "The list ~S is too short to be a legal local macro definition."
316 definition))
317 (destructuring-bind (name arglist &body body) definition
318 (unless (symbolp name)
319 (fail "The local macro name ~S is not a symbol." name))
320 (when (fboundp name)
321 (program-assert-symbol-home-package-unlocked
322 context name "binding ~A as a local macro"))
323 (unless (listp arglist)
324 (fail "The local macro argument list ~S is not a list."
325 arglist))
326 (with-unique-names (whole environment)
327 (multiple-value-bind (body local-decls)
328 (parse-defmacro arglist whole body name 'macrolet
329 :environment environment)
330 `(,name macro .
331 ,(compile-in-lexenv
333 `(lambda (,whole ,environment)
334 ,@local-decls
335 ,body)
336 lexenv))))))))
338 (defun funcall-in-macrolet-lexenv (definitions fun context)
339 (%funcall-in-foomacrolet-lexenv
340 (macrolet-definitionize-fun context (make-restricted-lexenv *lexenv*))
341 :funs
342 definitions
343 fun))
345 (def-ir1-translator macrolet ((definitions &rest body) start next result)
346 #!+sb-doc
347 "MACROLET ({(name lambda-list form*)}*) body-form*
349 Evaluate the BODY-FORMS in an environment with the specified local macros
350 defined. Name is the local macro name, LAMBDA-LIST is a DEFMACRO style
351 destructuring lambda list, and the FORMS evaluate to the expansion."
352 (funcall-in-macrolet-lexenv
353 definitions
354 (lambda (&key funs)
355 (declare (ignore funs))
356 (ir1-translate-locally body start next result))
357 :compile))
359 (defun symbol-macrolet-definitionize-fun (context)
360 (flet ((fail (control &rest args)
361 (ecase context
362 (:compile (apply #'compiler-error control args))
363 (:eval (error 'simple-program-error
364 :format-control control
365 :format-arguments args)))))
366 (lambda (definition)
367 (unless (proper-list-of-length-p definition 2)
368 (fail "malformed symbol/expansion pair: ~S" definition))
369 (destructuring-bind (name expansion) definition
370 (unless (symbolp name)
371 (fail "The local symbol macro name ~S is not a symbol." name))
372 (when (or (boundp name) (eq (info :variable :kind name) :macro))
373 (program-assert-symbol-home-package-unlocked
374 context name "binding ~A as a local symbol-macro"))
375 (let ((kind (info :variable :kind name)))
376 (when (member kind '(:special :constant))
377 (fail "Attempt to bind a ~(~A~) variable with SYMBOL-MACROLET: ~S"
378 kind name)))
379 ;; A magical cons that MACROEXPAND-1 understands.
380 `(,name . (macro . ,expansion))))))
382 (defun funcall-in-symbol-macrolet-lexenv (definitions fun context)
383 (%funcall-in-foomacrolet-lexenv
384 (symbol-macrolet-definitionize-fun context)
385 :vars
386 definitions
387 fun))
389 (def-ir1-translator symbol-macrolet
390 ((macrobindings &body body) start next result)
391 #!+sb-doc
392 "SYMBOL-MACROLET ({(name expansion)}*) decl* form*
394 Define the NAMES as symbol macros with the given EXPANSIONS. Within the
395 body, references to a NAME will effectively be replaced with the EXPANSION."
396 (funcall-in-symbol-macrolet-lexenv
397 macrobindings
398 (lambda (&key vars)
399 (ir1-translate-locally body start next result :vars vars))
400 :compile))
402 ;;;; %PRIMITIVE
403 ;;;;
404 ;;;; Uses of %PRIMITIVE are either expanded into Lisp code or turned
405 ;;;; into a funny function.
407 ;;; Carefully evaluate a list of forms, returning a list of the results.
408 (defun eval-info-args (args)
409 (declare (list args))
410 (handler-case (mapcar #'eval args)
411 (error (condition)
412 (compiler-error "Lisp error during evaluation of info args:~%~A"
413 condition))))
415 ;;; Convert to the %%PRIMITIVE funny function. The first argument is
416 ;;; the template, the second is a list of the results of any
417 ;;; codegen-info args, and the remaining arguments are the runtime
418 ;;; arguments.
420 ;;; We do various error checking now so that we don't bomb out with
421 ;;; a fatal error during IR2 conversion.
423 ;;; KLUDGE: It's confusing having multiple names floating around for
424 ;;; nearly the same concept: PRIMITIVE, TEMPLATE, VOP. Now that CMU
425 ;;; CL's *PRIMITIVE-TRANSLATORS* stuff is gone, we could call
426 ;;; primitives VOPs, rename TEMPLATE to VOP-TEMPLATE, rename
427 ;;; BACKEND-TEMPLATE-NAMES to BACKEND-VOPS, and rename %PRIMITIVE to
428 ;;; VOP or %VOP.. -- WHN 2001-06-11
429 ;;; FIXME: Look at doing this ^, it doesn't look too hard actually.
430 (def-ir1-translator %primitive ((name &rest args) start next result)
431 (declare (type symbol name))
432 (let* ((template (or (gethash name *backend-template-names*)
433 (bug "undefined primitive ~A" name)))
434 (required (length (template-arg-types template)))
435 (info (template-info-arg-count template))
436 (min (+ required info))
437 (nargs (length args)))
438 (if (template-more-args-type template)
439 (when (< nargs min)
440 (bug "Primitive ~A was called with ~R argument~:P, ~
441 but wants at least ~R."
442 name
443 nargs
444 min))
445 (unless (= nargs min)
446 (bug "Primitive ~A was called with ~R argument~:P, ~
447 but wants exactly ~R."
448 name
449 nargs
450 min)))
452 (when (eq (template-result-types template) :conditional)
453 (bug "%PRIMITIVE was used with a conditional template."))
455 (when (template-more-results-type template)
456 (bug "%PRIMITIVE was used with an unknown values template."))
458 (ir1-convert start next result
459 `(%%primitive ',template
460 ',(eval-info-args
461 (subseq args required min))
462 ,@(subseq args 0 required)
463 ,@(subseq args min)))))
465 ;;;; QUOTE
467 (def-ir1-translator quote ((thing) start next result)
468 #!+sb-doc
469 "QUOTE value
471 Return VALUE without evaluating it."
472 (reference-constant start next result thing))
474 ;;;; FUNCTION and NAMED-LAMBDA
475 (defun name-lambdalike (thing)
476 (ecase (car thing)
477 ((named-lambda)
478 (second thing))
479 ((lambda instance-lambda)
480 `(lambda ,(second thing)))
481 ((lambda-with-lexenv)
482 `(lambda ,(fifth thing)))))
484 (defun fun-name-leaf (thing)
485 (if (consp thing)
486 (cond
487 ((member (car thing)
488 '(lambda named-lambda instance-lambda lambda-with-lexenv))
489 (values (ir1-convert-lambdalike
490 thing
491 :debug-name (name-lambdalike thing))
493 ((legal-fun-name-p thing)
494 (values (find-lexically-apparent-fun
495 thing "as the argument to FUNCTION")
496 nil))
498 (compiler-error "~S is not a legal function name." thing)))
499 (values (find-lexically-apparent-fun
500 thing "as the argument to FUNCTION")
501 nil)))
503 (def-ir1-translator %%allocate-closures ((&rest leaves) start next result)
504 (aver (eq result 'nil))
505 (let ((lambdas leaves))
506 (ir1-convert start next result `(%allocate-closures ',lambdas))
507 (let ((allocator (node-dest (ctran-next start))))
508 (dolist (lambda lambdas)
509 (setf (functional-allocator lambda) allocator)))))
511 (defmacro with-fun-name-leaf ((leaf thing start &key global) &body body)
512 `(multiple-value-bind (,leaf allocate-p)
513 (if ,global
514 (find-global-fun ,thing t)
515 (fun-name-leaf ,thing))
516 (if allocate-p
517 (let ((.new-start. (make-ctran)))
518 (ir1-convert ,start .new-start. nil `(%%allocate-closures ,leaf))
519 (let ((,start .new-start.))
520 ,@body))
521 (locally
522 ,@body))))
524 (def-ir1-translator function ((thing) start next result)
525 #!+sb-doc
526 "FUNCTION name
528 Return the lexically apparent definition of the function NAME. NAME may also
529 be a lambda expression."
530 (with-fun-name-leaf (leaf thing start)
531 (reference-leaf start next result leaf)))
533 ;;; Like FUNCTION, but ignores local definitions and inline
534 ;;; expansions, and doesn't nag about undefined functions.
535 ;;; Used for optimizing things like (FUNCALL 'FOO).
536 (def-ir1-translator global-function ((thing) start next result)
537 (with-fun-name-leaf (leaf thing start :global t)
538 (reference-leaf start next result leaf)))
540 (defun constant-global-fun-name (thing)
541 (let ((constantp (sb!xc:constantp thing)))
542 (and constantp
543 (let ((name (constant-form-value thing)))
544 (and (legal-fun-name-p name) name)))))
546 ;;;; FUNCALL
548 ;;; FUNCALL is implemented on %FUNCALL, which can only call functions
549 ;;; (not symbols). %FUNCALL is used directly in some places where the
550 ;;; call should always be open-coded even if FUNCALL is :NOTINLINE.
551 (deftransform funcall ((function &rest args) * *)
552 (let ((arg-names (make-gensym-list (length args))))
553 `(lambda (function ,@arg-names)
554 (%funcall ,(if (csubtypep (lvar-type function)
555 (specifier-type 'function))
556 'function
557 '(%coerce-callable-to-fun function))
558 ,@arg-names))))
560 (def-ir1-translator %funcall ((function &rest args) start next result)
561 (cond ((and (consp function) (eq (car function) 'function))
562 (with-fun-name-leaf (leaf (second function) start)
563 (ir1-convert start next result `(,leaf ,@args))))
564 ((and (consp function) (eq (car function) 'global-function))
565 (with-fun-name-leaf (leaf (second function) start :global t)
566 (ir1-convert start next result `(,leaf ,@args))))
568 (let ((ctran (make-ctran))
569 (fun-lvar (make-lvar)))
570 (ir1-convert start ctran fun-lvar `(the function ,function))
571 (ir1-convert-combination-args fun-lvar ctran next result args)))))
573 ;;; This source transform exists to reduce the amount of work for the
574 ;;; compiler. If the called function is a FUNCTION form, then convert
575 ;;; directly to %FUNCALL, instead of waiting around for type
576 ;;; inference.
577 (define-source-transform funcall (function &rest args)
578 (if (and (consp function) (member (car function) '(function lambda)))
579 `(%funcall ,function ,@args)
580 (let ((name (constant-global-fun-name function)))
581 (if name
582 `(%funcall (global-function ,name) ,@args)
583 (values nil t)))))
585 (deftransform %coerce-callable-to-fun ((thing) (function) *)
586 "optimize away possible call to FDEFINITION at runtime"
587 'thing)
589 (define-source-transform %coerce-callable-to-fun (thing)
590 (if (and (consp thing) (member (car thing) '(function lambda)))
591 thing
592 (values nil t)))
594 ;;;; LET and LET*
595 ;;;;
596 ;;;; (LET and LET* can't be implemented as macros due to the fact that
597 ;;;; any pervasive declarations also affect the evaluation of the
598 ;;;; arguments.)
600 ;;; Given a list of binding specifiers in the style of LET, return:
601 ;;; 1. The list of var structures for the variables bound.
602 ;;; 2. The initial value form for each variable.
604 ;;; The variable names are checked for legality and globally special
605 ;;; variables are marked as such. Context is the name of the form, for
606 ;;; error reporting purposes.
607 (declaim (ftype (function (list symbol) (values list list))
608 extract-let-vars))
609 (defun extract-let-vars (bindings context)
610 (collect ((vars)
611 (vals)
612 (names))
613 (flet ((get-var (name)
614 (varify-lambda-arg name
615 (if (eq context 'let*)
617 (names)))))
618 (dolist (spec bindings)
619 (cond ((atom spec)
620 (let ((var (get-var spec)))
621 (vars var)
622 (names spec)
623 (vals nil)))
625 (unless (proper-list-of-length-p spec 1 2)
626 (compiler-error "The ~S binding spec ~S is malformed."
627 context
628 spec))
629 (let* ((name (first spec))
630 (var (get-var name)))
631 (vars var)
632 (names name)
633 (vals (second spec)))))))
634 (dolist (name (names))
635 (when (eq (info :variable :kind name) :macro)
636 (program-assert-symbol-home-package-unlocked
637 :compile name "lexically binding symbol-macro ~A")))
638 (values (vars) (vals))))
640 (def-ir1-translator let ((bindings &body body) start next result)
641 #!+sb-doc
642 "LET ({(var [value]) | var}*) declaration* form*
644 During evaluation of the FORMS, bind the VARS to the result of evaluating the
645 VALUE forms. The variables are bound in parallel after all of the VALUES forms
646 have been evaluated."
647 (cond ((null bindings)
648 (ir1-translate-locally body start next result))
649 ((listp bindings)
650 (multiple-value-bind (forms decls)
651 (parse-body body :doc-string-allowed nil)
652 (multiple-value-bind (vars values) (extract-let-vars bindings 'let)
653 (binding* ((ctran (make-ctran))
654 (fun-lvar (make-lvar))
655 ((next result)
656 (processing-decls (decls vars nil next result
657 post-binding-lexenv)
658 (let ((fun (ir1-convert-lambda-body
659 forms
660 vars
661 :post-binding-lexenv post-binding-lexenv
662 :debug-name (debug-name 'let bindings))))
663 (reference-leaf start ctran fun-lvar fun))
664 (values next result))))
665 (ir1-convert-combination-args fun-lvar ctran next result values)))))
667 (compiler-error "Malformed LET bindings: ~S." bindings))))
669 (def-ir1-translator let* ((bindings &body body)
670 start next result)
671 #!+sb-doc
672 "LET* ({(var [value]) | var}*) declaration* form*
674 Similar to LET, but the variables are bound sequentially, allowing each VALUE
675 form to reference any of the previous VARS."
676 (if (listp bindings)
677 (multiple-value-bind (forms decls)
678 (parse-body body :doc-string-allowed nil)
679 (multiple-value-bind (vars values) (extract-let-vars bindings 'let*)
680 (processing-decls (decls vars nil next result post-binding-lexenv)
681 (ir1-convert-aux-bindings start
682 next
683 result
684 forms
685 vars
686 values
687 post-binding-lexenv))))
688 (compiler-error "Malformed LET* bindings: ~S." bindings)))
690 ;;; logic shared between IR1 translators for LOCALLY, MACROLET,
691 ;;; and SYMBOL-MACROLET
693 ;;; Note that all these things need to preserve toplevel-formness,
694 ;;; but we don't need to worry about that within an IR1 translator,
695 ;;; since toplevel-formness is picked off by PROCESS-TOPLEVEL-FOO
696 ;;; forms before we hit the IR1 transform level.
697 (defun ir1-translate-locally (body start next result &key vars funs)
698 (declare (type ctran start next) (type (or lvar null) result)
699 (type list body))
700 (multiple-value-bind (forms decls) (parse-body body :doc-string-allowed nil)
701 (processing-decls (decls vars funs next result)
702 (ir1-convert-progn-body start next result forms))))
704 (def-ir1-translator locally ((&body body) start next result)
705 #!+sb-doc
706 "LOCALLY declaration* form*
708 Sequentially evaluate the FORMS in a lexical environment where the
709 DECLARATIONS have effect. If LOCALLY is a top level form, then the FORMS are
710 also processed as top level forms."
711 (ir1-translate-locally body start next result))
713 ;;;; FLET and LABELS
715 ;;; Given a list of local function specifications in the style of
716 ;;; FLET, return lists of the function names and of the lambdas which
717 ;;; are their definitions.
719 ;;; The function names are checked for legality. CONTEXT is the name
720 ;;; of the form, for error reporting.
721 (declaim (ftype (function (list symbol) (values list list)) extract-flet-vars))
722 (defun extract-flet-vars (definitions context)
723 (collect ((names)
724 (defs))
725 (dolist (def definitions)
726 (when (or (atom def) (< (length def) 2))
727 (compiler-error "The ~S definition spec ~S is malformed." context def))
729 (let ((name (first def)))
730 (check-fun-name name)
731 (when (fboundp name)
732 (program-assert-symbol-home-package-unlocked
733 :compile name "binding ~A as a local function"))
734 (names name)
735 (multiple-value-bind (forms decls) (parse-body (cddr def))
736 (defs `(lambda ,(second def)
737 ,@decls
738 (block ,(fun-name-block-name name)
739 . ,forms))))))
740 (values (names) (defs))))
742 (defun ir1-convert-fbindings (start next result funs body)
743 (let ((ctran (make-ctran))
744 (dx-p (find-if #'leaf-dynamic-extent funs)))
745 (when dx-p
746 (ctran-starts-block ctran)
747 (ctran-starts-block next))
748 (ir1-convert start ctran nil `(%%allocate-closures ,@funs))
749 (cond (dx-p
750 (let* ((dummy (make-ctran))
751 (entry (make-entry))
752 (cleanup (make-cleanup :kind :dynamic-extent
753 :mess-up entry
754 :info (list (node-dest
755 (ctran-next start))))))
756 (push entry (lambda-entries (lexenv-lambda *lexenv*)))
757 (setf (entry-cleanup entry) cleanup)
758 (link-node-to-previous-ctran entry ctran)
759 (use-ctran entry dummy)
761 (let ((*lexenv* (make-lexenv :cleanup cleanup)))
762 (ir1-convert-progn-body dummy next result body))))
763 (t (ir1-convert-progn-body ctran next result body)))))
765 (def-ir1-translator flet ((definitions &body body)
766 start next result)
767 #!+sb-doc
768 "FLET ({(name lambda-list declaration* form*)}*) declaration* body-form*
770 Evaluate the BODY-FORMS with local function definitions. The bindings do
771 not enclose the definitions; any use of NAME in the FORMS will refer to the
772 lexically apparent function definition in the enclosing environment."
773 (multiple-value-bind (forms decls)
774 (parse-body body :doc-string-allowed nil)
775 (multiple-value-bind (names defs)
776 (extract-flet-vars definitions 'flet)
777 (let ((fvars (mapcar (lambda (n d)
778 (ir1-convert-lambda d
779 :source-name n
780 :maybe-add-debug-catch t
781 :debug-name (debug-name 'flet n)))
782 names defs)))
783 (processing-decls (decls nil fvars next result)
784 (let ((*lexenv* (make-lexenv :funs (pairlis names fvars))))
785 (ir1-convert-fbindings start next result fvars forms)))))))
787 (def-ir1-translator labels ((definitions &body body) start next result)
788 #!+sb-doc
789 "LABELS ({(name lambda-list declaration* form*)}*) declaration* body-form*
791 Evaluate the BODY-FORMS with local function definitions. The bindings enclose
792 the new definitions, so the defined functions can call themselves or each
793 other."
794 (multiple-value-bind (forms decls) (parse-body body :doc-string-allowed nil)
795 (multiple-value-bind (names defs)
796 (extract-flet-vars definitions 'labels)
797 (let* (;; dummy LABELS functions, to be used as placeholders
798 ;; during construction of real LABELS functions
799 (placeholder-funs (mapcar (lambda (name)
800 (make-functional
801 :%source-name name
802 :%debug-name (debug-name
803 'labels-placeholder
804 name)))
805 names))
806 ;; (like PAIRLIS but guaranteed to preserve ordering:)
807 (placeholder-fenv (mapcar #'cons names placeholder-funs))
808 ;; the real LABELS functions, compiled in a LEXENV which
809 ;; includes the dummy LABELS functions
810 (real-funs
811 (let ((*lexenv* (make-lexenv :funs placeholder-fenv)))
812 (mapcar (lambda (name def)
813 (ir1-convert-lambda def
814 :source-name name
815 :maybe-add-debug-catch t
816 :debug-name (debug-name 'labels name)))
817 names defs))))
819 ;; Modify all the references to the dummy function leaves so
820 ;; that they point to the real function leaves.
821 (loop for real-fun in real-funs and
822 placeholder-cons in placeholder-fenv do
823 (substitute-leaf real-fun (cdr placeholder-cons))
824 (setf (cdr placeholder-cons) real-fun))
826 ;; Voila.
827 (processing-decls (decls nil real-funs next result)
828 (let ((*lexenv* (make-lexenv
829 ;; Use a proper FENV here (not the
830 ;; placeholder used earlier) so that if the
831 ;; lexical environment is used for inline
832 ;; expansion we'll get the right functions.
833 :funs (pairlis names real-funs))))
834 (ir1-convert-fbindings start next result real-funs forms)))))))
837 ;;;; the THE special operator, and friends
839 ;;; A logic shared among THE and TRULY-THE.
840 (defun the-in-policy (type value policy start next result)
841 (let ((type (if (ctype-p type) type
842 (compiler-values-specifier-type type))))
843 (cond ((or (eq type *wild-type*)
844 (eq type *universal-type*)
845 (and (leaf-p value)
846 (values-subtypep (make-single-value-type (leaf-type value))
847 type))
848 (and (sb!xc:constantp value)
849 (ctypep (constant-form-value value)
850 (single-value-type type))))
851 (ir1-convert start next result value))
852 (t (let ((value-ctran (make-ctran))
853 (value-lvar (make-lvar)))
854 (ir1-convert start value-ctran value-lvar value)
855 (let ((cast (make-cast value-lvar type policy)))
856 (link-node-to-previous-ctran cast value-ctran)
857 (setf (lvar-dest value-lvar) cast)
858 (use-continuation cast next result)))))))
860 ;;; Assert that FORM evaluates to the specified type (which may be a
861 ;;; VALUES type). TYPE may be a type specifier or (as a hack) a CTYPE.
862 (def-ir1-translator the ((type value) start next result)
863 (the-in-policy type value (lexenv-policy *lexenv*) start next result))
865 ;;; This is like the THE special form, except that it believes
866 ;;; whatever you tell it. It will never generate a type check, but
867 ;;; will cause a warning if the compiler can prove the assertion is
868 ;;; wrong.
869 (def-ir1-translator truly-the ((type value) start next result)
870 #!+sb-doc
872 #-nil
873 (let ((type (coerce-to-values (compiler-values-specifier-type type)))
874 (old (when result (find-uses result))))
875 (ir1-convert start next result value)
876 (when result
877 (do-uses (use result)
878 (unless (memq use old)
879 (derive-node-type use type)))))
880 #+nil
881 (the-in-policy type value '((type-check . 0)) start cont))
883 ;;;; SETQ
885 ;;; If there is a definition in LEXENV-VARS, just set that, otherwise
886 ;;; look at the global information. If the name is for a constant,
887 ;;; then error out.
888 (def-ir1-translator setq ((&whole source &rest things) start next result)
889 (let ((len (length things)))
890 (when (oddp len)
891 (compiler-error "odd number of args to SETQ: ~S" source))
892 (if (= len 2)
893 (let* ((name (first things))
894 (leaf (or (lexenv-find name vars)
895 (find-free-var name))))
896 (etypecase leaf
897 (leaf
898 (when (constant-p leaf)
899 (compiler-error "~S is a constant and thus can't be set." name))
900 (when (lambda-var-p leaf)
901 (let ((home-lambda (ctran-home-lambda-or-null start)))
902 (when home-lambda
903 (sset-adjoin leaf (lambda-calls-or-closes home-lambda))))
904 (when (lambda-var-ignorep leaf)
905 ;; ANSI's definition of "Declaration IGNORE, IGNORABLE"
906 ;; requires that this be a STYLE-WARNING, not a full warning.
907 (compiler-style-warn
908 "~S is being set even though it was declared to be ignored."
909 name)))
910 (setq-var start next result leaf (second things)))
911 (cons
912 (aver (eq (car leaf) 'macro))
913 ;; FIXME: [Free] type declaration. -- APD, 2002-01-26
914 (ir1-convert start next result
915 `(setf ,(cdr leaf) ,(second things))))
916 (heap-alien-info
917 (ir1-convert start next result
918 `(%set-heap-alien ',leaf ,(second things))))))
919 (collect ((sets))
920 (do ((thing things (cddr thing)))
921 ((endp thing)
922 (ir1-convert-progn-body start next result (sets)))
923 (sets `(setq ,(first thing) ,(second thing))))))))
925 ;;; This is kind of like REFERENCE-LEAF, but we generate a SET node.
926 ;;; This should only need to be called in SETQ.
927 (defun setq-var (start next result var value)
928 (declare (type ctran start next) (type (or lvar null) result)
929 (type basic-var var))
930 (let ((dest-ctran (make-ctran))
931 (dest-lvar (make-lvar))
932 (type (or (lexenv-find var type-restrictions)
933 (leaf-type var))))
934 (ir1-convert start dest-ctran dest-lvar `(the ,type ,value))
935 (let ((res (make-set :var var :value dest-lvar)))
936 (setf (lvar-dest dest-lvar) res)
937 (setf (leaf-ever-used var) t)
938 (push res (basic-var-sets var))
939 (link-node-to-previous-ctran res dest-ctran)
940 (use-continuation res next result))))
942 ;;;; CATCH, THROW and UNWIND-PROTECT
944 ;;; We turn THROW into a MULTIPLE-VALUE-CALL of a magical function,
945 ;;; since as as far as IR1 is concerned, it has no interesting
946 ;;; properties other than receiving multiple-values.
947 (def-ir1-translator throw ((tag result) start next result-lvar)
948 #!+sb-doc
949 "THROW tag form
951 Do a non-local exit, return the values of FORM from the CATCH whose tag is EQ
952 to TAG."
953 (ir1-convert start next result-lvar
954 `(multiple-value-call #'%throw ,tag ,result)))
956 ;;; This is a special special form used to instantiate a cleanup as
957 ;;; the current cleanup within the body. KIND is the kind of cleanup
958 ;;; to make, and MESS-UP is a form that does the mess-up action. We
959 ;;; make the MESS-UP be the USE of the MESS-UP form's continuation,
960 ;;; and introduce the cleanup into the lexical environment. We
961 ;;; back-patch the ENTRY-CLEANUP for the current cleanup to be the new
962 ;;; cleanup, since this inner cleanup is the interesting one.
963 (def-ir1-translator %within-cleanup
964 ((kind mess-up &body body) start next result)
965 (let ((dummy (make-ctran))
966 (dummy2 (make-ctran)))
967 (ir1-convert start dummy nil mess-up)
968 (let* ((mess-node (ctran-use dummy))
969 (cleanup (make-cleanup :kind kind
970 :mess-up mess-node))
971 (old-cup (lexenv-cleanup *lexenv*))
972 (*lexenv* (make-lexenv :cleanup cleanup)))
973 (setf (entry-cleanup (cleanup-mess-up old-cup)) cleanup)
974 (ir1-convert dummy dummy2 nil '(%cleanup-point))
975 (ir1-convert-progn-body dummy2 next result body))))
977 ;;; This is a special special form that makes an "escape function"
978 ;;; which returns unknown values from named block. We convert the
979 ;;; function, set its kind to :ESCAPE, and then reference it. The
980 ;;; :ESCAPE kind indicates that this function's purpose is to
981 ;;; represent a non-local control transfer, and that it might not
982 ;;; actually have to be compiled.
984 ;;; Note that environment analysis replaces references to escape
985 ;;; functions with references to the corresponding NLX-INFO structure.
986 (def-ir1-translator %escape-fun ((tag) start next result)
987 (let ((fun (let ((*allow-instrumenting* nil))
988 (ir1-convert-lambda
989 `(lambda ()
990 (return-from ,tag (%unknown-values)))
991 :debug-name (debug-name 'escape-fun tag))))
992 (ctran (make-ctran)))
993 (setf (functional-kind fun) :escape)
994 (ir1-convert start ctran nil `(%%allocate-closures ,fun))
995 (reference-leaf ctran next result fun)))
997 ;;; Yet another special special form. This one looks up a local
998 ;;; function and smashes it to a :CLEANUP function, as well as
999 ;;; referencing it.
1000 (def-ir1-translator %cleanup-fun ((name) start next result)
1001 ;; FIXME: Should this not be :TEST #'EQUAL? What happens to
1002 ;; (SETF FOO) here?
1003 (let ((fun (lexenv-find name funs)))
1004 (aver (lambda-p fun))
1005 (setf (functional-kind fun) :cleanup)
1006 (reference-leaf start next result fun)))
1008 (def-ir1-translator catch ((tag &body body) start next result)
1009 #!+sb-doc
1010 "CATCH tag form*
1012 Evaluate TAG and instantiate it as a catcher while the body forms are
1013 evaluated in an implicit PROGN. If a THROW is done to TAG within the dynamic
1014 scope of the body, then control will be transferred to the end of the body and
1015 the thrown values will be returned."
1016 ;; We represent the possibility of the control transfer by making an
1017 ;; "escape function" that does a lexical exit, and instantiate the
1018 ;; cleanup using %WITHIN-CLEANUP.
1019 (ir1-convert
1020 start next result
1021 (with-unique-names (exit-block)
1022 `(block ,exit-block
1023 (%within-cleanup
1024 :catch (%catch (%escape-fun ,exit-block) ,tag)
1025 ,@body)))))
1027 (def-ir1-translator unwind-protect
1028 ((protected &body cleanup) start next result)
1029 #!+sb-doc
1030 "UNWIND-PROTECT protected cleanup*
1032 Evaluate the form PROTECTED, returning its values. The CLEANUP forms are
1033 evaluated whenever the dynamic scope of the PROTECTED form is exited (either
1034 due to normal completion or a non-local exit such as THROW)."
1035 ;; UNWIND-PROTECT is similar to CATCH, but hairier. We make the
1036 ;; cleanup forms into a local function so that they can be referenced
1037 ;; both in the case where we are unwound and in any local exits. We
1038 ;; use %CLEANUP-FUN on this to indicate that reference by
1039 ;; %UNWIND-PROTECT isn't "real", and thus doesn't cause creation of
1040 ;; an XEP.
1041 (ir1-convert
1042 start next result
1043 (with-unique-names (cleanup-fun drop-thru-tag exit-tag next start count)
1044 `(flet ((,cleanup-fun ()
1045 ,@cleanup
1046 nil))
1047 ;; FIXME: If we ever get DYNAMIC-EXTENT working, then
1048 ;; ,CLEANUP-FUN should probably be declared DYNAMIC-EXTENT,
1049 ;; and something can be done to make %ESCAPE-FUN have
1050 ;; dynamic extent too.
1051 (block ,drop-thru-tag
1052 (multiple-value-bind (,next ,start ,count)
1053 (block ,exit-tag
1054 (%within-cleanup
1055 :unwind-protect
1056 (%unwind-protect (%escape-fun ,exit-tag)
1057 (%cleanup-fun ,cleanup-fun))
1058 (return-from ,drop-thru-tag ,protected)))
1059 (declare (optimize (insert-debug-catch 0)))
1060 (,cleanup-fun)
1061 (%continue-unwind ,next ,start ,count)))))))
1063 ;;;; multiple-value stuff
1065 (def-ir1-translator multiple-value-call ((fun &rest args) start next result)
1066 #!+sb-doc
1067 "MULTIPLE-VALUE-CALL function values-form*
1069 Call FUNCTION, passing all the values of each VALUES-FORM as arguments,
1070 values from the first VALUES-FORM making up the first argument, etc."
1071 (let* ((ctran (make-ctran))
1072 (fun-lvar (make-lvar))
1073 (node (if args
1074 ;; If there are arguments, MULTIPLE-VALUE-CALL
1075 ;; turns into an MV-COMBINATION.
1076 (make-mv-combination fun-lvar)
1077 ;; If there are no arguments, then we convert to a
1078 ;; normal combination, ensuring that a MV-COMBINATION
1079 ;; always has at least one argument. This can be
1080 ;; regarded as an optimization, but it is more
1081 ;; important for simplifying compilation of
1082 ;; MV-COMBINATIONS.
1083 (make-combination fun-lvar))))
1084 (ir1-convert start ctran fun-lvar
1085 (if (and (consp fun) (eq (car fun) 'function))
1087 (let ((name (constant-global-fun-name fun)))
1088 (if name
1089 `(global-function ,name)
1090 `(%coerce-callable-to-fun ,fun)))))
1091 (setf (lvar-dest fun-lvar) node)
1092 (collect ((arg-lvars))
1093 (let ((this-start ctran))
1094 (dolist (arg args)
1095 (let ((this-ctran (make-ctran))
1096 (this-lvar (make-lvar node)))
1097 (ir1-convert this-start this-ctran this-lvar arg)
1098 (setq this-start this-ctran)
1099 (arg-lvars this-lvar)))
1100 (link-node-to-previous-ctran node this-start)
1101 (use-continuation node next result)
1102 (setf (basic-combination-args node) (arg-lvars))))))
1104 (def-ir1-translator multiple-value-prog1
1105 ((values-form &rest forms) start next result)
1106 #!+sb-doc
1107 "MULTIPLE-VALUE-PROG1 values-form form*
1109 Evaluate VALUES-FORM and then the FORMS, but return all the values of
1110 VALUES-FORM."
1111 (let ((dummy (make-ctran)))
1112 (ctran-starts-block dummy)
1113 (ir1-convert start dummy result values-form)
1114 (ir1-convert-progn-body dummy next nil forms)))
1116 ;;;; interface to defining macros
1118 ;;; Old CMUCL comment:
1120 ;;; Return a new source path with any stuff intervening between the
1121 ;;; current path and the first form beginning with NAME stripped
1122 ;;; off. This is used to hide the guts of DEFmumble macros to
1123 ;;; prevent annoying error messages.
1125 ;;; Now that we have implementations of DEFmumble macros in terms of
1126 ;;; EVAL-WHEN, this function is no longer used. However, it might be
1127 ;;; worth figuring out why it was used, and maybe doing analogous
1128 ;;; munging to the functions created in the expanders for the macros.
1129 (defun revert-source-path (name)
1130 (do ((path *current-path* (cdr path)))
1131 ((null path) *current-path*)
1132 (let ((first (first path)))
1133 (when (or (eq first name)
1134 (eq first 'original-source-start))
1135 (return path)))))