Make number of topmost frames with expressions shown configurable.
authorTaylor R Campbell <campbell@mumble.net>
Wed, 29 May 2019 16:14:43 +0000 (16:14 +0000)
committerTaylor R Campbell <campbell@mumble.net>
Wed, 29 May 2019 16:14:43 +0000 (16:14 +0000)
src/runtime/runtime.pkg
src/runtime/stack-sample.scm

index f3aca8325257c7e7c066bafc91b9b8660c83fa31..145ed4b582e1dcd1ee684a0ccbbc9a1003935b82 100644 (file)
@@ -5961,7 +5961,7 @@ USA.
   (parent (runtime))
   (export ()
          stack-sampler:debug-internal-errors?
-         stack-sampler:show-expressions?
+         stack-sampler:topmost-expressions
          with-stack-sampling)
   (initialization (initialize-package!)))
 
index 9594c21c24d10c99f610e292a4b80fff3351d665..04b864098d4358a93fc6da20520a6c6c80b65b1b 100644 (file)
@@ -96,7 +96,7 @@
         (unblock-thread-events))))
 
 (define stack-sampler:debug-internal-errors? #f)
-(define stack-sampler:show-expressions? #t)
+(define stack-sampler:topmost-expressions 2)
 \f
 ;;;; Running with Stack Sampling
 
                 (let loop ((pframes pframes))
                   (let ((pframe (car pframes)))
                     (display-pframe pframe output-port)
-                    (if (pair? (cdr pframes))
-                        (loop (cdr pframes))
-                        (show-expression (pframe.expression pframe)
+                   (if (<= (length pframes) stack-sampler:topmost-expressions)
+                       (show-expression (pframe.expression pframe)
                                          (pframe.subexpression pframe)
-                                         output-port))))
+                                         output-port))
+                    (if (pair? (cdr pframes))
+                        (loop (cdr pframes)))))
                 (write count output-port)
                 (newline output-port)))
             (sort (hash-table->alist (profile.histogram profile))
                     (< (cdr a) (cdr b))))))
 
 (define (display-pframe pframe output-port)
+  (display "-> " output-port)
   (let ((environment-names (pframe.environment-names pframe)))
     (if (pair? environment-names)
         (show-environment-names environment-names output-port)