1 ;;;; This file contains code which does the translation from Lisp code
2 ;;;; to the first intermediate representation (IR1).
4 ;;;; This software is part of the SBCL system. See the README file for
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.
15 (declaim (special *compiler-error-bailout
*))
17 ;;; *CURRENT-FORM-NUMBER* is used in FIND-SOURCE-PATHS to compute the
18 ;;; form number to associate with a source path. This should be bound
19 ;;; to an initial value of 0 before the processing of each truly
21 (declaim (type index
*current-form-number
*))
22 (defvar *current-form-number
*)
24 ;;; *SOURCE-PATHS* is a hashtable from source code forms to the path
25 ;;; taken through the source to reach the form. This provides a way to
26 ;;; keep track of the location of original source forms, even when
27 ;;; macroexpansions and other arbitary permutations of the code
28 ;;; happen. This table is initialized by calling FIND-SOURCE-PATHS on
29 ;;; the original source.
31 ;;; It is fairly useless to store symbols, characters, or fixnums in
32 ;;; this table, as 42 is EQ to 42 no matter where in the source it
33 ;;; appears. GET-SOURCE-PATH and NOTE-SOURCE-PATH functions should be
34 ;;; always used to access this table.
35 (declaim (hash-table *source-paths
*))
36 (defvar *source-paths
*)
38 (declaim (inline source-form-has-path-p
))
39 (defun source-form-has-path-p (form)
40 (not (typep form
'(or symbol fixnum character
))))
42 (defun get-source-path (form)
43 (when (source-form-has-path-p form
)
44 (gethash form
*source-paths
*)))
46 (defun ensure-source-path (form)
47 (or (get-source-path form
)
48 (cons (simplify-source-path-form form
)
51 (defun simplify-source-path-form (form)
53 (let ((op (car form
)))
54 ;; In the compiler functions can be directly represented
55 ;; by leaves. Having leaves in the source path is pretty
56 ;; hard on the poor user, however, so replace with the
57 ;; source-name when possible.
58 (if (and (leaf-p op
) (leaf-has-source-name-p op
))
59 (cons (leaf-source-name op
) (cdr form
))
63 (defun note-source-path (form &rest arguments
)
64 (when (source-form-has-path-p form
)
65 (setf (gethash form
*source-paths
*)
66 (apply #'list
* 'original-source-start
*current-form-number
* arguments
))))
68 ;;; *CURRENT-COMPONENT* is the COMPONENT structure which we link
69 ;;; blocks into as we generate them. This just serves to glue the
70 ;;; emitted blocks together until local call analysis and flow graph
71 ;;; canonicalization figure out what is really going on. We need to
72 ;;; keep track of all the blocks generated so that we can delete them
73 ;;; if they turn out to be unreachable.
75 ;;; FIXME: It's confusing having one variable named *CURRENT-COMPONENT*
76 ;;; and another named *COMPONENT-BEING-COMPILED*. (In CMU CL they
77 ;;; were called *CURRENT-COMPONENT* and *COMPILE-COMPONENT* respectively,
78 ;;; which was also confusing.)
79 (declaim (type (or component null
) *current-component
*))
80 (defvar *current-component
*)
82 ;;; *CURRENT-PATH* is the source path of the form we are currently
83 ;;; translating. See NODE-SOURCE-PATH in the NODE structure.
84 (declaim (list *current-path
*))
85 (defvar *current-path
*)
87 (defvar *derive-function-types
* nil
88 "Should the compiler assume that function types will never change,
89 so that it can use type information inferred from current definitions
90 to optimize code which uses those definitions? Setting this true
91 gives non-ANSI, early-CMU-CL behavior. It can be useful for improving
92 the efficiency of stable code.")
94 (defvar *fun-names-in-this-file
* nil
)
96 (defvar *post-binding-variable-lexenv
* nil
)
98 ;;;; namespace management utilities
100 (defun fun-lexically-notinline-p (name)
101 (let ((fun (lexenv-find name funs
:test
#'equal
)))
102 ;; a declaration will trump a proclamation
103 (if (and fun
(defined-fun-p fun
))
104 (eq (defined-fun-inlinep fun
) :notinline
)
105 (eq (info :function
:inlinep name
) :notinline
))))
107 ;; This will get redefined in PCL boot.
108 (declaim (notinline maybe-update-info-for-gf
))
109 (defun maybe-update-info-for-gf (name)
110 (declare (ignore name
))
113 (defun maybe-defined-here (name where
)
114 (if (and (eq :defined where
)
115 (member name
*fun-names-in-this-file
* :test
#'equal
))
119 ;;; Return a GLOBAL-VAR structure usable for referencing the global
121 (defun find-global-fun (name latep
)
122 (unless (info :function
:kind name
)
123 (setf (info :function
:kind name
) :function
)
124 (setf (info :function
:where-from name
) :assumed
))
125 (let ((where (info :function
:where-from name
)))
126 (when (and (eq where
:assumed
)
127 ;; In the ordinary target Lisp, it's silly to report
128 ;; undefinedness when the function is defined in the
129 ;; running Lisp. But at cross-compile time, the current
130 ;; definedness of a function is irrelevant to the
131 ;; definedness at runtime, which is what matters.
132 #-sb-xc-host
(not (fboundp name
))
133 ;; LATEP is true when the user has indicated that
134 ;; late-late binding is desired by using eg. a quoted
135 ;; symbol -- in which case it makes little sense to
136 ;; complain about undefined functions.
138 (note-undefined-reference name
:function
))
139 (let ((ftype (info :function
:type name
))
140 (notinline (fun-lexically-notinline-p name
)))
142 :kind
:global-function
144 :type
(if (or (eq where
:declared
)
147 *derive-function-types
*))
149 (specifier-type 'function
))
150 :defined-type
(if (and (not latep
) (not notinline
))
151 (or (maybe-update-info-for-gf name
) ftype
)
152 (specifier-type 'function
))
153 :where-from
(if notinline
155 (maybe-defined-here name where
))))))
157 ;;; Have some DEFINED-FUN-FUNCTIONALS of a *FREE-FUNS* entry become invalid?
160 ;;; This was added to fix bug 138 in SBCL. It is possible for a *FREE-FUNS*
161 ;;; entry to contain a DEFINED-FUN whose DEFINED-FUN-FUNCTIONAL object
162 ;;; contained IR1 stuff (NODEs, BLOCKs...) referring to an already compiled
163 ;;; (aka "dead") component. When this IR1 stuff was reused in a new component,
164 ;;; under further obscure circumstances it could be used by
165 ;;; WITH-IR1-ENVIRONMENT-FROM-NODE to generate a binding for
166 ;;; *CURRENT-COMPONENT*. At that point things got all confused, since IR1
167 ;;; conversion was sending code to a component which had already been compiled
168 ;;; and would never be compiled again.
170 ;;; Note: as of 1.0.24.41 this seems to happen only in XC, and the original
171 ;;; BUGS entry also makes it seem like this might not be an issue at all on
173 (defun clear-invalid-functionals (free-fun)
174 ;; There might be other reasons that *FREE-FUN* entries could
175 ;; become invalid, but the only one we've been bitten by so far
176 ;; (sbcl-0.pre7.118) is this one:
177 (when (defined-fun-p free-fun
)
178 (setf (defined-fun-functionals free-fun
)
179 (delete-if (lambda (functional)
180 (or (eq (functional-kind functional
) :deleted
)
181 (when (lambda-p functional
)
183 ;; (The main reason for this first test is to bail
184 ;; out early in cases where the LAMBDA-COMPONENT
185 ;; call in the second test would fail because links
186 ;; it needs are uninitialized or invalid.)
188 ;; If the BIND node for this LAMBDA is null, then
189 ;; according to the slot comments, the LAMBDA has
190 ;; been deleted or its call has been deleted. In
191 ;; that case, it seems rather questionable to reuse
192 ;; it, and certainly it shouldn't be necessary to
193 ;; reuse it, so we cheerfully declare it invalid.
194 (not (lambda-bind functional
))
195 ;; If this IR1 stuff belongs to a dead component,
196 ;; then we can't reuse it without getting into
197 ;; bizarre confusion.
198 (eq (component-info (lambda-component functional
))
200 (defined-fun-functionals free-fun
)))
203 ;;; If NAME already has a valid entry in *FREE-FUNS*, then return
204 ;;; the value. Otherwise, make a new GLOBAL-VAR using information from
205 ;;; the global environment and enter it in *FREE-FUNS*. If NAME
206 ;;; names a macro or special form, then we error out using the
207 ;;; supplied context which indicates what we were trying to do that
208 ;;; demanded a function.
209 (declaim (ftype (sfunction (t string
) global-var
) find-free-fun
))
210 (defun find-free-fun (name context
)
211 (or (let ((old-free-fun (gethash name
*free-funs
*)))
213 (clear-invalid-functionals old-free-fun
)
215 (ecase (info :function
:kind name
)
216 ;; FIXME: The :MACRO and :SPECIAL-FORM cases could be merged.
218 (compiler-error "The macro name ~S was found ~A." name context
))
220 (compiler-error "The special form name ~S was found ~A."
224 (check-fun-name name
)
225 (note-if-setf-fun-and-macro name
)
226 (let ((expansion (fun-name-inline-expansion name
))
227 (inlinep (info :function
:inlinep name
)))
228 (setf (gethash name
*free-funs
*)
229 (if (or expansion inlinep
)
230 (let ((where (info :function
:where-from name
)))
233 :inline-expansion expansion
235 :where-from
(if (eq inlinep
:notinline
)
237 (maybe-defined-here name where
))
238 :type
(if (and (eq inlinep
:notinline
)
239 (neq where
:declared
))
240 (specifier-type 'function
)
241 (info :function
:type name
))))
242 (find-global-fun name nil
))))))))
244 ;;; Return the LEAF structure for the lexically apparent function
245 ;;; definition of NAME.
246 (declaim (ftype (sfunction (t string
) leaf
) find-lexically-apparent-fun
))
247 (defun find-lexically-apparent-fun (name context
)
248 (let ((var (lexenv-find name funs
:test
#'equal
)))
251 (aver (and (consp var
) (eq (car var
) 'macro
)))
252 (compiler-error "found macro name ~S ~A" name context
))
255 (find-free-fun name context
)))))
257 (defun maybe-find-free-var (name)
258 (gethash name
*free-vars
*))
260 ;;; Return the LEAF node for a global variable reference to NAME. If
261 ;;; NAME is already entered in *FREE-VARS*, then we just return the
262 ;;; corresponding value. Otherwise, we make a new leaf using
263 ;;; information from the global environment and enter it in
264 ;;; *FREE-VARS*. If the variable is unknown, then we emit a warning.
265 (declaim (ftype (sfunction (t) (or leaf cons heap-alien-info
)) find-free-var
))
266 (defun find-free-var (name)
267 (unless (symbolp name
)
268 (compiler-error "Variable name is not a symbol: ~S." name
))
269 (or (gethash name
*free-vars
*)
270 (let ((kind (info :variable
:kind name
))
271 (type (info :variable
:type name
))
272 (where-from (info :variable
:where-from name
)))
273 (when (eq kind
:unknown
)
274 (note-undefined-reference name
:variable
))
275 (setf (gethash name
*free-vars
*)
278 (info :variable
:alien-info name
))
279 ;; FIXME: The return value in this case should really be
280 ;; of type SB!C::LEAF. I don't feel too badly about it,
281 ;; because the MACRO idiom is scattered throughout this
282 ;; file, but it should be cleaned up so we're not
283 ;; throwing random conses around. --njf 2002-03-23
285 (let ((expansion (info :variable
:macro-expansion name
))
286 (type (type-specifier (info :variable
:type name
))))
287 `(macro .
(the ,type
,expansion
))))
289 (let ((value (symbol-value name
)))
290 ;; Override the values of standard symbols in XC,
291 ;; since we can't redefine them.
293 (when (eql (find-symbol (symbol-name name
) :cl
) name
)
294 (multiple-value-bind (xc-value foundp
)
295 (info :variable
:xc-constant-value name
)
297 (setf value xc-value
))
298 ((not (eq value name
))
300 "Using cross-compilation host's definition of ~S: ~A~%"
301 name
(symbol-value name
))))))
302 (find-constant value name
)))
304 (make-global-var :kind kind
307 :where-from where-from
)))))))
309 ;;; Grovel over CONSTANT checking for any sub-parts that need to be
310 ;;; processed with MAKE-LOAD-FORM. We have to be careful, because
311 ;;; CONSTANT might be circular. We also check that the constant (and
312 ;;; any subparts) are dumpable at all.
313 (defun maybe-emit-make-load-forms (constant &optional
(name nil namep
))
314 (let ((xset (alloc-xset)))
315 (labels ((trivialp (value)
318 #-sb-xc-host unboxed-array
319 #+sb-xc-host
(simple-array (unsigned-byte 8) (*))
326 #-sb-xc-host sb
!kernel
:simd-pack
)))
328 ;; Unless VALUE is an object which which obviously
329 ;; can't contain other objects
330 (unless (trivialp value
)
331 (if (xset-member-p value xset
)
332 (return-from grovel nil
)
333 (add-to-xset value xset
))
337 (grovel (cdr value
)))
339 (dotimes (i (length value
))
340 (grovel (svref value i
))))
342 (dotimes (i (length value
))
343 (grovel (aref value i
))))
345 ;; Even though the (ARRAY T) branch does the exact
346 ;; same thing as this branch we do this separately
347 ;; so that the compiler can use faster versions of
348 ;; array-total-size and row-major-aref.
349 (dotimes (i (array-total-size value
))
350 (grovel (row-major-aref value i
))))
352 (dotimes (i (array-total-size value
))
353 (grovel (row-major-aref value i
))))
354 (#+sb-xc-host structure
!object
355 #-sb-xc-host instance
356 ;; In the target SBCL, we can dump any instance, but
357 ;; in the cross-compilation host, %INSTANCE-FOO
358 ;; functions don't work on general instances, only on
359 ;; STRUCTURE!OBJECTs.
361 ;; FIXME: What about funcallable instances with
362 ;; user-defined MAKE-LOAD-FORM methods?
363 (when (emit-make-load-form value
)
364 (dotimes (i (- (%instance-length value
)
366 #-sb-xc-host
(layout-n-untagged-slots
367 (%instance-ref value
0))))
368 (grovel (%instance-ref value i
)))))
371 "Objects of type ~S can't be dumped into fasl files."
372 (type-of value
)))))))
373 ;; Dump all non-trivial named constants using the name.
374 (if (and namep
(not (typep constant
'(or symbol character
375 ;; FIXME: Cold init breaks if we
376 ;; try to reference FP constants
379 #-sb-xc-host fixnum
))))
380 (emit-make-load-form constant name
)
384 ;;;; some flow-graph hacking utilities
386 ;;; This function sets up the back link between the node and the
387 ;;; ctran which continues at it.
388 (defun link-node-to-previous-ctran (node ctran
)
389 (declare (type node node
) (type ctran ctran
))
390 (aver (not (ctran-next ctran
)))
391 (setf (ctran-next ctran
) node
)
392 (setf (node-prev node
) ctran
))
394 ;;; This function is used to set the ctran for a node, and thus
395 ;;; determine what is evaluated next. If the ctran has no block, then
396 ;;; we make it be in the block that the node is in. If the ctran heads
397 ;;; its block, we end our block and link it to that block.
398 #!-sb-fluid
(declaim (inline use-ctran
))
399 (defun use-ctran (node ctran
)
400 (declare (type node node
) (type ctran ctran
))
401 (if (eq (ctran-kind ctran
) :unused
)
402 (let ((node-block (ctran-block (node-prev node
))))
403 (setf (ctran-block ctran
) node-block
)
404 (setf (ctran-kind ctran
) :inside-block
)
405 (setf (ctran-use ctran
) node
)
406 (setf (node-next node
) ctran
))
407 (%use-ctran node ctran
)))
408 (defun %use-ctran
(node ctran
)
409 (declare (type node node
) (type ctran ctran
) (inline member
))
410 (let ((block (ctran-block ctran
))
411 (node-block (ctran-block (node-prev node
))))
412 (aver (eq (ctran-kind ctran
) :block-start
))
413 (when (block-last node-block
)
414 (error "~S has already ended." node-block
))
415 (setf (block-last node-block
) node
)
416 (when (block-succ node-block
)
417 (error "~S already has successors." node-block
))
418 (setf (block-succ node-block
) (list block
))
419 (when (memq node-block
(block-pred block
))
420 (error "~S is already a predecessor of ~S." node-block block
))
421 (push node-block
(block-pred block
))))
423 ;;; Insert NEW before OLD in the flow-graph.
424 (defun insert-node-before (old new
)
425 (let ((prev (node-prev old
))
427 (ensure-block-start prev
)
428 (setf (ctran-next prev
) nil
)
429 (link-node-to-previous-ctran new prev
)
431 (link-node-to-previous-ctran old temp
))
434 ;;; This function is used to set the ctran for a node, and thus
435 ;;; determine what receives the value.
436 (defun use-lvar (node lvar
)
437 (declare (type valued-node node
) (type (or lvar null
) lvar
))
438 (aver (not (node-lvar node
)))
440 (setf (node-lvar node
) lvar
)
441 (cond ((null (lvar-uses lvar
))
442 (setf (lvar-uses lvar
) node
))
443 ((listp (lvar-uses lvar
))
444 (aver (not (memq node
(lvar-uses lvar
))))
445 (push node
(lvar-uses lvar
)))
447 (aver (neq node
(lvar-uses lvar
)))
448 (setf (lvar-uses lvar
) (list node
(lvar-uses lvar
)))))
449 (reoptimize-lvar lvar
)))
451 #!-sb-fluid
(declaim (inline use-continuation
))
452 (defun use-continuation (node ctran lvar
)
453 (use-ctran node ctran
)
454 (use-lvar node lvar
))
456 ;;;; exported functions
458 ;;; This function takes a form and the top level form number for that
459 ;;; form, and returns a lambda representing the translation of that
460 ;;; form in the current global environment. The returned lambda is a
461 ;;; top level lambda that can be called to cause evaluation of the
462 ;;; forms. This lambda is in the initial component. If FOR-VALUE is T,
463 ;;; then the value of the form is returned from the function,
464 ;;; otherwise NIL is returned.
466 ;;; This function may have arbitrary effects on the global environment
467 ;;; due to processing of EVAL-WHENs. All syntax error checking is
468 ;;; done, with erroneous forms being replaced by a proxy which signals
469 ;;; an error if it is evaluated. Warnings about possibly inconsistent
470 ;;; or illegal changes to the global environment will also be given.
472 ;;; We make the initial component and convert the form in a PROGN (and
473 ;;; an optional NIL tacked on the end.) We then return the lambda. We
474 ;;; bind all of our state variables here, rather than relying on the
475 ;;; global value (if any) so that IR1 conversion will be reentrant.
476 ;;; This is necessary for EVAL-WHEN processing, etc.
478 ;;; The hashtables used to hold global namespace info must be
479 ;;; reallocated elsewhere. Note also that *LEXENV* is not bound, so
480 ;;; that local macro definitions can be introduced by enclosing code.
481 (defun ir1-toplevel (form path for-value
&optional
(allow-instrumenting t
))
482 (declare (list path
))
483 (let* ((*current-path
* path
)
484 (component (make-empty-component))
485 (*current-component
* component
)
486 (*allow-instrumenting
* allow-instrumenting
))
487 (setf (component-name component
) 'initial-component
)
488 (setf (component-kind component
) :initial
)
489 (let* ((forms (if for-value
`(,form
) `(,form nil
)))
490 (res (ir1-convert-lambda-body
492 :debug-name
(debug-name 'top-level-form
#+sb-xc-host nil
#-sb-xc-host form
))))
493 (setf (functional-entry-fun res
) res
494 (functional-arg-documentation res
) ()
495 (functional-kind res
) :toplevel
)
498 ;;; This function is called on freshly read forms to record the
499 ;;; initial location of each form (and subform.) Form is the form to
500 ;;; find the paths in, and TLF-NUM is the top level form number of the
501 ;;; truly top level form.
503 ;;; This gets a bit interesting when the source code is circular. This
504 ;;; can (reasonably?) happen in the case of circular list constants.
505 (defun find-source-paths (form tlf-num
)
506 (declare (type index tlf-num
))
507 (let ((*current-form-number
* 0))
508 (sub-find-source-paths form
(list tlf-num
)))
510 (defun sub-find-source-paths (form path
)
511 (unless (get-source-path form
)
512 (note-source-path form path
)
513 (incf *current-form-number
*)
517 (declare (fixnum pos
))
520 (when (atom subform
) (return))
521 (let ((fm (car subform
)))
523 ;; If it's a cons, recurse.
524 (sub-find-source-paths fm
(cons pos path
)))
526 ;; Don't look into quoted constants.
529 ;; Otherwise store the containing form. It's not
530 ;; perfect, but better than nothing.
531 (note-source-path subform pos path
)))
533 (setq subform
(cdr subform
))
534 (when (eq subform trail
) (return)))))
538 (setq trail
(cdr trail
)))))))
540 ;;;; IR1-CONVERT, macroexpansion and special form dispatching
542 (declaim (ftype (sfunction (ctran ctran
(or lvar null
) t
&optional t
)
545 (macrolet (;; Bind *COMPILER-ERROR-BAILOUT* to a function that throws
546 ;; out of the body and converts a condition signalling form
547 ;; instead. The source form is converted to a string since it
548 ;; may contain arbitrary non-externalizable objects.
549 (ir1-error-bailout ((start next result form
) &body body
)
550 (with-unique-names (skip condition
)
552 (let ((,condition
(catch 'ir1-error-abort
553 (let ((*compiler-error-bailout
*
554 (lambda (&optional e
)
555 (throw 'ir1-error-abort e
))))
557 (return-from ,skip nil
)))))
558 (ir1-convert ,start
,next
,result
559 (make-compiler-error-form ,condition
562 ;; Translate FORM into IR1. The code is inserted as the NEXT of the
563 ;; CTRAN START. RESULT is the LVAR which receives the value of the
564 ;; FORM to be translated. The translators call this function
565 ;; recursively to translate their subnodes.
567 ;; As a special hack to make life easier in the compiler, a LEAF
568 ;; IR1-converts into a reference to that LEAF structure. This allows
569 ;; the creation using backquote of forms that contain leaf
570 ;; references, without having to introduce dummy names into the
572 (defun ir1-convert (start next result form
&optional alias
)
573 (ir1-error-bailout (start next result form
)
574 (let* ((*current-path
* (ensure-source-path (or alias form
)))
575 (start (instrument-coverage start nil form
)))
577 (cond ((and (symbolp form
) (not (keywordp form
)))
578 (ir1-convert-var start next result form
))
580 (reference-leaf start next result form
))
582 (reference-constant start next result form
))))
584 (ir1-convert-functoid start next result form
)))))
587 ;; Generate a reference to a manifest constant, creating a new leaf
589 (defun reference-constant (start next result value
)
590 (declare (type ctran start next
)
591 (type (or lvar null
) result
))
592 (ir1-error-bailout (start next result value
)
593 (let* ((leaf (find-constant value
))
594 (res (make-ref leaf
)))
595 (push res
(leaf-refs leaf
))
596 (link-node-to-previous-ctran res start
)
597 (use-continuation res next result
)))
600 ;;; Add FUNCTIONAL to the COMPONENT-REANALYZE-FUNCTIONALS, unless it's
601 ;;; some trivial type for which reanalysis is a trivial no-op, or
602 ;;; unless it doesn't belong in this component at all.
604 ;;; FUNCTIONAL is returned.
605 (defun maybe-reanalyze-functional (functional)
607 (aver (not (eql (functional-kind functional
) :deleted
))) ; bug 148
608 (aver-live-component *current-component
*)
610 ;; When FUNCTIONAL is of a type for which reanalysis isn't a trivial
612 (when (typep functional
'(or optional-dispatch clambda
))
614 ;; When FUNCTIONAL knows its component
615 (when (lambda-p functional
)
616 (aver (eql (lambda-component functional
) *current-component
*)))
619 (component-reanalyze-functionals *current-component
*)))
623 ;;; Generate a REF node for LEAF, frobbing the LEAF structure as
624 ;;; needed. If LEAF represents a defined function which has already
625 ;;; been converted, and is not :NOTINLINE, then reference the
626 ;;; functional instead.
627 (defun reference-leaf (start next result leaf
&optional
(name '.anonymous.
))
628 (declare (type ctran start next
) (type (or lvar null
) result
) (type leaf leaf
))
629 (assure-leaf-live-p leaf
)
630 (let* ((type (lexenv-find leaf type-restrictions
))
631 (leaf (or (and (defined-fun-p leaf
)
632 (not (eq (defined-fun-inlinep leaf
)
634 (let ((functional (defined-fun-functional leaf
)))
635 (when (and functional
(not (functional-kind functional
)))
636 (maybe-reanalyze-functional functional
))))
637 (when (and (lambda-p leaf
)
638 (memq (functional-kind leaf
)
640 (maybe-reanalyze-functional leaf
))
642 (ref (make-ref leaf name
)))
643 (push ref
(leaf-refs leaf
))
644 (setf (leaf-ever-used leaf
) t
)
645 (link-node-to-previous-ctran ref start
)
646 (cond (type (let* ((ref-ctran (make-ctran))
647 (ref-lvar (make-lvar))
648 (cast (make-cast ref-lvar
649 (make-single-value-type type
)
650 (lexenv-policy *lexenv
*))))
651 (setf (lvar-dest ref-lvar
) cast
)
652 (use-continuation ref ref-ctran ref-lvar
)
653 (link-node-to-previous-ctran cast ref-ctran
)
654 (use-continuation cast next result
)))
655 (t (use-continuation ref next result
)))))
657 ;;; Convert a reference to a symbolic constant or variable. If the
658 ;;; symbol is entered in the LEXENV-VARS we use that definition,
659 ;;; otherwise we find the current global definition. This is also
660 ;;; where we pick off symbol macro and alien variable references.
661 (defun ir1-convert-var (start next result name
)
662 (declare (type ctran start next
) (type (or lvar null
) result
) (symbol name
))
663 (let ((var (or (lexenv-find name vars
) (find-free-var name
))))
664 (if (and (global-var-p var
) (not (info :variable
:always-bound name
)))
665 ;; KLUDGE: If the variable may be unbound, convert using SYMBOL-VALUE
666 ;; which is not flushable, so that unbound dead variables signal an
667 ;; error (bug 412, lp#722734): checking for null RESULT is not enough,
668 ;; since variables can become dead due to later optimizations.
669 (ir1-convert start next result
670 (if (eq (global-var-kind var
) :global
)
671 `(symbol-global-value ',name
)
672 `(symbol-value ',name
)))
675 (when (lambda-var-p var
)
676 (let ((home (ctran-home-lambda-or-null start
)))
678 (sset-adjoin var
(lambda-calls-or-closes home
))))
679 (when (lambda-var-ignorep var
)
680 ;; (ANSI's specification for the IGNORE declaration requires
681 ;; that this be a STYLE-WARNING, not a full WARNING.)
683 (compiler-style-warn "reading an ignored variable: ~S" name
)
684 ;; there's no need for us to accept ANSI's lameness when
685 ;; processing our own code, though.
687 (warn "reading an ignored variable: ~S" name
)))
688 (when (global-var-p var
)
689 (check-deprecated-variable name
))
690 (reference-leaf start next result var name
))
692 (aver (eq (car var
) 'macro
))
693 ;; FIXME: [Free] type declarations. -- APD, 2002-01-26
694 (ir1-convert start next result
(cdr var
)))
696 (ir1-convert start next result
`(%heap-alien
',var
))))))
699 ;;; Find a compiler-macro for a form, taking FUNCALL into account.
700 (defun find-compiler-macro (opname form
)
701 (if (eq opname
'funcall
)
702 (let ((fun-form (cadr form
)))
703 (cond ((and (consp fun-form
) (eq 'function
(car fun-form
))
704 (not (cddr fun-form
)))
705 (let ((real-fun (cadr fun-form
)))
706 (if (legal-fun-name-p real-fun
)
707 (values (sb!xc
:compiler-macro-function real-fun
*lexenv
*)
710 ((sb!xc
:constantp fun-form
*lexenv
*)
711 (let ((fun (constant-form-value fun-form
*lexenv
*)))
712 (if (legal-fun-name-p fun
)
713 ;; CLHS tells us that local functions must shadow
714 ;; compiler-macro-functions, but since the call is
715 ;; through a name, we are obviously interested
716 ;; in the global function.
717 (values (sb!xc
:compiler-macro-function fun nil
) fun
)
721 (if (legal-fun-name-p opname
)
722 (values (sb!xc
:compiler-macro-function opname
*lexenv
*) opname
)
725 ;;; Picks of special forms and compiler-macro expansions, and hands
726 ;;; the rest to IR1-CONVERT-COMMON-FUNCTOID
727 (defun ir1-convert-functoid (start next result form
)
728 (let* ((op (car form
))
729 (translator (and (symbolp op
) (info :function
:ir1-convert op
))))
731 (when (sb!xc
:compiler-macro-function op
*lexenv
*)
732 (compiler-warn "ignoring compiler macro for special form"))
733 (funcall translator start next result form
))
735 (multiple-value-bind (cmacro-fun cmacro-fun-name
)
736 (find-compiler-macro op form
)
738 ;; CLHS 3.2.2.1.3 specifies that NOTINLINE
739 ;; suppresses compiler-macros.
740 (not (fun-lexically-notinline-p cmacro-fun-name
)))
741 (let ((res (handler-case
742 (careful-expand-macro cmacro-fun form t
)
743 (compiler-macro-keyword-problem (c)
744 (print-compiler-message *error-output
* "note: ~A" (list c
))
747 (ir1-convert-common-functoid start next result form op
))
749 (unless (policy *lexenv
* (zerop store-xref-data
))
750 (record-call cmacro-fun-name
(ctran-block start
) *current-path
*))
751 (ir1-convert start next result res
))))
752 (ir1-convert-common-functoid start next result form op
)))))))
754 ;;; Handles the "common" cases: any other forms except special forms
755 ;;; and compiler-macros.
756 (defun ir1-convert-common-functoid (start next result form op
)
757 (cond ((or (symbolp op
) (leaf-p op
))
758 (let ((lexical-def (if (leaf-p op
) op
(lexenv-find op funs
))))
759 (typecase lexical-def
761 (ir1-convert-global-functoid start next result form op
))
763 (ir1-convert-local-combination start next result form
766 (ir1-convert-srctran start next result lexical-def form
))
768 (aver (and (consp lexical-def
) (eq (car lexical-def
) 'macro
)))
769 (ir1-convert start next result
770 (careful-expand-macro (cdr lexical-def
) form
))))))
771 ((or (atom op
) (not (eq (car op
) 'lambda
)))
772 (compiler-error "illegal function call"))
774 ;; implicitly (LAMBDA ..) because the LAMBDA expression is
775 ;; the CAR of an executed form.
776 (ir1-convert start next result
`(%funcall
,@form
)))))
778 ;;; Convert anything that looks like a global function call.
779 (defun ir1-convert-global-functoid (start next result form fun
)
780 (declare (type ctran start next
) (type (or lvar null
) result
)
782 ;; FIXME: Couldn't all the INFO calls here be converted into
783 ;; standard CL functions, like MACRO-FUNCTION or something? And what
784 ;; happens with lexically-defined (MACROLET) macros here, anyway?
785 (ecase (info :function
:kind fun
)
787 (ir1-convert start next result
788 (careful-expand-macro (info :function
:macro-function fun
)
790 (unless (policy *lexenv
* (zerop store-xref-data
))
791 (record-macroexpansion fun
(ctran-block start
) *current-path
*)))
793 (ir1-convert-srctran start next result
794 (find-free-fun fun
"shouldn't happen! (no-cmacro)")
797 (defun muffle-warning-or-die ()
799 (bug "no MUFFLE-WARNING restart"))
801 ;;; Expand FORM using the macro whose MACRO-FUNCTION is FUN, trapping
802 ;;; errors which occur during the macroexpansion.
803 (defun careful-expand-macro (fun form
&optional cmacro
)
804 (flet (;; Return a string to use as a prefix in error reporting,
805 ;; telling something about which form caused the problem.
807 (let (;; We rely on the printer to abbreviate FORM.
811 "~@<~A of ~S. Use ~S to intercept.~%~:@>"
813 #-sb-xc-host
"Error during compiler-macroexpansion"
814 #+sb-xc-host
"Error during XC compiler-macroexpansion")
816 #-sb-xc-host
"during macroexpansion"
817 #+sb-xc-host
"during XC macroexpansion"))
819 '*break-on-signals
*))))
820 (handler-bind (;; KLUDGE: CMU CL in its wisdom (version 2.4.6 for Debian
821 ;; Linux, anyway) raises a CL:WARNING condition (not a
822 ;; CL:STYLE-WARNING) for undefined symbols when converting
823 ;; interpreted functions, causing COMPILE-FILE to think the
824 ;; file has a real problem, causing COMPILE-FILE to return
825 ;; FAILURE-P set (not just WARNINGS-P set). Since undefined
826 ;; symbol warnings are often harmless forward references,
827 ;; and since it'd be inordinately painful to try to
828 ;; eliminate all such forward references, these warnings
829 ;; are basically unavoidable. Thus, we need to coerce the
830 ;; system to work through them, and this code does so, by
831 ;; crudely suppressing all warnings in cross-compilation
832 ;; macroexpansion. -- WHN 19990412
833 #+(and cmu sb-xc-host
)
838 ~@<(KLUDGE: That was a non-STYLE WARNING. ~
839 Ordinarily that would cause compilation to ~
840 fail. However, since we're running under ~
841 CMU CL, and since CMU CL emits non-STYLE ~
842 warnings for safe, hard-to-fix things (e.g. ~
843 references to not-yet-defined functions) ~
844 we're going to have to ignore it and ~
845 proceed anyway. Hopefully we're not ~
846 ignoring anything horrible here..)~:@>~:>"
849 (muffle-warning-or-die)))
854 ;; The spec is silent on what we should do. Signaling
855 ;; a full warning but declining to expand seems like
856 ;; a conservative and sane thing to do.
857 (compiler-warn "~@<~A~@:_ ~A~:>" (wherestring) c
)
858 (return-from careful-expand-macro form
))
860 (compiler-error "~@<~A~@:_ ~A~:>"
861 (wherestring) c
))))))
862 (funcall sb
!xc
:*macroexpand-hook
* fun form
*lexenv
*))))
864 ;;;; conversion utilities
866 ;;; Convert a bunch of forms, discarding all the values except the
867 ;;; last. If there aren't any forms, then translate a NIL.
868 (declaim (ftype (sfunction (ctran ctran
(or lvar null
) list
) (values))
869 ir1-convert-progn-body
))
870 (defun ir1-convert-progn-body (start next result body
)
872 (reference-constant start next result nil
)
873 (let ((this-start start
)
876 (let ((form (car forms
)))
878 (maybe-instrument-progn-like this-start forms form
))
879 (when (endp (cdr forms
))
880 (ir1-convert this-start next result form
)
882 (let ((this-ctran (make-ctran)))
883 (ir1-convert this-start this-ctran nil form
)
884 (setq this-start this-ctran
885 forms
(cdr forms
)))))))
891 ;;; Check the policy for whether we should generate code coverage
892 ;;; instrumentation. If not, just return the original START
893 ;;; ctran. Otherwise insert code coverage instrumentation after
894 ;;; START, and return the new ctran.
895 (defun instrument-coverage (start mode form
)
896 ;; We don't actually use FORM for anything, it's just convenient to
897 ;; have around when debugging the instrumentation.
898 (declare (ignore form
))
899 (if (and (policy *lexenv
* (> store-coverage-data
0))
900 *code-coverage-records
*
901 *allow-instrumenting
*)
902 (let ((path (source-path-original-source *current-path
*)))
905 (if (member (ctran-block start
)
906 (gethash path
*code-coverage-blocks
*))
907 ;; If this source path has already been instrumented in
908 ;; this block, don't instrument it again.
911 ;; Get an interned record cons for the path. A cons
912 ;; with the same object identity must be used for
913 ;; each instrument for the same block.
914 (or (gethash path
*code-coverage-records
*)
915 (setf (gethash path
*code-coverage-records
*)
916 (cons path
+code-coverage-unmarked
+))))
918 (*allow-instrumenting
* nil
))
919 (push (ctran-block start
)
920 (gethash path
*code-coverage-blocks
*))
921 (let ((*allow-instrumenting
* nil
))
922 (ir1-convert start next nil
924 (declare (optimize speed
927 (check-constant-modification 0)))
928 ;; We're being naughty here, and
929 ;; modifying constant data. That's ok,
930 ;; we know what we're doing.
931 (%rplacd
',store t
))))
935 ;;; In contexts where we don't have a source location for FORM
936 ;;; e.g. due to it not being a cons, but where we have a source
937 ;;; location for the enclosing cons, use the latter source location if
938 ;;; available. This works pretty well in practice, since many PROGNish
939 ;;; macroexpansions will just directly splice a block of forms into
940 ;;; some enclosing form with `(progn ,@body), thus retaining the
941 ;;; EQness of the conses.
942 (defun maybe-instrument-progn-like (start forms form
)
943 (or (when (and *allow-instrumenting
*
944 (not (get-source-path form
)))
945 (let ((*current-path
* (get-source-path forms
)))
947 (instrument-coverage start nil form
))))
950 (defun record-code-coverage (info cc
)
951 (setf (gethash info
*code-coverage-info
*) cc
))
953 (defun clear-code-coverage ()
954 (clrhash *code-coverage-info
*))
956 (defun reset-code-coverage ()
957 (maphash (lambda (info cc
)
958 (declare (ignore info
))
959 (dolist (cc-entry cc
)
960 (setf (cdr cc-entry
) +code-coverage-unmarked
+)))
961 *code-coverage-info
*))
963 (defun code-coverage-record-marked (record)
964 (aver (consp record
))
966 ((#.
+code-coverage-unmarked
+) nil
)
970 ;;;; converting combinations
972 ;;; Does this form look like something that we should add single-stepping
973 ;;; instrumentation for?
974 (defun step-form-p (form)
975 (flet ((step-symbol-p (symbol)
976 (and (not (member (symbol-package symbol
)
978 ;; KLUDGE: packages we're not interested in
980 (mapcar #'find-package
'(sb!c sb
!int sb
!impl
981 sb
!kernel sb
!pcl
)))))
982 ;; Consistent treatment of *FOO* vs (SYMBOL-VALUE '*FOO*):
983 ;; we insert calls to SYMBOL-VALUE for most non-lexical
984 ;; variable references in order to avoid them being elided
985 ;; if the value is unused.
986 (or (not (member symbol
'(symbol-value symbol-global-value
)))
987 (not (constantp (second form
)))))))
988 (and *allow-instrumenting
*
989 (policy *lexenv
* (= insert-step-conditions
3))
992 (step-symbol-p (car form
)))))
994 ;;; Convert a function call where the function FUN is a LEAF. FORM is
995 ;;; the source for the call. We return the COMBINATION node so that
996 ;;; the caller can poke at it if it wants to.
997 (declaim (ftype (sfunction (ctran ctran
(or lvar null
) list leaf
) combination
)
998 ir1-convert-combination
))
999 (defun ir1-convert-combination (start next result form fun
)
1000 (let ((ctran (make-ctran))
1001 (fun-lvar (make-lvar)))
1002 (ir1-convert start ctran fun-lvar
`(the (or function symbol
) ,fun
))
1004 (ir1-convert-combination-args fun-lvar ctran next result
1006 (when (step-form-p form
)
1007 ;; Store a string representation of the form in the
1008 ;; combination node. This will let the IR2 translator know
1009 ;; that we want stepper instrumentation for this node. The
1010 ;; string will be stored in the debug-info by DUMP-1-LOCATION.
1011 (setf (combination-step-info combination
)
1012 (let ((*print-pretty
* t
)
1014 (*print-readably
* nil
))
1015 (prin1-to-string form
))))
1018 ;;; Convert the arguments to a call and make the COMBINATION
1019 ;;; node. FUN-LVAR yields the function to call. ARGS is the list of
1020 ;;; arguments for the call, which defaults to the cdr of source. We
1021 ;;; return the COMBINATION node.
1022 (defun ir1-convert-combination-args (fun-lvar start next result args
)
1023 (declare (type ctran start next
)
1024 (type lvar fun-lvar
)
1025 (type (or lvar null
) result
)
1027 (let ((node (make-combination fun-lvar
)))
1028 (setf (lvar-dest fun-lvar
) node
)
1029 (collect ((arg-lvars))
1030 (let ((this-start start
)
1034 (maybe-instrument-progn-like this-start forms arg
))
1035 (setf forms
(cdr forms
))
1036 (let ((this-ctran (make-ctran))
1037 (this-lvar (make-lvar node
)))
1038 (ir1-convert this-start this-ctran this-lvar arg
)
1039 (setq this-start this-ctran
)
1040 (arg-lvars this-lvar
)))
1041 (link-node-to-previous-ctran node this-start
)
1042 (use-continuation node next result
)
1043 (setf (combination-args node
) (arg-lvars))))
1046 ;;; Convert a call to a global function. If not :NOTINLINE, then we do
1047 ;;; source transforms and try out any inline expansion. If there is no
1048 ;;; expansion, but is :INLINE, then give an efficiency note (unless a
1049 ;;; known function which will quite possibly be open-coded.) Next, we
1050 ;;; go to ok-combination conversion.
1051 (defun ir1-convert-srctran (start next result var form
)
1052 (declare (type ctran start next
) (type (or lvar null
) result
)
1053 (type global-var var
))
1054 (let ((inlinep (when (defined-fun-p var
)
1055 (defined-fun-inlinep var
))))
1056 (if (eq inlinep
:notinline
)
1057 (ir1-convert-combination start next result form var
)
1058 (let* ((name (leaf-source-name var
))
1059 (transform (info :function
:source-transform name
)))
1061 (multiple-value-bind (transformed pass
) (funcall transform form
)
1063 (ir1-convert-maybe-predicate start next result form var
))
1065 (unless (policy *lexenv
* (zerop store-xref-data
))
1066 (record-call name
(ctran-block start
) *current-path
*))
1067 (ir1-convert start next result transformed
))))
1068 (ir1-convert-maybe-predicate start next result form var
))))))
1070 ;;; KLUDGE: If we insert a synthetic IF for a function with the PREDICATE
1071 ;;; attribute, don't generate any branch coverage instrumentation for it.
1072 (defvar *instrument-if-for-code-coverage
* t
)
1074 ;;; If the function has the PREDICATE attribute, and the RESULT's DEST
1075 ;;; isn't an IF, then we convert (IF <form> T NIL), ensuring that a
1076 ;;; predicate always appears in a conditional context.
1078 ;;; If the function isn't a predicate, then we call
1079 ;;; IR1-CONVERT-COMBINATION-CHECKING-TYPE.
1080 (defun ir1-convert-maybe-predicate (start next result form var
)
1081 (declare (type ctran start next
)
1082 (type (or lvar null
) result
)
1084 (type global-var var
))
1085 (let ((info (info :function
:info
(leaf-source-name var
))))
1087 (ir1-attributep (fun-info-attributes info
) predicate
)
1088 (not (if-p (and result
(lvar-dest result
)))))
1089 (let ((*instrument-if-for-code-coverage
* nil
))
1090 (ir1-convert start next result
`(if ,form t nil
)))
1091 (ir1-convert-combination-checking-type start next result form var
))))
1093 ;;; Actually really convert a global function call that we are allowed
1096 ;;; If we know the function type of the function, then we check the
1097 ;;; call for syntactic legality with respect to the declared function
1098 ;;; type. If it is impossible to determine whether the call is correct
1099 ;;; due to non-constant keywords, then we give up, marking the call as
1100 ;;; :FULL to inhibit further error messages. We return true when the
1103 ;;; If the call is legal, we also propagate type assertions from the
1104 ;;; function type to the arg and result lvars. We do this now so that
1105 ;;; IR1 optimize doesn't have to redundantly do the check later so
1106 ;;; that it can do the type propagation.
1107 (defun ir1-convert-combination-checking-type (start next result form var
)
1108 (declare (type ctran start next
) (type (or lvar null
) result
)
1111 (let* ((node (ir1-convert-combination start next result form var
))
1112 (fun-lvar (basic-combination-fun node
))
1113 (type (leaf-type var
)))
1114 (when (validate-call-type node type var t
)
1115 (setf (lvar-%derived-type fun-lvar
)
1116 (make-single-value-type type
))
1117 (setf (lvar-reoptimize fun-lvar
) nil
)))
1120 ;;; Convert a call to a local function, or if the function has already
1121 ;;; been LET converted, then throw FUNCTIONAL to
1122 ;;; LOCALL-ALREADY-LET-CONVERTED. The THROW should only happen when we
1123 ;;; are converting inline expansions for local functions during
1125 (defun ir1-convert-local-combination (start next result form functional
)
1126 (assure-functional-live-p functional
)
1127 (ir1-convert-combination start next result
1129 (maybe-reanalyze-functional functional
)))
1133 ;;; Given a list of LAMBDA-VARs and a variable name, return the
1134 ;;; LAMBDA-VAR for that name, or NIL if it isn't found. We return the
1135 ;;; *last* variable with that name, since LET* bindings may be
1136 ;;; duplicated, and declarations always apply to the last.
1137 (declaim (ftype (sfunction (list symbol
) (or lambda-var list
))
1139 (defun find-in-bindings (vars name
)
1143 (when (eq (leaf-source-name var
) name
)
1145 (let ((info (lambda-var-arg-info var
)))
1147 (let ((supplied-p (arg-info-supplied-p info
)))
1148 (when (and supplied-p
1149 (eq (leaf-source-name supplied-p
) name
))
1150 (setq found supplied-p
))))))
1151 ((and (consp var
) (eq (car var
) name
))
1152 (setf found
(cdr var
)))))
1155 ;;; Called by PROCESS-DECLS to deal with a variable type declaration.
1156 ;;; If a LAMBDA-VAR being bound, we intersect the type with the var's
1157 ;;; type, otherwise we add a type restriction on the var. If a symbol
1158 ;;; macro, we just wrap a THE around the expansion.
1159 (defun process-type-decl (decl res vars context
)
1160 (declare (list decl vars
) (type lexenv res
))
1161 (let ((type (compiler-specifier-type (first decl
))))
1162 (collect ((restr nil cons
)
1163 (new-vars nil cons
))
1164 (dolist (var-name (rest decl
))
1165 (when (boundp var-name
)
1166 (program-assert-symbol-home-package-unlocked
1167 context var-name
"declaring the type of ~A"))
1168 (let* ((bound-var (find-in-bindings vars var-name
))
1170 (lexenv-find var-name vars
)
1171 (find-free-var var-name
))))
1175 ((process-var (var bound-var
)
1176 (let* ((old-type (or (lexenv-find var type-restrictions
)
1178 (int (if (or (fun-type-p type
)
1179 (fun-type-p old-type
))
1181 (type-approx-intersection2
1183 (cond ((eq int
*empty-type
*)
1184 (unless (policy *lexenv
* (= inhibit-warnings
3))
1188 "The type declarations ~S and ~S for ~S conflict."
1191 (type-specifier old-type
)
1192 (type-specifier type
)
1195 (setf (leaf-type bound-var
) int
1196 (leaf-where-from bound-var
) :declared
))
1198 (restr (cons var int
)))))))
1199 (process-var var bound-var
)
1200 (awhen (and (lambda-var-p var
)
1201 (lambda-var-specvar var
))
1202 (process-var it nil
))))
1204 ;; FIXME: non-ANSI weirdness
1205 (aver (eq (car var
) 'macro
))
1206 (new-vars `(,var-name .
(macro .
(the ,(first decl
)
1210 "~S is an alien variable, so its type can't be declared."
1213 (if (or (restr) (new-vars))
1214 (make-lexenv :default res
1215 :type-restrictions
(restr)
1219 ;;; This is somewhat similar to PROCESS-TYPE-DECL, but handles
1220 ;;; declarations for function variables. In addition to allowing
1221 ;;; declarations for functions being bound, we must also deal with
1222 ;;; declarations that constrain the type of lexically apparent
1224 (defun process-ftype-decl (spec res names fvars context
)
1225 (declare (type list names fvars
)
1227 (let ((type (compiler-specifier-type spec
)))
1228 (unless (csubtypep type
(specifier-type 'function
))
1229 (compiler-style-warn "ignoring declared FTYPE: ~S (not a function type)" spec
)
1230 (return-from process-ftype-decl res
))
1231 (collect ((res nil cons
))
1232 (dolist (name names
)
1233 (when (fboundp name
)
1234 (program-assert-symbol-home-package-unlocked
1235 context name
"declaring the ftype of ~A"))
1236 (let ((found (find name fvars
:key
#'leaf-source-name
:test
#'equal
)))
1239 (setf (leaf-type found
) type
)
1240 (assert-definition-type found type
1241 :unwinnage-fun
#'compiler-notify
1242 :where
"FTYPE declaration"))
1244 (res (cons (find-lexically-apparent-fun
1245 name
"in a function type declaration")
1248 (make-lexenv :default res
:type-restrictions
(res))
1251 ;;; Process a special declaration, returning a new LEXENV. A non-bound
1252 ;;; special declaration is instantiated by throwing a special variable
1253 ;;; into the variables if BINDING-FORM-P is NIL, or otherwise into
1254 ;;; *POST-BINDING-VARIABLE-LEXENV*.
1255 (defun process-special-decl (spec res vars binding-form-p context
)
1256 (declare (list spec vars
) (type lexenv res
))
1257 (collect ((new-venv nil cons
))
1258 (dolist (name (cdr spec
))
1259 ;; While CLHS seems to allow local SPECIAL declarations for constants,
1260 ;; whatever the semantics are supposed to be is not at all clear to me
1261 ;; -- since constants aren't allowed to be bound it should be a no-op as
1262 ;; no-one can observe the difference portably, but specials are allowed
1263 ;; to be bound... yet nowhere does it say that the special declaration
1264 ;; removes the constantness. Call it a spec bug and prohibit it. Same
1265 ;; for GLOBAL variables.
1266 (let ((kind (info :variable
:kind name
)))
1267 (unless (member kind
'(:special
:unknown
))
1268 (error "Can't declare ~(~A~) variable locally special: ~S" kind name
)))
1269 (program-assert-symbol-home-package-unlocked
1270 context name
"declaring ~A special")
1271 (let ((var (find-in-bindings vars name
)))
1274 (aver (eq (car var
) 'macro
))
1276 "~S is a symbol-macro and thus can't be declared special."
1279 (when (lambda-var-ignorep var
)
1280 ;; ANSI's definition for "Declaration IGNORE, IGNORABLE"
1281 ;; requires that this be a STYLE-WARNING, not a full WARNING.
1282 (compiler-style-warn
1283 "The ignored variable ~S is being declared special."
1285 (setf (lambda-var-specvar var
)
1286 (specvar-for-binding name
)))
1288 (unless (or (assoc name
(new-venv) :test
#'eq
))
1289 (new-venv (cons name
(specvar-for-binding name
))))))))
1290 (cond (binding-form-p
1291 (setf *post-binding-variable-lexenv
*
1292 (append (new-venv) *post-binding-variable-lexenv
*))
1295 (make-lexenv :default res
:vars
(new-venv)))
1299 ;;; Return a DEFINED-FUN which copies a GLOBAL-VAR but for its INLINEP
1300 ;;; (and TYPE if notinline), plus type-restrictions from the lexenv.
1301 (defun make-new-inlinep (var inlinep local-type
)
1302 (declare (type global-var var
) (type inlinep inlinep
))
1303 (let* ((type (if (and (eq inlinep
:notinline
)
1304 (not (eq (leaf-where-from var
) :declared
)))
1305 (specifier-type 'function
)
1307 (res (make-defined-fun
1308 :%source-name
(leaf-source-name var
)
1309 :where-from
(leaf-where-from var
)
1310 :type
(if local-type
1311 (type-intersection local-type type
)
1314 (when (defined-fun-p var
)
1315 (setf (defined-fun-inline-expansion res
)
1316 (defined-fun-inline-expansion var
))
1317 (setf (defined-fun-functionals res
)
1318 (defined-fun-functionals var
)))
1319 ;; FIXME: Is this really right? Needs we not set the FUNCTIONAL
1320 ;; to the original global-var?
1323 ;;; Parse an inline/notinline declaration. If it's a local function we're
1324 ;;; defining, set its INLINEP. If a global function, add a new FENV entry.
1325 (defun process-inline-decl (spec res fvars
)
1326 (let ((sense (cdr (assoc (first spec
) *inlinep-translations
* :test
#'eq
)))
1328 (dolist (name (rest spec
))
1329 (let ((fvar (find name fvars
:key
#'leaf-source-name
:test
#'equal
)))
1331 (setf (functional-inlinep fvar
) sense
)
1332 (let ((found (find-lexically-apparent-fun
1333 name
"in an inline or notinline declaration")))
1336 (when (policy *lexenv
* (>= speed inhibit-warnings
))
1337 (compiler-notify "ignoring ~A declaration not at ~
1338 definition of local function:~% ~S"
1342 (cdr (assoc found
(lexenv-type-restrictions res
)))))
1343 (push (cons name
(make-new-inlinep found sense type
))
1346 (make-lexenv :default res
:funs new-fenv
)
1349 ;;; like FIND-IN-BINDINGS, but looks for #'FOO in the FVARS
1350 (defun find-in-bindings-or-fbindings (name vars fvars
)
1351 (declare (list vars fvars
))
1354 (find-in-bindings vars name
))
1355 ((cons (eql function
) (cons * null
))
1356 (find (cadr name
) fvars
:key
#'leaf-source-name
:test
#'equal
))
1358 (compiler-error "Malformed function or variable name ~S." name
))))
1360 ;;; Process an ignore/ignorable declaration, checking for various losing
1362 (defun process-ignore-decl (spec vars fvars
)
1363 (declare (list spec vars fvars
))
1364 (dolist (name (rest spec
))
1365 (let ((var (find-in-bindings-or-fbindings name vars fvars
)))
1368 ;; ANSI's definition for "Declaration IGNORE, IGNORABLE"
1369 ;; requires that this be a STYLE-WARNING, not a full WARNING.
1370 (multiple-value-call #'compiler-style-warn
1371 "~A declaration for ~A: ~A"
1375 (case (info :variable
:kind name
)
1376 (:special
"a special variable")
1377 (:global
"a global lexical variable")
1378 (:alien
"a global alien variable")
1379 (t "an unknown variable"))
1382 (if (info :function
:kind
(second name
))
1384 "an unknown function")
1386 ((and (consp var
) (eq (car var
) 'macro
))
1387 ;; Just ignore the IGNORE decl: we don't currently signal style-warnings
1388 ;; for unused symbol-macros, so there's no need to do anything.
1391 (setf (leaf-ever-used var
) t
))
1392 ((and (lambda-var-specvar var
) (eq (first spec
) 'ignore
))
1393 ;; ANSI's definition for "Declaration IGNORE, IGNORABLE"
1394 ;; requires that this be a STYLE-WARNING, not a full WARNING.
1395 (compiler-style-warn "Declaring special variable ~S to be ~A"
1398 ((eq (first spec
) 'ignorable
)
1399 (setf (leaf-ever-used var
) t
))
1401 (setf (lambda-var-ignorep var
) t
)))))
1404 (defun process-extent-decl (names vars fvars kind
)
1407 (truly-dynamic-extent
1410 (when *stack-allocate-dynamic-extent
*
1415 (dolist (name names
)
1418 (let* ((bound-var (find-in-bindings vars name
))
1420 (lexenv-find name vars
)
1421 (maybe-find-free-var name
))))
1425 (if (and (leaf-extent var
) (neq extent
(leaf-extent var
)))
1426 (warn "Multiple incompatible extent declarations for ~S?" name
)
1427 (setf (leaf-extent var
) extent
))
1429 "Ignoring free ~S declaration: ~S" kind name
)))
1431 (compiler-error "~S on symbol-macro: ~S" kind name
))
1433 (compiler-error "~S on alien-variable: ~S" kind name
))
1435 (compiler-style-warn
1436 "Unbound variable declared ~S: ~S" kind name
)))))
1438 (eq (car name
) 'function
)
1440 (valid-function-name-p (cadr name
))
1441 (neq :indefinite extent
))
1442 (let* ((fname (cadr name
))
1443 (bound-fun (find fname fvars
1444 :key
#'leaf-source-name
1446 (fun (or bound-fun
(lexenv-find fname funs
))))
1450 #!+stack-allocatable-closures
1451 (setf (leaf-extent bound-fun
) extent
)
1452 #!-stack-allocatable-closures
1454 "Ignoring DYNAMIC-EXTENT declaration on function ~S ~
1455 (not supported on this platform)." fname
)
1457 "Ignoring free DYNAMIC-EXTENT declaration: ~S" name
)))
1459 (compiler-error "DYNAMIC-EXTENT on macro: ~S" name
))
1461 (compiler-style-warn
1462 "Unbound function declared DYNAMIC-EXTENT: ~S" name
)))))
1464 (compiler-error "~S on a weird thing: ~S" kind name
))))
1465 (when (policy *lexenv
* (= speed
3))
1466 (compiler-notify "Ignoring DYNAMIC-EXTENT declarations: ~S" names
)))))
1468 ;;; FIXME: This is non-ANSI, so the default should be T, or it should
1469 ;;; go away, I think.
1470 (defvar *suppress-values-declaration
* nil
1472 "If true, processing of the VALUES declaration is inhibited.")
1474 ;;; Process a single declaration spec, augmenting the specified LEXENV
1475 ;;; RES. Return RES and result type. VARS and FVARS are as described
1477 (defun process-1-decl (raw-spec res vars fvars binding-form-p context
)
1478 (declare (type list raw-spec vars fvars
))
1479 (declare (type lexenv res
))
1480 (let ((spec (canonized-decl-spec raw-spec
))
1481 (result-type *wild-type
*))
1484 (special (process-special-decl spec res vars binding-form-p context
))
1487 (compiler-error "no type specified in FTYPE declaration: ~S" spec
))
1488 (process-ftype-decl (second spec
) res
(cddr spec
) fvars context
))
1489 ((inline notinline maybe-inline
)
1490 (process-inline-decl spec res fvars
))
1492 (process-ignore-decl spec vars fvars
)
1497 :policy
(process-optimize-decl spec
(lexenv-policy res
))))
1501 :handled-conditions
(process-muffle-conditions-decl
1502 spec
(lexenv-handled-conditions res
))))
1503 (unmuffle-conditions
1506 :handled-conditions
(process-unmuffle-conditions-decl
1507 spec
(lexenv-handled-conditions res
))))
1509 (process-type-decl (cdr spec
) res vars context
))
1511 (unless *suppress-values-declaration
*
1512 (let ((types (cdr spec
)))
1514 (compiler-values-specifier-type
1515 (if (singleton-p types
)
1517 `(values ,@types
)))))
1519 ((dynamic-extent truly-dynamic-extent indefinite-extent
)
1520 (process-extent-decl (cdr spec
) vars fvars
(first spec
))
1522 ((disable-package-locks enable-package-locks
)
1525 :disabled-package-locks
(process-package-lock-decl
1526 spec
(lexenv-disabled-package-locks res
))))
1528 (unless (info :declaration
:recognized
(first spec
))
1529 (compiler-warn "unrecognized declaration ~S" raw-spec
))
1530 (let ((fn (info :declaration
:handler
(first spec
))))
1532 (funcall fn res spec vars fvars
)
1536 ;;; Use a list of DECLARE forms to annotate the lists of LAMBDA-VAR
1537 ;;; and FUNCTIONAL structures which are being bound. In addition to
1538 ;;; filling in slots in the leaf structures, we return a new LEXENV,
1539 ;;; which reflects pervasive special and function type declarations,
1540 ;;; (NOT)INLINE declarations and OPTIMIZE declarations, and type of
1541 ;;; VALUES declarations. If BINDING-FORM-P is true, the third return
1542 ;;; value is a list of VARs that should not apply to the lexenv of the
1543 ;;; initialization forms for the bindings, but should apply to the body.
1545 ;;; This is also called in main.lisp when PROCESS-FORM handles a use
1547 (defun process-decls (decls vars fvars
&key
1548 (lexenv *lexenv
*) (binding-form-p nil
) (context :compile
))
1549 (declare (list decls vars fvars
))
1550 (let ((result-type *wild-type
*)
1551 (*post-binding-variable-lexenv
* nil
))
1552 (dolist (decl decls
)
1553 (dolist (spec (rest decl
))
1555 ;; Kludge: EVAL calls this function to deal with LOCALLY.
1556 (when (eq context
:compile
) (list '*current-path
*))
1557 (when (eq context
:compile
) (list (or (get-source-path spec
)
1558 (get-source-path decl
)
1560 (unless (consp spec
)
1561 (compiler-error "malformed declaration specifier ~S in ~S" spec decl
))
1562 (multiple-value-bind (new-env new-result-type
)
1563 (process-1-decl spec lexenv vars fvars binding-form-p context
)
1564 (setq lexenv new-env
)
1565 (unless (eq new-result-type
*wild-type
*)
1567 (values-type-intersection result-type new-result-type
)))))))
1568 (values lexenv result-type
*post-binding-variable-lexenv
*)))
1570 (defun %processing-decls
(decls vars fvars ctran lvar binding-form-p fun
)
1571 (multiple-value-bind (*lexenv
* result-type post-binding-lexenv
)
1572 (process-decls decls vars fvars
:binding-form-p binding-form-p
)
1573 (cond ((eq result-type
*wild-type
*)
1574 (funcall fun ctran lvar post-binding-lexenv
))
1576 (let ((value-ctran (make-ctran))
1577 (value-lvar (make-lvar)))
1578 (multiple-value-prog1
1579 (funcall fun value-ctran value-lvar post-binding-lexenv
)
1580 (let ((cast (make-cast value-lvar result-type
1581 (lexenv-policy *lexenv
*))))
1582 (link-node-to-previous-ctran cast value-ctran
)
1583 (setf (lvar-dest value-lvar
) cast
)
1584 (use-continuation cast ctran lvar
))))))))
1585 (defmacro processing-decls
((decls vars fvars ctran lvar
1586 &optional post-binding-lexenv
)
1588 (check-type ctran symbol
)
1589 (check-type lvar symbol
)
1590 (let ((post-binding-lexenv-p (not (null post-binding-lexenv
)))
1591 (post-binding-lexenv (or post-binding-lexenv
(sb!xc
:gensym
"LEXENV"))))
1592 `(%processing-decls
,decls
,vars
,fvars
,ctran
,lvar
1593 ,post-binding-lexenv-p
1594 (lambda (,ctran
,lvar
,post-binding-lexenv
)
1595 (declare (ignorable ,post-binding-lexenv
))
1598 ;;; Return the SPECVAR for NAME to use when we see a local SPECIAL
1599 ;;; declaration. If there is a global variable of that name, then
1600 ;;; check that it isn't a constant and return it. Otherwise, create an
1601 ;;; anonymous GLOBAL-VAR.
1602 (defun specvar-for-binding (name)
1603 (cond ((not (eq (info :variable
:where-from name
) :assumed
))
1604 (let ((found (find-free-var name
)))
1605 (when (heap-alien-info-p found
)
1607 "~S is an alien variable and so can't be declared special."
1609 (unless (global-var-p found
)
1611 "~S is a constant and so can't be declared special."
1615 (make-global-var :kind
:special
1617 :where-from
:declared
))))