0.8.18.14:
[sbcl.git] / src / code / debug-int.lisp
1 ;;;; the implementation of the programmer's interface to writing
2 ;;;; debugging tools
3
4 ;;;; This software is part of the SBCL system. See the README file for
5 ;;;; more information.
6 ;;;;
7 ;;;; This software is derived from the CMU CL system, which was
8 ;;;; written at Carnegie Mellon University and released into the
9 ;;;; public domain. The software is in the public domain and is
10 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
11 ;;;; files for more information.
12
13 (in-package "SB!DI")
14
15 ;;; FIXME: There are an awful lot of package prefixes in this code.
16 ;;; Couldn't we have SB-DI use the SB-C and SB-VM packages?
17 \f
18 ;;;; conditions
19
20 ;;;; The interface to building debugging tools signals conditions that
21 ;;;; prevent it from adhering to its contract. These are
22 ;;;; serious-conditions because the program using the interface must
23 ;;;; handle them before it can correctly continue execution. These
24 ;;;; debugging conditions are not errors since it is no fault of the
25 ;;;; programmers that the conditions occur. The interface does not
26 ;;;; provide for programs to detect these situations other than
27 ;;;; calling a routine that detects them and signals a condition. For
28 ;;;; example, programmers call A which may fail to return successfully
29 ;;;; due to a lack of debug information, and there is no B the they
30 ;;;; could have called to realize A would fail. It is not an error to
31 ;;;; have called A, but it is an error for the program to then ignore
32 ;;;; the signal generated by A since it cannot continue without A's
33 ;;;; correctly returning a value or performing some operation.
34 ;;;;
35 ;;;; Use DEBUG-SIGNAL to signal these conditions.
36
37 (define-condition debug-condition (serious-condition)
38   ()
39   #!+sb-doc
40   (:documentation
41    "All DEBUG-CONDITIONs inherit from this type. These are serious conditions
42     that must be handled, but they are not programmer errors."))
43
44 (define-condition no-debug-fun-returns (debug-condition)
45   ((debug-fun :reader no-debug-fun-returns-debug-fun
46               :initarg :debug-fun))
47   #!+sb-doc
48   (:documentation
49    "The system could not return values from a frame with DEBUG-FUN since
50     it lacked information about returning values.")
51   (:report (lambda (condition stream)
52              (let ((fun (debug-fun-fun
53                          (no-debug-fun-returns-debug-fun condition))))
54                (format stream
55                        "~&Cannot return values from ~:[frame~;~:*~S~] since ~
56                         the debug information lacks details about returning ~
57                         values here."
58                        fun)))))
59
60 (define-condition no-debug-blocks (debug-condition)
61   ((debug-fun :reader no-debug-blocks-debug-fun
62               :initarg :debug-fun))
63   #!+sb-doc
64   (:documentation "The debug-fun has no debug-block information.")
65   (:report (lambda (condition stream)
66              (format stream "~&~S has no debug-block information."
67                      (no-debug-blocks-debug-fun condition)))))
68
69 (define-condition no-debug-vars (debug-condition)
70   ((debug-fun :reader no-debug-vars-debug-fun
71               :initarg :debug-fun))
72   #!+sb-doc
73   (:documentation "The DEBUG-FUN has no DEBUG-VAR information.")
74   (:report (lambda (condition stream)
75              (format stream "~&~S has no debug variable information."
76                      (no-debug-vars-debug-fun condition)))))
77
78 (define-condition lambda-list-unavailable (debug-condition)
79   ((debug-fun :reader lambda-list-unavailable-debug-fun
80               :initarg :debug-fun))
81   #!+sb-doc
82   (:documentation
83    "The DEBUG-FUN has no lambda list since argument DEBUG-VARs are
84     unavailable.")
85   (:report (lambda (condition stream)
86              (format stream "~&~S has no lambda-list information available."
87                      (lambda-list-unavailable-debug-fun condition)))))
88
89 (define-condition invalid-value (debug-condition)
90   ((debug-var :reader invalid-value-debug-var :initarg :debug-var)
91    (frame :reader invalid-value-frame :initarg :frame))
92   (:report (lambda (condition stream)
93              (format stream "~&~S has :invalid or :unknown value in ~S."
94                      (invalid-value-debug-var condition)
95                      (invalid-value-frame condition)))))
96
97 (define-condition ambiguous-var-name (debug-condition)
98   ((name :reader ambiguous-var-name-name :initarg :name)
99    (frame :reader ambiguous-var-name-frame :initarg :frame))
100   (:report (lambda (condition stream)
101              (format stream "~&~S names more than one valid variable in ~S."
102                      (ambiguous-var-name-name condition)
103                      (ambiguous-var-name-frame condition)))))
104 \f
105 ;;;; errors and DEBUG-SIGNAL
106
107 ;;; The debug-internals code tries to signal all programmer errors as
108 ;;; subtypes of DEBUG-ERROR. There are calls to ERROR signalling
109 ;;; SIMPLE-ERRORs, but these dummy checks in the code and shouldn't
110 ;;; come up.
111 ;;;
112 ;;; While under development, this code also signals errors in code
113 ;;; branches that remain unimplemented.
114
115 (define-condition debug-error (error) ()
116   #!+sb-doc
117   (:documentation
118    "All programmer errors from using the interface for building debugging
119     tools inherit from this type."))
120
121 (define-condition unhandled-debug-condition (debug-error)
122   ((condition :reader unhandled-debug-condition-condition :initarg :condition))
123   (:report (lambda (condition stream)
124              (format stream "~&unhandled DEBUG-CONDITION:~%~A"
125                      (unhandled-debug-condition-condition condition)))))
126
127 (define-condition unknown-code-location (debug-error)
128   ((code-location :reader unknown-code-location-code-location
129                   :initarg :code-location))
130   (:report (lambda (condition stream)
131              (format stream "~&invalid use of an unknown code-location: ~S"
132                      (unknown-code-location-code-location condition)))))
133
134 (define-condition unknown-debug-var (debug-error)
135   ((debug-var :reader unknown-debug-var-debug-var :initarg :debug-var)
136    (debug-fun :reader unknown-debug-var-debug-fun
137               :initarg :debug-fun))
138   (:report (lambda (condition stream)
139              (format stream "~&~S is not in ~S."
140                      (unknown-debug-var-debug-var condition)
141                      (unknown-debug-var-debug-fun condition)))))
142
143 (define-condition invalid-control-stack-pointer (debug-error)
144   ()
145   (:report (lambda (condition stream)
146              (declare (ignore condition))
147              (fresh-line stream)
148              (write-string "invalid control stack pointer" stream))))
149
150 (define-condition frame-fun-mismatch (debug-error)
151   ((code-location :reader frame-fun-mismatch-code-location
152                   :initarg :code-location)
153    (frame :reader frame-fun-mismatch-frame :initarg :frame)
154    (form :reader frame-fun-mismatch-form :initarg :form))
155   (:report (lambda (condition stream)
156              (format
157               stream
158               "~&Form was preprocessed for ~S,~% but called on ~S:~%  ~S"
159               (frame-fun-mismatch-code-location condition)
160               (frame-fun-mismatch-frame condition)
161               (frame-fun-mismatch-form condition)))))
162
163 ;;; This signals debug-conditions. If they go unhandled, then signal
164 ;;; an UNHANDLED-DEBUG-CONDITION error.
165 ;;;
166 ;;; ??? Get SIGNAL in the right package!
167 (defmacro debug-signal (datum &rest arguments)
168   `(let ((condition (make-condition ,datum ,@arguments)))
169      (signal condition)
170      (error 'unhandled-debug-condition :condition condition)))
171 \f
172 ;;;; structures
173 ;;;;
174 ;;;; Most of these structures model information stored in internal
175 ;;;; data structures created by the compiler. Whenever comments
176 ;;;; preface an object or type with "compiler", they refer to the
177 ;;;; internal compiler thing, not to the object or type with the same
178 ;;;; name in the "SB-DI" package.
179
180 ;;;; DEBUG-VARs
181
182 ;;; These exist for caching data stored in packed binary form in
183 ;;; compiler DEBUG-FUNs.
184 (defstruct (debug-var (:constructor nil)
185                       (:copier nil))
186   ;; the name of the variable
187   (symbol (missing-arg) :type symbol)
188   ;; a unique integer identification relative to other variables with the same
189   ;; symbol
190   (id 0 :type index)
191   ;; Does the variable always have a valid value?
192   (alive-p nil :type boolean))
193 (def!method print-object ((debug-var debug-var) stream)
194   (print-unreadable-object (debug-var stream :type t :identity t)
195     (format stream
196             "~S ~W"
197             (debug-var-symbol debug-var)
198             (debug-var-id debug-var))))
199
200 #!+sb-doc
201 (setf (fdocumentation 'debug-var-id 'function)
202   "Return the integer that makes DEBUG-VAR's name and package unique
203    with respect to other DEBUG-VARs in the same function.")
204
205 (defstruct (compiled-debug-var
206             (:include debug-var)
207             (:constructor make-compiled-debug-var
208                           (symbol id alive-p sc-offset save-sc-offset))
209             (:copier nil))
210   ;; storage class and offset (unexported)
211   (sc-offset nil :type sb!c:sc-offset)
212   ;; storage class and offset when saved somewhere
213   (save-sc-offset nil :type (or sb!c:sc-offset null)))
214
215 ;;;; frames
216
217 ;;; These represent call frames on the stack.
218 (defstruct (frame (:constructor nil)
219                   (:copier nil))
220   ;; the next frame up, or NIL when top frame
221   (up nil :type (or frame null))
222   ;; the previous frame down, or NIL when the bottom frame. Before
223   ;; computing the next frame down, this slot holds the frame pointer
224   ;; to the control stack for the given frame. This lets us get the
225   ;; next frame down and the return-pc for that frame.
226   (%down :unparsed :type (or frame (member nil :unparsed)))
227   ;; the DEBUG-FUN for the function whose call this frame represents
228   (debug-fun nil :type debug-fun)
229   ;; the CODE-LOCATION where the frame's DEBUG-FUN will continue
230   ;; running when program execution returns to this frame. If someone
231   ;; interrupted this frame, the result could be an unknown
232   ;; CODE-LOCATION.
233   (code-location nil :type code-location)
234   ;; an a-list of catch-tags to code-locations
235   (%catches :unparsed :type (or list (member :unparsed)))
236   ;; pointer to frame on control stack (unexported)
237   pointer
238   ;; This is the frame's number for prompt printing. Top is zero.
239   (number 0 :type index))
240
241 (defstruct (compiled-frame
242             (:include frame)
243             (:constructor make-compiled-frame
244                           (pointer up debug-fun code-location number
245                                    &optional escaped))
246             (:copier nil))
247   ;; This indicates whether someone interrupted the frame.
248   ;; (unexported). If escaped, this is a pointer to the state that was
249   ;; saved when we were interrupted, an os_context_t, i.e. the third
250   ;; argument to an SA_SIGACTION-style signal handler.
251   escaped)
252 (def!method print-object ((obj compiled-frame) str)
253   (print-unreadable-object (obj str :type t)
254     (format str
255             "~S~:[~;, interrupted~]"
256             (debug-fun-name (frame-debug-fun obj))
257             (compiled-frame-escaped obj))))
258 \f
259 ;;;; DEBUG-FUNs
260
261 ;;; These exist for caching data stored in packed binary form in
262 ;;; compiler DEBUG-FUNs. *COMPILED-DEBUG-FUNS* maps a SB!C::DEBUG-FUN
263 ;;; to a DEBUG-FUN. There should only be one DEBUG-FUN in existence
264 ;;; for any function; that is, all CODE-LOCATIONs and other objects
265 ;;; that reference DEBUG-FUNs point to unique objects. This is
266 ;;; due to the overhead in cached information.
267 (defstruct (debug-fun (:constructor nil)
268                       (:copier nil))
269   ;; some representation of the function arguments. See
270   ;; DEBUG-FUN-LAMBDA-LIST.
271   ;; NOTE: must parse vars before parsing arg list stuff.
272   (%lambda-list :unparsed)
273   ;; cached DEBUG-VARS information (unexported).
274   ;; These are sorted by their name.
275   (%debug-vars :unparsed :type (or simple-vector null (member :unparsed)))
276   ;; cached debug-block information. This is NIL when we have tried to
277   ;; parse the packed binary info, but none is available.
278   (blocks :unparsed :type (or simple-vector null (member :unparsed)))
279   ;; the actual function if available
280   (%function :unparsed :type (or null function (member :unparsed))))
281 (def!method print-object ((obj debug-fun) stream)
282   (print-unreadable-object (obj stream :type t)
283     (prin1 (debug-fun-name obj) stream)))
284
285 (defstruct (compiled-debug-fun
286             (:include debug-fun)
287             (:constructor %make-compiled-debug-fun
288                           (compiler-debug-fun component))
289             (:copier nil))
290   ;; compiler's dumped DEBUG-FUN information (unexported)
291   (compiler-debug-fun nil :type sb!c::compiled-debug-fun)
292   ;; code object (unexported).
293   component
294   ;; the :FUN-START breakpoint (if any) used to facilitate
295   ;; function end breakpoints
296   (end-starter nil :type (or null breakpoint)))
297
298 ;;; This maps SB!C::COMPILED-DEBUG-FUNs to
299 ;;; COMPILED-DEBUG-FUNs, so we can get at cached stuff and not
300 ;;; duplicate COMPILED-DEBUG-FUN structures.
301 (defvar *compiled-debug-funs* (make-hash-table :test 'eq))
302
303 ;;; Make a COMPILED-DEBUG-FUN for a SB!C::COMPILER-DEBUG-FUN
304 ;;; and its component. This maps the latter to the former in
305 ;;; *COMPILED-DEBUG-FUNS*. If there already is a
306 ;;; COMPILED-DEBUG-FUN, then this returns it from
307 ;;; *COMPILED-DEBUG-FUNS*.
308 (defun make-compiled-debug-fun (compiler-debug-fun component)
309   (or (gethash compiler-debug-fun *compiled-debug-funs*)
310       (setf (gethash compiler-debug-fun *compiled-debug-funs*)
311             (%make-compiled-debug-fun compiler-debug-fun component))))
312
313 (defstruct (bogus-debug-fun
314             (:include debug-fun)
315             (:constructor make-bogus-debug-fun
316                           (%name &aux
317                                  (%lambda-list nil)
318                                  (%debug-vars nil)
319                                  (blocks nil)
320                                  (%function nil)))
321             (:copier nil))
322   %name)
323
324 (defvar *ir1-lambda-debug-fun* (make-hash-table :test 'eq))
325 \f
326 ;;;; DEBUG-BLOCKs
327
328 ;;; These exist for caching data stored in packed binary form in compiler
329 ;;; DEBUG-BLOCKs.
330 (defstruct (debug-block (:constructor nil)
331                         (:copier nil))
332   ;; Code-locations where execution continues after this block.
333   (successors nil :type list)
334   ;; This indicates whether the block is a special glob of code shared
335   ;; by various functions and tucked away elsewhere in a component.
336   ;; This kind of block has no start code-location. This slot is in
337   ;; all debug-blocks since it is an exported interface.
338   (elsewhere-p nil :type boolean))
339 (def!method print-object ((obj debug-block) str)
340   (print-unreadable-object (obj str :type t)
341     (prin1 (debug-block-fun-name obj) str)))
342
343 #!+sb-doc
344 (setf (fdocumentation 'debug-block-successors 'function)
345   "Return the list of possible code-locations where execution may continue
346    when the basic-block represented by debug-block completes its execution.")
347
348 #!+sb-doc
349 (setf (fdocumentation 'debug-block-elsewhere-p 'function)
350   "Return whether debug-block represents elsewhere code.")
351
352 (defstruct (compiled-debug-block (:include debug-block)
353                                  (:constructor
354                                   make-compiled-debug-block
355                                   (code-locations successors elsewhere-p))
356                                  (:copier nil))
357   ;; code-location information for the block
358   (code-locations nil :type simple-vector))
359
360 (defvar *ir1-block-debug-block* (make-hash-table :test 'eq))
361 \f
362 ;;;; breakpoints
363
364 ;;; This is an internal structure that manages information about a
365 ;;; breakpoint locations. See *COMPONENT-BREAKPOINT-OFFSETS*.
366 (defstruct (breakpoint-data (:constructor make-breakpoint-data
367                                           (component offset))
368                             (:copier nil))
369   ;; This is the component in which the breakpoint lies.
370   component
371   ;; This is the byte offset into the component.
372   (offset nil :type index)
373   ;; The original instruction replaced by the breakpoint.
374   (instruction nil :type (or null (unsigned-byte 32)))
375   ;; A list of user breakpoints at this location.
376   (breakpoints nil :type list))
377 (def!method print-object ((obj breakpoint-data) str)
378   (print-unreadable-object (obj str :type t)
379     (format str "~S at ~S"
380             (debug-fun-name
381              (debug-fun-from-pc (breakpoint-data-component obj)
382                                 (breakpoint-data-offset obj)))
383             (breakpoint-data-offset obj))))
384
385 (defstruct (breakpoint (:constructor %make-breakpoint
386                                      (hook-fun what kind %info))
387                        (:copier nil))
388   ;; This is the function invoked when execution encounters the
389   ;; breakpoint. It takes a frame, the breakpoint, and optionally a
390   ;; list of values. Values are supplied for :FUN-END breakpoints as
391   ;; values to return for the function containing the breakpoint.
392   ;; :FUN-END breakpoint hook functions also take a cookie argument.
393   ;; See the COOKIE-FUN slot.
394   (hook-fun (required-arg) :type function)
395   ;; CODE-LOCATION or DEBUG-FUN
396   (what nil :type (or code-location debug-fun))
397   ;; :CODE-LOCATION, :FUN-START, or :FUN-END for that kind
398   ;; of breakpoint. :UNKNOWN-RETURN-PARTNER if this is the partner of
399   ;; a :code-location breakpoint at an :UNKNOWN-RETURN code-location.
400   (kind nil :type (member :code-location :fun-start :fun-end
401                           :unknown-return-partner))
402   ;; Status helps the user and the implementation.
403   (status :inactive :type (member :active :inactive :deleted))
404   ;; This is a backpointer to a breakpoint-data.
405   (internal-data nil :type (or null breakpoint-data))
406   ;; With code-locations whose type is :UNKNOWN-RETURN, there are
407   ;; really two breakpoints: one at the multiple-value entry point,
408   ;; and one at the single-value entry point. This slot holds the
409   ;; breakpoint for the other one, or NIL if this isn't at an
410   ;; :UNKNOWN-RETURN code location.
411   (unknown-return-partner nil :type (or null breakpoint))
412   ;; :FUN-END breakpoints use a breakpoint at the :FUN-START
413   ;; to establish the end breakpoint upon function entry. We do this
414   ;; by frobbing the LRA to jump to a special piece of code that
415   ;; breaks and provides the return values for the returnee. This slot
416   ;; points to the start breakpoint, so we can activate, deactivate,
417   ;; and delete it.
418   (start-helper nil :type (or null breakpoint))
419   ;; This is a hook users supply to get a dynamically unique cookie
420   ;; for identifying :FUN-END breakpoint executions. That is, if
421   ;; there is one :FUN-END breakpoint, but there may be multiple
422   ;; pending calls of its function on the stack. This function takes
423   ;; the cookie, and the hook function takes the cookie too.
424   (cookie-fun nil :type (or null function))
425   ;; This slot users can set with whatever information they find useful.
426   %info)
427 (def!method print-object ((obj breakpoint) str)
428   (let ((what (breakpoint-what obj)))
429     (print-unreadable-object (obj str :type t)
430       (format str
431               "~S~:[~;~:*~S~]"
432               (etypecase what
433                 (code-location what)
434                 (debug-fun (debug-fun-name what)))
435               (etypecase what
436                 (code-location nil)
437                 (debug-fun (breakpoint-kind obj)))))))
438 \f
439 ;;;; CODE-LOCATIONs
440
441 (defstruct (code-location (:constructor nil)
442                           (:copier nil))
443   ;; the DEBUG-FUN containing this CODE-LOCATION
444   (debug-fun nil :type debug-fun)
445   ;; This is initially :UNSURE. Upon first trying to access an
446   ;; :UNPARSED slot, if the data is unavailable, then this becomes T,
447   ;; and the code-location is unknown. If the data is available, this
448   ;; becomes NIL, a known location. We can't use a separate type
449   ;; code-location for this since we must return code-locations before
450   ;; we can tell whether they're known or unknown. For example, when
451   ;; parsing the stack, we don't want to unpack all the variables and
452   ;; blocks just to make frames.
453   (%unknown-p :unsure :type (member t nil :unsure))
454   ;; the DEBUG-BLOCK containing CODE-LOCATION. XXX Possibly toss this
455   ;; out and just find it in the blocks cache in DEBUG-FUN.
456   (%debug-block :unparsed :type (or debug-block (member :unparsed)))
457   ;; This is the number of forms processed by the compiler or loader
458   ;; before the top level form containing this code-location.
459   (%tlf-offset :unparsed :type (or index (member :unparsed)))
460   ;; This is the depth-first number of the node that begins
461   ;; code-location within its top level form.
462   (%form-number :unparsed :type (or index (member :unparsed))))
463 (def!method print-object ((obj code-location) str)
464   (print-unreadable-object (obj str :type t)
465     (prin1 (debug-fun-name (code-location-debug-fun obj))
466            str)))
467
468 (defstruct (compiled-code-location
469             (:include code-location)
470             (:constructor make-known-code-location
471                           (pc debug-fun %tlf-offset %form-number
472                               %live-set kind &aux (%unknown-p nil)))
473             (:constructor make-compiled-code-location (pc debug-fun))
474             (:copier nil))
475   ;; an index into DEBUG-FUN's component slot
476   (pc nil :type index)
477   ;; a bit-vector indexed by a variable's position in
478   ;; DEBUG-FUN-DEBUG-VARS indicating whether the variable has a
479   ;; valid value at this code-location. (unexported).
480   (%live-set :unparsed :type (or simple-bit-vector (member :unparsed)))
481   ;; (unexported) To see SB!C::LOCATION-KIND, do
482   ;; (SB!KERNEL:TYPE-EXPAND 'SB!C::LOCATION-KIND).
483   (kind :unparsed :type (or (member :unparsed) sb!c::location-kind)))
484 \f
485 ;;;; DEBUG-SOURCEs
486
487 ;;; Return the number of top level forms processed by the compiler
488 ;;; before compiling this source. If this source is uncompiled, this
489 ;;; is zero. This may be zero even if the source is compiled since the
490 ;;; first form in the first file compiled in one compilation, for
491 ;;; example, must have a root number of zero -- the compiler saw no
492 ;;; other top level forms before it.
493 (defun debug-source-root-number (debug-source)
494   (sb!c::debug-source-source-root debug-source))
495 \f
496 ;;;; frames
497
498 ;;; This is used in FIND-ESCAPED-FRAME and with the bogus components
499 ;;; and LRAs used for :FUN-END breakpoints. When a component's
500 ;;; debug-info slot is :BOGUS-LRA, then the REAL-LRA-SLOT contains the
501 ;;; real component to continue executing, as opposed to the bogus
502 ;;; component which appeared in some frame's LRA location.
503 (defconstant real-lra-slot sb!vm:code-constants-offset)
504
505 ;;; These are magically converted by the compiler.
506 (defun current-sp () (current-sp))
507 (defun current-fp () (current-fp))
508 (defun stack-ref (s n) (stack-ref s n))
509 (defun %set-stack-ref (s n value) (%set-stack-ref s n value))
510 (defun fun-code-header (fun) (fun-code-header fun))
511 (defun lra-code-header (lra) (lra-code-header lra))
512 (defun make-lisp-obj (value) (make-lisp-obj value))
513 (defun get-lisp-obj-address (thing) (get-lisp-obj-address thing))
514 (defun fun-word-offset (fun) (fun-word-offset fun))
515
516 #!-sb-fluid (declaim (inline control-stack-pointer-valid-p))
517 (defun control-stack-pointer-valid-p (x)
518   (declare (type system-area-pointer x))
519   (let* (#!-stack-grows-downward-not-upward
520          (control-stack-start
521           (descriptor-sap *control-stack-start*))
522          #!+stack-grows-downward-not-upward
523          (control-stack-end
524           (descriptor-sap *control-stack-end*)))
525     #!-stack-grows-downward-not-upward
526     (and (sap< x (current-sp))
527          (sap<= control-stack-start x)
528          (zerop (logand (sap-int x) #b11)))
529     #!+stack-grows-downward-not-upward
530     (and (sap>= x (current-sp))
531          (sap> control-stack-end x)
532          (zerop (logand (sap-int x) #b11)))))
533
534 (sb!alien:define-alien-routine component-ptr-from-pc (system-area-pointer)
535   (pc system-area-pointer))
536
537 (defun component-from-component-ptr (component-ptr)
538   (declare (type system-area-pointer component-ptr))
539   (make-lisp-obj (logior (sap-int component-ptr)
540                          sb!vm:other-pointer-lowtag)))
541
542 ;;;; (OR X86 X86-64) support
543
544 #!+(or x86 x86-64)
545 (progn
546
547 (defun compute-lra-data-from-pc (pc)
548   (declare (type system-area-pointer pc))
549   (let ((component-ptr (component-ptr-from-pc pc)))
550     (unless (sap= component-ptr (int-sap #x0))
551        (let* ((code (component-from-component-ptr component-ptr))
552               (code-header-len (* (get-header-data code) sb!vm:n-word-bytes))
553               (pc-offset (- (sap-int pc)
554                             (- (get-lisp-obj-address code)
555                                sb!vm:other-pointer-lowtag)
556                             code-header-len)))
557 ;        (format t "c-lra-fpc ~A ~A ~A~%" pc code pc-offset)
558          (values pc-offset code)))))
559
560 (defconstant sb!vm::nargs-offset #.sb!vm::ecx-offset)
561
562 ;;; Check for a valid return address - it could be any valid C/Lisp
563 ;;; address.
564 ;;;
565 ;;; XXX Could be a little smarter.
566 #!-sb-fluid (declaim (inline ra-pointer-valid-p))
567 (defun ra-pointer-valid-p (ra)
568   (declare (type system-area-pointer ra))
569   (and
570    ;; not the first page (which is unmapped)
571    ;;
572    ;; FIXME: Where is this documented? Is it really true of every CPU
573    ;; architecture? Is it even necessarily true in current SBCL?
574    (>= (sap-int ra) 4096)
575    ;; not a Lisp stack pointer
576    (not (control-stack-pointer-valid-p ra))))
577
578 ;;; Try to find a valid previous stack. This is complex on the x86 as
579 ;;; it can jump between C and Lisp frames. To help find a valid frame
580 ;;; it searches backwards.
581 ;;;
582 ;;; XXX Should probably check whether it has reached the bottom of the
583 ;;; stack.
584 ;;;
585 ;;; XXX Should handle interrupted frames, both Lisp and C. At present
586 ;;; it manages to find a fp trail, see linux hack below.
587 (defun x86-call-context (fp &key (depth 0))
588   (declare (type system-area-pointer fp)
589            (fixnum depth))
590 ;;  (format t "*CC ~S ~S~%" fp depth)
591   (cond
592    ((not (control-stack-pointer-valid-p fp))
593     #+nil (format t "debug invalid fp ~S~%" fp)
594     nil)
595    (t
596     ;; Check the two possible frame pointers.
597     (let ((lisp-ocfp (sap-ref-sap fp (- (* (1+ ocfp-save-offset)
598                                            sb!vm::n-word-bytes))))
599           (lisp-ra (sap-ref-sap fp (- (* (1+ return-pc-save-offset)
600                                          sb!vm::n-word-bytes))))
601           (c-ocfp (sap-ref-sap fp (* 0 sb!vm:n-word-bytes)))
602           (c-ra (sap-ref-sap fp (* 1 sb!vm:n-word-bytes))))
603       #+nil (format t "  lisp-ocfp=~S~%  lisp-ra=~S~%  c-ocfp=~S~%  c-ra=~S~%"
604               lisp-ocfp lisp-ra c-ocfp c-ra)
605       (cond ((and (sap> lisp-ocfp fp) (control-stack-pointer-valid-p lisp-ocfp)
606                   (ra-pointer-valid-p lisp-ra)
607                   (sap> c-ocfp fp) (control-stack-pointer-valid-p c-ocfp)
608                   (ra-pointer-valid-p c-ra))
609              #+nil (format t
610                            "*C Both valid ~S ~S ~S ~S~%"
611                            lisp-ocfp lisp-ra c-ocfp c-ra)
612              ;; Look forward another step to check their validity.
613              (let ((lisp-path-fp (x86-call-context lisp-ocfp
614                                                    :depth (1+ depth)))
615                    (c-path-fp (x86-call-context c-ocfp :depth (1+ depth))))
616                (cond ((and lisp-path-fp c-path-fp)
617                        ;; Both still seem valid - choose the lisp frame.
618                        #+nil (when (zerop depth)
619                                (format t
620                                        "debug: both still valid ~S ~S ~S ~S~%"
621                                        lisp-ocfp lisp-ra c-ocfp c-ra))
622                       #!+freebsd
623                       (if (sap> lisp-ocfp c-ocfp)
624                         (values lisp-ra lisp-ocfp)
625                         (values c-ra c-ocfp))
626                        #!-freebsd
627                        (values lisp-ra lisp-ocfp))
628                      (lisp-path-fp
629                       ;; The lisp convention is looking good.
630                       #+nil (format t "*C lisp-ocfp ~S ~S~%" lisp-ocfp lisp-ra)
631                       (values lisp-ra lisp-ocfp))
632                      (c-path-fp
633                       ;; The C convention is looking good.
634                       #+nil (format t "*C c-ocfp ~S ~S~%" c-ocfp c-ra)
635                       (values c-ra c-ocfp))
636                      (t
637                       ;; Neither seems right?
638                       #+nil (format t "debug: no valid2 fp found ~S ~S~%"
639                                     lisp-ocfp c-ocfp)
640                       nil))))
641             ((and (sap> lisp-ocfp fp) (control-stack-pointer-valid-p lisp-ocfp)
642                   (ra-pointer-valid-p lisp-ra))
643              ;; The lisp convention is looking good.
644              #+nil (format t "*C lisp-ocfp ~S ~S~%" lisp-ocfp lisp-ra)
645              (values lisp-ra lisp-ocfp))
646             ((and (sap> c-ocfp fp) (control-stack-pointer-valid-p c-ocfp)
647                   #!-linux (ra-pointer-valid-p c-ra))
648              ;; The C convention is looking good.
649              #+nil (format t "*C c-ocfp ~S ~S~%" c-ocfp c-ra)
650              (values c-ra c-ocfp))
651             (t
652              #+nil (format t "debug: no valid fp found ~S ~S~%"
653                            lisp-ocfp c-ocfp)
654              nil))))))
655
656 ) ; #+x86 PROGN
657 \f
658 ;;; Convert the descriptor into a SAP. The bits all stay the same, we just
659 ;;; change our notion of what we think they are.
660 #!-sb-fluid (declaim (inline descriptor-sap))
661 (defun descriptor-sap (x)
662   (int-sap (get-lisp-obj-address x)))
663
664 ;;; Return the top frame of the control stack as it was before calling
665 ;;; this function.
666 (defun top-frame ()
667   (/noshow0 "entering TOP-FRAME")
668   (multiple-value-bind (fp pc) (%caller-frame-and-pc)
669     (compute-calling-frame (descriptor-sap fp) pc nil)))
670
671 ;;; Flush all of the frames above FRAME, and renumber all the frames
672 ;;; below FRAME.
673 (defun flush-frames-above (frame)
674   (setf (frame-up frame) nil)
675   (do ((number 0 (1+ number))
676        (frame frame (frame-%down frame)))
677       ((not (frame-p frame)))
678     (setf (frame-number frame) number)))
679
680 ;;; Return the frame immediately below FRAME on the stack; or when
681 ;;; FRAME is the bottom of the stack, return NIL.
682 (defun frame-down (frame)
683   (/noshow0 "entering FRAME-DOWN")
684   ;; We have to access the old-fp and return-pc out of frame and pass
685   ;; them to COMPUTE-CALLING-FRAME.
686   (let ((down (frame-%down frame)))
687     (if (eq down :unparsed)
688         (let ((debug-fun (frame-debug-fun frame)))
689           (/noshow0 "in DOWN :UNPARSED case")
690           (setf (frame-%down frame)
691                 (etypecase debug-fun
692                   (compiled-debug-fun
693                    (let ((c-d-f (compiled-debug-fun-compiler-debug-fun
694                                  debug-fun)))
695                      (compute-calling-frame
696                       (descriptor-sap
697                        (get-context-value
698                         frame ocfp-save-offset
699                         (sb!c::compiled-debug-fun-old-fp c-d-f)))
700                       (get-context-value
701                        frame lra-save-offset
702                        (sb!c::compiled-debug-fun-return-pc c-d-f))
703                       frame)))
704                   (bogus-debug-fun
705                    (let ((fp (frame-pointer frame)))
706                      (when (control-stack-pointer-valid-p fp)
707                        #!+(or x86 x86-64)
708                         (multiple-value-bind (ra ofp) (x86-call-context fp)
709                          (and ra (compute-calling-frame ofp ra frame)))
710                         #!-(or x86 x86-64)
711                        (compute-calling-frame
712                         #!-alpha
713                         (sap-ref-sap fp (* ocfp-save-offset
714                                            sb!vm:n-word-bytes))
715                         #!+alpha
716                         (int-sap
717                          (sap-ref-32 fp (* ocfp-save-offset
718                                            sb!vm:n-word-bytes)))
719
720                         (stack-ref fp lra-save-offset)
721
722                         frame)))))))
723         down)))
724
725 ;;; Get the old FP or return PC out of FRAME. STACK-SLOT is the
726 ;;; standard save location offset on the stack. LOC is the saved
727 ;;; SC-OFFSET describing the main location.
728 #!-(or x86 x86-64)
729 (defun get-context-value (frame stack-slot loc)
730   (declare (type compiled-frame frame) (type unsigned-byte stack-slot)
731            (type sb!c:sc-offset loc))
732   (let ((pointer (frame-pointer frame))
733         (escaped (compiled-frame-escaped frame)))
734     (if escaped
735         (sub-access-debug-var-slot pointer loc escaped)
736         (stack-ref pointer stack-slot))))
737 #!+(or x86 x86-64)
738 (defun get-context-value (frame stack-slot loc)
739   (declare (type compiled-frame frame) (type unsigned-byte stack-slot)
740            (type sb!c:sc-offset loc))
741   (let ((pointer (frame-pointer frame))
742         (escaped (compiled-frame-escaped frame)))
743     (if escaped
744         (sub-access-debug-var-slot pointer loc escaped)
745         (ecase stack-slot
746           (#.ocfp-save-offset
747            (stack-ref pointer stack-slot))
748           (#.lra-save-offset
749            (sap-ref-sap pointer (- (* (1+ stack-slot)
750                                       sb!vm::n-word-bytes))))))))
751
752 #!-(or x86 x86-64)
753 (defun (setf get-context-value) (value frame stack-slot loc)
754   (declare (type compiled-frame frame) (type unsigned-byte stack-slot)
755            (type sb!c:sc-offset loc))
756   (let ((pointer (frame-pointer frame))
757         (escaped (compiled-frame-escaped frame)))
758     (if escaped
759         (sub-set-debug-var-slot pointer loc value escaped)
760         (setf (stack-ref pointer stack-slot) value))))
761
762 #!+(or x86 x86-64)
763 (defun (setf get-context-value) (value frame stack-slot loc)
764   (declare (type compiled-frame frame) (type unsigned-byte stack-slot)
765            (type sb!c:sc-offset loc))
766   (let ((pointer (frame-pointer frame))
767         (escaped (compiled-frame-escaped frame)))
768     (if escaped
769         (sub-set-debug-var-slot pointer loc value escaped)
770         (ecase stack-slot
771           (#.ocfp-save-offset
772            (setf (stack-ref pointer stack-slot) value))
773           (#.lra-save-offset
774            (setf (sap-ref-sap pointer (- (* (1+ stack-slot)
775                                             sb!vm::n-word-bytes))) value))))))
776
777 (defun foreign-function-backtrace-name (sap)
778   (let ((name (foreign-symbol-in-address sap)))
779     (if name
780         (format nil "foreign function: ~A" name)
781         (format nil "foreign function: #x~X" (sap-int sap)))))
782
783 ;;; This returns a frame for the one existing in time immediately
784 ;;; prior to the frame referenced by current-fp. This is current-fp's
785 ;;; caller or the next frame down the control stack. If there is no
786 ;;; down frame, this returns NIL for the bottom of the stack. UP-FRAME
787 ;;; is the up link for the resulting frame object, and it is null when
788 ;;; we call this to get the top of the stack.
789 ;;;
790 ;;; The current frame contains the pointer to the temporally previous
791 ;;; frame we want, and the current frame contains the pc at which we
792 ;;; will continue executing upon returning to that previous frame.
793 ;;;
794 ;;; Note: Sometimes LRA is actually a fixnum. This happens when lisp
795 ;;; calls into C. In this case, the code object is stored on the stack
796 ;;; after the LRA, and the LRA is the word offset.
797 #!-(or x86 x86-64)
798 (defun compute-calling-frame (caller lra up-frame)
799   (declare (type system-area-pointer caller))
800   (when (control-stack-pointer-valid-p caller)
801     (multiple-value-bind (code pc-offset escaped)
802         (if lra
803             (multiple-value-bind (word-offset code)
804                 (if (fixnump lra)
805                     (let ((fp (frame-pointer up-frame)))
806                       (values lra
807                               (stack-ref fp (1+ lra-save-offset))))
808                     (values (get-header-data lra)
809                             (lra-code-header lra)))
810               (if code
811                   (values code
812                           (* (1+ (- word-offset (get-header-data code)))
813                              sb!vm:n-word-bytes)
814                           nil)
815                   (values :foreign-function
816                           0
817                           nil)))
818             (find-escaped-frame caller))
819       (if (and (code-component-p code)
820                (eq (%code-debug-info code) :bogus-lra))
821           (let ((real-lra (code-header-ref code real-lra-slot)))
822             (compute-calling-frame caller real-lra up-frame))
823           (let ((d-fun (case code
824                          (:undefined-function
825                           (make-bogus-debug-fun
826                            "undefined function"))
827                          (:foreign-function
828                           (make-bogus-debug-fun
829                            (foreign-function-backtrace-name
830                             (int-sap (get-lisp-obj-address lra)))))
831                          ((nil)
832                           (make-bogus-debug-fun
833                            "bogus stack frame"))
834                          (t
835                           (debug-fun-from-pc code pc-offset)))))
836             (make-compiled-frame caller up-frame d-fun
837                                  (code-location-from-pc d-fun pc-offset
838                                                         escaped)
839                                  (if up-frame (1+ (frame-number up-frame)) 0)
840                                  escaped))))))
841 #!+(or x86 x86-64)
842 (defun compute-calling-frame (caller ra up-frame)
843   (declare (type system-area-pointer caller ra))
844   (/noshow0 "entering COMPUTE-CALLING-FRAME")
845   (when (control-stack-pointer-valid-p caller)
846     (/noshow0 "in WHEN")
847     ;; First check for an escaped frame.
848     (multiple-value-bind (code pc-offset escaped) (find-escaped-frame caller)
849       (/noshow0 "at COND")
850       (cond (code
851              ;; If it's escaped it may be a function end breakpoint trap.
852              (when (and (code-component-p code)
853                         (eq (%code-debug-info code) :bogus-lra))
854                ;; If :bogus-lra grab the real lra.
855                (setq pc-offset (code-header-ref
856                                 code (1+ real-lra-slot)))
857                (setq code (code-header-ref code real-lra-slot))
858                (aver code)))
859             ((not escaped)
860              (multiple-value-setq (pc-offset code)
861                (compute-lra-data-from-pc ra))
862              (unless code
863                (setf code :foreign-function
864                      pc-offset 0))))
865       (let ((d-fun (case code
866                      (:undefined-function
867                       (make-bogus-debug-fun
868                        "undefined function"))
869                      (:foreign-function
870                       (make-bogus-debug-fun
871                        (foreign-function-backtrace-name ra)))
872                      ((nil)
873                       (make-bogus-debug-fun
874                        "bogus stack frame"))
875                      (t
876                       (debug-fun-from-pc code pc-offset)))))
877         (/noshow0 "returning MAKE-COMPILED-FRAME from COMPUTE-CALLING-FRAME")
878         (make-compiled-frame caller up-frame d-fun
879                              (code-location-from-pc d-fun pc-offset
880                                                     escaped)
881                              (if up-frame (1+ (frame-number up-frame)) 0)
882                              escaped)))))
883
884 (defun nth-interrupt-context (n)
885   (declare (type (unsigned-byte 32) n)
886            (optimize (speed 3) (safety 0)))
887   (sb!alien:sap-alien (sb!vm::current-thread-offset-sap 
888                        (+ sb!vm::thread-interrupt-contexts-offset n))
889                       (* os-context-t)))
890
891 #!+(or x86 x86-64)
892 (defun find-escaped-frame (frame-pointer)
893   (declare (type system-area-pointer frame-pointer))
894   (/noshow0 "entering FIND-ESCAPED-FRAME")
895   (dotimes (index *free-interrupt-context-index* (values nil 0 nil))
896       (/noshow0 "at head of WITH-ALIEN")
897     (let ((context (nth-interrupt-context index)))
898         (/noshow0 "got CONTEXT")
899         (when (= (sap-int frame-pointer)
900                  (sb!vm:context-register context sb!vm::cfp-offset))
901           (without-gcing
902            (/noshow0 "in WITHOUT-GCING")
903            (let* ((component-ptr (component-ptr-from-pc
904                                   (sb!vm:context-pc context)))
905                   (code (unless (sap= component-ptr (int-sap #x0))
906                           (component-from-component-ptr component-ptr))))
907              (/noshow0 "got CODE")
908              (when (null code)
909                (return (values code 0 context)))
910              (let* ((code-header-len (* (get-header-data code)
911                                         sb!vm:n-word-bytes))
912                     (pc-offset
913                      (- (sap-int (sb!vm:context-pc context))
914                         (- (get-lisp-obj-address code)
915                            sb!vm:other-pointer-lowtag)
916                         code-header-len)))
917                (/noshow "got PC-OFFSET")
918                (unless (<= 0 pc-offset
919                            (* (code-header-ref code sb!vm:code-code-size-slot)
920                               sb!vm:n-word-bytes))
921                  ;; We were in an assembly routine. Therefore, use the
922                  ;; LRA as the pc.
923                  ;;
924                  ;; FIXME: Should this be WARN or ERROR or what?
925                  (format t "** pc-offset ~S not in code obj ~S?~%"
926                          pc-offset code))
927                (/noshow0 "returning from FIND-ESCAPED-FRAME")
928                (return
929                (values code pc-offset context)))))))))
930
931 #!-(or x86 x86-64)
932 (defun find-escaped-frame (frame-pointer)
933   (declare (type system-area-pointer frame-pointer))
934   (dotimes (index *free-interrupt-context-index* (values nil 0 nil))
935     (let ((scp (nth-interrupt-context index)))
936       (when (= (sap-int frame-pointer)
937                (sb!vm:context-register scp sb!vm::cfp-offset))
938         (without-gcing
939          (let ((code (code-object-from-bits
940                       (sb!vm:context-register scp sb!vm::code-offset))))
941            (when (symbolp code)
942              (return (values code 0 scp)))
943            (let* ((code-header-len (* (get-header-data code)
944                                       sb!vm:n-word-bytes))
945                   (pc-offset
946                    (- (sap-int (sb!vm:context-pc scp))
947                       (- (get-lisp-obj-address code)
948                          sb!vm:other-pointer-lowtag)
949                       code-header-len)))
950              ;; Check to see whether we were executing in a branch
951              ;; delay slot.
952              #!+(or pmax sgi)          ; pmax only (and broken anyway)
953              (when (logbitp 31 (sb!alien:slot scp '%mips::sc-cause))
954                (incf pc-offset sb!vm:n-word-bytes))
955              (let ((code-size (* (code-header-ref code 
956                                                   sb!vm:code-code-size-slot)
957                                  sb!vm:n-word-bytes)))
958                (unless (<= 0 pc-offset code-size)
959                  ;; We were in an assembly routine.
960                  (multiple-value-bind (new-pc-offset computed-return)
961                      (find-pc-from-assembly-fun code scp)
962                    (setf pc-offset new-pc-offset)
963                    (unless (<= 0 pc-offset code-size)
964                      (cerror
965                       "Set PC-OFFSET to zero and continue backtrace."
966                       'bug
967                       :format-control
968                       "~@<PC-OFFSET (~D) not in code object. Frame details:~
969                        ~2I~:@_PC: #X~X~:@_CODE: ~S~:@_CODE FUN: ~S~:@_LRA: ~
970                        #X~X~:@_COMPUTED RETURN: #X~X.~:>"
971                       :format-arguments
972                       (list pc-offset
973                             (sap-int (sb!vm:context-pc scp))
974                             code
975                             (%code-entry-points code)
976                             (sb!vm:context-register scp sb!vm::lra-offset)
977                             computed-return))
978                      ;; We failed to pinpoint where PC is, but set
979                      ;; pc-offset to 0 to keep the backtrace from
980                      ;; exploding.
981                      (setf pc-offset 0)))))
982              (return
983                (if (eq (%code-debug-info code) :bogus-lra)
984                    (let ((real-lra (code-header-ref code
985                                                     real-lra-slot)))
986                      (values (lra-code-header real-lra)
987                              (get-header-data real-lra)
988                              nil))
989                    (values code pc-offset scp))))))))))
990
991 #!-(or x86 x86-64)
992 (defun find-pc-from-assembly-fun (code scp)
993   "Finds the PC for the return from an assembly routine properly.
994 For some architectures (such as PPC) this will not be the $LRA
995 register."
996   (let ((return-machine-address (sb!vm::return-machine-address scp))
997         (code-header-len (* (get-header-data code) sb!vm:n-word-bytes)))
998     (values (- return-machine-address
999                (- (get-lisp-obj-address code)
1000                   sb!vm:other-pointer-lowtag) 
1001                code-header-len)
1002             return-machine-address)))
1003
1004 ;;; Find the code object corresponding to the object represented by
1005 ;;; bits and return it. We assume bogus functions correspond to the
1006 ;;; undefined-function.
1007 (defun code-object-from-bits (bits)
1008   (declare (type (unsigned-byte 32) bits))
1009   (let ((object (make-lisp-obj bits)))
1010     (if (functionp object)
1011         (or (fun-code-header object)
1012             :undefined-function)
1013         (let ((lowtag (lowtag-of object)))
1014           (if (= lowtag sb!vm:other-pointer-lowtag)
1015               (let ((widetag (widetag-of object)))
1016                 (cond ((= widetag sb!vm:code-header-widetag)
1017                        object)
1018                       ((= widetag sb!vm:return-pc-header-widetag)
1019                        (lra-code-header object))
1020                       (t
1021                        nil))))))))
1022 \f
1023 ;;;; frame utilities
1024
1025 ;;; This returns a COMPILED-DEBUG-FUN for COMPONENT and PC. We fetch the
1026 ;;; SB!C::DEBUG-INFO and run down its FUN-MAP to get a
1027 ;;; SB!C::COMPILED-DEBUG-FUN from the PC. The result only needs to
1028 ;;; reference the COMPONENT, for function constants, and the
1029 ;;; SB!C::COMPILED-DEBUG-FUN.
1030 (defun debug-fun-from-pc (component pc)
1031   (let ((info (%code-debug-info component)))
1032     (cond
1033       ((not info)
1034        ;; FIXME: It seems that most of these (at least on x86) are
1035        ;; actually assembler routines, and could be named by looking
1036        ;; at the sb-fasl:*assembler-routines*.
1037        (make-bogus-debug-fun "no debug information for frame"))
1038      ((eq info :bogus-lra)
1039       (make-bogus-debug-fun "function end breakpoint"))
1040      (t
1041       (let* ((fun-map (sb!c::compiled-debug-info-fun-map info))
1042              (len (length fun-map)))
1043         (declare (type simple-vector fun-map))
1044         (if (= len 1)
1045             (make-compiled-debug-fun (svref fun-map 0) component)
1046             (let ((i 1)
1047                   (elsewhere-p
1048                    (>= pc (sb!c::compiled-debug-fun-elsewhere-pc
1049                            (svref fun-map 0)))))
1050               (declare (type sb!int:index i))
1051               (loop
1052                 (when (or (= i len)
1053                           (< pc (if elsewhere-p
1054                                     (sb!c::compiled-debug-fun-elsewhere-pc
1055                                      (svref fun-map (1+ i)))
1056                                     (svref fun-map i))))
1057                   (return (make-compiled-debug-fun
1058                            (svref fun-map (1- i))
1059                            component)))
1060                 (incf i 2)))))))))
1061
1062 ;;; This returns a code-location for the COMPILED-DEBUG-FUN,
1063 ;;; DEBUG-FUN, and the pc into its code vector. If we stopped at a
1064 ;;; breakpoint, find the CODE-LOCATION for that breakpoint. Otherwise,
1065 ;;; make an :UNSURE code location, so it can be filled in when we
1066 ;;; figure out what is going on.
1067 (defun code-location-from-pc (debug-fun pc escaped)
1068   (or (and (compiled-debug-fun-p debug-fun)
1069            escaped
1070            (let ((data (breakpoint-data
1071                         (compiled-debug-fun-component debug-fun)
1072                         pc nil)))
1073              (when (and data (breakpoint-data-breakpoints data))
1074                (let ((what (breakpoint-what
1075                             (first (breakpoint-data-breakpoints data)))))
1076                  (when (compiled-code-location-p what)
1077                    what)))))
1078       (make-compiled-code-location pc debug-fun)))
1079
1080 ;;; Return an alist mapping catch tags to CODE-LOCATIONs. These are
1081 ;;; CODE-LOCATIONs at which execution would continue with frame as the
1082 ;;; top frame if someone threw to the corresponding tag.
1083 (defun frame-catches (frame)
1084   (let ((catch (descriptor-sap sb!vm:*current-catch-block*))
1085         (reversed-result nil)
1086         (fp (frame-pointer frame)))
1087     (loop until (zerop (sap-int catch))
1088           finally (return (nreverse reversed-result))
1089           do
1090           (when (sap= fp
1091                       #!-alpha
1092                       (sap-ref-sap catch
1093                                    (* sb!vm:catch-block-current-cont-slot
1094                                       sb!vm:n-word-bytes))
1095                       #!+alpha
1096                       (int-sap
1097                        (sap-ref-32 catch
1098                                    (* sb!vm:catch-block-current-cont-slot
1099                                       sb!vm:n-word-bytes))))
1100             (let* (#!-(or x86 x86-64)
1101                    (lra (stack-ref catch sb!vm:catch-block-entry-pc-slot))
1102                    #!+(or x86 x86-64)
1103                    (ra (sap-ref-sap
1104                         catch (* sb!vm:catch-block-entry-pc-slot
1105                                  sb!vm:n-word-bytes)))
1106                    #!-(or x86 x86-64)
1107                    (component
1108                     (stack-ref catch sb!vm:catch-block-current-code-slot))
1109                    #!+(or x86 x86-64)
1110                    (component (component-from-component-ptr
1111                                (component-ptr-from-pc ra)))
1112                    (offset
1113                     #!-(or x86 x86-64)
1114                     (* (- (1+ (get-header-data lra))
1115                           (get-header-data component))
1116                        sb!vm:n-word-bytes)
1117                     #!+(or x86 x86-64)
1118                     (- (sap-int ra)
1119                        (- (get-lisp-obj-address component)
1120                           sb!vm:other-pointer-lowtag)
1121                        (* (get-header-data component) sb!vm:n-word-bytes))))
1122               (push (cons #!-(or x86 x86-64)
1123                           (stack-ref catch sb!vm:catch-block-tag-slot)
1124                           #!+(or x86 x86-64)
1125                           (make-lisp-obj
1126                            (sap-ref-word catch (* sb!vm:catch-block-tag-slot
1127                                                   sb!vm:n-word-bytes)))
1128                           (make-compiled-code-location
1129                            offset (frame-debug-fun frame)))
1130                     reversed-result)))
1131           (setf catch
1132                 #!-alpha
1133                 (sap-ref-sap catch
1134                              (* sb!vm:catch-block-previous-catch-slot
1135                                 sb!vm:n-word-bytes))
1136                 #!+alpha
1137                 (int-sap
1138                  (sap-ref-32 catch
1139                              (* sb!vm:catch-block-previous-catch-slot
1140                                 sb!vm:n-word-bytes)))))))
1141 \f
1142 ;;;; operations on DEBUG-FUNs
1143
1144 ;;; Execute the forms in a context with BLOCK-VAR bound to each
1145 ;;; DEBUG-BLOCK in DEBUG-FUN successively. Result is an optional
1146 ;;; form to execute for return values, and DO-DEBUG-FUN-BLOCKS
1147 ;;; returns nil if there is no result form. This signals a
1148 ;;; NO-DEBUG-BLOCKS condition when the DEBUG-FUN lacks
1149 ;;; DEBUG-BLOCK information.
1150 (defmacro do-debug-fun-blocks ((block-var debug-fun &optional result)
1151                                &body body)
1152   (let ((blocks (gensym))
1153         (i (gensym)))
1154     `(let ((,blocks (debug-fun-debug-blocks ,debug-fun)))
1155        (declare (simple-vector ,blocks))
1156        (dotimes (,i (length ,blocks) ,result)
1157          (let ((,block-var (svref ,blocks ,i)))
1158            ,@body)))))
1159
1160 ;;; Execute body in a context with VAR bound to each DEBUG-VAR in
1161 ;;; DEBUG-FUN. This returns the value of executing result (defaults to
1162 ;;; nil). This may iterate over only some of DEBUG-FUN's variables or
1163 ;;; none depending on debug policy; for example, possibly the
1164 ;;; compilation only preserved argument information.
1165 (defmacro do-debug-fun-vars ((var debug-fun &optional result) &body body)
1166   (let ((vars (gensym))
1167         (i (gensym)))
1168     `(let ((,vars (debug-fun-debug-vars ,debug-fun)))
1169        (declare (type (or null simple-vector) ,vars))
1170        (if ,vars
1171            (dotimes (,i (length ,vars) ,result)
1172              (let ((,var (svref ,vars ,i)))
1173                ,@body))
1174            ,result))))
1175
1176 ;;; Return the object of type FUNCTION associated with the DEBUG-FUN,
1177 ;;; or NIL if the function is unavailable or is non-existent as a user
1178 ;;; callable function object.
1179 (defun debug-fun-fun (debug-fun)
1180   (let ((cached-value (debug-fun-%function debug-fun)))
1181     (if (eq cached-value :unparsed)
1182         (setf (debug-fun-%function debug-fun)
1183               (etypecase debug-fun
1184                 (compiled-debug-fun
1185                  (let ((component
1186                         (compiled-debug-fun-component debug-fun))
1187                        (start-pc
1188                         (sb!c::compiled-debug-fun-start-pc
1189                          (compiled-debug-fun-compiler-debug-fun debug-fun))))
1190                    (do ((entry (%code-entry-points component)
1191                                (%simple-fun-next entry)))
1192                        ((null entry) nil)
1193                      (when (= start-pc
1194                               (sb!c::compiled-debug-fun-start-pc
1195                                (compiled-debug-fun-compiler-debug-fun
1196                                 (fun-debug-fun entry))))
1197                        (return entry)))))
1198                 (bogus-debug-fun nil)))
1199         cached-value)))
1200
1201 ;;; Return the name of the function represented by DEBUG-FUN. This may
1202 ;;; be a string or a cons; do not assume it is a symbol.
1203 (defun debug-fun-name (debug-fun)
1204   (declare (type debug-fun debug-fun))
1205   (etypecase debug-fun
1206     (compiled-debug-fun
1207      (sb!c::compiled-debug-fun-name
1208       (compiled-debug-fun-compiler-debug-fun debug-fun)))
1209     (bogus-debug-fun
1210      (bogus-debug-fun-%name debug-fun))))
1211
1212 ;;; Return a DEBUG-FUN that represents debug information for FUN.
1213 (defun fun-debug-fun (fun)
1214   (declare (type function fun))
1215   (ecase (widetag-of fun)
1216     (#.sb!vm:closure-header-widetag
1217      (fun-debug-fun (%closure-fun fun)))
1218     (#.sb!vm:funcallable-instance-header-widetag
1219      (fun-debug-fun (funcallable-instance-fun fun)))
1220     (#.sb!vm:simple-fun-header-widetag
1221       (let* ((name (%simple-fun-name fun))
1222              (component (fun-code-header fun))
1223              (res (find-if
1224                    (lambda (x)
1225                      (and (sb!c::compiled-debug-fun-p x)
1226                           (eq (sb!c::compiled-debug-fun-name x) name)
1227                           (eq (sb!c::compiled-debug-fun-kind x) nil)))
1228                    (sb!c::compiled-debug-info-fun-map
1229                     (%code-debug-info component)))))
1230         (if res
1231             (make-compiled-debug-fun res component)
1232             ;; KLUDGE: comment from CMU CL:
1233             ;;   This used to be the non-interpreted branch, but
1234             ;;   William wrote it to return the debug-fun of fun's XEP
1235             ;;   instead of fun's debug-fun. The above code does this
1236             ;;   more correctly, but it doesn't get or eliminate all
1237             ;;   appropriate cases. It mostly works, and probably
1238             ;;   works for all named functions anyway.
1239             ;; -- WHN 20000120
1240             (debug-fun-from-pc component
1241                                (* (- (fun-word-offset fun)
1242                                      (get-header-data component))
1243                                   sb!vm:n-word-bytes)))))))
1244
1245 ;;; Return the kind of the function, which is one of :OPTIONAL,
1246 ;;; :EXTERNAL, :TOPLEVEL, :CLEANUP, or NIL.
1247 (defun debug-fun-kind (debug-fun)
1248   ;; FIXME: This "is one of" information should become part of the function
1249   ;; declamation, not just a doc string
1250   (etypecase debug-fun
1251     (compiled-debug-fun
1252      (sb!c::compiled-debug-fun-kind
1253       (compiled-debug-fun-compiler-debug-fun debug-fun)))
1254     (bogus-debug-fun
1255      nil)))
1256
1257 ;;; Is there any variable information for DEBUG-FUN?
1258 (defun debug-var-info-available (debug-fun)
1259   (not (not (debug-fun-debug-vars debug-fun))))
1260
1261 ;;; Return a list of DEBUG-VARs in DEBUG-FUN having the same name
1262 ;;; and package as SYMBOL. If SYMBOL is uninterned, then this returns
1263 ;;; a list of DEBUG-VARs without package names and with the same name
1264 ;;; as symbol. The result of this function is limited to the
1265 ;;; availability of variable information in DEBUG-FUN; for
1266 ;;; example, possibly DEBUG-FUN only knows about its arguments.
1267 (defun debug-fun-symbol-vars (debug-fun symbol)
1268   (let ((vars (ambiguous-debug-vars debug-fun (symbol-name symbol)))
1269         (package (and (symbol-package symbol)
1270                       (package-name (symbol-package symbol)))))
1271     (delete-if (if (stringp package)
1272                    (lambda (var)
1273                      (let ((p (debug-var-package-name var)))
1274                        (or (not (stringp p))
1275                            (string/= p package))))
1276                    (lambda (var)
1277                      (stringp (debug-var-package-name var))))
1278                vars)))
1279
1280 ;;; Return a list of DEBUG-VARs in DEBUG-FUN whose names contain
1281 ;;; NAME-PREFIX-STRING as an initial substring. The result of this
1282 ;;; function is limited to the availability of variable information in
1283 ;;; debug-fun; for example, possibly debug-fun only knows
1284 ;;; about its arguments.
1285 (defun ambiguous-debug-vars (debug-fun name-prefix-string)
1286   (declare (simple-string name-prefix-string))
1287   (let ((variables (debug-fun-debug-vars debug-fun)))
1288     (declare (type (or null simple-vector) variables))
1289     (if variables
1290         (let* ((len (length variables))
1291                (prefix-len (length name-prefix-string))
1292                (pos (find-var name-prefix-string variables len))
1293                (res nil))
1294           (when pos
1295             ;; Find names from pos to variable's len that contain prefix.
1296             (do ((i pos (1+ i)))
1297                 ((= i len))
1298               (let* ((var (svref variables i))
1299                      (name (debug-var-symbol-name var))
1300                      (name-len (length name)))
1301                 (declare (simple-string name))
1302                 (when (/= (or (string/= name-prefix-string name
1303                                         :end1 prefix-len :end2 name-len)
1304                               prefix-len)
1305                           prefix-len)
1306                   (return))
1307                 (push var res)))
1308             (setq res (nreverse res)))
1309           res))))
1310
1311 ;;; This returns a position in VARIABLES for one containing NAME as an
1312 ;;; initial substring. END is the length of VARIABLES if supplied.
1313 (defun find-var (name variables &optional end)
1314   (declare (simple-vector variables)
1315            (simple-string name))
1316   (let ((name-len (length name)))
1317     (position name variables
1318               :test (lambda (x y)
1319                       (let* ((y (debug-var-symbol-name y))
1320                              (y-len (length y)))
1321                         (declare (simple-string y))
1322                         (and (>= y-len name-len)
1323                              (string= x y :end1 name-len :end2 name-len))))
1324               :end (or end (length variables)))))
1325
1326 ;;; Return a list representing the lambda-list for DEBUG-FUN. The
1327 ;;; list has the following structure:
1328 ;;;   (required-var1 required-var2
1329 ;;;    ...
1330 ;;;    (:optional var3 suppliedp-var4)
1331 ;;;    (:optional var5)
1332 ;;;    ...
1333 ;;;    (:rest var6) (:rest var7)
1334 ;;;    ...
1335 ;;;    (:keyword keyword-symbol var8 suppliedp-var9)
1336 ;;;    (:keyword keyword-symbol var10)
1337 ;;;    ...
1338 ;;;   )
1339 ;;; Each VARi is a DEBUG-VAR; however it may be the symbol :DELETED if
1340 ;;; it is unreferenced in DEBUG-FUN. This signals a
1341 ;;; LAMBDA-LIST-UNAVAILABLE condition when there is no argument list
1342 ;;; information.
1343 (defun debug-fun-lambda-list (debug-fun)
1344   (etypecase debug-fun
1345     (compiled-debug-fun (compiled-debug-fun-lambda-list debug-fun))
1346     (bogus-debug-fun nil)))
1347
1348 ;;; Note: If this has to compute the lambda list, it caches it in DEBUG-FUN.
1349 (defun compiled-debug-fun-lambda-list (debug-fun)
1350   (let ((lambda-list (debug-fun-%lambda-list debug-fun)))
1351     (cond ((eq lambda-list :unparsed)
1352            (multiple-value-bind (args argsp)
1353                (parse-compiled-debug-fun-lambda-list debug-fun)
1354              (setf (debug-fun-%lambda-list debug-fun) args)
1355              (if argsp
1356                  args
1357                  (debug-signal 'lambda-list-unavailable
1358                                :debug-fun debug-fun))))
1359           (lambda-list)
1360           ((bogus-debug-fun-p debug-fun)
1361            nil)
1362           ((sb!c::compiled-debug-fun-arguments
1363             (compiled-debug-fun-compiler-debug-fun debug-fun))
1364            ;; If the packed information is there (whether empty or not) as
1365            ;; opposed to being nil, then returned our cached value (nil).
1366            nil)
1367           (t
1368            ;; Our cached value is nil, and the packed lambda-list information
1369            ;; is nil, so we don't have anything available.
1370            (debug-signal 'lambda-list-unavailable
1371                          :debug-fun debug-fun)))))
1372
1373 ;;; COMPILED-DEBUG-FUN-LAMBDA-LIST calls this when a
1374 ;;; COMPILED-DEBUG-FUN has no lambda list information cached. It
1375 ;;; returns the lambda list as the first value and whether there was
1376 ;;; any argument information as the second value. Therefore,
1377 ;;; (VALUES NIL T) means there were no arguments, but (VALUES NIL NIL)
1378 ;;; means there was no argument information.
1379 (defun parse-compiled-debug-fun-lambda-list (debug-fun)
1380   (let ((args (sb!c::compiled-debug-fun-arguments
1381                (compiled-debug-fun-compiler-debug-fun debug-fun))))
1382     (cond
1383      ((not args)
1384       (values nil nil))
1385      ((eq args :minimal)
1386       (values (coerce (debug-fun-debug-vars debug-fun) 'list)
1387               t))
1388      (t
1389       (let ((vars (debug-fun-debug-vars debug-fun))
1390             (i 0)
1391             (len (length args))
1392             (res nil)
1393             (optionalp nil))
1394         (declare (type (or null simple-vector) vars))
1395         (loop
1396           (when (>= i len) (return))
1397           (let ((ele (aref args i)))
1398             (cond
1399              ((symbolp ele)
1400               (case ele
1401                 (sb!c::deleted
1402                  ;; Deleted required arg at beginning of args array.
1403                  (push :deleted res))
1404                 (sb!c::optional-args
1405                  (setf optionalp t))
1406                 (sb!c::supplied-p
1407                  ;; SUPPLIED-P var immediately following keyword or
1408                  ;; optional. Stick the extra var in the result
1409                  ;; element representing the keyword or optional,
1410                  ;; which is the previous one.
1411                  (nconc (car res)
1412                         (list (compiled-debug-fun-lambda-list-var
1413                                args (incf i) vars))))
1414                 (sb!c::rest-arg
1415                  (push (list :rest
1416                              (compiled-debug-fun-lambda-list-var
1417                               args (incf i) vars))
1418                        res))
1419                 (sb!c::more-arg
1420                  ;; Just ignore the fact that the next two args are
1421                  ;; the &MORE arg context and count, and act like they
1422                  ;; are regular arguments.
1423                  nil)
1424                 (t
1425                  ;; &KEY arg
1426                  (push (list :keyword
1427                              ele
1428                              (compiled-debug-fun-lambda-list-var
1429                               args (incf i) vars))
1430                        res))))
1431              (optionalp
1432               ;; We saw an optional marker, so the following
1433               ;; non-symbols are indexes indicating optional
1434               ;; variables.
1435               (push (list :optional (svref vars ele)) res))
1436              (t
1437               ;; Required arg at beginning of args array.
1438               (push (svref vars ele) res))))
1439           (incf i))
1440         (values (nreverse res) t))))))
1441
1442 ;;; This is used in COMPILED-DEBUG-FUN-LAMBDA-LIST.
1443 (defun compiled-debug-fun-lambda-list-var (args i vars)
1444   (declare (type (simple-array * (*)) args)
1445            (simple-vector vars))
1446   (let ((ele (aref args i)))
1447     (cond ((not (symbolp ele)) (svref vars ele))
1448           ((eq ele 'sb!c::deleted) :deleted)
1449           (t (error "malformed arguments description")))))
1450
1451 (defun compiled-debug-fun-debug-info (debug-fun)
1452   (%code-debug-info (compiled-debug-fun-component debug-fun)))
1453 \f
1454 ;;;; unpacking variable and basic block data
1455
1456 (defvar *parsing-buffer*
1457   (make-array 20 :adjustable t :fill-pointer t))
1458 (defvar *other-parsing-buffer*
1459   (make-array 20 :adjustable t :fill-pointer t))
1460 ;;; PARSE-DEBUG-BLOCKS and PARSE-DEBUG-VARS
1461 ;;; use this to unpack binary encoded information. It returns the
1462 ;;; values returned by the last form in body.
1463 ;;;
1464 ;;; This binds buffer-var to *parsing-buffer*, makes sure it starts at
1465 ;;; element zero, and makes sure if we unwind, we nil out any set
1466 ;;; elements for GC purposes.
1467 ;;;
1468 ;;; This also binds other-var to *other-parsing-buffer* when it is
1469 ;;; supplied, making sure it starts at element zero and that we nil
1470 ;;; out any elements if we unwind.
1471 ;;;
1472 ;;; This defines the local macro RESULT that takes a buffer, copies
1473 ;;; its elements to a resulting simple-vector, nil's out elements, and
1474 ;;; restarts the buffer at element zero. RESULT returns the
1475 ;;; simple-vector.
1476 (eval-when (:compile-toplevel :execute)
1477 (sb!xc:defmacro with-parsing-buffer ((buffer-var &optional other-var)
1478                                      &body body)
1479   (let ((len (gensym))
1480         (res (gensym)))
1481     `(unwind-protect
1482          (let ((,buffer-var *parsing-buffer*)
1483                ,@(if other-var `((,other-var *other-parsing-buffer*))))
1484            (setf (fill-pointer ,buffer-var) 0)
1485            ,@(if other-var `((setf (fill-pointer ,other-var) 0)))
1486            (macrolet ((result (buf)
1487                         `(let* ((,',len (length ,buf))
1488                                 (,',res (make-array ,',len)))
1489                            (replace ,',res ,buf :end1 ,',len :end2 ,',len)
1490                            (fill ,buf nil :end ,',len)
1491                            (setf (fill-pointer ,buf) 0)
1492                            ,',res)))
1493              ,@body))
1494      (fill *parsing-buffer* nil)
1495      ,@(if other-var `((fill *other-parsing-buffer* nil))))))
1496 ) ; EVAL-WHEN
1497
1498 ;;; The argument is a debug internals structure. This returns the
1499 ;;; DEBUG-BLOCKs for DEBUG-FUN, regardless of whether we have unpacked
1500 ;;; them yet. It signals a NO-DEBUG-BLOCKS condition if it can't
1501 ;;; return the blocks.
1502 (defun debug-fun-debug-blocks (debug-fun)
1503   (let ((blocks (debug-fun-blocks debug-fun)))
1504     (cond ((eq blocks :unparsed)
1505            (setf (debug-fun-blocks debug-fun)
1506                  (parse-debug-blocks debug-fun))
1507            (unless (debug-fun-blocks debug-fun)
1508              (debug-signal 'no-debug-blocks
1509                            :debug-fun debug-fun))
1510            (debug-fun-blocks debug-fun))
1511           (blocks)
1512           (t
1513            (debug-signal 'no-debug-blocks
1514                          :debug-fun debug-fun)))))
1515
1516 ;;; Return a SIMPLE-VECTOR of DEBUG-BLOCKs or NIL. NIL indicates there
1517 ;;; was no basic block information.
1518 (defun parse-debug-blocks (debug-fun)
1519   (etypecase debug-fun
1520     (compiled-debug-fun
1521      (parse-compiled-debug-blocks debug-fun))
1522     (bogus-debug-fun
1523      (debug-signal 'no-debug-blocks :debug-fun debug-fun))))
1524
1525 ;;; This does some of the work of PARSE-DEBUG-BLOCKS.
1526 (defun parse-compiled-debug-blocks (debug-fun)
1527   (let* ((var-count (length (debug-fun-debug-vars debug-fun)))
1528          (compiler-debug-fun (compiled-debug-fun-compiler-debug-fun
1529                               debug-fun))
1530          (blocks (sb!c::compiled-debug-fun-blocks compiler-debug-fun))
1531          ;; KLUDGE: 8 is a hard-wired constant in the compiler for the
1532          ;; element size of the packed binary representation of the
1533          ;; blocks data.
1534          (live-set-len (ceiling var-count 8))
1535          (tlf-number (sb!c::compiled-debug-fun-tlf-number compiler-debug-fun)))
1536     (unless blocks
1537       (return-from parse-compiled-debug-blocks nil))
1538     (macrolet ((aref+ (a i) `(prog1 (aref ,a ,i) (incf ,i))))
1539       (with-parsing-buffer (blocks-buffer locations-buffer)
1540         (let ((i 0)
1541               (len (length blocks))
1542               (last-pc 0))
1543           (loop
1544             (when (>= i len) (return))
1545             (let ((succ-and-flags (aref+ blocks i))
1546                   (successors nil))
1547               (declare (type (unsigned-byte 8) succ-and-flags)
1548                        (list successors))
1549               (dotimes (k (ldb sb!c::compiled-debug-block-nsucc-byte
1550                                succ-and-flags))
1551                 (push (sb!c:read-var-integer blocks i) successors))
1552               (let* ((locations
1553                       (dotimes (k (sb!c:read-var-integer blocks i)
1554                                   (result locations-buffer))
1555                         (let ((kind (svref sb!c::*compiled-code-location-kinds*
1556                                            (aref+ blocks i)))
1557                               (pc (+ last-pc
1558                                      (sb!c:read-var-integer blocks i)))
1559                               (tlf-offset (or tlf-number
1560                                               (sb!c:read-var-integer blocks i)))
1561                               (form-number (sb!c:read-var-integer blocks i))
1562                               (live-set (sb!c:read-packed-bit-vector
1563                                          live-set-len blocks i)))
1564                           (vector-push-extend (make-known-code-location
1565                                                pc debug-fun tlf-offset
1566                                                form-number live-set kind)
1567                                               locations-buffer)
1568                           (setf last-pc pc))))
1569                      (block (make-compiled-debug-block
1570                              locations successors
1571                              (not (zerop (logand
1572                                           sb!c::compiled-debug-block-elsewhere-p
1573                                           succ-and-flags))))))
1574                 (vector-push-extend block blocks-buffer)
1575                 (dotimes (k (length locations))
1576                   (setf (code-location-%debug-block (svref locations k))
1577                         block))))))
1578         (let ((res (result blocks-buffer)))
1579           (declare (simple-vector res))
1580           (dotimes (i (length res))
1581             (let* ((block (svref res i))
1582                    (succs nil))
1583               (dolist (ele (debug-block-successors block))
1584                 (push (svref res ele) succs))
1585               (setf (debug-block-successors block) succs)))
1586           res)))))
1587
1588 ;;; The argument is a debug internals structure. This returns NIL if
1589 ;;; there is no variable information. It returns an empty
1590 ;;; simple-vector if there were no locals in the function. Otherwise
1591 ;;; it returns a SIMPLE-VECTOR of DEBUG-VARs.
1592 (defun debug-fun-debug-vars (debug-fun)
1593   (let ((vars (debug-fun-%debug-vars debug-fun)))
1594     (if (eq vars :unparsed)
1595         (setf (debug-fun-%debug-vars debug-fun)
1596               (etypecase debug-fun
1597                 (compiled-debug-fun
1598                  (parse-compiled-debug-vars debug-fun))
1599                 (bogus-debug-fun nil)))
1600         vars)))
1601
1602 ;;; VARS is the parsed variables for a minimal debug function. We need
1603 ;;; to assign names of the form ARG-NNN. We must pad with leading
1604 ;;; zeros, since the arguments must be in alphabetical order.
1605 (defun assign-minimal-var-names (vars)
1606   (declare (simple-vector vars))
1607   (let* ((len (length vars))
1608          (width (length (format nil "~W" (1- len)))))
1609     (dotimes (i len)
1610       (without-package-locks
1611         (setf (compiled-debug-var-symbol (svref vars i))
1612               (intern (format nil "ARG-~V,'0D" width i)
1613                       ;; KLUDGE: It's somewhat nasty to have a bare
1614                       ;; package name string here. It would be
1615                       ;; nicer to have #.(FIND-PACKAGE "SB!DEBUG")
1616                       ;; instead, since then at least it would transform
1617                       ;; correctly under package renaming and stuff.
1618                       ;; However, genesis can't handle dumped packages..
1619                       ;; -- WHN 20000129
1620                       ;;
1621                       ;; FIXME: Maybe this could be fixed by moving the
1622                       ;; whole debug-int.lisp file to warm init? (after
1623                       ;; which dumping a #.(FIND-PACKAGE ..) expression
1624                       ;; would work fine) If this is possible, it would
1625                       ;; probably be a good thing, since minimizing the
1626                       ;; amount of stuff in cold init is basically good.
1627                       (or (find-package "SB-DEBUG")
1628                           (find-package "SB!DEBUG"))))))))
1629
1630 ;;; Parse the packed representation of DEBUG-VARs from
1631 ;;; DEBUG-FUN's SB!C::COMPILED-DEBUG-FUN, returning a vector
1632 ;;; of DEBUG-VARs, or NIL if there was no information to parse.
1633 (defun parse-compiled-debug-vars (debug-fun)
1634   (let* ((cdebug-fun (compiled-debug-fun-compiler-debug-fun
1635                       debug-fun))
1636          (packed-vars (sb!c::compiled-debug-fun-vars cdebug-fun))
1637          (args-minimal (eq (sb!c::compiled-debug-fun-arguments cdebug-fun)
1638                            :minimal)))
1639     (when packed-vars
1640       (do ((i 0)
1641            (buffer (make-array 0 :fill-pointer 0 :adjustable t)))
1642           ((>= i (length packed-vars))
1643            (let ((result (coerce buffer 'simple-vector)))
1644              (when args-minimal
1645                (assign-minimal-var-names result))
1646              result))
1647         (flet ((geti () (prog1 (aref packed-vars i) (incf i))))
1648           (let* ((flags (geti))
1649                  (minimal (logtest sb!c::compiled-debug-var-minimal-p flags))
1650                  (deleted (logtest sb!c::compiled-debug-var-deleted-p flags))
1651                  (live (logtest sb!c::compiled-debug-var-environment-live
1652                                 flags))
1653                  (save (logtest sb!c::compiled-debug-var-save-loc-p flags))
1654                  (symbol (if minimal nil (geti)))
1655                  (id (if (logtest sb!c::compiled-debug-var-id-p flags)
1656                          (geti)
1657                          0))
1658                  (sc-offset (if deleted 0 (geti)))
1659                  (save-sc-offset (if save (geti) nil)))
1660             (aver (not (and args-minimal (not minimal))))
1661             (vector-push-extend (make-compiled-debug-var symbol
1662                                                          id
1663                                                          live
1664                                                          sc-offset
1665                                                          save-sc-offset)
1666                                 buffer)))))))
1667 \f
1668 ;;;; CODE-LOCATIONs
1669
1670 ;;; If we're sure of whether code-location is known, return T or NIL.
1671 ;;; If we're :UNSURE, then try to fill in the code-location's slots.
1672 ;;; This determines whether there is any debug-block information, and
1673 ;;; if code-location is known.
1674 ;;;
1675 ;;; ??? IF this conses closures every time it's called, then break off the
1676 ;;; :UNSURE part to get the HANDLER-CASE into another function.
1677 (defun code-location-unknown-p (basic-code-location)
1678   (ecase (code-location-%unknown-p basic-code-location)
1679     ((t) t)
1680     ((nil) nil)
1681     (:unsure
1682      (setf (code-location-%unknown-p basic-code-location)
1683            (handler-case (not (fill-in-code-location basic-code-location))
1684              (no-debug-blocks () t))))))
1685
1686 ;;; Return the DEBUG-BLOCK containing code-location if it is available.
1687 ;;; Some debug policies inhibit debug-block information, and if none
1688 ;;; is available, then this signals a NO-DEBUG-BLOCKS condition.
1689 (defun code-location-debug-block (basic-code-location)
1690   (let ((block (code-location-%debug-block basic-code-location)))
1691     (if (eq block :unparsed)
1692         (etypecase basic-code-location
1693           (compiled-code-location
1694            (compute-compiled-code-location-debug-block basic-code-location))
1695           ;; (There used to be more cases back before sbcl-0.7.0, when
1696           ;; we did special tricks to debug the IR1 interpreter.)
1697           )
1698         block)))
1699
1700 ;;; Store and return BASIC-CODE-LOCATION's debug-block. We determines
1701 ;;; the correct one using the code-location's pc. We use
1702 ;;; DEBUG-FUN-DEBUG-BLOCKS to return the cached block information
1703 ;;; or signal a NO-DEBUG-BLOCKS condition. The blocks are sorted by
1704 ;;; their first code-location's pc, in ascending order. Therefore, as
1705 ;;; soon as we find a block that starts with a pc greater than
1706 ;;; basic-code-location's pc, we know the previous block contains the
1707 ;;; pc. If we get to the last block, then the code-location is either
1708 ;;; in the second to last block or the last block, and we have to be
1709 ;;; careful in determining this since the last block could be code at
1710 ;;; the end of the function. We have to check for the last block being
1711 ;;; code first in order to see how to compare the code-location's pc.
1712 (defun compute-compiled-code-location-debug-block (basic-code-location)
1713   (let* ((pc (compiled-code-location-pc basic-code-location))
1714          (debug-fun (code-location-debug-fun
1715                           basic-code-location))
1716          (blocks (debug-fun-debug-blocks debug-fun))
1717          (len (length blocks)))
1718     (declare (simple-vector blocks))
1719     (setf (code-location-%debug-block basic-code-location)
1720           (if (= len 1)
1721               (svref blocks 0)
1722               (do ((i 1 (1+ i))
1723                    (end (1- len)))
1724                   ((= i end)
1725                    (let ((last (svref blocks end)))
1726                      (cond
1727                       ((debug-block-elsewhere-p last)
1728                        (if (< pc
1729                               (sb!c::compiled-debug-fun-elsewhere-pc
1730                                (compiled-debug-fun-compiler-debug-fun
1731                                 debug-fun)))
1732                            (svref blocks (1- end))
1733                            last))
1734                       ((< pc
1735                           (compiled-code-location-pc
1736                            (svref (compiled-debug-block-code-locations last)
1737                                   0)))
1738                        (svref blocks (1- end)))
1739                       (t last))))
1740                 (declare (type index i end))
1741                 (when (< pc
1742                          (compiled-code-location-pc
1743                           (svref (compiled-debug-block-code-locations
1744                                   (svref blocks i))
1745                                  0)))
1746                   (return (svref blocks (1- i)))))))))
1747
1748 ;;; Return the CODE-LOCATION's DEBUG-SOURCE.
1749 (defun code-location-debug-source (code-location)
1750   (etypecase code-location
1751     (compiled-code-location
1752      (let* ((info (compiled-debug-fun-debug-info
1753                    (code-location-debug-fun code-location)))
1754             (sources (sb!c::compiled-debug-info-source info))
1755             (len (length sources)))
1756        (declare (list sources))
1757        (when (zerop len)
1758          (debug-signal 'no-debug-blocks :debug-fun
1759                        (code-location-debug-fun code-location)))
1760        (if (= len 1)
1761            (car sources)
1762            (do ((prev sources src)
1763                 (src (cdr sources) (cdr src))
1764                 (offset (code-location-toplevel-form-offset code-location)))
1765                ((null src) (car prev))
1766              (when (< offset (sb!c::debug-source-source-root (car src)))
1767                (return (car prev)))))))
1768     ;; (There used to be more cases back before sbcl-0.7.0, when we
1769     ;; did special tricks to debug the IR1 interpreter.)
1770     ))
1771
1772 ;;; Returns the number of top level forms before the one containing
1773 ;;; CODE-LOCATION as seen by the compiler in some compilation unit. (A
1774 ;;; compilation unit is not necessarily a single file, see the section
1775 ;;; on debug-sources.)
1776 (defun code-location-toplevel-form-offset (code-location)
1777   (when (code-location-unknown-p code-location)
1778     (error 'unknown-code-location :code-location code-location))
1779   (let ((tlf-offset (code-location-%tlf-offset code-location)))
1780     (cond ((eq tlf-offset :unparsed)
1781            (etypecase code-location
1782              (compiled-code-location
1783               (unless (fill-in-code-location code-location)
1784                 ;; This check should be unnecessary. We're missing
1785                 ;; debug info the compiler should have dumped.
1786                 (bug "unknown code location"))
1787               (code-location-%tlf-offset code-location))
1788              ;; (There used to be more cases back before sbcl-0.7.0,,
1789              ;; when we did special tricks to debug the IR1
1790              ;; interpreter.)
1791              ))
1792           (t tlf-offset))))
1793
1794 ;;; Return the number of the form corresponding to CODE-LOCATION. The
1795 ;;; form number is derived by a walking the subforms of a top level
1796 ;;; form in depth-first order.
1797 (defun code-location-form-number (code-location)
1798   (when (code-location-unknown-p code-location)
1799     (error 'unknown-code-location :code-location code-location))
1800   (let ((form-num (code-location-%form-number code-location)))
1801     (cond ((eq form-num :unparsed)
1802            (etypecase code-location
1803              (compiled-code-location
1804               (unless (fill-in-code-location code-location)
1805                 ;; This check should be unnecessary. We're missing
1806                 ;; debug info the compiler should have dumped.
1807                 (bug "unknown code location"))
1808               (code-location-%form-number code-location))
1809              ;; (There used to be more cases back before sbcl-0.7.0,,
1810              ;; when we did special tricks to debug the IR1
1811              ;; interpreter.)
1812              ))
1813           (t form-num))))
1814
1815 ;;; Return the kind of CODE-LOCATION, one of:
1816 ;;;  :INTERPRETED, :UNKNOWN-RETURN, :KNOWN-RETURN, :INTERNAL-ERROR,
1817 ;;;  :NON-LOCAL-EXIT, :BLOCK-START, :CALL-SITE, :SINGLE-VALUE-RETURN,
1818 ;;;  :NON-LOCAL-ENTRY
1819 (defun code-location-kind (code-location)
1820   (when (code-location-unknown-p code-location)
1821     (error 'unknown-code-location :code-location code-location))
1822   (etypecase code-location
1823     (compiled-code-location
1824      (let ((kind (compiled-code-location-kind code-location)))
1825        (cond ((not (eq kind :unparsed)) kind)
1826              ((not (fill-in-code-location code-location))
1827               ;; This check should be unnecessary. We're missing
1828               ;; debug info the compiler should have dumped.
1829               (bug "unknown code location"))
1830              (t
1831               (compiled-code-location-kind code-location)))))
1832     ;; (There used to be more cases back before sbcl-0.7.0,,
1833     ;; when we did special tricks to debug the IR1
1834     ;; interpreter.)
1835     ))
1836
1837 ;;; This returns CODE-LOCATION's live-set if it is available. If
1838 ;;; there is no debug-block information, this returns NIL.
1839 (defun compiled-code-location-live-set (code-location)
1840   (if (code-location-unknown-p code-location)
1841       nil
1842       (let ((live-set (compiled-code-location-%live-set code-location)))
1843         (cond ((eq live-set :unparsed)
1844                (unless (fill-in-code-location code-location)
1845                  ;; This check should be unnecessary. We're missing
1846                  ;; debug info the compiler should have dumped.
1847                  ;;
1848                  ;; FIXME: This error and comment happen over and over again.
1849                  ;; Make them a shared function.
1850                  (bug "unknown code location"))
1851                (compiled-code-location-%live-set code-location))
1852               (t live-set)))))
1853
1854 ;;; true if OBJ1 and OBJ2 are the same place in the code
1855 (defun code-location= (obj1 obj2)
1856   (etypecase obj1
1857     (compiled-code-location
1858      (etypecase obj2
1859        (compiled-code-location
1860         (and (eq (code-location-debug-fun obj1)
1861                  (code-location-debug-fun obj2))
1862              (sub-compiled-code-location= obj1 obj2)))
1863        ;; (There used to be more cases back before sbcl-0.7.0,,
1864        ;; when we did special tricks to debug the IR1
1865        ;; interpreter.)
1866        ))
1867     ;; (There used to be more cases back before sbcl-0.7.0,,
1868     ;; when we did special tricks to debug IR1-interpreted code.)
1869     ))
1870 (defun sub-compiled-code-location= (obj1 obj2)
1871   (= (compiled-code-location-pc obj1)
1872      (compiled-code-location-pc obj2)))
1873
1874 ;;; Fill in CODE-LOCATION's :UNPARSED slots, returning T or NIL
1875 ;;; depending on whether the code-location was known in its
1876 ;;; DEBUG-FUN's debug-block information. This may signal a
1877 ;;; NO-DEBUG-BLOCKS condition due to DEBUG-FUN-DEBUG-BLOCKS, and
1878 ;;; it assumes the %UNKNOWN-P slot is already set or going to be set.
1879 (defun fill-in-code-location (code-location)
1880   (declare (type compiled-code-location code-location))
1881   (let* ((debug-fun (code-location-debug-fun code-location))
1882          (blocks (debug-fun-debug-blocks debug-fun)))
1883     (declare (simple-vector blocks))
1884     (dotimes (i (length blocks) nil)
1885       (let* ((block (svref blocks i))
1886              (locations (compiled-debug-block-code-locations block)))
1887         (declare (simple-vector locations))
1888         (dotimes (j (length locations))
1889           (let ((loc (svref locations j)))
1890             (when (sub-compiled-code-location= code-location loc)
1891               (setf (code-location-%debug-block code-location) block)
1892               (setf (code-location-%tlf-offset code-location)
1893                     (code-location-%tlf-offset loc))
1894               (setf (code-location-%form-number code-location)
1895                     (code-location-%form-number loc))
1896               (setf (compiled-code-location-%live-set code-location)
1897                     (compiled-code-location-%live-set loc))
1898               (setf (compiled-code-location-kind code-location)
1899                     (compiled-code-location-kind loc))
1900               (return-from fill-in-code-location t))))))))
1901 \f
1902 ;;;; operations on DEBUG-BLOCKs
1903
1904 ;;; Execute FORMS in a context with CODE-VAR bound to each
1905 ;;; CODE-LOCATION in DEBUG-BLOCK, and return the value of RESULT.
1906 (defmacro do-debug-block-locations ((code-var debug-block &optional result)
1907                                     &body body)
1908   (let ((code-locations (gensym))
1909         (i (gensym)))
1910     `(let ((,code-locations (debug-block-code-locations ,debug-block)))
1911        (declare (simple-vector ,code-locations))
1912        (dotimes (,i (length ,code-locations) ,result)
1913          (let ((,code-var (svref ,code-locations ,i)))
1914            ,@body)))))
1915
1916 ;;; Return the name of the function represented by DEBUG-FUN.
1917 ;;; This may be a string or a cons; do not assume it is a symbol.
1918 (defun debug-block-fun-name (debug-block)
1919   (etypecase debug-block
1920     (compiled-debug-block
1921      (let ((code-locs (compiled-debug-block-code-locations debug-block)))
1922        (declare (simple-vector code-locs))
1923        (if (zerop (length code-locs))
1924            "??? Can't get name of debug-block's function."
1925            (debug-fun-name
1926             (code-location-debug-fun (svref code-locs 0))))))
1927     ;; (There used to be more cases back before sbcl-0.7.0, when we
1928     ;; did special tricks to debug the IR1 interpreter.)
1929     ))
1930
1931 (defun debug-block-code-locations (debug-block)
1932   (etypecase debug-block
1933     (compiled-debug-block
1934      (compiled-debug-block-code-locations debug-block))
1935     ;; (There used to be more cases back before sbcl-0.7.0, when we
1936     ;; did special tricks to debug the IR1 interpreter.)
1937     ))
1938 \f
1939 ;;;; operations on debug variables
1940
1941 (defun debug-var-symbol-name (debug-var)
1942   (symbol-name (debug-var-symbol debug-var)))
1943
1944 ;;; FIXME: Make sure that this isn't called anywhere that it wouldn't
1945 ;;; be acceptable to have NIL returned, or that it's only called on
1946 ;;; DEBUG-VARs whose symbols have non-NIL packages.
1947 (defun debug-var-package-name (debug-var)
1948   (package-name (symbol-package (debug-var-symbol debug-var))))
1949
1950 ;;; Return the value stored for DEBUG-VAR in frame, or if the value is
1951 ;;; not :VALID, then signal an INVALID-VALUE error.
1952 (defun debug-var-valid-value (debug-var frame)
1953   (unless (eq (debug-var-validity debug-var (frame-code-location frame))
1954               :valid)
1955     (error 'invalid-value :debug-var debug-var :frame frame))
1956   (debug-var-value debug-var frame))
1957
1958 ;;; Returns the value stored for DEBUG-VAR in frame. The value may be
1959 ;;; invalid. This is SETFable.
1960 (defun debug-var-value (debug-var frame)
1961   (aver (typep frame 'compiled-frame))
1962   (let ((res (access-compiled-debug-var-slot debug-var frame)))
1963     (if (indirect-value-cell-p res)
1964         (value-cell-ref res)
1965         res)))
1966
1967 ;;; This returns what is stored for the variable represented by
1968 ;;; DEBUG-VAR relative to the FRAME. This may be an indirect value
1969 ;;; cell if the variable is both closed over and set.
1970 (defun access-compiled-debug-var-slot (debug-var frame)
1971   (declare (optimize (speed 1)))
1972   (let ((escaped (compiled-frame-escaped frame)))
1973     (if escaped
1974         (sub-access-debug-var-slot
1975          (frame-pointer frame)
1976          (compiled-debug-var-sc-offset debug-var)
1977          escaped)
1978       (sub-access-debug-var-slot
1979        (frame-pointer frame)
1980        (or (compiled-debug-var-save-sc-offset debug-var)
1981            (compiled-debug-var-sc-offset debug-var))))))
1982
1983 ;;; a helper function for working with possibly-invalid values:
1984 ;;; Do (MAKE-LISP-OBJ VAL) only if the value looks valid.
1985 ;;;
1986 ;;; (Such values can arise in registers on machines with conservative
1987 ;;; GC, and might also arise in debug variable locations when
1988 ;;; those variables are invalid.)
1989 (defun make-valid-lisp-obj (val)
1990   (if (or
1991        ;; fixnum
1992        (zerop (logand val sb!vm:fixnum-tag-mask))
1993        ;; character
1994        (and (zerop (logandc2 val #x1fffffff)) ; Top bits zero
1995             (= (logand val #xff) sb!vm:character-widetag)) ; char tag
1996        ;; unbound marker
1997        (= val sb!vm:unbound-marker-widetag)
1998        ;; pointer
1999        (and (logand val 1)
2000             ;; Check that the pointer is valid. XXX Could do a better
2001             ;; job. FIXME: e.g. by calling out to an is_valid_pointer
2002             ;; routine in the C runtime support code
2003             (or (< sb!vm:read-only-space-start val
2004                    (* sb!vm:*read-only-space-free-pointer*
2005                       sb!vm:n-word-bytes))
2006                 (< sb!vm:static-space-start val
2007                    (* sb!vm:*static-space-free-pointer*
2008                       sb!vm:n-word-bytes))
2009                 (< sb!vm:dynamic-space-start val
2010                    (sap-int (dynamic-space-free-pointer))))))
2011       (make-lisp-obj val)
2012       :invalid-object))
2013
2014 #!-(or x86 x86-64)
2015 (defun sub-access-debug-var-slot (fp sc-offset &optional escaped)
2016   (macrolet ((with-escaped-value ((var) &body forms)
2017                `(if escaped
2018                     (let ((,var (sb!vm:context-register
2019                                  escaped
2020                                  (sb!c:sc-offset-offset sc-offset))))
2021                       ,@forms)
2022                     :invalid-value-for-unescaped-register-storage))
2023              (escaped-float-value (format)
2024                `(if escaped
2025                     (sb!vm:context-float-register
2026                      escaped
2027                      (sb!c:sc-offset-offset sc-offset)
2028                      ',format)
2029                     :invalid-value-for-unescaped-register-storage))
2030              (with-nfp ((var) &body body)
2031                `(let ((,var (if escaped
2032                                 (sb!sys:int-sap
2033                                  (sb!vm:context-register escaped
2034                                                          sb!vm::nfp-offset))
2035                                 #!-alpha
2036                                 (sb!sys:sap-ref-sap fp (* nfp-save-offset
2037                                                           sb!vm:n-word-bytes))
2038                                 #!+alpha
2039                                 (sb!vm::make-number-stack-pointer
2040                                  (sb!sys:sap-ref-32 fp (* nfp-save-offset
2041                                                           sb!vm:n-word-bytes))))))
2042                   ,@body)))
2043     (ecase (sb!c:sc-offset-scn sc-offset)
2044       ((#.sb!vm:any-reg-sc-number
2045         #.sb!vm:descriptor-reg-sc-number
2046         #!+rt #.sb!vm:word-pointer-reg-sc-number)
2047        (sb!sys:without-gcing
2048         (with-escaped-value (val) (sb!kernel:make-lisp-obj val))))
2049                             
2050       (#.sb!vm:character-reg-sc-number
2051        (with-escaped-value (val)
2052          (code-char val)))
2053       (#.sb!vm:sap-reg-sc-number
2054        (with-escaped-value (val)
2055          (sb!sys:int-sap val)))
2056       (#.sb!vm:signed-reg-sc-number
2057        (with-escaped-value (val)
2058          (if (logbitp (1- sb!vm:n-word-bits) val)
2059              (logior val (ash -1 sb!vm:n-word-bits))
2060              val)))
2061       (#.sb!vm:unsigned-reg-sc-number
2062        (with-escaped-value (val)
2063          val))
2064       (#.sb!vm:non-descriptor-reg-sc-number
2065        (error "Local non-descriptor register access?"))
2066       (#.sb!vm:interior-reg-sc-number
2067        (error "Local interior register access?"))
2068       (#.sb!vm:single-reg-sc-number
2069        (escaped-float-value single-float))
2070       (#.sb!vm:double-reg-sc-number
2071        (escaped-float-value double-float))
2072       #!+long-float
2073       (#.sb!vm:long-reg-sc-number
2074        (escaped-float-value long-float))
2075       (#.sb!vm:complex-single-reg-sc-number
2076        (if escaped
2077            (complex
2078             (sb!vm:context-float-register
2079              escaped (sb!c:sc-offset-offset sc-offset) 'single-float)
2080             (sb!vm:context-float-register
2081              escaped (1+ (sb!c:sc-offset-offset sc-offset)) 'single-float))
2082            :invalid-value-for-unescaped-register-storage))
2083       (#.sb!vm:complex-double-reg-sc-number
2084        (if escaped
2085            (complex
2086             (sb!vm:context-float-register
2087              escaped (sb!c:sc-offset-offset sc-offset) 'double-float)
2088             (sb!vm:context-float-register
2089              escaped (+ (sb!c:sc-offset-offset sc-offset) #!+sparc 2 #!-sparc 1)
2090              'double-float))
2091            :invalid-value-for-unescaped-register-storage))
2092       #!+long-float
2093       (#.sb!vm:complex-long-reg-sc-number
2094        (if escaped
2095            (complex
2096             (sb!vm:context-float-register
2097              escaped (sb!c:sc-offset-offset sc-offset) 'long-float)
2098             (sb!vm:context-float-register
2099              escaped (+ (sb!c:sc-offset-offset sc-offset) #!+sparc 4)
2100              'long-float))
2101            :invalid-value-for-unescaped-register-storage))
2102       (#.sb!vm:single-stack-sc-number
2103        (with-nfp (nfp)
2104          (sb!sys:sap-ref-single nfp (* (sb!c:sc-offset-offset sc-offset)
2105                                        sb!vm:n-word-bytes))))
2106       (#.sb!vm:double-stack-sc-number
2107        (with-nfp (nfp)
2108          (sb!sys:sap-ref-double nfp (* (sb!c:sc-offset-offset sc-offset)
2109                                        sb!vm:n-word-bytes))))
2110       #!+long-float
2111       (#.sb!vm:long-stack-sc-number
2112        (with-nfp (nfp)
2113          (sb!sys:sap-ref-long nfp (* (sb!c:sc-offset-offset sc-offset)
2114                                      sb!vm:n-word-bytes))))
2115       (#.sb!vm:complex-single-stack-sc-number
2116        (with-nfp (nfp)
2117          (complex
2118           (sb!sys:sap-ref-single nfp (* (sb!c:sc-offset-offset sc-offset)
2119                                         sb!vm:n-word-bytes))
2120           (sb!sys:sap-ref-single nfp (* (1+ (sb!c:sc-offset-offset sc-offset))
2121                                         sb!vm:n-word-bytes)))))
2122       (#.sb!vm:complex-double-stack-sc-number
2123        (with-nfp (nfp)
2124          (complex
2125           (sb!sys:sap-ref-double nfp (* (sb!c:sc-offset-offset sc-offset)
2126                                         sb!vm:n-word-bytes))
2127           (sb!sys:sap-ref-double nfp (* (+ (sb!c:sc-offset-offset sc-offset) 2)
2128                                         sb!vm:n-word-bytes)))))
2129       #!+long-float
2130       (#.sb!vm:complex-long-stack-sc-number
2131        (with-nfp (nfp)
2132          (complex
2133           (sb!sys:sap-ref-long nfp (* (sb!c:sc-offset-offset sc-offset)
2134                                       sb!vm:n-word-bytes))
2135           (sb!sys:sap-ref-long nfp (* (+ (sb!c:sc-offset-offset sc-offset)
2136                                          #!+sparc 4)
2137                                       sb!vm:n-word-bytes)))))
2138       (#.sb!vm:control-stack-sc-number
2139        (sb!kernel:stack-ref fp (sb!c:sc-offset-offset sc-offset)))
2140       (#.sb!vm:character-stack-sc-number
2141        (with-nfp (nfp)
2142          (code-char (sb!sys:sap-ref-32 nfp (* (sb!c:sc-offset-offset sc-offset)
2143                                               sb!vm:n-word-bytes)))))
2144       (#.sb!vm:unsigned-stack-sc-number
2145        (with-nfp (nfp)
2146          (sb!sys:sap-ref-32 nfp (* (sb!c:sc-offset-offset sc-offset)
2147                                    sb!vm:n-word-bytes))))
2148       (#.sb!vm:signed-stack-sc-number
2149        (with-nfp (nfp)
2150          (sb!sys:signed-sap-ref-32 nfp (* (sb!c:sc-offset-offset sc-offset)
2151                                           sb!vm:n-word-bytes))))
2152       (#.sb!vm:sap-stack-sc-number
2153        (with-nfp (nfp)
2154          (sb!sys:sap-ref-sap nfp (* (sb!c:sc-offset-offset sc-offset)
2155                                     sb!vm:n-word-bytes)))))))
2156
2157 #!+(or x86 x86-64)
2158 (defun sub-access-debug-var-slot (fp sc-offset &optional escaped)
2159   (declare (type system-area-pointer fp))
2160   (macrolet ((with-escaped-value ((var) &body forms)
2161                `(if escaped
2162                     (let ((,var (sb!vm:context-register
2163                                  escaped
2164                                  (sb!c:sc-offset-offset sc-offset))))
2165                       ,@forms)
2166                     :invalid-value-for-unescaped-register-storage))
2167              (escaped-float-value (format)
2168                `(if escaped
2169                     (sb!vm:context-float-register
2170                      escaped (sb!c:sc-offset-offset sc-offset) ',format)
2171                     :invalid-value-for-unescaped-register-storage))
2172              (escaped-complex-float-value (format)
2173                `(if escaped
2174                     (complex
2175                      (sb!vm:context-float-register
2176                       escaped (sb!c:sc-offset-offset sc-offset) ',format)
2177                      (sb!vm:context-float-register
2178                       escaped (1+ (sb!c:sc-offset-offset sc-offset)) ',format))
2179                     :invalid-value-for-unescaped-register-storage)))
2180     (ecase (sb!c:sc-offset-scn sc-offset)
2181       ((#.sb!vm:any-reg-sc-number #.sb!vm:descriptor-reg-sc-number)
2182        (without-gcing
2183         (with-escaped-value (val)
2184           (make-valid-lisp-obj val))))
2185       (#.sb!vm:character-reg-sc-number
2186        (with-escaped-value (val)
2187          (code-char val)))
2188       (#.sb!vm:sap-reg-sc-number
2189        (with-escaped-value (val)
2190          (int-sap val)))
2191       (#.sb!vm:signed-reg-sc-number
2192        (with-escaped-value (val)
2193          (if (logbitp (1- sb!vm:n-word-bits) val)
2194              (logior val (ash -1 sb!vm:n-word-bits))
2195              val)))
2196       (#.sb!vm:unsigned-reg-sc-number
2197        (with-escaped-value (val)
2198          val))
2199       (#.sb!vm:single-reg-sc-number
2200        (escaped-float-value single-float))
2201       (#.sb!vm:double-reg-sc-number
2202        (escaped-float-value double-float))
2203       #!+long-float
2204       (#.sb!vm:long-reg-sc-number
2205        (escaped-float-value long-float))
2206       (#.sb!vm:complex-single-reg-sc-number
2207        (escaped-complex-float-value single-float))
2208       (#.sb!vm:complex-double-reg-sc-number
2209        (escaped-complex-float-value double-float))
2210       #!+long-float
2211       (#.sb!vm:complex-long-reg-sc-number
2212        (escaped-complex-float-value long-float))
2213       (#.sb!vm:single-stack-sc-number
2214        (sap-ref-single fp (- (* (1+ (sb!c:sc-offset-offset sc-offset))
2215                                 sb!vm:n-word-bytes))))
2216       (#.sb!vm:double-stack-sc-number
2217        (sap-ref-double fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 2)
2218                                 sb!vm:n-word-bytes))))
2219       #!+long-float
2220       (#.sb!vm:long-stack-sc-number
2221        (sap-ref-long fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 3)
2222                               sb!vm:n-word-bytes))))
2223       (#.sb!vm:complex-single-stack-sc-number
2224        (complex
2225         (sap-ref-single fp (- (* (1+ (sb!c:sc-offset-offset sc-offset))
2226                                  sb!vm:n-word-bytes)))
2227         (sap-ref-single fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 2)
2228                                  sb!vm:n-word-bytes)))))
2229       (#.sb!vm:complex-double-stack-sc-number
2230        (complex
2231         (sap-ref-double fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 2)
2232                                  sb!vm:n-word-bytes)))
2233         (sap-ref-double fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 4)
2234                                  sb!vm:n-word-bytes)))))
2235       #!+long-float
2236       (#.sb!vm:complex-long-stack-sc-number
2237        (complex
2238         (sap-ref-long fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 3)
2239                                sb!vm:n-word-bytes)))
2240         (sap-ref-long fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 6)
2241                                sb!vm:n-word-bytes)))))
2242       (#.sb!vm:control-stack-sc-number
2243        (stack-ref fp (sb!c:sc-offset-offset sc-offset)))
2244       (#.sb!vm:character-stack-sc-number
2245        (code-char
2246         (sap-ref-word fp (- (* (1+ (sb!c:sc-offset-offset sc-offset))
2247                                sb!vm:n-word-bytes)))))
2248       (#.sb!vm:unsigned-stack-sc-number
2249        (sap-ref-word fp (- (* (1+ (sb!c:sc-offset-offset sc-offset))
2250                               sb!vm:n-word-bytes))))
2251       (#.sb!vm:signed-stack-sc-number
2252        (signed-sap-ref-word fp (- (* (1+ (sb!c:sc-offset-offset sc-offset))
2253                                      sb!vm:n-word-bytes))))
2254       (#.sb!vm:sap-stack-sc-number
2255        (sap-ref-sap fp (- (* (1+ (sb!c:sc-offset-offset sc-offset))
2256                              sb!vm:n-word-bytes)))))))
2257
2258 ;;; This stores value as the value of DEBUG-VAR in FRAME. In the
2259 ;;; COMPILED-DEBUG-VAR case, access the current value to determine if
2260 ;;; it is an indirect value cell. This occurs when the variable is
2261 ;;; both closed over and set.
2262 (defun %set-debug-var-value (debug-var frame new-value)
2263   (aver (typep frame 'compiled-frame))
2264   (let ((old-value (access-compiled-debug-var-slot debug-var frame)))
2265     (if (indirect-value-cell-p old-value)
2266         (value-cell-set old-value new-value)
2267         (set-compiled-debug-var-slot debug-var frame new-value)))
2268   new-value)
2269
2270 ;;; This stores VALUE for the variable represented by debug-var
2271 ;;; relative to the frame. This assumes the location directly contains
2272 ;;; the variable's value; that is, there is no indirect value cell
2273 ;;; currently there in case the variable is both closed over and set.
2274 (defun set-compiled-debug-var-slot (debug-var frame value)
2275   (let ((escaped (compiled-frame-escaped frame)))
2276     (if escaped
2277         (sub-set-debug-var-slot (frame-pointer frame)
2278                                 (compiled-debug-var-sc-offset debug-var)
2279                                 value escaped)
2280         (sub-set-debug-var-slot
2281          (frame-pointer frame)
2282          (or (compiled-debug-var-save-sc-offset debug-var)
2283              (compiled-debug-var-sc-offset debug-var))
2284          value))))
2285
2286 #!-(or x86 x86-64)
2287 (defun sub-set-debug-var-slot (fp sc-offset value &optional escaped)
2288   (macrolet ((set-escaped-value (val)
2289                `(if escaped
2290                     (setf (sb!vm:context-register
2291                            escaped
2292                            (sb!c:sc-offset-offset sc-offset))
2293                           ,val)
2294                     value))
2295              (set-escaped-float-value (format val)
2296                `(if escaped
2297                     (setf (sb!vm:context-float-register
2298                            escaped
2299                            (sb!c:sc-offset-offset sc-offset)
2300                            ',format)
2301                           ,val)
2302                     value))
2303              (with-nfp ((var) &body body)
2304                `(let ((,var (if escaped
2305                                 (int-sap
2306                                  (sb!vm:context-register escaped
2307                                                          sb!vm::nfp-offset))
2308                                 #!-alpha
2309                                 (sap-ref-sap fp
2310                                              (* nfp-save-offset
2311                                                 sb!vm:n-word-bytes))
2312                                 #!+alpha
2313                                 (sb!vm::make-number-stack-pointer
2314                                  (sap-ref-32 fp
2315                                              (* nfp-save-offset
2316                                                 sb!vm:n-word-bytes))))))
2317                   ,@body)))
2318     (ecase (sb!c:sc-offset-scn sc-offset)
2319       ((#.sb!vm:any-reg-sc-number
2320         #.sb!vm:descriptor-reg-sc-number
2321         #!+rt #.sb!vm:word-pointer-reg-sc-number)
2322        (without-gcing
2323         (set-escaped-value
2324           (get-lisp-obj-address value))))
2325       (#.sb!vm:character-reg-sc-number
2326        (set-escaped-value (char-code value)))
2327       (#.sb!vm:sap-reg-sc-number
2328        (set-escaped-value (sap-int value)))
2329       (#.sb!vm:signed-reg-sc-number
2330        (set-escaped-value (logand value (1- (ash 1 sb!vm:n-word-bits)))))
2331       (#.sb!vm:unsigned-reg-sc-number
2332        (set-escaped-value value))
2333       (#.sb!vm:non-descriptor-reg-sc-number
2334        (error "Local non-descriptor register access?"))
2335       (#.sb!vm:interior-reg-sc-number
2336        (error "Local interior register access?"))
2337       (#.sb!vm:single-reg-sc-number
2338        (set-escaped-float-value single-float value))
2339       (#.sb!vm:double-reg-sc-number
2340        (set-escaped-float-value double-float value))
2341       #!+long-float
2342       (#.sb!vm:long-reg-sc-number
2343        (set-escaped-float-value long-float value))
2344       (#.sb!vm:complex-single-reg-sc-number
2345        (when escaped
2346          (setf (sb!vm:context-float-register escaped
2347                                              (sb!c:sc-offset-offset sc-offset)
2348                                              'single-float)
2349                (realpart value))
2350          (setf (sb!vm:context-float-register
2351                 escaped (1+ (sb!c:sc-offset-offset sc-offset))
2352                 'single-float)
2353                (imagpart value)))
2354        value)
2355       (#.sb!vm:complex-double-reg-sc-number
2356        (when escaped
2357          (setf (sb!vm:context-float-register
2358                 escaped (sb!c:sc-offset-offset sc-offset) 'double-float)
2359                (realpart value))
2360          (setf (sb!vm:context-float-register
2361                 escaped
2362                 (+ (sb!c:sc-offset-offset sc-offset) #!+sparc 2 #!-sparc 1)
2363                 'double-float)
2364                (imagpart value)))
2365        value)
2366       #!+long-float
2367       (#.sb!vm:complex-long-reg-sc-number
2368        (when escaped
2369          (setf (sb!vm:context-float-register
2370                 escaped (sb!c:sc-offset-offset sc-offset) 'long-float)
2371                (realpart value))
2372          (setf (sb!vm:context-float-register
2373                 escaped
2374                 (+ (sb!c:sc-offset-offset sc-offset) #!+sparc 4)
2375                 'long-float)
2376                (imagpart value)))
2377        value)
2378       (#.sb!vm:single-stack-sc-number
2379        (with-nfp (nfp)
2380          (setf (sap-ref-single nfp (* (sb!c:sc-offset-offset sc-offset)
2381                                       sb!vm:n-word-bytes))
2382                (the single-float value))))
2383       (#.sb!vm:double-stack-sc-number
2384        (with-nfp (nfp)
2385          (setf (sap-ref-double nfp (* (sb!c:sc-offset-offset sc-offset)
2386                                       sb!vm:n-word-bytes))
2387                (the double-float value))))
2388       #!+long-float
2389       (#.sb!vm:long-stack-sc-number
2390        (with-nfp (nfp)
2391          (setf (sap-ref-long nfp (* (sb!c:sc-offset-offset sc-offset)
2392                                     sb!vm:n-word-bytes))
2393                (the long-float value))))
2394       (#.sb!vm:complex-single-stack-sc-number
2395        (with-nfp (nfp)
2396          (setf (sap-ref-single
2397                 nfp (* (sb!c:sc-offset-offset sc-offset) sb!vm:n-word-bytes))
2398                (the single-float (realpart value)))
2399          (setf (sap-ref-single
2400                 nfp (* (1+ (sb!c:sc-offset-offset sc-offset))
2401                        sb!vm:n-word-bytes))
2402                (the single-float (realpart value)))))
2403       (#.sb!vm:complex-double-stack-sc-number
2404        (with-nfp (nfp)
2405          (setf (sap-ref-double
2406                 nfp (* (sb!c:sc-offset-offset sc-offset) sb!vm:n-word-bytes))
2407                (the double-float (realpart value)))
2408          (setf (sap-ref-double
2409                 nfp (* (+ (sb!c:sc-offset-offset sc-offset) 2)
2410                        sb!vm:n-word-bytes))
2411                (the double-float (realpart value)))))
2412       #!+long-float
2413       (#.sb!vm:complex-long-stack-sc-number
2414        (with-nfp (nfp)
2415          (setf (sap-ref-long
2416                 nfp (* (sb!c:sc-offset-offset sc-offset) sb!vm:n-word-bytes))
2417                (the long-float (realpart value)))
2418          (setf (sap-ref-long
2419                 nfp (* (+ (sb!c:sc-offset-offset sc-offset) #!+sparc 4)
2420                        sb!vm:n-word-bytes))
2421                (the long-float (realpart value)))))
2422       (#.sb!vm:control-stack-sc-number
2423        (setf (stack-ref fp (sb!c:sc-offset-offset sc-offset)) value))
2424       (#.sb!vm:character-stack-sc-number
2425        (with-nfp (nfp)
2426          (setf (sap-ref-32 nfp (* (sb!c:sc-offset-offset sc-offset)
2427                                          sb!vm:n-word-bytes))
2428                (char-code (the character value)))))
2429       (#.sb!vm:unsigned-stack-sc-number
2430        (with-nfp (nfp)
2431          (setf (sap-ref-32 nfp (* (sb!c:sc-offset-offset sc-offset)
2432                                   sb!vm:n-word-bytes))
2433                (the (unsigned-byte 32) value))))
2434       (#.sb!vm:signed-stack-sc-number
2435        (with-nfp (nfp)
2436          (setf (signed-sap-ref-32 nfp (* (sb!c:sc-offset-offset sc-offset)
2437                                          sb!vm:n-word-bytes))
2438                (the (signed-byte 32) value))))
2439       (#.sb!vm:sap-stack-sc-number
2440        (with-nfp (nfp)
2441          (setf (sap-ref-sap nfp (* (sb!c:sc-offset-offset sc-offset)
2442                                    sb!vm:n-word-bytes))
2443                (the system-area-pointer value)))))))
2444
2445 #!+(or x86 x86-64)
2446 (defun sub-set-debug-var-slot (fp sc-offset value &optional escaped)
2447   (macrolet ((set-escaped-value (val)
2448                `(if escaped
2449                     (setf (sb!vm:context-register
2450                            escaped
2451                            (sb!c:sc-offset-offset sc-offset))
2452                           ,val)
2453                     value)))
2454     (ecase (sb!c:sc-offset-scn sc-offset)
2455       ((#.sb!vm:any-reg-sc-number #.sb!vm:descriptor-reg-sc-number)
2456        (without-gcing
2457         (set-escaped-value
2458           (get-lisp-obj-address value))))
2459       (#.sb!vm:character-reg-sc-number
2460        (set-escaped-value (char-code value)))
2461       (#.sb!vm:sap-reg-sc-number
2462        (set-escaped-value (sap-int value)))
2463       (#.sb!vm:signed-reg-sc-number
2464        (set-escaped-value (logand value (1- (ash 1 sb!vm:n-word-bits)))))
2465       (#.sb!vm:unsigned-reg-sc-number
2466        (set-escaped-value value))
2467       (#.sb!vm:single-reg-sc-number
2468         #+nil ;; don't have escaped floats.
2469        (set-escaped-float-value single-float value))
2470       (#.sb!vm:double-reg-sc-number
2471         #+nil ;;  don't have escaped floats -- still in npx?
2472        (set-escaped-float-value double-float value))
2473       #!+long-float
2474       (#.sb!vm:long-reg-sc-number
2475         #+nil ;;  don't have escaped floats -- still in npx?
2476        (set-escaped-float-value long-float value))
2477       (#.sb!vm:single-stack-sc-number
2478        (setf (sap-ref-single
2479               fp (- (* (1+ (sb!c:sc-offset-offset sc-offset))
2480                        sb!vm:n-word-bytes)))
2481              (the single-float value)))
2482       (#.sb!vm:double-stack-sc-number
2483        (setf (sap-ref-double
2484               fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 2)
2485                        sb!vm:n-word-bytes)))
2486              (the double-float value)))
2487       #!+long-float
2488       (#.sb!vm:long-stack-sc-number
2489        (setf (sap-ref-long
2490               fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 3)
2491                        sb!vm:n-word-bytes)))
2492              (the long-float value)))
2493       (#.sb!vm:complex-single-stack-sc-number
2494        (setf (sap-ref-single
2495               fp (- (* (1+ (sb!c:sc-offset-offset sc-offset))
2496                        sb!vm:n-word-bytes)))
2497              (realpart (the (complex single-float) value)))
2498        (setf (sap-ref-single
2499               fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 2)
2500                        sb!vm:n-word-bytes)))
2501              (imagpart (the (complex single-float) value))))
2502       (#.sb!vm:complex-double-stack-sc-number
2503        (setf (sap-ref-double
2504               fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 2)
2505                        sb!vm:n-word-bytes)))
2506              (realpart (the (complex double-float) value)))
2507        (setf (sap-ref-double
2508               fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 4)
2509                        sb!vm:n-word-bytes)))
2510              (imagpart (the (complex double-float) value))))
2511       #!+long-float
2512       (#.sb!vm:complex-long-stack-sc-number
2513        (setf (sap-ref-long
2514               fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 3)
2515                        sb!vm:n-word-bytes)))
2516              (realpart (the (complex long-float) value)))
2517        (setf (sap-ref-long
2518               fp (- (* (+ (sb!c:sc-offset-offset sc-offset) 6)
2519                        sb!vm:n-word-bytes)))
2520              (imagpart (the (complex long-float) value))))
2521       (#.sb!vm:control-stack-sc-number
2522        (setf (stack-ref fp (sb!c:sc-offset-offset sc-offset)) value))
2523       (#.sb!vm:character-stack-sc-number
2524        (setf (sap-ref-word fp (- (* (1+ (sb!c:sc-offset-offset sc-offset))
2525                                     sb!vm:n-word-bytes)))
2526              (char-code (the character value))))
2527       (#.sb!vm:unsigned-stack-sc-number
2528        (setf (sap-ref-word fp (- (* (1+ (sb!c:sc-offset-offset sc-offset))
2529                                     sb!vm:n-word-bytes)))
2530              (the sb!vm:word value)))
2531       (#.sb!vm:signed-stack-sc-number
2532        (setf (signed-sap-ref-word
2533               fp (- (* (1+ (sb!c:sc-offset-offset sc-offset))
2534                        sb!vm:n-word-bytes)))
2535              (the (signed-byte #.sb!vm:n-word-bits) value)))
2536       (#.sb!vm:sap-stack-sc-number
2537        (setf (sap-ref-sap fp (- (* (1+ (sb!c:sc-offset-offset sc-offset))
2538                                           sb!vm:n-word-bytes)))
2539              (the system-area-pointer value))))))
2540
2541 ;;; The method for setting and accessing COMPILED-DEBUG-VAR values use
2542 ;;; this to determine if the value stored is the actual value or an
2543 ;;; indirection cell.
2544 (defun indirect-value-cell-p (x)
2545   (and (= (lowtag-of x) sb!vm:other-pointer-lowtag)
2546        (= (widetag-of x) sb!vm:value-cell-header-widetag)))
2547
2548 ;;; Return three values reflecting the validity of DEBUG-VAR's value
2549 ;;; at BASIC-CODE-LOCATION:
2550 ;;;   :VALID    The value is known to be available.
2551 ;;;   :INVALID  The value is known to be unavailable.
2552 ;;;   :UNKNOWN  The value's availability is unknown.
2553 ;;;
2554 ;;; If the variable is always alive, then it is valid. If the
2555 ;;; code-location is unknown, then the variable's validity is
2556 ;;; :unknown. Once we've called CODE-LOCATION-UNKNOWN-P, we know the
2557 ;;; live-set information has been cached in the code-location.
2558 (defun debug-var-validity (debug-var basic-code-location)
2559   (etypecase debug-var
2560     (compiled-debug-var
2561      (compiled-debug-var-validity debug-var basic-code-location))
2562     ;; (There used to be more cases back before sbcl-0.7.0, when
2563     ;; we did special tricks to debug the IR1 interpreter.)
2564     ))
2565
2566 ;;; This is the method for DEBUG-VAR-VALIDITY for COMPILED-DEBUG-VARs.
2567 ;;; For safety, make sure basic-code-location is what we think.
2568 (defun compiled-debug-var-validity (debug-var basic-code-location)
2569   (declare (type compiled-code-location basic-code-location))
2570   (cond ((debug-var-alive-p debug-var)
2571          (let ((debug-fun (code-location-debug-fun basic-code-location)))
2572            (if (>= (compiled-code-location-pc basic-code-location)
2573                    (sb!c::compiled-debug-fun-start-pc
2574                     (compiled-debug-fun-compiler-debug-fun debug-fun)))
2575                :valid
2576                :invalid)))
2577         ((code-location-unknown-p basic-code-location) :unknown)
2578         (t
2579          (let ((pos (position debug-var
2580                               (debug-fun-debug-vars
2581                                (code-location-debug-fun
2582                                 basic-code-location)))))
2583            (unless pos
2584              (error 'unknown-debug-var
2585                     :debug-var debug-var
2586                     :debug-fun
2587                     (code-location-debug-fun basic-code-location)))
2588            ;; There must be live-set info since basic-code-location is known.
2589            (if (zerop (sbit (compiled-code-location-live-set
2590                              basic-code-location)
2591                             pos))
2592                :invalid
2593                :valid)))))
2594 \f
2595 ;;;; sources
2596
2597 ;;; This code produces and uses what we call source-paths. A
2598 ;;; source-path is a list whose first element is a form number as
2599 ;;; returned by CODE-LOCATION-FORM-NUMBER and whose last element is a
2600 ;;; top level form number as returned by
2601 ;;; CODE-LOCATION-TOPLEVEL-FORM-NUMBER. The elements from the last to
2602 ;;; the first, exclusively, are the numbered subforms into which to
2603 ;;; descend. For example:
2604 ;;;    (defun foo (x)
2605 ;;;      (let ((a (aref x 3)))
2606 ;;;     (cons a 3)))
2607 ;;; The call to AREF in this example is form number 5. Assuming this
2608 ;;; DEFUN is the 11'th top level form, the source-path for the AREF
2609 ;;; call is as follows:
2610 ;;;    (5 1 0 1 3 11)
2611 ;;; Given the DEFUN, 3 gets you the LET, 1 gets you the bindings, 0
2612 ;;; gets the first binding, and 1 gets the AREF form.
2613
2614 ;;; temporary buffer used to build form-number => source-path translation in
2615 ;;; FORM-NUMBER-TRANSLATIONS
2616 (defvar *form-number-temp* (make-array 10 :fill-pointer 0 :adjustable t))
2617
2618 ;;; table used to detect CAR circularities in FORM-NUMBER-TRANSLATIONS
2619 (defvar *form-number-circularity-table* (make-hash-table :test 'eq))
2620
2621 ;;; This returns a table mapping form numbers to source-paths. A
2622 ;;; source-path indicates a descent into the TOPLEVEL-FORM form,
2623 ;;; going directly to the subform corressponding to the form number.
2624 ;;;
2625 ;;; The vector elements are in the same format as the compiler's
2626 ;;; NODE-SOURCE-PATH; that is, the first element is the form number and
2627 ;;; the last is the TOPLEVEL-FORM number.
2628 (defun form-number-translations (form tlf-number)
2629   (clrhash *form-number-circularity-table*)
2630   (setf (fill-pointer *form-number-temp*) 0)
2631   (sub-translate-form-numbers form (list tlf-number))
2632   (coerce *form-number-temp* 'simple-vector))
2633 (defun sub-translate-form-numbers (form path)
2634   (unless (gethash form *form-number-circularity-table*)
2635     (setf (gethash form *form-number-circularity-table*) t)
2636     (vector-push-extend (cons (fill-pointer *form-number-temp*) path)
2637                         *form-number-temp*)
2638     (let ((pos 0)
2639           (subform form)
2640           (trail form))
2641       (declare (fixnum pos))
2642       (macrolet ((frob ()
2643                    '(progn
2644                       (when (atom subform) (return))
2645                       (let ((fm (car subform)))
2646                         (when (consp fm)
2647                           (sub-translate-form-numbers fm (cons pos path)))
2648                         (incf pos))
2649                       (setq subform (cdr subform))
2650                       (when (eq subform trail) (return)))))
2651         (loop
2652           (frob)
2653           (frob)
2654           (setq trail (cdr trail)))))))
2655
2656 ;;; FORM is a top level form, and path is a source-path into it. This
2657 ;;; returns the form indicated by the source-path. Context is the
2658 ;;; number of enclosing forms to return instead of directly returning
2659 ;;; the source-path form. When context is non-zero, the form returned
2660 ;;; contains a marker, #:****HERE****, immediately before the form
2661 ;;; indicated by path.
2662 (defun source-path-context (form path context)
2663   (declare (type unsigned-byte context))
2664   ;; Get to the form indicated by path or the enclosing form indicated
2665   ;; by context and path.
2666   (let ((path (reverse (butlast (cdr path)))))
2667     (dotimes (i (- (length path) context))
2668       (let ((index (first path)))
2669         (unless (and (listp form) (< index (length form)))
2670           (error "Source path no longer exists."))
2671         (setq form (elt form index))
2672         (setq path (rest path))))
2673     ;; Recursively rebuild the source form resulting from the above
2674     ;; descent, copying the beginning of each subform up to the next
2675     ;; subform we descend into according to path. At the bottom of the
2676     ;; recursion, we return the form indicated by path preceded by our
2677     ;; marker, and this gets spliced into the resulting list structure
2678     ;; on the way back up.
2679     (labels ((frob (form path level)
2680                (if (or (zerop level) (null path))
2681                    (if (zerop context)
2682                        form
2683                        `(#:***here*** ,form))
2684                    (let ((n (first path)))
2685                      (unless (and (listp form) (< n (length form)))
2686                        (error "Source path no longer exists."))
2687                      (let ((res (frob (elt form n) (rest path) (1- level))))
2688                        (nconc (subseq form 0 n)
2689                               (cons res (nthcdr (1+ n) form))))))))
2690       (frob form path context))))
2691 \f
2692 ;;;; PREPROCESS-FOR-EVAL
2693
2694 ;;; Return a function of one argument that evaluates form in the
2695 ;;; lexical context of the BASIC-CODE-LOCATION LOC, or signal a
2696 ;;; NO-DEBUG-VARS condition when the LOC's DEBUG-FUN has no
2697 ;;; DEBUG-VAR information available.
2698 ;;;
2699 ;;; The returned function takes the frame to get values from as its
2700 ;;; argument, and it returns the values of FORM. The returned function
2701 ;;; can signal the following conditions: INVALID-VALUE,
2702 ;;; AMBIGUOUS-VAR-NAME, and FRAME-FUN-MISMATCH.
2703 (defun preprocess-for-eval (form loc)
2704   (declare (type code-location loc))
2705   (let ((n-frame (gensym))
2706         (fun (code-location-debug-fun loc)))
2707     (unless (debug-var-info-available fun)
2708       (debug-signal 'no-debug-vars :debug-fun fun))
2709     (sb!int:collect ((binds)
2710                      (specs))
2711       (do-debug-fun-vars (var fun)
2712         (let ((validity (debug-var-validity var loc)))
2713           (unless (eq validity :invalid)
2714             (let* ((sym (debug-var-symbol var))
2715                    (found (assoc sym (binds))))
2716               (if found
2717                   (setf (second found) :ambiguous)
2718                   (binds (list sym validity var)))))))
2719       (dolist (bind (binds))
2720         (let ((name (first bind))
2721               (var (third bind)))
2722           (ecase (second bind)
2723             (:valid
2724              (specs `(,name (debug-var-value ',var ,n-frame))))
2725             (:unknown
2726              (specs `(,name (debug-signal 'invalid-value
2727                                           :debug-var ',var
2728                                           :frame ,n-frame))))
2729             (:ambiguous
2730              (specs `(,name (debug-signal 'ambiguous-var-name
2731                                           :name ',name
2732                                           :frame ,n-frame)))))))
2733       (let ((res (coerce `(lambda (,n-frame)
2734                             (declare (ignorable ,n-frame))
2735                             (symbol-macrolet ,(specs) ,form))
2736                          'function)))
2737         (lambda (frame)
2738           ;; This prevents these functions from being used in any
2739           ;; location other than a function return location, so maybe
2740           ;; this should only check whether FRAME's DEBUG-FUN is the
2741           ;; same as LOC's.
2742           (unless (code-location= (frame-code-location frame) loc)
2743             (debug-signal 'frame-fun-mismatch
2744                           :code-location loc :form form :frame frame))
2745           (funcall res frame))))))
2746 \f
2747 ;;;; breakpoints
2748
2749 ;;;; user-visible interface
2750
2751 ;;; Create and return a breakpoint. When program execution encounters
2752 ;;; the breakpoint, the system calls HOOK-FUN. HOOK-FUN takes the
2753 ;;; current frame for the function in which the program is running and
2754 ;;; the breakpoint object.
2755 ;;;
2756 ;;; WHAT and KIND determine where in a function the system invokes
2757 ;;; HOOK-FUN. WHAT is either a code-location or a DEBUG-FUN. KIND is
2758 ;;; one of :CODE-LOCATION, :FUN-START, or :FUN-END. Since the starts
2759 ;;; and ends of functions may not have code-locations representing
2760 ;;; them, designate these places by supplying WHAT as a DEBUG-FUN and
2761 ;;; KIND indicating the :FUN-START or :FUN-END. When WHAT is a
2762 ;;; DEBUG-FUN and kind is :FUN-END, then HOOK-FUN must take two
2763 ;;; additional arguments, a list of values returned by the function
2764 ;;; and a FUN-END-COOKIE.
2765 ;;;
2766 ;;; INFO is information supplied by and used by the user.
2767 ;;;
2768 ;;; FUN-END-COOKIE is a function. To implement :FUN-END
2769 ;;; breakpoints, the system uses starter breakpoints to establish the
2770 ;;; :FUN-END breakpoint for each invocation of the function. Upon
2771 ;;; each entry, the system creates a unique cookie to identify the
2772 ;;; invocation, and when the user supplies a function for this
2773 ;;; argument, the system invokes it on the frame and the cookie. The
2774 ;;; system later invokes the :FUN-END breakpoint hook on the same
2775 ;;; cookie. The user may save the cookie for comparison in the hook
2776 ;;; function.
2777 ;;;
2778 ;;; Signal an error if WHAT is an unknown code-location.
2779 (defun make-breakpoint (hook-fun what
2780                         &key (kind :code-location) info fun-end-cookie)
2781   (etypecase what
2782     (code-location
2783      (when (code-location-unknown-p what)
2784        (error "cannot make a breakpoint at an unknown code location: ~S"
2785               what))
2786      (aver (eq kind :code-location))
2787      (let ((bpt (%make-breakpoint hook-fun what kind info)))
2788        (etypecase what
2789          (compiled-code-location
2790           ;; This slot is filled in due to calling CODE-LOCATION-UNKNOWN-P.
2791           (when (eq (compiled-code-location-kind what) :unknown-return)
2792             (let ((other-bpt (%make-breakpoint hook-fun what
2793                                                :unknown-return-partner
2794                                                info)))
2795               (setf (breakpoint-unknown-return-partner bpt) other-bpt)
2796               (setf (breakpoint-unknown-return-partner other-bpt) bpt))))
2797          ;; (There used to be more cases back before sbcl-0.7.0,,
2798          ;; when we did special tricks to debug the IR1
2799          ;; interpreter.)
2800          )
2801        bpt))
2802     (compiled-debug-fun
2803      (ecase kind
2804        (:fun-start
2805         (%make-breakpoint hook-fun what kind info))
2806        (:fun-end
2807         (unless (eq (sb!c::compiled-debug-fun-returns
2808                      (compiled-debug-fun-compiler-debug-fun what))
2809                     :standard)
2810           (error ":FUN-END breakpoints are currently unsupported ~
2811                   for the known return convention."))
2812
2813         (let* ((bpt (%make-breakpoint hook-fun what kind info))
2814                (starter (compiled-debug-fun-end-starter what)))
2815           (unless starter
2816             (setf starter (%make-breakpoint #'list what :fun-start nil))
2817             (setf (breakpoint-hook-fun starter)
2818                   (fun-end-starter-hook starter what))
2819             (setf (compiled-debug-fun-end-starter what) starter))
2820           (setf (breakpoint-start-helper bpt) starter)
2821           (push bpt (breakpoint-%info starter))
2822           (setf (breakpoint-cookie-fun bpt) fun-end-cookie)
2823           bpt))))))
2824
2825 ;;; These are unique objects created upon entry into a function by a
2826 ;;; :FUN-END breakpoint's starter hook. These are only created
2827 ;;; when users supply :FUN-END-COOKIE to MAKE-BREAKPOINT. Also,
2828 ;;; the :FUN-END breakpoint's hook is called on the same cookie
2829 ;;; when it is created.
2830 (defstruct (fun-end-cookie
2831             (:print-object (lambda (obj str)
2832                              (print-unreadable-object (obj str :type t))))
2833             (:constructor make-fun-end-cookie (bogus-lra debug-fun))
2834             (:copier nil))
2835   ;; a pointer to the bogus-lra created for :FUN-END breakpoints
2836   bogus-lra
2837   ;; the DEBUG-FUN associated with this cookie
2838   debug-fun)
2839
2840 ;;; This maps bogus-lra-components to cookies, so that
2841 ;;; HANDLE-FUN-END-BREAKPOINT can find the appropriate cookie for the
2842 ;;; breakpoint hook.
2843 (defvar *fun-end-cookies* (make-hash-table :test 'eq))
2844
2845 ;;; This returns a hook function for the start helper breakpoint
2846 ;;; associated with a :FUN-END breakpoint. The returned function
2847 ;;; makes a fake LRA that all returns go through, and this piece of
2848 ;;; fake code actually breaks. Upon return from the break, the code
2849 ;;; provides the returnee with any values. Since the returned function
2850 ;;; effectively activates FUN-END-BPT on each entry to DEBUG-FUN's
2851 ;;; function, we must establish breakpoint-data about FUN-END-BPT.
2852 (defun fun-end-starter-hook (starter-bpt debug-fun)
2853   (declare (type breakpoint starter-bpt)
2854            (type compiled-debug-fun debug-fun))
2855   (lambda (frame breakpoint)
2856     (declare (ignore breakpoint)
2857              (type frame frame))
2858     (let ((lra-sc-offset
2859            (sb!c::compiled-debug-fun-return-pc
2860             (compiled-debug-fun-compiler-debug-fun debug-fun))))
2861       (multiple-value-bind (lra component offset)
2862           (make-bogus-lra
2863            (get-context-value frame
2864                               lra-save-offset
2865                               lra-sc-offset))
2866         (setf (get-context-value frame
2867                                  lra-save-offset
2868                                  lra-sc-offset)
2869               lra)
2870         (let ((end-bpts (breakpoint-%info starter-bpt)))
2871           (let ((data (breakpoint-data component offset)))
2872             (setf (breakpoint-data-breakpoints data) end-bpts)
2873             (dolist (bpt end-bpts)
2874               (setf (breakpoint-internal-data bpt) data)))
2875           (let ((cookie (make-fun-end-cookie lra debug-fun)))
2876             (setf (gethash component *fun-end-cookies*) cookie)
2877             (dolist (bpt end-bpts)
2878               (let ((fun (breakpoint-cookie-fun bpt)))
2879                 (when fun (funcall fun frame cookie))))))))))
2880
2881 ;;; This takes a FUN-END-COOKIE and a frame, and it returns
2882 ;;; whether the cookie is still valid. A cookie becomes invalid when
2883 ;;; the frame that established the cookie has exited. Sometimes cookie
2884 ;;; holders are unaware of cookie invalidation because their
2885 ;;; :FUN-END breakpoint hooks didn't run due to THROW'ing.
2886 ;;;
2887 ;;; This takes a frame as an efficiency hack since the user probably
2888 ;;; has a frame object in hand when using this routine, and it saves
2889 ;;; repeated parsing of the stack and consing when asking whether a
2890 ;;; series of cookies is valid.
2891 (defun fun-end-cookie-valid-p (frame cookie)
2892   (let ((lra (fun-end-cookie-bogus-lra cookie))
2893         (lra-sc-offset (sb!c::compiled-debug-fun-return-pc
2894                         (compiled-debug-fun-compiler-debug-fun
2895                          (fun-end-cookie-debug-fun cookie)))))
2896     (do ((frame frame (frame-down frame)))
2897         ((not frame) nil)
2898       (when (and (compiled-frame-p frame)
2899                  (#!-(or x86 x86-64) eq #!+(or x86 x86-64) sap=
2900                   lra
2901                   (get-context-value frame lra-save-offset lra-sc-offset)))
2902         (return t)))))
2903 \f
2904 ;;;; ACTIVATE-BREAKPOINT
2905
2906 ;;; Cause the system to invoke the breakpoint's hook function until
2907 ;;; the next call to DEACTIVATE-BREAKPOINT or DELETE-BREAKPOINT. The
2908 ;;; system invokes breakpoint hook functions in the opposite order
2909 ;;; that you activate them.
2910 (defun activate-breakpoint (breakpoint)
2911   (when (eq (breakpoint-status breakpoint) :deleted)
2912     (error "cannot activate a deleted breakpoint: ~S" breakpoint))
2913   (unless (eq (breakpoint-status breakpoint) :active)
2914     (ecase (breakpoint-kind breakpoint)
2915       (:code-location
2916        (let ((loc (breakpoint-what breakpoint)))
2917          (etypecase loc
2918            (compiled-code-location
2919             (activate-compiled-code-location-breakpoint breakpoint)
2920             (let ((other (breakpoint-unknown-return-partner breakpoint)))
2921               (when other
2922                 (activate-compiled-code-location-breakpoint other))))
2923            ;; (There used to be more cases back before sbcl-0.7.0, when
2924            ;; we did special tricks to debug the IR1 interpreter.)
2925            )))
2926       (:fun-start
2927        (etypecase (breakpoint-what breakpoint)
2928          (compiled-debug-fun
2929           (activate-compiled-fun-start-breakpoint breakpoint))
2930          ;; (There used to be more cases back before sbcl-0.7.0, when
2931          ;; we did special tricks to debug the IR1 interpreter.)
2932          ))
2933       (:fun-end
2934        (etypecase (breakpoint-what breakpoint)
2935          (compiled-debug-fun
2936           (let ((starter (breakpoint-start-helper breakpoint)))
2937             (unless (eq (breakpoint-status starter) :active)
2938               ;; may already be active by some other :FUN-END breakpoint
2939               (activate-compiled-fun-start-breakpoint starter)))
2940           (setf (breakpoint-status breakpoint) :active))
2941          ;; (There used to be more cases back before sbcl-0.7.0, when
2942          ;; we did special tricks to debug the IR1 interpreter.)
2943          ))))
2944   breakpoint)
2945
2946 (defun activate-compiled-code-location-breakpoint (breakpoint)
2947   (declare (type breakpoint breakpoint))
2948   (let ((loc (breakpoint-what breakpoint)))
2949     (declare (type compiled-code-location loc))
2950     (sub-activate-breakpoint
2951      breakpoint
2952      (breakpoint-data (compiled-debug-fun-component
2953                        (code-location-debug-fun loc))
2954                       (+ (compiled-code-location-pc loc)
2955                          (if (or (eq (breakpoint-kind breakpoint)
2956                                      :unknown-return-partner)
2957                                  (eq (compiled-code-location-kind loc)
2958                                      :single-value-return))
2959                              sb!vm:single-value-return-byte-offset
2960                              0))))))
2961
2962 (defun activate-compiled-fun-start-breakpoint (breakpoint)
2963   (declare (type breakpoint breakpoint))
2964   (let ((debug-fun (breakpoint-what breakpoint)))
2965     (sub-activate-breakpoint
2966      breakpoint
2967      (breakpoint-data (compiled-debug-fun-component debug-fun)
2968                       (sb!c::compiled-debug-fun-start-pc
2969                        (compiled-debug-fun-compiler-debug-fun
2970                         debug-fun))))))
2971
2972 (defun sub-activate-breakpoint (breakpoint data)
2973   (declare (type breakpoint breakpoint)
2974            (type breakpoint-data data))
2975   (setf (breakpoint-status breakpoint) :active)
2976   (without-interrupts
2977    (unless (breakpoint-data-breakpoints data)
2978      (setf (breakpoint-data-instruction data)
2979            (without-gcing
2980             (breakpoint-install (get-lisp-obj-address
2981                                  (breakpoint-data-component data))
2982                                 (breakpoint-data-offset data)))))
2983    (setf (breakpoint-data-breakpoints data)
2984          (append (breakpoint-data-breakpoints data) (list breakpoint)))
2985    (setf (breakpoint-internal-data breakpoint) data)))
2986 \f
2987 ;;;; DEACTIVATE-BREAKPOINT
2988
2989 ;;; Stop the system from invoking the breakpoint's hook function.
2990 (defun deactivate-breakpoint (breakpoint)
2991   (when (eq (breakpoint-status breakpoint) :active)
2992     (without-interrupts
2993      (let ((loc (breakpoint-what breakpoint)))
2994        (etypecase loc
2995          ((or compiled-code-location compiled-debug-fun)
2996           (deactivate-compiled-breakpoint breakpoint)
2997           (let ((other (breakpoint-unknown-return-partner breakpoint)))
2998             (when other
2999               (deactivate-compiled-breakpoint other))))
3000          ;; (There used to be more cases back before sbcl-0.7.0, when
3001          ;; we did special tricks to debug the IR1 interpreter.)
3002          ))))
3003   breakpoint)
3004
3005 (defun deactivate-compiled-breakpoint (breakpoint)
3006   (if (eq (breakpoint-kind breakpoint) :fun-end)
3007       (let ((starter (breakpoint-start-helper breakpoint)))
3008         (unless (find-if (lambda (bpt)
3009                            (and (not (eq bpt breakpoint))
3010                                 (eq (breakpoint-status bpt) :active)))
3011                          (breakpoint-%info starter))
3012           (deactivate-compiled-breakpoint starter)))
3013       (let* ((data (breakpoint-internal-data breakpoint))
3014              (bpts (delete breakpoint (breakpoint-data-breakpoints data))))
3015         (setf (breakpoint-internal-data breakpoint) nil)
3016         (setf (breakpoint-data-breakpoints data) bpts)
3017         (unless bpts
3018           (without-gcing
3019            (breakpoint-remove (get-lisp-obj-address
3020                                (breakpoint-data-component data))
3021                               (breakpoint-data-offset data)
3022                               (breakpoint-data-instruction data)))
3023           (delete-breakpoint-data data))))
3024   (setf (breakpoint-status breakpoint) :inactive)
3025   breakpoint)
3026 \f
3027 ;;;; BREAKPOINT-INFO
3028
3029 ;;; Return the user-maintained info associated with breakpoint. This
3030 ;;; is SETF'able.
3031 (defun breakpoint-info (breakpoint)
3032   (breakpoint-%info breakpoint))
3033 (defun %set-breakpoint-info (breakpoint value)
3034   (setf (breakpoint-%info breakpoint) value)
3035   (let ((other (breakpoint-unknown-return-partner breakpoint)))
3036     (when other
3037       (setf (breakpoint-%info other) value))))
3038 \f
3039 ;;;; BREAKPOINT-ACTIVE-P and DELETE-BREAKPOINT
3040
3041 (defun breakpoint-active-p (breakpoint)
3042   (ecase (breakpoint-status breakpoint)
3043     (:active t)
3044     ((:inactive :deleted) nil)))
3045
3046 ;;; Free system storage and remove computational overhead associated
3047 ;;; with breakpoint. After calling this, breakpoint is completely
3048 ;;; impotent and can never become active again.
3049 (defun delete-breakpoint (breakpoint)
3050   (let ((status (breakpoint-status breakpoint)))
3051     (unless (eq status :deleted)
3052       (when (eq status :active)
3053         (deactivate-breakpoint breakpoint))
3054       (setf (breakpoint-status breakpoint) :deleted)
3055       (let ((other (breakpoint-unknown-return-partner breakpoint)))
3056         (when other
3057           (setf (breakpoint-status other) :deleted)))
3058       (when (eq (breakpoint-kind breakpoint) :fun-end)
3059         (let* ((starter (breakpoint-start-helper breakpoint))
3060                (breakpoints (delete breakpoint
3061                                     (the list (breakpoint-info starter)))))
3062           (setf (breakpoint-info starter) breakpoints)
3063           (unless breakpoints
3064             (delete-breakpoint starter)
3065             (setf (compiled-debug-fun-end-starter
3066                    (breakpoint-what breakpoint))
3067                   nil))))))
3068   breakpoint)
3069 \f
3070 ;;;; C call out stubs
3071
3072 ;;; This actually installs the break instruction in the component. It
3073 ;;; returns the overwritten bits. You must call this in a context in
3074 ;;; which GC is disabled, so that Lisp doesn't move objects around
3075 ;;; that C is pointing to.
3076 (sb!alien:define-alien-routine "breakpoint_install" sb!alien:unsigned-long
3077   (code-obj sb!alien:unsigned-long)
3078   (pc-offset sb!alien:int))
3079
3080 ;;; This removes the break instruction and replaces the original
3081 ;;; instruction. You must call this in a context in which GC is disabled
3082 ;;; so Lisp doesn't move objects around that C is pointing to.
3083 (sb!alien:define-alien-routine "breakpoint_remove" sb!alien:void
3084   (code-obj sb!alien:unsigned-long)
3085   (pc-offset sb!alien:int)
3086   (old-inst sb!alien:unsigned-long))
3087
3088 (sb!alien:define-alien-routine "breakpoint_do_displaced_inst" sb!alien:void
3089   (scp (* os-context-t))
3090   (orig-inst sb!alien:unsigned-long))
3091
3092 ;;;; breakpoint handlers (layer between C and exported interface)
3093
3094 ;;; This maps components to a mapping of offsets to BREAKPOINT-DATAs.
3095 (defvar *component-breakpoint-offsets* (make-hash-table :test 'eq))
3096
3097 ;;; This returns the BREAKPOINT-DATA object associated with component cross
3098 ;;; offset. If none exists, this makes one, installs it, and returns it.
3099 (defun breakpoint-data (component offset &optional (create t))
3100   (flet ((install-breakpoint-data ()
3101            (when create
3102              (let ((data (make-breakpoint-data component offset)))
3103                (push (cons offset data)
3104                      (gethash component *component-breakpoint-offsets*))
3105                data))))
3106     (let ((offsets (gethash component *component-breakpoint-offsets*)))
3107       (if offsets
3108           (let ((data (assoc offset offsets)))
3109             (if data
3110                 (cdr data)
3111                 (install-breakpoint-data)))
3112           (install-breakpoint-data)))))
3113
3114 ;;; We use this when there are no longer any active breakpoints
3115 ;;; corresponding to DATA.
3116 (defun delete-breakpoint-data (data)
3117   (let* ((component (breakpoint-data-component data))
3118          (offsets (delete (breakpoint-data-offset data)
3119                           (gethash component *component-breakpoint-offsets*)
3120                           :key #'car)))
3121     (if offsets
3122         (setf (gethash component *component-breakpoint-offsets*) offsets)
3123         (remhash component *component-breakpoint-offsets*)))
3124   (values))
3125
3126 ;;; The C handler for interrupts calls this when it has a
3127 ;;; debugging-tool break instruction. This does *not* handle all
3128 ;;; breaks; for example, it does not handle breaks for internal
3129 ;;; errors.
3130 (defun handle-breakpoint (offset component signal-context)
3131   (let ((data (breakpoint-data component offset nil)))
3132     (unless data
3133       (error "unknown breakpoint in ~S at offset ~S"
3134               (debug-fun-name (debug-fun-from-pc component offset))
3135               offset))
3136     (let ((breakpoints (breakpoint-data-breakpoints data)))
3137       (if (or (null breakpoints)
3138               (eq (breakpoint-kind (car breakpoints)) :fun-end))
3139           (handle-fun-end-breakpoint-aux breakpoints data signal-context)
3140           (handle-breakpoint-aux breakpoints data
3141                                  offset component signal-context)))))
3142
3143 ;;; This holds breakpoint-datas while invoking the breakpoint hooks
3144 ;;; associated with that particular component and location. While they
3145 ;;; are executing, if we hit the location again, we ignore the
3146 ;;; breakpoint to avoid infinite recursion. fun-end breakpoints
3147 ;;; must work differently since the breakpoint-data is unique for each
3148 ;;; invocation.
3149 (defvar *executing-breakpoint-hooks* nil)
3150
3151 ;;; This handles code-location and DEBUG-FUN :FUN-START
3152 ;;; breakpoints.
3153 (defun handle-breakpoint-aux (breakpoints data offset component signal-context)
3154   (unless breakpoints
3155     (bug "breakpoint that nobody wants"))
3156   (unless (member data *executing-breakpoint-hooks*)
3157     (let ((*executing-breakpoint-hooks* (cons data
3158                                               *executing-breakpoint-hooks*)))
3159       (invoke-breakpoint-hooks breakpoints component offset)))
3160   ;; At this point breakpoints may not hold the same list as
3161   ;; BREAKPOINT-DATA-BREAKPOINTS since invoking hooks may have allowed
3162   ;; a breakpoint deactivation. In fact, if all breakpoints were
3163   ;; deactivated then data is invalid since it was deleted and so the
3164   ;; correct one must be looked up if it is to be used. If there are
3165   ;; no more breakpoints active at this location, then the normal
3166   ;; instruction has been put back, and we do not need to
3167   ;; DO-DISPLACED-INST.
3168   (let ((data (breakpoint-data component offset nil)))
3169     (when (and data (breakpoint-data-breakpoints data))
3170       ;; The breakpoint is still active, so we need to execute the
3171       ;; displaced instruction and leave the breakpoint instruction
3172       ;; behind. The best way to do this is different on each machine,
3173       ;; so we just leave it up to the C code.
3174       (breakpoint-do-displaced-inst signal-context
3175                                     (breakpoint-data-instruction data))
3176       ;; Some platforms have no usable sigreturn() call.  If your
3177       ;; implementation of arch_do_displaced_inst() _does_ sigreturn(),
3178       ;; it's polite to warn here
3179       #!+(and sparc solaris)
3180       (error "BREAKPOINT-DO-DISPLACED-INST returned?"))))
3181
3182 (defun invoke-breakpoint-hooks (breakpoints component offset)
3183   (let* ((debug-fun (debug-fun-from-pc component offset))
3184          (frame (do ((f (top-frame) (frame-down f)))
3185                     ((eq debug-fun (frame-debug-fun f)) f))))
3186     (dolist (bpt breakpoints)
3187       (funcall (breakpoint-hook-fun bpt)
3188                frame
3189                ;; If this is an :UNKNOWN-RETURN-PARTNER, then pass the
3190                ;; hook function the original breakpoint, so that users
3191                ;; aren't forced to confront the fact that some
3192                ;; breakpoints really are two.
3193                (if (eq (breakpoint-kind bpt) :unknown-return-partner)
3194                    (breakpoint-unknown-return-partner bpt)
3195                    bpt)))))
3196
3197 (defun handle-fun-end-breakpoint (offset component context)
3198   (let ((data (breakpoint-data component offset nil)))
3199     (unless data
3200       (error "unknown breakpoint in ~S at offset ~S"
3201               (debug-fun-name (debug-fun-from-pc component offset))
3202               offset))
3203     (let ((breakpoints (breakpoint-data-breakpoints data)))
3204       (when breakpoints
3205         (aver (eq (breakpoint-kind (car breakpoints)) :fun-end))
3206         (handle-fun-end-breakpoint-aux breakpoints data context)))))
3207
3208 ;;; Either HANDLE-BREAKPOINT calls this for :FUN-END breakpoints
3209 ;;; [old C code] or HANDLE-FUN-END-BREAKPOINT calls this directly
3210 ;;; [new C code].
3211 (defun handle-fun-end-breakpoint-aux (breakpoints data signal-context)
3212   (delete-breakpoint-data data)
3213   (let* ((scp
3214           (locally
3215             (declare (optimize (inhibit-warnings 3)))
3216             (sb!alien:sap-alien signal-context (* os-context-t))))
3217          (frame (do ((cfp (sb!vm:context-register scp sb!vm::cfp-offset))
3218                      (f (top-frame) (frame-down f)))
3219                     ((= cfp (sap-int (frame-pointer f))) f)
3220                   (declare (type (unsigned-byte #.sb!vm:n-word-bits) cfp))))
3221          (component (breakpoint-data-component data))
3222          (cookie (gethash component *fun-end-cookies*)))
3223     (remhash component *fun-end-cookies*)
3224     (dolist (bpt breakpoints)
3225       (funcall (breakpoint-hook-fun bpt)
3226                frame bpt
3227                (get-fun-end-breakpoint-values scp)
3228                cookie))))
3229
3230 (defun get-fun-end-breakpoint-values (scp)
3231   (let ((ocfp (int-sap (sb!vm:context-register
3232                         scp
3233                         #!-(or x86 x86-64) sb!vm::ocfp-offset
3234                         #!+(or x86 x86-64) sb!vm::ebx-offset)))
3235         (nargs (make-lisp-obj
3236                 (sb!vm:context-register scp sb!vm::nargs-offset)))
3237         (reg-arg-offsets '#.sb!vm::*register-arg-offsets*)
3238         (results nil))
3239     (without-gcing
3240      (dotimes (arg-num nargs)
3241        (push (if reg-arg-offsets
3242                  (make-lisp-obj
3243                   (sb!vm:context-register scp (pop reg-arg-offsets)))
3244                (stack-ref ocfp arg-num))
3245              results)))
3246     (nreverse results)))
3247 \f
3248 ;;;; MAKE-BOGUS-LRA (used for :FUN-END breakpoints)
3249
3250 (defconstant bogus-lra-constants
3251   #!-(or x86 x86-64) 2 #!+(or x86 x86-64) 3)
3252 (defconstant known-return-p-slot
3253   (+ sb!vm:code-constants-offset #!-(or x86 x86-64) 1 #!+(or x86 x86-64) 2))
3254
3255 ;;; Make a bogus LRA object that signals a breakpoint trap when
3256 ;;; returned to. If the breakpoint trap handler returns, REAL-LRA is
3257 ;;; returned to. Three values are returned: the bogus LRA object, the
3258 ;;; code component it is part of, and the PC offset for the trap
3259 ;;; instruction.
3260 (defun make-bogus-lra (real-lra &optional known-return-p)
3261   (without-gcing
3262    ;; These are really code labels, not variables: but this way we get
3263    ;; their addresses.
3264    (let* ((src-start (foreign-symbol-address "fun_end_breakpoint_guts"))
3265           (src-end (foreign-symbol-address "fun_end_breakpoint_end"))
3266           (trap-loc (foreign-symbol-address "fun_end_breakpoint_trap"))
3267           (length (sap- src-end src-start))
3268           (code-object
3269            (%primitive sb!c:allocate-code-object (1+ bogus-lra-constants)
3270                        length))
3271           (dst-start (code-instructions code-object)))
3272      (declare (type system-area-pointer
3273                     src-start src-end dst-start trap-loc)
3274               (type index length))
3275      (setf (%code-debug-info code-object) :bogus-lra)
3276      (setf (code-header-ref code-object sb!vm:code-trace-table-offset-slot)
3277            length)
3278      #!-(or x86 x86-64)
3279      (setf (code-header-ref code-object real-lra-slot) real-lra)
3280      #!+(or x86 x86-64)
3281      (multiple-value-bind (offset code) (compute-lra-data-from-pc real-lra)
3282        (setf (code-header-ref code-object real-lra-slot) code)
3283        (setf (code-header-ref code-object (1+ real-lra-slot)) offset))
3284      (setf (code-header-ref code-object known-return-p-slot)
3285            known-return-p)
3286      (system-area-copy src-start 0 dst-start 0 (* length sb!vm:n-byte-bits))
3287      (sb!vm:sanctify-for-execution code-object)
3288      #!+(or x86 x86-64)
3289      (values dst-start code-object (sap- trap-loc src-start))
3290      #!-(or x86 x86-64)
3291      (let ((new-lra (make-lisp-obj (+ (sap-int dst-start)
3292                                       sb!vm:other-pointer-lowtag))))
3293        (set-header-data
3294         new-lra
3295         (logandc2 (+ sb!vm:code-constants-offset bogus-lra-constants 1)
3296                   1))
3297        (sb!vm:sanctify-for-execution code-object)
3298        (values new-lra code-object (sap- trap-loc src-start))))))
3299 \f
3300 ;;;; miscellaneous
3301
3302 ;;; This appears here because it cannot go with the DEBUG-FUN
3303 ;;; interface since DO-DEBUG-BLOCK-LOCATIONS isn't defined until after
3304 ;;; the DEBUG-FUN routines.
3305
3306 ;;; Return a code-location before the body of a function and after all
3307 ;;; the arguments are in place; or if that location can't be
3308 ;;; determined due to a lack of debug information, return NIL.
3309 (defun debug-fun-start-location (debug-fun)
3310   (etypecase debug-fun
3311     (compiled-debug-fun
3312      (code-location-from-pc debug-fun
3313                             (sb!c::compiled-debug-fun-start-pc
3314                              (compiled-debug-fun-compiler-debug-fun
3315                               debug-fun))
3316                             nil))
3317     ;; (There used to be more cases back before sbcl-0.7.0, when
3318     ;; we did special tricks to debug the IR1 interpreter.)
3319     ))