Style improvements and minor bugfix from sb-fasteval integration.
[sbcl.git] / src / compiler / info-functions.lisp
blobd5baa3a57d1d6fb724443b47335f48e7a7ff6c83
1 ;;;; miscellaneous functions which use INFO
2 ;;;;
3 ;;;; (In CMU CL, these were in globaldb.lisp. They've been moved here
4 ;;;; because references to INFO can't be compiled correctly until
5 ;;;; globaldb initialization is complete, and the SBCL technique for
6 ;;;; initializing the global database in the cross-compiler isn't
7 ;;;; completed until load time.)
9 ;;;; This software is part of the SBCL system. See the README file for
10 ;;;; more information.
11 ;;;;
12 ;;;; This software is derived from the CMU CL system, which was
13 ;;;; written at Carnegie Mellon University and released into the
14 ;;;; public domain. The software is in the public domain and is
15 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
16 ;;;; files for more information.
18 (in-package "SB!C")
20 ;;;; internal utilities defined in terms of INFO
22 ;;; Check that NAME is a valid function name, returning the name if
23 ;;; OK, and signalling an error if not. In addition to checking for
24 ;;; basic well-formedness, we also check that symbol names are not NIL
25 ;;; or the name of a special form.
26 (defun check-fun-name (name)
27 (typecase name
28 (list
29 (unless (legal-fun-name-p name)
30 (compiler-error "illegal function name: ~S" name)))
31 (symbol
32 (when (eq (info :function :kind name) :special-form)
33 (compiler-error "Special form is an illegal function name: ~S" name)))
35 (compiler-error "illegal function name: ~S" name)))
36 (values))
38 ;;; Record a new function definition, and check its legality.
39 (defun proclaim-as-fun-name (name)
41 ;; legal name?
42 (check-fun-name name)
44 ;; KLUDGE: This can happen when eg. compiling a NAMED-LAMBDA, and isn't
45 ;; guarded against elsewhere -- so we want to assert package locks here. The
46 ;; reason we do it only when stomping on existing stuff is because we want
47 ;; to keep
48 ;; (WITHOUT-PACKAGE-LOCKS (DEFUN LOCKED:FOO ...))
49 ;; viable, which requires no compile-time violations in the harmless cases.
50 (with-single-package-locked-error ()
51 (flet ((assert-it ()
52 (assert-symbol-home-package-unlocked name "proclaiming ~S as a function")))
54 (let ((kind (info :function :kind name)))
55 ;; scrubbing old data I: possible collision with a macro
56 (when (and (fboundp name) (eq :macro kind))
57 (assert-it)
58 (compiler-style-warn "~S was previously defined as a macro." name)
59 (setf (info :function :where-from name) :assumed)
60 (clear-info :function :macro-function name))
62 (unless (eq :function kind)
63 (assert-it)
64 (setf (info :function :kind name) :function)))))
66 ;; scrubbing old data II: dangling forward references
68 ;; (This could happen if someone executes PROCLAIM FTYPE at
69 ;; macroexpansion time, which is bad style, or at compile time, e.g.
70 ;; in EVAL-WHEN (:COMPILE) inside something like DEFSTRUCT, in which
71 ;; case it's reasonable style. Either way, NAME is no longer a free
72 ;; function.)
73 (when (boundp '*free-funs*) ; when compiling
74 (remhash name *free-funs*))
76 (values))
78 ;;; This is called to do something about SETF functions that overlap
79 ;;; with SETF macros. Perhaps we should interact with the user to see
80 ;;; whether the macro should be blown away, but for now just give a
81 ;;; warning. Due to the weak semantics of the (SETF FUNCTION) name, we
82 ;;; can't assume that they aren't just naming a function (SETF FOO)
83 ;;; for the heck of it. NAME is already known to be well-formed.
84 (defun warn-if-setf-macro (name)
85 ;; Never warn about this situation when running the cross-compiler.
86 ;; SBCL provides expanders/inverses *and* functions for most SETFable things
87 ;; even when CLHS does not specifically state that #'(SETF x) exists.
88 #+sb-xc-host (declare (ignore name))
89 #-sb-xc-host
90 (let ((stem (second name)))
91 (when (or (info :setf :inverse stem) (info :setf :expander stem))
92 (compiler-style-warn
93 "defining function ~S when ~S already has a SETF macro"
94 name stem)))
95 (values))
97 ;;; Make NAME no longer be a function name: clear everything back to
98 ;;; the default.
99 (defun undefine-fun-name (name)
100 (when name
101 (macrolet ((frob (&rest types)
102 `(clear-info-values
103 name ',(mapcar (lambda (x)
104 (meta-info-number (meta-info :function x)))
105 types))))
106 ;; Note that this does not clear the :DEFINITION.
107 ;; That's correct, because if we lose the association between a
108 ;; symbol and its #<fdefn> object, it could lead to creation of
109 ;; a non-unique #<fdefn> for a name.
110 (frob :info
111 :type
112 :where-from
113 :inlinep
114 :kind
115 :macro-function
116 :inline-expansion-designator
117 :source-transform
118 :assumed-type)))
119 (values))
121 ;;; part of what happens with DEFUN, also with some PCL stuff: Make
122 ;;; NAME known to be a function definition.
123 (defun become-defined-fun-name (name)
124 (proclaim-as-fun-name name)
125 (when (eq (info :function :where-from name) :assumed)
126 (setf (info :function :where-from name) :defined)
127 (if (info :function :assumed-type name)
128 (clear-info :function :assumed-type name))))
130 ;;; Trivially wrap (INFO :FUNCTION :INLINE-EXPANSION-DESIGNATOR FUN-NAME)
131 (declaim (ftype (function ((or symbol cons)) list) fun-name-inline-expansion))
132 (defun fun-name-inline-expansion (fun-name)
133 (info :function :inline-expansion-designator fun-name))
135 ;;;; ANSI Common Lisp functions which are defined in terms of the info
136 ;;;; database
138 (defun sb!xc:macro-function (symbol &optional env)
139 #!+sb-doc
140 "If SYMBOL names a macro in ENV, returns the expansion function,
141 else returns NIL. If ENV is unspecified or NIL, use the global environment
142 only."
143 ;; local function definitions (ordinary) can shadow a global macro
144 (typecase env
145 #!+sb-fasteval
146 (sb!interpreter:basic-env
147 (multiple-value-bind (kind def)
148 (sb!interpreter:find-lexical-fun env symbol)
149 (when def
150 (return-from sb!xc:macro-function (when (eq kind :macro) def)))))
151 (lexenv
152 (let ((def (cdr (assoc symbol (lexenv-funs env)))))
153 (when def
154 (return-from sb!xc:macro-function
155 (when (typep def '(cons (eql macro))) (cdr def)))))))
156 (values (info :function :macro-function symbol)))
158 (defun (setf sb!xc:macro-function) (function symbol &optional environment)
159 (declare (symbol symbol) (type function function))
160 (when environment
161 ;; Note: Technically there could be an ENV optional argument to SETF
162 ;; MACRO-FUNCTION, but since ANSI says that the consequences of
163 ;; supplying a non-nil one are undefined, we don't allow it.
164 ;; (Thus our implementation of this unspecified behavior is to
165 ;; complain. SInce the behavior is unspecified, this is conforming.:-)
166 (error "Non-NIL environment argument in SETF of MACRO-FUNCTION ~S: ~S"
167 symbol environment))
168 (when (eq (info :function :kind symbol) :special-form)
169 (error "~S names a special form." symbol))
170 (with-single-package-locked-error (:symbol symbol "setting the macro-function of ~S")
171 (clear-info :function :type symbol)
172 (setf (info :function :kind symbol) :macro)
173 (setf (info :function :macro-function symbol) function)
174 (install-guard-function symbol `(:macro ,symbol) nil))
175 function)
177 ;; Set (SYMBOL-FUNCTION SYMBOL) to a closure that signals an error,
178 ;; preventing funcall/apply of macros and special operators.
179 (defun install-guard-function (symbol fun-name docstring)
180 #+sb-xc-host (declare (ignore fun-name))
181 (when docstring
182 (setf (random-documentation symbol 'function) docstring))
183 #-sb-xc-host
184 ;; (SETF SYMBOL-FUNCTION) goes out of its way to disallow this closure,
185 ;; but we can trivially replicate its low-level effect.
186 (setf (fdefn-fun (find-or-create-fdefn symbol))
187 (sb!impl::set-closure-name
188 (lambda (&rest args)
189 (declare (ignore args))
190 ;; ANSI specification of FUNCALL says that this should be
191 ;; an error of type UNDEFINED-FUNCTION, not just SIMPLE-ERROR.
192 ;; SPECIAL-FORM-FUNCTION is a subtype of UNDEFINED-FUNCTION.
193 (error (if (eq (info :function :kind symbol) :special-form)
194 'special-form-function
195 'undefined-function)
196 :name symbol))
197 fun-name)))
199 (defun sb!xc:compiler-macro-function (name &optional env)
200 #!+sb-doc
201 "If NAME names a compiler-macro in ENV, return the expansion function, else
202 return NIL. Can be set with SETF when ENV is NIL."
203 (legal-fun-name-or-type-error name)
204 ;; CLHS 3.2.2.1: Creating a lexical binding for the function name
205 ;; not only creates a new local function or macro definition, but
206 ;; also shadows[2] the compiler macro.
207 (unless (fun-locally-defined-p name env)
208 ;; Note: CMU CL used to return NIL here when a NOTINLINE
209 ;; declaration was in force. That's fairly logical, given the
210 ;; specified effect of NOTINLINE declarations on compiler-macro
211 ;; expansion. However, (1) it doesn't seem to be consistent with
212 ;; the ANSI spec for COMPILER-MACRO-FUNCTION, and (2) it would
213 ;; give surprising behavior for (SETF (COMPILER-MACRO-FUNCTION
214 ;; FOO) ...) in the presence of a (PROCLAIM '(NOTINLINE FOO)). So
215 ;; we don't do it.
216 (values (info :function :compiler-macro-function name))))
218 (defun (setf sb!xc:compiler-macro-function) (function name &optional env)
219 (declare (type (or symbol list) name)
220 (type (or function null) function))
221 (when env
222 ;; ANSI says this operation is undefined.
223 (error "can't SETF COMPILER-MACRO-FUNCTION when ENV is non-NIL"))
224 (when (eq (info :function :kind name) :special-form)
225 (error "~S names a special form." name))
226 (with-single-package-locked-error
227 (:symbol name "setting the compiler-macro-function of ~A")
228 (setf (info :function :compiler-macro-function name) function)
229 function))
231 ;;;; a subset of DOCUMENTATION functionality for bootstrapping
233 ;;; FDOCUMENTATION is like DOCUMENTATION, but with less functionality,
234 ;;; and implemented with DEFUN instead of DEFGENERIC so that it can
235 ;;; run before CLOS is set up. Supported DOC-TYPE values are
236 ;;; FUNCTION
237 ;;; SETF
238 ;;; STRUCTURE
239 ;;; T
240 ;;; TYPE
241 ;;; VARIABLE
242 ;;; FIXME: Other types end up in INFO :RANDOM-DOCUMENTATION :STUFF. I
243 ;;; should add some code to monitor this and make sure that nothing is
244 ;;; unintentionally being sent to never never land this way.
245 ;;; FIXME: Rename FDOCUMENTATION to BDOCUMENTATION, by analogy with
246 ;;; DEF!STRUCT and DEF!MACRO and so forth. And consider simply saving
247 ;;; all the BDOCUMENTATION entries in a *BDOCUMENTATION* hash table
248 ;;; and slamming them into PCL once PCL gets going.
249 (defun fdocumentation (x doc-type)
250 ;; In the cross-compiler, %FUN-DOC is just plain wrong, and while it
251 ;; might "work" to fetch strings using INFO, it really doesn't make sense.
252 #+sb-xc-host (declare (ignore x doc-type))
253 #-sb-xc-host
254 (case doc-type
255 (variable
256 (typecase x
257 (symbol (values (info :variable :documentation x)))))
258 ;; FUNCTION is not used at the momemnt, just here for symmetry.
259 (function
260 (cond ((functionp x)
261 (%fun-doc x))
262 ((and (legal-fun-name-p x) (fboundp x))
263 (%fun-doc (or (and (symbolp x) (macro-function x))
264 (fdefinition x))))))
265 (structure
266 (typecase x
267 (symbol (cond
268 ((eq (info :type :kind x) :instance)
269 (values (info :type :documentation x)))
270 ((info :typed-structure :info x)
271 (values (info :typed-structure :documentation x)))))))
272 (type
273 (typecase x
274 (structure-class (values (info :type :documentation (class-name x))))
275 (t (and (typep x 'symbol) (values (info :type :documentation x))))))
276 (setf (values (info :setf :documentation x)))
277 ((t)
278 (typecase x
279 (function (%fun-doc x))
280 (package (package-doc-string x))
281 (structure-class (values (info :type :documentation (class-name x))))
282 ((or symbol cons)
283 (random-documentation x doc-type))))
285 (when (typep x '(or symbol cons))
286 (random-documentation x doc-type)))))
288 (defun (setf fdocumentation) (string name doc-type)
289 (declare (type (or null string) string))
290 #+sb-xc-host (declare (ignore name doc-type))
291 #-sb-xc-host
292 (let ((info-number
293 (macrolet ((info-number (class type)
294 (meta-info-number (meta-info class type))))
295 (case doc-type
296 (variable (info-number :variable :documentation))
297 (structure
298 (cond ((eq (info :type :kind name) :instance)
299 (info-number :type :documentation))
300 ((info :typed-structure :info name)
301 (info-number :typed-structure :documentation))))
302 (type (info-number :type :documentation))
303 (setf (info-number :setf :documentation))))))
304 (cond (info-number
305 (if string
306 (set-info-value name info-number string)
307 (clear-info-values name (list info-number))))
308 ((eq doc-type 'function)
309 ;; FIXME: this silently loses
310 ;; * (setf (documentation '(a bad name) 'function) "x") => "x"
311 ;; * (documentation '(a bad name) 'function) => NIL
312 ;; which is fine because as noted in pcl/documentation.lsp
313 ;; even for supported doc types an implementation is permitted
314 ;; to discard docs at any time
315 ;; but should a warning be issued just as for an unknown DOC-TYPE?
317 ;; And there's additional weirdness if you do, in this order -
318 ;; * (setf (documentation 'foo 'function) "hi")
319 ;; * (defun foo () "hey" 1)
320 ;; * (documentation 'foo 'function) => "hi" ; should be "hey"
321 ;; CLHS says regarding DEFUN:
322 ;; " Documentation is attached as a documentation string to
323 ;; /name/ (as kind function) and to the /function object/."
324 (when (legal-fun-name-p name)
325 (setf (%fun-doc (fdefinition name)) string)))
326 ((typep name '(or symbol cons))
327 (setf (random-documentation name doc-type) string))))
328 string)
330 (defun random-documentation (name type)
331 (cdr (assoc type (info :random-documentation :stuff name))))
333 (defun (setf random-documentation) (new-value name type)
334 (let ((pair (assoc type (info :random-documentation :stuff name))))
335 (if pair
336 (setf (cdr pair) new-value)
337 (push (cons type new-value)
338 (info :random-documentation :stuff name))))
339 new-value)
341 ;; Return the number of calls to NAME that IR2 emitted as full calls,
342 ;; not counting calls via #'F that went untracked.
343 ;; Return 0 if the answer is nonzero but a warning was already signaled
344 ;; about any full calls were emitted. This return convention satisfies the
345 ;; intended use of this statistic - to decide whether to generate a warning
346 ;; about failure to inline NAME, which is shown at most once per name
347 ;; to avoid unleashing a flood of identical warnings.
348 (defun emitted-full-call-count (name)
349 (let ((status (car (info :function :emitted-full-calls name))))
350 (and (integerp status)
351 ;; Bit 0 tells whether any call was NOT in the presence of
352 ;; a 'notinline' declaration, thus eligible to be inline.
353 ;; Bit 1 tells whether any warning was emitted yet.
354 (= (logand status 3) #b01)
355 (ash status -2)))) ; the call count as tracked by IR2