|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-module (system repl debug) |
|
#:use-module (system base syntax) |
|
#:use-module (system vm frame) |
|
#:use-module (system vm debug) |
|
#:use-module (ice-9 format) |
|
#:use-module (ice-9 match) |
|
#:use-module (system vm program) |
|
#:export (<debug> |
|
make-debug debug? |
|
debug-frames debug-index debug-error-message |
|
terminal-width |
|
default-frame-width |
|
print-registers print-locals print-frame print-frames |
|
stack->vector narrow-stack->vector |
|
frame->stack-vector)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(define-record <debug> frames index error-message) |
|
|
|
|
|
|
|
|
|
|
|
|
|
(define terminal-width |
|
(let ((set-width (make-fluid))) |
|
(case-lambda |
|
(() |
|
(or (fluid-ref set-width) |
|
(let ((w (false-if-exception (string->number (getenv "COLUMNS"))))) |
|
(and (integer? w) (exact? w) (> w 0) w)) |
|
72)) |
|
((w) |
|
(if (or (not w) (and (integer? w) (exact? w) (> w 0))) |
|
(fluid-set! set-width w) |
|
(error "Expected a column number (a positive integer)" w)))))) |
|
|
|
(define default-frame-width |
|
|
|
|
|
|
|
(make-parameter 500 |
|
(lambda (val) |
|
(and (exact-integer? val) (positive? val) |
|
val)))) |
|
|
|
|
|
|
|
(define (reverse-hashq h) |
|
(let ((ret (make-hash-table))) |
|
(hash-for-each |
|
(lambda (k v) |
|
(hashq-set! ret v (cons k (hashq-ref ret v '())))) |
|
h) |
|
ret)) |
|
|
|
(define* (print-registers frame #:optional (port (current-output-port)) |
|
#:key (per-line-prefix " ")) |
|
(define (print fmt val) |
|
(display per-line-prefix port) |
|
(run-hook before-print-hook val) |
|
(format port fmt val)) |
|
|
|
(format port "~aRegisters:~%" per-line-prefix) |
|
(let ((ip (frame-instruction-pointer frame))) |
|
(print "ip = #x~x" ip) |
|
(let ((info (find-program-debug-info ip))) |
|
(when info |
|
(let ((addr (program-debug-info-addr info))) |
|
(format port " (#x~x + ~d * 4)" addr (/ (- ip addr) 4))))) |
|
(newline port)) |
|
(print "sp = ~a\n" (frame-stack-pointer frame)) |
|
(print "fp = ~a\n" (frame-address frame))) |
|
|
|
(define* (print-locals frame #:optional (port (current-output-port)) |
|
#:key (width (terminal-width)) (per-line-prefix " ")) |
|
(let ((bindings (frame-bindings frame))) |
|
(cond |
|
((null? bindings) |
|
(format port "~aNo local variables.~%" per-line-prefix)) |
|
(else |
|
(format port "~aLocal variables:~%" per-line-prefix) |
|
(for-each |
|
(lambda (binding) |
|
(let ((v (binding-ref binding))) |
|
(display per-line-prefix port) |
|
(run-hook before-print-hook v) |
|
(format port "~a = ~v:@y\n" (binding-name binding) width v))) |
|
(frame-bindings frame)))))) |
|
|
|
(define* (print-frame frame #:optional (port (current-output-port)) |
|
#:key index (width (terminal-width)) (full? #f) |
|
(last-source #f) next-source?) |
|
(define (source:pretty-file source) |
|
(if source |
|
(or (source:file source) "current input") |
|
"unknown file")) |
|
(let* ((source (frame-source frame)) |
|
(file (source:pretty-file source)) |
|
(line (and=> source source:line-for-user)) |
|
(col (and=> source source:column))) |
|
(if (and file (not (equal? file (source:pretty-file last-source)))) |
|
(format port "~&In ~a:~&" file)) |
|
(format port "~9@a~:[~*~3_~;~3d~] ~v:@y~%" |
|
(if line (format #f "~a:~a" line col) "") |
|
index index width |
|
(frame-call-representation frame #:top-frame? (zero? index))) |
|
(if full? |
|
(print-locals frame #:width width |
|
#:per-line-prefix " ")))) |
|
|
|
(define* (print-frames frames |
|
#:optional (port (current-output-port)) |
|
#:key |
|
(width (if (isatty? port) |
|
(terminal-width) |
|
(default-frame-width))) |
|
(full? #f) |
|
(forward? #f) count) |
|
(let* ((len (vector-length frames)) |
|
(lower-idx (if (or (not count) (positive? count)) |
|
0 |
|
(max 0 (+ len count)))) |
|
(upper-idx (if (and count (negative? count)) |
|
(1- len) |
|
(1- (if count (min count len) len)))) |
|
(inc (if forward? 1 -1))) |
|
(let lp ((i (if forward? lower-idx upper-idx)) |
|
(last-source #f)) |
|
(if (<= lower-idx i upper-idx) |
|
(let* ((frame (vector-ref frames i))) |
|
(print-frame frame port #:index i #:width width #:full? full? |
|
#:last-source last-source) |
|
(lp (+ i inc) |
|
(frame-source frame))))))) |
|
|
|
(define (stack->vector stack) |
|
(let* ((len (stack-length stack)) |
|
(v (make-vector len))) |
|
(if (positive? len) |
|
(let lp ((i 0) (frame (stack-ref stack 0))) |
|
(if (< i len) |
|
(begin |
|
(vector-set! v i frame) |
|
(lp (1+ i) (frame-previous frame)))))) |
|
v)) |
|
|
|
(define (narrow-stack->vector stack . args) |
|
(let ((narrowed (apply make-stack (stack-ref stack 0) args))) |
|
(if narrowed |
|
(stack->vector narrowed) |
|
#()))) |
|
|
|
(define (frame->stack-vector frame) |
|
(let ((stack (make-stack frame))) |
|
(match (fluid-ref %stacks) |
|
((stack-tag . prompt-tag) |
|
(narrow-stack->vector |
|
stack |
|
|
|
0 |
|
|
|
prompt-tag |
|
|
|
|
|
0 (and prompt-tag 1))) |
|
(_ |
|
|
|
(stack->vector stack))))) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|