1 ;;; introspection library
3 ;;; This is here as a discussion point, not yet a supported interface. If
4 ;;; you would like to use the functions here, or you would like other
5 ;;; functions to be here, join the debate on navel@metacircles.com.
6 ;;; List info at http://lists.metacircles.com/cgi-bin/mailman/listinfo/navel
8 ;;; For the avoidance of doubt, the exported interface is the proposed
9 ;;; supported interface. Anything else is internal, though you're
10 ;;; welcome to argue a case for exporting it.
12 ;;; If you steal the code from this file to cut and paste into your
13 ;;; own project, there will be much wailing and gnashing of teeth.
14 ;;; Your teeth. If need be, we'll kick them for you. This is a
15 ;;; contrib, we're allowed to look in internals. You're an
16 ;;; application programmer, and are not.
19 ;;; 1) structs don't have within-file location info. problem for the
20 ;;; structure itself, accessors and the predicate
21 ;;; 3) error handling. Signal random errors, or handle and resignal 'our'
22 ;;; error, or return NIL?
25 (defpackage :sb-introspect
27 (:export "FUNCTION-ARGLIST"
28 "VALID-FUNCTION-NAME-P"
29 "FIND-DEFINITION-SOURCE"
30 "FIND-DEFINITION-SOURCES-BY-NAME"
32 "DEFINITION-SOURCE-PATHNAME"
33 "DEFINITION-SOURCE-FORM-PATH"
34 "DEFINITION-SOURCE-CHARACTER-OFFSET"
35 "DEFINITION-SOURCE-FILE-WRITE-DATE"
36 "DEFINITION-SOURCE-PLIST"
37 "DEFINITION-NOT-FOUND" "DEFINITION-NAME"
38 "FIND-FUNCTION-CALLEES"
39 "FIND-FUNCTION-CALLERS"))
41 (in-package :sb-introspect)
43 ;;;; Internal interface for SBCL debug info
45 ;;; Here are some tutorial-style type definitions to help understand
46 ;;; the internal SBCL debugging data structures we're using. The
47 ;;; commentary is based on CMUCL's debug internals manual.
49 (deftype debug-info ()
50 "Structure containing all the debug information related to a function.
51 Function objects reference debug-infos which in turn reference
52 debug-sources and so on."
53 'sb-c::compiled-debug-info)
55 (deftype debug-source ()
56 "Debug sources describe where to find source code.
57 For example, the debug source for a function compiled from a file will
58 include the pathname of the file and the position of the definition."
61 (deftype debug-function ()
62 "Debug function represent static compile-time information about a function."
63 'sb-c::compiled-debug-fun)
65 (declaim (ftype (function (function) debug-info) function-debug-info))
66 (defun function-debug-info (function)
67 (let* ((function-object (sb-kernel::%closure-fun function))
68 (function-header (sb-kernel:fun-code-header function-object)))
69 (sb-kernel:%code-debug-info function-header)))
71 (declaim (ftype (function (function) debug-source) function-debug-source))
72 (defun function-debug-source (function)
73 (debug-info-source (function-debug-info function)))
75 (declaim (ftype (function (debug-info) debug-source) debug-info-source))
76 (defun debug-info-source (debug-info)
77 (sb-c::debug-info-source debug-info))
79 (declaim (ftype (function (debug-info) debug-function) debug-info-debug-function))
80 (defun debug-info-debug-function (debug-info)
81 (elt (sb-c::compiled-debug-info-fun-map debug-info) 0))
83 (defun valid-function-name-p (name)
84 "True if NAME denotes a function name that can be passed to MACRO-FUNCTION or FDEFINITION "
85 (and (sb-int:valid-function-name-p name) t))
87 ;;;; Finding definitions
89 (defstruct definition-source
90 ;; Pathname of the source file that the definition was compiled from.
91 ;; This is null if the definition was not compiled from a file.
92 (pathname nil :type (or null pathname))
93 ;; Source-path of the definition within the file.
94 ;; This may be incomplete depending on the debug level at which the
95 ;; source was compiled.
96 (form-path '() :type list)
97 ;; Character offset of the top-level-form containing the definition.
98 ;; This corresponds to the first element of form-path.
99 (character-offset nil :type (or null integer))
100 ;; File-write-date of the source file when compiled.
101 ;; Null if not compiled from a file.
102 (file-write-date nil :type (or null integer))
103 ;; plist from WITH-COMPILATION-UNIT
105 ;; Any extra metadata that the caller might be interested in. For
106 ;; example the specializers of the method whose definition-source this
108 (description nil :type list))
110 (defun find-definition-sources-by-name (name type)
111 "Returns a list of DEFINITION-SOURCEs for the objects of type TYPE
112 defined with name NAME. NAME may be a symbol or a extended function
113 name. Type can currently be one of the following:
138 If an unsupported TYPE is requested, the function will return NIL.
146 (find-class name nil))))
150 (when (and (symbolp name)
151 (eq (sb-int:info :variable :kind name) :special))
152 (translate-source-location (sb-int:info :source-location type name))))
154 (when (and (symbolp name)
155 (eq (sb-int:info :variable :kind name) :constant))
156 (translate-source-location (sb-int:info :source-location type name))))
158 (when (and (symbolp name)
159 (eq (sb-int:info :variable :kind name) :macro))
160 (translate-source-location (sb-int:info :source-location type name))))
162 (when (and (symbolp name)
163 (macro-function name))
164 (find-definition-source (macro-function name))))
166 (when (compiler-macro-function name)
167 (find-definition-source (compiler-macro-function name))))
168 ((:function :generic-function)
169 (when (and (fboundp name)
170 (or (not (symbolp name))
171 (not (macro-function name))))
172 (let ((fun (fdefinition name)))
173 (when (eq (not (typep fun 'generic-function))
174 (not (eq type :generic-function)))
175 (find-definition-source fun)))))
177 (let ((expander-fun (sb-int:info :type :expander name)))
179 (find-definition-source expander-fun))))
181 (when (and (fboundp name)
182 (typep (fdefinition name) 'generic-function))
183 (loop for method in (sb-mop::generic-function-methods
185 for source = (find-definition-source method)
186 when source collect source)))
188 (when (and (consp name)
189 (eq (car name) 'setf))
190 (setf name (cadr name)))
191 (let ((expander (or (sb-int:info :setf :inverse name)
192 (sb-int:info :setf :expander name))))
194 (sb-introspect:find-definition-source (if (symbolp expander)
195 (symbol-function expander)
198 (let ((class (get-class name)))
200 (when (typep class 'sb-pcl::structure-class)
201 (find-definition-source class))
202 (when (sb-int:info :typed-structure :info name)
203 (translate-source-location
204 (sb-int:info :source-location :typed-structure name))))))
206 (let ((class (get-class name)))
208 (not (typep class 'sb-pcl::structure-class)))
209 (when (eq (not (typep class 'sb-pcl::condition-class))
210 (not (eq type :condition)))
211 (find-definition-source class)))))
212 ((:method-combination)
213 (let ((combination-fun
214 (ignore-errors (find-method #'sb-mop:find-method-combination
216 (list (find-class 'generic-function)
219 (when combination-fun
220 (find-definition-source combination-fun))))
223 (let ((package (find-package name)))
225 (find-definition-source package)))))
226 ;; TRANSFORM and OPTIMIZER handling from swank-sbcl
229 (let ((fun-info (sb-int:info :function :info name)))
231 (loop for xform in (sb-c::fun-info-transforms fun-info)
232 for source = (find-definition-source
233 (sb-c::transform-function xform))
234 for typespec = (sb-kernel:type-specifier
235 (sb-c::transform-type xform))
236 for note = (sb-c::transform-note xform)
237 do (setf (definition-source-description source)
239 (list (second typespec) note)
244 (let ((fun-info (sb-int:info :function :info name)))
246 (let ((otypes '((sb-c::fun-info-derive-type . sb-c:derive-type)
247 (sb-c::fun-info-ltn-annotate . sb-c:ltn-annotate)
248 (sb-c::fun-info-ltn-annotate . sb-c:ltn-annotate)
249 (sb-c::fun-info-optimizer . sb-c:optimizer))))
250 (loop for (reader . name) in otypes
251 for fn = (funcall reader fun-info)
253 (let ((source (find-definition-source fn)))
254 (setf (definition-source-description source)
259 (let ((fun-info (sb-int:info :function :info name)))
261 (loop for vop in (sb-c::fun-info-templates fun-info)
262 for source = (find-definition-source
263 (sb-c::vop-info-generator-function vop))
264 do (setf (definition-source-description source)
265 (list (sb-c::template-name vop)
266 (sb-c::template-note vop)))
270 (let ((transform-fun (sb-int:info :function :source-transform name)))
272 (sb-introspect:find-definition-source transform-fun)))))
276 (defun find-definition-source (object)
278 ((or sb-pcl::condition-class sb-pcl::structure-class)
279 (let ((classoid (sb-impl::find-classoid (class-name object))))
281 (let ((layout (sb-impl::classoid-layout classoid)))
283 (translate-source-location
284 (sb-kernel::layout-source-location layout)))))))
287 (find-definition-sources-by-name
288 (sb-pcl::method-combination-type-name object) :method-combination)))
290 (translate-source-location (sb-impl::package-source-location object)))
292 (translate-source-location (sb-pcl::definition-source object)))
293 ;; Use the PCL definition location information instead of the function
294 ;; debug-info for methods and generic functions. Sometimes the
295 ;; debug-info would point into PCL internals instead of the proper
298 (let ((source (translate-source-location
299 (sb-pcl::definition-source object))))
301 (setf (definition-source-description source)
302 (list (sb-mop:generic-function-lambda-list object))))
305 (let ((source (translate-source-location
306 (sb-pcl::definition-source object))))
308 (setf (definition-source-description source)
309 (append (method-qualifiers object)
310 (sb-pcl::unparse-specializers
311 (sb-mop:method-specializers object)))))
314 (cond ((struct-accessor-p object)
315 (find-definition-source
316 (struct-accessor-structure-class object)))
317 ((struct-predicate-p object)
318 (find-definition-source
319 (struct-predicate-structure-class object)))
321 (find-function-definition-source object))))
323 (error "Don't know how to retrive source location for a ~S~%"
326 (defun find-function-definition-source (function)
327 (let* ((debug-info (function-debug-info function))
328 (debug-source (debug-info-source debug-info))
329 (debug-fun (debug-info-debug-function debug-info))
330 (tlf (if debug-fun (sb-c::compiled-debug-fun-tlf-number debug-fun))))
331 (make-definition-source
333 (if (eql (sb-c::debug-source-from debug-source) :file)
334 (parse-namestring (sb-c::debug-source-name debug-source)))
337 (elt (sb-c::debug-source-start-positions debug-source) tlf))
338 ;; Unfortunately there is no proper source path available in the
339 ;; debug-source. FIXME: We could use sb-di:code-locations to get
340 ;; a full source path. -luke (12/Mar/2005)
341 :form-path (if tlf (list tlf))
342 :file-write-date (sb-c::debug-source-created debug-source)
343 :plist (sb-c::debug-source-plist debug-source))))
345 (defun translate-source-location (location)
347 (make-definition-source
348 :pathname (let ((n (sb-c:definition-source-location-namestring location)))
350 (parse-namestring n)))
352 (let ((number (sb-c:definition-source-location-toplevel-form-number
356 :plist (sb-c:definition-source-location-plist location))
357 (make-definition-source)))
359 ;;; This is kludgey. We expect these functions (the underlying functions,
360 ;;; not the closures) to be in static space and so not move ever.
361 ;;; FIXME It's also possibly wrong: not all structures use these vanilla
362 ;;; accessors, e.g. when the :type option is used
363 (defvar *struct-slotplace-reader*
364 (sb-vm::%simple-fun-self #'definition-source-pathname))
365 (defvar *struct-slotplace-writer*
366 (sb-vm::%simple-fun-self #'(setf definition-source-pathname)))
367 (defvar *struct-predicate*
368 (sb-vm::%simple-fun-self #'definition-source-p))
370 (defun struct-accessor-p (function)
371 (let ((self (sb-vm::%simple-fun-self function)))
372 ;; FIXME there are other kinds of struct accessor. Fill out this list
373 (member self (list *struct-slotplace-reader*
374 *struct-slotplace-writer*))))
376 (defun struct-predicate-p (function)
377 (let ((self (sb-vm::%simple-fun-self function)))
378 ;; FIXME there may be other structure predicate functions
379 (member self (list *struct-predicate*))))
381 ;;; FIXME: maybe this should be renamed as FUNCTION-LAMBDA-LIST?
382 (defun function-arglist (function)
383 "Describe the lambda list for the extended function designator FUNCTION.
384 Works for special-operators, macros, simple functions and generic
385 functions. Signals error if not found"
386 (cond ((valid-function-name-p function)
387 (function-arglist (or (and (symbolp function)
388 (macro-function function))
389 (fdefinition function))))
390 ((typep function 'generic-function)
391 (sb-pcl::generic-function-pretty-arglist function))
392 (t (sb-impl::%simple-fun-arglist
393 (sb-impl::%closure-fun function)))))
395 (defun struct-accessor-structure-class (function)
396 (let ((self (sb-vm::%simple-fun-self function)))
398 ((member self (list *struct-slotplace-reader* *struct-slotplace-writer*))
400 (sb-kernel::classoid-name
401 (sb-kernel::layout-classoid
402 (sb-kernel:%closure-index-ref function 1)))))
405 (defun struct-predicate-structure-class (function)
406 (let ((self (sb-vm::%simple-fun-self function)))
408 ((member self (list *struct-predicate*))
410 (sb-kernel::classoid-name
411 (sb-kernel::layout-classoid
412 (sb-kernel:%closure-index-ref function 0)))))
415 ;;;; find callers/callees, liberated from Helmut Eller's code in SLIME
417 ;;; This interface is trmendously experimental.
419 ;;; For the moment I'm taking the view that FDEFN is an internal
420 ;;; object (one out of one CMUCL developer surveyed didn't know what
421 ;;; they were for), so these routines deal in FUNCTIONs
423 ;;; Find callers and callees by looking at the constant pool of
424 ;;; compiled code objects. We assume every fdefn object in the
425 ;;; constant pool corresponds to a call to that function. A better
426 ;;; strategy would be to use the disassembler to find actual
429 (defun find-function-callees (function)
430 "Return functions called by FUNCTION."
433 (sb-kernel:fun-code-header function)
435 (when (sb-kernel:fdefn-p obj)
436 (push (sb-kernel:fdefn-fun obj)
441 (defun find-function-callers (function &optional (spaces '(:read-only :static
443 "Return functions which call FUNCTION, by searching SPACES for code objects"
444 (let ((referrers '()))
445 (map-caller-code-components
449 (let ((entry (sb-kernel:%code-entry-points code)))
451 (push (princ-to-string code) referrers))
453 (loop for e = entry then (sb-kernel::%simple-fun-next e)
455 do (pushnew e referrers)))))))
458 (declaim (inline map-code-constants))
459 (defun map-code-constants (code fn)
460 "Call FN for each constant in CODE's constant pool."
461 (check-type code sb-kernel:code-component)
462 (loop for i from sb-vm:code-constants-offset below
463 (sb-kernel:get-header-data code)
464 do (funcall fn (sb-kernel:code-header-ref code i))))
466 (declaim (inline map-allocated-code-components))
467 (defun map-allocated-code-components (spaces fn)
468 "Call FN for each allocated code component in one of SPACES. FN
469 receives the object and its size as arguments. SPACES should be a
470 list of the symbols :dynamic, :static, or :read-only."
471 (dolist (space spaces)
472 (sb-vm::map-allocated-objects
473 (lambda (obj header size)
474 (when (= sb-vm:code-header-widetag header)
475 (funcall fn obj size)))
478 (declaim (inline map-caller-code-components))
479 (defun map-caller-code-components (function spaces fn)
480 "Call FN for each code component with a fdefn for FUNCTION in its
482 (let ((function (coerce function 'function)))
483 (map-allocated-code-components
486 (declare (ignore size))
490 (when (and (sb-kernel:fdefn-p constant)
491 (eq (sb-kernel:fdefn-fun constant)
493 (funcall fn obj))))))))
495 (provide 'sb-introspect)