X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcompiler%2Fnode.lisp;h=41964ad7358435dd30de5ebbe82e364605a0ec5d;hb=5745b5a5b2e3b967bf3876b4306f31b3c78495fa;hp=ceb1a2bc354828193e3e94e4bed6f206b6f24873;hpb=79a8e51bf4b06a5bd57bc90233605f98fee3b041;p=sbcl.git diff --git a/src/compiler/node.lisp b/src/compiler/node.lisp index ceb1a2b..41964ad 100644 --- a/src/compiler/node.lisp +++ b/src/compiler/node.lisp @@ -248,8 +248,9 @@ (flag nil) ;; some kind of info used by the back end (info nil) - ;; what macroexpansions happened "in" this block, used for xref - (macroexpands nil :type list) + ;; what macroexpansions and source transforms happened "in" this block, used + ;; for xref + (xrefs nil :type list) ;; Cache the physenv of a block during lifetime analysis. :NONE if ;; no cached value has been stored yet. (physenv-cache :none :type (or null physenv (member :none)))) @@ -861,6 +862,8 @@ ;; the original function or macro lambda list, or :UNSPECIFIED if ;; this is a compiler created function (arg-documentation nil :type (or list (member :unspecified))) + ;; the documentation string for the lambda + (documentation nil :type (or null string)) ;; Node, allocating closure for this lambda. May be NIL when we are ;; sure that no closure is needed. (allocator nil :type (or null combination)) @@ -869,8 +872,9 @@ ;; xref information for this functional (only used for functions with an ;; XEP) (xref () :type list) - ;; True if this functional was created from an inline expansion - (inline-expanded nil :type boolean)) + ;; True if this functional was created from an inline expansion. This + ;; is either T, or the GLOBAL-VAR for which it is an expansion. + (inline-expanded nil)) (defprinter (functional :identity t) %source-name %debug-name