2023-03-04 06:07:52 +01:00
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; Transformer and Compiler
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
(load "s.scm")
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; 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-07 19:42:29 +01:00
|
|
|
(lambda (s1 s2)
|
|
|
|
(if (null? s1)
|
2023-03-04 06:07:52 +01:00
|
|
|
s2
|
2023-03-07 19:42:29 +01:00
|
|
|
(set-union (cdr s1) (set-cons (car s1) s2)))))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
|
|
|
(define set-minus
|
2023-03-07 19:42:29 +01:00
|
|
|
(lambda (s1 s2)
|
|
|
|
(if (null? s1)
|
2023-03-04 06:07:52 +01:00
|
|
|
'()
|
2023-03-07 19:42:29 +01:00
|
|
|
(if (set-member? (car s1) s2)
|
|
|
|
(set-minus (cdr s1) s2)
|
|
|
|
(cons (car s1) (set-minus (cdr s1) s2))))))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
|
|
|
(define set-intersect
|
2023-03-07 19:42:29 +01:00
|
|
|
(lambda (s1 s2)
|
|
|
|
(if (null? s1)
|
2023-03-04 06:07:52 +01:00
|
|
|
'()
|
2023-03-07 19:42:29 +01:00
|
|
|
(if (set-member? (car s1) s2)
|
|
|
|
(cons (car s1) (set-intersect (cdr s1) s2))
|
|
|
|
(set-intersect (cdr s1) s2)))))
|
2023-03-04 06:07:52 +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-03-04 06:07:52 +01:00
|
|
|
[(record-case id [key ids exp ...] clause ...)
|
|
|
|
(if (eq? (car id) 'key)
|
|
|
|
(apply (lambda ids exp ...) (cdr id))
|
|
|
|
(record-case id clause ...))]))
|
|
|
|
|
2024-06-05 00:37:55 +02:00
|
|
|
(define (sexp-match? pat x)
|
|
|
|
(or (eq? pat '*)
|
2024-06-18 20:31:37 +02:00
|
|
|
(and (eq? pat '<id>) (or (symbol? x) (procedure? x)))
|
2024-06-05 00:37:55 +02:00
|
|
|
(and (eq? pat '<symbol>) (symbol? x))
|
|
|
|
(and (eq? pat '<string>) (string? x))
|
2024-06-21 00:42:11 +02:00
|
|
|
(eqv? x pat)
|
2024-06-05 00:37:55 +02:00
|
|
|
(and (pair? pat)
|
2024-06-21 00:42:11 +02:00
|
|
|
(cond [(and (eq? (car pat) '...)
|
|
|
|
(pair? (cdr pat))
|
|
|
|
(null? (cddr pat)))
|
|
|
|
(eqv? x (cadr pat))]
|
|
|
|
[(and (pair? (cdr pat))
|
|
|
|
(eq? (cadr pat) '...)
|
|
|
|
(null? (cddr pat)))
|
2024-06-05 00:37:55 +02:00
|
|
|
(let ([pat (car pat)])
|
|
|
|
(if (eq? pat '*)
|
|
|
|
(list? x)
|
|
|
|
(let loop ([lst x])
|
|
|
|
(or (null? lst)
|
|
|
|
(and (pair? lst)
|
2024-06-21 00:42:11 +02:00
|
|
|
(sexp-match? pat (car lst))
|
|
|
|
(loop (cdr lst)))))))]
|
|
|
|
[else
|
2024-06-05 00:37:55 +02:00
|
|
|
(and (pair? x)
|
2024-06-21 00:42:11 +02:00
|
|
|
(sexp-match? (car pat) (car x))
|
|
|
|
(sexp-match? (cdr pat) (cdr x)))]))
|
|
|
|
(and (vector? pat) (vector? x)
|
|
|
|
(sexp-match? (vector->list pat) (vector->list x)))
|
|
|
|
(and (box? pat) (box? x)
|
|
|
|
(sexp-match? (unbox pat) (unbox x)))))
|
2024-06-05 00:37:55 +02:00
|
|
|
|
|
|
|
(define-syntax sexp-case
|
|
|
|
(syntax-rules (else)
|
|
|
|
[(_ (key ...) clauses ...)
|
|
|
|
(let ([atom-key (key ...)])
|
|
|
|
(sexp-case atom-key clauses ...))]
|
|
|
|
[(_ key (else result1 result2 ...))
|
|
|
|
(begin result1 result2 ...)]
|
|
|
|
[(_ key (pat result1 result2 ...))
|
|
|
|
(if (sexp-match? 'pat key)
|
|
|
|
(begin result1 result2 ...))]
|
|
|
|
[(_ key (pat result1 result2 ...) clause clauses ...)
|
|
|
|
(if (sexp-match? 'pat key)
|
|
|
|
(begin result1 result2 ...)
|
|
|
|
(sexp-case key clause clauses ...))]))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2024-06-25 00:01:34 +02:00
|
|
|
(define symbol-append
|
|
|
|
(lambda syms (string->symbol (apply string-append (map symbol->string syms)))))
|
|
|
|
|
2023-03-04 06:07:52 +01:00
|
|
|
; 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))]))))
|
|
|
|
|
2024-06-21 00:42:11 +02:00
|
|
|
(define rassq
|
|
|
|
(lambda (x al)
|
|
|
|
(and (pair? al)
|
|
|
|
(let ([a (car al)])
|
|
|
|
(if (eq? x (cdr a)) a (rassq x (cdr al)))))))
|
|
|
|
|
2023-03-04 06:07:52 +01:00
|
|
|
(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))))))
|
|
|
|
|
2024-06-05 00:37:55 +02:00
|
|
|
(define (append* lst)
|
|
|
|
(cond [(null? lst) '()]
|
|
|
|
[(null? (cdr lst)) (car lst)]
|
|
|
|
[else (append (car lst) (append* (cdr lst)))]))
|
|
|
|
|
|
|
|
(define (string-append* l)
|
|
|
|
(apply string-append l))
|
|
|
|
|
2023-03-21 20:29:28 +01:00
|
|
|
(define (andmap p l)
|
|
|
|
(if (pair? l) (and (p (car l)) (andmap p (cdr l))) #t))
|
|
|
|
|
2024-06-21 00:42:11 +02:00
|
|
|
(define (ormap p l)
|
|
|
|
(if (pair? l) (or (p (car l)) (ormap p (cdr l))) #f))
|
|
|
|
|
2023-03-04 06:07:52 +01:00
|
|
|
(define (list1? x) (and (pair? x) (null? (cdr x))))
|
2023-03-11 19:41:44 +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 19:41:44 +01:00
|
|
|
(define (list2+? x) (and (pair? x) (list1+? (cdr x))))
|
2024-06-19 23:11:03 +02:00
|
|
|
(define (list3? x) (and (pair? x) (list2? (cdr x))))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2024-06-05 00:37:55 +02:00
|
|
|
(define (read-code-sexp port)
|
|
|
|
; for now, we will just use read with no support for circular structures
|
|
|
|
(read-simple port))
|
|
|
|
|
2024-06-04 21:55:37 +02:00
|
|
|
(define (error* msg args)
|
|
|
|
(raise (error-object #f msg args)))
|
|
|
|
|
2024-06-05 00:37:55 +02:00
|
|
|
(define (warning* msg args)
|
|
|
|
(print-error-message (string-append "Warning: " msg) args (current-error-port)))
|
|
|
|
|
2023-03-04 06:07:52 +01:00
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; Syntax of the Scheme Core language
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
; <core> -> (quote <object>)
|
2024-06-14 07:08:36 +02:00
|
|
|
; <core> -> (const <id>) ; immutable variant of ref
|
2023-03-04 06:07:52 +01:00
|
|
|
; <core> -> (ref <id>)
|
|
|
|
; <core> -> (set! <id> <core>)
|
2023-03-21 20:29:28 +01:00
|
|
|
; <core> -> (set& <id>)
|
2023-03-04 06:07:52 +01:00
|
|
|
; <core> -> (lambda <ids> <core>) where <ids> -> (<id> ...) | (<id> ... . <id>) | <id>
|
2023-03-07 19:42:29 +01:00
|
|
|
; <core> -> (lambda* (<arity> <core>) ...) where <arity> -> (<cnt> <rest?>)
|
2023-03-11 19:41:44 +01:00
|
|
|
; <core> -> (letcc <id> <core>)
|
|
|
|
; <core> -> (withcc <core> <core>)
|
2023-03-04 06:07:52 +01:00
|
|
|
; <core> -> (begin <core> ...)
|
|
|
|
; <core> -> (if <core> <core> <core>)
|
|
|
|
; <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
|
2024-06-16 21:07:24 +02:00
|
|
|
; <core> -> (asm <igs>) where <igs> is ig string leaving result in ac, e.g. "'2,'1+"
|
2024-06-25 00:01:34 +02:00
|
|
|
; <core> -> (once <gid> <core>) where gid is always resolved as global
|
2023-03-04 06:07:52 +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>)
|
|
|
|
|
2024-05-27 01:01:04 +02:00
|
|
|
; These names are bound to specials never returned by xform:
|
|
|
|
|
|
|
|
; (syntax <value>)
|
|
|
|
; (body <expr or def> ...)
|
|
|
|
; (syntax-lambda (<id> ...) <expr>)
|
|
|
|
; (syntax-rules (<id> ...) <rule> ...)
|
|
|
|
; (syntax-length <form>)
|
|
|
|
; (syntax-error <msg> <arg> ...)
|
|
|
|
|
|
|
|
|
2023-03-21 20:29:28 +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:42:29 +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-03-04 06:07:52 +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
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2024-05-28 23:40:54 +02:00
|
|
|
; An environment is a procedure that accepts any identifier and access type and returns a
|
|
|
|
; denotation. Access type is one of these symbols: ref, set!, define, define-syntax.
|
2023-04-16 03:03:39 +02:00
|
|
|
; 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-03-04 06:07:52 +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-04 06:07:52 +01:00
|
|
|
; <value> -> <special> | <core>
|
2024-05-27 01:01:04 +02:00
|
|
|
; <special> -> <builtin> | <integrable> | <transformer>
|
2023-04-16 00:08:08 +02:00
|
|
|
; <builtin> -> syntax | quote | set! | set& | if | lambda | lambda* |
|
|
|
|
; letcc | withcc | body | begin | define | define-syntax |
|
2024-05-27 01:01:04 +02:00
|
|
|
; syntax-lambda | syntax-rules | syntax-length | syntax-error
|
|
|
|
; <integrable> -> <fixnum serving as index in internal integrables table>
|
2023-03-04 06:07:52 +01:00
|
|
|
; <transformer> -> <procedure of exp and env returning exp>
|
|
|
|
|
2023-04-16 03:03:39 +02:00
|
|
|
(define-syntax val-core? pair?)
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2024-06-25 05:46:19 +02:00
|
|
|
(define-syntax location? box?)
|
2023-04-16 03:03:39 +02:00
|
|
|
(define-syntax make-location box)
|
|
|
|
(define-syntax location-val unbox)
|
|
|
|
(define-syntax location-set-val! set-box!)
|
|
|
|
|
|
|
|
(define (location-special? l) (not (pair? (unbox l))))
|
2024-06-21 00:42:11 +02:00
|
|
|
(define (new-id sym den getlits) (define p (list sym den getlits)) (lambda () p))
|
2023-04-16 00:08:08 +02:00
|
|
|
(define (old-sym id) (car (id)))
|
2024-06-14 22:15:15 +02:00
|
|
|
(define (old-den id) (cadr (id)))
|
2024-06-21 00:42:11 +02:00
|
|
|
(define (old-literals id) ((or (caddr (id)) (lambda () '()))))
|
2023-03-04 06:07:52 +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)))
|
2024-06-21 00:42:11 +02:00
|
|
|
|
|
|
|
; take a possibly renamed target id, and find image for nid
|
|
|
|
(define (id-rename-as id nid)
|
|
|
|
(let loop ([id id])
|
|
|
|
(if (symbol? id) nid
|
|
|
|
(let* ([lits (old-literals id)] [oid->id (rassq id lits)])
|
|
|
|
(unless oid->id (x-error "id-rename-as failed: not found in its own lits" id))
|
|
|
|
(let ([renamed-nid (loop (car oid->id))])
|
|
|
|
(cond [(assq renamed-nid lits) => cdr]
|
|
|
|
[else renamed-nid]))))))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2024-05-27 01:01:04 +02:00
|
|
|
; Expand-time environments map identifiers (symbolic or thunked) to denotations, i.e. locations
|
|
|
|
; containing either a <special> or a <core> value. In normal case, <core> value is (ref <gid>),
|
|
|
|
; where <gid> is a key in run-time store, aka *globals*. Environments should allocate new locations
|
|
|
|
; as needed, so every identifier gets mapped to one. Expand-time environments are represented as
|
2024-05-28 23:40:54 +02:00
|
|
|
; two-argument procedures, where the second argument is an access type symbol.
|
2024-05-27 01:01:04 +02:00
|
|
|
|
2024-05-28 23:40:54 +02:00
|
|
|
(define (extend-xenv-local id val env)
|
|
|
|
(let ([loc (make-location val)])
|
|
|
|
(lambda (i at)
|
|
|
|
(if (eq? id i)
|
|
|
|
(case at [(ref set!) loc] [else #f])
|
|
|
|
(env i at)))))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2024-05-28 23:40:54 +02:00
|
|
|
(define (add-local-var id gid env)
|
|
|
|
(extend-xenv-local id (list 'ref gid) env))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2024-05-28 23:40:54 +02:00
|
|
|
(define (xenv-lookup env id at)
|
|
|
|
(or (env id at)
|
2024-06-25 00:01:34 +02:00
|
|
|
(error* "transformer: invalid identifier access" (list id (id->sym id) at))))
|
2024-05-28 23:40:54 +02:00
|
|
|
|
|
|
|
(define (xenv-ref env id) (xenv-lookup env id 'ref))
|
2023-03-04 06:07:52 +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-22 19:20:17 +01:00
|
|
|
(define (x-error msg . args)
|
|
|
|
(error* (string-append "transformer: " msg) args))
|
|
|
|
|
2024-07-04 00:47:26 +02:00
|
|
|
(define (check-syntax sexp pat msg)
|
|
|
|
(unless (sexp-match? pat sexp) (x-error msg sexp)))
|
|
|
|
|
2024-07-05 20:26:20 +02:00
|
|
|
(define syntax-id (new-id 'syntax (make-location 'syntax) #f))
|
|
|
|
(define lambda-id (new-id 'lambda (make-location 'lambda) #f))
|
|
|
|
(define begin-id (new-id 'begin (make-location 'begin) #f))
|
|
|
|
(define define-id (new-id 'define (make-location 'define) #f))
|
|
|
|
(define define-syntax-id (new-id 'define-syntax (make-location 'define-syntax) #f))
|
|
|
|
|
2023-03-04 06:07:52 +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-22 19:20:17 +01:00
|
|
|
; a transformer (a procedure). Appos? flag is true when the context can
|
2024-05-27 01:01:04 +02:00
|
|
|
; allow xform to return a special; otherwise, only <core> is returned.
|
2023-03-04 06:07:52 +01:00
|
|
|
|
|
|
|
(define (xform appos? sexp env)
|
|
|
|
(cond [(id? sexp)
|
|
|
|
(let ([hval (xform-ref sexp env)])
|
2023-04-16 03:03:39 +02:00
|
|
|
(cond [appos? hval]
|
2023-03-21 20:29:28 +01:00
|
|
|
[(integrable? hval) ; integrable id-syntax
|
|
|
|
(list 'ref (integrable-global hval))]
|
|
|
|
[(procedure? hval) ; id-syntax
|
|
|
|
(xform appos? (hval sexp env) env)]
|
2023-04-15 23:41:28 +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-21 20:29:28 +01:00
|
|
|
[(not (pair? sexp))
|
2023-03-22 19:20:17 +01:00
|
|
|
(xform-quote (list sexp) env)]
|
2023-03-21 20:29:28 +01:00
|
|
|
[else
|
|
|
|
(let* ([head (car sexp)] [tail (cdr sexp)] [hval (xform #t head env)])
|
|
|
|
(case hval
|
2024-07-05 20:26:20 +02:00
|
|
|
[(syntax) (xform-syntax tail env)]
|
|
|
|
[(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 appos?)]
|
|
|
|
[(begin) (xform-begin tail env appos?)]
|
|
|
|
[(define) (xform-define tail env)]
|
|
|
|
[(define-syntax) (xform-define-syntax tail env)]
|
|
|
|
[(syntax-lambda) (xform-syntax-lambda tail env appos?)]
|
|
|
|
[(syntax-rules) (xform-syntax-rules tail env)]
|
|
|
|
[(syntax-length) (xform-syntax-length tail env)]
|
|
|
|
[(syntax-error) (xform-syntax-error tail env)]
|
|
|
|
[(define-library) (xform-define-library head tail env appos?)]
|
|
|
|
[(import) (xform-import head tail env appos?)]
|
2023-03-21 20:29:28 +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-03-04 06:07:52 +01:00
|
|
|
|
2024-06-16 21:07:24 +02:00
|
|
|
(define (xform-syntax tail env)
|
|
|
|
(if (list1? tail)
|
|
|
|
(car tail) ; must be <core>, todo: check?
|
|
|
|
(x-error "improper syntax form" (cons 'syntax tail))))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2023-03-22 19:20:17 +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-22 19:20:17 +01:00
|
|
|
(x-error "improper quote form" (cons 'quote tail))))
|
|
|
|
|
2024-06-16 21:07:24 +02:00
|
|
|
(define (xform-ref id env)
|
|
|
|
(let ([den (xenv-ref env id)])
|
|
|
|
(cond [(eq? (location-val den) '...) (x-error "improper use of ...")]
|
|
|
|
[else (location-val den)])))
|
|
|
|
|
2023-03-22 19:20:17 +01:00
|
|
|
(define (xform-set! tail env)
|
|
|
|
(if (and (list2? tail) (id? (car tail)))
|
2024-05-28 23:40:54 +02:00
|
|
|
(let ([den (xenv-lookup env (car tail) 'set!)] [xexp (xform #f (cadr tail) env)])
|
2024-06-14 07:08:36 +02:00
|
|
|
(if (location-special? den) ;; was (location-set-val! den xexp) '(begin)
|
|
|
|
(x-error "set! to macro or integrable identifier" (cons 'set! tail))
|
|
|
|
(let ([val (location-val den)])
|
|
|
|
(if (eq? (car val) 'ref)
|
|
|
|
(list 'set! (cadr val) xexp)
|
|
|
|
(x-error "set! is not allowed" (cons 'set! tail))))))
|
2023-03-22 19:20:17 +01:00
|
|
|
(x-error "improper set! form" (cons 'set! tail))))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2023-03-21 20:29:28 +01:00
|
|
|
(define (xform-set& tail env)
|
|
|
|
(if (list1? tail)
|
2024-05-28 23:40:54 +02:00
|
|
|
(let ([den (xenv-lookup env (car tail) 'set!)])
|
2024-06-14 07:08:36 +02:00
|
|
|
(if (location-special? den)
|
|
|
|
(x-error "set& of macro or integrable identifier" (cons 'set& tail))
|
|
|
|
(let ([val (location-val den)])
|
|
|
|
(if (eq? (car val) 'ref)
|
|
|
|
(list 'set& (cadr val))
|
|
|
|
(x-error "set& is not allowed" (cons 'set! tail))))))
|
2023-03-22 19:20:17 +01:00
|
|
|
(x-error "improper set& form" (cons 'set& tail))))
|
2023-03-21 20:29:28 +01:00
|
|
|
|
2023-03-04 06:07:52 +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-22 19:20:17 +01:00
|
|
|
[else (x-error "malformed if form" (cons 'if tail))]))
|
|
|
|
(x-error "improper if form" (cons 'if tail))))
|
2023-03-04 06:07:52 +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-22 19:20:17 +01:00
|
|
|
(x-error "improper application" (cons xexp tail))))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2023-03-21 20:29:28 +01:00
|
|
|
(define (integrable-argc-match? igt n)
|
|
|
|
(case igt
|
|
|
|
[(#\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-29 00:14:45 +02:00
|
|
|
[(#\u) (<= 0 n 1)] [(#\b) (<= 1 n 2)] [(#\t) (<= 2 n 3)]
|
2023-03-21 20:29:28 +01:00
|
|
|
[(#\#) (>= n 0)] [(#\@) #f]
|
2023-04-14 17:34:47 +02:00
|
|
|
[else #f]))
|
2023-03-21 20:29:28 +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)))
|
|
|
|
(xform-call (list 'ref (integrable-global ig)) tail env)))
|
|
|
|
|
2023-03-04 06:07:52 +01:00
|
|
|
(define (xform-lambda tail env)
|
2023-03-21 20:29:28 +01:00
|
|
|
(if (and (list1+? tail) (idslist? (car tail)))
|
2023-03-04 06:07:52 +01:00
|
|
|
(let loop ([vars (car tail)] [ienv env] [ipars '()])
|
|
|
|
(cond [(pair? vars)
|
2023-03-22 19:20:17 +01:00
|
|
|
(let* ([var (car vars)] [nvar (gensym (id->sym var))])
|
2024-05-28 23:40:54 +02:00
|
|
|
(loop (cdr vars) (add-local-var var nvar ienv) (cons nvar ipars)))]
|
2023-03-04 06:07:52 +01:00
|
|
|
[(null? vars)
|
2024-06-16 08:18:43 +02:00
|
|
|
(list 'lambda (reverse ipars) (xform-body (cdr tail) ienv #f))]
|
2023-03-04 06:07:52 +01:00
|
|
|
[else ; improper
|
2023-03-21 20:29:28 +01:00
|
|
|
(let* ([var vars] [nvar (gensym (id->sym var))]
|
2024-05-28 23:40:54 +02:00
|
|
|
[ienv (add-local-var var nvar ienv)])
|
2023-03-22 19:20:17 +01:00
|
|
|
(list 'lambda (append (reverse ipars) nvar)
|
2024-06-16 08:18:43 +02:00
|
|
|
(xform-body (cdr tail) ienv #f)))]))
|
2023-03-22 19:20:17 +01:00
|
|
|
(x-error "improper lambda body" (cons 'lambda tail))))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2023-03-07 19:42:29 +01:00
|
|
|
(define (xform-lambda* tail env)
|
|
|
|
(if (list? tail)
|
|
|
|
(cons 'lambda*
|
|
|
|
(map (lambda (aexp)
|
2023-03-21 20:29:28 +01:00
|
|
|
(if (and (list2? aexp)
|
2023-03-22 19:20:17 +01:00
|
|
|
(or (and (list2? (car aexp))
|
|
|
|
(fixnum? (caar aexp))
|
|
|
|
(boolean? (cadar aexp)))
|
2023-03-21 20:29:28 +01:00
|
|
|
(idslist? (car aexp))))
|
2023-03-07 19:42:29 +01:00
|
|
|
(list (normalize-arity (car aexp))
|
|
|
|
(xform #f (cadr aexp) env))
|
2023-03-22 19:20:17 +01:00
|
|
|
(x-error "improper lambda* clause" aexp)))
|
2023-03-07 19:42:29 +01:00
|
|
|
tail))
|
2023-03-22 19:20:17 +01:00
|
|
|
(x-error "improper lambda* form" (cons 'lambda* tail))))
|
|
|
|
|
2023-03-11 19:41:44 +01:00
|
|
|
(define (xform-letcc tail env)
|
|
|
|
(if (and (list2+? tail) (id? (car tail)))
|
|
|
|
(let* ([var (car tail)] [nvar (gensym (id->sym var))])
|
|
|
|
(list 'letcc nvar
|
2024-06-16 08:18:43 +02:00
|
|
|
(xform-body (cdr tail) (add-local-var var nvar env) #f)))
|
2023-03-22 19:20:17 +01:00
|
|
|
(x-error "improper letcc form" (cons 'letcc tail))))
|
2023-03-11 19:41:44 +01:00
|
|
|
|
|
|
|
(define (xform-withcc tail env)
|
|
|
|
(if (list2+? tail)
|
|
|
|
(list 'withcc (xform #f (car tail) env)
|
2024-06-16 08:18:43 +02:00
|
|
|
(xform-body (cdr tail) env) #f)
|
2023-03-22 19:20:17 +01:00
|
|
|
(x-error "improper withcc form" (cons 'withcc tail))))
|
2023-03-11 19:41:44 +01:00
|
|
|
|
2024-06-16 08:18:43 +02:00
|
|
|
(define (xform-body tail env appos?)
|
2023-03-29 00:14:45 +02:00
|
|
|
(cond
|
|
|
|
[(null? tail)
|
|
|
|
(list 'begin)]
|
2023-04-04 02:41:15 +02:00
|
|
|
[(list1? tail) ; can't have defines there
|
2024-06-16 08:42:03 +02:00
|
|
|
(xform appos? (car tail) env)]
|
2023-03-29 00:14:45 +02: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-29 00:14:45 +02: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)]
|
2024-05-28 23:40:54 +02:00
|
|
|
[nid (gensym (id->sym id))] [env (add-local-var id nid env)])
|
2023-04-13 23:59:31 +02:00
|
|
|
(loop env (cons id ids) (cons init inits) (cons nid nids) rest))]
|
|
|
|
[(and (list2+? tail) (pair? (car tail)) (id? (caar tail)) (idslist? (cdar tail)))
|
2024-07-05 20:26:20 +02:00
|
|
|
(let* ([id (caar tail)] [init (cons lambda-id (cons (cdar tail) (cdr tail)))]
|
2024-05-28 23:40:54 +02:00
|
|
|
[nid (gensym (id->sym id))] [env (add-local-var id nid env)])
|
2023-04-13 23:59:31 +02:00
|
|
|
(loop env (cons id ids) (cons init inits) (cons nid nids) rest))]
|
|
|
|
[else (x-error "improper define form" first)])]
|
|
|
|
[(define-syntax) ; internal
|
2023-03-29 00:14:45 +02:00
|
|
|
(if (and (list2? tail) (id? (car tail)))
|
|
|
|
(let* ([id (car tail)] [init (cadr tail)]
|
2024-05-28 23:40:54 +02:00
|
|
|
[env (extend-xenv-local id '(undefined) env)])
|
2023-03-29 00:14:45 +02: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))
|
2024-06-16 08:18:43 +02:00
|
|
|
(xform-labels (reverse ids) (reverse inits) (reverse nids) body env appos?))])))
|
|
|
|
(xform-labels (reverse ids) (reverse inits) (reverse nids) body env appos?)))]))
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2024-06-16 08:18:43 +02:00
|
|
|
(define (xform-labels ids inits nids body env appos?)
|
|
|
|
(define no-defines? (andmap (lambda (nid) (eq? nid #t)) nids))
|
2023-03-04 06:07:52 +01:00
|
|
|
(let loop ([ids ids] [inits inits] [nids nids] [sets '()] [lids '()])
|
2024-06-16 08:18:43 +02:00
|
|
|
(cond [(null? ids)
|
|
|
|
(if (and no-defines? (list1? body))
|
|
|
|
; special case: expand body using current appos?
|
|
|
|
(xform appos? (car body) env)
|
|
|
|
; general case: produce expression
|
|
|
|
(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
|
|
|
|
(pair* 'call (list 'lambda (reverse lids) xexp)
|
|
|
|
(map (lambda (lid) '(begin)) lids)))))]
|
|
|
|
[(not (car ids)) ; idless define, nid is #f
|
2023-03-29 00:14:45 +02:00
|
|
|
(loop (cdr ids) (cdr inits) (cdr nids)
|
|
|
|
(cons (xform #f (car inits) env) sets) lids)]
|
2023-03-04 06:07:52 +01:00
|
|
|
[(symbol? (car nids)) ; define
|
|
|
|
(loop (cdr ids) (cdr inits) (cdr nids)
|
2023-03-22 19:20:17 +01:00
|
|
|
(cons (xform-set! (list (car ids) (car inits)) env) sets)
|
2023-03-04 06:07:52 +01:00
|
|
|
(cons (car nids) lids))]
|
2024-06-16 08:18:43 +02:00
|
|
|
[else ; define-syntax, nid is #t
|
2024-05-28 23:40:54 +02:00
|
|
|
(location-set-val! (xenv-lookup env (car ids) 'set!) (xform #t (car inits) env))
|
2023-03-04 06:07:52 +01:00
|
|
|
(loop (cdr ids) (cdr inits) (cdr nids) sets lids)])))
|
|
|
|
|
2024-06-27 19:31:32 +02:00
|
|
|
(define (xform-begin tail env appos?) ; non-internal
|
2023-04-14 20:49:32 +02:00
|
|
|
(if (list? tail)
|
2024-06-27 19:31:32 +02:00
|
|
|
(if (list1? tail)
|
|
|
|
(xform appos? (car tail) env) ; (begin x) == x
|
|
|
|
(cons 'begin (map (lambda (sexp) (xform #f sexp env)) tail)))
|
2024-06-13 21:49:33 +02:00
|
|
|
(x-error "improper begin form" (cons 'begin tail))))
|
2023-04-14 20:49:32 +02:00
|
|
|
|
2023-04-22 05:11:45 +02:00
|
|
|
(define (xform-define tail env) ; non-internal
|
2023-04-13 23:59:31 +02:00
|
|
|
(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-03-04 06:07:52 +01:00
|
|
|
|
2023-04-22 05:11:45 +02:00
|
|
|
(define (xform-define-syntax tail env) ; non-internal
|
2023-03-22 19:20:17 +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-03-04 06:07:52 +01:00
|
|
|
|
2024-06-16 08:18:43 +02:00
|
|
|
(define (xform-syntax-lambda tail env appos?)
|
2023-04-14 00:31:20 +02:00
|
|
|
(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 ...)
|
2024-05-27 01:01:04 +02:00
|
|
|
; to make sure xform treats it as final <core> form and exits the loop
|
2023-04-14 00:31:20 +02:00
|
|
|
(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-06-16 08:18:43 +02:00
|
|
|
(list 'syntax (xform-body forms env appos?))
|
2023-04-14 00:31:20 +02:00
|
|
|
(loop (cdr vars) (cdr exps)
|
2024-05-28 23:40:54 +02:00
|
|
|
(extend-xenv-local (car vars)
|
2023-04-14 00:31:20 +02:00
|
|
|
(xform #t (car exps) useenv) env))))
|
2024-05-27 01:01:04 +02:00
|
|
|
(x-error "invalid syntax-lambda application" use))))
|
2023-04-14 00:31:20 +02:00
|
|
|
(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)))))
|
|
|
|
|
|
|
|
; make transformer procedure from the rules
|
2023-03-04 06:07:52 +01:00
|
|
|
|
|
|
|
(define (syntax-rules* mac-env ellipsis pat-literals rules)
|
2023-04-14 17:34:47 +02:00
|
|
|
|
2023-03-04 06:07:52 +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-03-04 06:07:52 +01:00
|
|
|
(define (ellipsis? x)
|
|
|
|
(if ellipsis
|
|
|
|
(eq? x ellipsis)
|
2024-05-28 23:40:54 +02:00
|
|
|
(and (id? x) (ellipsis-denotation? (xenv-ref mac-env x)))))
|
2023-03-04 06:07:52 +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)
|
2024-05-28 23:40:54 +02:00
|
|
|
(continue-if
|
|
|
|
(and (id? sexp) (eq? (xenv-ref use-env sexp) (xenv-ref mac-env pat))))
|
2023-03-04 06:07:52 +01:00
|
|
|
(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
|
2024-06-14 22:15:15 +02:00
|
|
|
(body
|
|
|
|
(define nl
|
2024-06-21 00:42:11 +02:00
|
|
|
(map (lambda (id) (cons id (new-id (id->sym id) (xenv-ref mac-env id) (lambda () nl))))
|
|
|
|
(list-ids tmpl #t (lambda (id) (not (assq id top-bindings))))))
|
2024-06-14 22:15:15 +02:00
|
|
|
nl))
|
2023-03-04 06:07:52 +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-21 20:29:28 +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-03-04 06:07:52 +01:00
|
|
|
(let ([val-lists (map lookup vars-to-iterate)])
|
|
|
|
(append
|
|
|
|
(apply map (cons expand-using-vals val-lists))
|
2023-03-21 20:29:28 +01:00
|
|
|
(expand-part (cddr tmpl))))))]
|
|
|
|
[(pair? tmpl)
|
|
|
|
(cons (expand-part (car tmpl)) (expand-part (cdr tmpl)))]
|
2023-03-04 06:07:52 +01:00
|
|
|
[else tmpl]))))
|
|
|
|
|
|
|
|
(lambda (use use-env)
|
|
|
|
(let loop ([rules rules])
|
2023-03-22 19:20:17 +01:00
|
|
|
(if (null? rules) (x-error "invalid syntax" use))
|
2023-03-04 06:07:52 +01:00
|
|
|
(let* ([rule (car rules)] [pat (car rule)] [tmpl (cadr rule)])
|
|
|
|
(cond [(match-pattern pat use use-env) =>
|
2023-03-07 19:42:29 +01:00
|
|
|
(lambda (bindings) (expand-template pat tmpl bindings))]
|
2023-03-04 06:07:52 +01:00
|
|
|
[else (loop (cdr rules))])))))
|
|
|
|
|
2024-06-13 21:49:33 +02:00
|
|
|
; hand-made transformers (use functionality defined below)
|
|
|
|
|
|
|
|
(define (make-include-transformer ci?)
|
2024-06-27 19:31:32 +02:00
|
|
|
(define (push-current-file-transformer sexp env)
|
|
|
|
(unless (and (list2? sexp) (string? (cadr sexp))) (x-error "invalid syntax" sexp))
|
|
|
|
(push-current-file! (cadr sexp)) (list begin-id))
|
|
|
|
(define (pop-current-file-transformer sexp env)
|
|
|
|
(unless (list1? sexp) (x-error "invalid syntax" sexp))
|
|
|
|
(pop-current-file!) (list begin-id))
|
|
|
|
(define push-cf-id (new-id 'push-cf (make-location push-current-file-transformer) #f))
|
|
|
|
(define pop-cf-id (new-id 'pop-cf (make-location pop-current-file-transformer) #f))
|
2024-06-13 21:49:33 +02:00
|
|
|
(lambda (sexp env)
|
2024-06-27 19:31:32 +02:00
|
|
|
(unless (list1+? sexp) (x-error "invalid syntax" sexp))
|
|
|
|
(let loop ([files (cdr sexp)] [exp-lists '()])
|
|
|
|
(if (null? files)
|
|
|
|
(cons begin-id (apply append (reverse! exp-lists)))
|
|
|
|
(let* ([filepath (file-resolve-relative-to-current (car files))]
|
2024-07-04 00:47:26 +02:00
|
|
|
[fileok? (and (string? filepath) (file-exists? filepath))]
|
|
|
|
[test (if fileok? #t (x-error "cannot include" (car files) sexp))]
|
2024-06-30 20:37:22 +02:00
|
|
|
[sexps (read-file-sexps filepath ci?)]
|
|
|
|
[wrapped-sexps `((,push-cf-id ,filepath) ,@sexps (,pop-cf-id))])
|
2024-06-27 19:31:32 +02:00
|
|
|
(loop (cdr files) (cons wrapped-sexps exp-lists)))))))
|
|
|
|
|
2024-07-04 00:47:26 +02:00
|
|
|
; return the right ce branch using (lit=? id sym) for literal match
|
|
|
|
(define (preprocess-cond-expand lit=? sexp) ;=> (sexp ...)
|
|
|
|
(define (pp freq con alt)
|
|
|
|
(cond [(lit=? freq 'else) (con)]
|
|
|
|
[(id? freq) (if (feature-available? (id->sym freq)) (con) (alt))]
|
|
|
|
[(and (list2? freq) (lit=? (car freq) 'library))
|
|
|
|
(if (library-available? (xform-sexp->datum (cadr freq))) (con) (alt))]
|
|
|
|
[(and (list1+? freq) (lit=? (car freq) 'and))
|
|
|
|
(cond [(null? (cdr freq)) (con)] [(null? (cddr freq)) (pp (cadr freq) con alt)]
|
|
|
|
[else (pp (cadr freq) (lambda () (pp (cons (car freq) (cddr freq)) con alt)) alt)])]
|
|
|
|
[(and (list1+? freq) (lit=? (car freq) 'or))
|
|
|
|
(cond [(null? (cdr freq)) (alt)] [(null? (cddr freq)) (pp (cadr freq) con alt)]
|
|
|
|
[else (pp (cadr freq) con (lambda () (pp (cons (car freq) (cddr freq)) con alt)))])]
|
|
|
|
[(and (list2? freq) (lit=? (car freq) 'not)) (pp (cadr freq) alt con)]
|
2024-07-04 19:29:02 +02:00
|
|
|
[else (x-error "invalid cond-expand feature requirement" freq)]))
|
2024-07-04 00:47:26 +02:00
|
|
|
(check-syntax sexp '(<id> (* * ...) ...) "invalid cond-expand syntax")
|
|
|
|
(let loop ([clauses (cdr sexp)])
|
|
|
|
(if (null? clauses) '()
|
|
|
|
(pp (caar clauses) (lambda () (cdar clauses)) (lambda () (loop (cdr clauses)))))))
|
|
|
|
|
|
|
|
(define (make-cond-expand-transformer)
|
|
|
|
(lambda (sexp env)
|
|
|
|
(define (lit=? id sym) ; match literal using free-id=? -like match
|
|
|
|
(and (id? id) (eq? (xenv-ref env id) (xenv-ref root-environment sym))))
|
|
|
|
(cons begin-id (preprocess-cond-expand lit=? sexp))))
|
2024-06-13 21:49:33 +02:00
|
|
|
|
2024-07-05 20:26:20 +02:00
|
|
|
; library transformers
|
|
|
|
|
|
|
|
; code is a <core> scheme expression as produced by the expander
|
|
|
|
(define (adjoin-code code1 code2) ;=> code12, in original order
|
|
|
|
(cond [(equal? code1 '(begin)) code2]
|
|
|
|
[(equal? code2 '(begin)) code1]
|
|
|
|
[(and (sexp-match? '(begin * ...) code1) (sexp-match? '(begin * ...) code2))
|
|
|
|
(cons 'begin (append (cdr code1) (cdr code2)))]
|
|
|
|
[(sexp-match? '(begin * ...) code1) (cons 'begin (append (cdr code1) (list code2)))]
|
|
|
|
[(sexp-match? '(begin * ...) code2) (cons 'begin (cons code1 (cdr code2)))]
|
|
|
|
[else (list 'begin code1 code2)]))
|
|
|
|
|
|
|
|
; eals are alist-like export lists ((<sym> . <den>) ...)
|
|
|
|
(define (adjoin-eals eal1 eal2) ;=> eal12
|
|
|
|
(if (null? eal1) eal2
|
|
|
|
(let ([eal2 (adjoin-eals (cdr eal1) eal2)])
|
|
|
|
(cond [(assq (caar eal1) eal2) =>
|
|
|
|
(lambda (p)
|
|
|
|
(if (eq? (cdar eal1) (cdr p))
|
|
|
|
eal2 ; repeat of same id with same denotation is allowed
|
|
|
|
(x-error "multiple identifier bindings on import" (car eal1) p)))]
|
|
|
|
[else (cons (car eal1) eal2)]))))
|
|
|
|
|
|
|
|
; esps is a list of export specs, each spec is (<old-id> . <new-id>)
|
|
|
|
(define (adjoin-esps esps1 esps2) ;=> esps12
|
|
|
|
(if (null? esps1) esps2 ; assume esps2 is already checked
|
|
|
|
(let ([esp (car esps1)] [esps (adjoin-esps (cdr esps1) esps2)])
|
|
|
|
(cond [(member esp esps) esps] ; duplicate, but same rename -- already checked, ok
|
|
|
|
[(assq (car esp) esps) => (lambda (p) (x-error "duplicate identifier exports" esp p))]
|
|
|
|
[(rassq (cdr esp) esps) => (lambda (p) (x-error "conflicting identifier exports" esp p))]
|
|
|
|
[else (cons esp esps)]))))
|
|
|
|
|
|
|
|
(define (preprocess-import-sets sexp env) ;=> (init-core . exports-eal)
|
|
|
|
(define (twoids? x) (and (list2? x) (id? (car x)) (id? (cadr x))))
|
|
|
|
(define (libpart? x) (or (id? x) (exact-integer? x)))
|
|
|
|
(check-syntax sexp '(<id> * ...) "invalid import syntax")
|
|
|
|
(let* ([sid (car sexp)] ; reference id to capture names entered by user
|
|
|
|
[is-only-id (id-rename-as sid 'only)] [is-except-id (id-rename-as sid 'except)]
|
|
|
|
[is-rename-id (id-rename-as sid 'rename)] [is-prefix-id (id-rename-as sid 'prefix)]
|
|
|
|
[is-library-id (id-rename-as sid 'library)])
|
|
|
|
(define (pp s return)
|
|
|
|
(define special (and (list2+? s) (pair? (cadr s))))
|
|
|
|
(cond
|
|
|
|
[(and special (eq? (car s) is-only-id) (andmap id? (cddr s)))
|
|
|
|
(pp (cadr s) ;=>
|
|
|
|
(lambda (code al)
|
|
|
|
(return code
|
|
|
|
(let loop ([al al] [ids (map id->sym (cddr s))])
|
|
|
|
(cond [(null? al) al]
|
|
|
|
[(memq (caar al) ids) (cons (car al) (loop (cdr al) ids))]
|
|
|
|
[else (loop (cdr al) ids)])))))]
|
|
|
|
[(and special (eq? (car s) is-except-id) (andmap id? (cddr s)))
|
|
|
|
(pp (cadr s) ;=>
|
|
|
|
(lambda (code al)
|
|
|
|
(return code
|
|
|
|
(let loop ([al al] [ids (map id->sym (cddr s))])
|
|
|
|
(cond [(null? al) al]
|
|
|
|
[(memq (caar al) ids) (loop (cdr al) ids)]
|
|
|
|
[else (cons (car al) (loop (cdr al) ids))])))))]
|
|
|
|
[(and special (eq? (car s) is-prefix-id) (list2? (cdr s)) (id? (caddr s)))
|
|
|
|
(pp (cadr s) ;=>
|
|
|
|
(lambda (code al)
|
|
|
|
(return code
|
|
|
|
(let loop ([al al] [pfx (id->sym (caddr s))])
|
|
|
|
(cond [(null? al) al]
|
|
|
|
[else (let ([nn (symbol-append pfx (caar al))])
|
|
|
|
(cons (cons nn (cdar al)) (loop (cdr al) pfx)))])))))]
|
|
|
|
[(and special (eq? (car s) is-rename-id) (andmap twoids? (cddr s)))
|
|
|
|
(pp (cadr s) ;=>
|
|
|
|
(lambda (code al)
|
|
|
|
(return code
|
|
|
|
(let loop ([al al] [idpairs (xform-sexp->datum (cddr s))])
|
|
|
|
(cond [(null? al) al]
|
|
|
|
[(assq (caar al) idpairs) =>
|
|
|
|
(lambda (idpair) (cons (cons (cadr idpair) (cdar al)) (loop (cdr al) idpairs)))]
|
|
|
|
[else (cons (car al) (loop (cdr al) idpairs))])))))]
|
|
|
|
[(and (list2+? s) (eq? (car s) is-library-id))
|
|
|
|
(let ([ic&ex (preprocess-library s env)])
|
|
|
|
(return (car ic&ex) (cdr ic&ex)))]
|
|
|
|
[(and (list1+? s) (andmap libpart? s))
|
|
|
|
(let* ([lib (xform-sexp->datum s)]
|
|
|
|
[sym (if (symbol? lib) lib (listname->symbol lib))]
|
|
|
|
[core (xform #f sym env)]) ; #f to run id-syntax (in mac-env?)
|
|
|
|
(check-syntax core '(quote ((<symbol> * ...) (<symbol> . *) ...))
|
|
|
|
"library import set does not refer to a valid library")
|
|
|
|
(return (caadr core) (cdadr core)))]
|
|
|
|
[else
|
|
|
|
(x-error "invalid import set in import" s)]))
|
|
|
|
(let loop ([isets (cdr sexp)] [code '(begin)] [eal '()])
|
|
|
|
(if (null? isets)
|
|
|
|
(cons code eal)
|
|
|
|
(pp (car isets) ;=>
|
|
|
|
(lambda (new-code new-eal)
|
|
|
|
(loop (cdr isets)
|
|
|
|
(adjoin-code code new-code)
|
|
|
|
(adjoin-eals new-eal eal))))))))
|
|
|
|
|
|
|
|
(define (preprocess-library-declarations sexp env) ;=> (init-code import-eal esps forms)
|
|
|
|
(check-syntax sexp '(<id> (<id> * ...) ...) "invalid library declarations syntax")
|
|
|
|
(let* ([sid (car sexp)] ; reference id to capture names entered by user
|
|
|
|
[ld-export-id (id-rename-as sid 'export)] [ld-import-id (id-rename-as sid 'import)]
|
|
|
|
[ld-include-id (id-rename-as sid 'include)] [ld-include-ci-id (id-rename-as sid 'include-ci)]
|
|
|
|
[ld-begin-id (id-rename-as sid 'begin)] [ld-rename-id (id-rename-as sid 'rename)]
|
|
|
|
[ld-cond-expand-id (id-rename-as sid 'cond-expand)]
|
|
|
|
[ld-push-cf-id (id-rename-as sid 'push-cf)] [ld-pop-cf-id (id-rename-as sid 'pop-cf)]
|
|
|
|
[ld-library-declarations-id (id-rename-as sid 'library-declarations)]
|
|
|
|
[ld-include-library-declarations-id (id-rename-as sid 'include-library-declarations)]
|
|
|
|
[include-id (new-id 'include (make-location (make-include-transformer #f)) #f)]
|
|
|
|
[include-ci-id (new-id 'include-ci (make-location (make-include-transformer #t)) #f)])
|
|
|
|
(define (toesps ee esps) ;=> ((<old-id> . <new-id>) ...)
|
|
|
|
(cond [(null? ee) (reverse! esps)]
|
|
|
|
[(id? (car ee)) (let ([s (id->sym (car ee))]) (toesps (cdr ee) (adjoin-esps (list (cons s s)) esps)))]
|
|
|
|
[(and (sexp-match? '(<id> <id> <id>) (car ee)) (eq? (caar ee) ld-rename-id))
|
|
|
|
(toesps (cdr ee) (adjoin-esps (list (cons (id->sym (cadar ee)) (id->sym (caddar ee)))) esps))]
|
|
|
|
[else (x-error "invalid export spec element" (xform-sexp->datum (car ee)))]))
|
|
|
|
(let loop ([decls (cdr sexp)] [code '(begin)] [eal '()] [esps '()] [forms '()])
|
|
|
|
(if (null? decls)
|
|
|
|
(list code eal esps forms)
|
|
|
|
(let ([decl (car decls)] [decls (cdr decls)])
|
|
|
|
(cond ; precondition: decl matches (<id> * ...)
|
|
|
|
[(eq? (car decl) ld-export-id)
|
|
|
|
(loop decls code eal (adjoin-esps (toesps (cdr decl) '()) esps) forms)]
|
|
|
|
[(and (list2? decl) (eq? (car decl) ld-import-id) (eq? (cadr decl) ld-import-id))
|
|
|
|
(let ([new-eal (list (cons 'import (make-location import-transformer)))])
|
|
|
|
(loop decls code (adjoin-eals new-eal eal) esps forms))]
|
|
|
|
[(eq? (car decl) ld-import-id)
|
|
|
|
(let ([ic&ex (preprocess-import-sets decl env)])
|
|
|
|
(let ([new-code (car ic&ex)] [new-eal (cdr ic&ex)])
|
|
|
|
(loop decls (adjoin-code code new-code) (adjoin-eals new-eal eal) esps forms)))]
|
|
|
|
[(eq? (car decl) ld-library-declarations-id) ; splice
|
|
|
|
(loop (append (cdr decl) decls) code eal esps forms)]
|
|
|
|
[(eq? (car decl) ld-cond-expand-id) ; flatten and splice
|
|
|
|
(let ([lit=? (lambda (id sym) (and (id? id) (eq? id (id-rename-as sid sym))))])
|
|
|
|
(loop (append (preprocess-cond-expand lit=? (cdr decl)) decls) code eal esps forms))]
|
|
|
|
[(eq? (car decl) ld-push-cf-id) ; internal
|
|
|
|
(check-syntax decl '(<id> <string>) "invalid library declarations syntax")
|
|
|
|
(push-current-file! (cadr decl))
|
|
|
|
(loop decls code eal esps forms)]
|
|
|
|
[(eq? (car decl) ld-pop-cf-id) ; internal
|
|
|
|
(check-syntax decl '(<id>) "invalid library declarations syntax")
|
|
|
|
(pop-current-file!)
|
|
|
|
(loop decls code eal esps forms)]
|
|
|
|
[(eq? (car decl) ld-include-library-declarations-id) ; splice
|
|
|
|
(check-syntax decl '(<id> <string> ...) "invalid include-library-declarations syntax")
|
|
|
|
(let lp ([files (reverse (cdr decl))] [decls decls])
|
|
|
|
(if (null? files) (loop decls code eal esps forms)
|
|
|
|
(let* ([filepath (file-resolve-relative-to-current (car files))]
|
|
|
|
[fileok? (and (string? filepath) (file-exists? filepath))]
|
|
|
|
[test (if fileok? #t (x-error "cannot include declarations" (car files) sexp))]
|
|
|
|
[decl* (read-file-sexps filepath #f)]) ; no ci?
|
|
|
|
(lp (cdr files) `((,ld-push-cf-id ,filepath) ,@decl* (,ld-pop-cf-id) . ,decls)))))]
|
|
|
|
[(eq? (car decl) ld-include-id)
|
|
|
|
(check-syntax decl '(<id> <string> ...) "invalid include library declaration syntax")
|
|
|
|
(loop decls code eal esps `(,@forms (,include-id . ,(cdr decl))))]
|
|
|
|
[(eq? (car decl) ld-include-ci-id)
|
|
|
|
(check-syntax decl '(<id> <string> ...) "invalid include-ci library declaration syntax")
|
|
|
|
(loop decls code eal esps `(,@forms (,include-ci-id . ,(cdr decl))))]
|
|
|
|
[(eq? (car decl) ld-begin-id)
|
|
|
|
(loop decls code eal esps (append forms (xform-sexp->datum (cdr decl))))]))))))
|
|
|
|
|
|
|
|
; make functional read-only environment from import al,
|
|
|
|
; allowing fall-through to env for lib://foo/bar ids
|
|
|
|
(define (ial->controlled-environment ial make-nid env)
|
|
|
|
(let ([v (make-vector 1 '())]) ; new ids go here
|
|
|
|
(lambda (id at)
|
|
|
|
(cond [(procedure? id)
|
|
|
|
(and (memq at '(ref const)) (old-den id))]
|
|
|
|
[(assq id (vector-ref v 0)) =>
|
|
|
|
cdr] ; full access to new locations
|
|
|
|
[(assq id ial) => ; read-only acess to imports, no shadowing?
|
|
|
|
(lambda (b) (and (memq at '(ref const)) (cdr b)))]
|
|
|
|
[(symbol-libname? id) ; read-only acess to libs
|
|
|
|
(and (memq at '(ref const)) (env id at))]
|
|
|
|
[(memq at '(ref const set! define))
|
|
|
|
(let ([loc (make-location (list 'ref (make-nid id)))])
|
|
|
|
(vector-set! v 0 (cons (cons id loc) (vector-ref v 0)))
|
|
|
|
loc)]
|
|
|
|
[(memq at '(define-syntax))
|
|
|
|
(let ([loc (make-location '(undefined))])
|
|
|
|
(vector-set! v 0 (cons (cons id loc) (vector-ref v 0)))
|
|
|
|
loc)]
|
|
|
|
[else #f]))))
|
|
|
|
|
|
|
|
(define (preprocess-library sexp env) ;=> (init-core . exports-eal)
|
|
|
|
; generator of globals: use prefix or temporary if no prefix is given
|
|
|
|
(define (make-nid id)
|
|
|
|
(if (and (list2+? sexp) (id? (cadr sexp))) ; got library id
|
|
|
|
(fully-qualified-library-prefixed-name (id->sym (cadr sexp)) (id->sym id))
|
|
|
|
(gensym (id->sym id))))
|
|
|
|
; (library lib? library-declaration ...)
|
|
|
|
(check-syntax sexp '(* * ...) "invalid library syntax")
|
|
|
|
(let* ([lid (if (and (list2+? sexp) (id? (cadr sexp))) (id->sym (cadr sexp)) #f)]
|
|
|
|
[decls (if lid (cddr sexp) (cdr sexp))] ; NB: mac env is used below to resolve lib names!
|
|
|
|
[icimesfs (preprocess-library-declarations (cons (car sexp) decls) env)])
|
|
|
|
(let* ([code (car icimesfs)] [ial (cadr icimesfs)] [esps (caddr icimesfs)] [forms (cadddr icimesfs)]
|
|
|
|
[cenv (ial->controlled-environment ial make-nid env)] [eal '()])
|
|
|
|
(define (scan body code*) ;=> extended with side-effect on cenv
|
|
|
|
(if (null? body)
|
|
|
|
code*
|
|
|
|
(let ([first (car body)] [rest (cdr body)])
|
|
|
|
(if (pair? first)
|
|
|
|
(let* ([head (car first)] [tail (cdr first)] [hval (xform #t head cenv)])
|
|
|
|
(case hval
|
|
|
|
[(begin)
|
|
|
|
(if (list? tail)
|
|
|
|
(scan (append tail rest) code*)
|
|
|
|
(x-error "improper begin form" first))]
|
|
|
|
[(define)
|
|
|
|
(cond [(and (list2? tail) (null? (car tail))) ; idless
|
|
|
|
(scan rest (cons (xform #f (cadr tail) cenv) code*))]
|
|
|
|
[(and (list2? tail) (id? (car tail)))
|
|
|
|
(unless (xenv-lookup cenv (car tail) 'define)
|
|
|
|
(x-error "unexpected define for id" (car tail) first))
|
|
|
|
(scan rest (cons (xform-set! tail cenv) code*))]
|
|
|
|
[(and (list2+? tail) (pair? (car tail)) (id? (caar tail)) (idslist? (cdar tail)))
|
|
|
|
(unless (xenv-lookup cenv (caar tail) 'define)
|
|
|
|
(x-error "unexpected define for id" (caar tail) first))
|
|
|
|
(let* ([id (caar tail)] [init (cons lambda-id (cons (cdar tail) (cdr tail)))])
|
|
|
|
(scan rest (cons (xform-set! (list id init) cenv) code*)))]
|
|
|
|
[else (x-error "improper define form" first)])]
|
|
|
|
[(define-syntax)
|
|
|
|
(cond [(and (list2? tail) (id? (car tail)))
|
|
|
|
(let ([loc (xenv-lookup cenv (car tail) 'define-syntax)])
|
|
|
|
(location-set-val! loc (xform #t (cadr tail) cenv))
|
|
|
|
(scan rest code*))]
|
|
|
|
[else (x-error "improper define-syntax form" first)])]
|
|
|
|
; TODO: check for built-in (export) and modify eal!
|
|
|
|
[else
|
|
|
|
(if (procedure? hval)
|
|
|
|
(scan (cons (hval first cenv) rest) code*)
|
|
|
|
(scan rest (cons (xform #f first cenv) code*)))]))
|
|
|
|
(scan rest (cons (xform #f first cenv) code*))))))
|
|
|
|
(let* ([code* (scan forms '())] [forms-code (cons 'begin (reverse! code*))]
|
|
|
|
[combined-code (adjoin-code code (if lid (list 'once lid forms-code) forms-code))])
|
|
|
|
; walk through esps, fetching locations from cenv
|
|
|
|
(let loop ([esps esps] [eal eal])
|
|
|
|
(if (null? esps)
|
|
|
|
(cons combined-code (reverse! eal))
|
|
|
|
(let* ([lid (caar esps)] [eid (cdar esps)] [loc (cenv lid 'const)])
|
|
|
|
(cond [(not loc) (x-error "cannot export id" lid)]
|
|
|
|
[(location-special? loc) (loop (cdr esps) (cons (cons eid loc) eal))]
|
|
|
|
[else (let ([val (location-val loc)])
|
|
|
|
(if (memq (car val) '(ref const))
|
|
|
|
(loop (cdr esps) (cons (cons eid (make-location (list 'const (cadr val)))) eal))
|
|
|
|
(x-error "cannot export code alias id" lid val)))]))))))))
|
|
|
|
|
|
|
|
; note: define-library semantics does not depend on lexical context, and, as a syntax definition,
|
|
|
|
; it should become available in local env immediately, even at definition-scanning phase -- so we
|
|
|
|
; introduce new special <core> form define-library
|
|
|
|
|
|
|
|
(define (xform-define-library head tail env appos?) ; non-internal
|
|
|
|
(if (and (list2+? tail) (list1+? (car tail)))
|
|
|
|
(let* ([name (xform-sexp->datum (car tail))] [sym (if (symbol? name) name (listname->symbol name))]
|
|
|
|
[libform (cons head (cons sym (cdr tail)))] ; NB: head is used as seed id for renamings
|
|
|
|
[ic&ex (preprocess-library libform env)] [lid (id-rename-as head sym)])
|
|
|
|
(list 'define-library lid (list 'quote ic&ex)))
|
|
|
|
(x-error "improper define-library form" (cons head tail))))
|
|
|
|
|
|
|
|
; for now, we have no clear idea of how to process import in all possible contexts, so we will also
|
|
|
|
; introduce new special <core> form import
|
|
|
|
|
|
|
|
(define (xform-import head tail env appos?) ; non-internal
|
|
|
|
(if (list? tail)
|
|
|
|
(let ([ic&ex (preprocess-import-sets (cons head tail) env)])
|
2024-07-05 22:52:42 +02:00
|
|
|
(list 'import (list 'quote ic&ex)))
|
2024-07-05 20:26:20 +02:00
|
|
|
(x-error "improper import form" (cons head tail))))
|
|
|
|
|
2023-03-04 06:07:52 +01:00
|
|
|
|
2023-04-21 04:39:05 +02:00
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; String representation of S-expressions and code arguments
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
(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)]))
|
|
|
|
|
|
|
|
(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)))
|
|
|
|
|
|
|
|
(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))]
|
|
|
|
[(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))]
|
|
|
|
[(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)))]
|
|
|
|
[(box? x)
|
|
|
|
(write-char #\z port)
|
|
|
|
(write-serialized-element (unbox x) port)]
|
|
|
|
[else (c-error "cannot encode literal" x)]))
|
|
|
|
|
|
|
|
(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 (c-error msg . args)
|
|
|
|
(error* (string-append "compiler: " msg) args))
|
|
|
|
|
2024-06-05 00:37:55 +02:00
|
|
|
(define (c-warning msg . args)
|
|
|
|
(warning* (string-append "compiler: " msg) args))
|
|
|
|
|
2023-04-21 04:39:05 +02:00
|
|
|
(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)
|
|
|
|
'()]
|
2024-06-30 20:37:22 +02:00
|
|
|
[gref (gid)
|
|
|
|
'()]
|
|
|
|
[gset! (gid exp)
|
|
|
|
(find-free exp b)]
|
2024-06-14 07:08:36 +02:00
|
|
|
[(ref const) (id)
|
2023-04-21 04:39:05 +02:00
|
|
|
(if (set-member? id b) '() (list id))]
|
|
|
|
[set! (id exp)
|
|
|
|
(set-union
|
|
|
|
(if (set-member? id b) '() (list id))
|
|
|
|
(find-free exp b))]
|
|
|
|
[set& (id)
|
|
|
|
(if (set-member? id b) '() (list id))]
|
|
|
|
[lambda (idsi exp)
|
|
|
|
(find-free exp (set-union (flatten-idslist idsi) b))]
|
|
|
|
[lambda* clauses
|
|
|
|
(find-free* (map cadr clauses) b)]
|
|
|
|
[letcc (kid exp)
|
|
|
|
(find-free exp (set-union (list kid) b))]
|
|
|
|
[withcc (kexp exp)
|
|
|
|
(set-union (find-free kexp b) (find-free exp b))]
|
|
|
|
[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)]
|
|
|
|
[integrable (ig . args)
|
|
|
|
(find-free* args b)]
|
|
|
|
[call (exp . args)
|
|
|
|
(set-union (find-free exp b) (find-free* args b))]
|
2024-06-16 21:07:24 +02:00
|
|
|
[asm (cstr)
|
|
|
|
'()]
|
2024-06-25 00:01:34 +02:00
|
|
|
[once (gid exp)
|
|
|
|
(find-free exp b)]
|
2024-07-05 20:26:20 +02:00
|
|
|
[(define define-syntax define-library import) tail
|
2024-06-19 23:11:03 +02:00
|
|
|
(c-error "misplaced definition form" x)])))
|
2023-04-21 04:39:05 +02: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)
|
|
|
|
'()]
|
2024-06-30 20:37:22 +02:00
|
|
|
[gref (gid)
|
|
|
|
'()]
|
|
|
|
[gset! (gid exp)
|
|
|
|
(find-sets exp v)]
|
2024-06-14 07:08:36 +02:00
|
|
|
[(ref const) (id)
|
2023-04-21 04:39:05 +02:00
|
|
|
'()]
|
2024-06-30 20:37:22 +02:00
|
|
|
[set! (id exp)
|
2023-04-21 04:39:05 +02:00
|
|
|
(set-union
|
|
|
|
(if (set-member? id v) (list id) '())
|
2024-06-30 20:37:22 +02:00
|
|
|
(find-sets exp v))]
|
2023-04-21 04:39:05 +02:00
|
|
|
[set& (id)
|
|
|
|
(if (set-member? id v) (list id) '())]
|
|
|
|
[lambda (idsi exp)
|
|
|
|
(find-sets exp (set-minus v (flatten-idslist idsi)))]
|
|
|
|
[lambda* clauses
|
|
|
|
(find-sets* (map cadr clauses) v)]
|
|
|
|
[letcc (kid exp)
|
|
|
|
(find-sets exp (set-minus v (list kid)))]
|
|
|
|
[withcc (kexp exp)
|
|
|
|
(set-union (find-sets kexp v) (find-sets exp v))]
|
|
|
|
[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)))]
|
|
|
|
[integrable (ig . args)
|
|
|
|
(find-sets* args v)]
|
|
|
|
[call (exp . args)
|
|
|
|
(set-union (find-sets exp v) (find-sets* args v))]
|
2024-06-16 21:07:24 +02:00
|
|
|
[asm (cstr)
|
|
|
|
'()]
|
2024-06-25 00:01:34 +02:00
|
|
|
[once (gid exp)
|
2024-06-30 20:37:22 +02:00
|
|
|
(find-sets exp v)]
|
2024-07-05 20:26:20 +02:00
|
|
|
[(define define-syntax define-library import) tail
|
2024-06-19 23:11:03 +02:00
|
|
|
(c-error "misplaced definition form" x)])))
|
2023-04-21 04:39:05 +02: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))]
|
2024-06-30 20:37:22 +02:00
|
|
|
[gref (gid)
|
|
|
|
(write-char #\@ port)
|
|
|
|
(write-serialized-arg gid port)
|
|
|
|
(when k (write-char #\] port) (write-serialized-arg k port))]
|
|
|
|
[gset! (gid x)
|
|
|
|
(codegen x l f s g #f port)
|
|
|
|
(write-char #\@ port) (write-char #\! port)
|
|
|
|
(write-serialized-arg gid port)
|
|
|
|
(when k (write-char #\] port) (write-serialized-arg k port))]
|
2024-06-14 07:08:36 +02:00
|
|
|
[(ref const) (id)
|
2023-04-21 04:39:05 +02:00
|
|
|
(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))]
|
|
|
|
[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))]
|
|
|
|
[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))]
|
|
|
|
[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)
|
|
|
|
(write-char #\% port) (write-char #\x port)
|
|
|
|
(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))]
|
|
|
|
[letcc (kid exp)
|
|
|
|
(let* ([ids (list kid)] [sets (find-sets exp ids)]
|
|
|
|
[news (set-union (set-minus s ids) sets)])
|
|
|
|
(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))
|
|
|
|
; stack map here: kid on top
|
|
|
|
(codegen exp (cons kid l) f news g (fx+ k 1) port)]
|
|
|
|
[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))
|
|
|
|
; 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)
|
|
|
|
(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)
|
|
|
|
(write-char #\, port) ; stack map after: k on top
|
|
|
|
(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)
|
|
|
|
(write-char #\, port) ; stack map after: k on top
|
|
|
|
(codegen kexp (cons #f l) f s g #f port)
|
|
|
|
(write-char #\w port)])]
|
|
|
|
[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)]
|
|
|
|
[(#\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))))]
|
|
|
|
[(#\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)))]
|
|
|
|
[(#\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)))]
|
|
|
|
[(#\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)]
|
|
|
|
[(#\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)]
|
|
|
|
[(#\#) ; (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)]
|
|
|
|
[else (c-error "unsupported integrable type" igty)]))
|
|
|
|
(when k (write-char #\] port) (write-serialized-arg k port))]
|
|
|
|
[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))))]
|
|
|
|
[k ; tail call with k elements under arguments
|
|
|
|
(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)]
|
|
|
|
[else ; non-tail call; 'save' puts 2 extra elements on the stack!
|
|
|
|
(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)
|
|
|
|
(write-char #\} port)])]
|
2024-06-16 21:07:24 +02:00
|
|
|
[asm (cstr)
|
|
|
|
(write-string cstr port)
|
|
|
|
(when k (write-char #\] port) (write-serialized-arg k port))]
|
2024-06-25 00:01:34 +02:00
|
|
|
[once (gid exp)
|
2024-06-30 20:37:22 +02:00
|
|
|
(codegen `(if (integrable ,(lookup-integrable 'eq?) (gref ,gid) (quote #t))
|
2024-06-25 00:01:34 +02:00
|
|
|
(begin)
|
2024-06-30 20:37:22 +02:00
|
|
|
(begin (gset! ,gid (quote #t)) ,exp))
|
2024-06-25 00:01:34 +02:00
|
|
|
l f s g k port)]
|
2024-07-05 20:26:20 +02:00
|
|
|
[(define define-syntax define-library import) tail
|
2024-06-19 23:11:03 +02:00
|
|
|
(c-error "misplaced definition form" x)])))
|
2023-04-21 04:39:05 +02:00
|
|
|
|
|
|
|
(define (compile-to-string x)
|
|
|
|
(let ([p (open-output-string)])
|
|
|
|
(codegen x '() '() '() (find-free x '()) #f p)
|
|
|
|
(get-output-string p)))
|
|
|
|
|
2023-04-22 05:11:45 +02:00
|
|
|
(define (compile-to-thunk-code x)
|
|
|
|
(let ([p (open-output-string)])
|
|
|
|
(codegen x '() '() '() (find-free x '()) 0 p)
|
|
|
|
(get-output-string p)))
|
|
|
|
|
2023-04-21 04:39:05 +02:00
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
2024-06-05 00:37:55 +02:00
|
|
|
; Path and file name resolution
|
2023-04-21 04:39:05 +02:00
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2024-07-04 19:29:02 +02:00
|
|
|
#;(define (path-strip-directory filename)
|
2024-06-05 00:37:55 +02:00
|
|
|
(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-directory filename)
|
|
|
|
(let loop ([l (reverse (string->list filename))])
|
|
|
|
(cond [(null? l) ""]
|
|
|
|
[(memv (car l) '(#\\ #\/ #\:)) (list->string (reverse l))]
|
|
|
|
[else (loop (cdr l))])))
|
|
|
|
|
2024-07-04 19:29:02 +02:00
|
|
|
#;(define (path-strip-extension filename) ;; improved
|
2024-06-05 00:37:55 +02:00
|
|
|
(let loop ([l (reverse (string->list filename))])
|
|
|
|
(cond [(null? l) filename]
|
|
|
|
[(eqv? (car l) #\.) (list->string (reverse (cdr l)))]
|
|
|
|
[(memv (car l) '(#\\ #\/ #\:)) filename]
|
|
|
|
[else (loop (cdr l))])))
|
|
|
|
|
|
|
|
#;(define (path-extension filename)
|
|
|
|
(let loop ([l (reverse (string->list filename))] [r '()])
|
|
|
|
(cond [(null? l) ""]
|
|
|
|
[(memv (car l) '(#\\ #\/ #\:)) ""]
|
|
|
|
[(eqv? (car l) #\.) (list->string (cons #\. r))]
|
|
|
|
[else (loop (cdr l) (cons (car l) r))])))
|
|
|
|
|
|
|
|
(define (base-path-separator basepath)
|
|
|
|
(let ([l (reverse (string->list basepath))])
|
|
|
|
(cond [(null? l) #f]
|
|
|
|
[(memv (car l) '(#\\ #\/)) (car l)]
|
|
|
|
[else #f])))
|
|
|
|
|
|
|
|
(define (path-relative? filename)
|
|
|
|
(let ([l (string->list filename)])
|
|
|
|
(cond [(null? l) #f]
|
|
|
|
[(memv (car l) '(#\\ #\/)) #f]
|
|
|
|
[(and (> (length l) 3) (char-alphabetic? (car l)) (eqv? (cadr l) #\:) (eqv? (caddr l) #\\)) #f]
|
|
|
|
[else #t])))
|
|
|
|
|
|
|
|
(define (file-resolve-relative-to-base-path filename basepath)
|
|
|
|
(if (and (path-relative? filename) (base-path-separator basepath))
|
|
|
|
(string-append basepath filename) ; leading . and .. to be resolved by OS
|
|
|
|
filename))
|
|
|
|
|
|
|
|
; hacks for relative file name resolution
|
|
|
|
|
|
|
|
(define *current-file-stack* '())
|
|
|
|
|
2024-06-27 19:31:32 +02:00
|
|
|
(define (current-file-stack) *current-file-stack*)
|
|
|
|
(define (set-current-file-stack! s) (set! *current-file-stack* s))
|
|
|
|
|
2024-06-05 00:37:55 +02:00
|
|
|
(define (current-file) ;=> filename of #f
|
|
|
|
(and (pair? *current-file-stack*) (car *current-file-stack*)))
|
|
|
|
|
2024-06-27 19:31:32 +02:00
|
|
|
(define (push-current-file! filename)
|
|
|
|
(when (member filename *current-file-stack* string=?)
|
|
|
|
(x-error "circularity in include file chain" filename))
|
|
|
|
(set! *current-file-stack* (cons filename *current-file-stack*)))
|
|
|
|
|
|
|
|
(define (pop-current-file!)
|
|
|
|
(unless (null? *current-file-stack*)
|
|
|
|
(set! *current-file-stack* (cdr *current-file-stack*))))
|
|
|
|
|
2024-06-05 00:37:55 +02:00
|
|
|
(define (with-current-file filename thunk)
|
|
|
|
(dynamic-wind
|
2024-06-27 19:31:32 +02:00
|
|
|
(lambda () (push-current-file! filename))
|
2024-06-05 00:37:55 +02:00
|
|
|
thunk
|
2024-06-27 19:31:32 +02:00
|
|
|
(lambda () (pop-current-file!))))
|
2024-06-05 00:37:55 +02:00
|
|
|
|
|
|
|
(define (file-resolve-relative-to-current filename) ; => resolved or original filename
|
|
|
|
(if (path-relative? filename)
|
|
|
|
(let ([cf (current-file)])
|
|
|
|
(if cf (file-resolve-relative-to-base-path filename (path-directory cf)) filename))
|
|
|
|
filename))
|
2023-04-21 04:39:05 +02:00
|
|
|
|
|
|
|
|
2024-06-05 00:37:55 +02:00
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; Library names and library file lookup
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2024-06-21 00:42:11 +02:00
|
|
|
(define (mangle-symbol->string sym)
|
|
|
|
(define safe '(#\! #\$ #\- #\_ #\=))
|
|
|
|
(let loop ([lst (string->list (symbol->string sym))] [text '()])
|
|
|
|
(cond [(null? lst)
|
|
|
|
(list->string (reverse text))]
|
|
|
|
[(or (char-lower-case? (car lst)) (char-numeric? (car lst)))
|
|
|
|
(loop (cdr lst) (cons (car lst) text))]
|
|
|
|
[(memv (car lst) safe)
|
|
|
|
(loop (cdr lst) (cons (car lst) text))]
|
|
|
|
[else ; use % encoding for everything else
|
|
|
|
(let* ([s (number->string (char->integer (car lst)) 16)]
|
|
|
|
[s (if (< (string-length s) 2) (string-append "0" s) s)]
|
|
|
|
[l (cons #\% (string->list (string-downcase s)))])
|
|
|
|
(loop (cdr lst) (append (reverse l) text)))])))
|
2024-06-15 22:00:03 +02:00
|
|
|
|
|
|
|
(define (listname->symbol lib)
|
|
|
|
(define postfix "")
|
|
|
|
(define prefix "lib:/")
|
|
|
|
(define symbol-prefix "/")
|
|
|
|
(define number-prefix "/")
|
2024-06-15 20:29:16 +02:00
|
|
|
(unless (list? lib) (x-error "invalid library name" lib))
|
|
|
|
(let loop ([lst lib] [parts (list prefix)])
|
|
|
|
(if (null? lst)
|
|
|
|
(string->symbol (apply string-append (reverse (cons postfix parts))))
|
|
|
|
(cond [(symbol? (car lst))
|
2024-06-15 22:00:03 +02:00
|
|
|
(loop (cdr lst) (cons (mangle-symbol->string (car lst)) (cons symbol-prefix parts)))]
|
2024-06-15 20:29:16 +02:00
|
|
|
[(exact-integer? (car lst))
|
2024-06-15 22:00:03 +02:00
|
|
|
(loop (cdr lst) (cons (number->string (car lst)) (cons number-prefix parts)))]
|
2024-06-15 20:29:16 +02:00
|
|
|
[else (x-error "invalid library name" lib)]))))
|
|
|
|
|
2024-06-05 00:37:55 +02:00
|
|
|
(define (listname-segment->string s)
|
2024-06-15 22:00:03 +02:00
|
|
|
(cond [(symbol? s) (mangle-symbol->string s)]
|
|
|
|
[(exact-integer? s) (number->string s)]
|
|
|
|
[else (c-error "invalid library name name element" s)]))
|
2024-06-05 00:37:55 +02:00
|
|
|
|
|
|
|
(define (listname->path listname basepath ext)
|
|
|
|
(define sep
|
|
|
|
(let ([sc (base-path-separator basepath)])
|
|
|
|
(if sc (string sc) (c-error "library path does not end in separator" basepath))))
|
|
|
|
(let loop ([l listname] [r '()])
|
|
|
|
(if (pair? l)
|
|
|
|
(loop (cdr l)
|
|
|
|
(if (null? r)
|
|
|
|
(cons (listname-segment->string (car l)) r)
|
|
|
|
(cons (listname-segment->string (car l)) (cons sep r))))
|
|
|
|
(file-resolve-relative-to-base-path (string-append* (reverse (cons ext r))) basepath))))
|
|
|
|
|
2024-07-05 00:00:41 +02:00
|
|
|
(define (symbol-libname? sym) ; integrable candidate
|
|
|
|
(let* ([str (symbol->string sym)] [sl (string-length str)])
|
|
|
|
(and (< 6 sl)
|
|
|
|
(char=? (string-ref str 0) #\l)
|
|
|
|
(char=? (string-ref str 1) #\i)
|
|
|
|
(char=? (string-ref str 2) #\b)
|
|
|
|
(char=? (string-ref str 3) #\:)
|
|
|
|
(char=? (string-ref str 4) #\/)
|
|
|
|
(char=? (string-ref str 5) #\/)
|
|
|
|
(substring str 6 sl))))
|
|
|
|
|
|
|
|
(define (symbol->listname sym) ;=> listname | #f
|
|
|
|
(let loop ([s (symbol-libname? sym)] [r '()])
|
|
|
|
(cond [(not s) (and (pair? r) (reverse! r))]
|
|
|
|
[(string-position #\/ s) =>
|
|
|
|
(lambda (n) (loop (substring s (+ n 1) (string-length s))
|
|
|
|
(cons (string->symbol (substring s 0 n)) r)))]
|
|
|
|
[else (loop #f (cons (string->symbol s) r))])))
|
|
|
|
|
|
|
|
(define (libname->path libname basepath ext)
|
|
|
|
(let ([listname (if (symbol? libname) (symbol->listname libname) libname)])
|
|
|
|
(and (list1+? listname) (listname->path listname basepath ext))))
|
2024-06-05 00:37:55 +02:00
|
|
|
|
|
|
|
; hacks for locating library files
|
|
|
|
|
2024-07-04 22:52:09 +02:00
|
|
|
(define *library-path-list* '("./"))
|
2024-06-05 00:37:55 +02:00
|
|
|
|
|
|
|
(define (add-library-path! path)
|
|
|
|
(if (base-path-separator path)
|
|
|
|
(set! *library-path-list* (append *library-path-list* (list path)))
|
|
|
|
(c-error "library path should end in directory separator" path)))
|
|
|
|
|
|
|
|
(define (find-library-path libname) ;=> name of existing .sld file or #f
|
2024-07-05 07:15:23 +02:00
|
|
|
(define listname (if (symbol? libname) (symbol->listname libname) libname))
|
2024-06-05 00:37:55 +02:00
|
|
|
(let loop ([l *library-path-list*])
|
2024-07-04 22:52:09 +02:00
|
|
|
(and (pair? l)
|
2024-07-05 07:15:23 +02:00
|
|
|
(let ([p (listname->path libname (car l) ".sld")])
|
2024-07-04 22:52:09 +02:00
|
|
|
(if (and p (file-exists? p)) p (loop (cdr l)))))))
|
2024-06-05 00:37:55 +02:00
|
|
|
|
2024-07-04 19:29:02 +02:00
|
|
|
#;(define (resolve-input-file/lib-name name) ;=> path (or error is signalled)
|
2024-06-05 00:37:55 +02:00
|
|
|
(define filepath
|
|
|
|
(if (string? name)
|
|
|
|
(file-resolve-relative-to-current name)
|
|
|
|
(find-library-path name)))
|
|
|
|
(if (not filepath)
|
|
|
|
(if (string? name)
|
|
|
|
(c-error "cannot resolve file name to a file:" name)
|
|
|
|
(c-error "cannot resolve library name to a file:" name 'in *library-path-list*)))
|
|
|
|
(if (not (file-exists? filepath))
|
|
|
|
(c-error "cannot resolve file or library name to an existing file:" name '=> filepath))
|
|
|
|
filepath)
|
|
|
|
|
2024-06-27 19:31:32 +02:00
|
|
|
(define (read-file-sexps filepath ci?)
|
|
|
|
(call-with-input-file filepath
|
|
|
|
(lambda (port)
|
|
|
|
(when ci? (set-port-fold-case! port #t))
|
|
|
|
(let loop ([sexps '()])
|
|
|
|
(let ([s (read-code-sexp port)])
|
|
|
|
(if (eof-object? s)
|
|
|
|
(reverse! sexps)
|
|
|
|
(loop (cons s sexps))))))))
|
|
|
|
|
2024-07-04 19:29:02 +02:00
|
|
|
#;(define (call-with-input-file/lib name ci? proc) ;=> (proc filepath port), called while name is current-file
|
2024-06-05 00:37:55 +02:00
|
|
|
(let ([filepath (resolve-input-file/lib-name name)])
|
|
|
|
(with-current-file filepath
|
|
|
|
(lambda ()
|
|
|
|
(call-with-input-file filepath
|
|
|
|
(lambda (port)
|
|
|
|
(when ci? (set-port-fold-case! port #t))
|
|
|
|
(proc filepath port)))))))
|
|
|
|
|
2024-07-04 19:29:02 +02:00
|
|
|
#;(define (call-with-file/lib-sexps name ci? proc) ;=> (proc sexps), called while name is current-file
|
2024-06-05 00:37:55 +02:00
|
|
|
(call-with-input-file/lib name ci? ;=>
|
|
|
|
(lambda (filepath port)
|
|
|
|
(let loop ([sexps '()])
|
|
|
|
(let ([s (read-code-sexp port)])
|
|
|
|
(if (eof-object? s)
|
|
|
|
(proc (reverse! sexps))
|
|
|
|
(loop (cons s sexps))))))))
|
|
|
|
|
2024-07-04 19:29:02 +02:00
|
|
|
#;(define (for-each-file/lib-sexp proc name ci?) ; proc called while name is current-file
|
2024-06-05 00:37:55 +02:00
|
|
|
(call-with-input-file/lib name ci? ;=>
|
|
|
|
(lambda (filepath port)
|
|
|
|
(let loop ()
|
|
|
|
(let ([s (read-code-sexp port)])
|
|
|
|
(unless (eof-object? s) (proc s) (loop)))))))
|
|
|
|
|
2024-07-05 07:15:23 +02:00
|
|
|
(define (library-available? lib) ;=> #f | filepath (external) | (code . eal) (loaded)
|
2024-07-05 00:00:41 +02:00
|
|
|
(cond [(string? lib) (file-resolve-relative-to-current lib)]
|
2024-07-05 07:15:23 +02:00
|
|
|
[(library-info lib #f)] ; builtin or preloaded
|
2024-07-05 00:00:41 +02:00
|
|
|
[else (and (or (symbol? lib) (list1+? lib)) (find-library-path lib))]))
|
2024-07-04 19:29:02 +02:00
|
|
|
|
2024-06-05 00:37:55 +02:00
|
|
|
; name prefixes
|
2023-04-21 04:39:05 +02:00
|
|
|
|
2024-06-05 00:37:55 +02:00
|
|
|
(define (fully-qualified-library-prefixed-name lib id)
|
2024-06-25 00:01:34 +02:00
|
|
|
(symbol-append (if (symbol? lib) lib (listname->symbol lib)) '? id))
|
2023-04-21 04:39:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; Environments
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2024-05-28 23:40:54 +02:00
|
|
|
; new lookup procedure for explicit macro environments
|
2023-04-15 04:56:08 +02:00
|
|
|
|
2024-05-28 23:40:54 +02:00
|
|
|
(define (env-lookup id env at) ;=> location (| #f)
|
2023-04-15 04:56:08 +02:00
|
|
|
(if (procedure? id)
|
2024-05-28 23:40:54 +02:00
|
|
|
; nonsymbolic ids can't be (re)defined
|
|
|
|
(case at [(ref set!) (old-den id)] [else #f])
|
2023-04-15 04:56:08 +02:00
|
|
|
(let loop ([env env])
|
2024-05-29 06:47:49 +02:00
|
|
|
(cond [(pair? env) ; imported: ref-only
|
2023-04-15 04:56:08 +02:00
|
|
|
(if (eq? (caar env) id)
|
2024-05-29 06:47:49 +02:00
|
|
|
(case at [(ref) (cdar env)] [else #f])
|
2023-04-15 04:56:08 +02:00
|
|
|
(loop (cdr env)))]
|
2024-06-08 07:40:53 +02:00
|
|
|
[(vector? env) ; extendable, keeps imported? flags
|
2023-04-20 18:28:26 +02:00
|
|
|
(let* ([n (vector-length env)] [i (immediate-hash id n)]
|
|
|
|
[al (vector-ref env i)] [p (assq id al)])
|
2024-06-08 07:40:53 +02:00
|
|
|
(if p ; p is (key loc imported?)
|
|
|
|
(case at
|
|
|
|
[(ref) (cadr p)]
|
|
|
|
[else (if (caddr p) #f (cadr p))]) ; imported can be ref-d only
|
2024-05-29 06:47:49 +02:00
|
|
|
; implicitly/on demand append integrables and "naked" globals
|
2023-04-20 18:28:26 +02:00
|
|
|
(let ([loc (make-location (or (lookup-integrable id) (list 'ref id)))])
|
2024-06-08 07:40:53 +02:00
|
|
|
(vector-set! env i (cons (list id loc #f) al)) ; not imported
|
2023-04-20 18:28:26 +02:00
|
|
|
loc)))]
|
2024-05-29 06:47:49 +02:00
|
|
|
[(string? env) ; module prefix = module internals: full access
|
|
|
|
(and (memq at '(ref set! define define-syntax))
|
2023-04-21 03:37:27 +02:00
|
|
|
(let ([gid (string->symbol (string-append env (symbol->string id)))])
|
2024-05-28 23:40:54 +02:00
|
|
|
(env-lookup gid *root-environment* 'ref)))]
|
2024-06-08 08:34:46 +02:00
|
|
|
[(procedure? env)
|
|
|
|
(env id at)]
|
2023-04-21 03:37:27 +02:00
|
|
|
[else ; finite env
|
2023-04-15 04:56:08 +02:00
|
|
|
#f]))))
|
|
|
|
|
|
|
|
|
2024-06-13 21:49:33 +02:00
|
|
|
; make explicit root environment (a vector) and fill it
|
2023-04-20 18:28:26 +02:00
|
|
|
|
|
|
|
(define *root-environment*
|
2024-06-13 21:49:33 +02:00
|
|
|
(make-vector 101 '())) ; use prime number
|
|
|
|
|
|
|
|
(define (define-in-root-environment! name loc imported?)
|
|
|
|
(let* ([env *root-environment*] [n (vector-length env)]
|
|
|
|
[i (immediate-hash name n)] [al (vector-ref env i)]
|
|
|
|
[p (assq name al)])
|
|
|
|
(if p
|
|
|
|
(begin (set-car! (cdr p) loc) (set-car! (cddr p) imported?))
|
|
|
|
(vector-set! env i (cons (list name loc imported?) al)))))
|
|
|
|
|
|
|
|
; put handmade ones first!
|
|
|
|
|
|
|
|
(define-in-root-environment! 'include
|
|
|
|
(make-location (make-include-transformer #f)) #t)
|
|
|
|
|
|
|
|
(define-in-root-environment! 'include-ci
|
|
|
|
(make-location (make-include-transformer #t)) #t)
|
|
|
|
|
2024-07-04 00:47:26 +02:00
|
|
|
(define-in-root-environment! 'cond-expand
|
|
|
|
(make-location (make-cond-expand-transformer)) #t)
|
2024-06-13 21:49:33 +02:00
|
|
|
|
|
|
|
|
|
|
|
; now put the builtins (lazily) and others
|
|
|
|
|
|
|
|
(let ([put! (lambda (k loc) (define-in-root-environment! k loc #t))])
|
|
|
|
(let loop ([l (initial-transformers)])
|
|
|
|
(if (null? l) 'ok
|
|
|
|
(let ([p (car l)] [l (cdr l)])
|
|
|
|
(let ([k (car p)] [v (cdr p)])
|
|
|
|
(cond
|
|
|
|
[(or (symbol? v) (number? v))
|
|
|
|
(put! k (make-location v))
|
|
|
|
(loop l)]
|
|
|
|
[(and (pair? v) (eq? (car v) 'syntax-rules))
|
|
|
|
(body
|
|
|
|
(define (sr-env id at)
|
|
|
|
(env-lookup id *root-environment* at))
|
|
|
|
(define sr-v
|
|
|
|
(if (id? (cadr v))
|
|
|
|
(syntax-rules* sr-env (cadr v) (caddr v) (cdddr v))
|
|
|
|
(syntax-rules* sr-env #f (cadr v) (cddr v))))
|
|
|
|
(put! k (make-location sr-v))
|
|
|
|
(loop l))]))))))
|
2023-04-20 18:28:26 +02:00
|
|
|
|
2024-05-28 23:40:54 +02:00
|
|
|
(define (root-environment id at)
|
|
|
|
(env-lookup id *root-environment* at))
|
2023-04-15 04:56:08 +02:00
|
|
|
|
2024-07-05 00:00:41 +02:00
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; Library registry and built-in libraries
|
|
|
|
;---------------------------------------------------------------------------------------------
|
2023-04-21 04:39:05 +02:00
|
|
|
|
2024-07-05 00:00:41 +02:00
|
|
|
(define *library-registry* '()) ; alist of a form ((libsym . ic&ex) ...)
|
2024-05-29 23:01:28 +02:00
|
|
|
|
2024-07-05 00:00:41 +02:00
|
|
|
(define (library-info lib alloc?) ;=> (code . eal) | #f
|
|
|
|
(let ([key (if (symbol? lib) lib (listname->symbol lib))])
|
|
|
|
(cond [(assq key *library-registry*) => cdr]
|
|
|
|
[(not alloc?) #f]
|
|
|
|
[else (let ([ic&ex (cons '(begin) '())])
|
|
|
|
(set! *library-registry* (cons (cons key ic&ex) *library-registry*))
|
|
|
|
ic&ex)])))
|
2024-05-29 23:01:28 +02:00
|
|
|
|
|
|
|
(for-each
|
|
|
|
(lambda (r)
|
|
|
|
(define (key->lib k)
|
|
|
|
(case k
|
2024-06-05 00:37:55 +02:00
|
|
|
[(w) '(scheme write)] [(t) '(scheme time)] [(p) '(scheme repl)]
|
|
|
|
[(r) '(scheme read)] [(v) '(scheme r5rs)] [(u) '(scheme r5rs-null)]
|
|
|
|
[(d) '(scheme load)] [(z) '(scheme lazy)] [(s) '(scheme process-context)]
|
|
|
|
[(i) '(scheme inexact)] [(f) '(scheme file)] [(e) '(scheme eval)]
|
|
|
|
[(o) '(scheme complex)] [(h) '(scheme char)] [(l) '(scheme case-lambda)]
|
|
|
|
[(x) '(scheme cxr)] [(b) '(scheme base)]))
|
2024-07-05 00:00:41 +02:00
|
|
|
(define (get-env! lib) ;=> ic&ex
|
|
|
|
(library-info lib #t))
|
|
|
|
(define (put-loc! ic&ex k loc)
|
|
|
|
(let ([p (assq k (cdr ic&ex))])
|
|
|
|
(cond [p (set-cdr! p loc)] [else (set-cdr! ic&ex (cons (cons k loc) (cdr ic&ex)))])))
|
2024-05-29 23:01:28 +02:00
|
|
|
(let loop ([name (car r)] [keys (cdr r)])
|
2024-07-05 00:00:41 +02:00
|
|
|
(cond [(null? keys) ; all go to (repl)
|
|
|
|
(put-loc! (get-env! '(repl)) name (root-environment name 'ref))]
|
|
|
|
[else
|
|
|
|
(put-loc! (get-env! (key->lib (car keys))) name (root-environment name 'ref))
|
|
|
|
(loop name (cdr keys))])))
|
2024-06-05 00:37:55 +02:00
|
|
|
'((* v b) (+ v b) (- v b) (... v u b) (/ v b) (< v b) (<= v b) (= v b) (=> v u b) (> v b) (>= v b)
|
|
|
|
(_ b) (abs v b) (and v u b) (append v b) (apply v b) (assoc v b) (assq v b) (assv v b) (begin v u b)
|
|
|
|
(binary-port? b) (boolean=? b) (boolean? v b) (bytevector b) (bytevector-append b)
|
|
|
|
(bytevector-copy b) (bytevector-copy! b) (bytevector-length b) (bytevector-u8-ref b)
|
|
|
|
(bytevector-u8-set! b) (bytevector? b) (caar v b) (cadr v b) (call-with-current-continuation v b)
|
|
|
|
(call-with-port b) (call-with-values v b) (call/cc b) (car v b) (case v u b) (cdar v b) (cddr v b)
|
|
|
|
(cdr v b) (ceiling v b) (char->integer v b) (char-ready? v b) (char<=? v b) (char<? v b)
|
|
|
|
(char=? v b) (char>=? v b) (char>? v b) (char? b) (close-input-port v b) (close-output-port v b)
|
|
|
|
(close-port b) (complex? v b) (cond v u b) (cond-expand b) (cons v b) (current-error-port b)
|
|
|
|
(current-input-port v b) (current-output-port v b) (define v u b) (define-record-type b)
|
|
|
|
(define-syntax v u b) (define-values b) (denominator v b) (do v u b) (dynamic-wind v b) (else v u b)
|
|
|
|
(eof-object b) (eof-object? v b) (eq? v b) (equal? v b) (eqv? v b) (error b)
|
|
|
|
(error-object-irritants b) (error-object-message b) (error-object? b) (even? v b) (exact b)
|
|
|
|
(exact-integer-sqrt b) (exact-integer? b) (exact? v b) (expt v b) (features b) (file-error? b)
|
|
|
|
(floor v b) (floor-quotient b) (floor-remainder b) (floor/ b) (flush-output-port b) (for-each v b)
|
|
|
|
(gcd v b) (get-output-bytevector b) (get-output-string b) (guard b) (if v u b) (include b)
|
|
|
|
(include-ci b) (inexact b) (inexact? v b) (input-port-open? b) (input-port? v b) (integer->char v b)
|
|
|
|
(integer? v b) (lambda v u b) (lcm v b) (length v b) (let v u b) (let* v u b) (let*-values b)
|
|
|
|
(let-syntax v u b) (let-values b) (letrec v u b) (letrec* b) (letrec-syntax v u b) (list v b)
|
|
|
|
(list->string v b) (list->vector v b) (list-copy b) (list-ref v b) (list-set! b) (list-tail v b)
|
|
|
|
(list? v b) (make-bytevector b) (make-list b) (make-parameter b) (make-string v b) (make-vector v b)
|
|
|
|
(map v b) (max v b) (member v b) (memq v b) (memv v b) (min v b) (modulo v b) (negative? v b)
|
|
|
|
(newline v b) (not v b) (null? v b) (number->string v b) (number? v b) (numerator v b) (odd? v b)
|
|
|
|
(open-input-bytevector b) (open-input-string b) (open-output-bytevector b) (open-output-string b)
|
|
|
|
(or v u b) (output-port-open? b) (output-port? v b) (pair? v b) (parameterize b) (peek-char v b)
|
|
|
|
(peek-u8 b) (port? b) (positive? v b) (procedure? v b) (quasiquote v u b) (quote v u b)
|
|
|
|
(quotient v b) (raise b) (raise-continuable b) (rational? v b) (rationalize v b) (read-bytevector b)
|
|
|
|
(read-bytevector! b) (read-char v b) (read-error? b) (read-line b) (read-string b) (read-u8 b)
|
|
|
|
(real? v b) (remainder v b) (reverse v b) (round v b) (set! v b) (set-car! v b) (set-cdr! v b)
|
|
|
|
(square b) (string v b) (string->list v b) (string->number v b) (string->symbol v b)
|
|
|
|
(string->utf8 b) (string->vector b) (string-append v b) (string-copy v b) (string-copy! b)
|
|
|
|
(string-fill! v b) (string-for-each b) (string-length v b) (string-map b) (string-ref v b)
|
|
|
|
(string-set! v b) (string<=? v b) (string<? v b) (string=? v b) (string>=? v b) (string>? v b)
|
|
|
|
(string? v b) (substring v b) (symbol->string v b) (symbol=? b) (symbol? v b) (syntax-error b)
|
|
|
|
(syntax-rules v u b) (textual-port? b) (truncate v b) (truncate-quotient b) (truncate-remainder b)
|
|
|
|
(truncate/ b) (u8-ready? b) (unless b) (unquote v u b) (unquote-splicing v u b) (utf8->string b)
|
|
|
|
(values v b) (vector v b) (vector->list v b) (vector->string b) (vector-append b) (vector-copy b)
|
|
|
|
(vector-copy! b) (vector-fill! v b) (vector-for-each b) (vector-length v b) (vector-map b)
|
|
|
|
(vector-ref v b) (vector-set! v b) (vector? v b) (when b) (with-exception-handler b)
|
|
|
|
(write-bytevector b) (write-char v b) (write-string b) (write-u8 b) (zero? v b) (case-lambda l)
|
|
|
|
(char-alphabetic? v h) (char-ci<=? v h) (char-ci<? v h) (char-ci=? v h) (char-ci>=? v h)
|
|
|
|
(char-ci>? v h) (char-downcase v h) (char-foldcase h) (char-lower-case? v h) (char-numeric? v h)
|
|
|
|
(char-upcase v h) (char-upper-case? v h) (char-whitespace? v h) (digit-value h) (string-ci<=? v h)
|
|
|
|
(string-ci<? v h) (string-ci=? v h) (string-ci>=? v h) (string-ci>? v h) (string-downcase h)
|
|
|
|
(string-foldcase h) (string-upcase h) (angle v o) (imag-part v o) (magnitude v o) (make-polar v o)
|
|
|
|
(make-rectangular v o) (real-part v o) (caaar v x) (caadr v x) (cadar v x) (caddr v x) (cdaar v x)
|
|
|
|
(cdadr v x) (cddar v x) (cdddr v x) (caaaar v x) (caaadr v x) (caadar v x) (caaddr v x) (cadaar v x)
|
|
|
|
(cadadr v x) (caddar v x) (cadddr v x) (cdaaar v x) (cdaadr v x) (cdadar v x) (cdaddr v x)
|
|
|
|
(cddaar v x) (cddadr v x) (cdddar v x) (cddddr v x) (environment e) (eval v e)
|
|
|
|
(call-with-input-file v f) (call-with-output-file v f) (delete-file f) (file-exists? f)
|
|
|
|
(open-binary-input-file f) (open-binary-output-file f) (open-input-file v f) (open-output-file v f)
|
|
|
|
(with-input-from-file v f) (with-output-to-file v f) (acos v z i) (asin v z i) (atan v z i)
|
|
|
|
(cos v z i) (exp v z i) (finite? z i) (infinite? i) (log v i) (nan? i) (sin v i) (sqrt v i)
|
|
|
|
(tan v i) (delay v u z) (delay-force z) (force v z) (make-promise z) (promise? z) (load v d)
|
|
|
|
(command-line s) (emergency-exit s) (exit s) (get-environment-variable s)
|
|
|
|
(get-environment-variables s) (display w v) (exact->inexact v) (inexact->exact v)
|
|
|
|
(interaction-environment p v) (null-environment v) (read r v) (scheme-report-environment v)
|
|
|
|
(write w v) (current-jiffy t) (current-second t) (jiffies-per-second t) (write-shared w)
|
|
|
|
(write-simple w)
|
2024-06-08 08:34:46 +02:00
|
|
|
; skint extras go into (repl) only - not to be confused with (scheme repl)
|
2024-06-05 00:37:55 +02:00
|
|
|
(box?) (box) (unbox) (set-box!)
|
|
|
|
))
|
2024-05-29 23:01:28 +02:00
|
|
|
|
2024-06-25 00:01:34 +02:00
|
|
|
; add std libraries to root env as expand time mappings of library's symbolic name
|
|
|
|
; to an identifyer-syntax expanding into (quote (<init-code> . <eal>)) form
|
2024-07-05 00:00:41 +02:00
|
|
|
; NB: later, this will need to be done via auto-allocating denotations!
|
|
|
|
(let ([syntax-id (new-id 'syntax (make-location 'syntax) #f)])
|
|
|
|
(for-each
|
2024-06-25 00:01:34 +02:00
|
|
|
(lambda (p)
|
2024-07-05 00:00:41 +02:00
|
|
|
(let* ([sym (car p)] [ic&ex (cdr p)])
|
2024-06-25 00:01:34 +02:00
|
|
|
(define (libid-transformer sexp env)
|
2024-07-05 00:00:41 +02:00
|
|
|
(list syntax-id (list 'quote ic&ex)))
|
2024-06-25 00:01:34 +02:00
|
|
|
(define-in-root-environment! sym
|
2024-07-05 00:00:41 +02:00
|
|
|
(make-location libid-transformer) #t)))
|
|
|
|
*library-registry*))
|
2024-06-08 07:40:53 +02:00
|
|
|
|
|
|
|
|
2024-05-29 23:01:28 +02:00
|
|
|
|
2023-04-21 04:39:05 +02:00
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; Evaluation
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2024-05-29 07:52:08 +02:00
|
|
|
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
; REPL
|
|
|
|
;---------------------------------------------------------------------------------------------
|
|
|
|
|
2024-07-04 19:29:02 +02:00
|
|
|
(define *verbose* #f)
|
|
|
|
|
2024-05-29 07:52:08 +02:00
|
|
|
(define (repl-environment id at) ; FIXME: need to happen in a "repl." namespace
|
|
|
|
(env-lookup id *root-environment* at))
|
|
|
|
|
|
|
|
(define (repl-compile-and-run-core-expr core)
|
|
|
|
(when *verbose* (display "TRANSFORM =>") (newline) (write core) (newline))
|
|
|
|
(unless (pair? core) (x-error "unexpected transformed output" core))
|
|
|
|
(let ([code (compile-to-thunk-code core)] [start #f])
|
|
|
|
(when *verbose*
|
|
|
|
(display "COMPILE-TO-STRING =>") (newline) (display code) (newline)
|
|
|
|
(display "DECODE+EXECUTE =>") (newline)
|
|
|
|
(set! start (current-jiffy)))
|
|
|
|
(let* ([cl (closure (deserialize-code code))] [res (cl)])
|
|
|
|
(when *verbose*
|
|
|
|
(display "Elapsed time: ") (write (* 1000 (/ (- (current-jiffy) start) (jiffies-per-second))))
|
|
|
|
(display " ms.") (newline))
|
|
|
|
(unless (eq? res (void)) (write res) (newline)))))
|
|
|
|
|
|
|
|
(define (repl-eval-top-form x env)
|
2024-06-04 21:55:37 +02:00
|
|
|
(if (pair? x)
|
|
|
|
(let ([hval (xform #t (car x) env)])
|
|
|
|
(cond
|
2024-07-04 19:29:02 +02:00
|
|
|
[(eq? hval 'begin) ; splice
|
2024-06-14 21:12:42 +02:00
|
|
|
(let loop ([x* (cdr x)])
|
|
|
|
(when (pair? x*)
|
|
|
|
(repl-eval-top-form (car x*) env)
|
|
|
|
(loop (cdr x*))))]
|
2024-07-04 19:29:02 +02:00
|
|
|
[(and (eq? hval 'define) (null? (cadr x))) ; special idless define
|
2024-06-14 21:12:42 +02:00
|
|
|
(repl-eval-top-form (caddr x) env)]
|
2024-07-04 19:29:02 +02:00
|
|
|
[(eq? hval 'define) ; use new protocol for top-level envs
|
2024-06-14 21:12:42 +02:00
|
|
|
(let* ([core (xform-define (cdr x) env)]
|
2024-06-04 21:55:37 +02:00
|
|
|
[loc (xenv-lookup env (cadr core) 'define)])
|
2024-06-14 21:12:42 +02:00
|
|
|
(if (and loc (sexp-match? '(ref *) (location-val loc)))
|
|
|
|
(repl-compile-and-run-core-expr
|
|
|
|
(list 'set! (cadr (location-val loc)) (caddr core)))
|
2024-07-04 19:29:02 +02:00
|
|
|
(x-error "identifier cannot be (re)defined as variable in env:"
|
2024-06-14 21:12:42 +02:00
|
|
|
(cadr core) env)))]
|
2024-07-04 19:29:02 +02:00
|
|
|
[(eq? hval 'define-syntax) ; use new protocol for top-level envs
|
2024-06-14 21:12:42 +02:00
|
|
|
(let* ([core (xform-define-syntax (cdr x) env)]
|
2024-06-04 21:55:37 +02:00
|
|
|
[loc (xenv-lookup env (cadr core) 'define-syntax)])
|
2024-06-14 21:12:42 +02:00
|
|
|
(if loc ; location or #f
|
|
|
|
(location-set-val! loc (caddr core))
|
|
|
|
(x-error "identifier cannot be (re)defined as syntax in env:"
|
|
|
|
(cadr core) env))
|
|
|
|
(when *verbose* (display "SYNTAX INSTALLED: ") (write (cadr core)) (newline)))]
|
2024-07-05 20:26:20 +02:00
|
|
|
[(eq? hval 'define-library) ; use new protocol for top-level envs
|
|
|
|
(let* ([core (xform-define-library (car x) (cdr x) env #f)]
|
|
|
|
[loc (xenv-lookup env (cadr core) 'define-syntax)])
|
|
|
|
(if loc ; location or #f
|
|
|
|
(let* ([qie (caddr core)] [val (lambda (sexp env) (list syntax-id qie))])
|
|
|
|
(location-set-val! loc val)) ; wrapped in identifier-syntax transformer
|
|
|
|
(x-error "identifier cannot be (re)defined as syntax in env:"
|
|
|
|
(cadr core) env))
|
|
|
|
(when *verbose* (display "LIBRARY INSTALLED: ") (write (cadr core)) (newline)))]
|
2024-07-05 22:52:42 +02:00
|
|
|
[(eq? hval 'import) ; splice as definitions
|
|
|
|
(let* ([core (xform-import (car x) (cdr x) env #f)] ; core is (import (quote ic&ex))
|
|
|
|
[ic&ex (cadadr core)] [code (car ic&ex)] [eal (cdr ic&ex)])
|
|
|
|
(define (define-alias p)
|
|
|
|
(repl-eval-top-form (list define-syntax-id (car p) (list syntax-id (location-val (cdr p)))) env))
|
|
|
|
(repl-compile-and-run-core-expr code)
|
|
|
|
(for-each define-alias eal))]
|
2024-07-04 19:29:02 +02:00
|
|
|
[(procedure? hval) ; transformer: apply and loop
|
2024-06-14 21:12:42 +02:00
|
|
|
(repl-eval-top-form (hval x env) env)]
|
2024-07-04 19:29:02 +02:00
|
|
|
[(integrable? hval) ; integrable application
|
|
|
|
(repl-compile-and-run-core-expr (xform-integrable hval (cdr x) env))]
|
|
|
|
[(symbol? hval) ; other specials
|
|
|
|
(repl-compile-and-run-core-expr (xform #f x env))]
|
|
|
|
[else ; regular call
|
|
|
|
(repl-compile-and-run-core-expr (xform-call hval (cdr x) env))]))
|
2024-06-04 21:55:37 +02:00
|
|
|
; var refs and literals
|
2024-07-04 19:29:02 +02:00
|
|
|
(repl-compile-and-run-core-expr (xform #f x env))))
|
2024-05-29 07:52:08 +02:00
|
|
|
|
2024-06-04 21:55:37 +02:00
|
|
|
(define (repl-read iport prompt)
|
|
|
|
(when prompt (newline) (display prompt) (display " "))
|
2024-06-05 00:37:55 +02:00
|
|
|
(read-code-sexp iport))
|
2024-05-29 07:52:08 +02:00
|
|
|
|
2024-06-04 21:55:37 +02:00
|
|
|
(define (repl-from-port iport env prompt)
|
2024-06-27 19:31:32 +02:00
|
|
|
(define cfs (current-file-stack))
|
2024-06-04 21:55:37 +02:00
|
|
|
(guard (err
|
|
|
|
[(error-object? err)
|
|
|
|
(let ([p (current-error-port)])
|
|
|
|
(display (error-object-message err) p) (newline p)
|
|
|
|
(for-each (lambda (arg) (write arg p) (newline p))
|
|
|
|
(error-object-irritants err)))
|
2024-06-27 19:31:32 +02:00
|
|
|
(set-current-file-stack! cfs)
|
2024-06-04 21:55:37 +02:00
|
|
|
(when prompt (repl-from-port iport env prompt))]
|
|
|
|
[else
|
|
|
|
(let ([p (current-error-port)])
|
|
|
|
(display "Unknown error:" p) (newline p)
|
|
|
|
(write err p) (newline p))
|
2024-06-27 19:31:32 +02:00
|
|
|
(set-current-file-stack! cfs)
|
2024-06-04 21:55:37 +02:00
|
|
|
(when prompt (repl-from-port iport env prompt))])
|
|
|
|
(let loop ([x (repl-read iport prompt)])
|
|
|
|
(unless (eof-object? x)
|
|
|
|
(repl-eval-top-form x env)
|
|
|
|
(loop (repl-read iport prompt))))))
|
|
|
|
|
|
|
|
(define (repl-file fname env)
|
2024-05-29 07:52:08 +02:00
|
|
|
(define iport (open-input-file fname))
|
2024-06-04 21:55:37 +02:00
|
|
|
(repl-from-port iport env #f)
|
2024-05-29 07:52:08 +02:00
|
|
|
(close-input-port iport))
|
|
|
|
|
|
|
|
(define (benchmark-file fname)
|
|
|
|
(define iport (open-input-file fname))
|
2024-06-05 00:37:55 +02:00
|
|
|
(unless (sexp-match? '(load "libl.sf") (read-code-sexp iport))
|
2024-05-29 07:52:08 +02:00
|
|
|
(error "unexpected benchmark file format" fname))
|
2024-06-04 21:55:37 +02:00
|
|
|
(repl-from-port iport repl-environment #f)
|
2024-05-29 07:52:08 +02:00
|
|
|
(repl-eval-top-form '(main #f) repl-environment)
|
|
|
|
(close-input-port iport))
|
|
|
|
|
|
|
|
(define (run-repl)
|
2024-06-27 19:31:32 +02:00
|
|
|
(set-current-file-stack! '())
|
2024-06-04 21:55:37 +02:00
|
|
|
(repl-from-port
|
|
|
|
(current-input-port)
|
|
|
|
repl-environment
|
|
|
|
"skint]"))
|
2024-05-29 07:52:08 +02:00
|
|
|
|
|
|
|
|