#lang scheme/base
(require
scheme/control
scheme/serialize
scheme/match
"../tools.ss")
(provide
print-target-word
new-target-word
word?->name
instruction->string
(struct-out target-word)
target-word->error-string
target-value-delay target-value->number target-value-eval
target-value-partial-eval
target-value-abort
(struct-out target-value)
target-value-catch-undefined
target-chain->list
target-chains->bin
)
(define-serializable-struct target-word
(name realm code srcloc address bin next postponed)
#:mutable)
(define (new-target-word #:name [name '<anonymous>]
#:realm [realm 'code]
#:code [code #f]
#:srcloc [srcloc #f]
#:address [address #f]
#:bin [bin #f]
#:next [next #f]
#:postponed [postponed #f]
)
(make-target-word name
realm code
srcloc address
bin next postponed))
(define (target-chain->list word [l '()])
(let ((next (target-word-next word))
(l+ (cons word l)))
(if next
(target-chain->list next l+)
l+)))
(define (target-chains->bin chain-list [realm 'code])
(prompt
(bin-flatten
(map
(lambda (c)
(list
(target-word-address c)
(reverse
(flatten
(map (lambda (word)
(let ((bin (target-word-bin word)))
(or bin (abort #f))))
(target-chain->list c))))))
(reverse
(filter
(lambda (w)
(eq? (target-word-realm w) realm))
chain-list))))))
(define-struct target-value (thunk pe-thunk))
(define target-value-tag
(make-continuation-prompt-tag 'meta))
(define (target-value-abort)
(abort-current-continuation
target-value-tag (lambda () #f)))
(define (target-value-catch-undefined thunk)
(prompt-at target-value-tag (thunk)))
(define (target-value-eval expr)
(cond
((target-value? expr) ((target-value-thunk expr)))
((target-word? expr) (or (target-word-address expr)
(target-value-abort)))
(else expr)))
(define (target-value-partial-eval expr)
(cond
((target-value? expr) ((target-value-pe-thunk expr)))
((target-word? expr) (target-word-name expr))
(else expr)))
(define (target-value->number
expr
[e (lambda (n)
(error 'target-value-type-error
"not a number: ~a" n))])
(let ((n (target-value-eval expr)))
(unless (number? n) (e n))
n))
(define (target-value->expr expr)
(target-value-partial-eval expr))
(define-syntax target-value-delay
(syntax-rules ()
((_ e1 e2)
(make-target-value
(lambda () e1) (lambda () e2))) ((_ expr)
(target-value-delay
expr
(raise 'no-partial-evaluation)))
))
(define (target-word->error-string w)
(let ((s (target-word-srcloc w)))
(and s
(apply
(lambda (file line column position span)
(format "~a:~a:~a: ~a"
file line column
(target-word-name w)))
s))))
(define (word?->name r)
(if (not (target-word? r)) r
(target-word-name r)))
(define target-address-size (make-parameter 16))
(define (instruction->string ins [term ""])
(if (not (list? ins))
(format "~a~a" ins term)
(let ((name (car ins))
(args (map
target-value->expr
(cdr ins))))
(format "[~a~a]~a"
name
(if (null? args)
""
(apply string-append
(map (lambda (x)
(format " ~s" x))
args)))
term))))
(define (print-target-word word (port (current-output-port)))
(for-each (lambda (w)
(print-target-word-head w port))
(reverse
(target-chain->list word))))
(define (print-target-word-head word port [addr-conv (lambda (x) (* x 2))])
(define (w->s x)
(format "~a" (word->string x)))
(define (hex x)
(cond
((list? x) (apply string-append
(map (lambda (y)
(format "~a " (w->s y)))
x)))
((number? x) (w->s x))
(else "")))
(parameterize ((current-output-port port))
(let* ((addr (target-word-address word))
(bin (and addr (reverse (target-word-bin word))))
(code (map instruction->string
(reverse (target-word-code word)))))
(printf "~a:\n"
(match
(target-word-name word)
((list _ v) (hex (target-value->number v)))
(sym sym)))
(let next ((a addr)
(b bin)
(c code))
(unless (null? c)
(display "\t")
(when a (printf "~a ~a" (hex (addr-conv a)) (hex (car b))))
(printf "~a\n" (car c))
(next (and a (+ (length (car b)) a))
(and a (cdr b))
(cdr c)))))))