2023-02-28 06:31:08 +01:00
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; Stack-Based Model compiler/vm, derived from
|
|
|
|
;
|
|
|
|
; Three Implementation Models for Scheme
|
|
|
|
; TR87-0ll
|
|
|
|
; 1987
|
|
|
|
; R. Kent Dybvig
|
|
|
|
;
|
|
|
|
; https://www.cs.unc.edu/techreports/87-011.pdf
|
|
|
|
;
|
|
|
|
;
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2023-03-04 06:07:52 +01:00
|
|
|
(load "n.sf")
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; Utils
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
(define set-member?
|
|
|
|
(lambda (x s)
|
|
|
|
(cond
|
|
|
|
[(null? s) #f]
|
|
|
|
[(eq? x (car s)) #t]
|
|
|
|
[else (set-member? x (cdr s))])))
|
|
|
|
|
|
|
|
(define set-cons
|
|
|
|
(lambda (x s)
|
|
|
|
(if (set-member? x s)
|
|
|
|
s
|
|
|
|
(cons x s))))
|
|
|
|
|
|
|
|
(define set-union
|
2023-03-06 04:19:29 +01:00
|
|
|
(lambda (s1 s2)
|
|
|
|
(if (null? s1)
|
2023-02-28 06:31:08 +01:00
|
|
|
s2
|
2023-03-06 04:19:29 +01:00
|
|
|
(set-union (cdr s1) (set-cons (car s1) s2)))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define set-minus
|
2023-03-06 04:19:29 +01:00
|
|
|
(lambda (s1 s2)
|
|
|
|
(if (null? s1)
|
2023-02-28 06:31:08 +01:00
|
|
|
'()
|
2023-03-06 04:19:29 +01:00
|
|
|
(if (set-member? (car s1) s2)
|
|
|
|
(set-minus (cdr s1) s2)
|
|
|
|
(cons (car s1) (set-minus (cdr s1) s2))))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define set-intersect
|
2023-03-06 04:19:29 +01:00
|
|
|
(lambda (s1 s2)
|
|
|
|
(if (null? s1)
|
2023-02-28 06:31:08 +01:00
|
|
|
'()
|
2023-03-06 04:19:29 +01:00
|
|
|
(if (set-member? (car s1) s2)
|
|
|
|
(cons (car s1) (set-intersect (cdr s1) s2))
|
|
|
|
(set-intersect (cdr s1) s2)))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define-syntax record-case
|
|
|
|
(syntax-rules (else)
|
|
|
|
[(record-case (pa . ir) clause ...)
|
|
|
|
(let ([id (pa . ir)])
|
|
|
|
(record-case id clause ...))]
|
|
|
|
[(record-case id)
|
|
|
|
'record-case-miss]
|
|
|
|
[(record-case id [else exp ...])
|
|
|
|
(begin exp ...)]
|
2024-06-13 21:49:33 +02:00
|
|
|
[(record-case id [(key ...) ids exp ...] clause ...)
|
|
|
|
(if (memq (car id) '(key ...))
|
|
|
|
(apply (lambda ids exp ...) (cdr id))
|
|
|
|
(record-case id clause ...))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[(record-case id [key ids exp ...] clause ...)
|
|
|
|
(if (eq? (car id) 'key)
|
|
|
|
(apply (lambda ids exp ...) (cdr id))
|
|
|
|
(record-case id clause ...))]))
|
|
|
|
|
|
|
|
(define syntax-match?
|
|
|
|
(lambda (pat exp)
|
|
|
|
(or (eq? pat '*)
|
|
|
|
(equal? exp pat)
|
|
|
|
(and (pair? pat)
|
|
|
|
(cond
|
|
|
|
[(and (eq? (car pat) '$)
|
|
|
|
(pair? (cdr pat))
|
|
|
|
(null? (cddr pat)))
|
|
|
|
(eq? exp (cadr pat))]
|
|
|
|
[(and (pair? (cdr pat))
|
|
|
|
(eq? (cadr pat) '...)
|
|
|
|
(null? (cddr pat)))
|
|
|
|
(let ([pat (car pat)])
|
|
|
|
(define (f lst)
|
|
|
|
(or (null? lst)
|
|
|
|
(and (pair? lst)
|
|
|
|
(syntax-match? pat (car lst))
|
|
|
|
(f (cdr lst)))))
|
|
|
|
(f exp))]
|
|
|
|
[else
|
|
|
|
(and (pair? exp)
|
|
|
|
(syntax-match? (car pat) (car exp))
|
|
|
|
(syntax-match? (cdr pat) (cdr exp)))])))))
|
|
|
|
|
|
|
|
; unique symbol generator (poor man's version)
|
|
|
|
(define gensym
|
|
|
|
(let ([gsc 0])
|
|
|
|
(lambda args ; (), (symbol), or (#f) for gsc reset
|
|
|
|
(set! gsc (fx+ gsc 1))
|
|
|
|
(if (null? args)
|
|
|
|
(string->symbol
|
|
|
|
(string-append "#" (fixnum->string gsc 10)))
|
|
|
|
(if (symbol? (car args))
|
|
|
|
(string->symbol
|
|
|
|
(string-append (symbol->string (car args))
|
|
|
|
(string-append "#" (fixnum->string gsc 10))))
|
|
|
|
(set! gsc 0))))))
|
|
|
|
|
|
|
|
(define posq
|
|
|
|
(lambda (x l)
|
|
|
|
(let loop ([l l] [n 0])
|
|
|
|
(cond [(null? l) #f]
|
|
|
|
[(eq? x (car l)) n]
|
|
|
|
[else (loop (cdr l) (fx+ n 1))]))))
|
|
|
|
|
|
|
|
(define list-diff
|
|
|
|
(lambda (l t)
|
|
|
|
(if (or (null? l) (eq? l t))
|
|
|
|
'()
|
|
|
|
(cons (car l) (list-diff (cdr l) t)))))
|
|
|
|
|
|
|
|
(define (pair* x . more)
|
|
|
|
(let loop ([x x] [rest more])
|
|
|
|
(if (null? rest) x
|
|
|
|
(cons x (loop (car rest) (cdr rest))))))
|
|
|
|
|
2023-03-12 21:54:44 +01:00
|
|
|
(define (andmap p l)
|
|
|
|
(if (pair? l) (and (p (car l)) (andmap p (cdr l))) #t))
|
|
|
|
|
2023-03-04 06:07:52 +01:00
|
|
|
(define (list1? x) (and (pair? x) (null? (cdr x))))
|
2023-03-11 07:50:00 +01:00
|
|
|
(define (list1+? x) (and (pair? x) (list? (cdr x))))
|
2023-03-04 06:07:52 +01:00
|
|
|
(define (list2? x) (and (pair? x) (list1? (cdr x))))
|
2023-03-11 07:50:00 +01:00
|
|
|
(define (list2+? x) (and (pair? x) (list1+? (cdr x))))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2023-03-19 00:13:38 +01:00
|
|
|
(define integrable?
|
|
|
|
(%prim "{ /* define integrable? */
|
|
|
|
static obj c[] = { obj_from_objptr(vmcases+8) };
|
|
|
|
$return objptr(c); }"))
|
|
|
|
|
|
|
|
(define lookup-integrable
|
|
|
|
(%prim "{ /* define lookup-integrable */
|
|
|
|
static obj c[] = { obj_from_objptr(vmcases+9) };
|
|
|
|
$return objptr(c); }"))
|
|
|
|
|
|
|
|
(define integrable-type
|
|
|
|
(%prim "{ /* define integrable-type */
|
|
|
|
static obj c[] = { obj_from_objptr(vmcases+10) };
|
|
|
|
$return objptr(c); }"))
|
|
|
|
|
|
|
|
(define integrable-global
|
|
|
|
(%prim "{ /* define integrable-global */
|
|
|
|
static obj c[] = { obj_from_objptr(vmcases+11) };
|
|
|
|
$return objptr(c); }"))
|
|
|
|
|
|
|
|
(define integrable-code
|
|
|
|
(%prim "{ /* define integrable-code */
|
|
|
|
static obj c[] = { obj_from_objptr(vmcases+12) };
|
|
|
|
$return objptr(c); }"))
|
|
|
|
|
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; Syntax of the Scheme Core language
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
; <core> -> (quote <object>)
|
|
|
|
; <core> -> (ref <id>)
|
|
|
|
; <core> -> (set! <id> <core>)
|
2023-03-12 21:54:44 +01:00
|
|
|
; <core> -> (set& <id>)
|
2023-02-28 06:31:08 +01:00
|
|
|
; <core> -> (lambda <ids> <core>) where <ids> -> (<id> ...) | (<id> ... . <id>) | <id>
|
2023-03-22 18:21:48 +01:00
|
|
|
; <core> -> (lambda* (<arity> <core>) ...) where <arity> -> (<cnt> <rest?>)
|
|
|
|
; <core> -> (syntax-lambda (<id> ...) <core>)
|
2023-03-10 23:30:41 +01:00
|
|
|
; <core> -> (letcc <id> <core>)
|
|
|
|
; <core> -> (withcc <core> <core>)
|
2023-02-28 06:31:08 +01:00
|
|
|
; <core> -> (begin <core> ...)
|
|
|
|
; <core> -> (if <core> <core> <core>)
|
2023-03-07 19:11:46 +01:00
|
|
|
; <core> -> (call <core> <core> ...)
|
2023-03-21 20:29:28 +01:00
|
|
|
; <core> -> (integrable <ig> <core> ...) where <ig> is an index in the integrables table
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
; NB: (begin) is legit, returns unspecified value
|
|
|
|
; on top level, these two extra core forms are legal:
|
|
|
|
|
|
|
|
; <core> -> (define <id> <core>)
|
|
|
|
; <core> -> (define-syntax <id> <transformer>)
|
|
|
|
|
2023-03-12 21:54:44 +01:00
|
|
|
(define idslist?
|
|
|
|
(lambda (x)
|
|
|
|
(cond [(null? x) #t]
|
|
|
|
[(pair? x) (and (id? (car x)) (idslist? (cdr x)))]
|
|
|
|
[else (id? x)])))
|
|
|
|
|
2023-03-07 19:11:46 +01:00
|
|
|
(define normalize-arity
|
|
|
|
(lambda (arity)
|
|
|
|
(if (and (list2? arity) (fixnum? (car arity)) (boolean? (cadr arity)))
|
|
|
|
arity
|
|
|
|
(let loop ([cnt 0] [l arity])
|
|
|
|
(cond [(pair? l) (loop (fx+ 1 cnt) (cdr l))]
|
|
|
|
[(null? l) (list cnt #f)]
|
|
|
|
[else (list cnt #t)])))))
|
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
; convention for 'flattened' <ids> is to put rest arg if any at the front
|
|
|
|
(define flatten-idslist
|
|
|
|
(lambda (ilist)
|
|
|
|
(if (list? ilist) ilist
|
|
|
|
(let loop ([l ilist] [r '()])
|
|
|
|
(cond [(pair? l) (loop (cdr l) (cons (car l) r))]
|
|
|
|
[else (if (null? l) (reverse! r) (cons l (reverse! r)))])))))
|
|
|
|
|
|
|
|
(define idslist-req-count
|
|
|
|
(lambda (ilist)
|
|
|
|
(if (pair? ilist)
|
|
|
|
(fx+ 1 (idslist-req-count (cdr ilist)))
|
|
|
|
0)))
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; Macro transformer (from Scheme to Scheme Core) derived from Al Petrofsky's EIOD 1.17
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2023-04-16 03:03:39 +02:00
|
|
|
; An environment is a procedure that accepts any identifier and returns a denotation.
|
|
|
|
; The denotation of an identifier is its macro location, which is a cell storing the
|
|
|
|
; identifier's current syntactic value. Location's value can be changed later.
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
; Special forms are either a symbol naming a builtin, or a transformer procedure
|
|
|
|
; that takes two arguments: a macro use and the environment of the macro use.
|
|
|
|
|
2023-04-16 00:08:08 +02:00
|
|
|
; <identifier> -> <symbol> | <thunk returning (sym . den)>
|
2023-04-16 03:03:39 +02:00
|
|
|
; <denotation> -> <location>
|
|
|
|
; <location> -> #&<value>
|
2023-03-01 23:36:24 +01:00
|
|
|
; <value> -> <special> | <core>
|
|
|
|
; <special> -> <builtin> | <transformer>
|
2024-07-07 03:03:12 +02:00
|
|
|
; <builtin> -> syntax-quote | quote | set! | set& | if | lambda | lambda* |
|
2023-04-16 00:08:08 +02:00
|
|
|
; letcc | withcc | body | begin | define | define-syntax |
|
|
|
|
; syntax-lambda | syntax-rules | syntax-length | syntax-error
|
2023-03-01 23:36:24 +01:00
|
|
|
; <transformer> -> <procedure of exp and env returning exp>
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define-inline (val-core? val) (pair? val))
|
|
|
|
|
2023-04-16 03:03:39 +02:00
|
|
|
(define-inline (make-location v) (box v))
|
|
|
|
(define-inline (location-val l) (unbox l))
|
|
|
|
(define-inline (location-set-val! l v) (set-box! l v))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-04-16 03:03:39 +02:00
|
|
|
(define (location-special? l) (not (pair? (unbox l))))
|
2023-04-16 00:08:08 +02:00
|
|
|
(define (new-id sym den) (define p (cons sym den)) (lambda () p))
|
|
|
|
(define (old-sym id) (car (id)))
|
|
|
|
(define (old-den id) (cdr (id)))
|
2023-02-28 06:31:08 +01:00
|
|
|
(define (id? x) (or (symbol? x) (procedure? x)))
|
2023-04-16 00:08:08 +02:00
|
|
|
(define (id->sym id) (if (symbol? id) id (old-sym id)))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (extend-xenv env id bnd) (lambda (i) (if (eq? id i) bnd (env i))))
|
|
|
|
|
2023-04-16 03:03:39 +02:00
|
|
|
(define (add-location key val env) ; adds as-is
|
|
|
|
(extend-xenv env key (make-location val)))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (add-var var val env) ; adds renamed var as <core>
|
2023-04-16 03:03:39 +02:00
|
|
|
(extend-xenv env var (make-location (list 'ref val))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-04-14 20:49:32 +02:00
|
|
|
(define (xform-sexp->datum sexp)
|
|
|
|
(let conv ([sexp sexp])
|
|
|
|
(cond [(id? sexp) (id->sym sexp)]
|
|
|
|
[(pair? sexp) (cons (conv (car sexp)) (conv (cdr sexp)))]
|
|
|
|
[(vector? sexp) (list->vector (map conv (vector->list sexp)))]
|
|
|
|
[else sexp])))
|
|
|
|
|
2023-03-21 23:02:01 +01:00
|
|
|
(define (x-error msg . args)
|
2023-03-22 18:21:48 +01:00
|
|
|
(error* (string-append "transformer: " msg) args))
|
2023-03-21 23:02:01 +01:00
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
; xform receives Scheme s-expressions and returns either Core Scheme <core>
|
|
|
|
; (always a pair) or special-form, which is either a builtin (a symbol) or
|
2023-03-21 23:02:01 +01:00
|
|
|
; a transformer (a procedure). Appos? flag is true when the context can
|
|
|
|
; allow xform to return a transformer; otherwise, only <core> is accepted.
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (xform appos? sexp env)
|
|
|
|
(cond [(id? sexp)
|
|
|
|
(let ([hval (xform-ref sexp env)])
|
2023-03-19 00:13:38 +01:00
|
|
|
(cond [appos? hval]
|
|
|
|
[(integrable? hval) ; integrable id-syntax
|
|
|
|
(list 'ref (integrable-global hval))]
|
|
|
|
[(procedure? hval) ; id-syntax
|
|
|
|
(xform appos? (hval sexp env) env)]
|
2023-04-16 03:03:39 +02:00
|
|
|
[(not (pair? hval)) ; special used out of context
|
2023-03-22 19:20:17 +01:00
|
|
|
(x-error "improper use of syntax form" hval)]
|
2023-04-16 03:03:39 +02:00
|
|
|
[else hval]))] ; core
|
2023-03-19 00:13:38 +01:00
|
|
|
[(not (pair? sexp))
|
2023-03-21 23:02:01 +01:00
|
|
|
(xform-quote (list sexp) env)]
|
2023-03-19 00:13:38 +01:00
|
|
|
[else
|
|
|
|
(let* ([head (car sexp)] [tail (cdr sexp)] [hval (xform #t head env)])
|
|
|
|
(case hval
|
2024-07-07 03:03:12 +02:00
|
|
|
[(syntax-quote) (car tail)] ; internal use only
|
2023-03-21 23:02:01 +01:00
|
|
|
[(quote) (xform-quote tail env)]
|
|
|
|
[(set!) (xform-set! tail env)]
|
|
|
|
[(set&) (xform-set& tail env)]
|
|
|
|
[(if) (xform-if tail env)]
|
|
|
|
[(lambda) (xform-lambda tail env)]
|
|
|
|
[(lambda*) (xform-lambda* tail env)]
|
|
|
|
[(letcc) (xform-letcc tail env)]
|
|
|
|
[(withcc) (xform-withcc tail env)]
|
|
|
|
[(body) (xform-body tail env)]
|
2023-04-14 20:49:32 +02:00
|
|
|
[(begin) (xform-begin tail env)]
|
2023-03-21 23:02:01 +01:00
|
|
|
[(define) (xform-define tail env)]
|
|
|
|
[(define-syntax) (xform-define-syntax tail env)]
|
2023-04-14 00:31:20 +02:00
|
|
|
[(syntax-lambda) (xform-syntax-lambda tail env)]
|
|
|
|
[(syntax-rules) (xform-syntax-rules tail env)]
|
2023-03-29 00:14:45 +02:00
|
|
|
[(syntax-length) (xform-syntax-length tail env)]
|
|
|
|
[(syntax-error) (xform-syntax-error tail env)]
|
2023-03-19 00:13:38 +01:00
|
|
|
[else (if (integrable? hval)
|
|
|
|
(xform-integrable hval tail env)
|
|
|
|
(if (procedure? hval)
|
|
|
|
(xform appos? (hval sexp env) env)
|
|
|
|
(xform-call hval tail env)))]))]))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (xform-ref id env)
|
|
|
|
(let ([den (env id)])
|
2023-04-16 03:03:39 +02:00
|
|
|
(cond [(eq? (location-val den) '...) (x-error "improper use of ...")]
|
|
|
|
[else (location-val den)])))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-03-21 23:02:01 +01:00
|
|
|
(define (xform-quote tail env)
|
|
|
|
(if (list1? tail)
|
2023-03-29 00:14:45 +02:00
|
|
|
(list 'quote (xform-sexp->datum (car tail)))
|
2023-03-21 23:02:01 +01:00
|
|
|
(x-error "improper quote form" (cons 'quote tail))))
|
|
|
|
|
|
|
|
(define (xform-set! tail env)
|
|
|
|
(if (and (list2? tail) (id? (car tail)))
|
|
|
|
(let ([den (env (car tail))] [xexp (xform #f (cadr tail) env)])
|
2023-04-16 03:03:39 +02:00
|
|
|
(cond [(location-special? den) (location-set-val! den xexp) '(begin)]
|
|
|
|
[else (let ([val (location-val den)])
|
2023-03-21 23:02:01 +01:00
|
|
|
(if (eq? (car val) 'ref)
|
|
|
|
(list 'set! (cadr val) xexp)
|
|
|
|
(x-error "set! to non-identifier form")))]))
|
|
|
|
(x-error "improper set! form" (cons 'set! tail))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-03-12 21:54:44 +01:00
|
|
|
(define (xform-set& tail env)
|
|
|
|
(if (list1? tail)
|
|
|
|
(let ([den (env (car tail))])
|
2023-04-16 03:03:39 +02:00
|
|
|
(cond [(location-special? den) (x-error "set& of a non-variable")]
|
|
|
|
[else (let ([val (location-val den)])
|
2023-03-12 21:54:44 +01:00
|
|
|
(if (eq? (car val) 'ref)
|
|
|
|
(list 'set& (cadr val))
|
2023-03-21 23:02:01 +01:00
|
|
|
(x-error "set& of a non-variable")))]))
|
|
|
|
(x-error "improper set& form" (cons 'set& tail))))
|
2023-03-12 21:54:44 +01:00
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
(define (xform-if tail env)
|
|
|
|
(if (list? tail)
|
|
|
|
(let ([xexps (map (lambda (sexp) (xform #f sexp env)) tail)])
|
|
|
|
(case (length xexps)
|
|
|
|
[(2) (cons 'if (append xexps '((begin))))]
|
|
|
|
[(3) (cons 'if xexps)]
|
2023-03-21 23:02:01 +01:00
|
|
|
[else (x-error "malformed if form" (cons 'if tail))]))
|
|
|
|
(x-error "improper if form" (cons 'if tail))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (xform-call xexp tail env)
|
|
|
|
(if (list? tail)
|
|
|
|
(let ([xexps (map (lambda (sexp) (xform #f sexp env)) tail)])
|
|
|
|
(if (and (null? xexps) (eq? (car xexp) 'lambda) (null? (cadr xexp)))
|
|
|
|
(caddr xexp) ; ((let () x)) => x
|
|
|
|
(pair* 'call xexp xexps)))
|
2023-03-21 23:02:01 +01:00
|
|
|
(x-error "improper application" (cons xexp tail))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-03-19 00:13:38 +01:00
|
|
|
(define (integrable-argc-match? igt n)
|
|
|
|
(case igt
|
2023-03-20 21:43:06 +01:00
|
|
|
[(#\0) (= n 0)] [(#\1) (= n 1)] [(#\2) (= n 2)] [(#\3) (= n 3)]
|
|
|
|
[(#\p) (>= n 0)] [(#\m) (>= n 1)] [(#\c) (>= n 2)] [(#\x) (>= n 1)]
|
2023-03-28 21:39:00 +02:00
|
|
|
[(#\u) (<= 0 n 1)] [(#\b) (<= 1 n 2)] [(#\t) (<= 2 n 3)]
|
2023-03-21 18:43:26 +01:00
|
|
|
[(#\#) (>= n 0)] [(#\@) #f]
|
2023-04-14 17:34:47 +02:00
|
|
|
[else #f]))
|
2023-03-19 00:13:38 +01:00
|
|
|
|
|
|
|
(define (xform-integrable ig tail env)
|
|
|
|
(if (integrable-argc-match? (integrable-type ig) (length tail))
|
|
|
|
(cons 'integrable (cons ig (map (lambda (sexp) (xform #f sexp env)) tail)))
|
2023-03-20 18:49:00 +01:00
|
|
|
(xform-call (list 'ref (integrable-global ig)) tail env)))
|
2023-03-19 00:13:38 +01:00
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
(define (xform-lambda tail env)
|
2023-03-12 21:54:44 +01:00
|
|
|
(if (and (list1+? tail) (idslist? (car tail)))
|
2023-02-28 06:31:08 +01:00
|
|
|
(let loop ([vars (car tail)] [ienv env] [ipars '()])
|
|
|
|
(cond [(pair? vars)
|
2023-03-22 18:21:48 +01:00
|
|
|
(let* ([var (car vars)] [nvar (gensym (id->sym var))])
|
|
|
|
(loop (cdr vars) (add-var var nvar ienv) (cons nvar ipars)))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[(null? vars)
|
2023-03-22 18:21:48 +01:00
|
|
|
(list 'lambda (reverse ipars) (xform-body (cdr tail) ienv))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[else ; improper
|
2023-03-12 21:54:44 +01:00
|
|
|
(let* ([var vars] [nvar (gensym (id->sym var))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[ienv (add-var var nvar ienv)])
|
2023-03-22 18:21:48 +01:00
|
|
|
(list 'lambda (append (reverse ipars) nvar)
|
|
|
|
(xform-body (cdr tail) ienv)))]))
|
2023-03-21 23:02:01 +01:00
|
|
|
(x-error "improper lambda body" (cons 'lambda tail))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-03-07 19:11:46 +01:00
|
|
|
(define (xform-lambda* tail env)
|
|
|
|
(if (list? tail)
|
|
|
|
(cons 'lambda*
|
|
|
|
(map (lambda (aexp)
|
2023-03-12 21:54:44 +01:00
|
|
|
(if (and (list2? aexp)
|
2023-03-22 18:21:48 +01:00
|
|
|
(or (and (list2? (car aexp))
|
|
|
|
(fixnum? (caar aexp))
|
|
|
|
(boolean? (cadar aexp)))
|
2023-03-12 21:54:44 +01:00
|
|
|
(idslist? (car aexp))))
|
2023-03-07 19:11:46 +01:00
|
|
|
(list (normalize-arity (car aexp))
|
|
|
|
(xform #f (cadr aexp) env))
|
2023-03-21 23:02:01 +01:00
|
|
|
(x-error "improper lambda* clause" aexp)))
|
2023-03-07 19:11:46 +01:00
|
|
|
tail))
|
2023-03-21 23:02:01 +01:00
|
|
|
(x-error "improper lambda* form" (cons 'lambda* tail))))
|
2023-03-07 19:11:46 +01:00
|
|
|
|
2023-03-10 23:30:41 +01:00
|
|
|
(define (xform-letcc tail env)
|
2023-03-11 07:50:00 +01:00
|
|
|
(if (and (list2+? tail) (id? (car tail)))
|
2023-03-10 23:30:41 +01:00
|
|
|
(let* ([var (car tail)] [nvar (gensym (id->sym var))])
|
|
|
|
(list 'letcc nvar
|
2023-03-11 07:50:00 +01:00
|
|
|
(xform-body (cdr tail) (add-var var nvar env))))
|
2023-03-21 23:02:01 +01:00
|
|
|
(x-error "improper letcc form" (cons 'letcc tail))))
|
2023-03-10 23:30:41 +01:00
|
|
|
|
|
|
|
(define (xform-withcc tail env)
|
2023-03-11 07:50:00 +01:00
|
|
|
(if (list2+? tail)
|
2023-03-10 23:30:41 +01:00
|
|
|
(list 'withcc (xform #f (car tail) env)
|
2023-03-11 07:50:00 +01:00
|
|
|
(xform-body (cdr tail) env))
|
2023-03-21 23:02:01 +01:00
|
|
|
(x-error "improper withcc form" (cons 'withcc tail))))
|
2023-03-10 23:30:41 +01:00
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
(define (xform-body tail env)
|
2023-03-24 19:16:10 +01:00
|
|
|
(cond
|
|
|
|
[(null? tail)
|
|
|
|
(list 'begin)]
|
2023-04-04 02:41:15 +02:00
|
|
|
[(list1? tail) ; can't have defines there
|
|
|
|
(xform #f (car tail) env)]
|
2023-03-24 19:16:10 +01:00
|
|
|
[(not (list? tail))
|
|
|
|
(x-error "improper body form" (cons 'body tail))]
|
|
|
|
[else
|
|
|
|
(let loop ([env env] [ids '()] [inits '()] [nids '()] [body tail])
|
|
|
|
(if (and (pair? body) (pair? (car body)))
|
|
|
|
(let ([first (car body)] [rest (cdr body)])
|
|
|
|
(let* ([head (car first)] [tail (cdr first)] [hval (xform #t head env)])
|
|
|
|
(case hval
|
2023-04-13 23:59:31 +02:00
|
|
|
[(begin) ; internal
|
2023-03-24 19:16:10 +01:00
|
|
|
(if (list? tail)
|
|
|
|
(loop env ids inits nids (append tail rest))
|
|
|
|
(x-error "improper begin form" first))]
|
2023-04-13 23:59:31 +02:00
|
|
|
[(define) ; internal
|
|
|
|
(cond [(and (list2? tail) (null? (car tail))) ; idless
|
|
|
|
(let ([init (cadr tail)])
|
|
|
|
(loop env (cons #f ids) (cons init inits) (cons #f nids) rest))]
|
|
|
|
[(and (list2? tail) (id? (car tail)))
|
|
|
|
(let* ([id (car tail)] [init (cadr tail)]
|
|
|
|
[nid (gensym (id->sym id))] [env (add-var id nid env)])
|
|
|
|
(loop env (cons id ids) (cons init inits) (cons nid nids) rest))]
|
|
|
|
[(and (list2+? tail) (pair? (car tail)) (id? (caar tail)) (idslist? (cdar tail)))
|
2023-04-16 03:03:39 +02:00
|
|
|
(let* ([id (caar tail)] [lambda-id (new-id 'lambda (make-location 'lambda))]
|
2023-04-13 23:59:31 +02:00
|
|
|
[init (cons lambda-id (cons (cdar tail) (cdr tail)))]
|
|
|
|
[nid (gensym (id->sym id))] [env (add-var id nid env)])
|
|
|
|
(loop env (cons id ids) (cons init inits) (cons nid nids) rest))]
|
|
|
|
[else (x-error "improper define form" first)])]
|
|
|
|
[(define-syntax) ; internal
|
2023-03-24 19:16:10 +01:00
|
|
|
(if (and (list2? tail) (id? (car tail)))
|
|
|
|
(let* ([id (car tail)] [init (cadr tail)]
|
2023-04-16 03:03:39 +02:00
|
|
|
[env (add-location id '(undefined) env)])
|
2023-03-24 19:16:10 +01:00
|
|
|
(loop env (cons id ids) (cons init inits) (cons #t nids) rest))
|
|
|
|
(x-error "improper define-syntax form" first))]
|
|
|
|
[else
|
|
|
|
(if (procedure? hval)
|
|
|
|
(loop env ids inits nids (cons (hval first env) rest))
|
|
|
|
(xform-labels (reverse ids) (reverse inits) (reverse nids) body env))])))
|
|
|
|
(xform-labels (reverse ids) (reverse inits) (reverse nids) body env)))]))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (xform-labels ids inits nids body env)
|
|
|
|
(let loop ([ids ids] [inits inits] [nids nids] [sets '()] [lids '()])
|
|
|
|
(cond [(null? ids)
|
2023-03-24 19:16:10 +01:00
|
|
|
(let* ([xexps (append (reverse sets) (map (lambda (x) (xform #f x env)) body))]
|
|
|
|
[xexp (if (list1? xexps) (car xexps) (cons 'begin xexps))])
|
|
|
|
(if (null? lids) xexp
|
2023-02-28 06:31:08 +01:00
|
|
|
(pair* 'call (list 'lambda (reverse lids) xexp)
|
|
|
|
(map (lambda (lid) '(begin)) lids))))]
|
2023-03-24 19:16:10 +01:00
|
|
|
[(not (car ids)) ; idless define
|
|
|
|
(loop (cdr ids) (cdr inits) (cdr nids)
|
|
|
|
(cons (xform #f (car inits) env) sets) lids)]
|
2023-02-28 06:31:08 +01:00
|
|
|
[(symbol? (car nids)) ; define
|
|
|
|
(loop (cdr ids) (cdr inits) (cdr nids)
|
2023-03-21 23:02:01 +01:00
|
|
|
(cons (xform-set! (list (car ids) (car inits)) env) sets)
|
2023-02-28 06:31:08 +01:00
|
|
|
(cons (car nids) lids))]
|
|
|
|
[else ; define-syntax
|
2023-04-16 03:03:39 +02:00
|
|
|
(location-set-val! (env (car ids)) (xform #t (car inits) env))
|
2023-02-28 06:31:08 +01:00
|
|
|
(loop (cdr ids) (cdr inits) (cdr nids) sets lids)])))
|
|
|
|
|
2023-04-14 20:49:32 +02:00
|
|
|
(define (xform-begin tail env) ; top-level
|
|
|
|
(if (list? tail)
|
|
|
|
(let ([xexps (map (lambda (sexp) (xform #f sexp env)) tail)])
|
|
|
|
(if (and (pair? xexps) (null? (cdr xexps)))
|
|
|
|
(car xexps) ; (begin x) => x
|
|
|
|
(cons 'begin xexps)))
|
|
|
|
(x-error "improper begin form" (cons 'begin! tail))))
|
|
|
|
|
2023-04-13 23:59:31 +02:00
|
|
|
(define (xform-define tail env) ; top-level
|
|
|
|
(cond [(and (list2? tail) (null? (car tail))) ; idless
|
|
|
|
(xform #f (cadr tail) env)]
|
|
|
|
[(and (list2? tail) (id? (car tail)))
|
|
|
|
(list 'define (id->sym (car tail))
|
|
|
|
(xform #f (cadr tail) env))]
|
|
|
|
[(and (list2+? tail) (pair? (car tail)) (id? (caar tail)) (idslist? (cdar tail)))
|
|
|
|
(list 'define (id->sym (caar tail))
|
|
|
|
(xform-lambda (cons (cdar tail) (cdr tail)) env))]
|
|
|
|
[else
|
|
|
|
(x-error "improper define form" (cons 'define tail))]))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-04-13 23:59:31 +02:00
|
|
|
(define (xform-define-syntax tail env) ; top-level
|
2023-03-21 23:02:01 +01:00
|
|
|
(if (and (list2? tail) (id? (car tail)))
|
|
|
|
(list 'define-syntax (id->sym (car tail)) (xform #t (cadr tail) env))
|
|
|
|
(x-error "improper define-syntax form" (cons 'define-syntax tail))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-04-14 00:31:20 +02:00
|
|
|
(define (xform-syntax-lambda tail env)
|
|
|
|
(if (and (list2+? tail) (andmap id? (car tail)))
|
|
|
|
(let ([vars (car tail)] [macenv env] [forms (cdr tail)])
|
|
|
|
; return a transformer that wraps xformed body in (syntax ...)
|
|
|
|
(lambda (use useenv)
|
|
|
|
(if (and (list1+? use) (fx=? (length vars) (length (cdr use))))
|
|
|
|
(let loop ([vars vars] [exps (cdr use)] [env macenv])
|
|
|
|
(if (null? vars)
|
2024-07-07 03:03:12 +02:00
|
|
|
(list 'syntax-quote (xform-body forms env))
|
2023-04-14 00:31:20 +02:00
|
|
|
(loop (cdr vars) (cdr exps)
|
2023-04-16 03:03:39 +02:00
|
|
|
(add-location (car vars)
|
2023-04-14 00:31:20 +02:00
|
|
|
(xform #t (car exps) useenv) env))))
|
|
|
|
(x-error "invalif syntax-lambda application" use))))
|
|
|
|
(x-error "improper syntax-lambda body" (cons 'syntax-lambda tail))))
|
|
|
|
|
|
|
|
(define (xform-syntax-rules tail env)
|
|
|
|
(cond [(and (list2+? tail) (id? (car tail)) (andmap id? (cadr tail)))
|
|
|
|
(syntax-rules* env (car tail) (cadr tail) (cddr tail))]
|
|
|
|
[(and (list1+? tail) (andmap id? (car tail)))
|
|
|
|
(syntax-rules* env #f (car tail) (cdr tail))]
|
|
|
|
[else
|
|
|
|
(x-error "improper syntax-rules form" (cons 'syntax-rules tail))]))
|
|
|
|
|
|
|
|
(define (xform-syntax-length tail env)
|
|
|
|
(if (and (list1? tail) (list? (car tail)))
|
|
|
|
(list 'quote (length (car tail)))
|
|
|
|
(x-error "improper syntax-length form" (cons 'syntax-length tail))))
|
|
|
|
|
|
|
|
(define (xform-syntax-error tail env)
|
|
|
|
(let ([args (map xform-sexp->datum tail)])
|
|
|
|
(if (and (list1+? args) (string? (car args)))
|
|
|
|
(apply x-error args)
|
|
|
|
(x-error "improper syntax-error form" (cons 'syntax-error tail)))))
|
|
|
|
|
2023-04-16 03:03:39 +02:00
|
|
|
(define *transformers*
|
2023-03-01 23:36:24 +01:00
|
|
|
(list
|
2024-07-07 03:03:12 +02:00
|
|
|
(cons 'syntax-quote 'syntax-quote)
|
2023-04-16 03:03:39 +02:00
|
|
|
(cons 'quote 'quote)
|
|
|
|
(cons 'set! 'set!)
|
|
|
|
(cons 'set& 'set&)
|
|
|
|
(cons 'if 'if)
|
|
|
|
(cons 'lambda 'lambda)
|
|
|
|
(cons 'lambda* 'lambda*)
|
|
|
|
(cons 'letcc 'letcc)
|
|
|
|
(cons 'withcc 'withcc)
|
|
|
|
(cons 'body 'body)
|
|
|
|
(cons 'begin 'begin)
|
|
|
|
(cons 'define 'define)
|
|
|
|
(cons 'define-syntax 'define-syntax)
|
|
|
|
(cons 'syntax-lambda 'syntax-lambda)
|
|
|
|
(cons 'syntax-rules 'syntax-rules)
|
|
|
|
(cons 'syntax-length 'syntax-length)
|
|
|
|
(cons 'syntax-error 'syntax-error)
|
2024-07-05 19:09:50 +02:00
|
|
|
(cons 'define-library 'define-library)
|
|
|
|
(cons 'import 'import)
|
2023-04-16 03:03:39 +02:00
|
|
|
(cons '... '...)))
|
|
|
|
|
|
|
|
(define *top-transformer-env* #f)
|
2023-03-01 23:36:24 +01:00
|
|
|
|
2023-03-03 01:27:09 +01:00
|
|
|
(define (top-transformer-env id)
|
2023-04-16 03:03:39 +02:00
|
|
|
(unless *top-transformer-env*
|
|
|
|
(set! *top-transformer-env*
|
|
|
|
(map (lambda (bnd)
|
|
|
|
(let ([v (cdr bnd)])
|
|
|
|
(when (and (pair? v) (eq? (car v) 'syntax-rules))
|
|
|
|
(set! v
|
|
|
|
(if (id? (cadr v))
|
|
|
|
(syntax-rules* top-transformer-env (cadr v) (caddr v) (cdddr v))
|
|
|
|
(syntax-rules* top-transformer-env #f (cadr v) (cddr v)))))
|
|
|
|
(cons (car bnd) (make-location v))))
|
|
|
|
*transformers*)))
|
|
|
|
(if (procedure? id)
|
|
|
|
(old-den id) ; nonsymbolic ids can't be globally bound
|
|
|
|
(cond [(assq id *top-transformer-env*)
|
|
|
|
=> cdr]
|
|
|
|
[else
|
|
|
|
(let ([loc (make-location (or (lookup-integrable id) (list 'ref id)))])
|
|
|
|
(set! *top-transformer-env* (cons (cons id loc) *top-transformer-env*))
|
|
|
|
loc)])))
|
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-03-01 23:36:24 +01:00
|
|
|
(define (install-transformer! s t)
|
2023-04-16 03:03:39 +02:00
|
|
|
(location-set-val! (top-transformer-env s) t))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-03-01 23:36:24 +01:00
|
|
|
(define (transform appos? sexp . optenv)
|
2023-03-10 23:30:41 +01:00
|
|
|
; (gensym #f) ; reset gs counter to make results reproducible
|
2023-03-03 01:27:09 +01:00
|
|
|
(xform appos? sexp (if (null? optenv) top-transformer-env (car optenv))))
|
2023-03-01 23:36:24 +01:00
|
|
|
|
|
|
|
|
2023-04-14 00:31:20 +02:00
|
|
|
; make transformer procedure from the rules
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (syntax-rules* mac-env ellipsis pat-literals rules)
|
2023-04-14 17:34:47 +02:00
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
(define (pat-literal? id) (memq id pat-literals))
|
|
|
|
(define (not-pat-literal? id) (not (pat-literal? id)))
|
|
|
|
(define (ellipsis-pair? x)
|
|
|
|
(and (pair? x) (ellipsis? (car x))))
|
2023-04-14 17:34:47 +02:00
|
|
|
(define (ellipsis-denotation? den)
|
2023-04-16 03:03:39 +02:00
|
|
|
(eq? (location-val den) '...)) ; fixme: need eq? with correct #&...
|
2023-02-28 06:31:08 +01:00
|
|
|
(define (ellipsis? x)
|
|
|
|
(if ellipsis
|
|
|
|
(eq? x ellipsis)
|
2023-04-14 17:34:47 +02:00
|
|
|
(and (id? x) (ellipsis-denotation? (mac-env x)))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
; List-ids returns a list of the non-ellipsis ids in a
|
|
|
|
; pattern or template for which (pred? id) is true. If
|
|
|
|
; include-scalars is false, we only include ids that are
|
|
|
|
; within the scope of at least one ellipsis.
|
|
|
|
(define (list-ids x include-scalars pred?)
|
|
|
|
(let collect ([x x] [inc include-scalars] [l '()])
|
|
|
|
(cond [(id? x) (if (and inc (pred? x)) (cons x l) l)]
|
|
|
|
[(vector? x) (collect (vector->list x) inc l)]
|
|
|
|
[(pair? x)
|
|
|
|
(if (ellipsis-pair? (cdr x))
|
|
|
|
(collect (car x) #t (collect (cddr x) inc l))
|
|
|
|
(collect (car x) inc (collect (cdr x) inc l)))]
|
|
|
|
[else l])))
|
|
|
|
|
|
|
|
; Returns #f or an alist mapping each pattern var to a part of
|
|
|
|
; the input. Ellipsis vars are mapped to lists of parts (or
|
|
|
|
; lists of lists ...).
|
|
|
|
(define (match-pattern pat use use-env)
|
|
|
|
(call-with-current-continuation
|
|
|
|
(lambda (return)
|
|
|
|
(define (fail) (return #f))
|
|
|
|
(let match ([pat pat] [sexp use] [bindings '()])
|
|
|
|
(define (continue-if condition)
|
|
|
|
(if condition bindings (fail)))
|
|
|
|
(cond
|
|
|
|
[(id? pat)
|
|
|
|
(if (pat-literal? pat)
|
|
|
|
(continue-if (and (id? sexp) (eq? (use-env sexp) (mac-env pat))))
|
|
|
|
(cons (cons pat sexp) bindings))]
|
|
|
|
[(vector? pat)
|
|
|
|
(or (vector? sexp) (fail))
|
|
|
|
(match (vector->list pat) (vector->list sexp) bindings)]
|
|
|
|
[(not (pair? pat))
|
|
|
|
(continue-if (equal? pat sexp))]
|
|
|
|
[(ellipsis-pair? (cdr pat))
|
|
|
|
(let* ([tail-len (length (cddr pat))]
|
|
|
|
[sexp-len (if (list? sexp) (length sexp) (fail))]
|
|
|
|
[seq-len (fx- sexp-len tail-len)]
|
|
|
|
[sexp-tail (begin (if (negative? seq-len) (fail)) (list-tail sexp seq-len))]
|
|
|
|
[seq (reverse (list-tail (reverse sexp) tail-len))]
|
|
|
|
[vars (list-ids (car pat) #t not-pat-literal?)])
|
|
|
|
(define (match1 sexp)
|
|
|
|
(map cdr (match (car pat) sexp '())))
|
|
|
|
(append
|
|
|
|
(apply map (cons list (cons vars (map match1 seq))))
|
|
|
|
(match (cddr pat) sexp-tail bindings)))]
|
|
|
|
[(pair? sexp)
|
|
|
|
(match (car pat) (car sexp)
|
|
|
|
(match (cdr pat) (cdr sexp) bindings))]
|
|
|
|
[else (fail)])))))
|
|
|
|
|
|
|
|
(define (expand-template pat tmpl top-bindings)
|
|
|
|
; New-literals is an alist mapping each literal id in the
|
|
|
|
; template to a fresh id for inserting into the output. It
|
|
|
|
; might have duplicate entries mapping an id to two different
|
|
|
|
; fresh ids, but that's okay because when we go to retrieve a
|
|
|
|
; fresh id, assq will always retrieve the first one.
|
|
|
|
(define new-literals
|
2023-04-16 00:08:08 +02:00
|
|
|
(map (lambda (id) (cons id (new-id (id->sym id) (mac-env id))))
|
2023-03-01 23:36:24 +01:00
|
|
|
(list-ids tmpl #t
|
|
|
|
(lambda (id) (not (assq id top-bindings))))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define ellipsis-vars
|
|
|
|
(list-ids pat #f not-pat-literal?))
|
|
|
|
|
|
|
|
(define (list-ellipsis-vars subtmpl)
|
|
|
|
(list-ids subtmpl #t
|
|
|
|
(lambda (id) (memq id ellipsis-vars))))
|
|
|
|
|
|
|
|
(let expand ([tmpl tmpl] [bindings top-bindings])
|
|
|
|
(let expand-part ([tmpl tmpl])
|
|
|
|
(cond
|
|
|
|
[(id? tmpl)
|
|
|
|
(cdr (or (assq tmpl bindings)
|
|
|
|
(assq tmpl top-bindings)
|
|
|
|
(assq tmpl new-literals)))]
|
|
|
|
[(vector? tmpl)
|
|
|
|
(list->vector (expand-part (vector->list tmpl)))]
|
2023-03-18 21:07:10 +01:00
|
|
|
[(and (pair? tmpl) (ellipsis-pair? (cdr tmpl)))
|
|
|
|
(let ([vars-to-iterate (list-ellipsis-vars (car tmpl))])
|
|
|
|
(define (lookup var)
|
|
|
|
(cdr (assq var bindings)))
|
|
|
|
(define (expand-using-vals . vals)
|
|
|
|
(expand (car tmpl)
|
|
|
|
(map cons vars-to-iterate vals)))
|
|
|
|
(if (null? vars-to-iterate)
|
|
|
|
; ellipsis following non-repeatable part is an error, but we don't care
|
|
|
|
(cons (expand-part (car tmpl)) (expand-part (cddr tmpl))) ; repeat once
|
|
|
|
; correct use of ellipsis
|
2023-02-28 06:31:08 +01:00
|
|
|
(let ([val-lists (map lookup vars-to-iterate)])
|
|
|
|
(append
|
|
|
|
(apply map (cons expand-using-vals val-lists))
|
2023-03-18 21:07:10 +01:00
|
|
|
(expand-part (cddr tmpl))))))]
|
|
|
|
[(pair? tmpl)
|
|
|
|
(cons (expand-part (car tmpl)) (expand-part (cdr tmpl)))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[else tmpl]))))
|
|
|
|
|
|
|
|
(lambda (use use-env)
|
|
|
|
(let loop ([rules rules])
|
2023-03-21 23:02:01 +01:00
|
|
|
(if (null? rules) (x-error "invalid syntax" use))
|
2023-02-28 06:31:08 +01:00
|
|
|
(let* ([rule (car rules)] [pat (car rule)] [tmpl (cadr rule)])
|
|
|
|
(cond [(match-pattern pat use use-env) =>
|
|
|
|
(lambda (bindings) (expand-template pat tmpl bindings))]
|
|
|
|
[else (loop (cdr rules))])))))
|
|
|
|
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
2023-04-14 00:31:20 +02:00
|
|
|
; Runtime globals
|
2023-02-28 06:31:08 +01:00
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2023-03-01 00:05:08 +01:00
|
|
|
(%localdef "#include \"i.h\"")
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define *globals* '())
|
|
|
|
|
2023-03-30 05:18:39 +02:00
|
|
|
(define *dynamic-state* (list #f)) ; for dynamic-wind
|
|
|
|
|
2023-03-31 00:13:07 +02:00
|
|
|
(define *current-input* #f)
|
|
|
|
(define *current-output* #f)
|
|
|
|
(define *current-error* #f)
|
|
|
|
|
2023-03-30 05:18:39 +02:00
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; String representation of S-expressions and code arguments
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2023-03-21 23:02:01 +01:00
|
|
|
(define (c-error msg . args)
|
2023-03-22 18:21:48 +01:00
|
|
|
(error* (string-append "compiler: " msg) args))
|
2023-03-21 23:02:01 +01:00
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
(define (write-serialized-char x port)
|
|
|
|
(cond [(or (char=? x #\%) (char=? x #\") (char=? x #\\) (char<? x #\space) (char>? x #\~))
|
|
|
|
(write-char #\% port)
|
|
|
|
(let ([s (fixnum->string (char->integer x) 16)])
|
|
|
|
(if (fx=? (string-length s) 1) (write-char #\0 port))
|
|
|
|
(write-string s port))]
|
|
|
|
[else (write-char x port)]))
|
|
|
|
|
2023-03-26 19:20:33 +02:00
|
|
|
(define (write-serialized-byte x port)
|
|
|
|
(let ([s (fixnum->string x 16)])
|
|
|
|
(if (fx=? (string-length s) 1) (write-char #\0 port))
|
|
|
|
(write-string s port)))
|
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
(define (write-serialized-size n port)
|
|
|
|
(write-string (fixnum->string n 10) port)
|
|
|
|
(write-char #\: port))
|
|
|
|
|
|
|
|
(define (write-serialized-element x port)
|
|
|
|
(write-serialized-sexp x port)
|
|
|
|
(write-char #\; port))
|
|
|
|
|
|
|
|
(define (write-serialized-sexp x port)
|
|
|
|
(cond [(eq? x #f)
|
|
|
|
(write-char #\f port)]
|
|
|
|
[(eq? x #t)
|
|
|
|
(write-char #\t port)]
|
|
|
|
[(eq? x '())
|
|
|
|
(write-char #\n port)]
|
|
|
|
[(char? x)
|
|
|
|
(write-char #\c port)
|
|
|
|
(write-serialized-char x port)]
|
|
|
|
[(number? x)
|
|
|
|
(write-char (if (exact? x) #\i #\j) port)
|
|
|
|
(write-string (number->string x 10) port)]
|
|
|
|
[(list? x)
|
|
|
|
(write-char #\l port)
|
|
|
|
(write-serialized-size (length x) port)
|
|
|
|
(do ([x x (cdr x)]) [(null? x)]
|
|
|
|
(write-serialized-element (car x) port))]
|
|
|
|
[(pair? x)
|
|
|
|
(write-char #\p port)
|
|
|
|
(write-serialized-element (car x) port)
|
|
|
|
(write-serialized-element (cdr x) port)]
|
|
|
|
[(vector? x)
|
|
|
|
(write-char #\v port)
|
|
|
|
(write-serialized-size (vector-length x) port)
|
|
|
|
(do ([i 0 (fx+ i 1)]) [(fx=? i (vector-length x))]
|
|
|
|
(write-serialized-element (vector-ref x i) port))]
|
|
|
|
[(string? x)
|
|
|
|
(write-char #\s port)
|
|
|
|
(write-serialized-size (string-length x) port)
|
|
|
|
(do ([i 0 (fx+ i 1)]) [(fx=? i (string-length x))]
|
|
|
|
(write-serialized-char (string-ref x i) port))]
|
2023-03-26 19:20:33 +02:00
|
|
|
[(bytevector? x)
|
|
|
|
(write-char #\b port)
|
|
|
|
(write-serialized-size (bytevector-length x) port)
|
|
|
|
(do ([i 0 (fx+ i 1)]) [(fx=? i (bytevector-length x))]
|
|
|
|
(write-serialized-byte (bytevector-u8-ref x i) port))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[(symbol? x)
|
|
|
|
(write-char #\y port)
|
|
|
|
(let ([x (symbol->string x)])
|
|
|
|
(write-serialized-size (string-length x) port)
|
|
|
|
(do ([i 0 (fx+ i 1)]) [(fx=? i (string-length x))]
|
|
|
|
(write-serialized-char (string-ref x i) port)))]
|
2023-04-20 17:03:14 +02:00
|
|
|
[(box? x)
|
|
|
|
(write-char #\z port)
|
|
|
|
(write-serialized-element (unbox x) port)]
|
2023-03-24 21:34:11 +01:00
|
|
|
[else (c-error "cannot encode literal" x)]))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (write-serialized-arg arg port)
|
|
|
|
(if (and (number? arg) (exact? arg) (fx<=? 0 arg) (fx<=? arg 9))
|
|
|
|
(write-char (string-ref "0123456789" arg) port)
|
|
|
|
(begin (write-char #\( port)
|
|
|
|
(write-serialized-sexp arg port)
|
|
|
|
(write-char #\) port))))
|
|
|
|
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; Compiler producing serialized code
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
(define find-free*
|
|
|
|
(lambda (x* b)
|
|
|
|
(if (null? x*)
|
|
|
|
'()
|
|
|
|
(set-union
|
|
|
|
(find-free (car x*) b)
|
|
|
|
(find-free* (cdr x*) b)))))
|
|
|
|
|
|
|
|
(define find-free
|
|
|
|
(lambda (x b)
|
|
|
|
(record-case x
|
|
|
|
[quote (obj)
|
|
|
|
'()]
|
|
|
|
[ref (id)
|
|
|
|
(if (set-member? id b) '() (list id))]
|
|
|
|
[set! (id exp)
|
|
|
|
(set-union
|
|
|
|
(if (set-member? id b) '() (list id))
|
|
|
|
(find-free exp b))]
|
2023-03-12 21:54:44 +01:00
|
|
|
[set& (id)
|
|
|
|
(if (set-member? id b) '() (list id))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[lambda (idsi exp)
|
|
|
|
(find-free exp (set-union (flatten-idslist idsi) b))]
|
2023-03-07 19:11:46 +01:00
|
|
|
[lambda* clauses
|
|
|
|
(find-free* (map cadr clauses) b)]
|
2023-03-10 23:30:41 +01:00
|
|
|
[letcc (kid exp)
|
|
|
|
(find-free exp (set-union (list kid) b))]
|
|
|
|
[withcc (kexp exp)
|
|
|
|
(set-union (find-free kexp b) (find-free exp b))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[if (test then else)
|
|
|
|
(set-union
|
|
|
|
(find-free test b)
|
|
|
|
(set-union (find-free then b) (find-free else b)))]
|
|
|
|
[begin exps
|
|
|
|
(find-free* exps b)]
|
2023-03-19 00:13:38 +01:00
|
|
|
[integrable (ig . args)
|
|
|
|
(find-free* args b)]
|
2023-02-28 06:31:08 +01:00
|
|
|
[call (exp . args)
|
2023-03-24 19:16:10 +01:00
|
|
|
(set-union (find-free exp b) (find-free* args b))]
|
|
|
|
[define tail
|
|
|
|
(c-error "misplaced define form" x)])))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define find-sets*
|
|
|
|
(lambda (x* v)
|
|
|
|
(if (null? x*)
|
|
|
|
'()
|
|
|
|
(set-union
|
|
|
|
(find-sets (car x*) v)
|
|
|
|
(find-sets* (cdr x*) v)))))
|
|
|
|
|
|
|
|
(define find-sets
|
|
|
|
(lambda (x v)
|
|
|
|
(record-case x
|
|
|
|
[quote (obj)
|
|
|
|
'()]
|
|
|
|
[ref (id)
|
|
|
|
'()]
|
|
|
|
[set! (id x)
|
|
|
|
(set-union
|
|
|
|
(if (set-member? id v) (list id) '())
|
|
|
|
(find-sets x v))]
|
2023-03-12 21:54:44 +01:00
|
|
|
[set& (id)
|
|
|
|
(if (set-member? id v) (list id) '())]
|
2023-02-28 06:31:08 +01:00
|
|
|
[lambda (idsi exp)
|
|
|
|
(find-sets exp (set-minus v (flatten-idslist idsi)))]
|
2023-03-07 19:11:46 +01:00
|
|
|
[lambda* clauses
|
|
|
|
(find-sets* (map cadr clauses) v)]
|
2023-03-10 23:30:41 +01:00
|
|
|
[letcc (kid exp)
|
|
|
|
(find-sets exp (set-minus v (list kid)))]
|
|
|
|
[withcc (kexp exp)
|
|
|
|
(set-union (find-sets kexp v) (find-sets exp v))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[begin exps
|
|
|
|
(find-sets* exps v)]
|
|
|
|
[if (test then else)
|
|
|
|
(set-union
|
|
|
|
(find-sets test v)
|
|
|
|
(set-union (find-sets then v) (find-sets else v)))]
|
2023-03-19 00:13:38 +01:00
|
|
|
[integrable (ig . args)
|
|
|
|
(find-sets* args v)]
|
2023-02-28 06:31:08 +01:00
|
|
|
[call (exp . args)
|
2023-03-24 19:16:10 +01:00
|
|
|
(set-union (find-sets exp v) (find-sets* args v))]
|
|
|
|
[define tail
|
|
|
|
(c-error "misplaced define form" x)])))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define codegen
|
|
|
|
; x: Scheme Core expression to compile
|
|
|
|
; l: local var list (with #f placeholders for nonvar slots)
|
|
|
|
; f: free var list
|
|
|
|
; s: set! var set
|
|
|
|
; g: global var set
|
|
|
|
; k: #f: x goes to ac, N: x is to be returned after (sdrop n)
|
|
|
|
; port: output code goes here
|
|
|
|
(lambda (x l f s g k port)
|
|
|
|
(record-case x
|
|
|
|
[quote (obj)
|
|
|
|
(case obj
|
|
|
|
[(#t) (write-char #\t port)]
|
|
|
|
[(#f) (write-char #\f port)]
|
|
|
|
[(()) (write-char #\n port)]
|
|
|
|
[else (write-char #\' port) (write-serialized-arg obj port)])
|
|
|
|
(when k (write-char #\] port) (write-serialized-arg k port))]
|
|
|
|
[ref (id)
|
|
|
|
(cond [(posq id l) => ; local
|
|
|
|
(lambda (n)
|
|
|
|
(write-char #\. port)
|
|
|
|
(write-serialized-arg n port)
|
|
|
|
(if (set-member? id s) (write-char #\^ port)))]
|
|
|
|
[(posq id f) => ; free
|
|
|
|
(lambda (n)
|
|
|
|
(write-char #\: port)
|
|
|
|
(write-serialized-arg n port)
|
|
|
|
(if (set-member? id s) (write-char #\^ port)))]
|
|
|
|
[else ; global
|
|
|
|
(write-char #\@ port)
|
|
|
|
(write-serialized-arg id port)])
|
|
|
|
(when k (write-char #\] port) (write-serialized-arg k port))]
|
|
|
|
[set! (id x)
|
|
|
|
(codegen x l f s g #f port)
|
|
|
|
(cond [(posq id l) => ; local
|
|
|
|
(lambda (n)
|
|
|
|
(write-char #\. port) (write-char #\! port)
|
|
|
|
(write-serialized-arg n port))]
|
|
|
|
[(posq id f) => ; free
|
|
|
|
(lambda (n)
|
|
|
|
(write-char #\: port) (write-char #\! port)
|
|
|
|
(write-serialized-arg n port))]
|
|
|
|
[else ; global
|
|
|
|
(write-char #\@ port) (write-char #\! port)
|
|
|
|
(write-serialized-arg id port)])
|
|
|
|
(when k (write-char #\] port) (write-serialized-arg k port))]
|
2023-03-12 21:54:44 +01:00
|
|
|
[set& (id)
|
|
|
|
(cond [(posq id l) => ; local
|
|
|
|
(lambda (n)
|
|
|
|
(write-char #\. port)
|
|
|
|
(write-serialized-arg n port))]
|
|
|
|
[(posq id f) => ; free
|
|
|
|
(lambda (n)
|
|
|
|
(write-char #\: port)
|
|
|
|
(write-serialized-arg n port))]
|
|
|
|
[else ; global
|
|
|
|
(write-char #\` port)
|
|
|
|
(write-serialized-arg id port)])
|
|
|
|
(when k (write-char #\] port) (write-serialized-arg k port))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[begin exps
|
|
|
|
(let loop ([xl exps])
|
|
|
|
(when (pair? xl)
|
|
|
|
(let ([k (if (pair? (cdr xl)) #f k)])
|
|
|
|
(codegen (car xl) l f s g k port)
|
|
|
|
(loop (cdr xl)))))
|
|
|
|
(when (and k (null? exps)) (write-char #\] port) (write-serialized-arg k port))]
|
|
|
|
[if (test then else)
|
|
|
|
(codegen test l f s g #f port)
|
|
|
|
(write-char #\? port)
|
|
|
|
(write-char #\{ port)
|
|
|
|
(codegen then l f s g k port)
|
|
|
|
(write-char #\} port)
|
|
|
|
(cond [k ; tail call: 'then' arm exits, so br around is not needed
|
|
|
|
(codegen else l f s g k port)]
|
|
|
|
[(equal? else '(begin)) ; non-tail with void 'else' arm
|
|
|
|
] ; no code needed -- ac retains #f from failed test
|
|
|
|
[else ; non-tail with 'else' expression; needs br
|
|
|
|
(write-char #\{ port)
|
|
|
|
(codegen else l f s g k port)
|
|
|
|
(write-char #\} port)])]
|
|
|
|
[lambda (idsi exp)
|
|
|
|
(let* ([ids (flatten-idslist idsi)]
|
|
|
|
[free (set-minus (find-free exp ids) g)]
|
|
|
|
[sets (find-sets exp ids)])
|
|
|
|
(do ([free (reverse free) (cdr free)] [l l (cons #f l)]) [(null? free)]
|
|
|
|
; note: called with empty set! var list
|
|
|
|
; to make sure no dereferences are generated
|
|
|
|
(codegen (list 'ref (car free)) l f '() g #f port)
|
|
|
|
(write-char #\, port))
|
|
|
|
(write-char #\& port)
|
|
|
|
(write-serialized-arg (length free) port)
|
|
|
|
(write-char #\{ port)
|
|
|
|
(cond [(list? idsi)
|
|
|
|
(write-char #\% port)
|
|
|
|
(write-serialized-arg (length idsi) port)]
|
|
|
|
[else
|
|
|
|
(write-char #\% port) (write-char #\! port)
|
|
|
|
(write-serialized-arg (idslist-req-count idsi) port)])
|
|
|
|
(do ([ids ids (cdr ids)] [n 0 (fx+ n 1)]) [(null? ids)]
|
|
|
|
(when (set-member? (car ids) sets)
|
|
|
|
(write-char #\# port)
|
|
|
|
(write-serialized-arg n port)))
|
|
|
|
(codegen exp ids free
|
|
|
|
(set-union sets (set-intersect s free))
|
|
|
|
g (length ids) port)
|
|
|
|
(write-char #\} port))
|
|
|
|
(when k (write-char #\] port) (write-serialized-arg k port))]
|
2023-03-07 19:11:46 +01:00
|
|
|
[lambda* clauses
|
|
|
|
(do ([clauses (reverse clauses) (cdr clauses)] [l l (cons #f l)])
|
|
|
|
[(null? clauses)]
|
|
|
|
(codegen (cadr (car clauses)) l f s g #f port)
|
2023-03-07 19:42:29 +01:00
|
|
|
(write-char #\% port) (write-char #\x port)
|
2023-03-07 19:11:46 +01:00
|
|
|
(write-char #\, port))
|
|
|
|
(write-char #\& port)
|
|
|
|
(write-serialized-arg (length clauses) port)
|
|
|
|
(write-char #\{ port)
|
|
|
|
(do ([clauses clauses (cdr clauses)] [i 0 (fx+ i 1)])
|
|
|
|
[(null? clauses)]
|
|
|
|
(let* ([arity (caar clauses)] [cnt (car arity)] [rest? (cadr arity)])
|
|
|
|
(write-char #\| port)
|
|
|
|
(if rest? (write-char #\! port))
|
|
|
|
(write-serialized-arg cnt port)
|
|
|
|
(write-serialized-arg i port)))
|
|
|
|
(write-char #\% port) (write-char #\% port)
|
|
|
|
(write-char #\} port)
|
|
|
|
(when k (write-char #\] port) (write-serialized-arg k port))]
|
2023-03-10 23:30:41 +01:00
|
|
|
[letcc (kid exp)
|
|
|
|
(let* ([ids (list kid)] [sets (find-sets exp ids)]
|
2023-03-11 18:28:51 +01:00
|
|
|
[news (set-union (set-minus s ids) sets)])
|
2023-03-10 23:30:41 +01:00
|
|
|
(cond [k ; tail position with k locals on stack to be disposed of
|
|
|
|
(write-char #\k port) (write-serialized-arg k port)
|
|
|
|
(write-char #\, port)
|
|
|
|
(when (set-member? kid sets)
|
|
|
|
(write-char #\# port) (write-char #\0 port))
|
2023-03-11 18:28:51 +01:00
|
|
|
; stack map here: kid on top
|
|
|
|
(codegen exp (cons kid l) f news g (fx+ k 1) port)]
|
2023-03-10 23:30:41 +01:00
|
|
|
[else ; non-tail position
|
|
|
|
(write-char #\$ port) (write-char #\{ port)
|
|
|
|
(write-char #\k port) (write-char #\0 port)
|
|
|
|
(write-char #\, port)
|
|
|
|
(when (set-member? kid sets)
|
|
|
|
(write-char #\# port) (write-char #\0 port))
|
2023-03-11 18:28:51 +01:00
|
|
|
; stack map here: kid on top, two-slot frame under it
|
|
|
|
(codegen exp (cons kid (cons #f (cons #f l))) f news g #f port)
|
2023-03-10 23:30:41 +01:00
|
|
|
(write-char #\_ port) (write-serialized-arg 3 port)
|
|
|
|
(write-char #\} port)]))]
|
|
|
|
[withcc (kexp exp)
|
|
|
|
(cond [(memq (car exp) '(quote ref lambda)) ; exp is a constant, return it
|
|
|
|
(codegen exp l f s g #f port)
|
2023-03-11 18:28:51 +01:00
|
|
|
(write-char #\, port) ; stack map after: k on top
|
2023-03-10 23:30:41 +01:00
|
|
|
(codegen kexp (cons #f l) f s g #f port)
|
|
|
|
(write-char #\w port) (write-char #\! port)]
|
|
|
|
[else ; exp is not a constant, thunk it and call it from k
|
|
|
|
(codegen (list 'lambda '() exp) l f s g #f port)
|
2023-03-11 18:28:51 +01:00
|
|
|
(write-char #\, port) ; stack map after: k on top
|
2023-03-10 23:30:41 +01:00
|
|
|
(codegen kexp (cons #f l) f s g #f port)
|
|
|
|
(write-char #\w port)])]
|
2023-03-19 00:13:38 +01:00
|
|
|
[integrable (ig . args)
|
|
|
|
(let ([igty (integrable-type ig)] [igc0 (integrable-code ig 0)])
|
|
|
|
(case igty
|
|
|
|
[(#\0 #\1 #\2 #\3) ; 1st arg in a, others on stack
|
|
|
|
(do ([args (reverse args) (cdr args)] [l l (cons #f l)])
|
|
|
|
[(null? args)]
|
|
|
|
(codegen (car args) l f s g #f port)
|
|
|
|
(unless (null? (cdr args)) (write-char #\, port)))
|
|
|
|
(write-string igc0 port)]
|
2023-03-20 04:31:28 +01:00
|
|
|
[(#\p) ; (length args) >= 0
|
|
|
|
(if (null? args)
|
|
|
|
(let ([igc1 (integrable-code ig 1)])
|
|
|
|
(write-string igc1 port))
|
|
|
|
(let ([opc (fx- (length args) 1)])
|
|
|
|
(do ([args (reverse args) (cdr args)] [l l (cons #f l)])
|
|
|
|
[(null? args)]
|
|
|
|
(codegen (car args) l f s g #f port)
|
|
|
|
(unless (null? (cdr args)) (write-char #\, port)))
|
|
|
|
(do ([i 0 (fx+ i 1)]) [(fx>=? i opc)]
|
|
|
|
(write-string igc0 port))))]
|
|
|
|
[(#\m) ; (length args) >= 1
|
|
|
|
(if (null? (cdr args))
|
|
|
|
(let ([igc1 (integrable-code ig 1)])
|
|
|
|
(codegen (car args) l f s g #f port)
|
|
|
|
(write-string igc1 port))
|
|
|
|
(let ([opc (fx- (length args) 1)])
|
|
|
|
(do ([args (reverse args) (cdr args)] [l l (cons #f l)])
|
|
|
|
[(null? args)]
|
|
|
|
(codegen (car args) l f s g #f port)
|
|
|
|
(unless (null? (cdr args)) (write-char #\, port)))
|
|
|
|
(do ([i 0 (fx+ i 1)]) [(fx>=? i opc)]
|
|
|
|
(write-string igc0 port))))]
|
2023-03-20 05:23:42 +01:00
|
|
|
[(#\c) ; (length args) >= 2
|
|
|
|
(let ([opc (fx- (length args) 1)] [args (reverse args)])
|
|
|
|
(codegen (car args) l f s g #f port)
|
|
|
|
(write-char #\, port)
|
|
|
|
(do ([args (cdr args) (cdr args)] [l (cons #f l) (cons #f (cons #f l))])
|
|
|
|
[(null? args)]
|
|
|
|
(codegen (car args) l f s g #f port)
|
|
|
|
(unless (null? (cdr args)) (write-char #\, port) (write-char #\, port)))
|
|
|
|
(do ([i 0 (fx+ i 1)]) [(fx>=? i opc)]
|
|
|
|
(unless (fxzero? i) (write-char #\; port))
|
|
|
|
(write-string igc0 port)))]
|
2023-03-20 18:49:00 +01:00
|
|
|
[(#\x) ; (length args) >= 1
|
|
|
|
(let ([opc (fx- (length args) 1)])
|
|
|
|
(do ([args (reverse args) (cdr args)] [l l (cons #f l)])
|
|
|
|
[(null? args)]
|
|
|
|
(codegen (car args) l f s g #f port)
|
|
|
|
(unless (null? (cdr args)) (write-char #\, port)))
|
|
|
|
(do ([i 0 (fx+ i 1)]) [(fx>=? i opc)]
|
|
|
|
(write-string igc0 port)))]
|
2023-03-20 21:43:06 +01:00
|
|
|
[(#\u) ; 0 <= (length args) <= 1
|
|
|
|
(if (null? args)
|
|
|
|
(write-string (integrable-code ig 1) port)
|
|
|
|
(codegen (car args) l f s g #f port))
|
|
|
|
(write-string igc0 port)]
|
|
|
|
[(#\b) ; 1 <= (length args) <= 2
|
|
|
|
(if (null? (cdr args))
|
|
|
|
(write-string (integrable-code ig 1) port)
|
|
|
|
(codegen (cadr args) l f s g #f port))
|
|
|
|
(write-char #\, port)
|
|
|
|
(codegen (car args) (cons #f l) f s g #f port)
|
|
|
|
(write-string igc0 port)]
|
2023-03-28 21:39:00 +02:00
|
|
|
[(#\t) ; 2 <= (length args) <= 3
|
|
|
|
(if (null? (cddr args))
|
|
|
|
(write-string (integrable-code ig 1) port)
|
|
|
|
(codegen (caddr args) l f s g #f port))
|
|
|
|
(write-char #\, port)
|
|
|
|
(codegen (cadr args) (cons #f l) f s g #f port)
|
|
|
|
(write-char #\, port)
|
|
|
|
(codegen (car args) (cons #f (cons #f l)) f s g #f port)
|
|
|
|
(write-string igc0 port)]
|
2023-03-21 03:32:33 +01:00
|
|
|
[(#\#) ; (length args) >= 0
|
|
|
|
(do ([args (reverse args) (cdr args)] [l l (cons #f l)])
|
|
|
|
[(null? args)]
|
|
|
|
(codegen (car args) l f s g #f port)
|
|
|
|
(write-char #\, port))
|
|
|
|
(write-string igc0 port)
|
|
|
|
(write-serialized-arg (length args) port)]
|
2023-03-21 23:02:01 +01:00
|
|
|
[else (c-error "unsupported integrable type" igty)]))
|
2023-03-19 19:52:49 +01:00
|
|
|
(when k (write-char #\] port) (write-serialized-arg k port))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[call (exp . args)
|
|
|
|
(cond [(and (eq? (car exp) 'lambda) (list? (cadr exp))
|
|
|
|
(fx=? (length args) (length (cadr exp))))
|
|
|
|
; let-like call; compile as special lambda + call combo
|
|
|
|
(do ([args (reverse args) (cdr args)] [l l (cons #f l)])
|
|
|
|
[(null? args)]
|
|
|
|
(codegen (car args) l f s g #f port)
|
|
|
|
(write-char #\, port))
|
|
|
|
(let* ([ids (cadr exp)] [exp (caddr exp)]
|
|
|
|
[sets (find-sets exp ids)]
|
|
|
|
[news (set-union (set-minus s ids) sets)]
|
|
|
|
[newl (append ids l)]) ; with real names
|
|
|
|
(do ([ids ids (cdr ids)] [n 0 (fx+ n 1)]) [(null? ids)]
|
|
|
|
(when (set-member? (car ids) sets)
|
|
|
|
(write-char #\# port)
|
|
|
|
(write-serialized-arg n port)))
|
|
|
|
(if k
|
|
|
|
(codegen exp newl f news g (fx+ k (length args)) port)
|
|
|
|
(begin
|
|
|
|
(codegen exp newl f news g #f port)
|
|
|
|
(write-char #\_ port)
|
|
|
|
(write-serialized-arg (length args) port))))]
|
2023-03-21 20:29:28 +01:00
|
|
|
[k ; tail call with k elements under arguments
|
2023-02-28 06:31:08 +01:00
|
|
|
(do ([args (reverse args) (cdr args)] [l l (cons #f l)])
|
|
|
|
[(null? args) (codegen exp l f s g #f port)]
|
|
|
|
(codegen (car args) l f s g #f port)
|
|
|
|
(write-char #\, port))
|
|
|
|
(write-char #\[ port)
|
|
|
|
(write-serialized-arg k port)
|
|
|
|
(write-serialized-arg (length args) port)]
|
2023-03-21 20:29:28 +01:00
|
|
|
[else ; non-tail call; 'save' puts 2 extra elements on the stack!
|
2023-02-28 06:31:08 +01:00
|
|
|
(write-char #\$ port) (write-char #\{ port)
|
|
|
|
(do ([args (reverse args) (cdr args)] [l (cons #f (cons #f l)) (cons #f l)])
|
|
|
|
[(null? args) (codegen exp l f s g #f port)]
|
|
|
|
(codegen (car args) l f s g #f port)
|
|
|
|
(write-char #\, port))
|
|
|
|
(write-char #\[ port)
|
|
|
|
(write-serialized-arg 0 port)
|
|
|
|
(write-serialized-arg (length args) port)
|
2023-03-24 19:16:10 +01:00
|
|
|
(write-char #\} port)])]
|
|
|
|
[define tail
|
|
|
|
(c-error "misplaced define form" x)])))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (compile-to-string x)
|
|
|
|
(let ([p (open-output-string)])
|
|
|
|
(codegen x '() '() '() (find-free x '()) #f p)
|
|
|
|
(get-output-string p)))
|
|
|
|
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; Code deserializer and Evaluator (use built-ins)
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
(define execute-thunk-closure
|
|
|
|
(%prim "{ /* define execute-thunk-closure */
|
|
|
|
static obj c[] = { obj_from_objptr(vmcases+0) };
|
|
|
|
$return objptr(c); }"))
|
|
|
|
|
|
|
|
(define make-closure
|
|
|
|
(%prim "{ /* define make-closure */
|
|
|
|
static obj c[] = { obj_from_objptr(vmcases+1) };
|
|
|
|
$return objptr(c); }"))
|
|
|
|
|
|
|
|
(define execute
|
|
|
|
(lambda (code)
|
|
|
|
(execute-thunk-closure (make-closure code))))
|
|
|
|
|
|
|
|
(define decode-sexp
|
|
|
|
(%prim "{ /* define decode-sexp */
|
|
|
|
static obj c[] = { obj_from_objptr(vmcases+2) };
|
|
|
|
$return objptr(c); }"))
|
|
|
|
|
|
|
|
(define decode
|
|
|
|
(%prim "{ /* define decode */
|
|
|
|
static obj c[] = { obj_from_objptr(vmcases+3) };
|
|
|
|
$return objptr(c); }"))
|
|
|
|
|
|
|
|
(define (evaluate x)
|
|
|
|
(execute (decode (compile-to-string (transform #f x)))))
|
|
|
|
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; File processor (Scheme => Serialized code)
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2023-03-22 23:13:12 +01:00
|
|
|
(define *hide-refs* '())
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (display-code cstr oport)
|
|
|
|
(let loop ([i 0] [l (string-length cstr)])
|
|
|
|
(let ([r (fx- l i)])
|
|
|
|
(cond [(<= r 70)
|
|
|
|
(display " \"" oport)
|
|
|
|
(display (substring cstr i l))
|
|
|
|
(display "\"," oport)]
|
|
|
|
[else
|
|
|
|
(display " \"" oport)
|
|
|
|
(display (substring cstr i (fx+ i 70)))
|
|
|
|
(display "\"\n" oport)
|
|
|
|
(loop (fx+ i 70) l)]))))
|
|
|
|
|
|
|
|
|
2023-03-22 23:13:12 +01:00
|
|
|
(define (process-syntax id xval oport)
|
2023-02-28 06:31:08 +01:00
|
|
|
(newline oport)
|
2023-03-22 23:13:12 +01:00
|
|
|
(display " \"S\", \"" oport) (display id oport) (display "\",\n" oport)
|
2023-02-28 06:31:08 +01:00
|
|
|
(let ([p (open-output-string)]) (write-serialized-sexp xval p)
|
2023-03-01 00:05:08 +01:00
|
|
|
(display-code (get-output-string p) oport) (newline oport)))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-03-22 23:13:12 +01:00
|
|
|
(define (process-alias id oldid oport)
|
|
|
|
(newline oport)
|
|
|
|
(display " \"A\", \"" oport) (display id oport) (display "\"," oport)
|
|
|
|
(display " \"" oport) (display oldid oport) (display "\",\n" oport))
|
|
|
|
|
|
|
|
(define (process-command xval oport)
|
2023-02-28 06:31:08 +01:00
|
|
|
(define cstr (compile-to-string xval))
|
|
|
|
(newline oport)
|
2023-03-22 23:13:12 +01:00
|
|
|
(display " \"C\", 0,\n" oport)
|
2023-02-28 06:31:08 +01:00
|
|
|
(display-code cstr oport) (newline oport))
|
|
|
|
|
2023-03-01 00:05:08 +01:00
|
|
|
(define (process-define id xlam oport)
|
2023-03-23 04:14:11 +01:00
|
|
|
(define cstr (compile-to-string xlam))
|
|
|
|
(let ([len (string-length cstr)])
|
|
|
|
(cond [(and (eq? (car xlam) 'lambda)
|
|
|
|
(> len 4)
|
|
|
|
(char=? (string-ref cstr 0) #\&)
|
|
|
|
(char=? (string-ref cstr 1) #\0)
|
|
|
|
(char=? (string-ref cstr 2) #\{)
|
|
|
|
(char=? (string-ref cstr (fx- len 1)) #\}))
|
|
|
|
(newline oport)
|
|
|
|
(display " \"P\", \"" oport) (display id oport) (display "\",\n" oport)
|
|
|
|
(display-code (substring cstr 3 (fx- len 1)) oport) (newline oport)]
|
|
|
|
[else (process-command (list 'set! id xlam) oport)])))
|
2023-03-01 00:05:08 +01:00
|
|
|
|
2023-03-04 06:07:52 +01:00
|
|
|
(define (scan-top-form x)
|
|
|
|
(cond
|
|
|
|
[(and (list2? x) (eq? (car x) 'load) (string? (cadr x)))
|
|
|
|
(let ([iport (open-input-file (cadr x))])
|
|
|
|
(let loop ([x (read iport)])
|
|
|
|
(unless (eof-object? x)
|
|
|
|
(scan-top-form x)
|
|
|
|
(loop (read iport))))
|
|
|
|
(close-input-port iport))]
|
|
|
|
[(pair? x)
|
|
|
|
(let ([hval (transform #t (car x))])
|
|
|
|
(cond
|
|
|
|
[(eq? hval 'begin)
|
|
|
|
(for-each scan-top-form (cdr x))]
|
|
|
|
[(eq? hval 'define-syntax)
|
|
|
|
(let ([xval (transform #t (caddr x))])
|
|
|
|
(install-transformer! (cadr x) xval))]
|
|
|
|
[(procedure? hval)
|
|
|
|
(scan-top-form (hval x top-transformer-env))]))]))
|
|
|
|
|
2023-03-03 01:27:09 +01:00
|
|
|
(define (process-top-form x oport)
|
2023-02-28 06:31:08 +01:00
|
|
|
(cond
|
2023-03-04 06:07:52 +01:00
|
|
|
[(and (list2? x) (eq? (car x) 'load) (string? (cadr x)))
|
|
|
|
(let ([iport (open-input-file (cadr x))])
|
|
|
|
(let loop ([x (read iport)])
|
|
|
|
(unless (eof-object? x)
|
|
|
|
(scan-top-form x)
|
|
|
|
(loop (read iport))))
|
|
|
|
(close-input-port iport))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[(pair? x)
|
2023-03-03 01:27:09 +01:00
|
|
|
(let ([hval (transform #t (car x))])
|
2023-02-28 06:31:08 +01:00
|
|
|
(cond
|
|
|
|
[(eq? hval 'begin)
|
2023-03-03 01:27:09 +01:00
|
|
|
(let loop ([x* (cdr x)])
|
|
|
|
(when (pair? x*)
|
2023-03-04 06:07:52 +01:00
|
|
|
(process-top-form (car x*) oport)
|
|
|
|
(loop (cdr x*))))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[(eq? hval 'define-syntax)
|
2023-03-03 01:27:09 +01:00
|
|
|
(let ([xval (transform #t (caddr x))])
|
|
|
|
(install-transformer! (cadr x) xval)
|
2023-03-22 23:13:12 +01:00
|
|
|
(unless (memq (cadr x) *hide-refs*)
|
|
|
|
(if (symbol? (caddr x))
|
|
|
|
(process-alias (cadr x) (caddr x) oport)
|
|
|
|
(process-syntax (cadr x) (caddr x) oport))))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[(eq? hval 'define)
|
2023-04-13 23:59:31 +02:00
|
|
|
(let* ([dval (transform #f x)] [xval (caddr dval)])
|
|
|
|
(process-define (cadr dval) xval oport))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[(procedure? hval)
|
2023-03-03 01:27:09 +01:00
|
|
|
(process-top-form (hval x top-transformer-env) oport)]
|
2023-02-28 06:31:08 +01:00
|
|
|
[else
|
2023-03-22 23:13:12 +01:00
|
|
|
(process-command (transform #f x) oport)]))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[else
|
2023-03-22 23:13:12 +01:00
|
|
|
(process-command (transform #f x) oport)]))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (path-strip-directory filename)
|
|
|
|
(let loop ([l (reverse (string->list filename))] [r '()])
|
|
|
|
(cond [(null? l) (list->string r)]
|
|
|
|
[(memv (car l) '(#\\ #\/ #\:)) (list->string r)]
|
|
|
|
[else (loop (cdr l) (cons (car l) r))])))
|
|
|
|
|
|
|
|
(define (path-strip-extension filename)
|
|
|
|
(let ([l (reverse (string->list filename))])
|
|
|
|
(let ([r (memv #\. l)])
|
|
|
|
(if r (list->string (reverse (cdr r))) filename))))
|
|
|
|
|
|
|
|
(define (module-name filename)
|
2023-03-01 00:05:08 +01:00
|
|
|
(path-strip-extension (path-strip-directory filename)))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (process-file fname)
|
|
|
|
(define iport (open-input-file fname))
|
|
|
|
(define oport (current-output-port))
|
2023-03-01 00:05:08 +01:00
|
|
|
(define mname (module-name fname))
|
|
|
|
(display "/* " oport) (display mname oport)
|
|
|
|
(display ".c -- generated via skint -c " oport)
|
|
|
|
(display (path-strip-directory fname) oport)
|
|
|
|
(display " */" oport) (newline oport) (newline oport)
|
|
|
|
(display "char *" oport) (display mname oport)
|
|
|
|
(display "_code[] = {" oport) (newline oport)
|
2023-03-03 01:27:09 +01:00
|
|
|
(let loop ([x (read iport)])
|
2023-02-28 06:31:08 +01:00
|
|
|
(unless (eof-object? x)
|
2023-03-03 01:27:09 +01:00
|
|
|
(process-top-form x oport)
|
|
|
|
(loop (read iport))))
|
2023-03-23 04:14:11 +01:00
|
|
|
(display "\n 0, 0, 0\n};\n" oport)
|
2023-02-28 06:31:08 +01:00
|
|
|
(close-input-port iport))
|
|
|
|
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
2023-03-03 19:18:00 +01:00
|
|
|
; Initial environment
|
2023-02-28 06:31:08 +01:00
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2023-03-11 19:41:44 +01:00
|
|
|
; adapter code for continuation closures produced by letcc
|
2023-03-30 05:18:39 +02:00
|
|
|
(define continuation-adapter-code #f) ; inited via (decode "k!...") in i.c
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-03-06 21:53:37 +01:00
|
|
|
; adapter closure for values/call-with-values pair
|
|
|
|
(define callmv-adapter-closure (make-closure (decode "K5")))
|
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
(define install-global-lambdas
|
|
|
|
(%prim "{ /* define install-global-lambdas */
|
|
|
|
static obj c[] = { obj_from_objptr(vmcases+6) };
|
|
|
|
$return objptr(c); }"))
|
|
|
|
|
|
|
|
(install-global-lambdas)
|
|
|
|
|
2023-03-03 19:18:00 +01:00
|
|
|
(define initialize-modules
|
|
|
|
(%prim "{ /* define initialize-modules */
|
|
|
|
static obj c[] = { obj_from_objptr(vmcases+7) };
|
|
|
|
$return objptr(c); }"))
|
|
|
|
|
|
|
|
(initialize-modules)
|
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; Tests
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
(define test1
|
|
|
|
'(let ()
|
|
|
|
(define (sort-list obj pred)
|
|
|
|
(define (loop l)
|
|
|
|
(if (and (pair? l) (pair? (cdr l))) (split l '() '()) l))
|
|
|
|
(define (split l one two)
|
|
|
|
(if (pair? l)
|
|
|
|
(split (cdr l) two (cons (car l) one))
|
|
|
|
(merge (loop one) (loop two))))
|
|
|
|
(define (merge one two)
|
|
|
|
(cond
|
|
|
|
[(null? one) two]
|
|
|
|
[(pred (car two) (car one))
|
|
|
|
(cons (car two) (merge (cdr two) one))]
|
|
|
|
[else (cons (car one) (merge (cdr one) two))]))
|
|
|
|
(loop obj))
|
|
|
|
(sort-list
|
|
|
|
'("one" "two" "three" "four" "five" "six"
|
|
|
|
"seven" "eight" "nine" "ten" "eleven" "twelve")
|
|
|
|
string<?)))
|
|
|
|
|
|
|
|
(define test2
|
|
|
|
'(let ()
|
|
|
|
(define tak
|
|
|
|
(lambda (x y z)
|
|
|
|
(if (< y x)
|
|
|
|
(tak (tak (- x 1) y z)
|
|
|
|
(tak (- y 1) z x)
|
|
|
|
(tak (- z 1) x y))
|
|
|
|
z)))
|
|
|
|
(define runtak
|
|
|
|
(lambda (n r)
|
|
|
|
(let loop ([n n] [r r] [s 7])
|
|
|
|
(if (= n 0) r
|
|
|
|
(let ([v (tak 18 12 (- s 1))])
|
|
|
|
(loop (- n 1) (+ r v) v))))))
|
|
|
|
(runtak 10 0)))
|
|
|
|
|
|
|
|
(define test3
|
|
|
|
'(let ()
|
|
|
|
(define (nqueens n)
|
|
|
|
(define (one-to n)
|
|
|
|
(let loop ((i n) (l '()))
|
|
|
|
(cond
|
|
|
|
((zero? i) l)
|
|
|
|
(else (loop (- i 1) (cons i l))))))
|
|
|
|
(define (try-it x y z)
|
|
|
|
(if (null? x)
|
|
|
|
(if (null? y) 1 0)
|
|
|
|
(+ (if (ok? (car x) 1 z)
|
|
|
|
(try-it (append (cdr x) y) '() (cons (car x) z))
|
|
|
|
0)
|
|
|
|
(try-it (cdr x) (cons (car x) y) z))))
|
|
|
|
(define (ok? row dist placed)
|
|
|
|
(if (null? placed) #t
|
|
|
|
(and (not (= (car placed) (+ row dist)))
|
|
|
|
(not (= (car placed) (- row dist)))
|
|
|
|
(ok? row (+ dist 1) (cdr placed)))))
|
|
|
|
(try-it (one-to n) '() '()))
|
|
|
|
(define (run-test count)
|
|
|
|
(let loop ((n count) (v 92))
|
|
|
|
(cond
|
|
|
|
((zero? n) v)
|
|
|
|
(else (loop (- n 1) (nqueens (- v 84)))))))
|
|
|
|
(run-test 10)))
|
|
|
|
|
|
|
|
(define test4
|
|
|
|
'(let ()
|
|
|
|
(define y
|
|
|
|
(lambda (e)
|
|
|
|
((call/cc call/cc)
|
|
|
|
(lambda (f)
|
|
|
|
(e (lambda (x) (((call/cc (call/cc call/cc)) f) x)))))))
|
|
|
|
(define fakt
|
|
|
|
(y (lambda (self) (lambda (x) (if (= x 0) 1 (* x (self (- x 1))))))))
|
|
|
|
(fakt 10)))
|
|
|
|
|
|
|
|
(define test5
|
|
|
|
'(let ()
|
|
|
|
(define y
|
|
|
|
(lambda (e)
|
|
|
|
((call/cc call/cc)
|
|
|
|
(lambda (f)
|
|
|
|
(e (lambda (x) (((call/cc (call/cc call/cc)) f) x)))))))
|
|
|
|
(define fakty
|
|
|
|
(y (lambda (self)
|
|
|
|
(lambda (x) (if (= x 0) 1 (* x (self (- x 1))))))))
|
|
|
|
(define (fakti x)
|
|
|
|
(let loop ((n 1) (x x))
|
|
|
|
(if (= x 1)
|
|
|
|
n
|
|
|
|
(loop (* n x) (- x 1)))))
|
|
|
|
(define (faktr x)
|
|
|
|
(if (= x 1)
|
|
|
|
1
|
|
|
|
(* x (faktr (- x 1)))))
|
|
|
|
(define faktl
|
|
|
|
(lambda (x)
|
|
|
|
((lambda (self) (self self x))
|
|
|
|
(lambda (self x)
|
|
|
|
(if (= x 1)
|
|
|
|
x
|
|
|
|
(* (self self (- x 1)) x))))))
|
|
|
|
(let ([y (fakty 10)] [i (fakti 10)] [r (faktr 10)] [l (faktl 10)])
|
|
|
|
(cons y (cons i (cons r (cons l '())))))))
|
|
|
|
|
|
|
|
; (evaluate test1) =>
|
|
|
|
; ("eight" "eleven" "five" "four" "nine" "one" "seven" "six" "ten" "three" "twelve" "two")
|
|
|
|
;
|
|
|
|
; (evaluate test2) =>
|
|
|
|
; 70
|
|
|
|
;
|
|
|
|
; (evaluate test3) =>
|
|
|
|
; 92
|
|
|
|
;
|
|
|
|
; (evaluate test4) =>
|
|
|
|
; 3628800
|
|
|
|
;
|
2023-03-01 00:05:08 +01:00
|
|
|
; (evaluate test5) =>
|
|
|
|
; (3628800 3628800 3628800 3628800)
|
|
|
|
;
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; REPL
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2023-03-08 19:03:39 +01:00
|
|
|
(define *verbose* #f)
|
|
|
|
|
2023-03-22 18:21:48 +01:00
|
|
|
(define *reset* #f)
|
|
|
|
|
|
|
|
(define (error* msg args)
|
|
|
|
(if (procedure? *reset*)
|
|
|
|
(let ([p (current-error-port)])
|
|
|
|
(display msg p) (newline p)
|
|
|
|
(for-each (lambda (arg) (write arg p) (newline p)) args)
|
|
|
|
(*reset* #f))
|
|
|
|
(apply error (cons msg args))))
|
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
(define (run-tests)
|
|
|
|
(define start (current-jiffy))
|
|
|
|
(display "Running tests ...") (newline)
|
|
|
|
(write (evaluate test1)) (newline)
|
|
|
|
(write (evaluate test2)) (newline)
|
|
|
|
(write (evaluate test3)) (newline)
|
|
|
|
(write (evaluate test4)) (newline)
|
|
|
|
(write (evaluate test5)) (newline)
|
|
|
|
(display "Elapsed time: ") (write (* 1000 (/ (- (current-jiffy) start) (jiffies-per-second))))
|
|
|
|
(display " ms.") (newline))
|
|
|
|
|
2023-03-03 01:27:09 +01:00
|
|
|
(define (repl-eval x)
|
2023-03-22 18:21:48 +01:00
|
|
|
(letcc catch
|
|
|
|
(set! *reset* catch)
|
|
|
|
(let ([xexp (transform #f x)])
|
|
|
|
(when *verbose* (display "TRANSFORM =>") (newline) (write xexp) (newline))
|
2023-03-22 19:20:17 +01:00
|
|
|
(unless (pair? xexp) (x-error "unexpected transformed output" xexp))
|
2023-03-22 18:21:48 +01:00
|
|
|
(if (eq? (car xexp) 'define) (set-car! xexp 'set!))
|
|
|
|
(when *verbose* (display "COMPILE-TO-STRING =>") (newline))
|
|
|
|
(let ([cstr (compile-to-string xexp)] [start #f])
|
|
|
|
(when *verbose*
|
|
|
|
(display cstr) (newline)
|
|
|
|
(display "DECODE+EXECUTE =>") (newline)
|
|
|
|
(set! start (current-jiffy)))
|
|
|
|
(let* ([thunk (decode cstr)] [res (execute thunk)])
|
2023-03-26 18:02:36 +02:00
|
|
|
(unless (eq? res (void)) (write res) (newline)))
|
2023-03-22 18:21:48 +01:00
|
|
|
(when *verbose*
|
|
|
|
(display "Elapsed time: ") (write (* 1000 (/ (- (current-jiffy) start) (jiffies-per-second))))
|
|
|
|
(display " ms.") (newline))))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-03-03 01:27:09 +01:00
|
|
|
(define (repl-eval-top-form x)
|
2023-02-28 06:31:08 +01:00
|
|
|
(cond
|
2023-03-04 06:07:52 +01:00
|
|
|
[(and (list2? x) (eq? (car x) 'load) (string? (cadr x)))
|
2023-03-03 01:27:09 +01:00
|
|
|
(let ([iport (open-input-file (cadr x))])
|
|
|
|
(repl-from-port iport)
|
|
|
|
(close-input-port iport))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[(pair? x)
|
2023-03-03 01:27:09 +01:00
|
|
|
(let ([hval (transform #t (car x))])
|
2023-02-28 06:31:08 +01:00
|
|
|
(cond
|
|
|
|
[(eq? hval 'begin)
|
2023-03-03 01:27:09 +01:00
|
|
|
(let loop ([x* (cdr x)])
|
|
|
|
(when (pair? x*)
|
|
|
|
(repl-eval-top-form (car x*))
|
|
|
|
(loop (cdr x*))))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[(eq? hval 'define-syntax)
|
2023-03-03 01:27:09 +01:00
|
|
|
(let ([xval (transform #t (caddr x))])
|
|
|
|
(install-transformer! (cadr x) xval))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[(procedure? hval)
|
2023-03-03 01:27:09 +01:00
|
|
|
(repl-eval-top-form (hval x top-transformer-env))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[else
|
2023-03-03 01:27:09 +01:00
|
|
|
(repl-eval x)]))]
|
2023-02-28 06:31:08 +01:00
|
|
|
[else
|
2023-03-03 01:27:09 +01:00
|
|
|
(repl-eval x)]))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (repl-read iport)
|
|
|
|
(when (eq? iport (current-input-port))
|
2023-03-10 23:30:41 +01:00
|
|
|
(display "\nskint> "))
|
2023-02-28 06:31:08 +01:00
|
|
|
(read iport))
|
|
|
|
|
2023-03-03 01:27:09 +01:00
|
|
|
(define (repl-from-port iport)
|
|
|
|
(let loop ([x (repl-read iport)])
|
|
|
|
(unless (eof-object? x)
|
2023-03-29 05:40:41 +02:00
|
|
|
(repl-eval-top-form x)
|
|
|
|
(loop (repl-read iport)))))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
2023-03-26 06:38:50 +02:00
|
|
|
(define (repl-file fname)
|
|
|
|
(define iport (open-input-file fname))
|
|
|
|
(repl-from-port iport)
|
|
|
|
(close-input-port iport))
|
|
|
|
|
2023-03-29 05:40:41 +02:00
|
|
|
(define (benchmark-file fname)
|
|
|
|
(define iport (open-input-file fname))
|
|
|
|
(unless (syntax-match? '(load "libl.sf") (read iport))
|
|
|
|
(error "unexpected benchmark file format" fname))
|
|
|
|
(repl-from-port iport)
|
|
|
|
(repl-eval-top-form '(main #f))
|
|
|
|
(close-input-port iport))
|
2023-03-26 06:38:50 +02:00
|
|
|
|
2023-02-28 06:31:08 +01:00
|
|
|
(define (run-repl)
|
2023-03-03 01:27:09 +01:00
|
|
|
(repl-from-port (current-input-port)))
|
2023-02-28 06:31:08 +01:00
|
|
|
|
|
|
|
(define (main argv)
|
|
|
|
(let ([args (cdr (command-line))])
|
|
|
|
(cond
|
|
|
|
[(syntax-match? '("-c" *) args)
|
|
|
|
(process-file (cadr args))]
|
2023-03-26 06:38:50 +02:00
|
|
|
[(syntax-match? '("-l" *) args)
|
|
|
|
(repl-file (cadr args))]
|
2023-03-29 05:40:41 +02:00
|
|
|
[(syntax-match? '("-b" *) args)
|
|
|
|
(benchmark-file (cadr args))]
|
2023-03-08 19:03:39 +01:00
|
|
|
[(syntax-match? '("-t") args)
|
|
|
|
(run-tests)]
|
|
|
|
[(syntax-match? '("-v") args)
|
|
|
|
(set! *verbose* #t)
|
|
|
|
(run-repl)]
|
2023-02-28 06:31:08 +01:00
|
|
|
[else
|
|
|
|
(run-repl)])))
|
|
|
|
|