3 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
12 (in-package "SB!IMPL")
14 ;;;; exported printer control variables
16 ;;; FIXME: Many of these have nontrivial types, e.g. *PRINT-LEVEL*,
17 ;;; *PRINT-LENGTH*, and *PRINT-LINES* are (OR NULL UNSIGNED-BYTE).
19 (defvar *print-readably
* nil
21 "If true, all objects will printed readably. If readable printing is
22 impossible, an error will be signalled. This overrides the value of
24 (defvar *print-escape
* t
26 "Should we print in a reasonably machine-readable way? (possibly
27 overridden by *PRINT-READABLY*)")
28 (defvar *print-pretty
* nil
; (set later when pretty-printer is initialized)
30 "Should pretty printing be used?")
31 (defvar *print-base
* 10.
33 "the output base for RATIONALs (including integers)")
34 (defvar *print-radix
* nil
36 "Should base be verified when printing RATIONALs?")
37 (defvar *print-level
* nil
39 "How many levels should be printed before abbreviating with \"#\"?")
40 (defvar *print-length
* nil
42 "How many elements at any level should be printed before abbreviating
44 (defvar *print-circle
* nil
46 "Should we use #n= and #n# notation to preserve uniqueness in general (and
47 circularity in particular) when printing?")
48 (defvar *print-case
* :upcase
50 "What case should the printer should use default?")
51 (defvar *print-array
* t
53 "Should the contents of arrays be printed?")
54 (defvar *print-gensym
* t
56 "Should #: prefixes be used when printing symbols with null SYMBOL-PACKAGE?")
57 (defvar *print-lines
* nil
59 "the maximum number of lines to print per object")
60 (defvar *print-right-margin
* nil
62 "the position of the right margin in ems (for pretty-printing)")
63 (defvar *print-miser-width
* nil
65 "If the remaining space between the current column and the right margin
66 is less than this, then print using ``miser-style'' output. Miser
67 style conditional newlines are turned on, and all indentations are
68 turned off. If NIL, never use miser mode.")
69 (defvar *print-pprint-dispatch
*)
71 (setf (fdocumentation '*print-pprint-dispatch
* 'variable
)
72 "the pprint-dispatch-table that controls how to pretty-print objects")
74 (defmacro with-standard-io-syntax
(&body body
)
76 "Bind the reader and printer control variables to values that enable READ
77 to reliably read the results of PRINT. These values are:
78 *PACKAGE* the COMMON-LISP-USER package
88 *PRINT-MISER-WIDTH* NIL
92 *PRINT-RIGHT-MARGIN* NIL
94 *READ-DEFAULT-FLOAT-FORMAT* SINGLE-FLOAT
97 *READTABLE* the standard readtable"
98 `(%with-standard-io-syntax
(lambda () ,@body
)))
100 (defun %with-standard-io-syntax
(function)
101 (declare (type function function
))
102 (let ((*package
* (find-package "COMMON-LISP-USER"))
105 (*print-case
* :upcase
)
112 (*print-miser-width
* nil
)
116 (*print-right-margin
* nil
)
118 (*read-default-float-format
* 'single-float
)
120 (*read-suppress
* nil
)
121 ;; FIXME: It doesn't seem like a good idea to expose our
122 ;; disaster-recovery *STANDARD-READTABLE* here. What if some
123 ;; enterprising user corrupts the disaster-recovery readtable
124 ;; by doing destructive readtable operations within
125 ;; WITH-STANDARD-IO-SYNTAX? Perhaps we should do a
126 ;; COPY-READTABLE? The consing would be unfortunate, though.
127 (*readtable
* *standard-readtable
*))
130 ;;;; routines to print objects
132 (defun write (object &key
133 ((:stream stream
) *standard-output
*)
134 ((:escape
*print-escape
*) *print-escape
*)
135 ((:radix
*print-radix
*) *print-radix
*)
136 ((:base
*print-base
*) *print-base
*)
137 ((:circle
*print-circle
*) *print-circle
*)
138 ((:pretty
*print-pretty
*) *print-pretty
*)
139 ((:level
*print-level
*) *print-level
*)
140 ((:length
*print-length
*) *print-length
*)
141 ((:case
*print-case
*) *print-case
*)
142 ((:array
*print-array
*) *print-array
*)
143 ((:gensym
*print-gensym
*) *print-gensym
*)
144 ((:readably
*print-readably
*) *print-readably
*)
145 ((:right-margin
*print-right-margin
*)
146 *print-right-margin
*)
147 ((:miser-width
*print-miser-width
*)
149 ((:lines
*print-lines
*) *print-lines
*)
150 ((:pprint-dispatch
*print-pprint-dispatch
*)
151 *print-pprint-dispatch
*))
153 "Output OBJECT to the specified stream, defaulting to *STANDARD-OUTPUT*"
154 (output-object object
(out-synonym-of stream
))
157 (defun prin1 (object &optional stream
)
159 "Output a mostly READable printed representation of OBJECT on the specified
161 (let ((*print-escape
* t
))
162 (output-object object
(out-synonym-of stream
)))
165 (defun princ (object &optional stream
)
167 "Output an aesthetic but not necessarily READable printed representation
168 of OBJECT on the specified STREAM."
169 (let ((*print-escape
* nil
)
170 (*print-readably
* nil
))
171 (output-object object
(out-synonym-of stream
)))
174 (defun print (object &optional stream
)
176 "Output a newline, the mostly READable printed representation of OBJECT, and
177 space to the specified STREAM."
178 (let ((stream (out-synonym-of stream
)))
180 (prin1 object stream
)
181 (write-char #\space stream
)
184 (defun pprint (object &optional stream
)
186 "Prettily output OBJECT preceded by a newline."
187 (let ((*print-pretty
* t
)
189 (stream (out-synonym-of stream
)))
191 (output-object object stream
))
194 (defun write-to-string
196 ((:escape
*print-escape
*) *print-escape
*)
197 ((:radix
*print-radix
*) *print-radix
*)
198 ((:base
*print-base
*) *print-base
*)
199 ((:circle
*print-circle
*) *print-circle
*)
200 ((:pretty
*print-pretty
*) *print-pretty
*)
201 ((:level
*print-level
*) *print-level
*)
202 ((:length
*print-length
*) *print-length
*)
203 ((:case
*print-case
*) *print-case
*)
204 ((:array
*print-array
*) *print-array
*)
205 ((:gensym
*print-gensym
*) *print-gensym
*)
206 ((:readably
*print-readably
*) *print-readably
*)
207 ((:right-margin
*print-right-margin
*) *print-right-margin
*)
208 ((:miser-width
*print-miser-width
*) *print-miser-width
*)
209 ((:lines
*print-lines
*) *print-lines
*)
210 ((:pprint-dispatch
*print-pprint-dispatch
*)
211 *print-pprint-dispatch
*))
213 "Return the printed representation of OBJECT as a string."
214 (stringify-object object
))
216 (defun prin1-to-string (object)
218 "Return the printed representation of OBJECT as a string with
220 (let ((*print-escape
* t
))
221 (stringify-object object
)))
223 (defun princ-to-string (object)
225 "Return the printed representation of OBJECT as a string with
227 (let ((*print-escape
* nil
)
228 (*print-readably
* nil
))
229 (stringify-object object
)))
231 ;;; This produces the printed representation of an object as a string.
232 ;;; The few ...-TO-STRING functions above call this.
233 (defun stringify-object (object)
234 (let ((stream (make-string-output-stream)))
235 (setup-printer-state)
236 (output-object object stream
)
237 (get-output-stream-string stream
)))
239 ;;;; support for the PRINT-UNREADABLE-OBJECT macro
241 ;;; guts of PRINT-UNREADABLE-OBJECT
242 (defun %print-unreadable-object
(object stream type identity body
)
243 (declare (type (or null function
) body
))
244 (when *print-readably
*
245 (error 'print-not-readable
:object object
))
246 (flet ((print-description ()
248 (write (type-of object
) :stream stream
:circle nil
249 :level nil
:length nil
)
250 (write-char #\space stream
))
254 (when (or body
(not type
))
255 (write-char #\space stream
))
256 (write-char #\
{ stream
)
257 (write (get-lisp-obj-address object
) :stream stream
259 (write-char #\
} stream
))))
260 (cond ((print-pretty-on-stream-p stream
)
261 ;; Since we're printing prettily on STREAM, format the
262 ;; object within a logical block. PPRINT-LOGICAL-BLOCK does
263 ;; not rebind the stream when it is already a pretty stream,
264 ;; so output from the body will go to the same stream.
265 (pprint-logical-block (stream nil
:prefix
"#<" :suffix
">")
266 (print-description)))
268 (write-string "#<" stream
)
270 (write-char #\
> stream
))))
273 ;;;; OUTPUT-OBJECT -- the main entry point
275 ;;; Objects whose print representation identifies them EQLly don't
276 ;;; need to be checked for circularity.
277 (defun uniquely-identified-by-print-p (x)
281 (symbol-package x
))))
283 ;;; Output OBJECT to STREAM observing all printer control variables.
284 (defun output-object (object stream
)
285 (labels ((print-it (stream)
287 (sb!pretty
:output-pretty-object object stream
)
288 (output-ugly-object object stream
)))
290 (multiple-value-bind (marker initiate
)
291 (check-for-circularity object t
)
292 (if (eq initiate
:initiate
)
293 (let ((*circularity-hash-table
*
294 (make-hash-table :test
'eq
)))
295 (check-it (make-broadcast-stream))
296 (let ((*circularity-counter
* 0))
300 (when (handle-circularity marker stream
)
302 (print-it stream
))))))
303 (cond (;; Maybe we don't need to bother with circularity detection.
304 (or (not *print-circle
*)
305 (uniquely-identified-by-print-p object
))
307 (;; If we have already started circularity detection, this
308 ;; object might be a shared reference. If we have not, then
309 ;; if it is a compound object it might contain a circular
310 ;; reference to itself or multiple shared references.
311 (or *circularity-hash-table
*
312 (compound-object-p object
))
315 (print-it stream
)))))
317 ;;; a hack to work around recurring gotchas with printing while
318 ;;; DEFGENERIC PRINT-OBJECT is being built
320 ;;; (hopefully will go away naturally when CLOS moves into cold init)
321 (defvar *print-object-is-disabled-p
*)
323 ;;; Output OBJECT to STREAM observing all printer control variables
324 ;;; except for *PRINT-PRETTY*. Note: if *PRINT-PRETTY* is non-NIL,
325 ;;; then the pretty printer will be used for any components of OBJECT,
326 ;;; just not for OBJECT itself.
327 (defun output-ugly-object (object stream
)
329 ;; KLUDGE: The TYPECASE approach here is non-ANSI; the ANSI definition of
330 ;; PRINT-OBJECT says it provides printing and we're supposed to provide
331 ;; PRINT-OBJECT methods covering all classes. We deviate from this
332 ;; by using PRINT-OBJECT only when we print instance values. However,
333 ;; ANSI makes it hard to tell that we're deviating from this:
334 ;; (1) ANSI specifies that the user isn't supposed to call PRINT-OBJECT
336 ;; (2) ANSI (section 11.1.2.1.2) says it's undefined to define
337 ;; a method on an external symbol in the CL package which is
338 ;; applicable to arg lists containing only direct instances of
339 ;; standardized classes.
340 ;; Thus, in order for the user to detect our sleaziness in conforming
341 ;; code, he has to do something relatively obscure like
342 ;; (1) actually use tools like FIND-METHOD to look for PRINT-OBJECT
344 ;; (2) define a PRINT-OBJECT method which is specialized on the stream
345 ;; value (e.g. a Gray stream object).
346 ;; As long as no one comes up with a non-obscure way of detecting this
347 ;; sleaziness, fixing this nonconformity will probably have a low
348 ;; priority. -- WHN 2001-11-25
351 (output-symbol object stream
)
352 (output-list object stream
)))
354 (cond ((not (and (boundp '*print-object-is-disabled-p
*)
355 *print-object-is-disabled-p
*))
356 (print-object object stream
))
357 ((typep object
'structure-object
)
358 (default-structure-print object stream
*current-level-in-print
*))
360 (write-string "#<INSTANCE but not STRUCTURE-OBJECT>" stream
))))
361 (funcallable-instance
363 ((not (and (boundp '*print-object-is-disabled-p
*)
364 *print-object-is-disabled-p
*))
365 (print-object object stream
))
366 (t (output-fun object stream
))))
368 (output-fun object stream
))
370 (output-symbol object stream
))
374 (output-integer object stream
))
376 (output-float object stream
))
378 (output-ratio object stream
))
380 (output-ratio object stream
))
382 (output-complex object stream
))))
384 (output-character object stream
))
386 (output-vector object stream
))
388 (output-array object stream
))
390 (output-sap object stream
))
392 (output-weak-pointer object stream
))
394 (output-lra object stream
))
396 (output-code-component object stream
))
398 (output-fdefn object stream
))
400 (output-random object stream
))))
404 ;;; values of *PRINT-CASE* and (READTABLE-CASE *READTABLE*) the last
405 ;;; time the printer was called
406 (defvar *previous-case
* nil
)
407 (defvar *previous-readtable-case
* nil
)
409 ;;; This variable contains the current definition of one of three
410 ;;; symbol printers. SETUP-PRINTER-STATE sets this variable.
411 (defvar *internal-symbol-output-fun
* nil
)
413 ;;; This function sets the internal global symbol
414 ;;; *INTERNAL-SYMBOL-OUTPUT-FUN* to the right function depending on
415 ;;; the value of *PRINT-CASE*. See the manual for details. The print
416 ;;; buffer stream is also reset.
417 (defun setup-printer-state ()
418 (unless (and (eq *print-case
* *previous-case
*)
419 (eq (readtable-case *readtable
*) *previous-readtable-case
*))
420 (setq *previous-case
* *print-case
*)
421 (setq *previous-readtable-case
* (readtable-case *readtable
*))
422 (unless (member *print-case
* '(:upcase
:downcase
:capitalize
))
423 (setq *print-case
* :upcase
)
424 (error "invalid *PRINT-CASE* value: ~S" *previous-case
*))
425 (unless (member *previous-readtable-case
*
426 '(:upcase
:downcase
:invert
:preserve
))
427 (setf (readtable-case *readtable
*) :upcase
)
428 (error "invalid READTABLE-CASE value: ~S" *previous-readtable-case
*))
430 (setq *internal-symbol-output-fun
*
431 (case *previous-readtable-case
*
434 (:upcase
#'output-preserve-symbol
)
435 (:downcase
#'output-lowercase-symbol
)
436 (:capitalize
#'output-capitalize-symbol
)))
439 (:upcase
#'output-uppercase-symbol
)
440 (:downcase
#'output-preserve-symbol
)
441 (:capitalize
#'output-capitalize-symbol
)))
442 (:preserve
#'output-preserve-symbol
)
443 (:invert
#'output-invert-symbol
)))))
445 ;;; Output PNAME (a symbol-name or package-name) surrounded with |'s,
446 ;;; and with any embedded |'s or \'s escaped.
447 (defun output-quoted-symbol-name (pname stream
)
448 (write-char #\| stream
)
449 (dotimes (index (length pname
))
450 (let ((char (schar pname index
)))
451 (when (or (char= char
#\\) (char= char
#\|
))
452 (write-char #\\ stream
))
453 (write-char char stream
)))
454 (write-char #\| stream
))
456 (defun output-symbol (object stream
)
457 (if (or *print-escape
* *print-readably
*)
458 (let ((package (symbol-package object
))
459 (name (symbol-name object
)))
461 ;; The ANSI spec "22.1.3.3.1 Package Prefixes for Symbols"
462 ;; requires that keywords be printed with preceding colons
463 ;; always, regardless of the value of *PACKAGE*.
464 ((eq package
*keyword-package
*)
465 (write-char #\
: stream
))
466 ;; Otherwise, if the symbol's home package is the current
467 ;; one, then a prefix is never necessary.
468 ((eq package
(sane-package)))
469 ;; Uninterned symbols print with a leading #:.
471 (when (or *print-gensym
* *print-readably
*)
472 (write-string "#:" stream
)))
474 (multiple-value-bind (symbol accessible
)
475 (find-symbol name
(sane-package))
476 ;; If we can find the symbol by looking it up, it need not
477 ;; be qualified. This can happen if the symbol has been
478 ;; inherited from a package other than its home package.
479 (unless (and accessible
(eq symbol object
))
480 (output-symbol-name (package-name package
) stream
)
481 (multiple-value-bind (symbol externalp
)
482 (find-external-symbol name package
)
483 (declare (ignore symbol
))
485 (write-char #\
: stream
)
486 (write-string "::" stream
)))))))
487 (output-symbol-name name stream
))
488 (output-symbol-name (symbol-name object
) stream nil
)))
490 ;;; Output the string NAME as if it were a symbol name. In other
491 ;;; words, diddle its case according to *PRINT-CASE* and
493 (defun output-symbol-name (name stream
&optional
(maybe-quote t
))
494 (declare (type simple-string name
))
495 (let ((*readtable
* (if *print-readably
* *standard-readtable
* *readtable
*)))
496 (setup-printer-state)
497 (if (and maybe-quote
(symbol-quotep name
))
498 (output-quoted-symbol-name name stream
)
499 (funcall *internal-symbol-output-fun
* name stream
))))
501 ;;;; escaping symbols
503 ;;; When we print symbols we have to figure out if they need to be
504 ;;; printed with escape characters. This isn't a whole lot easier than
505 ;;; reading symbols in the first place.
507 ;;; For each character, the value of the corresponding element is a
508 ;;; fixnum with bits set corresponding to attributes that the
509 ;;; character has. At characters have at least one bit set, so we can
510 ;;; search for any character with a positive test.
511 (defvar *character-attributes
*
512 (make-array 160 ; FIXME
513 :element-type
'(unsigned-byte 16)
515 (declaim (type (simple-array (unsigned-byte 16) (#.160)) ; FIXME
516 *character-attributes
*))
518 ;;; constants which are a bit-mask for each interesting character attribute
519 (defconstant other-attribute
(ash 1 0)) ; Anything else legal.
520 (defconstant number-attribute
(ash 1 1)) ; A numeric digit.
521 (defconstant uppercase-attribute
(ash 1 2)) ; An uppercase letter.
522 (defconstant lowercase-attribute
(ash 1 3)) ; A lowercase letter.
523 (defconstant sign-attribute
(ash 1 4)) ; +-
524 (defconstant extension-attribute
(ash 1 5)) ; ^_
525 (defconstant dot-attribute
(ash 1 6)) ; .
526 (defconstant slash-attribute
(ash 1 7)) ; /
527 (defconstant funny-attribute
(ash 1 8)) ; Anything illegal.
529 (eval-when (:compile-toplevel
:load-toplevel
:execute
)
531 ;;; LETTER-ATTRIBUTE is a local of SYMBOL-QUOTEP. It matches letters
532 ;;; that don't need to be escaped (according to READTABLE-CASE.)
533 (defparameter *attribute-names
*
534 `((number . number-attribute
) (lowercase . lowercase-attribute
)
535 (uppercase . uppercase-attribute
) (letter . letter-attribute
)
536 (sign . sign-attribute
) (extension . extension-attribute
)
537 (dot . dot-attribute
) (slash . slash-attribute
)
538 (other . other-attribute
) (funny . funny-attribute
)))
542 (flet ((set-bit (char bit
)
543 (let ((code (char-code char
)))
544 (setf (aref *character-attributes
* code
)
545 (logior bit
(aref *character-attributes
* code
))))))
547 (dolist (char '(#\
! #\
@ #\$
#\%
#\
& #\
* #\
= #\~
#\
[ #\
] #\
{ #\
}
549 (set-bit char other-attribute
))
552 (set-bit (digit-char i
) number-attribute
))
554 (do ((code (char-code #\A
) (1+ code
))
555 (end (char-code #\Z
)))
557 (declare (fixnum code end
))
558 (set-bit (code-char code
) uppercase-attribute
)
559 (set-bit (char-downcase (code-char code
)) lowercase-attribute
))
561 (set-bit #\- sign-attribute
)
562 (set-bit #\
+ sign-attribute
)
563 (set-bit #\^ extension-attribute
)
564 (set-bit #\_ extension-attribute
)
565 (set-bit #\. dot-attribute
)
566 (set-bit #\
/ slash-attribute
)
568 ;; Mark anything not explicitly allowed as funny.
569 (dotimes (i 160) ; FIXME
570 (when (zerop (aref *character-attributes
* i
))
571 (setf (aref *character-attributes
* i
) funny-attribute
))))
573 ;;; For each character, the value of the corresponding element is the
574 ;;; lowest base in which that character is a digit.
575 (defvar *digit-bases
*
576 (make-array 128 ; FIXME
577 :element-type
'(unsigned-byte 8)
578 :initial-element
36))
579 (declaim (type (simple-array (unsigned-byte 8) (#.128)) ; FIXME
582 (let ((char (digit-char i
36)))
583 (setf (aref *digit-bases
* (char-code char
)) i
)))
585 ;;; A FSM-like thingie that determines whether a symbol is a potential
586 ;;; number or has evil characters in it.
587 (defun symbol-quotep (name)
588 (declare (simple-string name
))
589 (macrolet ((advance (tag &optional
(at-end t
))
592 ,(if at-end
'(go TEST-SIGN
) '(return nil
)))
593 (setq current
(schar name index
)
594 code
(char-code current
)
596 ((< code
160) (aref attributes code
))
597 ((upper-case-p current
) uppercase-attribute
)
598 ((lower-case-p current
) lowercase-attribute
)
599 (t other-attribute
)))
602 (test (&rest attributes
)
614 `(and (< code
128) ; FIXME
615 (< (the fixnum
(aref bases code
)) base
))))
617 (prog ((len (length name
))
618 (attributes *character-attributes
*)
619 (bases *digit-bases
*)
622 (case (readtable-case *readtable
*)
623 (:upcase uppercase-attribute
)
624 (:downcase lowercase-attribute
)
625 (t (logior lowercase-attribute uppercase-attribute
))))
630 (declare (fixnum len base index bits code
))
633 TEST-SIGN
; At end, see whether it is a sign...
634 (return (not (test sign
)))
636 OTHER
; not potential number, see whether funny chars...
637 (let ((mask (logxor (logior lowercase-attribute uppercase-attribute
640 (do ((i (1- index
) (1+ i
)))
641 ((= i len
) (return-from symbol-quotep nil
))
642 (unless (zerop (logand (let* ((char (schar name i
))
643 (code (char-code char
)))
645 ((< code
160) (aref attributes code
))
646 ((upper-case-p char
) uppercase-attribute
)
647 ((lower-case-p char
) lowercase-attribute
)
648 (t other-attribute
)))
650 (return-from symbol-quotep t
))))
655 (advance LAST-DIGIT-ALPHA
)
657 (when (test letter number other slash
) (advance OTHER nil
))
658 (when (char= current
#\.
) (advance DOT-FOUND
))
659 (when (test sign extension
) (advance START-STUFF nil
))
662 DOT-FOUND
; leading dots...
663 (when (test letter
) (advance START-DOT-MARKER nil
))
664 (when (digitp) (advance DOT-DIGIT
))
665 (when (test number other
) (advance OTHER nil
))
666 (when (test extension slash sign
) (advance START-DOT-STUFF nil
))
667 (when (char= current
#\.
) (advance DOT-FOUND
))
670 START-STUFF
; leading stuff before any dot or digit
673 (advance LAST-DIGIT-ALPHA
)
675 (when (test number other
) (advance OTHER nil
))
676 (when (test letter
) (advance START-MARKER nil
))
677 (when (char= current
#\.
) (advance START-DOT-STUFF nil
))
678 (when (test sign extension slash
) (advance START-STUFF nil
))
681 START-MARKER
; number marker in leading stuff...
682 (when (test letter
) (advance OTHER nil
))
685 START-DOT-STUFF
; leading stuff containing dot without digit...
686 (when (test letter
) (advance START-DOT-STUFF nil
))
687 (when (digitp) (advance DOT-DIGIT
))
688 (when (test sign extension dot slash
) (advance START-DOT-STUFF nil
))
689 (when (test number other
) (advance OTHER nil
))
692 START-DOT-MARKER
; number marker in leading stuff with dot..
693 ;; leading stuff containing dot without digit followed by letter...
694 (when (test letter
) (advance OTHER nil
))
697 DOT-DIGIT
; in a thing with dots...
698 (when (test letter
) (advance DOT-MARKER
))
699 (when (digitp) (advance DOT-DIGIT
))
700 (when (test number other
) (advance OTHER nil
))
701 (when (test sign extension dot slash
) (advance DOT-DIGIT
))
704 DOT-MARKER
; number marker in number with dot...
705 (when (test letter
) (advance OTHER nil
))
708 LAST-DIGIT-ALPHA
; previous char is a letter digit...
709 (when (or (digitp) (test sign slash
))
710 (advance ALPHA-DIGIT
))
711 (when (test letter number other dot
) (advance OTHER nil
))
714 ALPHA-DIGIT
; seen a digit which is a letter...
715 (when (or (digitp) (test sign slash
))
717 (advance LAST-DIGIT-ALPHA
)
718 (advance ALPHA-DIGIT
)))
719 (when (test letter
) (advance ALPHA-MARKER
))
720 (when (test number other dot
) (advance OTHER nil
))
723 ALPHA-MARKER
; number marker in number with alpha digit...
724 (when (test letter
) (advance OTHER nil
))
727 DIGIT
; seen only ordinary (non-alphabetic) numeric digits...
730 (advance ALPHA-DIGIT
)
732 (when (test number other
) (advance OTHER nil
))
733 (when (test letter
) (advance MARKER
))
734 (when (test extension slash sign
) (advance DIGIT
))
735 (when (char= current
#\.
) (advance DOT-DIGIT
))
738 MARKER
; number marker in a numeric number...
739 ;; ("What," you may ask, "is a 'number marker'?" It's something
740 ;; that a conforming implementation might use in number syntax.
741 ;; See ANSI 2.3.1.1 "Potential Numbers as Tokens".)
742 (when (test letter
) (advance OTHER nil
))
745 ;;;; *INTERNAL-SYMBOL-OUTPUT-FUN*
747 ;;;; case hackery: These functions are stored in
748 ;;;; *INTERNAL-SYMBOL-OUTPUT-FUN* according to the values of
749 ;;;; *PRINT-CASE* and READTABLE-CASE.
752 ;;; READTABLE-CASE *PRINT-CASE*
754 ;;; :DOWNCASE :DOWNCASE
756 (defun output-preserve-symbol (pname stream
)
757 (declare (simple-string pname
))
758 (write-string pname stream
))
761 ;;; READTABLE-CASE *PRINT-CASE*
762 ;;; :UPCASE :DOWNCASE
763 (defun output-lowercase-symbol (pname stream
)
764 (declare (simple-string pname
))
765 (dotimes (index (length pname
))
766 (let ((char (schar pname index
)))
767 (write-char (char-downcase char
) stream
))))
770 ;;; READTABLE-CASE *PRINT-CASE*
771 ;;; :DOWNCASE :UPCASE
772 (defun output-uppercase-symbol (pname stream
)
773 (declare (simple-string pname
))
774 (dotimes (index (length pname
))
775 (let ((char (schar pname index
)))
776 (write-char (char-upcase char
) stream
))))
779 ;;; READTABLE-CASE *PRINT-CASE*
780 ;;; :UPCASE :CAPITALIZE
781 ;;; :DOWNCASE :CAPITALIZE
782 (defun output-capitalize-symbol (pname stream
)
783 (declare (simple-string pname
))
784 (let ((prev-not-alphanum t
)
785 (up (eq (readtable-case *readtable
*) :upcase
)))
786 (dotimes (i (length pname
))
787 (let ((char (char pname i
)))
789 (if (or prev-not-alphanum
(lower-case-p char
))
791 (char-downcase char
))
792 (if prev-not-alphanum
796 (setq prev-not-alphanum
(not (alphanumericp char
)))))))
799 ;;; READTABLE-CASE *PRINT-CASE*
801 (defun output-invert-symbol (pname stream
)
802 (declare (simple-string pname
))
805 (dotimes (i (length pname
))
806 (let ((ch (schar pname i
)))
807 (when (both-case-p ch
)
808 (if (upper-case-p ch
)
810 (setq all-upper nil
)))))
811 (cond (all-upper (output-lowercase-symbol pname stream
))
812 (all-lower (output-uppercase-symbol pname stream
))
814 (write-string pname stream
)))))
818 (let ((*readtable
* (copy-readtable nil
)))
819 (format t
"READTABLE-CASE Input Symbol-name~@
820 ----------------------------------~%")
821 (dolist (readtable-case '(:upcase
:downcase
:preserve
:invert
))
822 (setf (readtable-case *readtable
*) readtable-case
)
823 (dolist (input '("ZEBRA" "Zebra" "zebra"))
824 (format t
"~&:~A~16T~A~24T~A"
825 (string-upcase readtable-case
)
827 (symbol-name (read-from-string input
)))))))
830 (let ((*readtable
* (copy-readtable nil
)))
831 (format t
"READTABLE-CASE *PRINT-CASE* Symbol-name Output Princ~@
832 --------------------------------------------------------~%")
833 (dolist (readtable-case '(:upcase
:downcase
:preserve
:invert
))
834 (setf (readtable-case *readtable
*) readtable-case
)
835 (dolist (*print-case
* '(:upcase
:downcase
:capitalize
))
836 (dolist (symbol '(|ZEBRA| |Zebra| |zebra|
))
837 (format t
"~&:~A~15T:~A~29T~A~42T~A~50T~A"
838 (string-upcase readtable-case
)
839 (string-upcase *print-case
*)
841 (prin1-to-string symbol
)
842 (princ-to-string symbol
)))))))
845 ;;;; recursive objects
847 (defun output-list (list stream
)
848 (descend-into (stream)
849 (write-char #\
( stream
)
853 (punt-print-if-too-long length stream
)
854 (output-object (pop list
) stream
)
857 (when (or (atom list
)
858 (check-for-circularity list
))
859 (write-string " . " stream
)
860 (output-object list stream
)
862 (write-char #\space stream
)
864 (write-char #\
) stream
)))
866 (defun output-vector (vector stream
)
867 (declare (vector vector
))
868 (cond ((stringp vector
)
869 (cond ((and *print-readably
*
870 (not (eq (array-element-type vector
)
873 (make-array 0 :element-type
'character
))))))
874 (error 'print-not-readable
:object vector
))
875 ((or *print-escape
* *print-readably
*)
876 (write-char #\" stream
)
877 (quote-string vector stream
)
878 (write-char #\" stream
))
880 (write-string vector stream
))))
881 ((not (or *print-array
* *print-readably
*))
882 (output-terse-array vector stream
))
883 ((bit-vector-p vector
)
884 (write-string "#*" stream
)
885 (dovector (bit vector
)
886 ;; (Don't use OUTPUT-OBJECT here, since this code
887 ;; has to work for all possible *PRINT-BASE* values.)
888 (write-char (if (zerop bit
) #\
0 #\
1) stream
)))
890 (when (and *print-readably
*
891 (not (array-readably-printable-p vector
)))
892 (error 'print-not-readable
:object vector
))
893 (descend-into (stream)
894 (write-string "#(" stream
)
895 (dotimes (i (length vector
))
897 (write-char #\space stream
))
898 (punt-print-if-too-long i stream
)
899 (output-object (aref vector i
) stream
))
900 (write-string ")" stream
)))))
902 ;;; This function outputs a string quoting characters sufficiently
903 ;;; so that someone can read it in again. Basically, put a slash in
904 ;;; front of an character satisfying NEEDS-SLASH-P.
905 (defun quote-string (string stream
)
906 (macrolet ((needs-slash-p (char)
907 ;; KLUDGE: We probably should look at the readtable, but just do
908 ;; this for now. [noted by anonymous long ago] -- WHN 19991130
909 `(or (char= ,char
#\\)
911 (with-array-data ((data string
) (start) (end)
912 :check-fill-pointer t
)
913 (do ((index start
(1+ index
)))
915 (let ((char (schar data index
)))
916 (when (needs-slash-p char
) (write-char #\\ stream
))
917 (write-char char stream
))))))
919 (defun array-readably-printable-p (array)
920 (and (eq (array-element-type array
) t
)
921 (let ((zero (position 0 (array-dimensions array
)))
922 (number (position 0 (array-dimensions array
)
923 :test
(complement #'eql
)
925 (or (null zero
) (null number
) (> zero number
)))))
927 ;;; Output the printed representation of any array in either the #< or #A
929 (defun output-array (array stream
)
930 (if (or *print-array
* *print-readably
*)
931 (output-array-guts array stream
)
932 (output-terse-array array stream
)))
934 ;;; Output the abbreviated #< form of an array.
935 (defun output-terse-array (array stream
)
936 (let ((*print-level
* nil
)
937 (*print-length
* nil
))
938 (print-unreadable-object (array stream
:type t
:identity t
))))
940 ;;; Output the readable #A form of an array.
941 (defun output-array-guts (array stream
)
942 (when (and *print-readably
*
943 (not (array-readably-printable-p array
)))
944 (error 'print-not-readable
:object array
))
945 (write-char #\
# stream
)
946 (let ((*print-base
* 10)
948 (output-integer (array-rank array
) stream
))
949 (write-char #\A stream
)
950 (with-array-data ((data array
) (start) (end))
951 (declare (ignore end
))
952 (sub-output-array-guts data
(array-dimensions array
) stream start
)))
954 (defun sub-output-array-guts (array dimensions stream index
)
955 (declare (type (simple-array * (*)) array
) (fixnum index
))
956 (cond ((null dimensions
)
957 (output-object (aref array index
) stream
))
959 (descend-into (stream)
960 (write-char #\
( stream
)
961 (let* ((dimension (car dimensions
))
962 (dimensions (cdr dimensions
))
963 (count (reduce #'* dimensions
)))
964 (dotimes (i dimension
)
966 (write-char #\space stream
))
967 (punt-print-if-too-long i stream
)
968 (sub-output-array-guts array dimensions stream index
)
970 (write-char #\
) stream
)))))
972 ;;; a trivial non-generic-function placeholder for PRINT-OBJECT, for
973 ;;; use until CLOS is set up (at which time it will be replaced with
974 ;;; the real generic function implementation)
975 (defun print-object (instance stream
)
976 (default-structure-print instance stream
*current-level-in-print
*))
978 ;;;; integer, ratio, and complex printing (i.e. everything but floats)
980 (defun %output-radix
(base stream
)
981 (write-char #\
# stream
)
982 (write-char (case base
986 (t (%output-reasonable-integer-in-base base
10 stream
)
990 (defun %output-reasonable-integer-in-base
(n base stream
)
991 (multiple-value-bind (q r
)
993 ;; Recurse until you have all the digits pushed on
996 (%output-reasonable-integer-in-base q base stream
))
997 ;; Then as each recursive call unwinds, turn the
998 ;; digit (in remainder) into a character and output
1001 (schar "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" r
)
1004 ;;; *POWER-CACHE* is an alist mapping bases to power-vectors. It is
1005 ;;; filled and probed by POWERS-FOR-BASE. SCRUB-POWER-CACHE is called
1006 ;;; always prior a GC to drop overly large bignums from the cache.
1008 ;;; It doesn't need a lock, but if you work on SCRUB-POWER-CACHE or
1009 ;;; POWERS-FOR-BASE, see that you don't break the assumptions!
1010 (defvar *power-cache
* nil
)
1012 (defconstant +power-cache-integer-length-limit
+ 2048)
1014 (defun scrub-power-cache ()
1015 (let ((cache *power-cache
*))
1016 (dolist (cell cache
)
1017 (let ((powers (cdr cell
)))
1018 (declare (simple-vector powers
))
1019 (let ((too-big (position-if
1021 (>= (integer-length x
)
1022 +power-cache-integer-length-limit
+))
1025 (setf (cdr cell
) (subseq powers
0 too-big
))))))
1026 ;; Since base 10 is overwhelmingly common, make sure it's at head.
1027 ;; Try to keep other bases in a hopefully sensible order as well.
1028 (if (eql 10 (caar cache
))
1029 (setf *power-cache
* cache
)
1030 ;; If we modify the list destructively we need to copy it, otherwise
1031 ;; an alist lookup in progress might be screwed.
1032 (setf *power-cache
* (sort (copy-list cache
)
1034 (declare (fixnum a b
))
1044 ;;; Compute (and cache) a power vector for a BASE and LIMIT:
1045 ;;; the vector holds integers for which
1046 ;;; (aref powers k) == (expt base (expt 2 k))
1048 (defun powers-for-base (base limit
)
1049 (flet ((compute-powers (from)
1051 (do ((p from
(* p p
)))
1053 ;; We don't actually need this, but we also
1054 ;; prefer not to cons it up a second time...
1057 (nreverse powers
))))
1058 ;; Grab a local reference so that we won't stuff consed at the
1059 ;; head by other threads -- or sorting by SCRUB-POWER-CACHE.
1060 (let ((cache *power-cache
*))
1061 (let ((cell (assoc base cache
)))
1063 (let* ((powers (cdr cell
))
1064 (len (length powers
))
1065 (max (svref powers
(1- len
))))
1069 (concatenate 'vector powers
1070 (compute-powers (* max max
)))))
1071 (setf (cdr cell
) new
)
1073 (let ((powers (coerce (compute-powers base
) 'vector
)))
1074 ;; Add new base to head: SCRUB-POWER-CACHE will later
1075 ;; put it to a better place.
1076 (setf *power-cache
* (acons base powers cache
))
1079 ;; Algorithm by Harald Hanche-Olsen, sbcl-devel 2005-02-05
1080 (defun %output-huge-integer-in-base
(n base stream
)
1081 (declare (type bignum n
) (type fixnum base
))
1082 ;; POWER is a vector for which the following holds:
1083 ;; (aref power k) == (expt base (expt 2 k))
1084 (let* ((power (powers-for-base base n
))
1085 (k-start (or (position-if (lambda (x) (> x n
)) power
)
1086 (bug "power-vector too short"))))
1087 (labels ((bisect (n k exactp
)
1088 (declare (fixnum k
))
1089 ;; N is the number to bisect
1090 ;; K on initial entry BASE^(2^K) > N
1091 ;; EXACTP is true if 2^K is the exact number of digits
1094 (loop repeat
(ash 1 k
) do
(write-char #\
0 stream
))))
1097 (schar "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" n
)
1101 (multiple-value-bind (q r
) (truncate n
(aref power k
))
1102 ;; EXACTP is NIL only at the head of the
1103 ;; initial number, as we don't know the number
1104 ;; of digits there, but we do know that it
1105 ;; doesn't get any leading zeros.
1107 (bisect r k
(or exactp
(plusp q
))))))))
1108 (bisect n k-start nil
))))
1110 (defun %output-integer-in-base
(integer base stream
)
1111 (when (minusp integer
)
1112 (write-char #\- stream
)
1113 (setf integer
(- integer
)))
1114 ;; The ideal cutoff point between these two algorithms is almost
1115 ;; certainly quite platform dependent: this gives 87 for 32 bit
1116 ;; SBCL, which is about right at least for x86/Darwin.
1117 (if (or (fixnump integer
)
1118 (< (integer-length integer
) (* 3 sb
!vm
:n-positive-fixnum-bits
)))
1119 (%output-reasonable-integer-in-base integer base stream
)
1120 (%output-huge-integer-in-base integer base stream
)))
1122 (defun output-integer (integer stream
)
1123 (let ((base *print-base
*))
1124 (when (and (/= base
10) *print-radix
*)
1125 (%output-radix base stream
))
1126 (%output-integer-in-base integer base stream
)
1127 (when (and *print-radix
* (= base
10))
1128 (write-char #\. stream
))))
1130 (defun output-ratio (ratio stream
)
1131 (let ((base *print-base
*))
1133 (%output-radix base stream
))
1134 (%output-integer-in-base
(numerator ratio
) base stream
)
1135 (write-char #\
/ stream
)
1136 (%output-integer-in-base
(denominator ratio
) base stream
)))
1138 (defun output-complex (complex stream
)
1139 (write-string "#C(" stream
)
1140 ;; FIXME: Could this just be OUTPUT-NUMBER?
1141 (output-object (realpart complex
) stream
)
1142 (write-char #\space stream
)
1143 (output-object (imagpart complex
) stream
)
1144 (write-char #\
) stream
))
1148 ;;; FLONUM-TO-STRING (and its subsidiary function FLOAT-STRING) does
1149 ;;; most of the work for all printing of floating point numbers in
1150 ;;; FORMAT. It converts a floating point number to a string in a free
1151 ;;; or fixed format with no exponent. The interpretation of the
1152 ;;; arguments is as follows:
1154 ;;; X - The floating point number to convert, which must not be
1156 ;;; WIDTH - The preferred field width, used to determine the number
1157 ;;; of fraction digits to produce if the FDIGITS parameter
1158 ;;; is unspecified or NIL. If the non-fraction digits and the
1159 ;;; decimal point alone exceed this width, no fraction digits
1160 ;;; will be produced unless a non-NIL value of FDIGITS has been
1161 ;;; specified. Field overflow is not considerd an error at this
1163 ;;; FDIGITS - The number of fractional digits to produce. Insignificant
1164 ;;; trailing zeroes may be introduced as needed. May be
1165 ;;; unspecified or NIL, in which case as many digits as possible
1166 ;;; are generated, subject to the constraint that there are no
1167 ;;; trailing zeroes.
1168 ;;; SCALE - If this parameter is specified or non-NIL, then the number
1169 ;;; printed is (* x (expt 10 scale)). This scaling is exact,
1170 ;;; and cannot lose precision.
1171 ;;; FMIN - This parameter, if specified or non-NIL, is the minimum
1172 ;;; number of fraction digits which will be produced, regardless
1173 ;;; of the value of WIDTH or FDIGITS. This feature is used by
1174 ;;; the ~E format directive to prevent complete loss of
1175 ;;; significance in the printed value due to a bogus choice of
1179 ;;; (VALUES DIGIT-STRING DIGIT-LENGTH LEADING-POINT TRAILING-POINT DECPNT)
1180 ;;; where the results have the following interpretation:
1182 ;;; DIGIT-STRING - The decimal representation of X, with decimal point.
1183 ;;; DIGIT-LENGTH - The length of the string DIGIT-STRING.
1184 ;;; LEADING-POINT - True if the first character of DIGIT-STRING is the
1186 ;;; TRAILING-POINT - True if the last character of DIGIT-STRING is the
1188 ;;; POINT-POS - The position of the digit preceding the decimal
1189 ;;; point. Zero indicates point before first digit.
1191 ;;; NOTE: FLONUM-TO-STRING goes to a lot of trouble to guarantee
1192 ;;; accuracy. Specifically, the decimal number printed is the closest
1193 ;;; possible approximation to the true value of the binary number to
1194 ;;; be printed from among all decimal representations with the same
1195 ;;; number of digits. In free-format output, i.e. with the number of
1196 ;;; digits unconstrained, it is guaranteed that all the information is
1197 ;;; preserved, so that a properly- rounding reader can reconstruct the
1198 ;;; original binary number, bit-for-bit, from its printed decimal
1199 ;;; representation. Furthermore, only as many digits as necessary to
1200 ;;; satisfy this condition will be printed.
1202 ;;; FLOAT-DIGITS actually generates the digits for positive numbers;
1203 ;;; see below for comments.
1205 (defun flonum-to-string (x &optional width fdigits scale fmin
)
1206 (declare (type float x
))
1207 ;; FIXME: I think only FORMAT-DOLLARS calls FLONUM-TO-STRING with
1208 ;; possibly-negative X.
1211 ;; Zero is a special case which FLOAT-STRING cannot handle.
1213 (let ((s (make-string (1+ fdigits
) :initial-element
#\
0)))
1214 (setf (schar s
0) #\.
)
1215 (values s
(length s
) t
(zerop fdigits
) 0))
1216 (values "." 1 t t
0)))
1218 (multiple-value-bind (e string
)
1220 (flonum-to-digits x
(min (- (+ fdigits
(or scale
0)))
1222 (if (and width
(> width
1))
1223 (let ((w (multiple-value-list
1227 (if (and scale
(minusp scale
))
1230 (f (multiple-value-list
1231 (flonum-to-digits x
(- (+ (or fmin
0)
1232 (if scale scale
0)))))))
1234 ((>= (length (cadr w
)) (length (cadr f
)))
1236 (t (values-list f
))))
1237 (flonum-to-digits x
)))
1238 (let ((e (+ e
(or scale
0)))
1239 (stream (make-string-output-stream)))
1242 (write-string string stream
:end
(min (length string
)
1244 (dotimes (i (- e
(length string
)))
1245 (write-char #\
0 stream
))
1246 (write-char #\. stream
)
1247 (write-string string stream
:start
(min (length
1250 (dotimes (i (- fdigits
1252 (min (length string
) e
))))
1253 (write-char #\
0 stream
))))
1255 (write-string "." stream
)
1257 (write-char #\
0 stream
))
1258 (write-string string stream
)
1260 (dotimes (i (+ fdigits e
(- (length string
))))
1261 (write-char #\
0 stream
)))))
1262 (let ((string (get-output-stream-string stream
)))
1263 (values string
(length string
)
1264 (char= (char string
0) #\.
)
1265 (char= (char string
(1- (length string
))) #\.
)
1266 (position #\. string
))))))))
1268 ;;; implementation of figure 1 from Burger and Dybvig, 1996. As the
1269 ;;; implementation of the Dragon from Classic CMUCL (and previously in
1270 ;;; SBCL above FLONUM-TO-STRING) says: "DO NOT EVEN THINK OF
1271 ;;; ATTEMPTING TO UNDERSTAND THIS CODE WITHOUT READING THE PAPER!",
1272 ;;; and in this case we have to add that even reading the paper might
1273 ;;; not bring immediate illumination as CSR has attempted to turn
1274 ;;; idiomatic Scheme into idiomatic Lisp.
1276 ;;; FIXME: figure 1 from Burger and Dybvig is the unoptimized
1277 ;;; algorithm, noticeably slow at finding the exponent. Figure 2 has
1278 ;;; an improved algorithm, but CSR ran out of energy.
1280 ;;; possible extension for the enthusiastic: printing floats in bases
1281 ;;; other than base 10.
1282 (defconstant single-float-min-e
1283 (nth-value 1 (decode-float least-positive-single-float
)))
1284 (defconstant double-float-min-e
1285 (nth-value 1 (decode-float least-positive-double-float
)))
1287 (defconstant long-float-min-e
1288 (nth-value 1 (decode-float least-positive-long-float
)))
1290 (defun flonum-to-digits (v &optional position relativep
)
1291 (let ((print-base 10) ; B
1293 (float-digits (float-digits v
)) ; p
1294 (digit-characters "0123456789")
1297 (single-float single-float-min-e
)
1298 (double-float double-float-min-e
)
1300 (long-float long-float-min-e
))))
1301 (multiple-value-bind (f e
)
1302 (integer-decode-float v
)
1303 (let (;; FIXME: these even tests assume normal IEEE rounding
1304 ;; mode. I wonder if we should cater for non-normal?
1307 (with-push-char (:element-type base-char
)
1308 (labels ((scale (r s m
+ m-
)
1310 (s s
(* s print-base
)))
1311 ((not (or (> (+ r m
+) s
)
1312 (and high-ok
(= (+ r m
+) s
))))
1314 (r r
(* r print-base
))
1315 (m+ m
+ (* m
+ print-base
))
1316 (m- m-
(* m- print-base
)))
1317 ((not (or (< (* (+ r m
+) print-base
) s
)
1319 (= (* (+ r m
+) print-base
) s
))))
1320 (values k
(generate r s m
+ m-
)))))))
1321 (generate (r s m
+ m-
)
1325 (setf (values d r
) (truncate (* r print-base
) s
))
1326 (setf m
+ (* m
+ print-base
))
1327 (setf m-
(* m- print-base
))
1328 (setf tc1
(or (< r m-
) (and low-ok
(= r m-
))))
1329 (setf tc2
(or (> (+ r m
+) s
)
1330 (and high-ok
(= (+ r m
+) s
))))
1333 (push-char (char digit-characters d
))
1337 ((and (not tc1
) tc2
) (1+ d
))
1338 ((and tc1
(not tc2
)) d
)
1340 (if (< (* r
2) s
) d
(1+ d
))))))
1341 (push-char (char digit-characters d
))
1342 (return-from generate
(get-pushed-string))))))
1346 (let* ((be (expt float-radix e
))
1347 (be1 (* be float-radix
)))
1348 (if (/= f
(expt float-radix
(1- float-digits
)))
1358 (/= f
(expt float-radix
(1- float-digits
))))
1360 s
(* (expt float-radix
(- e
)) 2)
1363 (setf r
(* f float-radix
2)
1364 s
(* (expt float-radix
(- 1 e
)) 2)
1369 (aver (> position
0))
1371 ;; running out of letters here
1372 (l 1 (* l print-base
)))
1373 ((>= (* s l
) (+ r m
+))
1375 (if (< (+ r
(* s
(/ (expt print-base
(- k position
)) 2)))
1376 (* s
(expt print-base k
)))
1377 (setf position
(- k position
))
1378 (setf position
(- k position
1))))))
1379 (let ((low (max m-
(/ (* s
(expt print-base position
)) 2)))
1380 (high (max m
+ (/ (* s
(expt print-base position
)) 2))))
1387 (values r s m
+ m-
))))
1388 (multiple-value-bind (r s m
+ m-
) (initialize)
1389 (scale r s m
+ m-
))))))))
1391 ;;; Given a non-negative floating point number, SCALE-EXPONENT returns
1392 ;;; a new floating point number Z in the range (0.1, 1.0] and an
1393 ;;; exponent E such that Z * 10^E is (approximately) equal to the
1394 ;;; original number. There may be some loss of precision due the
1395 ;;; floating point representation. The scaling is always done with
1396 ;;; long float arithmetic, which helps printing of lesser precisions
1397 ;;; as well as avoiding generic arithmetic.
1399 ;;; When computing our initial scale factor using EXPT, we pull out
1400 ;;; part of the computation to avoid over/under flow. When
1401 ;;; denormalized, we must pull out a large factor, since there is more
1402 ;;; negative exponent range than positive range.
1404 (eval-when (:compile-toplevel
:execute
)
1405 (setf *read-default-float-format
*
1406 #!+long-float
'long-float
#!-long-float
'double-float
))
1407 (defun scale-exponent (original-x)
1408 (let* ((x (coerce original-x
'long-float
)))
1409 (multiple-value-bind (sig exponent
) (decode-float x
)
1410 (declare (ignore sig
))
1412 (values (float 0.0e0 original-x
) 1)
1413 (let* ((ex (locally (declare (optimize (safety 0)))
1415 (round (* exponent
(log 2e0
10))))))
1417 (if (float-denormalized-p x
)
1419 (* x
1.0e16
(expt 10.0e0
(- (- ex
) 16)))
1421 (* x
1.0e18
(expt 10.0e0
(- (- ex
) 18)))
1422 (* x
10.0e0
(expt 10.0e0
(- (- ex
) 1))))
1423 (/ x
10.0e0
(expt 10.0e0
(1- ex
))))))
1424 (do ((d 10.0e0
(* d
10.0e0
))
1428 (do ((m 10.0e0
(* m
10.0e0
))
1432 (values (float z original-x
) ex
))
1433 (declare (long-float m
) (integer ex
))))
1434 (declare (long-float d
))))))))
1435 (eval-when (:compile-toplevel
:execute
)
1436 (setf *read-default-float-format
* 'single-float
))
1438 ;;;; entry point for the float printer
1440 ;;; the float printer as called by PRINT, PRIN1, PRINC, etc. The
1441 ;;; argument is printed free-format, in either exponential or
1442 ;;; non-exponential notation, depending on its magnitude.
1444 ;;; NOTE: When a number is to be printed in exponential format, it is
1445 ;;; scaled in floating point. Since precision may be lost in this
1446 ;;; process, the guaranteed accuracy properties of FLONUM-TO-STRING
1447 ;;; are lost. The difficulty is that FLONUM-TO-STRING performs
1448 ;;; extensive computations with integers of similar magnitude to that
1449 ;;; of the number being printed. For large exponents, the bignums
1450 ;;; really get out of hand. If bignum arithmetic becomes reasonably
1451 ;;; fast and the exponent range is not too large, then it might become
1452 ;;; attractive to handle exponential notation with the same accuracy
1453 ;;; as non-exponential notation, using the method described in the
1454 ;;; Steele and White paper.
1456 ;;; NOTE II: this has been bypassed slightly by implementing Burger
1457 ;;; and Dybvig, 1996. When someone has time (KLUDGE) they can
1458 ;;; probably (a) implement the optimizations suggested by Burger and
1459 ;;; Dyvbig, and (b) remove all vestiges of Dragon4, including from
1460 ;;; fixed-format printing.
1462 ;;; Print the appropriate exponent marker for X and the specified exponent.
1463 (defun print-float-exponent (x exp stream
)
1464 (declare (type float x
) (type integer exp
) (type stream stream
))
1465 (let ((*print-radix
* nil
))
1466 (if (typep x
*read-default-float-format
*)
1468 (format stream
"e~D" exp
))
1469 (format stream
"~C~D"
1477 (defun output-float-infinity (x stream
)
1478 (declare (float x
) (stream stream
))
1480 (write-string "#." stream
))
1482 (error 'print-not-readable
:object x
))
1484 (write-string "#<" stream
)))
1485 (write-string "SB-EXT:" stream
)
1486 (write-string (symbol-name (float-format-name x
)) stream
)
1487 (write-string (if (plusp x
) "-POSITIVE-" "-NEGATIVE-")
1489 (write-string "INFINITY" stream
)
1491 (write-string ">" stream
)))
1493 (defun output-float-nan (x stream
)
1494 (print-unreadable-object (x stream
)
1495 (princ (float-format-name x
) stream
)
1496 (write-string (if (float-trapping-nan-p x
) " trapping" " quiet") stream
)
1497 (write-string " NaN" stream
)))
1499 ;;; the function called by OUTPUT-OBJECT to handle floats
1500 (defun output-float (x stream
)
1502 ((float-infinity-p x
)
1503 (output-float-infinity x stream
))
1505 (output-float-nan x stream
))
1507 (let ((x (cond ((minusp (float-sign x
))
1508 (write-char #\- stream
)
1514 (write-string "0.0" stream
)
1515 (print-float-exponent x
0 stream
))
1517 (output-float-aux x stream -
3 8)))))))
1519 (defun output-float-aux (x stream e-min e-max
)
1520 (multiple-value-bind (e string
)
1521 (flonum-to-digits x
)
1526 (write-string string stream
:end
(min (length string
) e
))
1527 (dotimes (i (- e
(length string
)))
1528 (write-char #\
0 stream
))
1529 (write-char #\. stream
)
1530 (write-string string stream
:start
(min (length string
) e
))
1531 (when (<= (length string
) e
)
1532 (write-char #\
0 stream
))
1533 (print-float-exponent x
0 stream
))
1535 (write-string "0." stream
)
1537 (write-char #\
0 stream
))
1538 (write-string string stream
)
1539 (print-float-exponent x
0 stream
))))
1540 (t (write-string string stream
:end
1)
1541 (write-char #\. stream
)
1542 (write-string string stream
:start
1)
1543 (print-float-exponent x
(1- e
) stream
)))))
1545 ;;;; other leaf objects
1547 ;;; If *PRINT-ESCAPE* is false, just do a WRITE-CHAR, otherwise output
1548 ;;; the character name or the character in the #\char format.
1549 (defun output-character (char stream
)
1550 (if (or *print-escape
* *print-readably
*)
1551 (let ((graphicp (and (graphic-char-p char
)
1552 (standard-char-p char
)))
1553 (name (char-name char
)))
1554 (write-string "#\\" stream
)
1555 (if (and name
(not graphicp
))
1556 (quote-string name stream
)
1557 (write-char char stream
)))
1558 (write-char char stream
)))
1560 (defun output-sap (sap stream
)
1561 (declare (type system-area-pointer sap
))
1563 (format stream
"#.(~S #X~8,'0X)" 'int-sap
(sap-int sap
)))
1565 (print-unreadable-object (sap stream
)
1566 (format stream
"system area pointer: #X~8,'0X" (sap-int sap
))))))
1568 (defun output-weak-pointer (weak-pointer stream
)
1569 (declare (type weak-pointer weak-pointer
))
1570 (print-unreadable-object (weak-pointer stream
)
1571 (multiple-value-bind (value validp
) (weak-pointer-value weak-pointer
)
1573 (write-string "weak pointer: " stream
)
1574 (write value
:stream stream
))
1576 (write-string "broken weak pointer" stream
))))))
1578 (defun output-code-component (component stream
)
1579 (print-unreadable-object (component stream
:identity t
)
1580 (let ((dinfo (%code-debug-info component
)))
1581 (cond ((eq dinfo
:bogus-lra
)
1582 (write-string "bogus code object" stream
))
1584 (write-string "code object" stream
)
1586 (write-char #\space stream
)
1587 (output-object (sb!c
::debug-info-name dinfo
) stream
)))))))
1589 (defun output-lra (lra stream
)
1590 (print-unreadable-object (lra stream
:identity t
)
1591 (write-string "return PC object" stream
)))
1593 (defun output-fdefn (fdefn stream
)
1594 (print-unreadable-object (fdefn stream
)
1595 (write-string "FDEFINITION object for " stream
)
1596 (output-object (fdefn-name fdefn
) stream
)))
1600 ;;; Output OBJECT as using PRINT-OBJECT if it's a
1601 ;;; FUNCALLABLE-STANDARD-CLASS, or return NIL otherwise.
1603 ;;; The definition here is a simple temporary placeholder. It will be
1604 ;;; overwritten by a smarter version (capable of calling generic
1605 ;;; PRINT-OBJECT when appropriate) when CLOS is installed.
1606 (defun printed-as-funcallable-standard-class (object stream
)
1607 (declare (ignore object stream
))
1610 (defun output-fun (object stream
)
1611 (let* ((*print-length
* 3) ; in case we have to..
1612 (*print-level
* 3) ; ..print an interpreted function definition
1613 (name (%fun-name object
))
1614 (proper-name-p (and (legal-fun-name-p name
) (fboundp name
)
1615 (eq (fdefinition name
) object
))))
1616 (print-unreadable-object (object stream
:identity
(not proper-name-p
))
1617 (format stream
"~:[FUNCTION~;CLOSURE~]~@[ ~S~]"
1621 ;;;; catch-all for unknown things
1623 (defun output-random (object stream
)
1624 (print-unreadable-object (object stream
:identity t
)
1625 (let ((lowtag (lowtag-of object
)))
1627 (#.sb
!vm
:other-pointer-lowtag
1628 (let ((widetag (widetag-of object
)))
1630 (#.sb
!vm
:value-cell-header-widetag
1631 (write-string "value cell " stream
)
1632 (output-object (value-cell-ref object
) stream
))
1634 (write-string "unknown pointer object, widetag=" stream
)
1635 (let ((*print-base
* 16) (*print-radix
* t
))
1636 (output-integer widetag stream
))))))
1637 ((#.sb
!vm
:fun-pointer-lowtag
1638 #.sb
!vm
:instance-pointer-lowtag
1639 #.sb
!vm
:list-pointer-lowtag
)
1640 (write-string "unknown pointer object, lowtag=" stream
)
1641 (let ((*print-base
* 16) (*print-radix
* t
))
1642 (output-integer lowtag stream
)))
1644 (case (widetag-of object
)
1645 (#.sb
!vm
:unbound-marker-widetag
1646 (write-string "unbound marker" stream
))
1648 (write-string "unknown immediate object, lowtag=" stream
)
1649 (let ((*print-base
* 2) (*print-radix
* t
))
1650 (output-integer lowtag stream
))
1651 (write-string ", widetag=" stream
)
1652 (let ((*print-base
* 16) (*print-radix
* t
))
1653 (output-integer (widetag-of object
) stream
)))))))))