describe: show the same information about functions for 'x and #'x.
[sbcl.git] / src / code / describe.lisp
index 93c17f6..9cfc4d8 100644 (file)
@@ -1,5 +1,4 @@
-;;;; most of the DESCRIBE mechanism -- that part which isn't derived
-;;;; from PCL code
+;;;; the DESCRIBE system
 
 ;;;; This software is part of the SBCL system. See the README file for
 ;;;; more information.
 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
 ;;;; files for more information.
 
+;;; SB-IMPL, not SB!IMPL, since we're built in warm load.
 (in-package "SB-IMPL")
 
-(declaim #.*optimize-byte-compilation*)
+;;;; Utils, move elsewhere.
 
-\f
-(defvar *describe-indentation-step* 3
+(defun class-name-or-class (class)
+  (let ((name (class-name class)))
+    (if (eq class (find-class name nil))
+        name
+        class)))
+
+(defun fun-name (x)
+  (if (typep x 'standard-generic-function)
+      (sb-pcl:generic-function-name x)
+      (%fun-name x)))
+
+;;;; the ANSI interface to function names (and to other stuff too)
+;;; Note: this function gets called by the compiler (as of 1.0.17.x,
+;;; in MAYBE-INLINE-SYNTACTIC-CLOSURE), and so although ANSI says
+;;; we're allowed to return NIL here freely, it seems plausible that
+;;; small changes to the circumstances under which this function
+;;; returns non-NIL might have subtle consequences on the compiler.
+;;; So it might be desirable to have the compiler not rely on this
+;;; function, eventually.
+(defun function-lambda-expression (fun)
   #+sb-doc
-  "the number of spaces that sets off each line of a recursive description")
+  "Return (VALUES DEFINING-LAMBDA-EXPRESSION CLOSURE-P NAME), where
+  DEFINING-LAMBDA-EXPRESSION is NIL if unknown, or a suitable argument
+  to COMPILE otherwise, CLOSURE-P is non-NIL if the function's definition
+  might have been enclosed in some non-null lexical environment, and
+  NAME is some name (for debugging only) or NIL if there is no name."
+  (declare (type function fun))
+  (etypecase fun
+    #+sb-eval
+    (sb-eval:interpreted-function
+     (let ((name (sb-eval:interpreted-function-name fun))
+           (lambda-list (sb-eval:interpreted-function-lambda-list fun))
+           (declarations (sb-eval:interpreted-function-declarations fun))
+           (body (sb-eval:interpreted-function-body fun)))
+       (values `(lambda ,lambda-list
+                  ,@(when declarations `((declare ,@declarations)))
+                  ,@body)
+               t name)))
+    (function
+     (let* ((name (fun-name fun))
+            (fun (%simple-fun-self (%fun-fun fun)))
+            (code (sb-di::fun-code-header fun))
+            (info (sb-kernel:%code-debug-info code)))
+       (if info
+           (let ((source (sb-c::debug-info-source info)))
+             (cond ((and (sb-c::debug-source-form source)
+                         (eq (sb-c::debug-source-function source) fun))
+                    (values (sb-c::debug-source-form source)
+                            nil
+                            name))
+                   ((legal-fun-name-p name)
+                    (let ((exp (fun-name-inline-expansion name)))
+                      (values exp (not exp) name)))
+                   (t
+                    (values nil t name))))
+           (values nil t name))))))
 
-(declaim (ftype (function (t stream)) describe-object))
-(defgeneric describe-object ((x t) stream))
+;;; Prints X on a single line, limiting output length by *PRINT-RIGHT-MARGIN*
+;;; -- good for printing object parts, etc.
+(defun prin1-to-line (x &key (columns 1) (reserve 0))
+  (let* ((line (write-to-string x :escape t :readably nil :lines 2 :circle t))
+         (p (position #\newline line))
+         (limit (truncate (- *print-right-margin* reserve) columns)))
+    (flet ((trunc (&optional end)
+             (let ((line-end (- limit 2)))
+               (with-output-to-string (s)
+                 (write-string line s :end (if end
+                                               (min end line-end)
+                                               line-end))
+                 (write-string ".." s)))))
+      (cond (p
+             (trunc p))
+            ((> (length line) limit)
+             (trunc))
+            (t
+             line)))))
 
-(defun describe (x &optional (stream-designator *standard-output*))
+(defun describe (object &optional (stream-designator *standard-output*))
   #+sb-doc
-  "Print a description of the object X."
-  (declare #.*optimize-external-despite-byte-compilation*)
-  (let ((stream (out-synonym-of stream-designator)))
-    (pprint-logical-block (stream nil)
-      (fresh-line stream)
-      (describe-object x stream)
-      (fresh-line stream)))
-  (values))
+  "Print a description of OBJECT to STREAM-DESIGNATOR."
+  (let ((stream (out-synonym-of stream-designator))
+        (*print-right-margin* (or *print-right-margin* 72))
+        (*print-circle* t)
+        (*suppress-print-errors*
+          (if (subtypep 'serious-condition *suppress-print-errors*)
+              *suppress-print-errors*
+              'serious-condition)))
+    ;; Until sbcl-0.8.0.x, we did
+    ;;   (FRESH-LINE STREAM)
+    ;;   (PPRINT-LOGICAL-BLOCK (STREAM NIL)
+    ;;     ...
+    ;; here. However, ANSI's specification of DEFUN DESCRIBE,
+    ;;   DESCRIBE exists as an interface primarily to manage argument
+    ;;   defaulting (including conversion of arguments T and NIL into
+    ;;   stream objects) and to inhibit any return values from
+    ;;   DESCRIBE-OBJECT.
+    ;; doesn't mention either FRESH-LINEing or PPRINT-LOGICAL-BLOCKing,
+    ;; and the example of typical DESCRIBE-OBJECT behavior in ANSI's
+    ;; specification of DESCRIBE-OBJECT will work poorly if we do them
+    ;; here. (The example method for DESCRIBE-OBJECT does its own
+    ;; FRESH-LINEing, which is a physical directive which works poorly
+    ;; inside a pretty-printer logical block.)
+    (handler-bind ((print-not-readable #'print-unreadably))
+      (describe-object object stream))
+    ;; We don't TERPRI here either (any more since sbcl-0.8.0.x), because
+    ;; again ANSI's specification of DESCRIBE doesn't mention it and
+    ;; ANSI's example of DESCRIBE-OBJECT does its own final TERPRI.
+    (values)))
 \f
-;;;; miscellaneous DESCRIBE-OBJECT methods
+;;;; DESCRIBE-OBJECT
+;;;;
+;;;; Style guide:
+;;;;
+;;;; * Each interesting class has a primary method of its own.
+;;;;
+;;;; * Output looks like
+;;;;
+;;;;    object-self-string
+;;;;      [object-type-string]
+;;;;
+;;;;    Block1:
+;;;;      Sublabel1: text
+;;;;      Sublabel2: text
+;;;;
+;;;;    Block2:
+;;;;      ...
+;;;;
+;;;; * The newline policy that gets the whitespace right is for
+;;;;   each block to both start and end with a newline.
+
+(defgeneric object-self-string (x))
+
+(defmethod object-self-string (x)
+  (prin1-to-line x))
+
+(defmethod object-self-string ((x symbol))
+  (let ((*package* (find-package :keyword)))
+    (prin1-to-string x)))
+
+(defgeneric object-type-string (x))
+
+(defmethod object-type-string (x)
+  (let ((type (class-name-or-class (class-of x))))
+    (if (symbolp type)
+        (string-downcase type)
+        (prin1-to-string type))))
+
+(defmethod object-type-string ((x cons))
+  (if (listp (cdr x)) "list" "cons"))
+
+(defmethod object-type-string ((x hash-table))
+  "hash-table")
+
+(defmethod object-type-string ((x condition))
+  "condition")
+
+(defmethod object-type-string ((x structure-object))
+  "structure-object")
+
+(defmethod object-type-string ((x standard-object))
+  "standard-object")
+
+(defmethod object-type-string ((x function))
+  (typecase x
+    (simple-fun "compiled function")
+    (closure "compiled closure")
+    #+sb-eval
+    (sb-eval:interpreted-function
+     "interpreted function")
+    (generic-function
+     "generic-function")
+    (t
+     "funcallable-instance")))
+
+(defmethod object-type-string ((x stream))
+  "stream")
+
+(defmethod object-type-string ((x sb-gray:fundamental-stream))
+  "gray stream")
+
+(defmethod object-type-string ((x package))
+  "package")
+
+(defmethod object-type-string ((x array))
+  (cond ((or (stringp x) (bit-vector-p x))
+         (format nil "~@[simple-~*~]~A"
+                 (typep x 'simple-array)
+                 (typecase x
+                   (base-string "base-string")
+                   (string "string")
+                   (t "bit-vector"))))
+        (t
+         (if (simple-vector-p x)
+             "simple-vector"
+             (format nil "~@[simple ~*~]~@[specialized ~*~]~:[array~;vector~]"
+                     (typep x 'simple-array)
+                     (neq t (array-element-type x))
+                     (vectorp x))))))
+
+(defmethod object-type-string ((x character))
+  (typecase x
+    (standard-char "standard-char")
+    (base-char "base-char")
+    (t "character")))
+
+(defun print-standard-describe-header (x stream)
+  (format stream "~&~A~%  [~A]~%"
+          (object-self-string x)
+          (object-type-string x)))
+
+(defgeneric describe-object (x stream))
+
+;;; Catch-all.
 
 (defmethod describe-object ((x t) s)
-  (format s "~@<~S ~_is a ~S.~:>" x (type-of x)))
+  (print-standard-describe-header x s))
 
 (defmethod describe-object ((x cons) s)
-  (call-next-method)
-  (when (and (legal-function-name-p x)
-            (fboundp x))
-    (format s "Its FDEFINITION is ~S.~@:_" (fdefinition x))
-    ;; TO DO: should check for SETF documentation.
-    ;; TO DO: should make it clear whether the definition is a
-    ;; DEFUN (SETF FOO) or DEFSETF FOO or what.
-    ))
+  (print-standard-describe-header x s)
+  (describe-function x nil s))
+
+(defmethod describe-object ((x function) s)
+  (print-standard-describe-header x s)
+  (describe-function nil x s))
+
+(defmethod describe-object ((x class) s)
+  (print-standard-describe-header x s)
+  (describe-class nil x s)
+  (describe-instance x s))
+
+(defmethod describe-object ((x sb-pcl::slot-object) s)
+  (print-standard-describe-header x s)
+  (describe-instance x s))
+
+(defmethod describe-object ((x character) s)
+  (print-standard-describe-header x s)
+  (format s "~%Char-code: ~S" (char-code x))
+  (format s "~%Char-name: ~A" (char-name x)))
 
 (defmethod describe-object ((x array) s)
-  (let ((rank (array-rank x)))
-    (cond ((> rank 1)
-          (format s "~S ~_is " x)
-          (write-string (if (%array-displaced-p x) "a displaced" "an") s)
-          (format s " array of rank ~S." rank)
-          (format s "~@:_Its dimensions are ~S." (array-dimensions x)))
-         (t
-          (format s
-                  "~@:_~S is a ~:[~;displaced ~]vector of length ~S." x
-                  (and (array-header-p x) (%array-displaced-p x)) (length x))
-          (when (array-has-fill-pointer-p x)
-            (format s "~@:_It has a fill pointer, currently ~S."
-                    (fill-pointer x))))))
-  (let ((array-element-type (array-element-type x)))
-    (unless (eq array-element-type t)
-      (format s
-             "~@:_Its element type is specialized to ~S."
-             array-element-type))))
+  (print-standard-describe-header x s)
+  (format s "~%Element-type: ~S" (array-element-type x))
+  (if (vectorp x)
+      (if (array-has-fill-pointer-p x)
+          (format s "~%Fill-pointer: ~S~%Size: ~S"
+                  (fill-pointer x)
+                  (array-total-size x))
+          (format s "~%Length: ~S" (length x)))
+      (format s "~%Dimensions: ~S" (array-dimensions x)))
+  (let ((*print-array* nil))
+    (unless (typep x 'simple-array)
+      (format s "~%Adjustable: ~A" (if (adjustable-array-p x) "yes" "no"))
+      (multiple-value-bind (to offset) (array-displacement x)
+        (if (format s "~%Displaced-to: ~A~%Displaced-offset: ~S"
+                    (prin1-to-line to)
+                    offset)
+            (format s "~%Displaced: no"))))
+    (when (and (not (array-displacement x)) (array-header-p x))
+      (format s "~%Storage vector: ~A"
+              (prin1-to-line (array-storage-vector x))))
+    (terpri s)))
 
 (defmethod describe-object ((x hash-table) s)
-  (declare (type stream s))
-  (format s "~@<~S ~_is an ~S hash table.~:>" x (hash-table-test x))
-  (format s "~_Its SIZE is ~S." (hash-table-size x))
-  (format s
-         "~@:_~@<Its REHASH-SIZE is ~S. ~_Its REHASH-THRESHOLD is ~S.~:>"
-         (hash-table-rehash-size x)
-         (hash-table-rehash-threshold x))
-  (let ((count (hash-table-count x)))
-    (format s "~@:_It holds ~S key/value pair~:P~:[: ~2I~_~;.~]"
-           count (zerop count))
-    (let ((n 0))
-      (declare (type index n))
-      (dohash (k v x)
-       (unless (zerop n)
-         (write-char #\space s))
-       (incf n)
-       (when (and *print-length* (> n *print-length*))
-         (format s "~:_...")
-         (return))
-       (format s "~:_(~@<~S ~:_~S~:>)" k v)))))
-
-(defmethod describe-object ((condition condition) s)
-  (sb-kernel:describe-condition condition s))
-\f
-;;;; DESCRIBE-OBJECT methods for symbols and functions, including all
-;;;; sorts of messy stuff about documentation, type information,
-;;;; packaging, function implementation, etc..
-
-;;; Print the specified kind of documentation about the given NAME. If
-;;; NAME is null, or not a valid name, then don't print anything.
-(declaim (ftype (function (t stream t t) (values)) %describe-doc))
-(defun %describe-doc (name s kind kind-doc)
-  (when (and name (typep name '(or symbol cons)))
-    (let ((doc (fdocumentation name kind)))
-      (when doc
-       (format s "~_~@(~A documentation:~)~@:_  ~A"
-               (or kind-doc kind) doc))))
-  (values))
-
-;;; Describe various stuff about the functional semantics attached to
-;;; the specified NAME, if NAME is the kind of thing you can look
-;;; up as a name. (In the case of anonymous closures and other
-;;; things, it might not be.) TYPE-SPEC is the function type specifier
-;;; extracted from the definition, or NIL if none.
-(declaim (ftype (function (t stream t)) %describe-function-name))
-(defun %describe-function-name (name s type-spec) 
-  (when (and name (typep name '(or symbol cons)))
-    (multiple-value-bind (type where)
-       (if (or (symbolp name) (and (listp name) (eq (car name) 'setf)))
-           (values (type-specifier (info :function :type name))
-                   (info :function :where-from name))
-           (values type-spec :defined))
-      (when (consp type)
-       (format s "~@:_Its ~(~A~) argument types are:~@:_  ~S"
-               where (second type))
-       (format s "~@:_Its result type is:~@:_  ~S" (third type))))
-    (let ((inlinep (info :function :inlinep name)))
-      (when inlinep
-       (format s
-               "~@:_It is currently declared ~(~A~);~
-                ~:[no~;~] expansion is available."
-               inlinep (info :function :inline-expansion name))))))
-
-;;; Interpreted function describing; handles both closure and
-;;; non-closure functions. Instead of printing the compiled-from info,
-;;; we print the definition.
-(defun %describe-function-interpreted (x s kind name)
-  (declare (type stream s))
-  (multiple-value-bind (exp closure-p dname)
-      (sb-eval:interpreted-function-lambda-expression x)
-    (let ((args (sb-eval:interpreted-function-arglist x)))
-      (format s "~@:_~@(~@[~A ~]arguments:~@:_~)" kind)
-      (if args
-         (format s "  ~<~S~:>" args)
-         (write-string "  There are no arguments." s)))
-    (let ((name (or name dname)))
-      (%describe-doc name s 'function kind)
-      (unless (eq kind :macro)
-       (%describe-function-name
-        name
-        s
-        (type-specifier (sb-eval:interpreted-function-type x)))))
-    (when closure-p
-      (format s "~@:_Its closure environment is:~%")
-      (pprint-logical-block (s nil)
-       (pprint-indent :current 2)
-       (let ((closure (sb-eval:interpreted-function-closure x)))
-         (dotimes (i (length closure))
-           (format s "~@:_~S: ~S" i (svref closure i))))))
-    (format s "~@:_Its definition is:~@:_  ~S" exp)))
-
-;;; Print information from the debug-info about where CODE-OBJ was
-;;; compiled from.
-(defun %describe-compiled-from (code-obj s)
-  (declare (type stream s))
-  (let ((info (sb-kernel:%code-debug-info code-obj)))
-    (when info
-      (let ((sources (sb-c::debug-info-source info)))
-       (when sources
-         (format s "~@:_On ~A it was compiled from:"
-                 ;; FIXME: The FORMAT-UNIVERSAL-TIME calls in the system
-                 ;; should become more consistent, probably not using
-                 ;; any nondefault options.
-                 (format-universal-time nil
-                                        (sb-c::debug-source-compiled
-                                         (first sources))
-                                        :style :abbreviated))
-         (dolist (source sources)
-           (let ((name (sb-c::debug-source-name source)))
-             (ecase (sb-c::debug-source-from source)
-               (:file
-                (format s "~@:_~A~@:_  Created: " (namestring name))
-                (format-universal-time s (sb-c::debug-source-created
-                                          source)))
-               (:lisp (format s "~@:_~S" name))))))))))
-
-;;; Describe a compiled function. The closure case calls us to print
-;;; the guts.
-(defun %describe-function-compiled (x s kind name)
-  (declare (type stream s))
-  ;; FIXME: The lowercaseness of %FUNCTION-ARGLIST results, and the
-  ;; non-sentenceness of the "Arguments" label, makes awkward output.
-  ;; Better would be "Its arguments are: ~S" (with uppercase argument
-  ;; names) when arguments are known, and otherwise "There is no
-  ;; information available about its arguments." or "It has no
-  ;; arguments." (And why is %FUNCTION-ARGLIST a string instead of a
-  ;; list of symbols anyway?)
-  (let ((args (%function-arglist x)))
-    (format s "~@:_~@(~@[~A ~]arguments:~@:_~)" kind)
-    (cond ((not args)
-          (format s "  There is no argument information available."))
-         ((string= args "()")
-          (write-string "  There are no arguments." s))
-         (t
-          (write-string "  " s)
-          (pprint-logical-block (s nil)
-            (pprint-indent :current 2)
-            (write-string args s)))))
-  (let ((name (or name (%function-name x))))
-    (%describe-doc name s 'function kind)
-    (unless (eq kind :macro)
-      (%describe-function-name name s (%function-type x))))
-  (%describe-compiled-from (sb-kernel:function-code-header x) s))
-
-(defun %describe-function-byte-compiled (x s kind name)
-  (declare (type stream s))
-  (let ((name (or name (sb-c::byte-function-name x))))
-    (%describe-doc name s 'function kind)
-    (unless (eq kind :macro)
-      (%describe-function-name name s 'function)))
-  (%describe-compiled-from (sb-c::byte-function-component x) s))
-
-;;; Describe a function with the specified kind and name. The latter
-;;; arguments provide some information about where the function came
-;;; from. Kind NIL means not from a name.
-(defun %describe-function (x s &optional (kind nil) name)
-  (declare (type function x))
-  (declare (type stream s))
-  (declare (type (member :macro :function nil) kind))
-  (fresh-line s)
-  (ecase kind
-    (:macro (format s "Macro-function: ~S" x))
-    (:function (format s "Function: ~S" x))
-    ((nil) (format s "~S is a function." x)))
-  (case (get-type x)
-    (#.sb-vm:closure-header-type
-     (%describe-function-compiled (%closure-function x) s kind name)
-     (format s "~@:_Its closure environment is:")
-     (pprint-logical-block (s nil)
-       (pprint-indent :current 8)
-       (dotimes (i (- (get-closure-length x) (1- sb-vm:closure-info-offset)))
-        (format s "~@:_~S: ~S" i (%closure-index-ref x i)))))
-    ((#.sb-vm:function-header-type #.sb-vm:closure-function-header-type)
-     (%describe-function-compiled x s kind name))
-    (#.sb-vm:funcallable-instance-header-type
-     (typecase x
-       (sb-kernel:byte-function
-       (%describe-function-byte-compiled x s kind name))
-       (sb-kernel:byte-closure
-       (%describe-function-byte-compiled (byte-closure-function x)
-                                         s kind name)
-       (format s "~@:_Its closure environment is:")
-       (pprint-logical-block (s nil)
-         (pprint-indent :current 8)
-         (let ((data (byte-closure-data x)))
-           (dotimes (i (length data))
-             (format s "~@:_~S: ~S" i (svref data i))))))
-       (sb-eval:interpreted-function
-       (%describe-function-interpreted x s kind name))
-       (standard-generic-function
-       ;; There should be a special method for this case; we'll
-       ;; delegate to that.
-       (describe-object x s))
-       (t
-       (format s "~@:_It is an unknown type of funcallable instance."))))
-    (t
-     (format s "~@:_It is an unknown type of function."))))
+  (print-standard-describe-header x s)
+  ;; Don't print things which are already apparent from the printed
+  ;; representation -- COUNT, TEST, and WEAKNESS
+  (format s "~%Occupancy: ~,1F" (float (/ (hash-table-count x)
+                                          (hash-table-size x))))
+  (format s "~%Rehash-threshold: ~S" (hash-table-rehash-threshold x))
+  (format s "~%Rehash-size: ~S" (hash-table-rehash-size x))
+  (format s "~%Size: ~S" (hash-table-size x))
+  (format s "~%Synchronized: ~A" (if (hash-table-synchronized-p x) "yes" "no"))
+  (terpri s))
 
-(defmethod describe-object ((x function) s)
-  (%describe-function x s))
-  
-(defmethod describe-object ((x symbol) s)
-  (declare (type stream s))
-
-  ;; Describe the packaging.
-  (let ((package (symbol-package x)))
-    (if package
-       (multiple-value-bind (symbol status)
-           (find-symbol (symbol-name x) package)
-         (declare (ignore symbol))
-         (format s "~S is ~_an ~(~A~) symbol ~_in ~S."
-                 x status (symbol-package x)))
-       (format s "~S is ~_an uninterned symbol." x)))
-  ;; TO DO: We could grovel over all packages looking for and
+(defmethod describe-object ((symbol symbol) stream)
+  (print-standard-describe-header symbol stream)
+  ;; Describe the value cell.
+  (let* ((kind (info :variable :kind symbol))
+         (wot (ecase kind
+                (:special "a special variable")
+                (:macro "a symbol macro")
+                (:constant "a constant variable")
+                (:global "a global variable")
+                (:unknown "an undefined variable")
+                (:alien "an alien variable"))))
+    (when (or (not (eq :unknown kind)) (boundp symbol))
+      (pprint-logical-block (stream nil)
+        (format stream "~@:_~A names ~A:" symbol wot)
+        (pprint-indent :block 2 stream)
+        (when (eq (info :variable :where-from symbol) :declared)
+          (format stream "~@:_Declared type: ~S"
+                  (type-specifier (info :variable :type symbol))))
+        (when (info :variable :always-bound symbol)
+          (format stream "~@:_Declared always-bound."))
+        (cond
+          ((eq kind :alien)
+           (let ((info (info :variable :alien-info symbol)))
+             (format stream "~@:_Value: ~S" (eval symbol))
+             (format stream "~@:_Type: ~S"
+                     (sb-alien-internals:unparse-alien-type
+                      (sb-alien::heap-alien-info-type info)))
+             (format stream "~@:_Address: #x~8,'0X"
+                     (sap-int (sb-alien::heap-alien-info-sap info)))))
+          ((eq kind :macro)
+           (let ((expansion (info :variable :macro-expansion symbol)))
+             (format stream "~@:_Expansion: ~S" expansion)))
+          ((boundp symbol)
+           (format stream "~:@_Value: ~S" (symbol-value symbol)))
+          ((not (eq kind :unknown))
+           (format stream "~:@_Currently unbound.")))
+        (describe-documentation symbol 'variable stream)
+        (terpri stream))))
+
+  ;; TODO: We could grovel over all packages looking for and
   ;; reporting other phenomena, e.g. IMPORT and SHADOW, or
-  ;; availability in some package even after (SYMBOL-PACKAGE X) has
+  ;; availability in some package even after (SYMBOL-PACKAGE SYMBOL) has
   ;; been set to NIL.
+  ;;
+  ;; TODO: It might also be nice to describe (find-package symbol)
+  ;; if one exists. Maybe not all the exports, etc, but the package
+  ;; documentation.
+  (describe-function symbol nil stream)
+  (describe-class symbol nil stream)
 
-  ;; Describe the value cell.
-  (let* ((kind (info :variable :kind x))
-        (wot (ecase kind
-               (:special "special variable")
-               (:constant "constant")
-               (:global "undefined variable")
-               (:alien nil))))
-    (cond
-     ((eq kind :alien)
-      (let ((info (info :variable :alien-info x)))
-       (format s "~@:_~@<It is an alien at #X~8,'0X of type ~3I~:_~S.~:>~@:_"
-               (sap-int (eval (sb-alien::heap-alien-info-sap-form info)))
-               (sb-alien-internals:unparse-alien-type
-                (sb-alien::heap-alien-info-type info)))
-       (format s "~@<Its current value is ~3I~:_~S.~:>"
-               (eval x))))
-     ((boundp x)
-      (format s "~@:_It is a ~A; its ~_value is ~S." wot (symbol-value x)))
-     ((not (eq kind :global))
-      (format s "~@:_It is a ~A; no current value." wot)))
-
-    (when (eq (info :variable :where-from x) :declared)
-      (format s "~@:_Its declared type ~_is ~S."
-             (type-specifier (info :variable :type x))))
-
-    (%describe-doc x s 'variable kind))
+  ;; Type specifier
+  (let* ((kind (info :type :kind symbol))
+         (fun (case kind
+                (:defined
+                 (or (info :type :expander symbol) t))
+                (:primitive
+                 (or (info :type :translator symbol) t)))))
+    (when fun
+      (pprint-newline :mandatory stream)
+      (pprint-logical-block (stream nil)
+        (format stream "~@:_~A names a ~@[primitive~* ~]type-specifier:"
+                symbol
+                (eq kind :primitive))
+        (pprint-indent :block 2 stream)
+        (describe-documentation symbol 'type stream (eq t fun))
+        (unless (eq t fun)
+          (describe-lambda-list (if (eq :primitive kind)
+                                    (%fun-lambda-list fun)
+                                    (info :type :lambda-list symbol))
+                                stream)
+          (multiple-value-bind (expansion ok)
+              (handler-case (typexpand-1 symbol)
+                (error () (values nil nil)))
+            (when ok
+              (format stream "~@:_Expansion: ~S" expansion)))))
+      (terpri stream)))
+
+  (when (or (member symbol sb-c::*policy-qualities*)
+            (assoc symbol sb-c::*policy-dependent-qualities*))
+    (pprint-logical-block (stream nil)
+      (pprint-newline :mandatory stream)
+      (pprint-indent :block 2 stream)
+      (format stream "~A names a~:[ dependent~;n~] optimization policy quality:"
+              symbol
+              (member symbol sb-c::*policy-qualities*))
+      (describe-documentation symbol 'optimize stream t))
+    (terpri stream))
 
   ;; Print out properties.
-  (format s "~@[~@:_Its SYMBOL-PLIST is ~@<~2I~_~S~:>.~]" (symbol-plist x))
-
-  ;; Describe the function cell.
-  (cond ((macro-function x)
-        (%describe-function (macro-function x) s :macro x))
-       ((special-operator-p x)
-        (%describe-doc x s 'function "Special form"))
-       ((fboundp x)
-        (%describe-function (fdefinition x) s :function x)))
-
-  ;; FIXME: Print out other stuff from the INFO database:
-  ;;   * Does it name a type or class?
-  ;;   * Is it a structure accessor? (This is important since those are 
-  ;;     magical in some ways, e.g. blasting the structure if you 
-  ;;     redefine them.)
-
-  ;; Print other documentation.
-  (%describe-doc x s 'structure "Structure")
-  (%describe-doc x s 'type "Type")
-  (%describe-doc x s 'setf "Setf macro")
-  (dolist (assoc (info :random-documentation :stuff x))
-    (format s
-           "~@:_Documentation on the ~(~A~):~@:_~A"
-           (car assoc)
-           (cdr assoc))))
+  (let ((plist (symbol-plist symbol)))
+    (when plist
+      (pprint-logical-block (stream nil)
+        (format stream "~%Symbol-plist:")
+        (pprint-indent :block 2 stream)
+        (sb-pcl::doplist (key value) plist
+          (format stream "~@:_~A -> ~A"
+                  (prin1-to-line key :columns 2 :reserve 5)
+                  (prin1-to-line value :columns 2 :reserve 5))))
+      (terpri stream))))
+
+(defmethod describe-object ((package package) stream)
+  (print-standard-describe-header package stream)
+  (pprint-logical-block (stream nil)
+    (describe-documentation package t stream)
+    (flet ((humanize (list)
+             (sort (mapcar (lambda (x)
+                             (if (packagep x)
+                                 (package-name x)
+                                 x))
+                           list)
+                   #'string<))
+           (out (label list)
+             (describe-stuff label list stream :escape nil)))
+      (let ((implemented (humanize (package-implemented-by-list package)))
+            (implements (humanize (package-implements-list package)))
+            (nicks (humanize (package-nicknames package)))
+            (uses (humanize (package-use-list package)))
+            (used (humanize (package-used-by-list package)))
+            (shadows (humanize (package-shadowing-symbols package)))
+            (this (list (package-name package)))
+            (exports nil))
+        (do-external-symbols (ext package)
+          (push ext exports))
+        (setf exports (humanize exports))
+        (when (package-locked-p package)
+          (format stream "~@:_Locked."))
+        (when (set-difference implemented this :test #'string=)
+          (out "Implemented-by-list" implemented))
+        (when (set-difference implements this :test #'string=)
+          (out "Implements-list" implements))
+        (out "Nicknames" nicks)
+        (out "Use-list" uses)
+        (out "Used-by-list" used)
+        (out "Shadows" shadows)
+        (out "Exports" exports)
+        (format stream "~@:_~S internal symbols."
+                (package-internal-symbol-count package))))
+    (terpri stream)))
+\f
+;;;; Helpers to deal with shared functionality
+
+(defun describe-class (name class stream)
+  (let* ((by-name (not class))
+         (name (if class (class-name class) name))
+         (class (if class class (find-class name nil))))
+    (when class
+      (let ((metaclass-name (class-name (class-of class))))
+        (pprint-logical-block (stream nil)
+          (when by-name
+            (format stream "~@:_~A names the ~(~A~) ~S:"
+                    name
+                    metaclass-name
+                    class)
+            (pprint-indent :block 2 stream))
+          (describe-documentation class t stream)
+          (when (sb-mop:class-finalized-p class)
+            (describe-stuff "Class precedence-list"
+                            (mapcar #'class-name-or-class (sb-mop:class-precedence-list class))
+                            stream))
+          (describe-stuff "Direct superclasses"
+                          (mapcar #'class-name-or-class (sb-mop:class-direct-superclasses class))
+                          stream)
+          (let ((subs (mapcar #'class-name-or-class (sb-mop:class-direct-subclasses class))))
+            (if subs
+                (describe-stuff "Direct subclasses" subs stream)
+                (format stream "~@:_No subclasses.")))
+          (unless (sb-mop:class-finalized-p class)
+            (format stream "~@:_Not yet finalized."))
+          (if (eq 'structure-class metaclass-name)
+              (let* ((dd (find-defstruct-description name))
+                     (slots (dd-slots dd)))
+                (if slots
+                    (format stream "~@:_Slots:~:{~@:_  ~S~
+                                    ~@:_    Type: ~A ~@[~A~]~
+                                    ~@:_    Initform: ~S~}"
+                            (mapcar (lambda (dsd)
+                                      (list
+                                       (dsd-name dsd)
+                                       (dsd-type dsd)
+                                       (unless (eq t (dsd-raw-type dsd))
+                                         "(unboxed)")
+                                       (dsd-default dsd)))
+                                    slots))
+                    (format stream "~@:_No slots.")))
+              (let ((slots (sb-mop:class-direct-slots class)))
+                (if slots
+                    (format stream "~@:_Direct slots:~:{~@:_  ~S~
+                                    ~@[~@:_    Type: ~S~]~
+                                    ~@[~@:_    Allocation: ~S~]~
+                                    ~@[~@:_    Initargs: ~{~S~^, ~}~]~
+                                    ~@[~@:_    Initform: ~S~]~
+                                    ~@[~@:_    Readers: ~{~S~^, ~}~]~
+                                    ~@[~@:_    Writers: ~{~S~^, ~}~]~
+                                    ~@[~@:_    Documentation:~@:_     ~@<~@;~A~:>~]~}"
+                            (mapcar (lambda (slotd)
+                                      (list (sb-mop:slot-definition-name slotd)
+                                            (let ((type (sb-mop:slot-definition-type slotd)))
+                                              (unless (eq t type) type))
+                                            (let ((alloc (sb-mop:slot-definition-allocation slotd)))
+                                              (unless (eq :instance alloc) alloc))
+                                            (sb-mop:slot-definition-initargs slotd)
+                                            (sb-mop:slot-definition-initform slotd)
+                                            (sb-mop:slot-definition-readers slotd)
+                                            (sb-mop:slot-definition-writers slotd)
+                                            ;; FIXME: does this get the prefix right?
+                                            (quiet-doc slotd t)))
+                                    slots))
+                    (format stream "~@:_No direct slots."))))
+          (pprint-indent :block 0 stream)
+          (pprint-newline :mandatory stream))))))
+
+(defun describe-instance (object stream)
+  (let* ((class (class-of object))
+         (slotds (sb-mop:class-slots class))
+         (max-slot-name-length 0)
+         (plist nil))
+
+    ;; Figure out a good width for the slot-name column.
+    (flet ((adjust-slot-name-length (name)
+             (setf max-slot-name-length
+                   (max max-slot-name-length (length (symbol-name name))))))
+      (dolist (slotd slotds)
+        (adjust-slot-name-length (sb-mop:slot-definition-name slotd))
+        (push slotd (getf plist (sb-mop:slot-definition-allocation slotd))))
+      (setf max-slot-name-length  (min (+ max-slot-name-length 3) 30)))
+
+    ;; Now that we know the width, we can print.
+    (flet ((describe-slot (name value)
+             (format stream "~%  ~A~VT = ~A" name max-slot-name-length
+                     (prin1-to-line value))))
+      (sb-pcl::doplist (allocation slots) plist
+        (format stream "~%Slots with ~S allocation:" allocation)
+        (dolist (slotd (nreverse slots))
+          (describe-slot
+           (sb-mop:slot-definition-name slotd)
+           (sb-pcl::slot-value-or-default object (sb-mop:slot-definition-name slotd))))))
+    (unless slotds
+      (format stream "~@:_No slots."))
+    (terpri stream)))
+
+(defun quiet-doc (object type)
+  (handler-bind ((warning #'muffle-warning))
+    (documentation object type)))
+
+(defun describe-documentation (object type stream &optional undoc newline)
+  (let ((doc (quiet-doc object type)))
+    (cond (doc
+           (format stream "~@:_Documentation:~@:_")
+           (pprint-logical-block (stream nil :per-line-prefix "  ")
+             (princ doc stream)))
+          (undoc
+           (format stream "~@:_(undocumented)")))
+    (when newline
+      (pprint-newline :mandatory stream))))
+
+(defun describe-stuff (label list stream &key (escape t))
+  (when list
+    (if escape
+        (format stream "~@:_~A:~@<~;~{ ~S~^,~:_~}~;~:>" label list)
+        (format stream "~@:_~A:~@<~;~{ ~A~^,~:_~}~;~:>" label list))))
+
+(defun describe-lambda-list (lambda-list stream)
+  (let ((*print-circle* nil)
+        (*print-level* 24)
+        (*print-length* 24))
+    (format stream "~@:_Lambda-list: ~:A" lambda-list)))
+
+(defun describe-function-source (function stream)
+  (if (compiled-function-p function)
+      (let* ((code (fun-code-header (%fun-fun function)))
+             (info (sb-kernel:%code-debug-info code)))
+        (when info
+          (let ((source (sb-c::debug-info-source info)))
+            (when source
+              (let ((namestring (sb-c::debug-source-namestring source)))
+                ;; This used to also report the times the source was created
+                ;; and compiled, but that seems more like noise than useful
+                ;; information -- but FWIW that are to be had as
+                ;; SB-C::DEBUG-SOUCE-CREATED/COMPILED.
+                (cond (namestring
+                       (format stream "~@:_Source file: ~A" namestring))
+                      ((sb-di:debug-source-form source)
+                       (format stream "~@:_Source form:~@:_  ~S"
+                               (sb-di:debug-source-form source)))))))))
+      #+sb-eval
+      (let ((source (sb-eval:interpreted-function-source-location function)))
+        (when source
+          (let ((namestring (sb-c:definition-source-location-namestring source)))
+            (when namestring
+              (format stream "~@:_Source file: ~A" namestring)))))))
+
+(defun describe-function (name function stream)
+  (let ((name (if function (fun-name function) name)))
+    (if (not (or function (and (legal-fun-name-p name) (fboundp name))))
+        ;; Not defined, but possibly the type is declared, or we have
+        ;; compiled calls to it.
+        (when (legal-fun-name-p name)
+          (multiple-value-bind (from sure) (info :function :where-from name)
+            (when (or (eq :declared from) (and sure (eq :assumed from)))
+              (pprint-logical-block (stream nil)
+                (format stream "~%~A names an undefined function" name)
+                (pprint-indent :block 2 stream)
+                (format stream "~@:_~:(~A~) type: ~S"
+                        from
+                        (type-specifier (info :function :type name)))))))
+        ;; Defined.
+        (multiple-value-bind (fun what lambda-list derived-type declared-type
+                              inline methods)
+            (cond ((and (not function) (symbolp name) (special-operator-p name))
+                   (let ((fun (symbol-function name)))
+                     (values fun "a special operator" (%fun-lambda-list fun))))
+                  ((and (not function) (symbolp name) (macro-function name))
+                   (let ((fun (macro-function name)))
+                     (values fun "a macro" (%fun-lambda-list fun))))
+                  (t
+                   (let* ((fun (or function (fdefinition name)))
+                          (derived-type (and function
+                                             (%fun-type function)))
+                          (legal-name-p (legal-fun-name-p name))
+                          (ctype (and legal-name-p
+                                      (info :function :type name)))
+                          (type (and ctype (type-specifier ctype)))
+                          (from (and legal-name-p
+                                     (info :function :where-from name)))
+                          declared-type)
+                     ;; Ensure lazy pickup of information
+                     ;; from methods.
+                     (when legal-name-p
+                       (sb-c::maybe-update-info-for-gf name))
+                     (cond ((not type))
+                           ((eq from :declared)
+                            (setf declared-type type))
+                           ((and (not derived-type)
+                                 (member from '(:defined-method :defined)))
+                            (setf derived-type type)))
+                     (unless derived-type
+                       (setf derived-type (%fun-type fun)))
+                     (if (typep fun 'standard-generic-function)
+                         (values fun
+                                 "a generic function"
+                                 (sb-mop:generic-function-lambda-list fun)
+                                 derived-type
+                                 declared-type
+                                 nil
+                                 (or (sb-mop:generic-function-methods fun)
+                                     :none))
+                         (values fun
+                                 (if (compiled-function-p fun)
+                                     "a compiled function"
+                                     "an interpreted function")
+                                 (%fun-lambda-list fun)
+                                 derived-type
+                                 declared-type
+                                 (cons
+                                  (info :function :inlinep name)
+                                  (info :function :inline-expansion-designator
+                                        name)))))))
+          (pprint-logical-block (stream nil)
+            (unless function
+              (format stream "~%~A names ~A:" name what)
+              (pprint-indent :block 2 stream))
+            (describe-lambda-list lambda-list stream)
+            (when declared-type
+              (format stream "~@:_Declared type: ~S" declared-type))
+            (when (and derived-type
+                       (not (equal declared-type derived-type)))
+              (format stream "~@:_Derived type: ~S" derived-type))
+            (describe-documentation name 'function stream)
+            (when (car inline)
+              (format stream "~@:_Inline proclamation: ~
+                              ~A (~:[no ~;~]inline expansion available)"
+                      (car inline)
+                      (cdr inline)))
+            (awhen (info :function :info name)
+              (awhen (sb-c::decode-ir1-attributes (sb-c::fun-info-attributes it))
+                  (format stream "~@:_Known attributes: ~(~{~A~^, ~}~)" it)))
+            (when methods
+              (format stream "~@:_Method-combination: ~S"
+                      (sb-pcl::method-combination-type-name
+                       (sb-pcl:generic-function-method-combination fun)))
+              (cond ((eq :none methods)
+                     (format stream "~@:_No methods."))
+                    (t
+                     (pprint-newline :mandatory stream)
+                     (pprint-logical-block (stream nil)
+                       (format stream "Methods:")
+                       (dolist (method methods)
+                         (pprint-indent :block 2 stream)
+                         (format stream "~@:_(~A ~{~S ~}~:S)"
+                                 name
+                                 (method-qualifiers method)
+                                 (sb-pcl::unparse-specializers
+                                  fun (sb-mop:method-specializers method)))
+                         (pprint-indent :block 4 stream)
+                         (describe-documentation method t stream nil))))))
+            (describe-function-source fun stream)
+            (terpri stream)))))
+  (unless function
+    (awhen (and (legal-fun-name-p name) (compiler-macro-function name))
+      (pprint-logical-block (stream nil)
+        (format stream "~@:_~A has a compiler-macro:" name)
+        (pprint-indent :block 2 stream)
+        (describe-documentation it t stream)
+        (describe-function-source it stream))
+      (terpri stream))
+    (when (and (consp name) (eq 'setf (car name)) (not (cddr name)))
+      (let* ((name2 (second name))
+             (inverse (info :setf :inverse name2))
+             (expander (info :setf :expander name2)))
+        (cond (inverse
+               (pprint-logical-block (stream nil)
+                 (format stream "~&~A has setf-expansion: ~S"
+                         name inverse)
+                 (pprint-indent :block 2 stream)
+                 (describe-documentation name2 'setf stream))
+               (terpri stream))
+              (expander
+               (pprint-logical-block (stream nil)
+                 (format stream "~&~A has a complex setf-expansion:"
+                         name)
+                 (pprint-indent :block 2 stream)
+                 (describe-lambda-list (%fun-lambda-list expander) stream)
+                 (describe-documentation name2 'setf stream t)
+                 (describe-function-source expander stream))
+               (terpri stream)))))
+    (when (symbolp name)
+      (describe-function `(setf ,name) nil stream))))