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