0.9.2.47:
[sbcl/lichteblau.git] / src / compiler / target-disassem.lisp
blob9bcfd33f8e438ea59c0a183fe400ec7b9d2e274e
1 ;;;; disassembler-related stuff not needed in cross-compilation host
3 ;;;; This software is part of the SBCL system. See the README file for
4 ;;;; more information.
5 ;;;;
6 ;;;; This software is derived from the CMU CL system, which was
7 ;;;; written at Carnegie Mellon University and released into the
8 ;;;; public domain. The software is in the public domain and is
9 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
10 ;;;; files for more information.
12 (in-package "SB!DISASSEM")
14 ;;;; FIXME: A lot of stupid package prefixes would go away if DISASSEM
15 ;;;; would use the SB!DI package. And some more would go away if it would
16 ;;;; use SB!SYS (in order to get to the SAP-FOO operators).
18 ;;;; combining instructions where one specializes another
20 ;;; Return non-NIL if the instruction SPECIAL is a more specific
21 ;;; version of GENERAL (i.e., the same instruction, but with more
22 ;;; constraints).
23 (defun inst-specializes-p (special general)
24 (declare (type instruction special general))
25 (let ((smask (inst-mask special))
26 (gmask (inst-mask general)))
27 (and (dchunk= (inst-id general)
28 (dchunk-and (inst-id special) gmask))
29 (dchunk-strict-superset-p smask gmask))))
31 ;;; a bit arbitrary, but should work ok...
32 ;;;
33 ;;; Return an integer corresponding to the specificity of the
34 ;;; instruction INST.
35 (defun specializer-rank (inst)
36 (declare (type instruction inst))
37 (* (dchunk-count-bits (inst-mask inst)) 4))
39 ;;; Order the list of instructions INSTS with more specific (more
40 ;;; constant bits, or same-as argument constains) ones first. Returns
41 ;;; the ordered list.
42 (defun order-specializers (insts)
43 (declare (type list insts))
44 (sort insts #'> :key #'specializer-rank))
46 (defun specialization-error (insts)
47 (bug
48 "~@<Instructions either aren't related or conflict in some way: ~4I~_~S~:>"
49 insts))
51 ;;; Given a list of instructions INSTS, Sees if one of these instructions is a
52 ;;; more general form of all the others, in which case they are put into its
53 ;;; specializers list, and it is returned. Otherwise an error is signaled.
54 (defun try-specializing (insts)
55 (declare (type list insts))
56 (let ((masters (copy-list insts)))
57 (dolist (possible-master insts)
58 (dolist (possible-specializer insts)
59 (unless (or (eq possible-specializer possible-master)
60 (inst-specializes-p possible-specializer possible-master))
61 (setf masters (delete possible-master masters))
62 (return) ; exit the inner loop
63 )))
64 (cond ((null masters)
65 (specialization-error insts))
66 ((cdr masters)
67 (error "multiple specializing masters: ~S" masters))
69 (let ((master (car masters)))
70 (setf (inst-specializers master)
71 (order-specializers (remove master insts)))
72 master)))))
74 ;;;; choosing an instruction
76 #!-sb-fluid (declaim (inline inst-matches-p choose-inst-specialization))
78 ;;; Return non-NIL if all constant-bits in INST match CHUNK.
79 (defun inst-matches-p (inst chunk)
80 (declare (type instruction inst)
81 (type dchunk chunk))
82 (dchunk= (dchunk-and (inst-mask inst) chunk) (inst-id inst)))
84 ;;; Given an instruction object, INST, and a bit-pattern, CHUNK, pick
85 ;;; the most specific instruction on INST's specializer list whose
86 ;;; constraints are met by CHUNK. If none do, then return INST.
87 (defun choose-inst-specialization (inst chunk)
88 (declare (type instruction inst)
89 (type dchunk chunk))
90 (or (dolist (spec (inst-specializers inst) nil)
91 (declare (type instruction spec))
92 (when (inst-matches-p spec chunk)
93 (return spec)))
94 inst))
96 ;;;; searching for an instruction in instruction space
98 ;;; Return the instruction object within INST-SPACE corresponding to the
99 ;;; bit-pattern CHUNK, or NIL if there isn't one.
100 (defun find-inst (chunk inst-space)
101 (declare (type dchunk chunk)
102 (type (or null inst-space instruction) inst-space))
103 (etypecase inst-space
104 (null nil)
105 (instruction
106 (if (inst-matches-p inst-space chunk)
107 (choose-inst-specialization inst-space chunk)
108 nil))
109 (inst-space
110 (let* ((mask (ispace-valid-mask inst-space))
111 (id (dchunk-and mask chunk)))
112 (declare (type dchunk id mask))
113 (dolist (choice (ispace-choices inst-space))
114 (declare (type inst-space-choice choice))
115 (when (dchunk= id (ischoice-common-id choice))
116 (return (find-inst chunk (ischoice-subspace choice)))))))))
118 ;;;; building the instruction space
120 ;;; Returns an instruction-space object corresponding to the list of
121 ;;; instructions INSTS. If the optional parameter INITIAL-MASK is
122 ;;; supplied, only bits it has set are used.
123 (defun build-inst-space (insts &optional (initial-mask dchunk-one))
124 ;; This is done by finding any set of bits that's common to
125 ;; all instructions, building an instruction-space node that selects on those
126 ;; bits, and recursively handle sets of instructions with a common value for
127 ;; these bits (which, since there should be fewer instructions than in INSTS,
128 ;; should have some additional set of bits to select on, etc). If there
129 ;; are no common bits, or all instructions have the same value within those
130 ;; bits, TRY-SPECIALIZING is called, which handles the cases of many
131 ;; variations on a single instruction.
132 (declare (type list insts)
133 (type dchunk initial-mask))
134 (cond ((null insts)
135 nil)
136 ((null (cdr insts))
137 (car insts))
139 (let ((vmask (dchunk-copy initial-mask)))
140 (dolist (inst insts)
141 (dchunk-andf vmask (inst-mask inst)))
142 (if (dchunk-zerop vmask)
143 (try-specializing insts)
144 (let ((buckets nil))
145 (dolist (inst insts)
146 (let* ((common-id (dchunk-and (inst-id inst) vmask))
147 (bucket (assoc common-id buckets :test #'dchunk=)))
148 (cond ((null bucket)
149 (push (list common-id inst) buckets))
151 (push inst (cdr bucket))))))
152 (let ((submask (dchunk-clear initial-mask vmask)))
153 (if (= (length buckets) 1)
154 (try-specializing insts)
155 (make-inst-space
156 :valid-mask vmask
157 :choices (mapcar (lambda (bucket)
158 (make-inst-space-choice
159 :subspace (build-inst-space
160 (cdr bucket)
161 submask)
162 :common-id (car bucket)))
163 buckets))))))))))
165 ;;;; an inst-space printer for debugging purposes
167 (defun print-masked-binary (num mask word-size &optional (show word-size))
168 (do ((bit (1- word-size) (1- bit)))
169 ((< bit 0))
170 (write-char (cond ((logbitp bit mask)
171 (if (logbitp bit num) #\1 #\0))
172 ((< bit show) #\x)
173 (t #\space)))))
175 (defun print-inst-bits (inst)
176 (print-masked-binary (inst-id inst)
177 (inst-mask inst)
178 dchunk-bits
179 (bytes-to-bits (inst-length inst))))
181 ;;; Print a nicely-formatted version of INST-SPACE.
182 (defun print-inst-space (inst-space &optional (indent 0))
183 (etypecase inst-space
184 (null)
185 (instruction
186 (format t "~Vt[~A(~A)~40T" indent
187 (inst-name inst-space)
188 (inst-format-name inst-space))
189 (print-inst-bits inst-space)
190 (dolist (inst (inst-specializers inst-space))
191 (format t "~%~Vt:~A~40T" indent (inst-name inst))
192 (print-inst-bits inst))
193 (write-char #\])
194 (terpri))
195 (inst-space
196 (format t "~Vt---- ~8,'0X ----~%"
197 indent
198 (ispace-valid-mask inst-space))
199 (map nil
200 (lambda (choice)
201 (format t "~Vt~8,'0X ==>~%"
202 (+ 2 indent)
203 (ischoice-common-id choice))
204 (print-inst-space (ischoice-subspace choice)
205 (+ 4 indent)))
206 (ispace-choices inst-space)))))
208 ;;;; (The actual disassembly part follows.)
210 ;;; Code object layout:
211 ;;; header-word
212 ;;; code-size (starting from first inst, in words)
213 ;;; entry-points (points to first function header)
214 ;;; debug-info
215 ;;; trace-table-offset (starting from first inst, in bytes)
216 ;;; constant1
217 ;;; constant2
218 ;;; ...
219 ;;; <padding to dual-word boundary>
220 ;;; start of instructions
221 ;;; ...
222 ;;; fun-headers and lra's buried in here randomly
223 ;;; ...
224 ;;; start of trace-table
225 ;;; <padding to dual-word boundary>
227 ;;; Function header layout (dual word aligned):
228 ;;; header-word
229 ;;; self pointer
230 ;;; next pointer (next function header)
231 ;;; name
232 ;;; arglist
233 ;;; type
235 ;;; LRA layout (dual word aligned):
236 ;;; header-word
238 #!-sb-fluid (declaim (inline words-to-bytes bytes-to-words))
240 (eval-when (:compile-toplevel :load-toplevel :execute)
241 ;;; Convert a word-offset NUM to a byte-offset.
242 (defun words-to-bytes (num)
243 (declare (type offset num))
244 (ash num sb!vm:word-shift))
245 ) ; EVAL-WHEN
247 ;;; Convert a byte-offset NUM to a word-offset.
248 (defun bytes-to-words (num)
249 (declare (type offset num))
250 (ash num (- sb!vm:word-shift)))
252 (defconstant lra-size (words-to-bytes 1))
254 (defstruct (offs-hook (:copier nil))
255 (offset 0 :type offset)
256 (fun (missing-arg) :type function)
257 (before-address nil :type (member t nil)))
259 (defstruct (segment (:conc-name seg-)
260 (:constructor %make-segment)
261 (:copier nil))
262 (sap-maker (missing-arg)
263 :type (function () sb!sys:system-area-pointer))
264 (length 0 :type disassem-length)
265 (virtual-location 0 :type address)
266 (storage-info nil :type (or null storage-info))
267 (code nil :type (or null sb!kernel:code-component))
268 (hooks nil :type list))
269 (def!method print-object ((seg segment) stream)
270 (print-unreadable-object (seg stream :type t)
271 (let ((addr (sb!sys:sap-int (funcall (seg-sap-maker seg)))))
272 (format stream "#X~X[~W]~:[ (#X~X)~;~*~]~@[ in ~S~]"
273 addr
274 (seg-length seg)
275 (= (seg-virtual-location seg) addr)
276 (seg-virtual-location seg)
277 (seg-code seg)))))
279 ;;;; function ops
281 (defun fun-self (fun)
282 (declare (type compiled-function fun))
283 (sb!kernel:%simple-fun-self fun))
285 (defun fun-code (fun)
286 (declare (type compiled-function fun))
287 (sb!kernel:fun-code-header (fun-self fun)))
289 (defun fun-next (fun)
290 (declare (type compiled-function fun))
291 (sb!kernel:%simple-fun-next fun))
293 (defun fun-address (fun)
294 (declare (type compiled-function fun))
295 (ecase (sb!kernel:widetag-of fun)
296 (#.sb!vm:simple-fun-header-widetag
297 (- (sb!kernel:get-lisp-obj-address fun) sb!vm:fun-pointer-lowtag))
298 (#.sb!vm:closure-header-widetag
299 (fun-address (sb!kernel:%closure-fun fun)))
300 (#.sb!vm:funcallable-instance-header-widetag
301 (fun-address (sb!kernel:funcallable-instance-fun fun)))))
303 ;;; the offset of FUNCTION from the start of its code-component's
304 ;;; instruction area
305 (defun fun-insts-offset (function)
306 (declare (type compiled-function function))
307 (- (fun-address function)
308 (sb!sys:sap-int (sb!kernel:code-instructions (fun-code function)))))
310 ;;; the offset of FUNCTION from the start of its code-component
311 (defun fun-offset (function)
312 (declare (type compiled-function function))
313 (words-to-bytes (sb!kernel:get-closure-length function)))
315 ;;;; operations on code-components (which hold the instructions for
316 ;;;; one or more functions)
318 ;;; Return the length of the instruction area in CODE-COMPONENT.
319 (defun code-inst-area-length (code-component)
320 (declare (type sb!kernel:code-component code-component))
321 (sb!kernel:code-header-ref code-component
322 sb!vm:code-trace-table-offset-slot))
324 ;;; Return the address of the instruction area in CODE-COMPONENT.
325 (defun code-inst-area-address (code-component)
326 (declare (type sb!kernel:code-component code-component))
327 (sb!sys:sap-int (sb!kernel:code-instructions code-component)))
329 ;;; unused as of sbcl-0.pre7.129
331 ;;; Return the first function in CODE-COMPONENT.
332 (defun code-first-function (code-component)
333 (declare (type sb!kernel:code-component code-component))
334 (sb!kernel:code-header-ref code-component
335 sb!vm:code-trace-table-offset-slot))
338 (defun segment-offs-to-code-offs (offset segment)
339 (sb!sys:without-gcing
340 (let* ((seg-base-addr (sb!sys:sap-int (funcall (seg-sap-maker segment))))
341 (code-addr
342 (logandc1 sb!vm:lowtag-mask
343 (sb!kernel:get-lisp-obj-address (seg-code segment))))
344 (addr (+ offset seg-base-addr)))
345 (declare (type address seg-base-addr code-addr addr))
346 (- addr code-addr))))
348 (defun code-offs-to-segment-offs (offset segment)
349 (sb!sys:without-gcing
350 (let* ((seg-base-addr (sb!sys:sap-int (funcall (seg-sap-maker segment))))
351 (code-addr
352 (logandc1 sb!vm:lowtag-mask
353 (sb!kernel:get-lisp-obj-address (seg-code segment))))
354 (addr (+ offset code-addr)))
355 (declare (type address seg-base-addr code-addr addr))
356 (- addr seg-base-addr))))
358 (defun code-insts-offs-to-segment-offs (offset segment)
359 (sb!sys:without-gcing
360 (let* ((seg-base-addr (sb!sys:sap-int (funcall (seg-sap-maker segment))))
361 (code-insts-addr
362 (sb!sys:sap-int (sb!kernel:code-instructions (seg-code segment))))
363 (addr (+ offset code-insts-addr)))
364 (declare (type address seg-base-addr code-insts-addr addr))
365 (- addr seg-base-addr))))
367 (defun lra-hook (chunk stream dstate)
368 (declare (type dchunk chunk)
369 (ignore chunk)
370 (type (or null stream) stream)
371 (type disassem-state dstate))
372 (when (and (aligned-p (+ (seg-virtual-location (dstate-segment dstate))
373 (dstate-cur-offs dstate))
374 (* 2 sb!vm:n-word-bytes))
375 ;; Check type.
376 (= (sb!sys:sap-ref-8 (dstate-segment-sap dstate)
377 (if (eq (dstate-byte-order dstate)
378 :little-endian)
379 (dstate-cur-offs dstate)
380 (+ (dstate-cur-offs dstate)
381 (1- lra-size))))
382 sb!vm:return-pc-header-widetag))
383 (unless (null stream)
384 (note "possible LRA header" dstate)))
385 nil)
387 ;;; Print the fun-header (entry-point) pseudo-instruction at the
388 ;;; current location in DSTATE to STREAM.
389 (defun fun-header-hook (stream dstate)
390 (declare (type (or null stream) stream)
391 (type disassem-state dstate))
392 (unless (null stream)
393 (let* ((seg (dstate-segment dstate))
394 (code (seg-code seg))
395 (woffs
396 (bytes-to-words
397 (segment-offs-to-code-offs (dstate-cur-offs dstate) seg)))
398 (name
399 (sb!kernel:code-header-ref code
400 (+ woffs
401 sb!vm:simple-fun-name-slot)))
402 (args
403 (sb!kernel:code-header-ref code
404 (+ woffs
405 sb!vm:simple-fun-arglist-slot)))
406 (type
407 (sb!kernel:code-header-ref code
408 (+ woffs
409 sb!vm:simple-fun-type-slot))))
410 (format stream ".~A ~S~:A" 'entry name args)
411 (note (lambda (stream)
412 (format stream "~:S" type)) ; use format to print NIL as ()
413 dstate)))
414 (incf (dstate-next-offs dstate)
415 (words-to-bytes sb!vm:simple-fun-code-offset)))
417 (defun alignment-hook (chunk stream dstate)
418 (declare (type dchunk chunk)
419 (ignore chunk)
420 (type (or null stream) stream)
421 (type disassem-state dstate))
422 (let ((location
423 (+ (seg-virtual-location (dstate-segment dstate))
424 (dstate-cur-offs dstate)))
425 (alignment (dstate-alignment dstate)))
426 (unless (aligned-p location alignment)
427 (when stream
428 (format stream "~A~Vt~W~%" '.align
429 (dstate-argument-column dstate)
430 alignment))
431 (incf(dstate-next-offs dstate)
432 (- (align location alignment) location)))
433 nil))
435 (defun rewind-current-segment (dstate segment)
436 (declare (type disassem-state dstate)
437 (type segment segment))
438 (setf (dstate-segment dstate) segment)
439 (setf (dstate-cur-offs-hooks dstate)
440 (stable-sort (nreverse (copy-list (seg-hooks segment)))
441 (lambda (oh1 oh2)
442 (or (< (offs-hook-offset oh1) (offs-hook-offset oh2))
443 (and (= (offs-hook-offset oh1)
444 (offs-hook-offset oh2))
445 (offs-hook-before-address oh1)
446 (not (offs-hook-before-address oh2)))))))
447 (setf (dstate-cur-offs dstate) 0)
448 (setf (dstate-cur-labels dstate) (dstate-labels dstate)))
450 (defun call-offs-hooks (before-address stream dstate)
451 (declare (type (or null stream) stream)
452 (type disassem-state dstate))
453 (let ((cur-offs (dstate-cur-offs dstate)))
454 (setf (dstate-next-offs dstate) cur-offs)
455 (loop
456 (let ((next-hook (car (dstate-cur-offs-hooks dstate))))
457 (when (null next-hook)
458 (return))
459 (let ((hook-offs (offs-hook-offset next-hook)))
460 (when (or (> hook-offs cur-offs)
461 (and (= hook-offs cur-offs)
462 before-address
463 (not (offs-hook-before-address next-hook))))
464 (return))
465 (unless (< hook-offs cur-offs)
466 (funcall (offs-hook-fun next-hook) stream dstate))
467 (pop (dstate-cur-offs-hooks dstate))
468 (unless (= (dstate-next-offs dstate) cur-offs)
469 (return)))))))
471 (defun call-fun-hooks (chunk stream dstate)
472 (let ((hooks (dstate-fun-hooks dstate))
473 (cur-offs (dstate-cur-offs dstate)))
474 (setf (dstate-next-offs dstate) cur-offs)
475 (dolist (hook hooks nil)
476 (let ((prefix-p (funcall hook chunk stream dstate)))
477 (unless (= (dstate-next-offs dstate) cur-offs)
478 (return prefix-p))))))
480 (defun handle-bogus-instruction (stream dstate)
481 (let ((alignment (dstate-alignment dstate)))
482 (unless (null stream)
483 (multiple-value-bind (words bytes)
484 (truncate alignment sb!vm:n-word-bytes)
485 (when (> words 0)
486 (print-words words stream dstate))
487 (when (> bytes 0)
488 (print-inst bytes stream dstate)))
489 (print-bytes alignment stream dstate))
490 (incf (dstate-next-offs dstate) alignment)))
492 ;;; Iterate through the instructions in SEGMENT, calling FUNCTION for
493 ;;; each instruction, with arguments of CHUNK, STREAM, and DSTATE.
494 (defun map-segment-instructions (function segment dstate &optional stream)
495 (declare (type function function)
496 (type segment segment)
497 (type disassem-state dstate)
498 (type (or null stream) stream))
500 (let ((ispace (get-inst-space))
501 (prefix-p nil)) ; just processed a prefix inst
503 (rewind-current-segment dstate segment)
505 (loop
506 (when (>= (dstate-cur-offs dstate)
507 (seg-length (dstate-segment dstate)))
508 ;; done!
509 (return))
511 (setf (dstate-next-offs dstate) (dstate-cur-offs dstate))
513 (call-offs-hooks t stream dstate)
514 (unless (or prefix-p (null stream))
515 (print-current-address stream dstate))
516 (call-offs-hooks nil stream dstate)
518 (unless (> (dstate-next-offs dstate) (dstate-cur-offs dstate))
519 (sb!sys:without-gcing
520 (setf (dstate-segment-sap dstate) (funcall (seg-sap-maker segment)))
522 (let ((chunk
523 (sap-ref-dchunk (dstate-segment-sap dstate)
524 (dstate-cur-offs dstate)
525 (dstate-byte-order dstate))))
526 (let ((fun-prefix-p (call-fun-hooks chunk stream dstate)))
527 (if (> (dstate-next-offs dstate) (dstate-cur-offs dstate))
528 (setf prefix-p fun-prefix-p)
529 (let ((inst (find-inst chunk ispace)))
530 (cond ((null inst)
531 (handle-bogus-instruction stream dstate))
533 (setf (dstate-inst-properties dstate) nil)
534 (setf (dstate-next-offs dstate)
535 (+ (dstate-cur-offs dstate)
536 (inst-length inst)))
537 (let ((orig-next (dstate-next-offs dstate)))
538 (print-inst (inst-length inst) stream dstate :trailing-space nil)
539 (let ((prefilter (inst-prefilter inst))
540 (control (inst-control inst)))
541 (when prefilter
542 (funcall prefilter chunk dstate))
544 ;; print any instruction bytes recognized by the prefilter which calls read-suffix
545 ;; and updates next-offs
546 (when stream
547 (let ((suffix-len (- (dstate-next-offs dstate) orig-next)))
548 (when (plusp suffix-len)
549 (print-inst suffix-len stream dstate :offset (inst-length inst) :trailing-space nil))
550 (dotimes (i (- *disassem-inst-column-width* (* 2 (+ (inst-length inst) suffix-len))))
551 (write-char #\space stream)))
552 (write-char #\space stream))
554 (funcall function chunk inst)
556 (setf prefix-p (null (inst-printer inst)))
558 (when control
559 (funcall control chunk inst stream dstate))
560 ))))))))))
562 (setf (dstate-cur-offs dstate) (dstate-next-offs dstate))
564 (unless (null stream)
565 (unless prefix-p
566 (print-notes-and-newline stream dstate))
567 (setf (dstate-output-state dstate) nil)))))
569 ;;; Make an initial non-printing disassembly pass through DSTATE,
570 ;;; noting any addresses that are referenced by instructions in this
571 ;;; segment.
572 (defun add-segment-labels (segment dstate)
573 ;; add labels at the beginning with a label-number of nil; we'll notice
574 ;; later and fill them in (and sort them)
575 (declare (type disassem-state dstate))
576 (let ((labels (dstate-labels dstate)))
577 (map-segment-instructions
578 (lambda (chunk inst)
579 (declare (type dchunk chunk) (type instruction inst))
580 (let ((labeller (inst-labeller inst)))
581 (when labeller
582 (setf labels (funcall labeller chunk labels dstate)))))
583 segment
584 dstate)
585 (setf (dstate-labels dstate) labels)
586 ;; erase any notes that got there by accident
587 (setf (dstate-notes dstate) nil)))
589 ;;; If any labels in DSTATE have been added since the last call to
590 ;;; this function, give them label-numbers, enter them in the
591 ;;; hash-table, and make sure the label list is in sorted order.
592 (defun number-labels (dstate)
593 (let ((labels (dstate-labels dstate)))
594 (when (and labels (null (cdar labels)))
595 ;; at least one label left un-numbered
596 (setf labels (sort labels #'< :key #'car))
597 (let ((max -1)
598 (label-hash (dstate-label-hash dstate)))
599 (dolist (label labels)
600 (when (not (null (cdr label)))
601 (setf max (max max (cdr label)))))
602 (dolist (label labels)
603 (when (null (cdr label))
604 (incf max)
605 (setf (cdr label) max)
606 (setf (gethash (car label) label-hash)
607 (format nil "L~W" max)))))
608 (setf (dstate-labels dstate) labels))))
610 ;;; Get the instruction-space, creating it if necessary.
611 (defun get-inst-space ()
612 (let ((ispace *disassem-inst-space*))
613 (when (null ispace)
614 (let ((insts nil))
615 (maphash (lambda (name inst-flavs)
616 (declare (ignore name))
617 (dolist (flav inst-flavs)
618 (push flav insts)))
619 *disassem-insts*)
620 (setf ispace (build-inst-space insts)))
621 (setf *disassem-inst-space* ispace))
622 ispace))
624 ;;;; Add global hooks.
626 (defun add-offs-hook (segment addr hook)
627 (let ((entry (cons addr hook)))
628 (if (null (seg-hooks segment))
629 (setf (seg-hooks segment) (list entry))
630 (push entry (cdr (last (seg-hooks segment)))))))
632 (defun add-offs-note-hook (segment addr note)
633 (add-offs-hook segment
634 addr
635 (lambda (stream dstate)
636 (declare (type (or null stream) stream)
637 (type disassem-state dstate))
638 (when stream
639 (note note dstate)))))
641 (defun add-offs-comment-hook (segment addr comment)
642 (add-offs-hook segment
643 addr
644 (lambda (stream dstate)
645 (declare (type (or null stream) stream)
646 (ignore dstate))
647 (when stream
648 (write-string ";;; " stream)
649 (etypecase comment
650 (string
651 (write-string comment stream))
652 (function
653 (funcall comment stream)))
654 (terpri stream)))))
656 (defun add-fun-hook (dstate function)
657 (push function (dstate-fun-hooks dstate)))
659 (defun set-location-printing-range (dstate from length)
660 (setf (dstate-addr-print-len dstate)
661 ;; 4 bits per hex digit
662 (ceiling (integer-length (logxor from (+ from length))) 4)))
664 ;;; Print the current address in DSTATE to STREAM, plus any labels that
665 ;;; correspond to it, and leave the cursor in the instruction column.
666 (defun print-current-address (stream dstate)
667 (declare (type stream stream)
668 (type disassem-state dstate))
669 (let* ((location
670 (+ (seg-virtual-location (dstate-segment dstate))
671 (dstate-cur-offs dstate)))
672 (location-column-width *disassem-location-column-width*)
673 (plen (dstate-addr-print-len dstate)))
675 (when (null plen)
676 (setf plen location-column-width)
677 (let ((seg (dstate-segment dstate)))
678 (set-location-printing-range dstate
679 (seg-virtual-location seg)
680 (seg-length seg))))
681 (when (eq (dstate-output-state dstate) :beginning)
682 (setf plen location-column-width))
684 (fresh-line stream)
686 (setf location-column-width (+ 2 location-column-width))
687 (princ "; " stream)
689 ;; print the location
690 ;; [this is equivalent to (format stream "~V,'0x:" plen printed-value), but
691 ;; usually avoids any consing]
692 (tab0 (- location-column-width plen) stream)
693 (let* ((printed-bits (* 4 plen))
694 (printed-value (ldb (byte printed-bits 0) location))
695 (leading-zeros
696 (truncate (- printed-bits (integer-length printed-value)) 4)))
697 (dotimes (i leading-zeros)
698 (write-char #\0 stream))
699 (unless (zerop printed-value)
700 (write printed-value :stream stream :base 16 :radix nil))
701 (write-char #\: stream))
703 ;; print any labels
704 (loop
705 (let* ((next-label (car (dstate-cur-labels dstate)))
706 (label-location (car next-label)))
707 (when (or (null label-location) (> label-location location))
708 (return))
709 (unless (< label-location location)
710 (format stream " L~W:" (cdr next-label)))
711 (pop (dstate-cur-labels dstate))))
713 ;; move to the instruction column
714 (tab0 (+ location-column-width 1 label-column-width) stream)
717 (eval-when (:compile-toplevel :execute)
718 (sb!xc:defmacro with-print-restrictions (&rest body)
719 `(let ((*print-pretty* t)
720 (*print-lines* 2)
721 (*print-length* 4)
722 (*print-level* 3))
723 ,@body)))
725 ;;; Print a newline to STREAM, inserting any pending notes in DSTATE
726 ;;; as end-of-line comments. If there is more than one note, a
727 ;;; separate line will be used for each one.
728 (defun print-notes-and-newline (stream dstate)
729 (declare (type stream stream)
730 (type disassem-state dstate))
731 (with-print-restrictions
732 (dolist (note (dstate-notes dstate))
733 (format stream "~Vt " *disassem-note-column*)
734 (pprint-logical-block (stream nil :per-line-prefix "; ")
735 (etypecase note
736 (string
737 (write-string note stream))
738 (function
739 (funcall note stream))))
740 (terpri stream))
741 (fresh-line stream)
742 (setf (dstate-notes dstate) nil)))
744 ;;; Print NUM instruction bytes to STREAM as hex values.
745 (defun print-inst (num stream dstate &key (offset 0) (trailing-space t))
746 (let ((sap (dstate-segment-sap dstate))
747 (start-offs (+ offset (dstate-cur-offs dstate))))
748 (dotimes (offs num)
749 (format stream "~2,'0x" (sb!sys:sap-ref-8 sap (+ offs start-offs))))
750 (when trailing-space
751 (dotimes (i (- *disassem-inst-column-width* (* 2 num)))
752 (write-char #\space stream))
753 (write-char #\space stream))))
755 ;;; Disassemble NUM bytes to STREAM as simple `BYTE' instructions.
756 (defun print-bytes (num stream dstate)
757 (declare (type offset num)
758 (type stream stream)
759 (type disassem-state dstate))
760 (format stream "~A~Vt" 'BYTE (dstate-argument-column dstate))
761 (let ((sap (dstate-segment-sap dstate))
762 (start-offs (dstate-cur-offs dstate)))
763 (dotimes (offs num)
764 (unless (zerop offs)
765 (write-string ", " stream))
766 (format stream "#X~2,'0x" (sb!sys:sap-ref-8 sap (+ offs start-offs))))))
768 ;;; Disassemble NUM machine-words to STREAM as simple `WORD' instructions.
769 (defun print-words (num stream dstate)
770 (declare (type offset num)
771 (type stream stream)
772 (type disassem-state dstate))
773 (format stream "~A~Vt" 'WORD (dstate-argument-column dstate))
774 (let ((sap (dstate-segment-sap dstate))
775 (start-offs (dstate-cur-offs dstate))
776 (byte-order (dstate-byte-order dstate)))
777 (dotimes (word-offs num)
778 (unless (zerop word-offs)
779 (write-string ", " stream))
780 (let ((word 0) (bit-shift 0))
781 (dotimes (byte-offs sb!vm:n-word-bytes)
782 (let ((byte
783 (sb!sys:sap-ref-8
785 (+ start-offs
786 (* word-offs sb!vm:n-word-bytes)
787 byte-offs))))
788 (setf word
789 (if (eq byte-order :big-endian)
790 (+ (ash word sb!vm:n-byte-bits) byte)
791 (+ word (ash byte bit-shift))))
792 (incf bit-shift sb!vm:n-byte-bits)))
793 (format stream "#X~V,'0X" (ash sb!vm:n-word-bits -2) word)))))
795 (defvar *default-dstate-hooks* (list #'lra-hook))
797 ;;; Make a disassembler-state object.
798 (defun make-dstate (&optional (fun-hooks *default-dstate-hooks*))
799 (let ((sap
800 (sb!sys:vector-sap (coerce #() '(vector (unsigned-byte 8)))))
801 (alignment *disassem-inst-alignment-bytes*)
802 (arg-column
803 (+ (or *disassem-opcode-column-width* 0)
804 *disassem-location-column-width*
806 label-column-width)))
808 (when (> alignment 1)
809 (push #'alignment-hook fun-hooks))
811 (%make-dstate :segment-sap sap
812 :fun-hooks fun-hooks
813 :argument-column arg-column
814 :alignment alignment
815 :byte-order sb!c:*backend-byte-order*)))
817 (defun add-fun-header-hooks (segment)
818 (declare (type segment segment))
819 (do ((fun (sb!kernel:code-header-ref (seg-code segment)
820 sb!vm:code-entry-points-slot)
821 (fun-next fun))
822 (length (seg-length segment)))
823 ((null fun))
824 (let ((offset (code-offs-to-segment-offs (fun-offset fun) segment)))
825 (when (<= 0 offset length)
826 (push (make-offs-hook :offset offset :fun #'fun-header-hook)
827 (seg-hooks segment))))))
829 ;;; A SAP-MAKER is a no-argument function that returns a SAP.
831 #!-sb-fluid (declaim (inline sap-maker))
833 (defun sap-maker (function input offset)
834 (declare (optimize (speed 3))
835 (type (function (t) sb!sys:system-area-pointer) function)
836 (type offset offset))
837 (let ((old-sap (sb!sys:sap+ (funcall function input) offset)))
838 (declare (type sb!sys:system-area-pointer old-sap))
839 (lambda ()
840 (let ((new-addr
841 (+ (sb!sys:sap-int (funcall function input)) offset)))
842 ;; Saving the sap like this avoids consing except when the sap
843 ;; changes (because the sap-int, arith, etc., get inlined).
844 (declare (type address new-addr))
845 (if (= (sb!sys:sap-int old-sap) new-addr)
846 old-sap
847 (setf old-sap (sb!sys:int-sap new-addr)))))))
849 (defun vector-sap-maker (vector offset)
850 (declare (optimize (speed 3))
851 (type offset offset))
852 (sap-maker #'sb!sys:vector-sap vector offset))
854 (defun code-sap-maker (code offset)
855 (declare (optimize (speed 3))
856 (type sb!kernel:code-component code)
857 (type offset offset))
858 (sap-maker #'sb!kernel:code-instructions code offset))
860 (defun memory-sap-maker (address)
861 (declare (optimize (speed 3))
862 (type address address))
863 (let ((sap (sb!sys:int-sap address)))
864 (lambda () sap)))
866 ;;; Return a memory segment located at the system-area-pointer returned by
867 ;;; SAP-MAKER and LENGTH bytes long in the disassem-state object DSTATE.
869 ;;; &KEY arguments include :VIRTUAL-LOCATION (by default the same as
870 ;;; the address), :DEBUG-FUN, :SOURCE-FORM-CACHE (a
871 ;;; SOURCE-FORM-CACHE object), and :HOOKS (a list of OFFS-HOOK
872 ;;; objects).
873 (defun make-segment (sap-maker length
874 &key
875 code virtual-location
876 debug-fun source-form-cache
877 hooks)
878 (declare (type (function () sb!sys:system-area-pointer) sap-maker)
879 (type disassem-length length)
880 (type (or null address) virtual-location)
881 (type (or null sb!di:debug-fun) debug-fun)
882 (type (or null source-form-cache) source-form-cache))
883 (let* ((segment
884 (%make-segment
885 :sap-maker sap-maker
886 :length length
887 :virtual-location (or virtual-location
888 (sb!sys:sap-int (funcall sap-maker)))
889 :hooks hooks
890 :code code)))
891 (add-debugging-hooks segment debug-fun source-form-cache)
892 (add-fun-header-hooks segment)
893 segment))
895 (defun make-vector-segment (vector offset &rest args)
896 (declare (type vector vector)
897 (type offset offset)
898 (inline make-segment))
899 (apply #'make-segment (vector-sap-maker vector offset) args))
901 (defun make-code-segment (code offset length &rest args)
902 (declare (type sb!kernel:code-component code)
903 (type offset offset)
904 (inline make-segment))
905 (apply #'make-segment (code-sap-maker code offset) length :code code args))
907 (defun make-memory-segment (address &rest args)
908 (declare (type address address)
909 (inline make-segment))
910 (apply #'make-segment (memory-sap-maker address) args))
912 ;;; just for fun
913 (defun print-fun-headers (function)
914 (declare (type compiled-function function))
915 (let* ((self (fun-self function))
916 (code (sb!kernel:fun-code-header self)))
917 (format t "Code-header ~S: size: ~S, trace-table-offset: ~S~%"
918 code
919 (sb!kernel:code-header-ref code
920 sb!vm:code-code-size-slot)
921 (sb!kernel:code-header-ref code
922 sb!vm:code-trace-table-offset-slot))
923 (do ((fun (sb!kernel:code-header-ref code sb!vm:code-entry-points-slot)
924 (fun-next fun)))
925 ((null fun))
926 (let ((fun-offset (sb!kernel:get-closure-length fun)))
927 ;; There is function header fun-offset words from the
928 ;; code header.
929 (format t "Fun-header ~S at offset ~W (words): ~S~A => ~S~%"
931 fun-offset
932 (sb!kernel:code-header-ref
933 code (+ fun-offset sb!vm:simple-fun-name-slot))
934 (sb!kernel:code-header-ref
935 code (+ fun-offset sb!vm:simple-fun-arglist-slot))
936 (sb!kernel:code-header-ref
937 code (+ fun-offset sb!vm:simple-fun-type-slot)))))))
939 ;;; getting at the source code...
941 (defstruct (source-form-cache (:conc-name sfcache-)
942 (:copier nil))
943 (debug-source nil :type (or null sb!di:debug-source))
944 (toplevel-form-index -1 :type fixnum)
945 (toplevel-form nil :type list)
946 (form-number-mapping-table nil :type (or null (vector list)))
947 (last-location-retrieved nil :type (or null sb!di:code-location))
948 (last-form-retrieved -1 :type fixnum))
950 (defun get-toplevel-form (debug-source tlf-index)
951 (let ((name (sb!di:debug-source-name debug-source)))
952 (ecase (sb!di:debug-source-from debug-source)
953 (:file
954 (cond ((not (probe-file name))
955 (warn "The source file ~S no longer seems to exist." name)
956 nil)
958 (let ((start-positions
959 (sb!di:debug-source-start-positions debug-source)))
960 (cond ((null start-positions)
961 (warn "There is no start positions map.")
962 nil)
964 (let* ((local-tlf-index
965 (- tlf-index
966 (sb!di:debug-source-root-number
967 debug-source)))
968 (char-offset
969 (aref start-positions local-tlf-index)))
970 (with-open-file (f name)
971 (cond ((= (sb!di:debug-source-created debug-source)
972 (file-write-date name))
973 (file-position f char-offset))
975 (warn "Source file ~S has been modified; ~@
976 using form offset instead of ~
977 file index."
978 name)
979 (let ((*read-suppress* t))
980 (dotimes (i local-tlf-index) (read f)))))
981 (let ((*readtable* (copy-readtable)))
982 (set-dispatch-macro-character
983 #\# #\.
984 (lambda (stream sub-char &rest rest)
985 (declare (ignore rest sub-char))
986 (let ((token (read stream t nil t)))
987 (format nil "#.~S" token))))
988 (read f))
989 ))))))))
990 (:lisp
991 (aref name tlf-index)))))
993 (defun cache-valid (loc cache)
994 (and cache
995 (and (eq (sb!di:code-location-debug-source loc)
996 (sfcache-debug-source cache))
997 (eq (sb!di:code-location-toplevel-form-offset loc)
998 (sfcache-toplevel-form-index cache)))))
1000 (defun get-source-form (loc context &optional cache)
1001 (let* ((cache-valid (cache-valid loc cache))
1002 (tlf-index (sb!di:code-location-toplevel-form-offset loc))
1003 (form-number (sb!di:code-location-form-number loc))
1004 (toplevel-form
1005 (if cache-valid
1006 (sfcache-toplevel-form cache)
1007 (get-toplevel-form (sb!di:code-location-debug-source loc)
1008 tlf-index)))
1009 (mapping-table
1010 (if cache-valid
1011 (sfcache-form-number-mapping-table cache)
1012 (sb!di:form-number-translations toplevel-form tlf-index))))
1013 (when (and (not cache-valid) cache)
1014 (setf (sfcache-debug-source cache) (sb!di:code-location-debug-source loc)
1015 (sfcache-toplevel-form-index cache) tlf-index
1016 (sfcache-toplevel-form cache) toplevel-form
1017 (sfcache-form-number-mapping-table cache) mapping-table))
1018 (cond ((null toplevel-form)
1019 nil)
1020 ((> form-number (length mapping-table))
1021 (warn "bogus form-number in form! The source file has probably ~@
1022 been changed too much to cope with.")
1023 (when cache
1024 ;; Disable future warnings.
1025 (setf (sfcache-toplevel-form cache) nil))
1026 nil)
1028 (when cache
1029 (setf (sfcache-last-location-retrieved cache) loc)
1030 (setf (sfcache-last-form-retrieved cache) form-number))
1031 (sb!di:source-path-context toplevel-form
1032 (aref mapping-table form-number)
1033 context)))))
1035 (defun get-different-source-form (loc context &optional cache)
1036 (if (and (cache-valid loc cache)
1037 (or (= (sb!di:code-location-form-number loc)
1038 (sfcache-last-form-retrieved cache))
1039 (and (sfcache-last-location-retrieved cache)
1040 (sb!di:code-location=
1042 (sfcache-last-location-retrieved cache)))))
1043 (values nil nil)
1044 (values (get-source-form loc context cache) t)))
1046 ;;;; stuff to use debugging info to augment the disassembly
1048 (defun code-fun-map (code)
1049 (declare (type sb!kernel:code-component code))
1050 (sb!c::compiled-debug-info-fun-map (sb!kernel:%code-debug-info code)))
1052 (defstruct (location-group (:copier nil))
1053 (locations #() :type (vector (or list fixnum))))
1055 (defstruct (storage-info (:copier nil))
1056 (groups nil :type list) ; alist of (name . location-group)
1057 (debug-vars #() :type vector))
1059 ;;; Return the vector of DEBUG-VARs currently associated with DSTATE.
1060 (defun dstate-debug-vars (dstate)
1061 (declare (type disassem-state dstate))
1062 (storage-info-debug-vars (seg-storage-info (dstate-segment dstate))))
1064 ;;; Given the OFFSET of a location within the location-group called
1065 ;;; LG-NAME, see whether there's a current mapping to a source
1066 ;;; variable in DSTATE, and if so, return the offset of that variable
1067 ;;; in the current debug-var vector.
1068 (defun find-valid-storage-location (offset lg-name dstate)
1069 (declare (type offset offset)
1070 (type symbol lg-name)
1071 (type disassem-state dstate))
1072 (let* ((storage-info
1073 (seg-storage-info (dstate-segment dstate)))
1074 (location-group
1075 (and storage-info
1076 (cdr (assoc lg-name (storage-info-groups storage-info)))))
1077 (currently-valid
1078 (dstate-current-valid-locations dstate)))
1079 (and location-group
1080 (not (null currently-valid))
1081 (let ((locations (location-group-locations location-group)))
1082 (and (< offset (length locations))
1083 (let ((used-by (aref locations offset)))
1084 (and used-by
1085 (let ((debug-var-num
1086 (typecase used-by
1087 (fixnum
1088 (and (not
1089 (zerop (bit currently-valid used-by)))
1090 used-by))
1091 (list
1092 (some (lambda (num)
1093 (and (not
1094 (zerop
1095 (bit currently-valid num)))
1096 num))
1097 used-by)))))
1098 (and debug-var-num
1099 (progn
1100 ;; Found a valid storage reference!
1101 ;; can't use it again until it's revalidated...
1102 (setf (bit (dstate-current-valid-locations
1103 dstate)
1104 debug-var-num)
1106 debug-var-num))
1107 ))))))))
1109 ;;; Return a new vector which has the same contents as the old one
1110 ;;; VEC, plus new cells (for a total size of NEW-LEN). The additional
1111 ;;; elements are initialized to INITIAL-ELEMENT.
1112 (defun grow-vector (vec new-len &optional initial-element)
1113 (declare (type vector vec)
1114 (type fixnum new-len))
1115 (let ((new
1116 (make-sequence `(vector ,(array-element-type vec) ,new-len)
1117 new-len
1118 :initial-element initial-element)))
1119 (dotimes (i (length vec))
1120 (setf (aref new i) (aref vec i)))
1121 new))
1123 ;;; Return a STORAGE-INFO struction describing the object-to-source
1124 ;;; variable mappings from DEBUG-FUN.
1125 (defun storage-info-for-debug-fun (debug-fun)
1126 (declare (type sb!di:debug-fun debug-fun))
1127 (let ((sc-vec sb!c::*backend-sc-numbers*)
1128 (groups nil)
1129 (debug-vars (sb!di::debug-fun-debug-vars
1130 debug-fun)))
1131 (and debug-vars
1132 (dotimes (debug-var-offset
1133 (length debug-vars)
1134 (make-storage-info :groups groups
1135 :debug-vars debug-vars))
1136 (let ((debug-var (aref debug-vars debug-var-offset)))
1137 #+nil
1138 (format t ";;; At offset ~W: ~S~%" debug-var-offset debug-var)
1139 (let* ((sc-offset
1140 (sb!di::compiled-debug-var-sc-offset debug-var))
1141 (sb-name
1142 (sb!c:sb-name
1143 (sb!c:sc-sb (aref sc-vec
1144 (sb!c:sc-offset-scn sc-offset))))))
1145 #+nil
1146 (format t ";;; SET: ~S[~W]~%"
1147 sb-name (sb!c:sc-offset-offset sc-offset))
1148 (unless (null sb-name)
1149 (let ((group (cdr (assoc sb-name groups))))
1150 (when (null group)
1151 (setf group (make-location-group))
1152 (push `(,sb-name . ,group) groups))
1153 (let* ((locations (location-group-locations group))
1154 (length (length locations))
1155 (offset (sb!c:sc-offset-offset sc-offset)))
1156 (when (>= offset length)
1157 (setf locations
1158 (grow-vector locations
1159 (max (* 2 length)
1160 (1+ offset))
1161 nil)
1162 (location-group-locations group)
1163 locations))
1164 (let ((already-there (aref locations offset)))
1165 (cond ((null already-there)
1166 (setf (aref locations offset) debug-var-offset))
1167 ((eql already-there debug-var-offset))
1169 (if (listp already-there)
1170 (pushnew debug-var-offset
1171 (aref locations offset))
1172 (setf (aref locations offset)
1173 (list debug-var-offset
1174 already-there)))))
1175 )))))))
1178 (defun source-available-p (debug-fun)
1179 (handler-case
1180 (sb!di:do-debug-fun-blocks (block debug-fun)
1181 (declare (ignore block))
1182 (return t))
1183 (sb!di:no-debug-blocks () nil)))
1185 (defun print-block-boundary (stream dstate)
1186 (let ((os (dstate-output-state dstate)))
1187 (when (not (eq os :beginning))
1188 (when (not (eq os :block-boundary))
1189 (terpri stream))
1190 (setf (dstate-output-state dstate)
1191 :block-boundary))))
1193 ;;; Add hooks to track to track the source code in SEGMENT during
1194 ;;; disassembly. SFCACHE can be either NIL or it can be a
1195 ;;; SOURCE-FORM-CACHE structure, in which case it is used to cache
1196 ;;; forms from files.
1197 (defun add-source-tracking-hooks (segment debug-fun &optional sfcache)
1198 (declare (type segment segment)
1199 (type (or null sb!di:debug-fun) debug-fun)
1200 (type (or null source-form-cache) sfcache))
1201 (let ((last-block-pc -1))
1202 (flet ((add-hook (pc fun &optional before-address)
1203 (push (make-offs-hook
1204 :offset pc ;; ### FIX to account for non-zero offs in code
1205 :fun fun
1206 :before-address before-address)
1207 (seg-hooks segment))))
1208 (handler-case
1209 (sb!di:do-debug-fun-blocks (block debug-fun)
1210 (let ((first-location-in-block-p t))
1211 (sb!di:do-debug-block-locations (loc block)
1212 (let ((pc (sb!di::compiled-code-location-pc loc)))
1214 ;; Put blank lines in at block boundaries
1215 (when (and first-location-in-block-p
1216 (/= pc last-block-pc))
1217 (setf first-location-in-block-p nil)
1218 (add-hook pc
1219 (lambda (stream dstate)
1220 (print-block-boundary stream dstate))
1222 (setf last-block-pc pc))
1224 ;; Print out corresponding source; this information is not
1225 ;; all that accurate, but it's better than nothing
1226 (unless (zerop (sb!di:code-location-form-number loc))
1227 (multiple-value-bind (form new)
1228 (get-different-source-form loc 0 sfcache)
1229 (when new
1230 (let ((at-block-begin (= pc last-block-pc)))
1231 (add-hook
1233 (lambda (stream dstate)
1234 (declare (ignore dstate))
1235 (when stream
1236 (unless at-block-begin
1237 (terpri stream))
1238 (format stream ";;; [~W] "
1239 (sb!di:code-location-form-number
1240 loc))
1241 (prin1-short form stream)
1242 (terpri stream)
1243 (terpri stream)))
1244 t)))))
1246 ;; Keep track of variable live-ness as best we can.
1247 (let ((live-set
1248 (copy-seq (sb!di::compiled-code-location-live-set
1249 loc))))
1250 (add-hook
1252 (lambda (stream dstate)
1253 (declare (ignore stream))
1254 (setf (dstate-current-valid-locations dstate)
1255 live-set)
1256 #+nil
1257 (note (lambda (stream)
1258 (let ((*print-length* nil))
1259 (format stream "live set: ~S"
1260 live-set)))
1261 dstate))))
1262 ))))
1263 (sb!di:no-debug-blocks () nil)))))
1265 (defun add-debugging-hooks (segment debug-fun &optional sfcache)
1266 (when debug-fun
1267 (setf (seg-storage-info segment)
1268 (storage-info-for-debug-fun debug-fun))
1269 (add-source-tracking-hooks segment debug-fun sfcache)
1270 (let ((kind (sb!di:debug-fun-kind debug-fun)))
1271 (flet ((add-new-hook (n)
1272 (push (make-offs-hook
1273 :offset 0
1274 :fun (lambda (stream dstate)
1275 (declare (ignore stream))
1276 (note n dstate)))
1277 (seg-hooks segment))))
1278 (case kind
1279 (:external)
1280 ((nil)
1281 (add-new-hook "no-arg-parsing entry point"))
1283 (add-new-hook (lambda (stream)
1284 (format stream "~S entry point" kind)))))))))
1286 ;;; Return a list of the segments of memory containing machine code
1287 ;;; instructions for FUNCTION.
1288 (defun get-fun-segments (function)
1289 (declare (type compiled-function function))
1290 (let* ((code (fun-code function))
1291 (fun-map (code-fun-map code))
1292 (fname (sb!kernel:%simple-fun-name function))
1293 (sfcache (make-source-form-cache)))
1294 (let ((first-block-seen-p nil)
1295 (nil-block-seen-p nil)
1296 (last-offset 0)
1297 (last-debug-fun nil)
1298 (segments nil))
1299 (flet ((add-seg (offs len df)
1300 (when (> len 0)
1301 (push (make-code-segment code offs len
1302 :debug-fun df
1303 :source-form-cache sfcache)
1304 segments))))
1305 (dotimes (fmap-index (length fun-map))
1306 (let ((fmap-entry (aref fun-map fmap-index)))
1307 (etypecase fmap-entry
1308 (integer
1309 (when first-block-seen-p
1310 (add-seg last-offset
1311 (- fmap-entry last-offset)
1312 last-debug-fun)
1313 (setf last-debug-fun nil))
1314 (setf last-offset fmap-entry))
1315 (sb!c::compiled-debug-fun
1316 (let ((name (sb!c::compiled-debug-fun-name fmap-entry))
1317 (kind (sb!c::compiled-debug-fun-kind fmap-entry)))
1318 #+nil
1319 (format t ";;; SAW ~S ~S ~S,~S ~W,~W~%"
1320 name kind first-block-seen-p nil-block-seen-p
1321 last-offset
1322 (sb!c::compiled-debug-fun-start-pc fmap-entry))
1323 (cond (#+nil (eq last-offset fun-offset)
1324 (and (equal name fname) (not first-block-seen-p))
1325 (setf first-block-seen-p t))
1326 ((eq kind :external)
1327 (when first-block-seen-p
1328 (return)))
1329 ((eq kind nil)
1330 (when nil-block-seen-p
1331 (return))
1332 (when first-block-seen-p
1333 (setf nil-block-seen-p t))))
1334 (setf last-debug-fun
1335 (sb!di::make-compiled-debug-fun fmap-entry code)))))))
1336 (let ((max-offset (code-inst-area-length code)))
1337 (when (and first-block-seen-p last-debug-fun)
1338 (add-seg last-offset
1339 (- max-offset last-offset)
1340 last-debug-fun))
1341 (if (null segments)
1342 (let ((offs (fun-insts-offset function)))
1343 (list
1344 (make-code-segment code offs (- max-offset offs))))
1345 (nreverse segments)))))))
1347 ;;; Return a list of the segments of memory containing machine code
1348 ;;; instructions for the code-component CODE. If START-OFFSET and/or
1349 ;;; LENGTH is supplied, only that part of the code-segment is used
1350 ;;; (but these are constrained to lie within the code-segment).
1351 (defun get-code-segments (code
1352 &optional
1353 (start-offset 0)
1354 (length (code-inst-area-length code)))
1355 (declare (type sb!kernel:code-component code)
1356 (type offset start-offset)
1357 (type disassem-length length))
1358 (let ((segments nil))
1359 (when code
1360 (let ((fun-map (code-fun-map code))
1361 (sfcache (make-source-form-cache)))
1362 (let ((last-offset 0)
1363 (last-debug-fun nil))
1364 (flet ((add-seg (offs len df)
1365 (let* ((restricted-offs
1366 (min (max start-offset offs)
1367 (+ start-offset length)))
1368 (restricted-len
1369 (- (min (max start-offset (+ offs len))
1370 (+ start-offset length))
1371 restricted-offs)))
1372 (when (> restricted-len 0)
1373 (push (make-code-segment code
1374 restricted-offs restricted-len
1375 :debug-fun df
1376 :source-form-cache sfcache)
1377 segments)))))
1378 (dotimes (fun-map-index (length fun-map))
1379 (let ((fun-map-entry (aref fun-map fun-map-index)))
1380 (etypecase fun-map-entry
1381 (integer
1382 (add-seg last-offset (- fun-map-entry last-offset)
1383 last-debug-fun)
1384 (setf last-debug-fun nil)
1385 (setf last-offset fun-map-entry))
1386 (sb!c::compiled-debug-fun
1387 (setf last-debug-fun
1388 (sb!di::make-compiled-debug-fun fun-map-entry
1389 code))))))
1390 (when last-debug-fun
1391 (add-seg last-offset
1392 (- (code-inst-area-length code) last-offset)
1393 last-debug-fun))))))
1394 (if (null segments)
1395 (make-code-segment code start-offset length)
1396 (nreverse segments))))
1398 ;;; Return two values: the amount by which the last instruction in the
1399 ;;; segment goes past the end of the segment, and the offset of the
1400 ;;; end of the segment from the beginning of that instruction. If all
1401 ;;; instructions fit perfectly, return 0 and 0.
1402 (defun segment-overflow (segment dstate)
1403 (declare (type segment segment)
1404 (type disassem-state dstate))
1405 (let ((seglen (seg-length segment))
1406 (last-start 0))
1407 (map-segment-instructions (lambda (chunk inst)
1408 (declare (ignore chunk inst))
1409 (setf last-start (dstate-cur-offs dstate)))
1410 segment
1411 dstate)
1412 (values (- (dstate-cur-offs dstate) seglen)
1413 (- seglen last-start))))
1415 ;;; Compute labels for all the memory segments in SEGLIST and adds
1416 ;;; them to DSTATE. It's important to call this function with all the
1417 ;;; segments you're interested in, so that it can find references from
1418 ;;; one to another.
1419 (defun label-segments (seglist dstate)
1420 (declare (type list seglist)
1421 (type disassem-state dstate))
1422 (dolist (seg seglist)
1423 (add-segment-labels seg dstate))
1424 ;; Now remove any labels that don't point anywhere in the segments
1425 ;; we have.
1426 (setf (dstate-labels dstate)
1427 (remove-if (lambda (lab)
1428 (not
1429 (some (lambda (seg)
1430 (let ((start (seg-virtual-location seg)))
1431 (<= start
1432 (car lab)
1433 (+ start (seg-length seg)))))
1434 seglist)))
1435 (dstate-labels dstate))))
1437 ;;; Disassemble the machine code instructions in SEGMENT to STREAM.
1438 (defun disassemble-segment (segment stream dstate)
1439 (declare (type segment segment)
1440 (type stream stream)
1441 (type disassem-state dstate))
1442 (let ((*print-pretty* nil)) ; otherwise the pp conses hugely
1443 (number-labels dstate)
1444 (map-segment-instructions
1445 (lambda (chunk inst)
1446 (declare (type dchunk chunk) (type instruction inst))
1447 (let ((printer (inst-printer inst)))
1448 (when printer
1449 (funcall printer chunk inst stream dstate))))
1450 segment
1451 dstate
1452 stream)))
1454 ;;; Disassemble the machine code instructions in each memory segment
1455 ;;; in SEGMENTS in turn to STREAM.
1456 (defun disassemble-segments (segments stream dstate)
1457 (declare (type list segments)
1458 (type stream stream)
1459 (type disassem-state dstate))
1460 (unless (null segments)
1461 (let ((first (car segments))
1462 (last (car (last segments))))
1463 (set-location-printing-range dstate
1464 (seg-virtual-location first)
1465 (- (+ (seg-virtual-location last)
1466 (seg-length last))
1467 (seg-virtual-location first)))
1468 (setf (dstate-output-state dstate) :beginning)
1469 (dolist (seg segments)
1470 (disassemble-segment seg stream dstate)))))
1472 ;;;; top level functions
1474 ;;; Disassemble the machine code instructions for FUNCTION.
1475 (defun disassemble-fun (fun &key
1476 (stream *standard-output*)
1477 (use-labels t))
1478 (declare (type compiled-function fun)
1479 (type stream stream)
1480 (type (member t nil) use-labels))
1481 (let* ((dstate (make-dstate))
1482 (segments (get-fun-segments fun)))
1483 (when use-labels
1484 (label-segments segments dstate))
1485 (disassemble-segments segments stream dstate)))
1487 ;;; FIXME: We probably don't need this any more now that there are
1488 ;;; no interpreted functions, only compiled ones.
1489 (defun compile-function-lambda-expr (function)
1490 (declare (type function function))
1491 (multiple-value-bind (lambda closurep name)
1492 (function-lambda-expression function)
1493 (declare (ignore name))
1494 (when closurep
1495 (error "can't compile a lexical closure"))
1496 (compile nil lambda)))
1498 (defun compiled-fun-or-lose (thing &optional (name thing))
1499 (cond ((legal-fun-name-p thing)
1500 (compiled-fun-or-lose (fdefinition thing) thing))
1501 ((functionp thing)
1502 thing)
1503 ((and (listp thing)
1504 (eq (car thing) 'lambda))
1505 (compile nil thing))
1507 (error "can't make a compiled function from ~S" name))))
1509 (defun disassemble (object &key
1510 (stream *standard-output*)
1511 (use-labels t))
1512 #!+sb-doc
1513 "Disassemble the compiled code associated with OBJECT, which can be a
1514 function, a lambda expression, or a symbol with a function definition. If
1515 it is not already compiled, the compiler is called to produce something to
1516 disassemble."
1517 (declare (type (or function symbol cons) object)
1518 (type (or (member t) stream) stream)
1519 (type (member t nil) use-labels))
1520 (pprint-logical-block (*standard-output* nil :per-line-prefix "; ")
1521 (disassemble-fun (compiled-fun-or-lose object)
1522 :stream stream
1523 :use-labels use-labels)
1524 nil))
1526 ;;; Disassembles the given area of memory starting at ADDRESS and
1527 ;;; LENGTH long. Note that if CODE-COMPONENT is NIL and this memory
1528 ;;; could move during a GC, you'd better disable it around the call to
1529 ;;; this function.
1530 (defun disassemble-memory (address
1531 length
1532 &key
1533 (stream *standard-output*)
1534 code-component
1535 (use-labels t))
1536 (declare (type (or address sb!sys:system-area-pointer) address)
1537 (type disassem-length length)
1538 (type stream stream)
1539 (type (or null sb!kernel:code-component) code-component)
1540 (type (member t nil) use-labels))
1541 (let* ((address
1542 (if (sb!sys:system-area-pointer-p address)
1543 (sb!sys:sap-int address)
1544 address))
1545 (dstate (make-dstate))
1546 (segments
1547 (if code-component
1548 (let ((code-offs
1549 (- address
1550 (sb!sys:sap-int
1551 (sb!kernel:code-instructions code-component)))))
1552 (when (or (< code-offs 0)
1553 (> code-offs (code-inst-area-length code-component)))
1554 (error "address ~X not in the code component ~S"
1555 address code-component))
1556 (get-code-segments code-component code-offs length))
1557 (list (make-memory-segment address length)))))
1558 (when use-labels
1559 (label-segments segments dstate))
1560 (disassemble-segments segments stream dstate)))
1562 ;;; Disassemble the machine code instructions associated with
1563 ;;; CODE-COMPONENT (this may include multiple entry points).
1564 (defun disassemble-code-component (code-component &key
1565 (stream *standard-output*)
1566 (use-labels t))
1567 (declare (type (or null sb!kernel:code-component compiled-function)
1568 code-component)
1569 (type stream stream)
1570 (type (member t nil) use-labels))
1571 (let* ((code-component
1572 (if (functionp code-component)
1573 (fun-code code-component)
1574 code-component))
1575 (dstate (make-dstate))
1576 (segments (get-code-segments code-component)))
1577 (when use-labels
1578 (label-segments segments dstate))
1579 (disassemble-segments segments stream dstate)))
1581 ;;; code for making useful segments from arbitrary lists of code-blocks
1583 ;;; the maximum size of an instruction. Note that this includes
1584 ;;; pseudo-instructions like error traps with their associated
1585 ;;; operands, so it should be big enough to include them, i.e. it's
1586 ;;; not just 4 on a risc machine!
1587 (defconstant max-instruction-size 16)
1589 (defun add-block-segments (seg-code-block
1590 seglist
1591 location
1592 connecting-vec
1593 dstate)
1594 (declare (type list seglist)
1595 (type integer location)
1596 (type (or null (vector (unsigned-byte 8))) connecting-vec)
1597 (type disassem-state dstate))
1598 (flet ((addit (seg overflow)
1599 (let ((length (+ (seg-length seg) overflow)))
1600 (when (> length 0)
1601 (setf (seg-length seg) length)
1602 (incf location length)
1603 (push seg seglist)))))
1604 (let ((connecting-overflow 0)
1605 (amount (length seg-code-block)))
1606 (when connecting-vec
1607 ;; Tack on some of the new block to the old overflow vector.
1608 (let* ((beginning-of-block-amount
1609 (if seg-code-block (min max-instruction-size amount) 0))
1610 (connecting-vec
1611 (if seg-code-block
1612 (concatenate
1613 '(vector (unsigned-byte 8))
1614 connecting-vec
1615 (subseq seg-code-block 0 beginning-of-block-amount))
1616 connecting-vec)))
1617 (when (and (< (length connecting-vec) max-instruction-size)
1618 (not (null seg-code-block)))
1619 (return-from add-block-segments
1620 ;; We want connecting vectors to be large enough to hold
1621 ;; any instruction, and since the current seg-code-block
1622 ;; wasn't large enough to do this (and is now entirely
1623 ;; on the end of the overflow-vector), just save it for
1624 ;; next time.
1625 (values seglist location connecting-vec)))
1626 (when (> (length connecting-vec) 0)
1627 (let ((seg
1628 (make-vector-segment connecting-vec
1630 (- (length connecting-vec)
1631 beginning-of-block-amount)
1632 :virtual-location location)))
1633 (setf connecting-overflow (segment-overflow seg dstate))
1634 (addit seg connecting-overflow)))))
1635 (cond ((null seg-code-block)
1636 ;; nothing more to add
1637 (values seglist location nil))
1638 ((< (- amount connecting-overflow) max-instruction-size)
1639 ;; We can't create a segment with the minimum size
1640 ;; required for an instruction, so just keep on accumulating
1641 ;; in the overflow vector for the time-being.
1642 (values seglist
1643 location
1644 (subseq seg-code-block connecting-overflow amount)))
1646 ;; Put as much as we can into a new segment, and the rest
1647 ;; into the overflow-vector.
1648 (let* ((initial-length
1649 (- amount connecting-overflow max-instruction-size))
1650 (seg
1651 (make-vector-segment seg-code-block
1652 connecting-overflow
1653 initial-length
1654 :virtual-location location))
1655 (overflow
1656 (segment-overflow seg dstate)))
1657 (addit seg overflow)
1658 (values seglist
1659 location
1660 (subseq seg-code-block
1661 (+ connecting-overflow (seg-length seg))
1662 amount))))))))
1664 ;;;; code to disassemble assembler segments
1666 (defun assem-segment-to-disassem-segments (assem-segment dstate)
1667 (declare (type sb!assem:segment assem-segment)
1668 (type disassem-state dstate))
1669 (let ((location 0)
1670 (disassem-segments nil)
1671 (connecting-vec nil))
1672 (sb!assem:on-segment-contents-vectorly
1673 assem-segment
1674 (lambda (seg-code-block)
1675 (multiple-value-setq (disassem-segments location connecting-vec)
1676 (add-block-segments seg-code-block
1677 disassem-segments
1678 location
1679 connecting-vec
1680 dstate))))
1681 (when connecting-vec
1682 (setf disassem-segments
1683 (add-block-segments nil
1684 disassem-segments
1685 location
1686 connecting-vec
1687 dstate)))
1688 (sort disassem-segments #'< :key #'seg-virtual-location)))
1690 ;;; Disassemble the machine code instructions associated with
1691 ;;; ASSEM-SEGMENT (of type assem:segment).
1692 (defun disassemble-assem-segment (assem-segment stream)
1693 (declare (type sb!assem:segment assem-segment)
1694 (type stream stream))
1695 (let* ((dstate (make-dstate))
1696 (disassem-segments
1697 (assem-segment-to-disassem-segments assem-segment dstate)))
1698 (label-segments disassem-segments dstate)
1699 (disassemble-segments disassem-segments stream dstate)))
1701 ;;; routines to find things in the Lisp environment
1703 ;;; an alist of (SYMBOL-SLOT-OFFSET . ACCESS-FUN-NAME) for slots
1704 ;;; in a symbol object that we know about
1705 (defparameter *grokked-symbol-slots*
1706 (sort `((,sb!vm:symbol-value-slot . symbol-value)
1707 (,sb!vm:symbol-plist-slot . symbol-plist)
1708 (,sb!vm:symbol-name-slot . symbol-name)
1709 (,sb!vm:symbol-package-slot . symbol-package))
1711 :key #'car))
1713 ;;; Given ADDRESS, try and figure out if which slot of which symbol is
1714 ;;; being referred to. Of course we can just give up, so it's not a
1715 ;;; big deal... Return two values, the symbol and the name of the
1716 ;;; access function of the slot.
1717 (defun grok-symbol-slot-ref (address)
1718 (declare (type address address))
1719 (if (not (aligned-p address sb!vm:n-word-bytes))
1720 (values nil nil)
1721 (do ((slots-tail *grokked-symbol-slots* (cdr slots-tail)))
1722 ((null slots-tail)
1723 (values nil nil))
1724 (let* ((field (car slots-tail))
1725 (slot-offset (words-to-bytes (car field)))
1726 (maybe-symbol-addr (- address slot-offset))
1727 (maybe-symbol
1728 (sb!kernel:make-lisp-obj
1729 (+ maybe-symbol-addr sb!vm:other-pointer-lowtag))))
1730 (when (symbolp maybe-symbol)
1731 (return (values maybe-symbol (cdr field))))))))
1733 (defvar *address-of-nil-object* (sb!kernel:get-lisp-obj-address nil))
1735 ;;; Given a BYTE-OFFSET from NIL, try and figure out which slot of
1736 ;;; which symbol is being referred to. Of course we can just give up,
1737 ;;; so it's not a big deal... Return two values, the symbol and the
1738 ;;; access function.
1739 (defun grok-nil-indexed-symbol-slot-ref (byte-offset)
1740 (declare (type offset byte-offset))
1741 (grok-symbol-slot-ref (+ *address-of-nil-object* byte-offset)))
1743 ;;; Return the Lisp object located BYTE-OFFSET from NIL.
1744 (defun get-nil-indexed-object (byte-offset)
1745 (declare (type offset byte-offset))
1746 (sb!kernel:make-lisp-obj (+ *address-of-nil-object* byte-offset)))
1748 ;;; Return two values; the Lisp object located at BYTE-OFFSET in the
1749 ;;; constant area of the code-object in the current segment and T, or
1750 ;;; NIL and NIL if there is no code-object in the current segment.
1751 (defun get-code-constant (byte-offset dstate)
1752 #!+sb-doc
1753 (declare (type offset byte-offset)
1754 (type disassem-state dstate))
1755 (let ((code (seg-code (dstate-segment dstate))))
1756 (if code
1757 (values
1758 (sb!kernel:code-header-ref code
1759 (ash (+ byte-offset
1760 sb!vm:other-pointer-lowtag)
1761 (- sb!vm:word-shift)))
1763 (values nil nil))))
1765 (defun get-code-constant-absolute (addr dstate)
1766 (declare (type address addr))
1767 (declare (type disassem-state dstate))
1768 (let ((code (seg-code (dstate-segment dstate))))
1769 (if (null code)
1770 (return-from get-code-constant-absolute (values nil nil)))
1771 (let ((code-size (ash (sb!kernel:get-header-data code) sb!vm:word-shift)))
1772 (sb!sys:without-gcing
1773 (let ((code-addr (- (sb!kernel:get-lisp-obj-address code)
1774 sb!vm:other-pointer-lowtag)))
1775 (if (or (< addr code-addr) (>= addr (+ code-addr code-size)))
1776 (values nil nil)
1777 (values (sb!kernel:code-header-ref
1778 code
1779 (ash (- addr code-addr) (- sb!vm:word-shift)))
1780 t)))))))
1782 (defvar *assembler-routines-by-addr* nil)
1784 (defvar *foreign-symbols-by-addr* nil)
1786 ;;; Build an address-name hash-table from the name-address hash
1787 (defun invert-address-hash (htable &optional (addr-hash (make-hash-table)))
1788 (maphash (lambda (name address)
1789 (setf (gethash address addr-hash) name))
1790 htable)
1791 addr-hash)
1793 ;;; Return the name of the primitive Lisp assembler routine or foreign
1794 ;;; symbol located at ADDRESS, or NIL if there isn't one.
1795 (defun find-assembler-routine (address)
1796 (declare (type address address))
1797 (when (null *assembler-routines-by-addr*)
1798 (setf *assembler-routines-by-addr*
1799 (invert-address-hash sb!fasl:*assembler-routines*))
1800 (setf *assembler-routines-by-addr*
1801 (invert-address-hash sb!sys:*static-foreign-symbols*
1802 *assembler-routines-by-addr*)))
1803 (gethash address *assembler-routines-by-addr*))
1805 ;;;; some handy function for machine-dependent code to use...
1807 #!-sb-fluid (declaim (maybe-inline sap-ref-int read-suffix))
1809 (defun sap-ref-int (sap offset length byte-order)
1810 (declare (type sb!sys:system-area-pointer sap)
1811 (type (unsigned-byte 16) offset)
1812 (type (member 1 2 4 8) length)
1813 (type (member :little-endian :big-endian) byte-order)
1814 (optimize (speed 3) (safety 0)))
1815 (ecase length
1816 (1 (sb!sys:sap-ref-8 sap offset))
1817 (2 (if (eq byte-order :big-endian)
1818 (+ (ash (sb!sys:sap-ref-8 sap offset) 8)
1819 (sb!sys:sap-ref-8 sap (+ offset 1)))
1820 (+ (ash (sb!sys:sap-ref-8 sap (+ offset 1)) 8)
1821 (sb!sys:sap-ref-8 sap offset))))
1822 (4 (if (eq byte-order :big-endian)
1823 (+ (ash (sb!sys:sap-ref-8 sap offset) 24)
1824 (ash (sb!sys:sap-ref-8 sap (+ 1 offset)) 16)
1825 (ash (sb!sys:sap-ref-8 sap (+ 2 offset)) 8)
1826 (sb!sys:sap-ref-8 sap (+ 3 offset)))
1827 (+ (sb!sys:sap-ref-8 sap offset)
1828 (ash (sb!sys:sap-ref-8 sap (+ 1 offset)) 8)
1829 (ash (sb!sys:sap-ref-8 sap (+ 2 offset)) 16)
1830 (ash (sb!sys:sap-ref-8 sap (+ 3 offset)) 24))))
1831 (8 (if (eq byte-order :big-endian)
1832 (+ (ash (sb!sys:sap-ref-8 sap offset) 56)
1833 (ash (sb!sys:sap-ref-8 sap (+ 1 offset)) 48)
1834 (ash (sb!sys:sap-ref-8 sap (+ 2 offset)) 40)
1835 (ash (sb!sys:sap-ref-8 sap (+ 3 offset)) 32)
1836 (ash (sb!sys:sap-ref-8 sap (+ 4 offset)) 24)
1837 (ash (sb!sys:sap-ref-8 sap (+ 5 offset)) 16)
1838 (ash (sb!sys:sap-ref-8 sap (+ 6 offset)) 8)
1839 (sb!sys:sap-ref-8 sap (+ 7 offset)))
1840 (+ (sb!sys:sap-ref-8 sap offset)
1841 (ash (sb!sys:sap-ref-8 sap (+ 1 offset)) 8)
1842 (ash (sb!sys:sap-ref-8 sap (+ 2 offset)) 16)
1843 (ash (sb!sys:sap-ref-8 sap (+ 3 offset)) 24)
1844 (ash (sb!sys:sap-ref-8 sap (+ 4 offset)) 32)
1845 (ash (sb!sys:sap-ref-8 sap (+ 5 offset)) 40)
1846 (ash (sb!sys:sap-ref-8 sap (+ 6 offset)) 48)
1847 (ash (sb!sys:sap-ref-8 sap (+ 7 offset)) 56))))))
1849 (defun read-suffix (length dstate)
1850 (declare (type (member 8 16 32 64) length)
1851 (type disassem-state dstate)
1852 (optimize (speed 3) (safety 0)))
1853 (let ((length (ecase length (8 1) (16 2) (32 4) (64 8))))
1854 (declare (type (unsigned-byte 4) length))
1855 (prog1
1856 (sap-ref-int (dstate-segment-sap dstate)
1857 (dstate-next-offs dstate)
1858 length
1859 (dstate-byte-order dstate))
1860 (incf (dstate-next-offs dstate) length))))
1862 ;;;; optional routines to make notes about code
1864 ;;; Store NOTE (which can be either a string or a function with a
1865 ;;; single stream argument) to be printed as an end-of-line comment
1866 ;;; after the current instruction is disassembled.
1867 (defun note (note dstate)
1868 (declare (type (or string function) note)
1869 (type disassem-state dstate))
1870 (push note (dstate-notes dstate)))
1872 (defun prin1-short (thing stream)
1873 (with-print-restrictions
1874 (prin1 thing stream)))
1876 (defun prin1-quoted-short (thing stream)
1877 (if (self-evaluating-p thing)
1878 (prin1-short thing stream)
1879 (prin1-short `',thing stream)))
1881 ;;; Store a note about the lisp constant located BYTE-OFFSET bytes
1882 ;;; from the current code-component, to be printed as an end-of-line
1883 ;;; comment after the current instruction is disassembled.
1884 (defun note-code-constant (byte-offset dstate)
1885 (declare (type offset byte-offset)
1886 (type disassem-state dstate))
1887 (multiple-value-bind (const valid)
1888 (get-code-constant byte-offset dstate)
1889 (when valid
1890 (note (lambda (stream)
1891 (prin1-quoted-short const stream))
1892 dstate))
1893 const))
1895 ;;; Store a note about the lisp constant located at ADDR in the
1896 ;;; current code-component, to be printed as an end-of-line comment
1897 ;;; after the current instruction is disassembled.
1898 (defun note-code-constant-absolute (addr dstate)
1899 (declare (type address addr)
1900 (type disassem-state dstate))
1901 (multiple-value-bind (const valid)
1902 (get-code-constant-absolute addr dstate)
1903 (when valid
1904 (note (lambda (stream)
1905 (prin1-quoted-short const stream))
1906 dstate))
1907 (values const valid)))
1909 ;;; If the memory address located NIL-BYTE-OFFSET bytes from the
1910 ;;; constant NIL is a valid slot in a symbol, store a note describing
1911 ;;; which symbol and slot, to be printed as an end-of-line comment
1912 ;;; after the current instruction is disassembled. Returns non-NIL iff
1913 ;;; a note was recorded.
1914 (defun maybe-note-nil-indexed-symbol-slot-ref (nil-byte-offset dstate)
1915 (declare (type offset nil-byte-offset)
1916 (type disassem-state dstate))
1917 (multiple-value-bind (symbol access-fun)
1918 (grok-nil-indexed-symbol-slot-ref nil-byte-offset)
1919 (when access-fun
1920 (note (lambda (stream)
1921 (prin1 (if (eq access-fun 'symbol-value)
1922 symbol
1923 `(,access-fun ',symbol))
1924 stream))
1925 dstate))
1926 access-fun))
1928 ;;; If the memory address located NIL-BYTE-OFFSET bytes from the
1929 ;;; constant NIL is a valid lisp object, store a note describing which
1930 ;;; symbol and slot, to be printed as an end-of-line comment after the
1931 ;;; current instruction is disassembled. Returns non-NIL iff a note
1932 ;;; was recorded.
1933 (defun maybe-note-nil-indexed-object (nil-byte-offset dstate)
1934 (declare (type offset nil-byte-offset)
1935 (type disassem-state dstate))
1936 (let ((obj (get-nil-indexed-object nil-byte-offset)))
1937 (note (lambda (stream)
1938 (prin1-quoted-short obj stream))
1939 dstate)
1942 ;;; If ADDRESS is the address of a primitive assembler routine or
1943 ;;; foreign symbol, store a note describing which one, to be printed
1944 ;;; as an end-of-line comment after the current instruction is
1945 ;;; disassembled. Returns non-NIL iff a note was recorded. If
1946 ;;; NOTE-ADDRESS-P is non-NIL, a note of the address is also made.
1947 (defun maybe-note-assembler-routine (address note-address-p dstate)
1948 (declare (type disassem-state dstate))
1949 (unless (typep address 'address)
1950 (return-from maybe-note-assembler-routine nil))
1951 (let ((name (or
1952 #!+linkage-table
1953 (sb!sys:sap-foreign-symbol (sb!sys:int-sap address))
1954 (find-assembler-routine address))))
1955 (unless (null name)
1956 (note (lambda (stream)
1957 (if note-address-p
1958 (format stream "#x~8,'0x: ~a" address name)
1959 (princ name stream)))
1960 dstate))
1961 name))
1963 ;;; If there's a valid mapping from OFFSET in the storage class
1964 ;;; SC-NAME to a source variable, make a note of the source-variable
1965 ;;; name, to be printed as an end-of-line comment after the current
1966 ;;; instruction is disassembled. Returns non-NIL iff a note was
1967 ;;; recorded.
1968 (defun maybe-note-single-storage-ref (offset sc-name dstate)
1969 (declare (type offset offset)
1970 (type symbol sc-name)
1971 (type disassem-state dstate))
1972 (let ((storage-location
1973 (find-valid-storage-location offset sc-name dstate)))
1974 (when storage-location
1975 (note (lambda (stream)
1976 (princ (sb!di:debug-var-symbol
1977 (aref (storage-info-debug-vars
1978 (seg-storage-info (dstate-segment dstate)))
1979 storage-location))
1980 stream))
1981 dstate)
1982 t)))
1984 ;;; If there's a valid mapping from OFFSET in the storage-base called
1985 ;;; SB-NAME to a source variable, make a note equating ASSOC-WITH with
1986 ;;; the source-variable name, to be printed as an end-of-line comment
1987 ;;; after the current instruction is disassembled. Returns non-NIL iff
1988 ;;; a note was recorded.
1989 (defun maybe-note-associated-storage-ref (offset sb-name assoc-with dstate)
1990 (declare (type offset offset)
1991 (type symbol sb-name)
1992 (type (or symbol string) assoc-with)
1993 (type disassem-state dstate))
1994 (let ((storage-location
1995 (find-valid-storage-location offset sb-name dstate)))
1996 (when storage-location
1997 (note (lambda (stream)
1998 (format stream "~A = ~S"
1999 assoc-with
2000 (sb!di:debug-var-symbol
2001 (aref (dstate-debug-vars dstate)
2002 storage-location))))
2003 dstate)
2004 t)))
2006 (defun get-internal-error-name (errnum)
2007 (car (svref sb!c:*backend-internal-errors* errnum)))
2009 (defun get-sc-name (sc-offs)
2010 (sb!c::location-print-name
2011 ;; FIXME: This seems like an awful lot of computation just to get a name.
2012 ;; Couldn't we just use lookup in *BACKEND-SC-NAMES*, without having to cons
2013 ;; up a new object?
2014 (sb!c:make-random-tn :kind :normal
2015 :sc (svref sb!c:*backend-sc-numbers*
2016 (sb!c:sc-offset-scn sc-offs))
2017 :offset (sb!c:sc-offset-offset sc-offs))))
2019 ;;; When called from an error break instruction's :DISASSEM-CONTROL (or
2020 ;;; :DISASSEM-PRINTER) function, will correctly deal with printing the
2021 ;;; arguments to the break.
2023 ;;; ERROR-PARSE-FUN should be a function that accepts:
2024 ;;; 1) a SYSTEM-AREA-POINTER
2025 ;;; 2) a BYTE-OFFSET from the SAP to begin at
2026 ;;; 3) optionally, LENGTH-ONLY, which if non-NIL, means to only return
2027 ;;; the byte length of the arguments (to avoid unnecessary consing)
2028 ;;; It should read information from the SAP starting at BYTE-OFFSET, and
2029 ;;; return four values:
2030 ;;; 1) the error number
2031 ;;; 2) the total length, in bytes, of the information
2032 ;;; 3) a list of SC-OFFSETs of the locations of the error parameters
2033 ;;; 4) a list of the length (as read from the SAP), in bytes, of each
2034 ;;; of the return values.
2035 (defun handle-break-args (error-parse-fun stream dstate)
2036 (declare (type function error-parse-fun)
2037 (type (or null stream) stream)
2038 (type disassem-state dstate))
2039 (multiple-value-bind (errnum adjust sc-offsets lengths)
2040 (funcall error-parse-fun
2041 (dstate-segment-sap dstate)
2042 (dstate-next-offs dstate)
2043 (null stream))
2044 (when stream
2045 (setf (dstate-cur-offs dstate)
2046 (dstate-next-offs dstate))
2047 (flet ((emit-err-arg (note)
2048 (let ((num (pop lengths)))
2049 (print-notes-and-newline stream dstate)
2050 (print-current-address stream dstate)
2051 (print-inst num stream dstate)
2052 (print-bytes num stream dstate)
2053 (incf (dstate-cur-offs dstate) num)
2054 (when note
2055 (note note dstate)))))
2056 (emit-err-arg nil)
2057 (emit-err-arg (symbol-name (get-internal-error-name errnum)))
2058 (dolist (sc-offs sc-offsets)
2059 (emit-err-arg (get-sc-name sc-offs)))))
2060 (incf (dstate-next-offs dstate)
2061 adjust)))