ref: 415ef9f83bfad5d57697c0a4d9b0983fb8d2db18
parent: 3d331f34dd9acf77e0c124e9509b4f1d744aa595
author: spew <spew@cbza.org>
date: Tue Mar 25 11:37:40 EDT 2025
lsd: add (lstk), add a target to install lsd
--- a/mkfile
+++ b/mkfile
@@ -121,3 +121,6 @@
nuke:V:
mk clean
+
+lsd:V:
+ cp src/plan9/lsd.sl /rc/bin/lsd
--- a/src/plan9/lsd.sl
+++ b/src/plan9/lsd.sl
@@ -29,12 +29,12 @@
:doc-see symbol
text data)
(defstruct frame
- "A stack frame. Loc is the enclosing function symbol and instruction
+ "A stack frame. Sym is the enclosing function symbol and instruction
address of the frame. Retpc is the return instruction address. Sp is
the stack pointer value. Locals are all the local symbols."
:doc-group lsd
:doc-see symbol
- loc retpc sp locals)
+ sym retpc sp locals)
(def coref NIL)
(def textf NIL)
@@ -222,25 +222,26 @@
:doc-see frame
(reverse! (ctrace)))
-(def (stk)
- "Print the stack trace without showing local auto values.
+(def (stk (:locals NIL))
+ "Print the stack trace optionally showing local auto values.
Bugs:
- Prints the values of parameters as unsigned 64 bit
- integers, not as their actual types."
+ Prints the values of parameters and autos as unsigned
+ 64 bit integers, not as their actual types."
:doc-group lsd
:doc-see _stk
+ :doc-see lstk
(def (go pc fs)
(if (not fs) pc
(let* {[f (car fs)]
- [floc (frame-loc f)]}
+ [fsym (frame-sym f)]}
(receive (params autos)
(partition (λ (x) (equal? #\p (symbol-type x)))
(frame-locals f))
(set! params (sort params #.< :key symbol-addr))
(set! autos (sort autos #.> :key symbol-addr))
- (princ (symbol-name floc) "(")
+ (princ (symbol-name fsym) "(")
(princ
(str-join
(map (λ (p)
@@ -247,8 +248,15 @@
(str (symbol-name p) "=" (hex (symbol-read p 'u64))))
params)
", "))
- (princ ")+" (hex (- pc (symbol-addr floc))) " ")
+ (princ ")+" (hex (- pc (symbol-addr fsym))) " ")
(princ (src pc) "\n")
+ (when locals
+ (for-each (λ (l) (princ " "
+ (symbol-name l)
+ "="
+ (hex (symbol-read l 'u64))
+ "\n"))
+ autos))
(go (frame-retpc f) (cdr fs))))))
(let* {[tos (go (curPC) (_stk))]
[topsym (lsd-findsym tos)]}
@@ -259,6 +267,13 @@
(src tos)
"\n")))
+(def (lstk)
+ "Print the stack trace showing local auto values."
+ :doc-group lsd
+ :doc-see _stk
+ :doc-see stk
+ (stk :locals T))
+
(def (curPC) (and (>= pid 0) (readreg PC)))
(def (step (n 1))
@@ -371,7 +386,8 @@
(path-cwd)
"\ntext\n\n"
(length s)
- "\n" s))
+ "\n"
+ s))
(io-close plumbf)))
(def (B stepper)