1 ;;;; This file contains compiler code and compiler-related stuff which
2 ;;;; can be built early on. Some of the stuff may be here because it's
3 ;;;; needed early on, some other stuff (e.g. constants) just because
4 ;;;; it might as well be done early so we don't have to think about
5 ;;;; whether it's done early enough.
7 ;;;; This software is part of the SBCL system. See the README file for
10 ;;;; This software is derived from the CMU CL system, which was
11 ;;;; written at Carnegie Mellon University and released into the
12 ;;;; public domain. The software is in the public domain and is
13 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
14 ;;;; files for more information.
18 ;;; ANSI limits on compilation
19 (def!constant sb!xc:call-arguments-limit most-positive-fixnum
21 "The exclusive upper bound on the number of arguments which may be passed
22 to a function, including &REST args.")
23 (def!constant sb!xc:lambda-parameters-limit most-positive-fixnum
25 "The exclusive upper bound on the number of parameters which may be specifed
26 in a given lambda list. This is actually the limit on required and &OPTIONAL
27 parameters. With &KEY and &AUX you can get more.")
28 (def!constant sb!xc:multiple-values-limit most-positive-fixnum
30 "The exclusive upper bound on the number of multiple VALUES that you can
33 (defconstant-eqx sb!xc:lambda-list-keywords
45 "symbols which are magical in a lambda list")
47 ;;;; cross-compiler-only versions of CL special variables, so that we
48 ;;;; don't have weird interactions with the host compiler
50 (defvar sb!xc:*compile-file-pathname*)
51 (defvar sb!xc:*compile-file-truename*)
52 (defvar sb!xc:*compile-print*)
53 (defvar sb!xc:*compile-verbose*)
55 ;;;; miscellaneous types used both in the cross-compiler and on the target
57 ;;;; FIXME: The INDEX and LAYOUT-DEPTHOID definitions probably belong
58 ;;;; somewhere else, not "early-c", since they're after all not part
61 ;;; the type of LAYOUT-DEPTHOID slot values
62 (def!type sb!kernel::layout-depthoid () '(or index (integer -1 -1)))
64 ;;; possible values for the INLINE-ness of a function.
66 '(member :inline :maybe-inline :notinline nil))
67 (defparameter *inlinep-translations*
69 (notinline . :notinline)
70 (maybe-inline . :maybe-inline)))
72 ;;; the lexical environment we are currently converting in
74 (declaim (type lexenv *lexenv*))
76 ;;; *FREE-VARS* translates from the names of variables referenced
77 ;;; globally to the LEAF structures for them. *FREE-FUNS* is like
78 ;;; *FREE-VARS*, only it deals with function names.
81 (declaim (type hash-table *free-vars* *free-funs*))
83 ;;; We use the same CONSTANT structure to represent all equal anonymous
84 ;;; constants. This hashtable translates from constants to the LEAFs that
87 (declaim (type hash-table *constants*))
89 ;;; miscellaneous forward declarations
90 (defvar *code-segment*)
91 #!+sb-dyncount (defvar *collect-dynamic-statistics*)
92 (defvar *component-being-compiled*)
93 (defvar *compiler-error-context*)
94 (defvar *compiler-error-count*)
95 (defvar *compiler-warning-count*)
96 (defvar *compiler-style-warning-count*)
97 (defvar *compiler-note-count*)
98 (defvar *compiler-trace-output*)
99 (defvar *constraint-number*)
100 (defvar *count-vop-usages*)
101 (defvar *current-path*)
102 (defvar *current-component*)
103 (defvar *delayed-ir1-transforms*)
105 (defvar *dynamic-counts-tn*)
107 (defvar *event-info*)
108 (defvar *event-note-threshold*)
112 (defvar *info-environment*)
114 (defvar *source-info*)
115 (defvar *trace-table*)
116 (defvar *undefined-warnings*)
117 (defvar *warnings-p*)
119 ;;; unique ID for the next object created (to let us track object
120 ;;; identity even across GC, useful for understanding weird compiler
121 ;;; bugs where something is supposed to be unique but is instead
122 ;;; exists as duplicate objects)
125 (defvar *object-id-counter* 0)
126 (defun new-object-id ()
129 (incf *object-id-counter*))))
131 ;;;; miscellaneous utilities
133 ;;; Delete any undefined warnings for NAME and KIND. This is for the
134 ;;; benefit of the compiler, but it's sometimes called from stuff like
135 ;;; type-defining code which isn't logically part of the compiler.
136 (declaim (ftype (function ((or symbol cons) keyword) (values))
138 (defun note-name-defined (name kind)
139 ;; We do this BOUNDP check because this function can be called when
140 ;; not in a compilation unit (as when loading top level forms).
141 (when (boundp '*undefined-warnings*)
142 (setq *undefined-warnings*
143 (delete-if (lambda (x)
144 (and (equal (undefined-warning-name x) name)
145 (eq (undefined-warning-kind x) kind)))
146 *undefined-warnings*)))
149 ;;; to be called when a variable is lexically bound
150 (declaim (ftype (function (symbol) (values)) note-lexical-binding))
151 (defun note-lexical-binding (symbol)
152 ;; This check is intended to protect us from getting silently
153 ;; burned when we define
156 ;; (DEFUN FOO (X) (+ X *FOO*))
161 ;; and then we happen to compile bar.lisp before foo.lisp.
162 (when (looks-like-name-of-special-var-p symbol)
163 ;; FIXME: should be COMPILER-STYLE-WARNING?
164 (style-warn "using the lexical binding of the symbol ~S, not the~@
165 dynamic binding, even though the symbol name follows the usual naming~@
166 convention (names like *FOO*) for special variables" symbol))
169 ;;; shorthand for creating debug names from source names or other
171 ;;; (DEBUG-NAMIFY "FLET ~S" SOURCE-NAME)
172 ;;; (DEBUG-NAMIFY "top level form ~S" FORM)
174 ;;; FIXME: This function seems to have a lot in common with
175 ;;; STRINGIFY-FORM, and perhaps there's some way to merge the two
177 (defun debug-namify (format-string &rest format-arguments)
178 (with-standard-io-syntax
179 (let ((*print-readably* nil)
180 (*package* *cl-package*)
183 (apply #'format nil format-string format-arguments))))