;;;; the top-level interfaces to the compiler ;;;; This software is part of the SBCL system. See the README file for ;;;; more information. ;;;; ;;;; This software is derived from the CMU CL system, which was ;;;; written at Carnegie Mellon University and released into the ;;;; public domain. The software is in the public domain and is ;;;; provided with absolutely no warranty. See the COPYING and CREDITS ;;;; files for more information. (in-package "SB!C") ;;; FIXME: Doesn't this belong somewhere else, like early-c.lisp? (declaim (special *constants* *free-variables* *component-being-compiled* *code-vector* *next-location* *result-fixups* *free-functions* *source-paths* *seen-blocks* *seen-functions* *list-conflicts-table* *continuation-number* *continuation-numbers* *number-continuations* *tn-id* *tn-ids* *id-tns* *label-ids* *label-id* *id-labels* *undefined-warnings* *compiler-error-count* *compiler-warning-count* *compiler-style-warning-count* *compiler-note-count* *compiler-error-bailout* #!+sb-show *compiler-trace-output* *last-source-context* *last-original-source* *last-source-form* *last-format-string* *last-format-args* *last-message-count* *lexenv*)) (defvar *byte-compile-default* :maybe #!+sb-doc "the default value for the :BYTE-COMPILE argument to COMPILE-FILE") (defvar *byte-compile-top-level* #-sb-xc-host t #+sb-xc-host nil ; since the byte compiler isn't supported in cross-compiler #!+sb-doc "Similar to *BYTE-COMPILE-DEFAULT*, but controls the compilation of top-level forms (evaluated at load-time) when the :BYTE-COMPILE argument is :MAYBE (the default.) When true, we decide to byte-compile.") ;;; default value of the :BYTE-COMPILE argument to the compiler (defvar *byte-compile* :maybe) ;;; Bound by COMPILE-COMPONENT to T when byte-compiling, and NIL when ;;; native compiling. During IR1 conversion this can also be :MAYBE, ;;; in which case we must look at the policy, see (byte-compiling). (defvar *byte-compiling* :maybe) (declaim (type (member t nil :maybe) *byte-compile* *byte-compiling* *byte-compile-default*)) (defvar *check-consistency* nil) (defvar *all-components*) ;;; Bind this to a stream to capture various internal debugging output. #!+sb-show (defvar *compiler-trace-output* nil) ;;; The current block compilation state. These are initialized to the ;;; :BLOCK-COMPILE and :ENTRY-POINTS arguments that COMPILE-FILE was ;;; called with. ;;; ;;; *BLOCK-COMPILE-ARGUMENT* holds the original value of the ;;; :BLOCK-COMPILE argument, which overrides any internal ;;; declarations. (defvar *block-compile*) (defvar *block-compile-argument*) (declaim (type (member nil t :specified) *block-compile* *block-compile-argument*)) (defvar *entry-points*) (declaim (list *entry-points*)) ;;; When block compiling, used by PROCESS-FORM to accumulate top-level ;;; lambdas resulting from compiling subforms. (In reverse order.) (defvar *top-level-lambdas*) (declaim (list *top-level-lambdas*)) (defvar sb!xc:*compile-verbose* t #!+sb-doc "The default for the :VERBOSE argument to COMPILE-FILE.") (defvar sb!xc:*compile-print* t #!+sb-doc "The default for the :PRINT argument to COMPILE-FILE.") (defvar *compile-progress* nil #!+sb-doc "When this is true, the compiler prints to *ERROR-OUTPUT* progress information about the phases of compilation of each function. (This is useful mainly in large block compilations.)") (defvar sb!xc:*compile-file-pathname* nil #!+sb-doc "The defaulted pathname of the file currently being compiled, or NIL if not compiling.") (defvar sb!xc:*compile-file-truename* nil #!+sb-doc "The TRUENAME of the file currently being compiled, or NIL if not compiling.") (declaim (type (or pathname null) sb!xc:*compile-file-pathname* sb!xc:*compile-file-truename*)) ;;; the values of *PACKAGE* and policy when compilation started (defvar *initial-package*) (defvar *initial-policy*) (defvar *initial-interface-policy*) ;;; The source-info structure for the current compilation. This is null ;;; globally to indicate that we aren't currently in any identifiable ;;; compilation. (defvar *source-info* nil) ;;; True if we are within a WITH-COMPILATION-UNIT form (which normally ;;; causes nested uses to be no-ops). (defvar *in-compilation-unit* nil) ;;; Count of the number of compilation units dynamically enclosed by ;;; the current active WITH-COMPILATION-UNIT that were unwound out of. (defvar *aborted-compilation-unit-count*) ;;; Mumble conditional on *COMPILE-PROGRESS*. (defun maybe-mumble (&rest foo) (when *compile-progress* (compiler-mumble "~&") (pprint-logical-block (*error-output* nil :per-line-prefix "; ") (apply #'compiler-mumble foo)))) (deftype object () '(or fasl-file core-object null)) (defvar *compile-object* nil) (declaim (type object *compile-object*)) ;;;; WITH-COMPILATION-UNIT and WITH-COMPILATION-VALUES (defmacro sb!xc:with-compilation-unit (options &body body) #!+sb-doc "WITH-COMPILATION-UNIT ({Key Value}*) Form* This form affects compilations that take place within its dynamic extent. It is intended to be wrapped around the compilation of all files in the same system. These keywords are defined: :OVERRIDE Boolean-Form One of the effects of this form is to delay undefined warnings until the end of the form, instead of giving them at the end of each compilation. If OVERRIDE is NIL (the default), then the outermost WITH-COMPILATION-UNIT form grabs the undefined warnings. Specifying OVERRIDE true causes that form to grab any enclosed warnings, even if it is enclosed by another WITH-COMPILATION-UNIT." `(%with-compilation-unit (lambda () ,@body) ,@options)) (defun %with-compilation-unit (fn &key override) (let ((succeeded-p nil)) (if (and *in-compilation-unit* (not override)) ;; Inside another WITH-COMPILATION-UNIT, a WITH-COMPILATION-UNIT is ;; ordinarily (unless OVERRIDE) basically a no-op. (unwind-protect (multiple-value-prog1 (funcall fn) (setf succeeded-p t)) (unless succeeded-p (incf *aborted-compilation-unit-count*))) ;; FIXME: Now *COMPILER-FOO-COUNT* stuff is bound in more than ;; one place. If we can get rid of the IR1 interpreter, this ;; should be easier to clean up. (let ((*aborted-compilation-unit-count* 0) (*compiler-error-count* 0) (*compiler-warning-count* 0) (*compiler-style-warning-count* 0) (*compiler-note-count* 0) (*undefined-warnings* nil) (*in-compilation-unit* t)) (handler-bind ((parse-unknown-type (lambda (c) (note-undefined-reference (parse-unknown-type-specifier c) :type)))) (unwind-protect (multiple-value-prog1 (funcall fn) (setf succeeded-p t)) (unless succeeded-p (incf *aborted-compilation-unit-count*)) (summarize-compilation-unit (not succeeded-p)))))))) ;;; This is to be called at the end of a compilation unit. It signals ;;; any residual warnings about unknown stuff, then prints the total ;;; error counts. ABORT-P should be true when the compilation unit was ;;; aborted by throwing out. ABORT-COUNT is the number of dynamically ;;; enclosed nested compilation units that were aborted. (defun summarize-compilation-unit (abort-p) (unless abort-p (handler-bind ((style-warning #'compiler-style-warning-handler) (warning #'compiler-warning-handler)) (let ((undefs (sort *undefined-warnings* #'string< :key #'(lambda (x) (let ((x (undefined-warning-name x))) (if (symbolp x) (symbol-name x) (prin1-to-string x))))))) (unless *converting-for-interpreter* (dolist (undef undefs) (let ((name (undefined-warning-name undef)) (kind (undefined-warning-kind undef)) (warnings (undefined-warning-warnings undef)) (undefined-warning-count (undefined-warning-count undef))) (dolist (*compiler-error-context* warnings) (compiler-style-warning "undefined ~(~A~): ~S" kind name)) (let ((warn-count (length warnings))) (when (and warnings (> undefined-warning-count warn-count)) (let ((more (- undefined-warning-count warn-count))) (compiler-style-warning "~D more use~:P of undefined ~(~A~) ~S" more kind name))))))) (dolist (kind '(:variable :function :type)) (let ((summary (mapcar #'undefined-warning-name (remove kind undefs :test-not #'eq :key #'undefined-warning-kind)))) (when summary (compiler-style-warning "~:[This ~(~A~) is~;These ~(~A~)s are~] undefined:~ ~% ~{~<~% ~1:;~S~>~^ ~}" (cdr summary) kind summary))))))) (unless (or *converting-for-interpreter* (and (not abort-p) (zerop *aborted-compilation-unit-count*) (zerop *compiler-error-count*) (zerop *compiler-warning-count*) (zerop *compiler-style-warning-count*) (zerop *compiler-note-count*))) (format *error-output* "~&") (pprint-logical-block (*error-output* nil :per-line-prefix "; ") (compiler-mumble "compilation unit ~:[finished~;aborted~]~ ~[~:;~:*~& caught ~D fatal ERROR condition~:P~]~ ~[~:;~:*~& caught ~D ERROR condition~:P~]~ ~[~:;~:*~& caught ~D WARNING condition~:P~]~ ~[~:;~:*~& caught ~D STYLE-WARNING condition~:P~]~ ~[~:;~:*~& printed ~D note~:P~]" abort-p *aborted-compilation-unit-count* *compiler-error-count* *compiler-warning-count* *compiler-style-warning-count* *compiler-note-count*))) (format *error-output* "~&")) ;;; Evaluate BODY, then return (VALUES BODY-VALUE WARNINGS-P ;;; FAILURE-P), where BODY-VALUE is the first value of the body, and ;;; WARNINGS-P and FAILURE-P are as in CL:COMPILE or CL:COMPILE-FILE. ;;; This also wraps up WITH-IR1-NAMESPACE functionality. (defmacro with-compilation-values (&body body) `(with-ir1-namespace (let ((*warnings-p* nil) (*failure-p* nil)) (values (progn ,@body) *warnings-p* *failure-p*)))) ;;;; component compilation (defparameter *max-optimize-iterations* 3 ; ARB #!+sb-doc "The upper limit on the number of times that we will consecutively do IR1 optimization that doesn't introduce any new code. A finite limit is necessary, since type inference may take arbitrarily long to converge.") (defevent ir1-optimize-until-done "IR1-OPTIMIZE-UNTIL-DONE called") (defevent ir1-optimize-maxed-out "hit *MAX-OPTIMIZE-ITERATIONS* limit") ;;; Repeatedly optimize COMPONENT until no further optimizations can ;;; be found or we hit our iteration limit. When we hit the limit, we ;;; clear the component and block REOPTIMIZE flags to discourage the ;;; next optimization attempt from pounding on the same code. (defun ir1-optimize-until-done (component) (declare (type component component)) (maybe-mumble "opt") (event ir1-optimize-until-done) (let ((count 0) (cleared-reanalyze nil)) (loop (when (component-reanalyze component) (setq count 0) (setq cleared-reanalyze t) (setf (component-reanalyze component) nil)) (setf (component-reoptimize component) nil) (ir1-optimize component) (unless (component-reoptimize component) (maybe-mumble " ") (return)) (incf count) (when (= count *max-optimize-iterations*) (event ir1-optimize-maxed-out) (maybe-mumble "* ") (setf (component-reoptimize component) nil) (do-blocks (block component) (setf (block-reoptimize block) nil)) (return)) (maybe-mumble ".")) (when cleared-reanalyze (setf (component-reanalyze component) t))) (values)) (defparameter *constraint-propagate* t) (defparameter *reoptimize-after-type-check-max* 5) (defevent reoptimize-maxed-out "*REOPTIMIZE-AFTER-TYPE-CHECK-MAX* exceeded.") ;;; Iterate doing FIND-DFO until no new dead code is discovered. (defun dfo-as-needed (component) (declare (type component component)) (when (component-reanalyze component) (maybe-mumble "DFO") (loop (find-dfo component) (unless (component-reanalyze component) (maybe-mumble " ") (return)) (maybe-mumble "."))) (values)) ;;; Do all the IR1 phases for a non-top-level component. (defun ir1-phases (component) (declare (type component component)) (let ((*constraint-number* 0) (loop-count 1)) (declare (special *constraint-number*)) (loop (ir1-optimize-until-done component) (when (or (component-new-functions component) (component-reanalyze-functions component)) (maybe-mumble "locall ") (local-call-analyze component)) (dfo-as-needed component) (when *constraint-propagate* (maybe-mumble "constraint ") (constraint-propagate component)) (maybe-mumble "type ") ;; Delay the generation of type checks until the type ;; constraints have had time to propagate, else the compiler can ;; confuse itself. (unless (and (or (component-reoptimize component) (component-reanalyze component) (component-new-functions component) (component-reanalyze-functions component)) (< loop-count (- *reoptimize-after-type-check-max* 2))) (generate-type-checks component) (unless (or (component-reoptimize component) (component-reanalyze component) (component-new-functions component) (component-reanalyze-functions component)) (return))) (when (>= loop-count *reoptimize-after-type-check-max*) (maybe-mumble "[reoptimize limit]") (event reoptimize-maxed-out) (return)) (incf loop-count))) (ir1-finalize component) (values)) (defun native-compile-component (component) (let ((*code-segment* nil) (*elsewhere* nil)) (maybe-mumble "GTN ") (gtn-analyze component) (maybe-mumble "LTN ") (ltn-analyze component) (dfo-as-needed component) (maybe-mumble "control ") (control-analyze component #'make-ir2-block) (when (ir2-component-values-receivers (component-info component)) (maybe-mumble "stack ") (stack-analyze component) ;; Assign BLOCK-NUMBER for any cleanup blocks introduced by ;; stack analysis. There shouldn't be any unreachable code after ;; control, so this won't delete anything. (dfo-as-needed component)) (unwind-protect (progn (maybe-mumble "IR2tran ") (init-assembler) (entry-analyze component) (ir2-convert component) (when (policy nil (>= speed compilation-speed)) (maybe-mumble "copy ") (copy-propagate component)) (select-representations component) (when *check-consistency* (maybe-mumble "check2 ") (check-ir2-consistency component)) (delete-unreferenced-tns component) (maybe-mumble "life ") (lifetime-analyze component) (when *compile-progress* (compiler-mumble "") ; Sync before doing more output. (pre-pack-tn-stats component *error-output*)) (when *check-consistency* (maybe-mumble "check-life ") (check-life-consistency component)) (maybe-mumble "pack ") (pack component) (when *check-consistency* (maybe-mumble "check-pack ") (check-pack-consistency component)) #!+sb-show (when *compiler-trace-output* (describe-component component *compiler-trace-output*) (describe-ir2-component component *compiler-trace-output*)) (maybe-mumble "code ") (multiple-value-bind (code-length trace-table fixups) (generate-code component) #!+sb-show (when *compiler-trace-output* (format *compiler-trace-output* "~|~%disassembly of code for ~S~2%" component) (sb!disassem:disassemble-assem-segment *code-segment* *compiler-trace-output*)) (etypecase *compile-object* (fasl-file (maybe-mumble "fasl") (fasl-dump-component component *code-segment* code-length trace-table fixups *compile-object*)) (core-object (maybe-mumble "core") (make-core-component component *code-segment* code-length trace-table fixups *compile-object*)) (null)))))) ;; We are done, so don't bother keeping anything around. (setf (component-info component) nil) (values)) ;;; Return our best guess for whether we will byte compile code ;;; currently being IR1 converted. This is only a guess because the ;;; decision is made on a per-component basis. ;;; ;;; FIXME: This should be called something more mnemonic, e.g. ;;; PROBABLY-BYTE-COMPILING (defun byte-compiling () (if (eq *byte-compiling* :maybe) (or (eq *byte-compile* t) (policy nil (and (zerop speed) (<= debug 1)))) (and *byte-compile* *byte-compiling*))) ;;; Delete components with no external entry points before we try to ;;; generate code. Unreachable closures can cause IR2 conversion to ;;; puke on itself, since it is the reference to the closure which ;;; normally causes the components to be combined. This doesn't really ;;; cover all cases... (defun delete-if-no-entries (component) (dolist (fun (component-lambdas component) (delete-component component)) (case (functional-kind fun) (:top-level (return)) (:external (unless (every #'(lambda (ref) (eq (block-component (node-block ref)) component)) (leaf-refs fun)) (return)))))) (defun compile-component (component) (let* ((*component-being-compiled* component) (*byte-compiling* (ecase *byte-compile* ((t) t) ((nil) nil) (:maybe (dolist (fun (component-lambdas component) t) (unless (policy (lambda-bind fun) (and (zerop speed) (<= debug 1))) (return nil))))))) (when sb!xc:*compile-print* (compiler-mumble "~&; ~:[~;byte ~]compiling ~A: " *byte-compiling* (component-name component))) (ir1-phases component) ;; FIXME: What is MAYBE-MUMBLE for? Do we need it any more? (maybe-mumble "env ") (environment-analyze component) (dfo-as-needed component) (delete-if-no-entries component) (unless (eq (block-next (component-head component)) (component-tail component)) (if *byte-compiling* (byte-compile-component component) (native-compile-component component)))) (clear-constant-info) (when sb!xc:*compile-print* (compiler-mumble "~&")) (values)) ;;;; clearing global data structures ;;;; ;;;; FIXME: Is it possible to get rid of this stuff, getting rid of ;;;; global data structures entirely when possible and consing up the ;;;; others from scratch instead of clearing and reusing them? ;;; Clear the INFO in constants in the *FREE-VARIABLES*, etc. In ;;; addition to allowing stuff to be reclaimed, this is required for ;;; correct assignment of constant offsets, since we need to assign a ;;; new offset for each component. We don't clear the FUNCTIONAL-INFO ;;; slots, since they are used to keep track of functions across ;;; component boundaries. (defun clear-constant-info () (maphash #'(lambda (k v) (declare (ignore k)) (setf (leaf-info v) nil)) *constants*) (maphash #'(lambda (k v) (declare (ignore k)) (when (constant-p v) (setf (leaf-info v) nil))) *free-variables*) (values)) ;;; Blow away the REFS for all global variables, and let COMPONENT ;;; be recycled. (defun clear-ir1-info (component) (declare (type component component)) (labels ((blast (x) (maphash #'(lambda (k v) (declare (ignore k)) (when (leaf-p v) (setf (leaf-refs v) (delete-if #'here-p (leaf-refs v))) (when (basic-var-p v) (setf (basic-var-sets v) (delete-if #'here-p (basic-var-sets v)))))) x)) (here-p (x) (eq (block-component (node-block x)) component))) (blast *free-variables*) (blast *free-functions*) (blast *constants*)) (values)) ;;; Clear global variables used by the compiler. ;;; ;;; FIXME: It seems kinda nasty and unmaintainable to have to do this, ;;; and it adds overhead even when people aren't using the compiler. ;;; Perhaps we could make these global vars unbound except when ;;; actually in use, so that this function could go away. (defun clear-stuff (&optional (debug-too t)) ;; Clear global tables. (when (boundp '*free-functions*) (clrhash *free-functions*) (clrhash *free-variables*) (clrhash *constants*)) ;; Clear debug counters and tables. (clrhash *seen-blocks*) (clrhash *seen-functions*) (clrhash *list-conflicts-table*) (when debug-too (clrhash *continuation-numbers*) (clrhash *number-continuations*) (setq *continuation-number* 0) (clrhash *tn-ids*) (clrhash *id-tns*) (setq *tn-id* 0) (clrhash *label-ids*) (clrhash *id-labels*) (setq *label-id* 0) ;; Clear some Pack data structures (for GC purposes only). (assert (not *in-pack*)) (dolist (sb *backend-sb-list*) (when (finite-sb-p sb) (fill (finite-sb-live-tns sb) nil)))) ;; (Note: The CMU CL code used to set CL::*GENSYM-COUNTER* to zero here. ;; Superficially, this seemed harmful -- the user could reasonably be ;; surprised if *GENSYM-COUNTER* turned back to zero when something was ;; compiled. A closer inspection showed that this actually turned out to be ;; harmless in practice, because CLEAR-STUFF was only called from within ;; forms which bound CL::*GENSYM-COUNTER* to zero. However, this means that ;; even though zeroing CL::*GENSYM-COUNTER* here turned out to be harmless in ;; practice, it was also useless in practice. So we don't do it any more.) (values)) ;;;; trace output ;;; Print out some useful info about Component to Stream. (defun describe-component (component *standard-output*) (declare (type component component)) (format t "~|~%;;;; component: ~S~2%" (component-name component)) (print-blocks component) (values)) (defun describe-ir2-component (component *standard-output*) (format t "~%~|~%;;;; IR2 component: ~S~2%" (component-name component)) (format t "entries:~%") (dolist (entry (ir2-component-entries (component-info component))) (format t "~4TL~D: ~S~:[~; [closure]~]~%" (label-id (entry-info-offset entry)) (entry-info-name entry) (entry-info-closure-p entry))) (terpri) (pre-pack-tn-stats component *standard-output*) (terpri) (print-ir2-blocks component) (terpri) (values)) ;;;; file reading ;;;; ;;;; When reading from a file, we have to keep track of some source ;;;; information. We also exploit our ability to back up for printing ;;;; the error context and for recovering from errors. ;;;; ;;;; The interface we provide to this stuff is the stream-oid ;;;; Source-Info structure. The bookkeeping is done as a side-effect ;;;; of getting the next source form. ;;; A FILE-INFO structure holds all the source information for a ;;; given file. (defstruct file-info ;; If a file, the truename of the corresponding source file. If from ;; a Lisp form, :LISP. If from a stream, :STREAM. (name (required-argument) :type (or pathname (member :lisp :stream))) ;; the defaulted, but not necessarily absolute file name (i.e. prior ;; to TRUENAME call.) Null if not a file. This is used to set ;; *COMPILE-FILE-PATHNAME*, and if absolute, is dumped in the ;; debug-info. (untruename nil :type (or pathname null)) ;; the file's write date (if relevant) (write-date nil :type (or unsigned-byte null)) ;; the source path root number of the first form in this file (i.e. ;; the total number of forms converted previously in this ;; compilation) (source-root 0 :type unsigned-byte) ;; parallel vectors containing the forms read out of the file and ;; the file positions that reading of each form started at (i.e. the ;; end of the previous form) (forms (make-array 10 :fill-pointer 0 :adjustable t) :type (vector t)) (positions (make-array 10 :fill-pointer 0 :adjustable t) :type (vector t))) ;;; The SOURCE-INFO structure provides a handle on all the source ;;; information for an entire compilation. (defstruct (source-info #-no-ansi-print-object (:print-object (lambda (s stream) (print-unreadable-object (s stream :type t))))) ;; the UT that compilation started at (start-time (get-universal-time) :type unsigned-byte) ;; a list of the FILE-INFO structures for this compilation (files nil :type list) ;; the tail of the FILES for the file we are currently reading (current-file nil :type list) ;; the stream that we are using to read the CURRENT-FILE, or NIL if ;; no stream has been opened yet (stream nil :type (or stream null))) ;;; Given a list of pathnames, return a SOURCE-INFO structure. (defun make-file-source-info (files) (declare (list files)) (let ((file-info (mapcar (lambda (x) (make-file-info :name (truename x) :untruename x :write-date (file-write-date x))) files))) (make-source-info :files file-info :current-file file-info))) ;;; Return a SOURCE-INFO to describe the incremental compilation of ;;; FORM. Also used by SB!EVAL:INTERNAL-EVAL. (defun make-lisp-source-info (form) (make-source-info :start-time (get-universal-time) :files (list (make-file-info :name :lisp :forms (vector form) :positions '#(0))))) ;;; Return a SOURCE-INFO which will read from Stream. (defun make-stream-source-info (stream) (let ((files (list (make-file-info :name :stream)))) (make-source-info :files files :current-file files :stream stream))) ;;; Print an error message for a non-EOF error on STREAM. OLD-POS is a ;;; preceding file position that hopefully comes before the beginning ;;; of the line. Of course, this only works on streams that support ;;; the file-position operation. (defun normal-read-error (stream old-pos condition) (declare (type stream stream) (type unsigned-byte old-pos)) (let ((pos (file-position stream))) (file-position stream old-pos) (let ((start old-pos)) (loop (let ((line (read-line stream nil)) (end (file-position stream))) (when (>= end pos) ;; FIXME: READER-ERROR also prints the file position. Do we really ;; need to try to give position information here? (compiler-abort "read error at ~D:~% \"~A/\\~A\"~%~A" pos (string-left-trim " " (subseq line 0 (- pos start))) (subseq line (- pos start)) condition) (return)) (setq start end))))) (values)) ;;; Back STREAM up to the position Pos, then read a form with ;;; *READ-SUPPRESS* on, discarding the result. If an error happens ;;; during this read, then bail out using COMPILER-ERROR (fatal in ;;; this context). (defun ignore-error-form (stream pos) (declare (type stream stream) (type unsigned-byte pos)) (file-position stream pos) (handler-case (let ((*read-suppress* t)) (read stream)) (error (condition) (declare (ignore condition)) (compiler-error "unable to recover from read error")))) ;;; Print an error message giving some context for an EOF error. We ;;; print the first line after POS that contains #\" or #\(, or ;;; lacking that, the first non-empty line. (defun unexpected-eof-error (stream pos condition) (declare (type stream stream) (type unsigned-byte pos)) (let ((res nil)) (file-position stream pos) (loop (let ((line (read-line stream nil nil))) (unless line (return)) (when (or (find #\" line) (find #\( line)) (setq res line) (return)) (unless (or res (zerop (length line))) (setq res line)))) (compiler-abort "read error in form starting at ~D:~%~@[ \"~A\"~%~]~A" pos res condition)) (file-position stream (file-length stream)) (values)) ;;; Read a form from STREAM, returning EOF at EOF. If a read error ;;; happens, then attempt to recover if possible, returning a proxy ;;; error form. ;;; ;;; FIXME: This seems like quite a lot of complexity, and it seems ;;; impossible to get it quite right. (E.g. the `(CERROR ..) form ;;; returned here won't do the right thing if it's not in a position ;;; for an executable form.) I think it might be better to just stop ;;; trying to recover from read errors, punting all this noise ;;; (including UNEXPECTED-EOF-ERROR and IGNORE-ERROR-FORM) and doing a ;;; COMPILER-ABORT instead. (defun careful-read (stream eof pos) (handler-case (read stream nil eof) (error (condition) (let ((new-pos (file-position stream))) (cond ((= new-pos (file-length stream)) (unexpected-eof-error stream pos condition)) (t (normal-read-error stream pos condition) (ignore-error-form stream pos)))) '(cerror "Skip this form." "compile-time read error")))) ;;; If STREAM is present, return it, otherwise open a stream to the ;;; current file. There must be a current file. When we open a new ;;; file, we also reset *PACKAGE* and policy. This gives the effect of ;;; rebinding around each file. ;;; ;;; FIXME: Since we now do the standard ANSI thing of only one file ;;; per compile (unlike the CMU CL extended COMPILE-FILE) can't this ;;; complexity (including ADVANCE-SOURCE-FILE) go away? (defun get-source-stream (info) (declare (type source-info info)) (cond ((source-info-stream info)) (t (setf *package* *initial-package* *default-policy* *initial-policy* *default-interface-policy* *initial-interface-policy*) (let* ((finfo (first (source-info-current-file info))) (name (file-info-name finfo))) (setq sb!xc:*compile-file-truename* name) (setq sb!xc:*compile-file-pathname* (file-info-untruename finfo)) (setf (source-info-stream info) (open name :direction :input)))))) ;;; Close the stream in INFO if it is open. (defun close-source-info (info) (declare (type source-info info)) (let ((stream (source-info-stream info))) (when stream (close stream))) (setf (source-info-stream info) nil) (values)) ;;; Advance INFO to the next source file. If there is no next source ;;; file, return NIL, otherwise T. (defun advance-source-file (info) (declare (type source-info info)) (close-source-info info) (let ((prev (pop (source-info-current-file info)))) (if (source-info-current-file info) (let ((current (first (source-info-current-file info)))) (setf (file-info-source-root current) (+ (file-info-source-root prev) (length (file-info-forms prev)))) t) nil))) ;;; Read the sources from the source files and process them. (defun process-sources (info) (let* ((file (first (source-info-current-file info))) (stream (get-source-stream info))) (loop (let* ((pos (file-position stream)) (eof '(*eof*)) (form (careful-read stream eof pos))) (if (eq form eof) (return) (let* ((forms (file-info-forms file)) (current-idx (+ (fill-pointer forms) (file-info-source-root file)))) (vector-push-extend form forms) (vector-push-extend pos (file-info-positions file)) (clrhash *source-paths*) (find-source-paths form current-idx) (process-top-level-form form `(original-source-start 0 ,current-idx)))))) (when (advance-source-file info) (process-sources info)))) ;;; Return the FILE-INFO describing the INDEX'th form. (defun find-file-info (index info) (declare (type index index) (type source-info info)) (dolist (file (source-info-files info)) (when (> (+ (length (file-info-forms file)) (file-info-source-root file)) index) (return file)))) ;;; Return the INDEX'th source form read from INFO and the position ;;; where it was read. (defun find-source-root (index info) (declare (type source-info info) (type index index)) (let* ((file (find-file-info index info)) (idx (- index (file-info-source-root file)))) (values (aref (file-info-forms file) idx) (aref (file-info-positions file) idx)))) ;;;; top-level form processing ;;; This is called by top-level form processing when we are ready to ;;; actually compile something. If *BLOCK-COMPILE* is T, then we still ;;; convert the form, but delay compilation, pushing the result on ;;; *TOP-LEVEL-LAMBDAS* instead. (defun convert-and-maybe-compile (form path) (declare (list path)) (let* ((*lexenv* (make-lexenv :policy *default-policy* :interface-policy *default-interface-policy*)) (tll (ir1-top-level form path nil))) (cond ((eq *block-compile* t) (push tll *top-level-lambdas*)) (t (compile-top-level (list tll) nil))))) ;;; Process a PROGN-like portion of a top-level form. Forms is a list of ;;; the forms, and Path is source path of the form they came out of. (defun process-top-level-progn (forms path) (declare (list forms) (list path)) (dolist (form forms) (process-top-level-form form path))) ;;; Macroexpand form in the current environment with an error handler. ;;; We only expand one level, so that we retain all the intervening ;;; forms in the source path. (defun preprocessor-macroexpand (form) (handler-case (sb!xc:macroexpand-1 form *lexenv*) (error (condition) (compiler-error "(during macroexpansion)~%~A" condition)))) ;;; Process a top-level use of LOCALLY. We parse declarations and then ;;; recursively process the body. ;;; ;;; Binding *DEFAULT-xxx-POLICY* is pretty much of a hack, since it ;;; causes LOCALLY to "capture" enclosed proclamations. It is ;;; necessary because CONVERT-AND-MAYBE-COMPILE uses the value of ;;; *DEFAULT-POLICY* as the policy. The need for this hack is due to ;;; the quirk that there is no way to represent in a POLICY that an ;;; optimize quality came from the default. ;;; FIXME: Ideally, something should be done so that DECLAIM inside LOCALLY ;;; works OK. Failing that, at least we could issue a warning instead ;;; of silently screwing up. (defun process-top-level-locally (form path) (declare (list path)) (multiple-value-bind (forms decls) (sb!sys:parse-body (cdr form) nil) (let* ((*lexenv* (process-decls decls nil nil (make-continuation))) (*default-policy* (lexenv-policy *lexenv*)) (*default-interface-policy* (lexenv-interface-policy *lexenv*))) (process-top-level-progn forms path)))) ;;; Force any pending top-level forms to be compiled and dumped so ;;; that they will be evaluated in the correct package environment. ;;; Dump the form to be evaled at (cold) load time, and if EVAL is ;;; true, eval the form immediately. (defun process-cold-load-form (form path eval) (let ((object *compile-object*)) (etypecase object (fasl-file (compile-top-level-lambdas () t) (fasl-dump-cold-load-form form object)) ((or null core-object) (convert-and-maybe-compile form path))) (when eval (eval form)))) (declaim (special *compiler-error-bailout*)) ;;; Process a top-level FORM with the specified source PATH. ;;; * If this is a magic top-level form, then do stuff. ;;; * If this is a macro, then expand it. ;;; * Otherwise, just compile it. (defun process-top-level-form (form path) (declare (list path)) (catch 'process-top-level-form-error-abort (let* ((path (or (gethash form *source-paths*) (cons form path))) (*compiler-error-bailout* #'(lambda () (convert-and-maybe-compile `(error "execution of a form compiled with errors:~% ~S" ',form) path) (throw 'process-top-level-form-error-abort nil)))) (if (atom form) (convert-and-maybe-compile form path) (case (car form) ;; FIXME: It's not clear to me why we would want this ;; special case; it might have been needed for some ;; variation of the old GENESIS system, but it certainly ;; doesn't seem to be needed for ours. Sometime after the ;; system is running I'd like to remove it tentatively and ;; see whether anything breaks, and if nothing does break, ;; remove it permanently. (And if we *do* want special ;; treatment of all these, we probably want to treat WARN ;; the same way..) ((error cerror break signal) (process-cold-load-form form path nil)) ;; FIXME: ANSI seems to encourage things like DEFSTRUCT to ;; be done with EVAL-WHEN, without this kind of one-off ;; compiler magic. (sb!kernel:%compiler-defstruct (convert-and-maybe-compile form path) (compile-top-level-lambdas () t)) ((eval-when) (unless (>= (length form) 2) (compiler-error "EVAL-WHEN form is too short: ~S" form)) (do-eval-when-stuff (cadr form) (cddr form) #'(lambda (forms) (process-top-level-progn forms path)))) ((macrolet) (unless (>= (length form) 2) (compiler-error "MACROLET form is too short: ~S" form)) (do-macrolet-stuff (cadr form) #'(lambda () (process-top-level-progn (cddr form) path)))) (locally (process-top-level-locally form path)) (progn (process-top-level-progn (cdr form) path)) (t (let* ((uform (uncross form)) (exp (preprocessor-macroexpand uform))) (if (eq exp uform) (convert-and-maybe-compile uform path) (process-top-level-form exp path)))))))) (values)) ;;;; load time value support ;;;; ;;;; (See EMIT-MAKE-LOAD-FORM.) ;;; Returns T iff we are currently producing a fasl-file and hence ;;; constants need to be dumped carefully. (defun producing-fasl-file () (unless *converting-for-interpreter* (fasl-file-p *compile-object*))) ;;; Compile FORM and arrange for it to be called at load-time. Return ;;; the dumper handle and our best guess at the type of the object. (defun compile-load-time-value (form &optional (name (let ((*print-level* 2) (*print-length* 3)) (format nil "load time value of ~S" (if (and (listp form) (eq (car form) 'make-value-cell)) (second form) form))))) (let ((lambda (compile-load-time-stuff form name t))) (values (fasl-dump-load-time-value-lambda lambda *compile-object*) (let ((type (leaf-type lambda))) (if (function-type-p type) (single-value-type (function-type-returns type)) *wild-type*))))) ;;; Compile the FORMS and arrange for them to be called (for effect, ;;; not value) at load time. (defun compile-make-load-form-init-forms (forms name) (let ((lambda (compile-load-time-stuff `(progn ,@forms) name nil))) (fasl-dump-top-level-lambda-call lambda *compile-object*))) ;;; Does the actual work of COMPILE-LOAD-TIME-VALUE or ;;; COMPILE-MAKE-LOAD-FORM- INIT-FORMS. (defun compile-load-time-stuff (form name for-value) (with-ir1-namespace (let* ((*lexenv* (make-null-lexenv)) (lambda (ir1-top-level form *current-path* for-value))) (setf (leaf-name lambda) name) (compile-top-level (list lambda) t) lambda))) ;;; Called by COMPILE-TOP-LEVEL when it was pased T for ;;; LOAD-TIME-VALUE-P (which happens in COMPILE-LOAD-TIME-STUFF). We ;;; don't try to combine this component with anything else and frob ;;; the name. If not in a :TOP-LEVEL component, then don't bother ;;; compiling, because it was merged with a run-time component. (defun compile-load-time-value-lambda (lambdas) (assert (null (cdr lambdas))) (let* ((lambda (car lambdas)) (component (block-component (node-block (lambda-bind lambda))))) (when (eq (component-kind component) :top-level) (setf (component-name component) (leaf-name lambda)) (compile-component component) (clear-ir1-info component)))) ;;; The entry point for MAKE-LOAD-FORM support. When IR1 conversion ;;; finds a constant structure, it invokes this to arrange for proper ;;; dumping. If it turns out that the constant has already been ;;; dumped, then we don't need to do anything. ;;; ;;; If the constant hasn't been dumped, then we check to see whether ;;; we are in the process of creating it. We detect this by ;;; maintaining the special *CONSTANTS-BEING-CREATED* as a list of all ;;; the constants we are in the process of creating. Actually, each ;;; entry is a list of the constant and any init forms that need to be ;;; processed on behalf of that constant. ;;; ;;; It's not necessarily an error for this to happen. If we are ;;; processing the init form for some object that showed up *after* ;;; the original reference to this constant, then we just need to ;;; defer the processing of that init form. To detect this, we ;;; maintain *CONSTANTS-CREATED-SINCE-LAST-INIT* as a list of the ;;; constants created since the last time we started processing an ;;; init form. If the constant passed to emit-make-load-form shows up ;;; in this list, then there is a circular chain through creation ;;; forms, which is an error. ;;; ;;; If there is some intervening init form, then we blow out of ;;; processing it by throwing to the tag PENDING-INIT. The value we ;;; throw is the entry from *CONSTANTS-BEING-CREATED*. This is so the ;;; offending init form can be tacked onto the init forms for the ;;; circular object. ;;; ;;; If the constant doesn't show up in *CONSTANTS-BEING-CREATED*, then ;;; we have to create it. We call MAKE-LOAD-FORM and check to see ;;; whether the creation form is the magic value ;;; :JUST-DUMP-IT-NORMALLY. If it is, then we don't do anything. The ;;; dumper will eventually get its hands on the object and use the ;;; normal structure dumping noise on it. ;;; ;;; Otherwise, we bind *CONSTANTS-BEING-CREATED* and ;;; *CONSTANTS-CREATED-SINCE- LAST-INIT* and compile the creation form ;;; much the way LOAD-TIME-VALUE does. When this finishes, we tell the ;;; dumper to use that result instead whenever it sees this constant. ;;; ;;; Now we try to compile the init form. We bind ;;; *CONSTANTS-CREATED-SINCE- LAST-INIT* to NIL and compile the init ;;; form (and any init forms that were added because of circularity ;;; detection). If this works, great. If not, we add the init forms to ;;; the init forms for the object that caused the problems and let it ;;; deal with it. (defvar *constants-being-created* nil) (defvar *constants-created-since-last-init* nil) ;;; FIXME: Shouldn't these^ variables be bound in LET forms? (defun emit-make-load-form (constant) (assert (fasl-file-p *compile-object*)) (unless (or (fasl-constant-already-dumped constant *compile-object*) ;; KLUDGE: This special hack is because I was too lazy ;; to rework DEF!STRUCT so that the MAKE-LOAD-FORM ;; function of LAYOUT returns nontrivial forms when ;; building the cross-compiler but :IGNORE-IT when ;; cross-compiling or running under the target Lisp. -- ;; WHN 19990914 #+sb-xc-host (typep constant 'layout)) (let ((circular-ref (assoc constant *constants-being-created* :test #'eq))) (when circular-ref (when (find constant *constants-created-since-last-init* :test #'eq) (throw constant t)) (throw 'pending-init circular-ref))) (multiple-value-bind (creation-form init-form) (handler-case (sb!xc:make-load-form constant (make-null-lexenv)) (error (condition) (compiler-error "(while making load form for ~S)~%~A" constant condition))) (case creation-form (:just-dump-it-normally (fasl-validate-structure constant *compile-object*) t) (:ignore-it nil) (t (compile-top-level-lambdas () t) (when (fasl-constant-already-dumped constant *compile-object*) (return-from emit-make-load-form nil)) (let* ((name (let ((*print-level* 1) (*print-length* 2)) (with-output-to-string (stream) (write constant :stream stream)))) (info (if init-form (list constant name init-form) (list constant)))) (let ((*constants-being-created* (cons info *constants-being-created*)) (*constants-created-since-last-init* (cons constant *constants-created-since-last-init*))) (when (catch constant (fasl-note-handle-for-constant constant (compile-load-time-value creation-form (format nil "creation form for ~A" name)) *compile-object*) nil) (compiler-error "circular references in creation form for ~S" constant))) (when (cdr info) (let* ((*constants-created-since-last-init* nil) (circular-ref (catch 'pending-init (loop for (name form) on (cdr info) by #'cddr collect name into names collect form into forms finally (compile-make-load-form-init-forms forms (format nil "init form~:[~;s~] for ~{~A~^, ~}" (cdr forms) names))) nil))) (when circular-ref (setf (cdr circular-ref) (append (cdr circular-ref) (cdr info)))))))))))) ;;;; COMPILE-FILE ;;; We build a list of top-level lambdas, and then periodically smash ;;; them together into a single component and compile it. (defvar *pending-top-level-lambdas*) ;;; The maximum number of top-level lambdas we put in a single ;;; top-level component. ;;; ;;; CMU CL 18b used this nontrivially by default (setting it to 10) ;;; but consequently suffered from the inability to execute some ;;; troublesome constructs correctly, e.g. inability to load a fasl ;;; file compiled from the source file ;;; (defpackage "FOO" (:use "CL")) ;;; (print 'foo::bar) ;;; because it would dump data-setup fops (including a FOP-PACKAGE for ;;; "FOO") for the second form before dumping the the code in the ;;; first form, or the fop to execute the code in the first form. By ;;; setting this value to 0 by default, we avoid this badness. This ;;; increases the number of toplevel form functions, and so increases ;;; the size of object files. ;;; ;;; The variable is still supported because when we are compiling the ;;; SBCL system itself, which is known not contain any troublesome ;;; constructs, we can set it to a nonzero value, which reduces the ;;; number of toplevel form objects, reducing the peak memory usage in ;;; GENESIS, which is desirable, since at least for SBCL version ;;; 0.6.7, this is the high water mark for memory usage during system ;;; construction. (defparameter *top-level-lambda-max* 0) (defun object-call-top-level-lambda (tll) (declare (type functional tll)) (let ((object *compile-object*)) (etypecase object (fasl-file (fasl-dump-top-level-lambda-call tll object)) (core-object (core-call-top-level-lambda tll object)) (null)))) ;;; Add LAMBDAS to the pending lambdas. If this leaves more than ;;; *TOP-LEVEL-LAMBDA-MAX* lambdas in the list, or if FORCE-P is true, ;;; then smash the lambdas into a single component, compile it, and ;;; call the resulting function. (defun sub-compile-top-level-lambdas (lambdas force-p) (declare (list lambdas)) (setq *pending-top-level-lambdas* (append *pending-top-level-lambdas* lambdas)) (let ((pending *pending-top-level-lambdas*)) (when (and pending (or (> (length pending) *top-level-lambda-max*) force-p)) (multiple-value-bind (component tll) (merge-top-level-lambdas pending) (setq *pending-top-level-lambdas* ()) (let ((*byte-compile* (if (eq *byte-compile* :maybe) *byte-compile-top-level* *byte-compile*))) (compile-component component)) (clear-ir1-info component) (object-call-top-level-lambda tll)))) (values)) ;;; Compile top-level code and call the top-level lambdas. We pick off ;;; top-level lambdas in non-top-level components here, calling ;;; SUB-c-t-l-l on each subsequence of normal top-level lambdas. (defun compile-top-level-lambdas (lambdas force-p) (declare (list lambdas)) (let ((len (length lambdas))) (flet ((loser (start) (or (position-if #'(lambda (x) (not (eq (component-kind (block-component (node-block (lambda-bind x)))) :top-level))) lambdas :start start) len))) (do* ((start 0 (1+ loser)) (loser (loser start) (loser start))) ((>= start len) (when force-p (sub-compile-top-level-lambdas nil t))) (sub-compile-top-level-lambdas (subseq lambdas start loser) (or force-p (/= loser len))) (unless (= loser len) (object-call-top-level-lambda (elt lambdas loser)))))) (values)) ;;; Compile LAMBDAS (a list of the lambdas for top-level forms) into ;;; the object file. We loop doing local call analysis until it ;;; converges, since a single pass might miss something due to ;;; components being joined by LET conversion. ;;; ;;; LOAD-TIME-VALUE-P seems to control whether it's MAKE-LOAD-FORM and ;;; COMPILE-LOAD-TIME-VALUE stuff. -- WHN 20000201 (defun compile-top-level (lambdas load-time-value-p) (declare (list lambdas)) (maybe-mumble "locall ") (loop (let ((did-something nil)) (dolist (lambda lambdas) (let* ((component (block-component (node-block (lambda-bind lambda)))) (*all-components* (list component))) (when (component-new-functions component) (setq did-something t) (local-call-analyze component)))) (unless did-something (return)))) (maybe-mumble "IDFO ") (multiple-value-bind (components top-components hairy-top) (find-initial-dfo lambdas) (let ((*all-components* (append components top-components)) (top-level-closure nil)) (when *check-consistency* (maybe-mumble "[check]~%") (check-ir1-consistency *all-components*)) (dolist (component (append hairy-top top-components)) (when (pre-environment-analyze-top-level component) (setq top-level-closure t))) (let ((*byte-compile* (if (and top-level-closure (eq *byte-compile* :maybe)) nil *byte-compile*))) (dolist (component components) (compile-component component) (when (replace-top-level-xeps component) (setq top-level-closure t))) (when *check-consistency* (maybe-mumble "[check]~%") (check-ir1-consistency *all-components*)) (if load-time-value-p (compile-load-time-value-lambda lambdas) (compile-top-level-lambdas lambdas top-level-closure))) (dolist (component components) (clear-ir1-info component)) (clear-stuff))) (values)) ;;; Actually compile any stuff that has been queued up for block ;;; compilation. (defun finish-block-compilation () (when *block-compile* (when *top-level-lambdas* (compile-top-level (nreverse *top-level-lambdas*) nil) (setq *top-level-lambdas* ())) (setq *block-compile* nil) (setq *entry-points* nil))) ;;; Read all forms from INFO and compile them, with output to OBJECT. ;;; Return (VALUES NIL WARNINGS-P FAILURE-P). (defun sub-compile-file (info &optional d-s-info) (declare (type source-info info)) (let* (;; These are bound in WITH-COMPILATION-UNIT now. -- WHN 20000308 #+nil (*compiler-error-count* 0) #+nil (*compiler-warning-count* 0) #+nil (*compiler-style-warning-count* 0) #+nil (*compiler-note-count* 0) (*block-compile* *block-compile-argument*) (*package* (sane-package)) (*initial-package* (sane-package)) (*initial-policy* *default-policy*) (*initial-interface-policy* *default-interface-policy*) (*default-policy* *initial-policy*) (*default-interface-policy* *initial-interface-policy*) (*lexenv* (make-null-lexenv)) (*converting-for-interpreter* nil) (*source-info* info) (sb!xc:*compile-file-pathname* nil) (sb!xc:*compile-file-truename* nil) (*top-level-lambdas* ()) (*pending-top-level-lambdas* ()) (*compiler-error-bailout* (lambda () (compiler-mumble "~2&; fatal error, aborting compilation~%") (return-from sub-compile-file (values nil t t)))) (*current-path* nil) (*last-source-context* nil) (*last-original-source* nil) (*last-source-form* nil) (*last-format-string* nil) (*last-format-args* nil) (*last-message-count* 0) (*info-environment* (or *backend-info-environment* *info-environment*)) (*gensym-counter* 0)) (with-compilation-values (sb!xc:with-compilation-unit () (clear-stuff) (process-sources info) (finish-block-compilation) (compile-top-level-lambdas () t) (let ((object *compile-object*)) (etypecase object (fasl-file (fasl-dump-source-info info object)) (core-object (fix-core-source-info info object d-s-info)) (null))) nil)))) ;;; Return a list of pathnames for the named files. All the files must ;;; exist. (defun verify-source-files (stuff) (let* ((stuff (if (listp stuff) stuff (list stuff))) (default-host (make-pathname :host (pathname-host (pathname (first stuff)))))) (flet ((try-with-type (path type error-p) (let ((new (merge-pathnames path (make-pathname :type type :defaults default-host)))) (if (probe-file new) new (and error-p (truename new)))))) (unless stuff (error "can't compile with no source files")) (mapcar #'(lambda (x) (let ((x (pathname x))) (cond ((typep x 'logical-pathname) (try-with-type x "LISP" t)) ((probe-file x) x) ((try-with-type x "lisp" nil)) ((try-with-type x "lisp" t))))) stuff)))) (defun elapsed-time-to-string (tsec) (multiple-value-bind (tmin sec) (truncate tsec 60) (multiple-value-bind (thr min) (truncate tmin 60) (format nil "~D:~2,'0D:~2,'0D" thr min sec)))) ;;; Print some junk at the beginning and end of compilation. (defun start-error-output (source-info) (declare (type source-info source-info)) (dolist (x (source-info-files source-info)) (compiler-mumble "~&; compiling file ~S (written ~A):~%" (namestring (file-info-name x)) (sb!int:format-universal-time nil (file-info-write-date x) :style :government :print-weekday nil :print-timezone nil))) (values)) (defun finish-error-output (source-info won) (declare (type source-info source-info)) (compiler-mumble "~&; compilation ~:[aborted after~;finished in~] ~A~&" won (elapsed-time-to-string (- (get-universal-time) (source-info-start-time source-info)))) (values)) ;;; Open some files and call SUB-COMPILE-FILE. If something unwinds ;;; out of the compile, then abort the writing of the output file, so ;;; we don't overwrite it with known garbage. (defun sb!xc:compile-file (input-file &key (output-file (cfp-output-file-default input-file)) ;; FIXME: ANSI doesn't seem to say anything about ;; *COMPILE-VERBOSE* and *COMPILE-PRINT* being rebound by this ;; function.. ((:verbose sb!xc:*compile-verbose*) sb!xc:*compile-verbose*) ((:print sb!xc:*compile-print*) sb!xc:*compile-print*) (external-format :default) ((:block-compile *block-compile-argument*) nil) ((:entry-points *entry-points*) nil) ((:byte-compile *byte-compile*) *byte-compile-default*)) #!+sb-doc "Compile INPUT-FILE, producing a corresponding fasl file. :Output-File The name of the fasl to output. :Block-Compile Determines whether multiple functions are compiled together as a unit, resolving function references at compile time. NIL means that global function names are never resolved at compilation time. :Entry-Points This specifies a list of function names for functions in the file(s) that must be given global definitions. This only applies to block compilation. If the value is NIL (the default) then all functions will be globally defined. :Byte-Compile {T | NIL | :MAYBE} Determines whether to compile into interpreted byte code instead of machine instructions. Byte code is several times smaller, but much slower. If :MAYBE, then only byte-compile when SPEED is 0 and DEBUG <= 1. The default is the value of SB-EXT:*BYTE-COMPILE-DEFAULT*, which is initially :MAYBE." (unless (eq external-format :default) (error "Non-:DEFAULT EXTERNAL-FORMAT values are not supported.")) (let* ((fasl-file nil) (output-file-name nil) (compile-won nil) (warnings-p nil) (failure-p t) ; T in case error keeps this from being set later ;; KLUDGE: The listifying and unlistifying in the next calls ;; is to interface to old CMU CL code which accepted and ;; returned lists of multiple source files. It would be ;; cleaner to redo VERIFY-SOURCE-FILES and as ;; VERIFY-SOURCE-FILE, accepting a single source file, and ;; do a similar transformation on MAKE-FILE-SOURCE-INFO too. ;; -- WHN 20000201 (input-pathname (first (verify-source-files (list input-file)))) (source-info (make-file-source-info (list input-pathname)))) (unwind-protect (progn (when output-file (setq output-file-name (sb!xc:compile-file-pathname input-file :output-file output-file)) (setq fasl-file (open-fasl-file output-file-name (namestring input-pathname) (eq *byte-compile* t)))) (when sb!xc:*compile-verbose* (start-error-output source-info)) (let ((*compile-object* fasl-file) dummy) (multiple-value-setq (dummy warnings-p failure-p) (sub-compile-file source-info))) (setq compile-won t)) (close-source-info source-info) (when fasl-file (close-fasl-file fasl-file (not compile-won)) (setq output-file-name (pathname (fasl-file-stream fasl-file))) (when (and compile-won sb!xc:*compile-verbose*) (compiler-mumble "~2&; ~A written~%" (namestring output-file-name)))) (when sb!xc:*compile-verbose* (finish-error-output source-info compile-won))) (values (if output-file ;; Hack around filesystem race condition... (or (probe-file output-file-name) output-file-name) nil) warnings-p failure-p))) ;;; a helper function for COMPILE-FILE-PATHNAME: the default for ;;; the OUTPUT-FILE argument ;;; ;;; ANSI: The defaults for the OUTPUT-FILE are taken from the pathname ;;; that results from merging the INPUT-FILE with the value of ;;; *DEFAULT-PATHNAME-DEFAULTS*, except that the type component should ;;; default to the appropriate implementation-defined default type for ;;; compiled files. (defun cfp-output-file-default (input-file) (let* ((defaults (merge-pathnames input-file *default-pathname-defaults*)) (retyped (make-pathname :type *backend-fasl-file-type* :defaults defaults))) retyped)) ;;; KLUDGE: Part of the ANSI spec for this seems contradictory: ;;; If INPUT-FILE is a logical pathname and OUTPUT-FILE is unsupplied, ;;; the result is a logical pathname. If INPUT-FILE is a logical ;;; pathname, it is translated into a physical pathname as if by ;;; calling TRANSLATE-LOGICAL-PATHNAME. ;;; So I haven't really tried to make this precisely ANSI-compatible ;;; at the level of e.g. whether it returns logical pathname or a ;;; physical pathname. Patches to make it more correct are welcome. ;;; -- WHN 2000-12-09 (defun sb!xc:compile-file-pathname (input-file &key (output-file (cfp-output-file-default input-file)) &allow-other-keys) #!+sb-doc "Return a pathname describing what file COMPILE-FILE would write to given these arguments." (pathname output-file))