0.7.1.16:
[sbcl.git] / src / cold / ansify.lisp
1 ;;;; patches to hide some implementation idiosyncrasies in our
2 ;;;; cross-compilation host
3
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
7 ;;;; This software is derived from the CMU CL system, which was
8 ;;;; written at Carnegie Mellon University and released into the
9 ;;;; public domain. The software is in the public domain and is
10 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
11 ;;;; files for more information.
12 \f
13 ;;;; CLISP issues
14
15 #+clisp
16 (locally
17
18   (in-package "COMMON-LISP")
19
20   ;; no longer needed in CLISP 1999-01-08, hurrah!
21   #|
22   ;; ANSI specifies that package LISP defines the type BOOLEAN, and the CMU CL
23   ;; compiler uses it a lot. This should be trivial to patch in CLISP, except
24   ;; that CLISP defines FFI:BOOLEAN, which conflicts. Gads.. Here we try to fix
25   ;; it with some package hacking. (Please do not take this as an example of
26   ;; good package hacking, I just messed with it until it seemed to work well
27   ;; enough to bootstrap CMU CL, because I'm highly unmotivated to make elegant
28   ;; fixes for nonstandard behavior. -- WHN)
29   (shadow 'ffi:boolean "FFI")
30   (deftype cl::boolean () '(member t nil))
31   (export 'boolean "LISP")
32   |#
33
34   ;; apparently fixed sometime in 2001, hurray!
35   #| (error "can't use CLISP -- no MAKE-LOAD-FORM") |#
36
37   ;; CLISP is still unsupported as a cross-compilation host because of
38   ;; these known problems:
39   (flet ((clisp-ouch (s) (error "can't bootstrap with CLISP: ~A" s)))
40     ;; These problems don't seem deep, and could probably be worked
41     ;; around.
42     #+nil (clisp-ouch "no (DOCUMENTATION X) when X is a PACKAGE")
43     #+nil (clisp-ouch "no (FUNCTION (SETF SYMBOL-FUNCTION))")))
44 \f
45 ;;;; CMU CL issues
46
47 ;;; CMU CL, at least as of 18b, doesn't support PRINT-OBJECT. In
48 ;;; particular, it refuses to compile :PRINT-OBJECT options to
49 ;;; DEFSTRUCT, so we need to conditionalize such options on the
50 ;;; :NO-ANSI-PRINT-OBJECT feature in order to get the code to compile.
51 ;;; (It also fails to do anything useful with DEFMETHOD PRINT-OBJECT,
52 ;;; but that doesn't matter much, since it doesn't stop the
53 ;;; cross-compiler from working.)
54 #+cmu
55 (progn
56   (warn "CMU CL doesn't support the :PRINT-OBJECT option to DEFSTRUCT.~%")
57   (pushnew :no-ansi-print-object *features*))
58
59 ;;; KLUDGE: In CMU CL, at least as of 18b, READ-SEQUENCE is somewhat
60 ;;; dain-bramaged. Running
61 ;;;   (defvar *buffer* (make-array (expt 10 6) :element-type 'character))
62 ;;;   (with-open-file (s "/tmp/long-file.tmp")
63 ;;;     (/show (read-sequence *buffer* s :start 0 :end 3000))
64 ;;;     (/show (read-sequence *buffer* s :start 0 :end 15000))
65 ;;;     (/show (read-sequence *buffer* s :start 0 :end 15000)))
66 ;;; on a large test file gives
67 ;;; /(READ-SEQUENCE *BUFFER* S :START 0 :END 3000)=3000
68 ;;; /(READ-SEQUENCE *BUFFER* S :START 0 :END 15000)=1096
69 ;;; /(READ-SEQUENCE *BUFFER* S :START 0 :END 15000)=0
70 #+cmu
71 (progn
72   (warn "CMU CL has a broken implementation of READ-SEQUENCE.")
73   (pushnew :no-ansi-read-sequence *features*))
74
75 #+(and cmu alpha)
76 (unless (ignore-errors (read-from-string "1.0l0"))
77   (error "CMUCL on Alpha can't read floats in the format \"1.0l0\".  Patch your core file~%~%"))
78 \f
79 ;;;; general non-ANSI-ness
80
81 (in-package :sb-cold)
82
83 ;;; Do the exports of COMMON-LISP conform to the standard? If not, try
84 ;;; to make them conform. (Of course, ANSI says that bashing symbols
85 ;;; in the COMMON-LISP package like this is undefined, but then if the
86 ;;; host Common Lisp were ANSI, we wouldn't be doing this, now would
87 ;;; we? "One dirty unportable hack deserves another.":-)
88 (let ((standard-ht (make-hash-table :test 'equal))
89       (host-ht     (make-hash-table :test 'equal))
90       (cl         (find-package "COMMON-LISP")))
91   (do-external-symbols (i cl)
92     (setf (gethash (symbol-name i) host-ht) t))
93   (dolist (i (read-from-file "common-lisp-exports.lisp-expr"))
94     (setf (gethash i standard-ht) t))
95   (maphash (lambda (key value)
96              (declare (ignore value))
97              (unless (gethash key standard-ht)
98                (warn "removing non-ANSI export from package CL: ~S" key)
99                #+CLISP (ext:without-package-lock ("CL")
100                                                  (unexport (intern key cl) cl))
101                #-CLISP (unexport (intern key cl) cl)))
102            host-ht)
103   (maphash (lambda (key value)
104              (declare (ignore value))
105              (unless (gethash key host-ht)
106                (warn "adding required-by-ANSI export to package CL: ~S" key)
107                #+CLISP (ext:without-package-lock ("CL")
108                                                  (export (intern key cl) cl))
109                #-CLISP (export (intern key cl) cl))
110              
111              ;; FIXME: My righteous indignation below was misplaced. ANSI sez
112              ;; (in 11.1.2.1, "The COMMON-LISP Package") that it's OK for
113              ;; COMMON-LISP things to have their home packages elsewhere.
114              ;; For now, the hack below works, but it's not good to rely
115              ;; on this nonstandardness. Ergo, I should fix things so that even
116              ;; when the cross-compilation host COMMON-LISP package has
117              ;; symbols with home packages elsewhere, genesis dumps out
118              ;; the correct stuff. (For each symbol dumped, check whether it's
119              ;; exported from COMMON-LISP, and if so, dump it as though its
120              ;; home package is COMMON-LISP regardless of whether it actually
121              ;; is. I think..)
122              ;;
123              ;; X CMU CL, at least the Debian versions ca. 2.4.9 that I'm
124              ;; X using as I write this, plays a sneaky trick on us by
125              ;; X putting DEBUG and FLOATING-POINT-INEXACT in the
126              ;; X EXTENSIONS package, then IMPORTing them into
127              ;; X COMMON-LISP, then reEXPORTing them from COMMON-LISP.
128              ;; X This leaves their home packages bogusly set to
129              ;; X EXTENSIONS, which confuses genesis into thinking that
130              ;; X the CMU CL EXTENSIONS package has to be dumped into the
131              ;; X target SBCL. (perhaps a last-ditch survival strategy
132              ;; X for the CMU CL "nooo! don't bootstrap from scratch!"
133              ;; X meme?) As far as I can see, there's no even slightly
134              ;; X portable way to undo the damage, so we'll play the "one
135              ;; X dirty unportable hack deserves another" game, only even
136              ;; X dirtierly and more unportably than before..
137              #+cmu
138              (let ((symbol (intern key cl)))
139                (unless (eq (symbol-package symbol) cl)
140                  (warn "using low-level hack to move ~S from ~S to ~S"
141                        symbol
142                        (symbol-package symbol)
143                        cl)
144                  (kernel:%set-symbol-package symbol cl))))
145            standard-ht))