1 ;;;; that part of the loader is only needed on the target system
2 ;;;; (which is basically synonymous with "that part of the loader
3 ;;;; which is not needed by GENESIS")
5 ;;;; This software is part of the SBCL system. See the README file for
8 ;;;; This software is derived from the CMU CL system, which was
9 ;;;; written at Carnegie Mellon University and released into the
10 ;;;; public domain. The software is in the public domain and is
11 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
12 ;;;; files for more information.
14 (in-package "SB!FASL")
16 (defvar *load-source-default-type
* "lisp"
18 "The source file types which LOAD looks for by default.")
20 (declaim (type (or pathname null
) *load-truename
* *load-pathname
*))
21 (defvar *load-truename
* nil
23 "the TRUENAME of the file that LOAD is currently loading")
24 (defvar *load-pathname
* nil
26 "the defaulted pathname that LOAD is currently loading")
30 ;;; Load a text stream. (Note that load-as-fasl is in another file.)
31 ;; We'd like, when entering the debugger as a result of an EVAL error,
32 ;; that the condition be annotated with the stream position.
33 ;; One way to do it is catch all conditions and encapsulate them in
34 ;; something new such as a LOADER-EVAL-ERROR and re-signal.
35 ;; The printer for the encapsulated condition has the data it needs to
36 ;; show the original condition and the line/col. That would unfortunately
37 ;; interfere with handlers that were bound around LOAD, since they would
38 ;; only receive the encapsulated condition, and not be able to test for
39 ;; things they're interested in, such as which redefinition warnings to ignore.
40 ;; Instead, printing a herald for any SERIOUS-CONDITION approximates
41 ;; the desired behavior closely enough without printing something for warnings.
42 ;; TODO: It would be supremely cool if, for toplevel PROGN, we could
43 ;; indicate the position of the specific subform that failed
44 (defun load-as-source (stream &key verbose print
(context "loading"))
45 (maybe-announce-load stream verbose
)
46 (let* ((pathname (ignore-errors (translate-logical-pathname stream
)))
47 (native (when pathname
(native-namestring pathname
))))
48 (with-simple-restart (abort "Abort ~A file ~S." context native
)
49 (labels ((condition-herald (c)
50 (declare (ignore c
)) ; propagates up
51 (when (form-tracking-stream-p stream
)
53 (form-tracking-stream-form-start-char-pos stream
))
54 (point (line/col-from-charpos stream startpos
)))
55 (format *error-output
* "~&While evaluating the form ~
56 starting at line ~D, column ~D~% of ~S:"
57 (car point
) (cdr point
)
58 (or pathname stream
)))))
59 (eval-form (form index
)
60 (with-simple-restart (continue "Ignore error and continue ~A file ~S."
63 (handler-bind ((serious-condition #'condition-herald
))
64 (with-simple-restart (retry "Retry EVAL of current toplevel form.")
66 (let ((results (multiple-value-list (eval-tlf form index
))))
68 (format t
"~{~S~^, ~}~%" results
))
69 (eval-tlf form index
)))
72 (let* ((info (sb!c
::make-file-source-info
73 pathname
(stream-external-format stream
)))
74 (sb!c
::*source-info
* info
))
75 (setf (sb!c
::source-info-stream info
) stream
)
76 (sb!c
::do-forms-from-info
((form current-index
) info
77 'sb
!c
::input-error-in-load
)
78 (sb!c
::with-source-paths
79 (sb!c
::find-source-paths form current-index
)
80 (eval-form form current-index
))))
81 (let ((sb!c
::*source-info
* nil
))
82 (do ((form (read stream nil
*eof-object
*)
83 (read stream nil
*eof-object
*)))
84 ((eq form
*eof-object
*))
85 (sb!c
::with-source-paths
86 (eval-form form nil
))))))))
91 (define-condition fasl-header-missing
(invalid-fasl)
92 ((fhsss :reader invalid-fasl-fhsss
:initarg
:fhsss
))
94 (lambda (condition stream
)
95 (format stream
"~@<File ~S has a fasl file type, but no fasl header:~%~
96 Expected ~S, but got ~S.~:@>"
97 (invalid-fasl-stream condition
)
98 (invalid-fasl-expected condition
)
99 (invalid-fasl-fhsss condition
)))))
102 ;;; The following comment preceded the pre 1.0.12.36 definition of
103 ;;; LOAD; it may no longer be accurate:
105 ;; FIXME: Daniel Barlow's ilsb.tar ILISP-for-SBCL patches contain an
106 ;; implementation of "DEFUN SOURCE-FILE" which claims, in a comment,
107 ;; that CMU CL does not correctly record source file information when
108 ;; LOADing a non-compiled file. Check whether this bug exists in SBCL
111 (defun load (pathspec &key
(verbose *load-verbose
*) (print *load-print
*)
112 (if-does-not-exist t
) (external-format :default
))
114 "Load the file given by FILESPEC into the Lisp environment, returning
116 (flet ((load-stream (stream faslp
)
117 (when (and (fd-stream-p stream
)
118 (eq (sb!impl
::fd-stream-fd-type stream
) :directory
))
119 (error 'simple-file-error
120 :pathname
(pathname stream
)
122 "Can't LOAD a directory: ~s."
123 :format-arguments
(list (pathname stream
))))
124 (let* (;; Bindings required by ANSI.
125 (*readtable
* *readtable
*)
126 (*package
* (sane-package))
127 ;; FIXME: we should probably document the circumstances
128 ;; where *LOAD-PATHNAME* and *LOAD-TRUENAME* aren't
129 ;; pathnames during LOAD. ANSI makes no exceptions here.
130 (*load-pathname
* (handler-case (pathname stream
)
131 ;; FIXME: it should probably be a type
132 ;; error to try to get a pathname for a
133 ;; stream that doesn't have one, but I
134 ;; don't know if we guarantee that.
136 (*load-truename
* (when *load-pathname
*
137 (handler-case (truename stream
)
138 (file-error () nil
))))
139 ;; Bindings used internally.
140 (*load-depth
* (1+ *load-depth
*))
141 ;; KLUDGE: I can't find in the ANSI spec where it says
142 ;; that DECLAIM/PROCLAIM of optimization policy should
143 ;; have file scope. CMU CL did this, and it seems
144 ;; reasonable, but it might not be right; after all,
145 ;; things like (PROCLAIM '(TYPE ..)) don't have file
146 ;; scope, and I can't find anything under PROCLAIM or
147 ;; COMPILE-FILE or LOAD or OPTIMIZE which justifies this
148 ;; behavior. Hmm. -- WHN 2001-04-06
149 (sb!c
::*policy
* sb
!c
::*policy
*))
152 (load-as-fasl stream verbose print
)
153 (sb!c
:with-compiler-error-resignalling
154 (load-as-source stream
:verbose verbose
157 (when (streamp pathspec
)
158 (return-from load
(load-stream pathspec
(fasl-header-p pathspec
))))
159 (let ((pathname (pathname pathspec
)))
160 ;; Case 2: Open as binary, try to process as a fasl.
162 (stream (or (open pathspec
:element-type
'(unsigned-byte 8)
163 :if-does-not-exist nil
)
164 (when (null (pathname-type pathspec
))
165 (let ((defaulted-pathname
166 (probe-load-defaults pathspec
)))
167 (if defaulted-pathname
168 (progn (setq pathname defaulted-pathname
)
171 (if if-does-not-exist
:error nil
)
172 :element-type
'(unsigned-byte 8))))))
173 (if if-does-not-exist
174 (error 'simple-file-error
177 "~@<Couldn't load ~S: file does not exist.~@:>"
178 :format-arguments
(list pathspec
)))))
180 (return-from load nil
))
181 (let* ((real (probe-file stream
))
183 (and real
(string-equal (pathname-type real
) *fasl-file-type
*))))
184 ;; Don't allow empty .fasls, and assume other empty files
186 (when (and (or should-be-fasl-p
(not (eql 0 (file-length stream
))))
187 (fasl-header-p stream
:errorp should-be-fasl-p
))
188 (return-from load
(load-stream stream t
)))))
189 ;; Case 3: Open using the given external format, process as source.
190 (with-open-file (stream pathname
:external-format external-format
191 :class
'form-tracking-stream
)
192 (load-stream stream nil
)))))
194 ;; This implements the defaulting SBCL seems to have inherited from
195 ;; CMU. This routine does not try to perform any loading; all it does
196 ;; is return the pathname (not the truename) of a file to be loaded,
197 ;; or NIL if no such file can be found. This routine is supposed to
198 ;; signal an error if a fasl's timestamp is older than its source
199 ;; file, but we protect against errors in PROBE-FILE, because any of
200 ;; the ways that we might fail to find a defaulted file are reasons
201 ;; not to load it, but not worth exposing to the user who didn't
202 ;; expicitly ask us to load a file with a made-up name (e.g., the
203 ;; defaulted filename might exceed filename length limits).
204 (defun probe-load-defaults (pathname)
205 (destructuring-bind (defaulted-source-pathname
206 defaulted-source-truename
207 defaulted-fasl-pathname
208 defaulted-fasl-truename
)
209 (loop for type in
(list *load-source-default-type
*
211 as probe-pathname
= (make-pathname :type type
213 collect probe-pathname
214 collect
(handler-case (probe-file probe-pathname
)
215 (file-error () nil
)))
216 (cond ((and defaulted-fasl-truename
217 defaulted-source-truename
218 (> (file-write-date defaulted-source-truename
)
219 (file-write-date defaulted-fasl-truename
)))
221 (error "The object file ~A is~@
222 older than the presumed source:~% ~A."
223 defaulted-fasl-truename
224 defaulted-source-truename
)
225 (source () :report
"load source file"
226 defaulted-source-pathname
)
227 (object () :report
"load object file"
228 defaulted-fasl-pathname
)))
229 (defaulted-fasl-truename defaulted-fasl-pathname
)
230 (defaulted-source-truename defaulted-source-pathname
))))
232 ;;; Load a code object. BOX-NUM objects are popped off the stack for
233 ;;; the boxed storage section, then CODE-LENGTH bytes of code are read in.
234 (defun load-code (box-num code-length stack ptr input-stream
)
235 (declare (fixnum box-num code-length
))
236 (declare (simple-vector stack
) (type index ptr
))
237 (let ((code (sb!c
:allocate-code-object box-num code-length
)))
238 (setf (%code-debug-info code
) (svref stack
(+ ptr box-num
)))
239 (loop for i of-type index from sb
!vm
:code-constants-offset
240 for j of-type index from ptr below
(+ ptr box-num
)
241 do
(setf (code-header-ref code i
) (svref stack j
)))
243 (read-n-bytes input-stream
(code-instructions code
) 0 code-length
))
248 ;;; how we learn about assembler routines at startup
249 (defvar *!initial-assembler-routines
*)
251 (defun !loader-cold-init
()
252 (/show0
"/!loader-cold-init")
253 (dolist (routine *!initial-assembler-routines
*)
254 (setf (gethash (car routine
) *assembler-routines
*) (cdr routine
))))