mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
76 lines
2.6 KiB
Scheme
76 lines
2.6 KiB
Scheme
;;; Guile VM tracer
|
|
|
|
;; Copyright (C) 2001 Free Software Foundation, Inc.
|
|
|
|
;; This program is free software; you can redistribute it and/or modify
|
|
;; it under the terms of the GNU General Public License as published by
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
;; any later version.
|
|
;;
|
|
;; This program is distributed in the hope that it will be useful,
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
;; GNU General Public License for more details.
|
|
;;
|
|
;; You should have received a copy of the GNU General Public License
|
|
;; along with this program; see the file COPYING. If not, write to
|
|
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
;; Boston, MA 02111-1307, USA.
|
|
|
|
;;; Code:
|
|
|
|
(define-module (system vm trace)
|
|
:use-syntax (system base syntax)
|
|
:use-module (system vm core)
|
|
:use-module (system vm frame)
|
|
:use-module (ice-9 format)
|
|
:export (vm-trace vm-trace-on vm-trace-off))
|
|
|
|
(define (vm-trace vm objcode . opts)
|
|
(dynamic-wind
|
|
(lambda () (apply vm-trace-on vm opts))
|
|
(lambda () (vm-load vm objcode))
|
|
(lambda () (apply vm-trace-off vm opts))))
|
|
|
|
(define (vm-trace-on vm . opts)
|
|
(set-vm-option! vm 'trace-first #t)
|
|
(if (memq :b opts) (add-hook! (vm-next-hook vm) trace-next))
|
|
(set-vm-option! vm 'trace-options opts)
|
|
(add-hook! (vm-apply-hook vm) trace-apply)
|
|
(add-hook! (vm-return-hook vm) trace-return))
|
|
|
|
(define (vm-trace-off vm . opts)
|
|
(if (memq :b opts) (remove-hook! (vm-next-hook vm) trace-next))
|
|
(remove-hook! (vm-apply-hook vm) trace-apply)
|
|
(remove-hook! (vm-return-hook vm) trace-return))
|
|
|
|
(define (trace-next vm)
|
|
(format #t "0x~8X ~20S" (vm:ip vm) (vm-fetch-code vm))
|
|
(do ((opts (vm-option vm 'trace-options) (cdr opts)))
|
|
((null? opts) (newline))
|
|
(case (car opts)
|
|
((:s) (format #t "~20S" (vm-fetch-stack vm)))
|
|
((:v) (let ((stack (vm-current-frame-stack vm)))
|
|
(if (pair? stack)
|
|
(format #t "~20S" (frame-environment (car stack))))))
|
|
((:l)
|
|
(format #t "~20S" (frame-local-variables (vm-current-frame vm))))
|
|
((:e)
|
|
(format #t "~20A" (frame-external-link (vm-current-frame vm)))))))
|
|
|
|
(define (trace-apply vm)
|
|
;; (if (vm-option vm 'trace-first)
|
|
;; (set-vm-option! vm 'trace-first #f)
|
|
(let ((stack (vm-current-frame-stack vm)))
|
|
(print-indent stack)
|
|
(print-frame-call (car stack))
|
|
(newline)))
|
|
|
|
(define (trace-return vm)
|
|
(let ((stack (vm-current-frame-stack vm)))
|
|
(print-indent stack)
|
|
(write (vm-return-value vm))
|
|
(newline)))
|
|
|
|
(define (print-indent stack)
|
|
(cond ((pair? stack) (display "| ") (print-indent (cdr stack)))))
|