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