2007-10-09 08:54:28 -04:00
|
|
|
;;; Copyright (c) 2006, 2007 Abdulaziz Ghuloum and Kent Dybvig
|
|
|
|
;;;
|
|
|
|
;;; Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
;;; copy of this software and associated documentation files (the "Software"),
|
|
|
|
;;; to deal in the Software without restriction, including without limitation
|
|
|
|
;;; the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
;;; and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
;;; Software is furnished to do so, subject to the following conditions:
|
|
|
|
;;;
|
|
|
|
;;; The above copyright notice and this permission notice shall be included in
|
|
|
|
;;; all copies or substantial portions of the Software.
|
|
|
|
;;;
|
|
|
|
;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
;;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
;;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
;;; THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
;;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
;;; FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
;;; DEALINGS IN THE SOFTWARE.
|
|
|
|
|
|
|
|
(library (psyntax expander)
|
|
|
|
(export identifier? syntax-dispatch environment environment?
|
|
|
|
eval expand generate-temporaries free-identifier=?
|
|
|
|
bound-identifier=? datum->syntax syntax-error
|
2007-12-07 03:00:25 -05:00
|
|
|
syntax-violation
|
2007-10-09 08:54:28 -04:00
|
|
|
syntax->datum make-variable-transformer
|
2008-02-18 20:28:54 -05:00
|
|
|
compile-r6rs-top-level boot-library-expand eval-top-level
|
2008-01-09 08:47:48 -05:00
|
|
|
null-environment scheme-report-environment ellipsis-map)
|
2007-10-09 08:54:28 -04:00
|
|
|
(import
|
|
|
|
(except (rnrs)
|
|
|
|
environment environment? identifier?
|
|
|
|
eval generate-temporaries free-identifier=?
|
2007-11-10 23:50:54 -05:00
|
|
|
bound-identifier=? datum->syntax syntax-error
|
2007-12-07 03:00:25 -05:00
|
|
|
syntax-violation syntax->datum make-variable-transformer
|
2007-11-23 14:38:25 -05:00
|
|
|
null-environment scheme-report-environment)
|
2007-10-09 08:54:28 -04:00
|
|
|
(rnrs base)
|
|
|
|
(rnrs lists)
|
|
|
|
(rnrs control)
|
|
|
|
(rnrs io simple)
|
2007-11-23 16:07:38 -05:00
|
|
|
(rnrs mutable-pairs)
|
2007-10-09 08:54:28 -04:00
|
|
|
(psyntax library-manager)
|
|
|
|
(psyntax builders)
|
|
|
|
(psyntax compat)
|
|
|
|
(psyntax config)
|
|
|
|
(psyntax internal)
|
|
|
|
(only (rnrs syntax-case) syntax-case syntax with-syntax)
|
|
|
|
(prefix (rnrs syntax-case) sys.))
|
|
|
|
|
|
|
|
(define (set-cons x ls)
|
|
|
|
(cond
|
|
|
|
((memq x ls) ls)
|
|
|
|
(else (cons x ls))))
|
|
|
|
|
|
|
|
(define (set-union ls1 ls2)
|
|
|
|
(cond
|
|
|
|
((null? ls1) ls2)
|
|
|
|
((memq (car ls1) ls2) (set-union (cdr ls1) ls2))
|
|
|
|
(else (cons (car ls1) (set-union (cdr ls1) ls2)))))
|
|
|
|
|
2007-11-19 04:18:35 -05:00
|
|
|
(define-syntax no-source
|
|
|
|
(lambda (x) #f))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; the body of a library, when it's first processed, gets this
|
|
|
|
;;; set of marks.
|
|
|
|
(define top-mark* '(top))
|
|
|
|
|
|
|
|
;;; consequently, every syntax object that has a top in its marks
|
|
|
|
;;; set was present in the program source.
|
|
|
|
(define top-marked?
|
|
|
|
(lambda (m*) (memq 'top m*)))
|
|
|
|
|
|
|
|
;;; This procedure generates a fresh lexical name for renaming.
|
|
|
|
;;; It's also use it to generate temporaries.
|
|
|
|
(define gen-lexical
|
|
|
|
(lambda (sym)
|
|
|
|
(cond
|
|
|
|
((symbol? sym) (gensym sym))
|
|
|
|
((stx? sym) (gen-lexical (id->sym sym)))
|
2007-12-15 08:22:49 -05:00
|
|
|
(else (assertion-violation 'gen-lexical "BUG: invalid arg" sym)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; gen-global is used to generate global names (e.g. locations
|
|
|
|
;;; for library exports). We use gen-lexical since it works just
|
|
|
|
;;; fine.
|
|
|
|
(define (gen-global x) (gen-lexical x))
|
|
|
|
|
|
|
|
;;; every identifier in the program would have a label associated
|
|
|
|
;;; with it in its substitution. gen-label generates such labels.
|
|
|
|
;;; the labels have to have read/write eq? invariance to support
|
|
|
|
;;; separate compilation.
|
|
|
|
(define gen-label
|
|
|
|
(lambda (_) (gensym)))
|
|
|
|
|
|
|
|
;;; A rib is a record constructed at every lexical contour in the
|
|
|
|
;;; program to hold information about the variables introduced in that
|
|
|
|
;;; contour. Adding an identifier->label mapping to an extensible rib
|
|
|
|
;;; is achieved by consing the identifier's name to the list of
|
|
|
|
;;; symbols, consing the identifier's list of marks to the rib's
|
|
|
|
;;; mark**, and consing the label to the rib's labels.
|
|
|
|
|
|
|
|
(define-record rib (sym* mark** label* sealed/freq))
|
|
|
|
|
|
|
|
(define make-empty-rib
|
|
|
|
(lambda ()
|
|
|
|
(make-rib '() '() '() #f)))
|
|
|
|
|
|
|
|
;;; For example, when processing a lambda's internal define, a new rib
|
|
|
|
;;; is created and is added to the body of the lambda expression.
|
|
|
|
;;; When an internal definition is encountered, a new entry for the
|
|
|
|
;;; identifier is added (via side effect) to the rib. A rib may be
|
|
|
|
;;; extensible, or sealed. An extensible rib looks like:
|
|
|
|
;;; #<rib list-of-symbols list-of-list-of-marks list-of-labels #f>
|
|
|
|
|
|
|
|
(define (extend-rib! rib id label)
|
2007-11-12 05:01:25 -05:00
|
|
|
(define (find sym mark* sym* mark** label*)
|
2007-10-09 08:54:28 -04:00
|
|
|
(and (pair? sym*)
|
2007-11-12 05:01:25 -05:00
|
|
|
(if (and (eq? sym (car sym*)) (same-marks? mark* (car mark**)))
|
|
|
|
(car label*)
|
|
|
|
(find sym mark* (cdr sym*) (cdr mark**) (cdr label*)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(when (rib-sealed/freq rib)
|
2007-12-19 23:42:27 -05:00
|
|
|
(assertion-violation 'extend-rib! "BUG: rib is sealed" rib))
|
2007-11-12 05:01:25 -05:00
|
|
|
(let ((sym (id->sym id))
|
|
|
|
(mark* (stx-mark* id)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(let ((sym* (rib-sym* rib)))
|
2007-11-12 05:01:25 -05:00
|
|
|
(cond
|
|
|
|
[(and (memq sym (rib-sym* rib))
|
|
|
|
(find sym mark* sym* (rib-mark** rib) (rib-label* rib)))
|
|
|
|
=>
|
|
|
|
(lambda (label^)
|
|
|
|
(unless (eq? label label^)
|
2007-12-15 08:22:49 -05:00
|
|
|
;;; signal an assertion-violation if the identifier was already
|
2007-11-12 05:01:25 -05:00
|
|
|
;;; in the rib.
|
|
|
|
(stx-error id "cannot redefine")))]
|
|
|
|
[else
|
|
|
|
(set-rib-sym*! rib (cons sym sym*))
|
|
|
|
(set-rib-mark**! rib (cons mark* (rib-mark** rib)))
|
|
|
|
(set-rib-label*! rib (cons label (rib-label* rib)))]))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; A rib can be sealed once all bindings are inserted. To seal
|
|
|
|
;;; a rib, we convert the lists sym*, mark**, and label* to vectors
|
|
|
|
;;; and insert a frequency vector in the sealed/freq field.
|
|
|
|
;;; The frequency vector is an optimization that allows the rib to
|
|
|
|
;;; reorganize itself by bubbling frequently used mappings to the
|
|
|
|
;;; top of the rib. The vector is maintained in non-descending
|
|
|
|
;;; order and an identifier's entry in the rib is incremented at
|
|
|
|
;;; every access. If an identifier's frequency exceeds the
|
|
|
|
;;; preceeding one, the identifier's position is promoted to the
|
|
|
|
;;; top of its class (or the bottom of the previous class).
|
|
|
|
|
|
|
|
(define (seal-rib! rib)
|
|
|
|
(let ((sym* (rib-sym* rib)))
|
|
|
|
(unless (null? sym*)
|
|
|
|
;;; only seal if rib is not empty.
|
|
|
|
(let ((sym* (list->vector sym*)))
|
|
|
|
(set-rib-sym*! rib sym*)
|
|
|
|
(set-rib-mark**! rib
|
|
|
|
(list->vector (rib-mark** rib)))
|
|
|
|
(set-rib-label*! rib
|
|
|
|
(list->vector (rib-label* rib)))
|
|
|
|
(set-rib-sealed/freq! rib
|
|
|
|
(make-vector (vector-length sym*) 0))))))
|
|
|
|
|
|
|
|
(define (unseal-rib! rib)
|
|
|
|
(when (rib-sealed/freq rib)
|
|
|
|
(set-rib-sealed/freq! rib #f)
|
|
|
|
(set-rib-sym*! rib (vector->list (rib-sym* rib)))
|
|
|
|
(set-rib-mark**! rib (vector->list (rib-mark** rib)))
|
|
|
|
(set-rib-label*! rib (vector->list (rib-label* rib)))))
|
|
|
|
|
|
|
|
(define (increment-rib-frequency! rib idx)
|
|
|
|
(let ((freq* (rib-sealed/freq rib)))
|
|
|
|
(let ((freq (vector-ref freq* idx)))
|
|
|
|
(let ((i
|
|
|
|
(let f ((i idx))
|
|
|
|
(cond
|
|
|
|
((zero? i) 0)
|
|
|
|
(else
|
|
|
|
(let ((j (- i 1)))
|
|
|
|
(cond
|
|
|
|
((= freq (vector-ref freq* j)) (f j))
|
|
|
|
(else i))))))))
|
|
|
|
(vector-set! freq* i (+ freq 1))
|
|
|
|
(unless (= i idx)
|
|
|
|
(let ((sym* (rib-sym* rib))
|
|
|
|
(mark** (rib-mark** rib))
|
|
|
|
(label* (rib-label* rib)))
|
|
|
|
(let ((sym (vector-ref sym* idx)))
|
|
|
|
(vector-set! sym* idx (vector-ref sym* i))
|
|
|
|
(vector-set! sym* i sym))
|
|
|
|
(let ((mark* (vector-ref mark** idx)))
|
|
|
|
(vector-set! mark** idx (vector-ref mark** i))
|
|
|
|
(vector-set! mark** i mark*))
|
|
|
|
(let ((label (vector-ref label* idx)))
|
|
|
|
(vector-set! label* idx (vector-ref label* i))
|
|
|
|
(vector-set! label* i label))))))))
|
|
|
|
|
|
|
|
(define make-full-rib ;;; it may be a good idea to seal this rib
|
|
|
|
(lambda (id* label*)
|
|
|
|
(make-rib (map id->sym id*) (map stx-mark* id*) label* #f)))
|
|
|
|
|
|
|
|
;;; Now to syntax objects which are records defined like:
|
2008-02-14 04:01:09 -05:00
|
|
|
(define-record stx (expr mark* subst* ae*)
|
2007-10-09 08:54:28 -04:00
|
|
|
(lambda (x p)
|
2007-12-20 00:31:49 -05:00
|
|
|
(display "#<syntax " p)
|
|
|
|
(write (stx->datum x) p)
|
2007-12-19 19:05:23 -05:00
|
|
|
(let ([expr (stx-expr x)])
|
|
|
|
(when (annotation? expr)
|
|
|
|
(let ([src (annotation-source expr)])
|
|
|
|
(when (pair? src)
|
2007-12-20 00:31:49 -05:00
|
|
|
(display " [byte " p)
|
2007-12-19 19:05:23 -05:00
|
|
|
(display (cdr src) p)
|
2007-12-20 00:31:49 -05:00
|
|
|
(display " of " p)
|
|
|
|
(display (car src) p)
|
|
|
|
(display "]" p)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(display ">" p)))
|
|
|
|
|
|
|
|
;;; First, let's look at identifiers, since they're the real
|
|
|
|
;;; reason why syntax objects are here to begin with.
|
|
|
|
;;; An identifier is an stx whose expr is a symbol.
|
|
|
|
;;; In addition to the symbol naming the identifier, the identifer
|
|
|
|
;;; has a list of marks and a list of substitutions.
|
|
|
|
;;; The idea is that to get the label of an identifier, we look up
|
|
|
|
;;; the identifier's substitutions for a mapping with the same
|
|
|
|
;;; name and same marks (see same-marks? below).
|
|
|
|
|
|
|
|
;;; Since all the identifier->label bindings are encapsulated
|
|
|
|
;;; within the identifier, converting a datum to a syntax object
|
|
|
|
;;; (non-hygienically) is done simply by creating an stx that has
|
|
|
|
;;; the same marks and substitutions as the identifier.
|
|
|
|
(define datum->stx
|
|
|
|
(lambda (id datum)
|
2008-02-14 04:01:09 -05:00
|
|
|
(make-stx datum (stx-mark* id) (stx-subst* id) (stx-ae* id))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; A syntax object may be wrapped or unwrapped, so what does that
|
|
|
|
;;; mean exactly?
|
|
|
|
;;;
|
|
|
|
;;; A wrapped syntax object is just a way of saying it's an stx
|
|
|
|
;;; record. All identifiers are stx records (with a symbol in
|
|
|
|
;;; their expr field). Other objects such as pairs and vectors
|
|
|
|
;;; may be wrapped or unwrapped. A wrapped pair is an stx whos
|
|
|
|
;;; expr is a pair. An unwrapped pair is a pair whos car and cdr
|
|
|
|
;;; fields are themselves syntax objects (wrapped or unwrapped).
|
|
|
|
;;;
|
|
|
|
;;; We always maintain the invariant that we don't double wrap
|
|
|
|
;;; syntax objects. The only way to get a doubly-wrapped syntax
|
|
|
|
;;; object is by doing datum->stx (above) where the datum is
|
|
|
|
;;; itself a wrapped syntax object (r6rs may not even consider
|
|
|
|
;;; wrapped syntax objects as datum, but let's not worry now).
|
|
|
|
|
|
|
|
;;; Syntax objects have, in addition to the expr, a
|
|
|
|
;;; substitution field (stx-subst*). The subst* is a list
|
|
|
|
;;; where each element is either a rib or the symbol "shift".
|
|
|
|
;;; Normally, a new rib is added to an stx at evert lexical
|
|
|
|
;;; contour of the program in order to capture the bindings
|
|
|
|
;;; inctroduced in that contour.
|
|
|
|
|
|
|
|
;;; The mark* field of an stx is, well, a list of marks.
|
|
|
|
;;; Each of these marks can be either a generated mark
|
|
|
|
;;; or an antimark.
|
|
|
|
;;; (two marks must be eq?-comparable, so we use a string
|
|
|
|
;;; of one char (this assumes that strings are mutable)).
|
|
|
|
|
|
|
|
;;; gen-mark generates a new unique mark
|
|
|
|
(define (gen-mark) ;;; faster
|
|
|
|
(string #\m))
|
|
|
|
|
|
|
|
;(define gen-mark ;;; useful for debugging
|
|
|
|
; (let ((i 0))
|
|
|
|
; (lambda ()
|
|
|
|
; (set! i (+ i 1))
|
|
|
|
; (string-append "m." (number->string i)))))
|
|
|
|
|
|
|
|
;;; We use #f as the anti-mark.
|
|
|
|
(define anti-mark #f)
|
|
|
|
(define anti-mark? not)
|
|
|
|
|
|
|
|
;;; So, what's an anti-mark and why is it there.
|
|
|
|
;;; The theory goes like this: when a macro call is encountered,
|
|
|
|
;;; the input stx to the macro transformer gets an extra anti-mark,
|
|
|
|
;;; and the output of the transformer gets a fresh mark.
|
|
|
|
;;; When a mark collides with an anti-mark, they cancel one
|
|
|
|
;;; another. Therefore, any part of the input transformer that
|
|
|
|
;;; gets copied to the output would have a mark followed
|
|
|
|
;;; immediately by an anti-mark, resulting in the same syntax
|
|
|
|
;;; object (no extra marks). Parts of the output that were not
|
|
|
|
;;; present in the input (e.g. inserted by the macro transformer)
|
|
|
|
;;; would have no anti-mark and, therefore, the mark would stick
|
|
|
|
;;; to them.
|
|
|
|
;;;
|
|
|
|
;;; Every time a mark is pushed to an stx-mark* list, a
|
|
|
|
;;; corresponding 'shift is pushed to the stx-subst* list.
|
|
|
|
;;; Every time a mark is cancelled by an anti-mark, the
|
|
|
|
;;; corresponding shifts are also cancelled.
|
|
|
|
|
|
|
|
;;; The procedure join-wraps, here, is used to compute the new
|
|
|
|
;;; mark* and subst* that would result when the m1* and s1* are
|
|
|
|
;;; added to an stx's mark* and subst*.
|
|
|
|
;;; The only tricky part here is that e may have an anti-mark
|
|
|
|
;;; that should cancel with the last mark in m1*.
|
|
|
|
;;; So, if m1* is (mx* ... mx)
|
|
|
|
;;; and m2* is (#f my* ...)
|
|
|
|
;;; then the resulting marks should be (mx* ... my* ...)
|
|
|
|
;;; since mx would cancel with the anti-mark.
|
|
|
|
;;; The substs would have to also cancel since
|
|
|
|
;;; s1* is (sx* ... sx)
|
|
|
|
;;; and s2* is (sy sy* ...)
|
|
|
|
;;; then the resulting substs should be (sx* ... sy* ...)
|
|
|
|
;;; Notice that both sx and sy would be shift marks.
|
|
|
|
(define join-wraps
|
2008-02-14 04:01:09 -05:00
|
|
|
(lambda (m1* s1* ae1* e)
|
2007-10-09 08:54:28 -04:00
|
|
|
(define cancel
|
|
|
|
(lambda (ls1 ls2)
|
|
|
|
(let f ((x (car ls1)) (ls1 (cdr ls1)))
|
|
|
|
(if (null? ls1)
|
|
|
|
(cdr ls2)
|
|
|
|
(cons x (f (car ls1) (cdr ls1)))))))
|
2008-02-14 04:01:09 -05:00
|
|
|
(let ((m2* (stx-mark* e))
|
|
|
|
(s2* (stx-subst* e))
|
|
|
|
(ae2* (stx-ae* e)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(if (and (not (null? m1*))
|
|
|
|
(not (null? m2*))
|
|
|
|
(anti-mark? (car m2*)))
|
|
|
|
; cancel mark, anti-mark, and corresponding shifts
|
2008-02-14 04:01:09 -05:00
|
|
|
(values (cancel m1* m2*) (cancel s1* s2*) (cancel ae1* ae2*))
|
|
|
|
(values (append m1* m2*) (append s1* s2*) (append ae1* ae2*))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; The procedure mkstx is then the proper constructor for
|
|
|
|
;;; wrapped syntax objects. It takes a syntax object, a list
|
|
|
|
;;; of marks, and a list of substs. It joins the two wraps
|
|
|
|
;;; making sure that marks and anti-marks and corresponding
|
|
|
|
;;; shifts cancel properly.
|
2008-02-14 04:01:09 -05:00
|
|
|
(define mkstx ;;; QUEUE
|
|
|
|
(lambda (e m* s* ae*)
|
2007-10-09 08:54:28 -04:00
|
|
|
(if (stx? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let-values (((m* s* ae*) (join-wraps m* s* ae* e)))
|
|
|
|
(make-stx (stx-expr e) m* s* ae*))
|
|
|
|
(make-stx e m* s* ae*))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; to add a mark, we always add a corresponding shift.
|
|
|
|
(define add-mark
|
2008-02-14 04:01:09 -05:00
|
|
|
(lambda (m e ae)
|
|
|
|
(mkstx e (list m) '(shift) (list ae))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define add-subst
|
|
|
|
(lambda (subst e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(mkstx e '() (list subst) '())))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; now are some deconstructors and predicates for syntax objects.
|
|
|
|
(define syntax-kind?
|
|
|
|
(lambda (x p?)
|
2007-12-19 19:05:23 -05:00
|
|
|
(cond
|
|
|
|
[(stx? x) (syntax-kind? (stx-expr x) p?)]
|
|
|
|
[(annotation? x)
|
|
|
|
(syntax-kind? (annotation-expression x) p?)]
|
|
|
|
[else (p? x)])))
|
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define syntax-vector->list
|
|
|
|
(lambda (x)
|
|
|
|
(cond
|
|
|
|
((stx? x)
|
|
|
|
(let ((ls (syntax-vector->list (stx-expr x)))
|
2008-02-14 04:01:09 -05:00
|
|
|
(m* (stx-mark* x))
|
|
|
|
(s* (stx-subst* x))
|
|
|
|
(ae* (stx-ae* x)))
|
|
|
|
(map (lambda (x) (mkstx x m* s* ae*)) ls)))
|
2007-12-19 19:05:23 -05:00
|
|
|
[(annotation? x)
|
|
|
|
(syntax-vector->list (annotation-expression x))]
|
2007-10-09 08:54:28 -04:00
|
|
|
((vector? x) (vector->list x))
|
2007-12-19 23:42:27 -05:00
|
|
|
(else (assertion-violation 'syntax-vector->list "BUG: not a syntax vector" x)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define syntax-pair?
|
|
|
|
(lambda (x) (syntax-kind? x pair?)))
|
|
|
|
(define syntax-vector?
|
|
|
|
(lambda (x) (syntax-kind? x vector?)))
|
|
|
|
(define syntax-null?
|
|
|
|
(lambda (x) (syntax-kind? x null?)))
|
|
|
|
(define syntax-list? ;;; FIXME: should terminate on cyclic input.
|
|
|
|
(lambda (x)
|
|
|
|
(or (syntax-null? x)
|
|
|
|
(and (syntax-pair? x) (syntax-list? (syntax-cdr x))))))
|
|
|
|
(define syntax-car
|
|
|
|
(lambda (x)
|
2007-12-19 19:05:23 -05:00
|
|
|
(cond
|
|
|
|
[(stx? x)
|
2008-02-14 04:01:09 -05:00
|
|
|
(mkstx (syntax-car (stx-expr x))
|
|
|
|
(stx-mark* x)
|
|
|
|
(stx-subst* x)
|
|
|
|
(stx-ae* x))]
|
2007-12-19 19:05:23 -05:00
|
|
|
[(annotation? x)
|
|
|
|
(syntax-car (annotation-expression x))]
|
|
|
|
[(pair? x) (car x)]
|
2007-12-19 23:42:27 -05:00
|
|
|
[else (assertion-violation 'syntax-car "BUG: not a pair" x)])))
|
2007-12-19 19:05:23 -05:00
|
|
|
(define syntax-cdr
|
|
|
|
(lambda (x)
|
|
|
|
(cond
|
|
|
|
[(stx? x)
|
2008-02-14 04:01:09 -05:00
|
|
|
(mkstx (syntax-cdr (stx-expr x))
|
|
|
|
(stx-mark* x)
|
|
|
|
(stx-subst* x)
|
|
|
|
(stx-ae* x))]
|
2007-12-19 19:05:23 -05:00
|
|
|
[(annotation? x)
|
|
|
|
(syntax-cdr (annotation-expression x))]
|
|
|
|
[(pair? x) (cdr x)]
|
2007-12-19 23:42:27 -05:00
|
|
|
[else (assertion-violation 'syntax-cdr "BUG: not a pair" x)])))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define syntax->list
|
|
|
|
(lambda (x)
|
|
|
|
(if (syntax-pair? x)
|
|
|
|
(cons (syntax-car x) (syntax->list (syntax-cdr x)))
|
|
|
|
(if (syntax-null? x)
|
|
|
|
'()
|
2007-12-19 23:42:27 -05:00
|
|
|
(assertion-violation 'syntax->list "BUG: invalid argument" x)))))
|
2008-04-28 14:01:49 -04:00
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define id?
|
2008-04-28 14:01:49 -04:00
|
|
|
(lambda (x)
|
|
|
|
(and (stx? x)
|
|
|
|
(let ([expr (stx-expr x)])
|
|
|
|
(symbol? (if (annotation? expr)
|
|
|
|
(annotation-stripped expr)
|
|
|
|
expr))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define id->sym
|
|
|
|
(lambda (x)
|
2008-04-28 14:01:49 -04:00
|
|
|
(unless (stx? x)
|
|
|
|
(error 'id->sym "BUG in ikarus: not an id" x))
|
|
|
|
(let ([expr (stx-expr x)])
|
|
|
|
(let ([sym (if (annotation? expr)
|
|
|
|
(annotation-stripped expr)
|
|
|
|
expr)])
|
|
|
|
(if (symbol? sym)
|
|
|
|
sym
|
|
|
|
(error 'id->sym "BUG in ikarus: not an id" x))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; Two lists of marks are considered the same if they have the
|
|
|
|
;;; same length and the corresponding marks on each are eq?.
|
|
|
|
(define same-marks?
|
|
|
|
(lambda (x y)
|
|
|
|
(or (and (null? x) (null? y)) ;(eq? x y)
|
|
|
|
(and (pair? x) (pair? y)
|
|
|
|
(eq? (car x) (car y))
|
|
|
|
(same-marks? (cdr x) (cdr y))))))
|
|
|
|
|
|
|
|
;;; Two identifiers are bound-id=? if they have the same name and
|
|
|
|
;;; the same set of marks.
|
|
|
|
(define bound-id=?
|
|
|
|
(lambda (x y)
|
|
|
|
(and (eq? (id->sym x) (id->sym y))
|
|
|
|
(same-marks? (stx-mark* x) (stx-mark* y)))))
|
|
|
|
|
|
|
|
;;; Two identifiers are free-id=? if either both are bound to the
|
|
|
|
;;; same label or if both are unbound and they have the same name.
|
|
|
|
(define free-id=?
|
|
|
|
(lambda (i j)
|
|
|
|
(let ((t0 (id->label i)) (t1 (id->label j)))
|
|
|
|
(if (or t0 t1)
|
|
|
|
(eq? t0 t1)
|
|
|
|
(eq? (id->sym i) (id->sym j))))))
|
|
|
|
|
|
|
|
;;; valid-bound-ids? takes checks if a list is made of identifers
|
|
|
|
;;; none of which is bound-id=? to another.
|
|
|
|
(define valid-bound-ids?
|
|
|
|
(lambda (id*)
|
|
|
|
(and (for-all id? id*)
|
|
|
|
(distinct-bound-ids? id*))))
|
|
|
|
|
|
|
|
(define distinct-bound-ids?
|
|
|
|
(lambda (id*)
|
|
|
|
(or (null? id*)
|
|
|
|
(and (not (bound-id-member? (car id*) (cdr id*)))
|
|
|
|
(distinct-bound-ids? (cdr id*))))))
|
|
|
|
|
|
|
|
(define bound-id-member?
|
|
|
|
(lambda (id id*)
|
|
|
|
(and (pair? id*)
|
|
|
|
(or (bound-id=? id (car id*))
|
|
|
|
(bound-id-member? id (cdr id*))))))
|
|
|
|
|
|
|
|
(define self-evaluating?
|
|
|
|
(lambda (x) ;;; am I missing something here?
|
2007-11-12 03:34:48 -05:00
|
|
|
(or (number? x) (string? x) (char? x) (boolean? x)
|
|
|
|
(bytevector? x))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; strip is used to remove the wrap of a syntax object.
|
|
|
|
;;; It takes an stx's expr and marks. If the marks contain
|
|
|
|
;;; a top-mark, then the expr is returned.
|
2007-12-23 16:23:20 -05:00
|
|
|
|
|
|
|
(define (strip-annotations x)
|
|
|
|
(cond
|
|
|
|
[(pair? x)
|
|
|
|
(cons (strip-annotations (car x))
|
|
|
|
(strip-annotations (cdr x)))]
|
|
|
|
[(annotation? x) (annotation-stripped x)]
|
|
|
|
[else x]))
|
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define strip
|
|
|
|
(lambda (x m*)
|
|
|
|
(if (top-marked? m*)
|
2007-12-23 16:23:20 -05:00
|
|
|
(if (or (annotation? x)
|
|
|
|
(and (pair? x)
|
|
|
|
(annotation? (car x))))
|
|
|
|
;;; TODO: Ask Kent why this is a sufficient test
|
|
|
|
(strip-annotations x)
|
2007-12-19 19:05:23 -05:00
|
|
|
x)
|
2007-10-09 08:54:28 -04:00
|
|
|
(let f ((x x))
|
|
|
|
(cond
|
|
|
|
((stx? x) (strip (stx-expr x) (stx-mark* x)))
|
2007-12-19 19:05:23 -05:00
|
|
|
[(annotation? x) (annotation-stripped x)]
|
2007-10-09 08:54:28 -04:00
|
|
|
((pair? x)
|
|
|
|
(let ((a (f (car x))) (d (f (cdr x))))
|
|
|
|
(if (and (eq? a (car x)) (eq? d (cdr x)))
|
|
|
|
x
|
|
|
|
(cons a d))))
|
|
|
|
((vector? x)
|
|
|
|
(let ((old (vector->list x)))
|
|
|
|
(let ((new (map f old)))
|
|
|
|
(if (for-all eq? old new)
|
|
|
|
x
|
|
|
|
(list->vector new)))))
|
|
|
|
(else x))))))
|
|
|
|
|
|
|
|
(define stx->datum
|
|
|
|
(lambda (x)
|
|
|
|
(strip x '())))
|
|
|
|
|
|
|
|
;;; id->label takes an id (that's a sym x marks x substs) and
|
|
|
|
;;; searches the substs for a label associated with the same sym
|
|
|
|
;;; and marks.
|
|
|
|
(define id->label
|
|
|
|
(lambda (id)
|
|
|
|
(let ((sym (id->sym id)))
|
|
|
|
(let search ((subst* (stx-subst* id)) (mark* (stx-mark* id)))
|
|
|
|
(cond
|
|
|
|
((null? subst*)
|
|
|
|
;;; try to hook up the symbol from the interaction
|
|
|
|
;;; environment if there is one.
|
|
|
|
(interaction-sym->label sym))
|
|
|
|
((eq? (car subst*) 'shift)
|
|
|
|
;;; a shift is inserted when a mark is added.
|
|
|
|
;;; so, we search the rest of the substitution
|
|
|
|
;;; without the mark.
|
|
|
|
(search (cdr subst*) (cdr mark*)))
|
|
|
|
(else
|
|
|
|
(let ((rib (car subst*)))
|
|
|
|
(cond
|
|
|
|
((rib-sealed/freq rib)
|
|
|
|
(let ((sym* (rib-sym* rib)))
|
|
|
|
(let f ((i 0) (j (vector-length sym*)))
|
|
|
|
(cond
|
|
|
|
((= i j) (search (cdr subst*) mark*))
|
|
|
|
((and (eq? (vector-ref sym* i) sym)
|
|
|
|
(same-marks? mark*
|
|
|
|
(vector-ref (rib-mark** rib) i)))
|
|
|
|
(let ((label (vector-ref (rib-label* rib) i)))
|
|
|
|
(increment-rib-frequency! rib i)
|
|
|
|
label))
|
|
|
|
(else (f (+ i 1) j))))))
|
|
|
|
(else
|
|
|
|
(let f ((sym* (rib-sym* rib))
|
|
|
|
(mark** (rib-mark** rib))
|
|
|
|
(label* (rib-label* rib)))
|
|
|
|
(cond
|
|
|
|
((null? sym*) (search (cdr subst*) mark*))
|
|
|
|
((and (eq? (car sym*) sym)
|
|
|
|
(same-marks? (car mark**) mark*))
|
|
|
|
(car label*))
|
|
|
|
(else (f (cdr sym*) (cdr mark**) (cdr label*))))))))))))))
|
|
|
|
|
|
|
|
;;; label->binding looks up the label in the environment r as
|
|
|
|
;;; well as in the global environment. Since all labels are
|
|
|
|
;;; unique, it doesn't matter which environment we consult first.
|
|
|
|
;;; we lookup the global environment first because it's faster
|
|
|
|
;;; (uses a hash table) while the lexical environment is an alist.
|
|
|
|
;;; If we don't find the binding of a label, we return the binding
|
|
|
|
;;; (displaced-lexical . #f) to indicate such.
|
|
|
|
(define label->binding
|
|
|
|
(lambda (x r)
|
|
|
|
(cond
|
2007-10-23 17:24:55 -04:00
|
|
|
((imported-label->binding x) =>
|
|
|
|
(lambda (b)
|
2007-12-17 11:37:10 -05:00
|
|
|
(cond
|
|
|
|
[(and (pair? b) (eq? (car b) '$core-rtd))
|
|
|
|
(cons '$rtd (map bless (cdr b)))]
|
|
|
|
[(and (pair? b) (eq? (car b) 'global-rtd))
|
|
|
|
(let ([lib (cadr b)] [loc (cddr b)])
|
|
|
|
(cons '$rtd (symbol-value loc)))]
|
|
|
|
[else b])))
|
2007-10-09 08:54:28 -04:00
|
|
|
((assq x r) => cdr)
|
|
|
|
(else '(displaced-lexical . #f)))))
|
|
|
|
|
|
|
|
(define make-binding cons)
|
|
|
|
(define binding-type car)
|
|
|
|
(define binding-value cdr)
|
|
|
|
|
|
|
|
;;; the type of an expression is determined by two things:
|
|
|
|
;;; - the shape of the expression (identifier, pair, or datum)
|
|
|
|
;;; - the binding of the identifier (for id-stx) or the type of
|
|
|
|
;;; car of the pair.
|
2007-12-23 19:52:18 -05:00
|
|
|
(define (raise-unbound-error id)
|
|
|
|
(syntax-violation* #f "unbound identifier" id
|
|
|
|
(make-undefined-violation)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define syntax-type
|
|
|
|
(lambda (e r)
|
|
|
|
(cond
|
|
|
|
((id? e)
|
|
|
|
(let ((id e))
|
|
|
|
(let* ((label (id->label id))
|
|
|
|
(b (label->binding label r))
|
|
|
|
(type (binding-type b)))
|
|
|
|
(unless label ;;; fail early.
|
2007-12-23 19:52:18 -05:00
|
|
|
(raise-unbound-error id))
|
2007-10-09 08:54:28 -04:00
|
|
|
(case type
|
|
|
|
((lexical core-prim macro macro! global local-macro
|
|
|
|
local-macro! global-macro global-macro!
|
2007-11-12 01:27:47 -05:00
|
|
|
displaced-lexical syntax import $module $core-rtd
|
2007-11-23 16:07:38 -05:00
|
|
|
library mutable)
|
2007-10-09 08:54:28 -04:00
|
|
|
(values type (binding-value b) id))
|
|
|
|
(else (values 'other #f #f))))))
|
|
|
|
((syntax-pair? e)
|
|
|
|
(let ((id (syntax-car e)))
|
|
|
|
(if (id? id)
|
|
|
|
(let* ((label (id->label id))
|
|
|
|
(b (label->binding label r))
|
|
|
|
(type (binding-type b)))
|
|
|
|
(unless label ;;; fail early.
|
2007-12-23 19:52:18 -05:00
|
|
|
(raise-unbound-error id))
|
2007-10-09 08:54:28 -04:00
|
|
|
(case type
|
|
|
|
((define define-syntax core-macro begin macro
|
|
|
|
macro! local-macro local-macro! global-macro
|
2007-11-12 01:27:47 -05:00
|
|
|
global-macro! module library set! let-syntax
|
2007-10-23 17:24:55 -04:00
|
|
|
letrec-syntax import $core-rtd)
|
2007-10-09 08:54:28 -04:00
|
|
|
(values type (binding-value b) id))
|
|
|
|
(else
|
|
|
|
(values 'call #f #f))))
|
|
|
|
(values 'call #f #f))))
|
|
|
|
(else (let ((d (stx->datum e)))
|
|
|
|
(if (self-evaluating? d)
|
|
|
|
(values 'constant d #f)
|
|
|
|
(values 'other #f #f)))))))
|
|
|
|
|
|
|
|
(define-syntax stx-error
|
|
|
|
(lambda (x)
|
|
|
|
(syntax-case x ()
|
|
|
|
((_ stx)
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax (syntax-violation #f "invalid syntax" stx)))
|
|
|
|
((_ stx msg)
|
|
|
|
(syntax (syntax-violation #f msg stx))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; when the rhs of a syntax definition is evaluated, it should be
|
|
|
|
;;; either a procedure, an identifier-syntax transformer or an
|
|
|
|
;;; ($rtd . #<rtd>) form (ikarus/chez). sanitize-binding converts
|
|
|
|
;;; the output to one of:
|
|
|
|
;;; (lacal-macro . procedure)
|
|
|
|
;;; (local-macro! . procedure)
|
|
|
|
;;; ($rtd . $rtd)
|
2007-12-15 08:22:49 -05:00
|
|
|
;;; and signals an assertion-violation otherwise.
|
2007-10-09 08:54:28 -04:00
|
|
|
(define sanitize-binding
|
|
|
|
(lambda (x src)
|
|
|
|
(cond
|
|
|
|
((procedure? x)
|
|
|
|
(cons* 'local-macro x src))
|
|
|
|
((and (pair? x) (eq? (car x) 'macro!) (procedure? (cdr x)))
|
|
|
|
(cons* 'local-macro! (cdr x) src))
|
|
|
|
((and (pair? x) (eq? (car x) '$rtd)) x)
|
2007-12-15 08:22:49 -05:00
|
|
|
(else (assertion-violation 'expand "invalid transformer" x)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; r6rs's make-variable-transformer:
|
|
|
|
(define make-variable-transformer
|
|
|
|
(lambda (x)
|
|
|
|
(if (procedure? x)
|
|
|
|
(cons 'macro! x)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'make-variable-transformer
|
2007-10-25 14:32:26 -04:00
|
|
|
"not a procedure" x))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; make-eval-transformer takes an expanded expression,
|
|
|
|
;;; evaluates it and returns a proper syntactic binding
|
|
|
|
;;; for the resulting object.
|
|
|
|
(define make-eval-transformer
|
|
|
|
(lambda (x)
|
|
|
|
(sanitize-binding (eval-core (expanded->core x)) x)))
|
|
|
|
|
|
|
|
;;; The syntax-match macro is almost like syntax-case macro.
|
|
|
|
;;; Except that:
|
|
|
|
;;; The syntax objects matched are OUR stx objects, not
|
|
|
|
;;; the host systems syntax objects (whatever they may be
|
|
|
|
;;; we don't care).
|
|
|
|
;;; The literals are matched against those in the system
|
|
|
|
;;; library (psyntax system $all). -- see scheme-stx
|
|
|
|
;;; The variables in the patters are bound to ordinary variables
|
|
|
|
;;; not to special pattern variables.
|
|
|
|
(define-syntax syntax-match
|
|
|
|
(lambda (ctx)
|
|
|
|
(define dots?
|
|
|
|
(lambda (x)
|
|
|
|
(and (sys.identifier? x)
|
|
|
|
(sys.free-identifier=? x (syntax (... ...))))))
|
|
|
|
(define free-identifier-member?
|
|
|
|
(lambda (x ls)
|
|
|
|
(and (exists (lambda (y) (sys.free-identifier=? x y)) ls) #t)))
|
|
|
|
(define (parse-clause lits cls)
|
|
|
|
(define (parse-pat pat)
|
|
|
|
(syntax-case pat ()
|
|
|
|
(id (sys.identifier? (syntax id))
|
|
|
|
(cond
|
|
|
|
((free-identifier-member? (syntax id) lits)
|
|
|
|
(values '()
|
|
|
|
(syntax
|
|
|
|
(lambda (x)
|
|
|
|
(and (id? x)
|
|
|
|
(free-id=? x (scheme-stx 'id))
|
|
|
|
'())))))
|
|
|
|
((sys.free-identifier=? (syntax id) (syntax _))
|
|
|
|
(values '() (syntax (lambda (x) '()))))
|
|
|
|
(else
|
|
|
|
(values (list (syntax id)) (syntax (lambda (x) (list x)))))))
|
|
|
|
((pat dots) (dots? (syntax dots))
|
|
|
|
(let-values (((pvars decon) (parse-pat (syntax pat))))
|
|
|
|
(with-syntax (((v* ...) pvars) (decon decon))
|
|
|
|
(values pvars
|
|
|
|
(syntax (letrec ((f (lambda (x)
|
|
|
|
(cond
|
|
|
|
((syntax-pair? x)
|
|
|
|
(let ((cars/f (decon (syntax-car x))))
|
|
|
|
(and cars/f
|
|
|
|
(let ((cdrs/f (f (syntax-cdr x))))
|
|
|
|
(and cdrs/f
|
|
|
|
(map cons cars/f cdrs/f))))))
|
|
|
|
((syntax-null? x)
|
|
|
|
(list (begin 'v* '()) ...))
|
|
|
|
(else #f)))))
|
|
|
|
f))))))
|
|
|
|
((pat dots . last) (dots? (syntax dots))
|
|
|
|
(let-values (((p1 d1) (parse-pat (syntax pat)))
|
|
|
|
((p2 d2) (parse-pat (syntax last))))
|
|
|
|
(with-syntax (((v* ...) (append p1 p2))
|
|
|
|
((v1* ...) p1)
|
|
|
|
((v2* ...) p2)
|
|
|
|
(d1 d1) (d2 d2))
|
|
|
|
(values (append p1 p2)
|
|
|
|
(syntax (letrec ((f (lambda (x)
|
|
|
|
(cond
|
|
|
|
((syntax-pair? x)
|
|
|
|
(let ((cars/f (d1 (syntax-car x))))
|
|
|
|
(and cars/f
|
|
|
|
(let ((d/f (f (syntax-cdr x))))
|
|
|
|
(and d/f
|
|
|
|
(cons (map cons cars/f (car d/f))
|
|
|
|
(cdr d/f)))))))
|
|
|
|
(else
|
|
|
|
(let ((d (d2 x)))
|
|
|
|
(and d
|
|
|
|
(cons (list (begin 'v1* '()) ...)
|
|
|
|
d))))))))
|
|
|
|
(lambda (x)
|
|
|
|
(let ((x (f x)))
|
|
|
|
(and x (append (car x) (cdr x)))))))))))
|
|
|
|
((pat1 . pat2)
|
|
|
|
(let-values (((p1 d1) (parse-pat (syntax pat1)))
|
|
|
|
((p2 d2) (parse-pat (syntax pat2))))
|
|
|
|
(with-syntax ((d1 d1) (d2 d2))
|
|
|
|
(values (append p1 p2)
|
|
|
|
(syntax (lambda (x)
|
|
|
|
(and (syntax-pair? x)
|
|
|
|
(let ((q (d1 (syntax-car x))))
|
|
|
|
(and q
|
|
|
|
(let ((r (d2 (syntax-cdr x))))
|
|
|
|
(and r (append q r))))))))))))
|
|
|
|
(#(pats ...)
|
|
|
|
(let-values (((pvars d) (parse-pat (syntax (pats ...)))))
|
|
|
|
(with-syntax ((d d))
|
|
|
|
(values pvars
|
|
|
|
(syntax (lambda (x)
|
|
|
|
(and (syntax-vector? x)
|
|
|
|
(d (syntax-vector->list x)))))))))
|
|
|
|
(datum
|
|
|
|
(values '()
|
|
|
|
(syntax (lambda (x)
|
|
|
|
(and (equal? (stx->datum x) 'datum) '())))))))
|
|
|
|
(syntax-case cls ()
|
|
|
|
((pat body)
|
|
|
|
(let-values (((pvars decon) (parse-pat (syntax pat))))
|
|
|
|
(with-syntax (((v* ...) pvars))
|
|
|
|
(values decon
|
|
|
|
(syntax (lambda (v* ...) #t))
|
|
|
|
(syntax (lambda (v* ...) body))))))
|
|
|
|
((pat guard body)
|
|
|
|
(let-values (((pvars decon) (parse-pat (syntax pat))))
|
|
|
|
(with-syntax (((v* ...) pvars))
|
|
|
|
(values decon
|
|
|
|
(syntax (lambda (v* ...) guard))
|
|
|
|
(syntax (lambda (v* ...) body))))))))
|
|
|
|
(syntax-case ctx ()
|
|
|
|
((_ expr (lits ...)) (for-all sys.identifier? (syntax (lits ...)))
|
|
|
|
(syntax (stx-error expr "invalid syntax")))
|
|
|
|
((_ expr (lits ...) cls cls* ...) (for-all sys.identifier?
|
|
|
|
(syntax (lits ...)))
|
|
|
|
(let-values (((decon guard body)
|
|
|
|
(parse-clause (syntax (lits ...)) (syntax cls))))
|
|
|
|
(with-syntax ((decon decon) (guard guard) (body body))
|
|
|
|
(syntax (let ((t expr))
|
|
|
|
(let ((ls/false (decon t)))
|
|
|
|
(if (and ls/false (apply guard ls/false))
|
|
|
|
(apply body ls/false)
|
|
|
|
(syntax-match t (lits ...) cls* ...)))))))))))
|
|
|
|
|
2008-01-27 19:12:20 -05:00
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define parse-define
|
|
|
|
(lambda (x)
|
|
|
|
(syntax-match x ()
|
|
|
|
((_ (id . fmls) b b* ...) (id? id)
|
2008-01-27 19:12:20 -05:00
|
|
|
(begin
|
|
|
|
(verify-formals fmls x)
|
|
|
|
(values id (cons 'defun (cons fmls (cons b b*))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
((_ id val) (id? id)
|
2008-01-18 22:18:26 -05:00
|
|
|
(values id (cons 'expr val)))
|
2008-01-27 19:12:20 -05:00
|
|
|
((_ id) (id? id)
|
2008-01-18 22:18:26 -05:00
|
|
|
(values id (cons 'expr (bless '(void))))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define parse-define-syntax
|
|
|
|
(lambda (x)
|
|
|
|
(syntax-match x ()
|
2007-11-19 04:18:35 -05:00
|
|
|
((_ id val) (id? id) (values id val)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; scheme-stx takes a symbol and if it's in the
|
|
|
|
;;; (psyntax system $all) library, it creates a fresh identifier
|
|
|
|
;;; that maps only the symbol to its label in that library.
|
|
|
|
;;; Symbols not in that library become fresh.
|
2008-03-12 18:12:57 -04:00
|
|
|
(define scheme-stx-hashtable (make-eq-hashtable))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define scheme-stx
|
|
|
|
(lambda (sym)
|
2008-03-12 18:12:57 -04:00
|
|
|
(or (hashtable-ref scheme-stx-hashtable sym #f)
|
|
|
|
(let* ((subst
|
|
|
|
(library-subst
|
|
|
|
(find-library-by-name '(psyntax system $all))))
|
|
|
|
(stx (mkstx sym top-mark* '() '()))
|
|
|
|
(stx
|
|
|
|
(cond
|
|
|
|
((assq sym subst) =>
|
|
|
|
(lambda (x)
|
|
|
|
(let ((name (car x)) (label (cdr x)))
|
|
|
|
(add-subst
|
|
|
|
(make-rib (list name)
|
|
|
|
(list top-mark*) (list label) #f)
|
|
|
|
stx))))
|
|
|
|
(else stx))))
|
|
|
|
(hashtable-set! scheme-stx-hashtable sym stx)
|
|
|
|
stx))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; macros
|
2007-11-23 16:07:38 -05:00
|
|
|
(define lexical-var car)
|
|
|
|
(define lexical-mutable? cdr)
|
|
|
|
(define set-lexical-mutable! set-cdr!)
|
2007-10-09 08:54:28 -04:00
|
|
|
(define add-lexical
|
|
|
|
(lambda (lab lex r)
|
2007-11-23 16:07:38 -05:00
|
|
|
(cons (cons* lab 'lexical lex #f) r)))
|
2007-10-09 08:54:28 -04:00
|
|
|
;;;
|
|
|
|
(define add-lexicals
|
|
|
|
(lambda (lab* lex* r)
|
|
|
|
(cond
|
|
|
|
((null? lab*) r)
|
|
|
|
(else
|
|
|
|
(add-lexicals (cdr lab*) (cdr lex*)
|
|
|
|
(add-lexical (car lab*) (car lex*) r))))))
|
|
|
|
;;;
|
|
|
|
(define letrec-helper
|
|
|
|
(lambda (e r mr build)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ ((lhs* rhs*) ...) b b* ...)
|
|
|
|
(if (not (valid-bound-ids? lhs*))
|
2008-01-09 08:37:46 -05:00
|
|
|
(invalid-fmls-error e lhs*)
|
2007-10-09 08:54:28 -04:00
|
|
|
(let ((lex* (map gen-lexical lhs*))
|
|
|
|
(lab* (map gen-label lhs*)))
|
|
|
|
(let ((rib (make-full-rib lhs* lab*))
|
|
|
|
(r (add-lexicals lab* lex* r)))
|
2008-02-14 04:01:09 -05:00
|
|
|
(let ((body (chi-internal
|
|
|
|
(add-subst rib (cons b b*)) r mr))
|
|
|
|
(rhs* (chi-expr* (map (lambda (x) (add-subst rib x))
|
|
|
|
rhs*) r mr)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(build no-source lex* rhs* body)))))))))
|
|
|
|
|
|
|
|
(define letrec-transformer
|
|
|
|
(lambda (e r mr) (letrec-helper e r mr build-letrec)))
|
|
|
|
|
|
|
|
(define letrec*-transformer
|
|
|
|
(lambda (e r mr) (letrec-helper e r mr build-letrec*)))
|
|
|
|
|
2008-02-25 02:15:51 -05:00
|
|
|
(define fluid-let-syntax-transformer
|
|
|
|
(lambda (e r mr)
|
|
|
|
(define (lookup x)
|
|
|
|
(or (id->label x)
|
|
|
|
(syntax-violation #f "unbound identifier" e x)))
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ ((lhs* rhs*) ...) b b* ...)
|
|
|
|
(if (not (valid-bound-ids? lhs*))
|
|
|
|
(invalid-fmls-error e lhs*)
|
|
|
|
(let ([lab* (map lookup lhs*)]
|
|
|
|
[rhs* (map (lambda (x)
|
|
|
|
(make-eval-transformer
|
|
|
|
(expand-transformer x mr)))
|
|
|
|
rhs*)])
|
|
|
|
(chi-internal (cons b b*)
|
|
|
|
(append (map cons lab* rhs*) r)
|
|
|
|
(append (map cons lab* rhs*) mr))))))))
|
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define type-descriptor-transformer
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ id) (id? id)
|
|
|
|
(let* ((lab (id->label id))
|
|
|
|
(b (label->binding lab r))
|
|
|
|
(type (binding-type b)))
|
2007-12-23 19:52:18 -05:00
|
|
|
(unless lab (raise-unbound-error id))
|
2007-10-14 16:37:55 -04:00
|
|
|
(unless (and (eq? type '$rtd) (not (list? (binding-value b))))
|
2007-12-19 23:42:27 -05:00
|
|
|
(stx-error e "not a record type"))
|
2007-10-14 16:37:55 -04:00
|
|
|
(build-data no-source (binding-value b)))))))
|
|
|
|
|
|
|
|
(define record-type-descriptor-transformer
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ id) (id? id)
|
|
|
|
(let* ((lab (id->label id))
|
|
|
|
(b (label->binding lab r))
|
|
|
|
(type (binding-type b)))
|
2007-12-23 19:52:18 -05:00
|
|
|
(unless lab (raise-unbound-error id))
|
2007-10-14 16:37:55 -04:00
|
|
|
(unless (and (eq? type '$rtd) (list? (binding-value b)))
|
2007-12-19 23:42:27 -05:00
|
|
|
(stx-error e "not a record type"))
|
2007-10-14 16:37:55 -04:00
|
|
|
(chi-expr (car (binding-value b)) r mr))))))
|
|
|
|
|
|
|
|
(define record-constructor-descriptor-transformer
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ id) (id? id)
|
|
|
|
(let* ((lab (id->label id))
|
|
|
|
(b (label->binding lab r))
|
|
|
|
(type (binding-type b)))
|
2007-12-23 19:52:18 -05:00
|
|
|
(unless lab (raise-unbound-error id))
|
2007-10-14 16:37:55 -04:00
|
|
|
(unless (and (eq? type '$rtd) (list? (binding-value b)))
|
|
|
|
(stx-error e "invalid type"))
|
|
|
|
(chi-expr (cadr (binding-value b)) r mr))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define when-transformer ;;; go away
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ test e e* ...)
|
|
|
|
(build-conditional no-source
|
|
|
|
(chi-expr test r mr)
|
|
|
|
(build-sequence no-source
|
|
|
|
(chi-expr* (cons e e*) r mr))
|
|
|
|
(build-void))))))
|
|
|
|
|
|
|
|
(define unless-transformer ;;; go away
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ test e e* ...)
|
|
|
|
(build-conditional no-source
|
|
|
|
(chi-expr test r mr)
|
|
|
|
(build-void)
|
|
|
|
(build-sequence no-source
|
|
|
|
(chi-expr* (cons e e*) r mr)))))))
|
|
|
|
|
|
|
|
(define if-transformer
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ e0 e1 e2)
|
|
|
|
(build-conditional no-source
|
|
|
|
(chi-expr e0 r mr)
|
|
|
|
(chi-expr e1 r mr)
|
|
|
|
(chi-expr e2 r mr)))
|
|
|
|
((_ e0 e1)
|
|
|
|
(build-conditional no-source
|
|
|
|
(chi-expr e0 r mr)
|
|
|
|
(chi-expr e1 r mr)
|
|
|
|
(build-void))))))
|
|
|
|
|
|
|
|
(define case-transformer ;;; go away
|
|
|
|
(lambda (e r mr)
|
|
|
|
(define build-one
|
|
|
|
(lambda (t cls rest)
|
|
|
|
(syntax-match cls ()
|
|
|
|
(((d* ...) e e* ...)
|
|
|
|
(build-conditional no-source
|
|
|
|
(build-application no-source
|
|
|
|
(build-primref no-source 'memv)
|
|
|
|
(list t (build-data no-source (stx->datum d*))))
|
|
|
|
(build-sequence no-source
|
|
|
|
(chi-expr* (cons e e*) r mr))
|
|
|
|
rest))
|
|
|
|
(else (stx-error e)))))
|
|
|
|
(define build-last
|
|
|
|
(lambda (t cls)
|
|
|
|
(syntax-match cls ()
|
|
|
|
(((d* ...) e e* ...)
|
|
|
|
(build-one t cls (build-void)))
|
|
|
|
((else-kwd x x* ...)
|
|
|
|
(if (and (id? else-kwd)
|
|
|
|
(free-id=? else-kwd (scheme-stx 'else)))
|
|
|
|
(build-sequence no-source
|
|
|
|
(chi-expr* (cons x x*) r mr))
|
|
|
|
(stx-error e)))
|
|
|
|
(else (stx-error e)))))
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ expr)
|
|
|
|
(build-sequence no-source
|
|
|
|
(list (chi-expr expr r mr) (build-void))))
|
|
|
|
((_ expr cls cls* ...)
|
|
|
|
(let ((t (gen-lexical 't)))
|
|
|
|
(build-let no-source
|
|
|
|
(list t) (list (chi-expr expr r mr))
|
|
|
|
(let f ((cls cls) (cls* cls*))
|
|
|
|
(cond
|
|
|
|
((null? cls*) (build-last t cls))
|
|
|
|
(else
|
|
|
|
(build-one t cls
|
|
|
|
(f (car cls*) (cdr cls*))))))))))))
|
|
|
|
|
|
|
|
(define quote-transformer
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ datum) (build-data no-source (stx->datum datum))))))
|
|
|
|
|
|
|
|
(define case-lambda-transformer
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ (fmls* b* b** ...) ...)
|
|
|
|
(let-values (((fmls* body*)
|
2007-11-21 02:10:42 -05:00
|
|
|
(chi-lambda-clause* e fmls*
|
2007-10-09 08:54:28 -04:00
|
|
|
(map cons b* b**) r mr)))
|
|
|
|
(build-case-lambda no-source fmls* body*))))))
|
|
|
|
|
|
|
|
(define lambda-transformer
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ fmls b b* ...)
|
|
|
|
(let-values (((fmls body)
|
2007-11-21 02:10:42 -05:00
|
|
|
(chi-lambda-clause e fmls
|
2007-10-09 08:54:28 -04:00
|
|
|
(cons b b*) r mr)))
|
|
|
|
(build-lambda no-source fmls body))))))
|
|
|
|
|
|
|
|
(define bless
|
|
|
|
(lambda (x)
|
|
|
|
(mkstx
|
|
|
|
(let f ((x x))
|
|
|
|
(cond
|
|
|
|
((stx? x) x)
|
|
|
|
((pair? x) (cons (f (car x)) (f (cdr x))))
|
|
|
|
((symbol? x) (scheme-stx x))
|
|
|
|
((vector? x)
|
|
|
|
(list->vector (map f (vector->list x))))
|
|
|
|
(else x)))
|
2008-02-14 04:01:09 -05:00
|
|
|
'() '() '())))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define with-syntax-macro
|
|
|
|
(lambda (e)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ ((fml* expr*) ...) b b* ...)
|
|
|
|
(bless
|
|
|
|
`(syntax-case (list . ,expr*) ()
|
|
|
|
(,fml* (begin ,b . ,b*))))))))
|
|
|
|
|
2007-11-21 02:10:42 -05:00
|
|
|
(define (invalid-fmls-error stx fmls)
|
|
|
|
(syntax-match fmls ()
|
|
|
|
[(id* ... . last)
|
|
|
|
(let f ([id* (cond
|
|
|
|
[(id? last) (cons last id*)]
|
|
|
|
[(syntax-null? last) id*]
|
|
|
|
[else
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax-violation #f "not an identifier" stx last)])])
|
2007-11-21 02:10:42 -05:00
|
|
|
(cond
|
|
|
|
[(null? id*) (values)]
|
|
|
|
[(not (id? (car id*)))
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax-violation #f "not an identifier" stx (car id*))]
|
2007-11-21 02:10:42 -05:00
|
|
|
[else
|
|
|
|
(f (cdr id*))
|
|
|
|
(when (bound-id-member? (car id*) (cdr id*))
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax-violation #f "duplicate binding" stx (car id*)))]))]
|
|
|
|
[_ (syntax-violation #f "malformed binding form" stx fmls)]))
|
2007-11-21 02:10:42 -05:00
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define let-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ ((lhs* rhs*) ...) b b* ...)
|
|
|
|
(if (valid-bound-ids? lhs*)
|
|
|
|
(bless `((lambda ,lhs* ,b . ,b*) . ,rhs*))
|
2007-11-21 02:10:42 -05:00
|
|
|
(invalid-fmls-error stx lhs*)))
|
2007-10-09 08:54:28 -04:00
|
|
|
((_ f ((lhs* rhs*) ...) b b* ...) (id? f)
|
|
|
|
(if (valid-bound-ids? lhs*)
|
2007-12-09 12:20:13 -05:00
|
|
|
(bless `((letrec ((,f (lambda ,lhs* ,b . ,b*))) ,f) . ,rhs*))
|
2007-11-21 02:10:42 -05:00
|
|
|
(invalid-fmls-error stx lhs*))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
2007-12-09 02:53:12 -05:00
|
|
|
(define let-values-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(define (rename x old* new*)
|
|
|
|
(unless (id? x)
|
|
|
|
(syntax-violation #f "not an indentifier" stx x))
|
|
|
|
(when (bound-id-member? x old*)
|
|
|
|
(syntax-violation #f "duplicate binding" stx x))
|
|
|
|
(let ([y (gensym (syntax->datum x))])
|
|
|
|
(values y (cons x old*) (cons y new*))))
|
|
|
|
(define (rename* x* old* new*)
|
|
|
|
(cond
|
|
|
|
[(null? x*) (values '() old* new*)]
|
|
|
|
[else
|
|
|
|
(let*-values ([(x old* new*) (rename (car x*) old* new*)]
|
|
|
|
[(x* old* new*) (rename* (cdr x*) old* new*)])
|
|
|
|
(values (cons x x*) old* new*))]))
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ () b b* ...)
|
|
|
|
(cons* (bless 'let) '() b b*))
|
|
|
|
((_ ((lhs* rhs*) ...) b b* ...)
|
|
|
|
(bless
|
|
|
|
(let f ([lhs* lhs*] [rhs* rhs*] [old* '()] [new* '()])
|
|
|
|
(cond
|
|
|
|
[(null? lhs*)
|
|
|
|
`(let ,(map list old* new*) ,b . ,b*)]
|
|
|
|
[else
|
|
|
|
(syntax-match (car lhs*) ()
|
|
|
|
[(x* ...)
|
|
|
|
(let-values ([(y* old* new*) (rename* x* old* new*)])
|
|
|
|
`(call-with-values
|
|
|
|
(lambda () ,(car rhs*))
|
|
|
|
(lambda ,y*
|
|
|
|
,(f (cdr lhs*) (cdr rhs*) old* new*))))]
|
|
|
|
[(x* ... . x)
|
|
|
|
(let*-values ([(y old* new*) (rename x old* new*)]
|
|
|
|
[(y* old* new*) (rename* x* old* new*)])
|
|
|
|
`(call-with-values
|
|
|
|
(lambda () ,(car rhs*))
|
|
|
|
(lambda ,(append y* y)
|
|
|
|
,(f (cdr lhs*) (cdr rhs*)
|
|
|
|
old* new*))))]
|
|
|
|
[others
|
|
|
|
(syntax-violation #f "malformed bindings"
|
|
|
|
stx others)])])))))))
|
|
|
|
|
|
|
|
(define let*-values-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(define (check x*)
|
|
|
|
(unless (null? x*)
|
|
|
|
(let ([x (car x*)])
|
|
|
|
(unless (id? x)
|
|
|
|
(syntax-violation #f "not an identifier" stx x))
|
|
|
|
(check (cdr x*))
|
|
|
|
(when (bound-id-member? x (cdr x*))
|
|
|
|
(syntax-violation #f "duplicate identifier" stx x)))))
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ () b b* ...)
|
|
|
|
(cons* (bless 'let) '() b b*))
|
|
|
|
((_ ((lhs* rhs*) ...) b b* ...)
|
|
|
|
(bless
|
|
|
|
(let f ([lhs* lhs*] [rhs* rhs*])
|
|
|
|
(cond
|
|
|
|
[(null? lhs*)
|
|
|
|
`(begin ,b . ,b*)]
|
|
|
|
[else
|
|
|
|
(syntax-match (car lhs*) ()
|
|
|
|
[(x* ...)
|
|
|
|
(begin
|
|
|
|
(check x*)
|
|
|
|
`(call-with-values
|
|
|
|
(lambda () ,(car rhs*))
|
|
|
|
(lambda ,x*
|
|
|
|
,(f (cdr lhs*) (cdr rhs*)))))]
|
|
|
|
[(x* ... . x)
|
|
|
|
(begin
|
|
|
|
(check (cons x x*))
|
|
|
|
`(call-with-values
|
|
|
|
(lambda () ,(car rhs*))
|
|
|
|
(lambda ,(append x* x)
|
|
|
|
,(f (cdr lhs*) (cdr rhs*)))))]
|
|
|
|
[others
|
|
|
|
(syntax-violation #f "malformed bindings"
|
|
|
|
stx others)])])))))))
|
2007-12-09 07:20:49 -05:00
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define trace-lambda-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ who (fmls ...) b b* ...)
|
|
|
|
(if (valid-bound-ids? fmls)
|
|
|
|
(bless `(make-traced-procedure ',who
|
|
|
|
(lambda ,fmls ,b . ,b*)))
|
2007-11-21 02:10:42 -05:00
|
|
|
(invalid-fmls-error stx fmls)))
|
2007-10-09 08:54:28 -04:00
|
|
|
((_ who (fmls ... . last) b b* ...)
|
|
|
|
(if (valid-bound-ids? (cons last fmls))
|
|
|
|
(bless `(make-traced-procedure ',who
|
|
|
|
(lambda (,@fmls . ,last) ,b . ,b*)))
|
2007-11-21 02:10:42 -05:00
|
|
|
(invalid-fmls-error stx (append fmls last)))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define trace-define-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ (who fmls ...) b b* ...)
|
|
|
|
(if (valid-bound-ids? fmls)
|
|
|
|
(bless `(define ,who
|
|
|
|
(make-traced-procedure ',who
|
|
|
|
(lambda ,fmls ,b . ,b*))))
|
2007-11-21 02:10:42 -05:00
|
|
|
(invalid-fmls-error stx fmls)))
|
2007-10-09 08:54:28 -04:00
|
|
|
((_ (who fmls ... . last) b b* ...)
|
|
|
|
(if (valid-bound-ids? (cons last fmls))
|
|
|
|
(bless `(define ,who
|
|
|
|
(make-traced-procedure ',who
|
|
|
|
(lambda (,@fmls . ,last) ,b . ,b*))))
|
2007-11-21 02:10:42 -05:00
|
|
|
(invalid-fmls-error stx (append fmls last))))
|
2007-10-09 08:54:28 -04:00
|
|
|
((_ who expr)
|
|
|
|
(if (id? who)
|
|
|
|
(bless `(define ,who
|
|
|
|
(let ((v ,expr))
|
|
|
|
(if (procedure? v)
|
|
|
|
(make-traced-procedure ',who v)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'trace-define
|
2007-10-25 14:32:26 -04:00
|
|
|
"not a procedure" v)))))
|
2007-11-21 02:10:42 -05:00
|
|
|
(stx-error stx "invalid name"))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
2007-12-11 17:41:48 -05:00
|
|
|
(define trace-define-syntax-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ who expr)
|
|
|
|
(if (id? who)
|
|
|
|
(bless `(define-syntax ,who
|
|
|
|
(let ((v ,expr))
|
|
|
|
(if (procedure? v)
|
|
|
|
(make-traced-procedure ',who v syntax->datum)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'trace-define-syntax
|
2007-12-11 17:41:48 -05:00
|
|
|
"not a procedure" v)))))
|
|
|
|
(stx-error stx "invalid name"))))))
|
|
|
|
|
2007-10-26 00:55:00 -04:00
|
|
|
(define guard-macro
|
|
|
|
(lambda (x)
|
2007-10-27 11:15:10 -04:00
|
|
|
(define (gen-clauses con outerk clause*)
|
|
|
|
(define (f x k)
|
|
|
|
(syntax-match x (=>)
|
|
|
|
[(e => p)
|
|
|
|
(let ([t (gensym)])
|
|
|
|
`(let ([,t ,e])
|
|
|
|
(if ,t (,p ,t) ,k)))]
|
|
|
|
[(e)
|
|
|
|
(let ([t (gensym)])
|
|
|
|
`(let ([,t ,e])
|
|
|
|
(if ,t ,t ,k)))]
|
|
|
|
[(e v v* ...)
|
|
|
|
`(if ,e (begin ,v ,@v*) ,k)]
|
|
|
|
[_ (stx-error x "invalid guard clause")]))
|
|
|
|
(define (f* x*)
|
|
|
|
(syntax-match x* (else)
|
|
|
|
[()
|
|
|
|
(let ([g (gensym)])
|
|
|
|
(values `(,g (lambda () (raise ,con))) g))]
|
|
|
|
[([else e e* ...])
|
|
|
|
(values `(begin ,e ,@e*) #f)]
|
|
|
|
[(cls . cls*)
|
|
|
|
(let-values ([(e g) (f* cls*)])
|
|
|
|
(values (f cls e) g))]
|
|
|
|
[others (stx-error others "invalid guard clause")]))
|
|
|
|
(let-values ([(code raisek) (f* clause*)])
|
|
|
|
(if raisek
|
|
|
|
`((call/cc
|
|
|
|
(lambda (,raisek)
|
|
|
|
(,outerk
|
|
|
|
(lambda () ,code)))))
|
|
|
|
`(,outerk (lambda () ,code)))))
|
|
|
|
(syntax-match x ()
|
2007-10-26 00:55:00 -04:00
|
|
|
[(_ (con clause* ...) b b* ...)
|
2007-10-27 11:15:10 -04:00
|
|
|
(id? con)
|
|
|
|
(let ([outerk (gensym)])
|
|
|
|
(bless
|
|
|
|
`((call/cc
|
|
|
|
(lambda (,outerk)
|
|
|
|
(lambda ()
|
|
|
|
(with-exception-handler
|
|
|
|
(lambda (,con)
|
|
|
|
,(gen-clauses con outerk clause*))
|
|
|
|
(lambda () #f ,b ,@b*))))))))])))
|
2007-10-26 00:55:00 -04:00
|
|
|
|
2007-10-27 11:40:40 -04:00
|
|
|
(define define-enumeration-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(define (set? x)
|
|
|
|
(or (null? x)
|
|
|
|
(and (not (memq (car x) (cdr x)))
|
|
|
|
(set? (cdr x)))))
|
|
|
|
(syntax-match stx ()
|
|
|
|
[(_ name (id* ...) maker)
|
|
|
|
(and (id? name) (id? maker) (for-all id? id*))
|
|
|
|
(let ([name* (syntax->datum id*)] [mk (gensym)])
|
|
|
|
(unless (set? name*)
|
|
|
|
(stx-error stx "duplicate names in enumeration set"))
|
|
|
|
(bless
|
|
|
|
`(begin
|
|
|
|
(define ,mk
|
|
|
|
(enum-set-constructor
|
|
|
|
(make-enumeration ',name*)))
|
|
|
|
(define-syntax ,name
|
|
|
|
(lambda (x)
|
|
|
|
(syntax-case x ()
|
|
|
|
[(_ n)
|
|
|
|
(identifier? #'n)
|
|
|
|
(if (memq (syntax->datum #'n) ',name*)
|
|
|
|
#''n
|
|
|
|
(syntax-error x
|
|
|
|
"not a member of set"
|
|
|
|
',name*))])))
|
|
|
|
(define-syntax ,maker
|
|
|
|
(lambda (x)
|
|
|
|
(syntax-case x ()
|
|
|
|
[(_ n* ...)
|
|
|
|
(begin
|
|
|
|
(for-each
|
|
|
|
(lambda (n)
|
|
|
|
(unless (identifier? n)
|
|
|
|
(syntax-error x "non-identifier argument"))
|
|
|
|
(unless (memq (syntax->datum n) ',name*)
|
|
|
|
(syntax-error n "not a member of set")))
|
|
|
|
#'(n* ...))
|
|
|
|
#'(,mk '(n* ...)))]))))))])))
|
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define time-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ expr)
|
2008-03-24 21:50:37 -04:00
|
|
|
(let ([str
|
|
|
|
(let-values ([(p e) (open-string-output-port)])
|
|
|
|
(write (syntax->datum expr) p)
|
|
|
|
(e))])
|
|
|
|
(bless `(time-it ,str (lambda () ,expr))))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define delay-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ expr)
|
|
|
|
(bless `(make-promise (lambda () ,expr)))))))
|
|
|
|
|
|
|
|
(define assert-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ expr)
|
|
|
|
(bless `(unless ,expr
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'assert "assertion failed" ',expr)))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define endianness-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ e)
|
|
|
|
(case (syntax->datum e)
|
|
|
|
((little) (bless `'little))
|
|
|
|
((big) (bless `'big))
|
|
|
|
(else (stx-error stx "endianness must be big or little")))))))
|
|
|
|
|
|
|
|
(define identifier-syntax-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx (set!)
|
|
|
|
((_ expr)
|
|
|
|
(bless `(lambda (x)
|
|
|
|
(syntax-case x ()
|
|
|
|
(id (identifier? (syntax id)) (syntax ,expr))
|
|
|
|
((id e* ...) (identifier? (syntax id))
|
|
|
|
(cons (syntax ,expr) (syntax (e* ...))))))))
|
|
|
|
((_ (id1 expr1) ((set! id2 expr2) expr3))
|
|
|
|
(and (id? id1) (id? id2) (id? expr2))
|
|
|
|
(bless `(cons 'macro!
|
|
|
|
(lambda (x)
|
|
|
|
(syntax-case x (set!)
|
|
|
|
(id (identifier? (syntax id)) (syntax ,expr1))
|
|
|
|
((set! id ,expr2) (syntax ,expr3))
|
|
|
|
((id e* ...) (identifier? (syntax id)) (syntax (,expr1 e* ...)))))))))))
|
|
|
|
|
|
|
|
(define do-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(define bind
|
|
|
|
(lambda (x)
|
|
|
|
(syntax-match x ()
|
|
|
|
((x init) `(,x ,init ,x))
|
|
|
|
((x init step) `(,x ,init ,step))
|
|
|
|
(_ (stx-error stx "invalid binding")))))
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ (binding* ...)
|
|
|
|
(test expr* ...)
|
|
|
|
command* ...)
|
|
|
|
(syntax-match (map bind binding*) ()
|
|
|
|
(((x* init* step*) ...)
|
|
|
|
(if (valid-bound-ids? x*)
|
|
|
|
(bless
|
|
|
|
`(letrec ((loop
|
|
|
|
(lambda ,x*
|
|
|
|
(if ,test
|
|
|
|
(begin (if #f #f) ,@expr*)
|
|
|
|
(begin
|
|
|
|
,@command*
|
|
|
|
(loop ,@step*))))))
|
|
|
|
(loop ,@init*)))
|
|
|
|
(stx-error stx "invalid bindings"))))))))
|
|
|
|
|
|
|
|
(define let*-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ ((lhs* rhs*) ...) b b* ...) (for-all id? lhs*)
|
|
|
|
(bless
|
|
|
|
(let f ((x* (map list lhs* rhs*)))
|
|
|
|
(cond
|
|
|
|
((null? x*) `(let () ,b . ,b*))
|
|
|
|
(else `(let (,(car x*)) ,(f (cdr x*)))))))))))
|
|
|
|
|
|
|
|
(define or-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_) #f)
|
|
|
|
((_ e e* ...)
|
|
|
|
(bless
|
|
|
|
(let f ((e e) (e* e*))
|
|
|
|
(cond
|
|
|
|
((null? e*) `(begin #f ,e))
|
|
|
|
(else
|
|
|
|
`(let ((t ,e))
|
|
|
|
(if t t ,(f (car e*) (cdr e*))))))))))))
|
|
|
|
|
|
|
|
(define and-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_) #t)
|
|
|
|
((_ e e* ...)
|
|
|
|
(bless
|
|
|
|
(let f ((e e) (e* e*))
|
|
|
|
(cond
|
|
|
|
((null? e*) `(begin #f ,e))
|
|
|
|
(else `(if ,e ,(f (car e*) (cdr e*)) #f)))))))))
|
|
|
|
|
|
|
|
(define cond-macro
|
|
|
|
(lambda (stx)
|
|
|
|
(syntax-match stx ()
|
|
|
|
((_ cls cls* ...)
|
|
|
|
(bless
|
|
|
|
(let f ((cls cls) (cls* cls*))
|
|
|
|
(cond
|
|
|
|
((null? cls*)
|
|
|
|
(syntax-match cls (else =>)
|
|
|
|
((else e e* ...) `(begin ,e . ,e*))
|
|
|
|
((e => p) `(let ((t ,e)) (if t (,p t))))
|
|
|
|
((e) `(or ,e (if #f #f)))
|
|
|
|
((e e* ...) `(if ,e (begin . ,e*)))
|
|
|
|
(_ (stx-error stx "invalid last clause"))))
|
|
|
|
(else
|
|
|
|
(syntax-match cls (else =>)
|
|
|
|
((else e e* ...) (stx-error stx "incorrect position of keyword else"))
|
|
|
|
((e => p) `(let ((t ,e)) (if t (,p t) ,(f (car cls*) (cdr cls*)))))
|
|
|
|
((e) `(or ,e ,(f (car cls*) (cdr cls*))))
|
|
|
|
((e e* ...) `(if ,e (begin . ,e*) ,(f (car cls*) (cdr cls*))))
|
|
|
|
(_ (stx-error stx "invalid last clause")))))))))))
|
|
|
|
|
2007-12-05 03:26:56 -05:00
|
|
|
(begin ; module (include-macro include-into-macro)
|
|
|
|
; no module to keep portable!
|
|
|
|
; dump everything in top-level, sure.
|
|
|
|
(define (do-include stx id filename)
|
|
|
|
(let ((filename (stx->datum filename)))
|
|
|
|
(unless (and (string? filename) (id? id))
|
|
|
|
(stx-error stx))
|
|
|
|
(cons
|
|
|
|
(bless 'begin)
|
|
|
|
(with-input-from-file filename
|
|
|
|
(lambda ()
|
|
|
|
(let f ((ls '()))
|
2008-02-17 02:29:36 -05:00
|
|
|
(let ((x (read-annotated)))
|
2007-12-05 03:26:56 -05:00
|
|
|
(cond
|
|
|
|
((eof-object? x) (reverse ls))
|
|
|
|
(else
|
|
|
|
(f (cons (datum->stx id x) ls)))))))))))
|
|
|
|
(define include-macro
|
|
|
|
(lambda (e)
|
|
|
|
(syntax-match e ()
|
|
|
|
((id filename)
|
|
|
|
(do-include e id filename)))))
|
|
|
|
(define include-into-macro
|
|
|
|
(lambda (e)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ id filename)
|
|
|
|
(do-include e id filename))))))
|
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define syntax-rules-macro
|
|
|
|
(lambda (e)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ (lits ...)
|
|
|
|
(pat* tmp*) ...)
|
|
|
|
(begin
|
|
|
|
(unless (for-all
|
|
|
|
(lambda (x)
|
|
|
|
(and (id? x)
|
|
|
|
(not (free-id=? x (scheme-stx '...)))
|
|
|
|
(not (free-id=? x (scheme-stx '_)))))
|
|
|
|
lits)
|
|
|
|
(stx-error e "invalid literals"))
|
|
|
|
(bless `(lambda (x)
|
|
|
|
(syntax-case x ,lits
|
|
|
|
,@(map (lambda (pat tmp)
|
2007-12-20 06:36:00 -05:00
|
|
|
(syntax-match pat ()
|
|
|
|
[(_ . rest)
|
|
|
|
`((g . ,rest) (syntax ,tmp))]
|
|
|
|
[_
|
|
|
|
(syntax-violation #f
|
|
|
|
"invalid syntax-rules pattern"
|
|
|
|
e pat)]))
|
2007-10-09 08:54:28 -04:00
|
|
|
pat* tmp*)))))))))
|
|
|
|
|
|
|
|
(define quasiquote-macro
|
|
|
|
(let ()
|
2008-02-15 15:25:20 -05:00
|
|
|
(define (datum x)
|
|
|
|
(list (scheme-stx 'quote) (mkstx x '() '() '())))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define-syntax app
|
|
|
|
(syntax-rules (quote)
|
|
|
|
((_ 'x arg* ...)
|
|
|
|
(list (scheme-stx 'x) arg* ...))))
|
|
|
|
(define-syntax app*
|
|
|
|
(syntax-rules (quote)
|
|
|
|
((_ 'x arg* ... last)
|
|
|
|
(cons* (scheme-stx 'x) arg* ... last))))
|
|
|
|
(define quasicons*
|
|
|
|
(lambda (x y)
|
|
|
|
(let f ((x x))
|
|
|
|
(if (null? x) y (quasicons (car x) (f (cdr x)))))))
|
|
|
|
(define quasicons
|
|
|
|
(lambda (x y)
|
|
|
|
(syntax-match y (quote list)
|
|
|
|
((quote dy)
|
|
|
|
(syntax-match x (quote)
|
|
|
|
((quote dx) (app 'quote (cons dx dy)))
|
|
|
|
(_
|
|
|
|
(syntax-match dy ()
|
|
|
|
(() (app 'list x))
|
|
|
|
(_ (app 'cons x y))))))
|
|
|
|
((list stuff ...)
|
|
|
|
(app* 'list x stuff))
|
|
|
|
(_ (app 'cons x y)))))
|
|
|
|
(define quasiappend
|
|
|
|
(lambda (x y)
|
|
|
|
(let ((ls (let f ((x x))
|
|
|
|
(if (null? x)
|
|
|
|
(syntax-match y (quote)
|
|
|
|
((quote ()) '())
|
|
|
|
(_ (list y)))
|
|
|
|
(syntax-match (car x) (quote)
|
|
|
|
((quote ()) (f (cdr x)))
|
|
|
|
(_ (cons (car x) (f (cdr x)))))))))
|
|
|
|
(cond
|
|
|
|
((null? ls) (app 'quote '()))
|
|
|
|
((null? (cdr ls)) (car ls))
|
|
|
|
(else (app* 'append ls))))))
|
|
|
|
(define quasivector
|
|
|
|
(lambda (x)
|
|
|
|
(let ((pat-x x))
|
|
|
|
(syntax-match pat-x (quote)
|
|
|
|
((quote (x* ...)) (app 'quote (list->vector x*)))
|
|
|
|
(_ (let f ((x x) (k (lambda (ls) (app* 'vector ls))))
|
|
|
|
(syntax-match x (quote list cons)
|
|
|
|
((quote (x* ...))
|
|
|
|
(k (map (lambda (x) (app 'quote x)) x*)))
|
|
|
|
((list x* ...)
|
|
|
|
(k x*))
|
|
|
|
((cons x y)
|
|
|
|
(f y (lambda (ls) (k (cons x ls)))))
|
|
|
|
(_ (app 'list->vector pat-x)))))))))
|
|
|
|
(define vquasi
|
|
|
|
(lambda (p lev)
|
|
|
|
(syntax-match p ()
|
|
|
|
((p . q)
|
|
|
|
(syntax-match p (unquote unquote-splicing)
|
|
|
|
((unquote p ...)
|
|
|
|
(if (= lev 0)
|
|
|
|
(quasicons* p (vquasi q lev))
|
|
|
|
(quasicons
|
2008-02-15 15:25:20 -05:00
|
|
|
(quasicons (datum 'unquote)
|
2007-10-09 08:54:28 -04:00
|
|
|
(quasi p (- lev 1)))
|
|
|
|
(vquasi q lev))))
|
|
|
|
((unquote-splicing p ...)
|
|
|
|
(if (= lev 0)
|
|
|
|
(quasiappend p (vquasi q lev))
|
|
|
|
(quasicons
|
|
|
|
(quasicons
|
2008-02-15 15:25:20 -05:00
|
|
|
(datum 'unquote-splicing)
|
2007-10-09 08:54:28 -04:00
|
|
|
(quasi p (- lev 1)))
|
|
|
|
(vquasi q lev))))
|
|
|
|
(p (quasicons (quasi p lev) (vquasi q lev)))))
|
|
|
|
(() (app 'quote '())))))
|
|
|
|
(define quasi
|
|
|
|
(lambda (p lev)
|
|
|
|
(syntax-match p (unquote unquote-splicing quasiquote)
|
|
|
|
((unquote p)
|
|
|
|
(if (= lev 0)
|
|
|
|
p
|
2008-02-15 15:25:20 -05:00
|
|
|
(quasicons (datum 'unquote) (quasi (list p) (- lev 1)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(((unquote p ...) . q)
|
|
|
|
(if (= lev 0)
|
|
|
|
(quasicons* p (quasi q lev))
|
|
|
|
(quasicons
|
2008-02-15 15:25:20 -05:00
|
|
|
(quasicons (datum 'unquote)
|
|
|
|
(quasi p (- lev 1)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(quasi q lev))))
|
|
|
|
(((unquote-splicing p ...) . q)
|
|
|
|
(if (= lev 0)
|
|
|
|
(quasiappend p (quasi q lev))
|
|
|
|
(quasicons
|
2008-02-15 15:25:20 -05:00
|
|
|
(quasicons (datum 'unquote-splicing)
|
2007-10-09 08:54:28 -04:00
|
|
|
(quasi p (- lev 1)))
|
|
|
|
(quasi q lev))))
|
|
|
|
((quasiquote p)
|
2008-02-15 15:25:20 -05:00
|
|
|
(quasicons (datum 'quasiquote)
|
|
|
|
(quasi (list p) (+ lev 1))))
|
2007-10-09 08:54:28 -04:00
|
|
|
((p . q) (quasicons (quasi p lev) (quasi q lev)))
|
|
|
|
(#(x ...) (not (stx? x)) (quasivector (vquasi x lev)))
|
|
|
|
(p (app 'quote p)))))
|
|
|
|
(lambda (x)
|
|
|
|
(syntax-match x ()
|
|
|
|
((_ e) (quasi e 0))))))
|
|
|
|
|
|
|
|
(define quasisyntax-macro
|
|
|
|
(let () ;;; FIXME: not really correct
|
|
|
|
(define quasi
|
|
|
|
(lambda (p lev)
|
|
|
|
(syntax-match p (unsyntax unsyntax-splicing quasisyntax)
|
|
|
|
((unsyntax p)
|
|
|
|
(if (= lev 0)
|
|
|
|
(let ((g (gensym)))
|
|
|
|
(values (list g) (list p) g))
|
|
|
|
(let-values (((lhs* rhs* p) (quasi p (- lev 1))))
|
|
|
|
(values lhs* rhs* (list 'unsyntax p)))))
|
|
|
|
(unsyntax (= lev 0)
|
|
|
|
(stx-error p "incorrect use of unsyntax"))
|
|
|
|
(((unsyntax-splicing p) . q)
|
|
|
|
(let-values (((lhs* rhs* q) (quasi q lev)))
|
|
|
|
(if (= lev 0)
|
|
|
|
(let ((g (gensym)))
|
|
|
|
(values (cons `(,g ...) lhs*) (cons p rhs*)
|
|
|
|
`(,g ... . ,q)))
|
|
|
|
(let-values (((lhs2* rhs2* p) (quasi p (- lev 1))))
|
|
|
|
(values (append lhs2* lhs*)
|
|
|
|
(append rhs2* rhs*)
|
|
|
|
`((unsyntax-splicing ,p) . ,q))))))
|
|
|
|
(unsyntax-splicing (= lev 0)
|
|
|
|
(stx-error p "incorrect use of unsyntax-splicing"))
|
|
|
|
((quasisyntax p)
|
|
|
|
(let-values (((lhs* rhs* p) (quasi p (+ lev 1))))
|
|
|
|
(values lhs* rhs* `(quasisyntax ,p))))
|
|
|
|
((p . q)
|
|
|
|
(let-values (((lhs* rhs* p) (quasi p lev))
|
|
|
|
((lhs2* rhs2* q) (quasi q lev)))
|
|
|
|
(values (append lhs2* lhs*)
|
|
|
|
(append rhs2* rhs*)
|
|
|
|
(cons p q))))
|
|
|
|
(#(x ...) (not (stx? p))
|
|
|
|
(let-values (((lhs* rhs* x*)
|
|
|
|
(let f ((x x))
|
|
|
|
(cond
|
|
|
|
((null? x) (values '() '() '()))
|
|
|
|
(else
|
|
|
|
(let-values (((lhs* rhs* a) (quasi (car x) lev)))
|
|
|
|
(let-values (((lhs2* rhs2* d) (f (cdr x))))
|
|
|
|
(values (append lhs* lhs2*)
|
|
|
|
(append rhs* rhs2*)
|
|
|
|
(cons a d)))))))))
|
|
|
|
(values lhs* rhs* (list->vector x*))))
|
|
|
|
(_ (values '() '() p)))))
|
|
|
|
(lambda (x)
|
|
|
|
(syntax-match x ()
|
|
|
|
((_ e)
|
|
|
|
(let-values (((lhs* rhs* v) (quasi e 0)))
|
|
|
|
(bless
|
|
|
|
`(syntax-case (list ,@rhs*) ()
|
|
|
|
(,lhs* (syntax ,v))))))))))
|
|
|
|
|
2007-10-12 02:59:27 -04:00
|
|
|
|
|
|
|
(define define-struct-macro
|
|
|
|
(if-wants-define-struct
|
2007-10-09 08:54:28 -04:00
|
|
|
(lambda (e)
|
|
|
|
(define enumerate
|
|
|
|
(lambda (ls)
|
|
|
|
(let f ((i 0) (ls ls))
|
|
|
|
(cond
|
|
|
|
((null? ls) '())
|
|
|
|
(else (cons i (f (+ i 1) (cdr ls))))))))
|
|
|
|
(define mkid
|
|
|
|
(lambda (id str)
|
|
|
|
(datum->stx id (string->symbol str))))
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ name (field* ...))
|
|
|
|
(let* ((namestr (symbol->string (id->sym name)))
|
|
|
|
(fields (map id->sym field*))
|
|
|
|
(fieldstr* (map symbol->string fields))
|
2007-10-12 02:59:27 -04:00
|
|
|
(rtd (datum->stx name (make-struct-type namestr fields)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(constr (mkid name (string-append "make-" namestr)))
|
|
|
|
(pred (mkid name (string-append namestr "?")))
|
|
|
|
(i* (enumerate field*))
|
|
|
|
(getters
|
|
|
|
(map (lambda (x)
|
|
|
|
(mkid name (string-append namestr "-" x)))
|
|
|
|
fieldstr*))
|
|
|
|
(setters
|
|
|
|
(map (lambda (x)
|
|
|
|
(mkid name (string-append "set-" namestr "-" x "!")))
|
|
|
|
fieldstr*)))
|
|
|
|
(bless
|
|
|
|
`(begin
|
|
|
|
(define-syntax ,name (cons '$rtd ',rtd))
|
|
|
|
(define ,constr
|
|
|
|
(lambda ,field*
|
2007-10-12 02:59:27 -04:00
|
|
|
($struct ',rtd ,@field*)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define ,pred
|
2007-10-12 02:59:27 -04:00
|
|
|
(lambda (x) ($struct/rtd? x ',rtd)))
|
2007-10-09 08:54:28 -04:00
|
|
|
,@(map (lambda (getter i)
|
|
|
|
`(define ,getter
|
|
|
|
(lambda (x)
|
2007-10-12 02:59:27 -04:00
|
|
|
(if ($struct/rtd? x ',rtd)
|
|
|
|
($struct-ref x ,i)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation ',getter
|
2007-10-25 14:32:26 -04:00
|
|
|
"not a struct of required type"
|
2007-10-09 08:54:28 -04:00
|
|
|
x ',rtd)))))
|
|
|
|
getters i*)
|
|
|
|
,@(map (lambda (setter i)
|
|
|
|
`(define ,setter
|
|
|
|
(lambda (x v)
|
2007-10-12 02:59:27 -04:00
|
|
|
(if ($struct/rtd? x ',rtd)
|
|
|
|
($struct-set! x ,i v)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation ',setter
|
2007-10-25 14:32:26 -04:00
|
|
|
"not a struct of required type"
|
2007-10-09 08:54:28 -04:00
|
|
|
x ',rtd)))))
|
|
|
|
setters i*)))))))
|
|
|
|
(lambda (stx)
|
2007-10-12 02:59:27 -04:00
|
|
|
(stx-error stx "define-struct not supported"))))
|
|
|
|
|
2007-10-14 16:37:55 -04:00
|
|
|
|
|
|
|
(define define-record-type-macro
|
|
|
|
(lambda (x)
|
|
|
|
(define (id ctxt . str*)
|
|
|
|
(datum->syntax ctxt
|
|
|
|
(string->symbol
|
|
|
|
(apply string-append
|
|
|
|
(map (lambda (x)
|
|
|
|
(cond
|
|
|
|
[(symbol? x) (symbol->string x)]
|
|
|
|
[(string? x) x]
|
2007-12-15 08:22:49 -05:00
|
|
|
[else (assertion-violation 'define-record-type "BUG")]))
|
2007-10-14 16:37:55 -04:00
|
|
|
str*)))))
|
|
|
|
(define (get-record-name spec)
|
|
|
|
(syntax-match spec ()
|
|
|
|
[(foo make-foo foo?) foo]
|
|
|
|
[foo foo]))
|
2007-11-14 17:24:29 -05:00
|
|
|
(define (get-record-constructor-name spec)
|
2007-10-14 16:37:55 -04:00
|
|
|
(syntax-match spec ()
|
|
|
|
[(foo make-foo foo?) make-foo]
|
2007-11-14 17:24:29 -05:00
|
|
|
[foo (id? foo) (id foo "make-" (stx->datum foo))]))
|
|
|
|
(define (get-record-predicate-name spec)
|
2007-10-14 16:37:55 -04:00
|
|
|
(syntax-match spec ()
|
|
|
|
[(foo make-foo foo?) foo?]
|
2007-11-14 17:24:29 -05:00
|
|
|
[foo (id? foo) (id foo (stx->datum foo) "?")]))
|
2007-10-14 16:37:55 -04:00
|
|
|
(define (get-clause id ls)
|
|
|
|
(syntax-match ls ()
|
|
|
|
[() #f]
|
|
|
|
[((x . rest) . ls)
|
|
|
|
(if (free-id=? (bless id) x)
|
|
|
|
`(,x . ,rest)
|
|
|
|
(get-clause id ls))]))
|
2007-11-14 17:24:29 -05:00
|
|
|
(define (foo-rtd-code name clause*)
|
2007-10-14 16:37:55 -04:00
|
|
|
(define (convert-field-spec* ls)
|
|
|
|
(list->vector
|
|
|
|
(map (lambda (x)
|
|
|
|
(syntax-match x (mutable immutable)
|
|
|
|
[(mutable name . rest) `(mutable ,name)]
|
|
|
|
[(immutable name . rest) `(immutable ,name)]
|
|
|
|
[name `(immutable ,name)]))
|
|
|
|
ls)))
|
|
|
|
(let ([parent-rtd-code
|
|
|
|
(syntax-match (get-clause 'parent clause*) ()
|
|
|
|
[(_ name) `(record-type-descriptor ,name)]
|
|
|
|
[_ '#f])]
|
|
|
|
[uid-code
|
|
|
|
(syntax-match (get-clause 'nongenerative clause*) ()
|
|
|
|
[(_) `',(gensym)]
|
|
|
|
[(_ uid) `',uid]
|
|
|
|
[_ #f])]
|
|
|
|
[sealed?
|
2007-12-01 01:52:34 -05:00
|
|
|
(syntax-match (get-clause 'sealed clause*) ()
|
2007-10-14 16:37:55 -04:00
|
|
|
[(_ #t) #t]
|
|
|
|
[_ #f])]
|
|
|
|
[opaque?
|
2007-12-01 01:52:34 -05:00
|
|
|
(syntax-match (get-clause 'opaque clause*) ()
|
2007-10-14 16:37:55 -04:00
|
|
|
[(_ #t) #t]
|
|
|
|
[_ #f])]
|
|
|
|
[fields
|
|
|
|
(syntax-match (get-clause 'fields clause*) ()
|
|
|
|
[(_ field-spec* ...)
|
|
|
|
`(quote ,(convert-field-spec* field-spec*))]
|
|
|
|
[_ ''#()])])
|
|
|
|
(bless
|
|
|
|
`(make-record-type-descriptor ',name
|
|
|
|
,parent-rtd-code
|
|
|
|
,uid-code ,sealed? ,opaque? ,fields))))
|
|
|
|
(define (foo-rcd-code clause* foo-rtd protocol)
|
|
|
|
(let ([parent-rcd-code
|
|
|
|
(syntax-match (get-clause 'parent clause*) ()
|
|
|
|
[(_ name) `(record-constructor-descriptor ,name)]
|
|
|
|
[_ #f])])
|
|
|
|
`(make-record-constructor-descriptor ,foo-rtd
|
|
|
|
,parent-rcd-code ,protocol)))
|
|
|
|
(define (get-protocol-code clause*)
|
|
|
|
(syntax-match (get-clause 'protocol clause*) ()
|
|
|
|
[(_ expr) expr]
|
|
|
|
[_ #f]))
|
2007-10-23 16:38:34 -04:00
|
|
|
(define (get-fields clause*)
|
|
|
|
(syntax-match clause* (fields)
|
|
|
|
[() '()]
|
|
|
|
[((fields f* ...) . _) f*]
|
|
|
|
[(_ . rest) (get-fields rest)]))
|
|
|
|
(define (get-mutator-indices fields)
|
|
|
|
(let f ([fields fields] [i 0])
|
|
|
|
(syntax-match fields (mutable)
|
|
|
|
[() '()]
|
|
|
|
[((mutable . _) . rest)
|
|
|
|
(cons i (f rest (+ i 1)))]
|
|
|
|
[(_ . rest)
|
|
|
|
(f rest (+ i 1))])))
|
2007-11-14 17:24:29 -05:00
|
|
|
(define (get-mutators foo fields)
|
2007-10-23 16:38:34 -04:00
|
|
|
(define (gen-name x)
|
2007-11-14 17:24:29 -05:00
|
|
|
(datum->syntax foo
|
2007-10-23 16:38:34 -04:00
|
|
|
(string->symbol
|
2007-12-01 01:46:58 -05:00
|
|
|
(string-append
|
2007-10-23 16:38:34 -04:00
|
|
|
(symbol->string (syntax->datum foo))
|
|
|
|
"-"
|
|
|
|
(symbol->string (syntax->datum x))
|
2007-12-01 01:46:58 -05:00
|
|
|
"-set!"))))
|
2007-10-23 16:38:34 -04:00
|
|
|
(let f ([fields fields])
|
|
|
|
(syntax-match fields (mutable)
|
|
|
|
[() '()]
|
|
|
|
[((mutable name accessor mutator) . rest)
|
|
|
|
(cons mutator (f rest))]
|
|
|
|
[((mutable name) . rest)
|
|
|
|
(cons (gen-name name) (f rest))]
|
|
|
|
[(_ . rest) (f rest)])))
|
2007-11-14 17:24:29 -05:00
|
|
|
(define (get-accessors foo fields)
|
2007-10-23 16:38:34 -04:00
|
|
|
(define (gen-name x)
|
2007-11-14 17:24:29 -05:00
|
|
|
(datum->syntax foo
|
2007-10-23 16:38:34 -04:00
|
|
|
(string->symbol
|
|
|
|
(string-append
|
|
|
|
(symbol->string (syntax->datum foo))
|
|
|
|
"-"
|
|
|
|
(symbol->string (syntax->datum x))))))
|
|
|
|
(map
|
|
|
|
(lambda (field)
|
|
|
|
(syntax-match field (mutable immutable)
|
|
|
|
[(mutable name accessor mutator) (id? accessor) accessor]
|
|
|
|
[(immutable name accessor) (id? accessor) accessor]
|
|
|
|
[(mutable name) (id? name) (gen-name name)]
|
|
|
|
[(immutable name) (id? name) (gen-name name)]
|
|
|
|
[name (id? name) (gen-name name)]
|
|
|
|
[others (stx-error field "invalid field spec")]))
|
|
|
|
fields))
|
|
|
|
(define (enumerate ls)
|
|
|
|
(let f ([ls ls] [i 0])
|
|
|
|
(cond
|
|
|
|
[(null? ls) '()]
|
|
|
|
[else (cons i (f (cdr ls) (+ i 1)))])))
|
2007-11-14 17:24:29 -05:00
|
|
|
(define (do-define-record namespec clause*)
|
2007-10-14 16:37:55 -04:00
|
|
|
(let* ([foo (get-record-name namespec)]
|
|
|
|
[foo-rtd (gensym)]
|
|
|
|
[foo-rcd (gensym)]
|
|
|
|
[protocol (gensym)]
|
2007-11-14 17:24:29 -05:00
|
|
|
[make-foo (get-record-constructor-name namespec)]
|
2007-10-23 16:38:34 -04:00
|
|
|
[fields (get-fields clause*)]
|
|
|
|
[idx* (enumerate fields)]
|
2007-11-14 17:24:29 -05:00
|
|
|
[foo-x* (get-accessors foo fields)]
|
|
|
|
[set-foo-x!* (get-mutators foo fields)]
|
2007-10-23 16:38:34 -04:00
|
|
|
[set-foo-idx* (get-mutator-indices fields)]
|
2007-11-14 17:24:29 -05:00
|
|
|
[foo? (get-record-predicate-name namespec)]
|
|
|
|
[foo-rtd-code (foo-rtd-code foo clause*)]
|
2007-10-14 16:37:55 -04:00
|
|
|
[foo-rcd-code (foo-rcd-code clause* foo-rtd protocol)]
|
|
|
|
[protocol-code (get-protocol-code clause*)])
|
|
|
|
(bless
|
|
|
|
`(begin
|
|
|
|
(define ,foo-rtd ,foo-rtd-code)
|
|
|
|
(define ,protocol ,protocol-code)
|
|
|
|
(define ,foo-rcd ,foo-rcd-code)
|
|
|
|
(define-syntax ,foo (list '$rtd #',foo-rtd #',foo-rcd))
|
|
|
|
(define ,foo? (record-predicate ,foo-rtd))
|
|
|
|
(define ,make-foo (record-constructor ,foo-rcd))
|
|
|
|
,@(map
|
|
|
|
(lambda (foo-x idx)
|
|
|
|
`(define ,foo-x (record-accessor ,foo-rtd ,idx)))
|
|
|
|
foo-x* idx*)
|
|
|
|
,@(map
|
|
|
|
(lambda (set-foo-x! idx)
|
|
|
|
`(define ,set-foo-x! (record-mutator ,foo-rtd ,idx)))
|
2007-10-23 16:38:34 -04:00
|
|
|
set-foo-x!* set-foo-idx*)))))
|
2007-11-30 05:36:25 -05:00
|
|
|
(define (verify-clauses x cls*)
|
|
|
|
(define valid-kwds
|
|
|
|
(map bless
|
|
|
|
'(fields parent parent-rtd protocol sealed opaque nongenerative)))
|
|
|
|
(define (free-id-member? x ls)
|
|
|
|
(and (pair? ls)
|
|
|
|
(or (free-id=? x (car ls))
|
|
|
|
(free-id-member? x (cdr ls)))))
|
|
|
|
(let f ([cls* cls*] [seen* '()])
|
|
|
|
(unless (null? cls*)
|
|
|
|
(syntax-match (car cls*) ()
|
|
|
|
[(kwd . rest)
|
|
|
|
(cond
|
|
|
|
[(or (not (id? kwd))
|
|
|
|
(not (free-id-member? kwd valid-kwds)))
|
|
|
|
(stx-error kwd "not a valid define-record-type keyword")]
|
|
|
|
[(bound-id-member? kwd seen*)
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax-violation #f
|
|
|
|
"duplicate use of keyword "
|
|
|
|
x kwd)]
|
2007-11-30 05:36:25 -05:00
|
|
|
[else (f (cdr cls*) (cons kwd seen*))])]
|
|
|
|
[cls
|
|
|
|
(stx-error cls "malformed define-record-type clause")]))))
|
2007-10-14 16:37:55 -04:00
|
|
|
(syntax-match x ()
|
2007-11-14 17:24:29 -05:00
|
|
|
[(_ namespec clause* ...)
|
2007-11-30 05:36:25 -05:00
|
|
|
(begin
|
|
|
|
(verify-clauses x clause*)
|
|
|
|
(do-define-record namespec clause*))])))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
2007-10-23 17:53:43 -04:00
|
|
|
(define define-condition-type-macro
|
|
|
|
(lambda (x)
|
|
|
|
(define (mkname name suffix)
|
|
|
|
(datum->syntax name
|
|
|
|
(string->symbol
|
|
|
|
(string-append
|
|
|
|
(symbol->string (syntax->datum name))
|
|
|
|
suffix))))
|
|
|
|
(syntax-match x ()
|
|
|
|
[(ctxt name super constructor predicate (field* accessor*) ...)
|
|
|
|
(and (id? name)
|
|
|
|
(id? super)
|
|
|
|
(id? constructor)
|
|
|
|
(id? predicate)
|
|
|
|
(for-all id? field*)
|
|
|
|
(for-all id? accessor*))
|
|
|
|
(let ([aux-accessor* (map (lambda (x) (gensym)) accessor*)])
|
|
|
|
(bless
|
|
|
|
`(begin
|
|
|
|
(define-record-type (,name ,constructor ,(gensym))
|
|
|
|
(parent ,super)
|
|
|
|
(fields ,@(map (lambda (field aux)
|
|
|
|
`(immutable ,field ,aux))
|
|
|
|
field* aux-accessor*))
|
|
|
|
(nongenerative)
|
|
|
|
(sealed #f) (opaque #f))
|
|
|
|
(define ,predicate (condition-predicate
|
|
|
|
(record-type-descriptor ,name)))
|
|
|
|
,@(map
|
|
|
|
(lambda (accessor aux)
|
|
|
|
`(define ,accessor
|
|
|
|
(condition-accessor
|
|
|
|
(record-type-descriptor ,name) ,aux)))
|
|
|
|
accessor* aux-accessor*))))])))
|
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define incorrect-usage-macro
|
2007-11-12 11:37:11 -05:00
|
|
|
(lambda (e) (stx-error e "incorrect usage of auxiliary keyword")))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define parameterize-transformer ;;; go away
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ () b b* ...)
|
|
|
|
(chi-internal (cons b b*) r mr))
|
|
|
|
((_ ((olhs* orhs*) ...) b b* ...)
|
|
|
|
(let ((lhs* (map (lambda (x) (gen-lexical 'lhs)) olhs*))
|
|
|
|
(rhs* (map (lambda (x) (gen-lexical 'rhs)) olhs*))
|
|
|
|
(t* (map (lambda (x) (gen-lexical 't)) olhs*))
|
|
|
|
(swap (gen-lexical 'swap)))
|
|
|
|
(build-let no-source
|
|
|
|
(append lhs* rhs*)
|
|
|
|
(append (chi-expr* olhs* r mr) (chi-expr* orhs* r mr))
|
|
|
|
(build-let no-source
|
|
|
|
(list swap)
|
|
|
|
(list (build-lambda no-source '()
|
|
|
|
(build-sequence no-source
|
|
|
|
(map (lambda (t lhs rhs)
|
|
|
|
(build-let no-source
|
|
|
|
(list t)
|
|
|
|
(list (build-application no-source
|
|
|
|
(build-lexical-reference no-source lhs)
|
|
|
|
'()))
|
|
|
|
(build-sequence no-source
|
|
|
|
(list (build-application no-source
|
|
|
|
(build-lexical-reference no-source lhs)
|
|
|
|
(list (build-lexical-reference no-source rhs)))
|
|
|
|
(build-lexical-assignment no-source rhs
|
|
|
|
(build-lexical-reference no-source t))))))
|
|
|
|
t* lhs* rhs*))))
|
|
|
|
(build-application no-source
|
|
|
|
(build-primref no-source 'dynamic-wind)
|
|
|
|
(list (build-lexical-reference no-source swap)
|
|
|
|
(build-lambda no-source '()
|
|
|
|
(chi-internal (cons b b*) r mr))
|
|
|
|
(build-lexical-reference no-source swap))))))))))
|
|
|
|
|
|
|
|
(define foreign-call-transformer
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ name arg* ...)
|
|
|
|
(build-foreign-call no-source
|
|
|
|
(chi-expr name r mr)
|
|
|
|
(chi-expr* arg* r mr))))))
|
|
|
|
|
|
|
|
;; p in pattern: matches:
|
|
|
|
;; () empty list
|
|
|
|
;; _ anything (no binding created)
|
|
|
|
;; any anything
|
|
|
|
;; (p1 . p2) pair
|
|
|
|
;; #(free-id <key>) <key> with free-identifier=?
|
|
|
|
;; each-any any proper list
|
|
|
|
;; #(each p) (p*)
|
|
|
|
;; #(each+ p1 (p2_1 ... p2_n) p3) (p1* (p2_n ... p2_1) . p3)
|
|
|
|
;; #(vector p) #(x ...) if p matches (x ...)
|
|
|
|
;; #(atom <object>) <object> with "equal?"
|
|
|
|
(define convert-pattern
|
|
|
|
; returns syntax-dispatch pattern & ids
|
|
|
|
(lambda (pattern keys)
|
|
|
|
(define cvt*
|
|
|
|
(lambda (p* n ids)
|
|
|
|
(if (null? p*)
|
|
|
|
(values '() ids)
|
|
|
|
(let-values (((y ids) (cvt* (cdr p*) n ids)))
|
|
|
|
(let-values (((x ids) (cvt (car p*) n ids)))
|
|
|
|
(values (cons x y) ids))))))
|
|
|
|
(define cvt
|
|
|
|
(lambda (p n ids)
|
|
|
|
(syntax-match p ()
|
|
|
|
(id (id? id)
|
|
|
|
(cond
|
|
|
|
((bound-id-member? p keys)
|
|
|
|
(values `#(free-id ,p) ids))
|
|
|
|
((free-id=? p (scheme-stx '_))
|
|
|
|
(values '_ ids))
|
|
|
|
(else (values 'any (cons (cons p n) ids)))))
|
|
|
|
((p dots) (ellipsis? dots)
|
|
|
|
(let-values (((p ids) (cvt p (+ n 1) ids)))
|
|
|
|
(values
|
|
|
|
(if (eq? p 'any) 'each-any `#(each ,p))
|
|
|
|
ids)))
|
|
|
|
((x dots ys ... . z) (ellipsis? dots)
|
|
|
|
(let-values (((z ids) (cvt z n ids)))
|
|
|
|
(let-values (((ys ids) (cvt* ys n ids)))
|
|
|
|
(let-values (((x ids) (cvt x (+ n 1) ids)))
|
|
|
|
(values `#(each+ ,x ,(reverse ys) ,z) ids)))))
|
|
|
|
((x . y)
|
|
|
|
(let-values (((y ids) (cvt y n ids)))
|
|
|
|
(let-values (((x ids) (cvt x n ids)))
|
|
|
|
(values (cons x y) ids))))
|
|
|
|
(() (values '() ids))
|
|
|
|
(#(p ...) (not (stx? p))
|
|
|
|
(let-values (((p ids) (cvt p n ids)))
|
|
|
|
(values `#(vector ,p) ids)))
|
|
|
|
(datum
|
|
|
|
(values `#(atom ,(stx->datum datum)) ids)))))
|
|
|
|
(cvt pattern 0 '())))
|
|
|
|
|
|
|
|
(define syntax-dispatch
|
|
|
|
(lambda (e p)
|
|
|
|
(define stx^
|
2008-02-14 04:01:09 -05:00
|
|
|
(lambda (e m* s* ae*)
|
2007-10-09 08:54:28 -04:00
|
|
|
(if (and (null? m*) (null? s*))
|
|
|
|
e
|
2008-02-14 04:01:09 -05:00
|
|
|
(mkstx e m* s* ae*))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define match-each
|
2008-02-14 04:01:09 -05:00
|
|
|
(lambda (e p m* s* ae*)
|
2007-10-09 08:54:28 -04:00
|
|
|
(cond
|
|
|
|
((pair? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let ((first (match (car e) p m* s* ae* '())))
|
2007-10-09 08:54:28 -04:00
|
|
|
(and first
|
2008-02-14 04:01:09 -05:00
|
|
|
(let ((rest (match-each (cdr e) p m* s* ae*)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(and rest (cons first rest))))))
|
|
|
|
((null? e) '())
|
|
|
|
((stx? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let-values (((m* s* ae*) (join-wraps m* s* ae* e)))
|
|
|
|
(match-each (stx-expr e) p m* s* ae*)))
|
|
|
|
[(annotation? e)
|
|
|
|
(match-each (annotation-expression e) p m* s* ae*)]
|
2007-10-09 08:54:28 -04:00
|
|
|
(else #f))))
|
|
|
|
(define match-each+
|
2008-02-14 04:01:09 -05:00
|
|
|
(lambda (e x-pat y-pat z-pat m* s* ae* r)
|
|
|
|
(let f ((e e) (m* m*) (s* s*) (ae* ae*))
|
2007-10-09 08:54:28 -04:00
|
|
|
(cond
|
|
|
|
((pair? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let-values (((xr* y-pat r) (f (cdr e) m* s* ae*)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(if r
|
|
|
|
(if (null? y-pat)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let ((xr (match (car e) x-pat m* s* ae* '())))
|
2007-10-09 08:54:28 -04:00
|
|
|
(if xr
|
|
|
|
(values (cons xr xr*) y-pat r)
|
|
|
|
(values #f #f #f)))
|
|
|
|
(values
|
|
|
|
'()
|
|
|
|
(cdr y-pat)
|
2008-02-14 04:01:09 -05:00
|
|
|
(match (car e) (car y-pat) m* s* ae* r)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(values #f #f #f))))
|
|
|
|
((stx? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let-values (((m* s* ae*) (join-wraps m* s* ae* e)))
|
|
|
|
(f (stx-expr e) m* s* ae*)))
|
2007-12-19 19:05:23 -05:00
|
|
|
[(annotation? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(f (annotation-expression e) m* s* ae*)]
|
|
|
|
(else (values '() y-pat (match e z-pat m* s* ae* r)))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define match-each-any
|
2008-02-14 04:01:09 -05:00
|
|
|
(lambda (e m* s* ae*)
|
2007-10-09 08:54:28 -04:00
|
|
|
(cond
|
|
|
|
((pair? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let ((l (match-each-any (cdr e) m* s* ae*)))
|
|
|
|
(and l (cons (stx^ (car e) m* s* ae*) l))))
|
2007-10-09 08:54:28 -04:00
|
|
|
((null? e) '())
|
|
|
|
((stx? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let-values (((m* s* ae*) (join-wraps m* s* ae* e)))
|
|
|
|
(match-each-any (stx-expr e) m* s* ae*)))
|
2007-12-19 19:05:23 -05:00
|
|
|
[(annotation? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(match-each-any (annotation-expression e) m* s* ae*)]
|
2007-10-09 08:54:28 -04:00
|
|
|
(else #f))))
|
|
|
|
(define match-empty
|
|
|
|
(lambda (p r)
|
|
|
|
(cond
|
|
|
|
((null? p) r)
|
|
|
|
((eq? p '_) r)
|
|
|
|
((eq? p 'any) (cons '() r))
|
|
|
|
((pair? p) (match-empty (car p) (match-empty (cdr p) r)))
|
|
|
|
((eq? p 'each-any) (cons '() r))
|
|
|
|
(else
|
|
|
|
(case (vector-ref p 0)
|
|
|
|
((each) (match-empty (vector-ref p 1) r))
|
|
|
|
((each+)
|
|
|
|
(match-empty
|
|
|
|
(vector-ref p 1)
|
|
|
|
(match-empty
|
|
|
|
(reverse (vector-ref p 2))
|
|
|
|
(match-empty (vector-ref p 3) r))))
|
|
|
|
((free-id atom) r)
|
|
|
|
((vector) (match-empty (vector-ref p 1) r))
|
2007-12-15 08:22:49 -05:00
|
|
|
(else (assertion-violation 'syntax-dispatch "invalid pattern" p)))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define combine
|
|
|
|
(lambda (r* r)
|
|
|
|
(if (null? (car r*))
|
|
|
|
r
|
|
|
|
(cons (map car r*) (combine (map cdr r*) r)))))
|
|
|
|
(define match*
|
2008-02-14 04:01:09 -05:00
|
|
|
(lambda (e p m* s* ae* r)
|
2007-10-09 08:54:28 -04:00
|
|
|
(cond
|
|
|
|
((null? p) (and (null? e) r))
|
|
|
|
((pair? p)
|
|
|
|
(and (pair? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(match (car e) (car p) m* s* ae*
|
|
|
|
(match (cdr e) (cdr p) m* s* ae* r))))
|
2007-10-09 08:54:28 -04:00
|
|
|
((eq? p 'each-any)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let ((l (match-each-any e m* s* ae*))) (and l (cons l r))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(else
|
|
|
|
(case (vector-ref p 0)
|
|
|
|
((each)
|
|
|
|
(if (null? e)
|
|
|
|
(match-empty (vector-ref p 1) r)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let ((r* (match-each e (vector-ref p 1) m* s* ae*)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(and r* (combine r* r)))))
|
|
|
|
((free-id)
|
|
|
|
(and (symbol? e)
|
2008-04-28 14:01:49 -04:00
|
|
|
(top-marked? m*)
|
2008-02-14 04:01:09 -05:00
|
|
|
(free-id=? (stx^ e m* s* ae*) (vector-ref p 1))
|
2007-10-09 08:54:28 -04:00
|
|
|
r))
|
|
|
|
((each+)
|
|
|
|
(let-values (((xr* y-pat r)
|
|
|
|
(match-each+ e (vector-ref p 1)
|
2008-02-14 04:01:09 -05:00
|
|
|
(vector-ref p 2) (vector-ref p 3) m* s* ae* r)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(and r
|
|
|
|
(null? y-pat)
|
|
|
|
(if (null? xr*)
|
|
|
|
(match-empty (vector-ref p 1) r)
|
|
|
|
(combine xr* r)))))
|
|
|
|
((atom) (and (equal? (vector-ref p 1) (strip e m*)) r))
|
|
|
|
((vector)
|
|
|
|
(and (vector? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(match (vector->list e) (vector-ref p 1) m* s* ae* r)))
|
2007-12-15 08:22:49 -05:00
|
|
|
(else (assertion-violation 'syntax-dispatch "invalid pattern" p)))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define match
|
2008-02-14 04:01:09 -05:00
|
|
|
(lambda (e p m* s* ae* r)
|
2007-10-09 08:54:28 -04:00
|
|
|
(cond
|
|
|
|
((not r) #f)
|
|
|
|
((eq? p '_) r)
|
2008-02-14 04:01:09 -05:00
|
|
|
((eq? p 'any) (cons (stx^ e m* s* ae*) r))
|
2007-10-09 08:54:28 -04:00
|
|
|
((stx? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let-values (((m* s* ae*) (join-wraps m* s* ae* e)))
|
|
|
|
(match (stx-expr e) p m* s* ae* r)))
|
2007-12-19 19:05:23 -05:00
|
|
|
[(annotation? e)
|
2008-02-14 04:01:09 -05:00
|
|
|
(match (annotation-expression e) p m* s* ae* r)]
|
|
|
|
(else (match* e p m* s* ae* r)))))
|
|
|
|
(match e p '() '() '() '())))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define ellipsis?
|
|
|
|
(lambda (x)
|
|
|
|
(and (id? x) (free-id=? x (scheme-stx '...)))))
|
|
|
|
|
|
|
|
(define syntax-case-transformer
|
|
|
|
(let ()
|
|
|
|
(define build-dispatch-call
|
|
|
|
(lambda (pvars expr y r mr)
|
|
|
|
(let ((ids (map car pvars))
|
|
|
|
(levels (map cdr pvars)))
|
|
|
|
(let ((labels (map gen-label ids))
|
|
|
|
(new-vars (map gen-lexical ids)))
|
|
|
|
(let ((body
|
|
|
|
(chi-expr
|
|
|
|
(add-subst (make-full-rib ids labels) expr)
|
|
|
|
(append
|
|
|
|
(map (lambda (label var level)
|
|
|
|
(cons label (make-binding 'syntax (cons var level))))
|
|
|
|
labels new-vars (map cdr pvars))
|
|
|
|
r)
|
|
|
|
mr)))
|
|
|
|
(build-application no-source
|
|
|
|
(build-primref no-source 'apply)
|
|
|
|
(list (build-lambda no-source new-vars body) y)))))))
|
|
|
|
(define invalid-ids-error
|
|
|
|
(lambda (id* e class)
|
|
|
|
(let find ((id* id*) (ok* '()))
|
|
|
|
(if (null? id*)
|
|
|
|
(stx-error e) ; shouldn't happen
|
|
|
|
(if (id? (car id*))
|
|
|
|
(if (bound-id-member? (car id*) ok*)
|
|
|
|
(syntax-error (car id*) "duplicate " class)
|
|
|
|
(find (cdr id*) (cons (car id*) ok*)))
|
|
|
|
(syntax-error (car id*) "invalid " class))))))
|
|
|
|
(define gen-clause
|
|
|
|
(lambda (x keys clauses r mr pat fender expr)
|
|
|
|
(let-values (((p pvars) (convert-pattern pat keys)))
|
|
|
|
(cond
|
|
|
|
((not (distinct-bound-ids? (map car pvars)))
|
|
|
|
(invalid-ids-error (map car pvars) pat "pattern variable"))
|
|
|
|
((not (for-all (lambda (x) (not (ellipsis? (car x)))) pvars))
|
|
|
|
(stx-error pat "misplaced ellipsis in syntax-case pattern"))
|
|
|
|
(else
|
|
|
|
(let ((y (gen-lexical 'tmp)))
|
|
|
|
(let ((test
|
|
|
|
(cond
|
|
|
|
((eq? fender #t) y)
|
|
|
|
(else
|
|
|
|
(let ((call
|
|
|
|
(build-dispatch-call
|
|
|
|
pvars fender y r mr)))
|
|
|
|
(build-conditional no-source
|
|
|
|
(build-lexical-reference no-source y)
|
|
|
|
call
|
|
|
|
(build-data no-source #f)))))))
|
|
|
|
(let ((conseq
|
|
|
|
(build-dispatch-call pvars expr
|
|
|
|
(build-lexical-reference no-source y)
|
|
|
|
r mr)))
|
|
|
|
(let ((altern
|
|
|
|
(gen-syntax-case x keys clauses r mr)))
|
|
|
|
(build-application no-source
|
|
|
|
(build-lambda no-source (list y)
|
|
|
|
(build-conditional no-source test conseq altern))
|
|
|
|
(list
|
|
|
|
(build-application no-source
|
|
|
|
(build-primref no-source 'syntax-dispatch)
|
|
|
|
(list
|
|
|
|
(build-lexical-reference no-source x)
|
|
|
|
(build-data no-source p))))))))))))))
|
|
|
|
(define gen-syntax-case
|
|
|
|
(lambda (x keys clauses r mr)
|
|
|
|
(if (null? clauses)
|
|
|
|
(build-application no-source
|
|
|
|
(build-primref no-source 'syntax-error)
|
|
|
|
(list (build-lexical-reference no-source x)))
|
|
|
|
(syntax-match (car clauses) ()
|
|
|
|
((pat expr)
|
|
|
|
(if (and (id? pat)
|
|
|
|
(not (bound-id-member? pat keys))
|
|
|
|
(not (ellipsis? pat)))
|
|
|
|
(if (free-id=? pat (scheme-stx '_))
|
|
|
|
(chi-expr expr r mr)
|
|
|
|
(let ((lab (gen-label pat))
|
|
|
|
(lex (gen-lexical pat)))
|
|
|
|
(let ((body
|
|
|
|
(chi-expr
|
|
|
|
(add-subst (make-full-rib (list pat) (list lab)) expr)
|
|
|
|
(cons (cons lab (make-binding 'syntax (cons lex 0))) r)
|
|
|
|
mr)))
|
|
|
|
(build-application no-source
|
|
|
|
(build-lambda no-source (list lex) body)
|
|
|
|
(list (build-lexical-reference no-source x))))))
|
|
|
|
(gen-clause x keys (cdr clauses) r mr pat #t expr)))
|
|
|
|
((pat fender expr)
|
|
|
|
(gen-clause x keys (cdr clauses) r mr pat fender expr))))))
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ expr (keys ...) clauses ...)
|
|
|
|
(begin
|
2007-12-19 19:05:23 -05:00
|
|
|
(unless (for-all (lambda (x) (and (id? x) (not (ellipsis? x)))) keys)
|
2007-10-09 08:54:28 -04:00
|
|
|
(stx-error e "invalid literals"))
|
|
|
|
(let ((x (gen-lexical 'tmp)))
|
|
|
|
(let ((body (gen-syntax-case x keys clauses r mr)))
|
|
|
|
(build-application no-source
|
|
|
|
(build-lambda no-source (list x) body)
|
|
|
|
(list (chi-expr expr r mr)))))))))))
|
2007-12-19 19:05:23 -05:00
|
|
|
|
2008-01-09 08:47:48 -05:00
|
|
|
(define (ellipsis-map proc ls . ls*)
|
|
|
|
(define who '...)
|
|
|
|
(unless (list? ls)
|
|
|
|
(assertion-violation who "not a list" ls))
|
|
|
|
(unless (null? ls*)
|
|
|
|
(let ([n (length ls)])
|
|
|
|
(for-each
|
|
|
|
(lambda (x)
|
|
|
|
(unless (list? x)
|
|
|
|
(assertion-violation who "not a list" x))
|
|
|
|
(unless (= (length x) n)
|
|
|
|
(assertion-violation who "length mismatch" ls x)))
|
|
|
|
ls*)))
|
|
|
|
(apply map proc ls ls*))
|
|
|
|
|
|
|
|
(define syntax-transformer
|
|
|
|
(let ()
|
|
|
|
(define gen-syntax
|
|
|
|
(lambda (src e r maps ellipsis? vec?)
|
|
|
|
(syntax-match e ()
|
|
|
|
(dots (ellipsis? dots)
|
|
|
|
(stx-error src "misplaced ellipsis in syntax form"))
|
|
|
|
(id (id? id)
|
|
|
|
(let* ((label (id->label e))
|
|
|
|
(b (label->binding label r)))
|
|
|
|
(if (eq? (binding-type b) 'syntax)
|
|
|
|
(let-values (((var maps)
|
|
|
|
(let ((var.lev (binding-value b)))
|
|
|
|
(gen-ref src (car var.lev) (cdr var.lev) maps))))
|
|
|
|
(values (list 'ref var) maps))
|
|
|
|
(values (list 'quote e) maps))))
|
|
|
|
((dots e) (ellipsis? dots)
|
|
|
|
(if vec?
|
|
|
|
(stx-error src "misplaced ellipsis in syntax form")
|
|
|
|
(gen-syntax src e r maps (lambda (x) #f) #f)))
|
|
|
|
((x dots . y) (ellipsis? dots)
|
|
|
|
(let f ((y y)
|
|
|
|
(k (lambda (maps)
|
|
|
|
(let-values (((x maps)
|
|
|
|
(gen-syntax src x r
|
|
|
|
(cons '() maps) ellipsis? #f)))
|
|
|
|
(if (null? (car maps))
|
|
|
|
(stx-error src
|
|
|
|
"extra ellipsis in syntax form")
|
|
|
|
(values (gen-map x (car maps)) (cdr maps)))))))
|
|
|
|
(syntax-match y ()
|
|
|
|
(() (k maps))
|
|
|
|
((dots . y) (ellipsis? dots)
|
|
|
|
(f y
|
|
|
|
(lambda (maps)
|
|
|
|
(let-values (((x maps) (k (cons '() maps))))
|
|
|
|
(if (null? (car maps))
|
|
|
|
(stx-error src "extra ellipsis in syntax form")
|
|
|
|
(values (gen-mappend x (car maps)) (cdr maps)))))))
|
|
|
|
(_
|
|
|
|
(let-values (((y maps)
|
|
|
|
(gen-syntax src y r maps ellipsis? vec?)))
|
|
|
|
(let-values (((x maps) (k maps)))
|
|
|
|
(values (gen-append x y) maps)))))))
|
|
|
|
((x . y)
|
|
|
|
(let-values (((xnew maps)
|
|
|
|
(gen-syntax src x r maps ellipsis? #f)))
|
|
|
|
(let-values (((ynew maps)
|
|
|
|
(gen-syntax src y r maps ellipsis? vec?)))
|
|
|
|
(values (gen-cons e x y xnew ynew) maps))))
|
|
|
|
(#(ls ...)
|
|
|
|
(let-values (((lsnew maps)
|
|
|
|
(gen-syntax src ls r maps ellipsis? #t)))
|
|
|
|
(values (gen-vector e ls lsnew) maps)))
|
|
|
|
(_ (values `(quote ,e) maps)))))
|
|
|
|
(define gen-ref
|
|
|
|
(lambda (src var level maps)
|
|
|
|
(if (= level 0)
|
|
|
|
(values var maps)
|
|
|
|
(if (null? maps)
|
|
|
|
(stx-error src "missing ellipsis in syntax form")
|
|
|
|
(let-values (((outer-var outer-maps)
|
|
|
|
(gen-ref src var (- level 1) (cdr maps))))
|
|
|
|
(cond
|
|
|
|
((assq outer-var (car maps)) =>
|
|
|
|
(lambda (b) (values (cdr b) maps)))
|
|
|
|
(else
|
|
|
|
(let ((inner-var (gen-lexical 'tmp)))
|
|
|
|
(values
|
|
|
|
inner-var
|
|
|
|
(cons
|
|
|
|
(cons (cons outer-var inner-var) (car maps))
|
|
|
|
outer-maps))))))))))
|
|
|
|
(define gen-append
|
|
|
|
(lambda (x y)
|
|
|
|
(if (equal? y '(quote ())) x `(append ,x ,y))))
|
|
|
|
(define gen-mappend
|
|
|
|
(lambda (e map-env)
|
|
|
|
`(apply (primitive append) ,(gen-map e map-env))))
|
|
|
|
(define gen-map
|
|
|
|
(lambda (e map-env)
|
|
|
|
(let ((formals (map cdr map-env))
|
|
|
|
(actuals (map (lambda (x) `(ref ,(car x))) map-env)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(cond
|
2008-01-09 08:47:48 -05:00
|
|
|
; identity map equivalence:
|
|
|
|
; (map (lambda (x) x) y) == y
|
|
|
|
((eq? (car e) 'ref)
|
|
|
|
(car actuals))
|
|
|
|
; eta map equivalence:
|
|
|
|
; (map (lambda (x ...) (f x ...)) y ...) == (map f y ...)
|
|
|
|
((for-all
|
|
|
|
(lambda (x) (and (eq? (car x) 'ref) (memq (cadr x) formals)))
|
|
|
|
(cdr e))
|
|
|
|
(let ((args (map (let ((r (map cons formals actuals)))
|
|
|
|
(lambda (x) (cdr (assq (cadr x) r))))
|
|
|
|
(cdr e))))
|
|
|
|
`(map (primitive ,(car e)) . ,args)))
|
|
|
|
(else (cons* 'map (list 'lambda formals e) actuals))))))
|
|
|
|
(define gen-cons
|
|
|
|
(lambda (e x y xnew ynew)
|
|
|
|
(case (car ynew)
|
|
|
|
((quote)
|
|
|
|
(if (eq? (car xnew) 'quote)
|
|
|
|
(let ((xnew (cadr xnew)) (ynew (cadr ynew)))
|
|
|
|
(if (and (eq? xnew x) (eq? ynew y))
|
|
|
|
`(quote ,e)
|
|
|
|
`(quote ,(cons xnew ynew))))
|
|
|
|
(if (null? (cadr ynew))
|
|
|
|
`(list ,xnew)
|
|
|
|
`(cons ,xnew ,ynew))))
|
|
|
|
((list) `(list ,xnew . ,(cdr ynew)))
|
|
|
|
(else `(cons ,xnew ,ynew)))))
|
|
|
|
(define gen-vector
|
|
|
|
(lambda (e ls lsnew)
|
|
|
|
(cond
|
|
|
|
((eq? (car lsnew) 'quote)
|
|
|
|
(if (eq? (cadr lsnew) ls)
|
|
|
|
`(quote ,e)
|
|
|
|
`(quote #(,@(cadr lsnew)))))
|
|
|
|
((eq? (car lsnew) 'list)
|
|
|
|
`(vector . ,(cdr lsnew)))
|
|
|
|
(else `(list->vector ,lsnew)))))
|
|
|
|
(define regen
|
|
|
|
(lambda (x)
|
|
|
|
(case (car x)
|
|
|
|
((ref) (build-lexical-reference no-source (cadr x)))
|
|
|
|
((primitive) (build-primref no-source (cadr x)))
|
|
|
|
((quote) (build-data no-source (cadr x)))
|
|
|
|
((lambda) (build-lambda no-source (cadr x) (regen (caddr x))))
|
|
|
|
((map)
|
|
|
|
(let ((ls (map regen (cdr x))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(build-application no-source
|
2008-01-09 08:47:48 -05:00
|
|
|
(build-primref no-source 'ellipsis-map)
|
|
|
|
ls)))
|
|
|
|
(else
|
|
|
|
(build-application no-source
|
|
|
|
(build-primref no-source (car x))
|
|
|
|
(map regen (cdr x)))))))
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ x)
|
|
|
|
(let-values (((e maps) (gen-syntax e x r '() ellipsis? #f)))
|
|
|
|
(regen e)))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define core-macro-transformer
|
|
|
|
(lambda (name)
|
|
|
|
(case name
|
2007-10-14 16:37:55 -04:00
|
|
|
((quote) quote-transformer)
|
|
|
|
((lambda) lambda-transformer)
|
|
|
|
((case-lambda) case-lambda-transformer)
|
|
|
|
((letrec) letrec-transformer)
|
|
|
|
((letrec*) letrec*-transformer)
|
|
|
|
((case) case-transformer)
|
|
|
|
((if) if-transformer)
|
|
|
|
((when) when-transformer)
|
|
|
|
((unless) unless-transformer)
|
|
|
|
((parameterize) parameterize-transformer)
|
|
|
|
((foreign-call) foreign-call-transformer)
|
|
|
|
((syntax-case) syntax-case-transformer)
|
|
|
|
((syntax) syntax-transformer)
|
|
|
|
((type-descriptor) type-descriptor-transformer)
|
|
|
|
((record-type-descriptor) record-type-descriptor-transformer)
|
|
|
|
((record-constructor-descriptor) record-constructor-descriptor-transformer)
|
2008-02-25 02:15:51 -05:00
|
|
|
((fluid-let-syntax) fluid-let-syntax-transformer)
|
2007-12-19 23:42:27 -05:00
|
|
|
(else (assertion-violation
|
|
|
|
'macro-transformer
|
|
|
|
"BUG: cannot find transformer"
|
|
|
|
name)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
2007-10-11 23:43:25 -04:00
|
|
|
(define file-options-macro
|
|
|
|
(lambda (x)
|
|
|
|
(syntax-match x ()
|
|
|
|
((_ opt* ...)
|
|
|
|
(and (for-all id? opt*) (file-options-spec (map id->sym opt*)))
|
|
|
|
(bless `(quote ,(file-options-spec (map id->sym opt*))))))))
|
|
|
|
|
2007-10-11 21:47:11 -04:00
|
|
|
(define symbol-macro
|
|
|
|
(lambda (x set)
|
|
|
|
(syntax-match x ()
|
|
|
|
((_ name)
|
|
|
|
(and (id? name) (memq (id->sym name) set))
|
|
|
|
(bless `(quote ,name))))))
|
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define macro-transformer
|
|
|
|
(lambda (x)
|
|
|
|
(cond
|
|
|
|
((procedure? x) x)
|
|
|
|
((symbol? x)
|
|
|
|
(case x
|
2007-10-27 11:40:40 -04:00
|
|
|
((define-record-type) define-record-type-macro)
|
|
|
|
((define-struct) define-struct-macro)
|
|
|
|
((include) include-macro)
|
|
|
|
((cond) cond-macro)
|
|
|
|
((let) let-macro)
|
|
|
|
((do) do-macro)
|
|
|
|
((or) or-macro)
|
|
|
|
((and) and-macro)
|
|
|
|
((let*) let*-macro)
|
2007-12-09 02:53:12 -05:00
|
|
|
((let-values) let-values-macro)
|
|
|
|
((let*-values) let*-values-macro)
|
2007-10-27 11:40:40 -04:00
|
|
|
((syntax-rules) syntax-rules-macro)
|
|
|
|
((quasiquote) quasiquote-macro)
|
|
|
|
((quasisyntax) quasisyntax-macro)
|
|
|
|
((with-syntax) with-syntax-macro)
|
|
|
|
((identifier-syntax) identifier-syntax-macro)
|
|
|
|
((time) time-macro)
|
|
|
|
((delay) delay-macro)
|
|
|
|
((assert) assert-macro)
|
|
|
|
((endianness) endianness-macro)
|
|
|
|
((guard) guard-macro)
|
|
|
|
((define-enumeration) define-enumeration-macro)
|
|
|
|
((trace-lambda) trace-lambda-macro)
|
|
|
|
((trace-define) trace-define-macro)
|
2007-12-11 17:41:48 -05:00
|
|
|
((trace-define-syntax) trace-define-syntax-macro)
|
2007-10-27 11:40:40 -04:00
|
|
|
((define-condition-type) define-condition-type-macro)
|
2007-12-05 03:26:56 -05:00
|
|
|
((include-into) include-into-macro)
|
2007-10-23 17:53:43 -04:00
|
|
|
((eol-style)
|
2007-10-11 21:47:11 -04:00
|
|
|
(lambda (x)
|
|
|
|
(symbol-macro x '(none lf cr crlf nel crnel ls))))
|
2007-10-11 21:51:15 -04:00
|
|
|
((error-handling-mode)
|
|
|
|
(lambda (x)
|
|
|
|
(symbol-macro x '(ignore raise replace))))
|
2007-10-11 23:21:55 -04:00
|
|
|
((buffer-mode)
|
|
|
|
(lambda (x)
|
|
|
|
(symbol-macro x '(none line block))))
|
2007-10-11 23:43:25 -04:00
|
|
|
((file-options) file-options-macro)
|
2007-10-09 08:54:28 -04:00
|
|
|
((... => _ else unquote unquote-splicing
|
2007-10-12 00:59:16 -04:00
|
|
|
unsyntax unsyntax-splicing
|
|
|
|
fields mutable immutable parent protocol
|
|
|
|
sealed opaque nongenerative parent-rtd)
|
2007-10-09 08:54:28 -04:00
|
|
|
incorrect-usage-macro)
|
2007-12-19 23:42:27 -05:00
|
|
|
(else
|
2008-01-04 20:53:59 -05:00
|
|
|
(error 'macro-transformer "BUG: invalid macro" x))))
|
2007-12-19 23:42:27 -05:00
|
|
|
(else
|
2008-01-04 20:53:59 -05:00
|
|
|
(error 'core-macro-transformer "BUG: invalid macro" x)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define (local-macro-transformer x)
|
|
|
|
(car x))
|
|
|
|
|
2008-01-04 20:53:59 -05:00
|
|
|
(define (do-macro-call transformer expr)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let ([out (transformer (add-mark anti-mark expr #f))])
|
2008-01-04 20:53:59 -05:00
|
|
|
(let f ([x out])
|
|
|
|
;;; don't feed me cycles.
|
|
|
|
(unless (stx? x)
|
|
|
|
(cond
|
|
|
|
[(pair? x) (f (car x)) (f (cdr x))]
|
|
|
|
[(vector? x) (vector-for-each f x)]
|
|
|
|
[(symbol? x)
|
|
|
|
(syntax-violation #f
|
|
|
|
"raw symbol encountered in output of macro"
|
|
|
|
expr x)])))
|
2008-02-14 04:01:09 -05:00
|
|
|
(add-mark (gen-mark) out expr)))
|
2008-01-04 20:53:59 -05:00
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
;;; chi procedures
|
|
|
|
(define chi-macro
|
2008-01-04 20:53:59 -05:00
|
|
|
(lambda (p e) (do-macro-call (macro-transformer p) e)))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define chi-local-macro
|
2008-01-04 20:53:59 -05:00
|
|
|
(lambda (p e) (do-macro-call (local-macro-transformer p) e)))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define (chi-global-macro p e)
|
|
|
|
;;; FIXME: does not handle macro!?
|
|
|
|
(let ((lib (car p))
|
|
|
|
(loc (cdr p)))
|
|
|
|
(visit-library lib)
|
|
|
|
(let ((x (symbol-value loc)))
|
|
|
|
(let ((transformer
|
|
|
|
(cond
|
|
|
|
((procedure? x) x)
|
2007-12-19 23:42:27 -05:00
|
|
|
(else (assertion-violation 'chi-global-macro
|
|
|
|
"BUG: not a procedure" x)))))
|
2008-01-04 20:53:59 -05:00
|
|
|
(do-macro-call transformer e)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define chi-expr*
|
|
|
|
(lambda (e* r mr)
|
|
|
|
;;; expand left to right
|
|
|
|
(cond
|
|
|
|
((null? e*) '())
|
|
|
|
(else
|
|
|
|
(let ((e (chi-expr (car e*) r mr)))
|
|
|
|
(cons e (chi-expr* (cdr e*) r mr)))))))
|
|
|
|
|
|
|
|
(define chi-application
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((rator rands ...)
|
|
|
|
(let ((rator (chi-expr rator r mr)))
|
|
|
|
(build-application no-source
|
|
|
|
rator
|
|
|
|
(chi-expr* rands r mr)))))))
|
|
|
|
|
|
|
|
(define chi-expr
|
|
|
|
(lambda (e r mr)
|
|
|
|
(let-values (((type value kwd) (syntax-type e r)))
|
|
|
|
(case type
|
|
|
|
((core-macro)
|
|
|
|
(let ((transformer (core-macro-transformer value)))
|
|
|
|
(transformer e r mr)))
|
|
|
|
((global)
|
|
|
|
(let* ((lib (car value))
|
|
|
|
(loc (cdr value)))
|
|
|
|
((inv-collector) lib)
|
|
|
|
(build-global-reference no-source loc)))
|
|
|
|
((core-prim)
|
|
|
|
(let ((name value))
|
|
|
|
(build-primref no-source name)))
|
|
|
|
((call) (chi-application e r mr))
|
|
|
|
((lexical)
|
2007-11-23 16:07:38 -05:00
|
|
|
(let ((lex (lexical-var value)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(build-lexical-reference no-source lex)))
|
|
|
|
((global-macro global-macro!)
|
|
|
|
(chi-expr (chi-global-macro value e) r mr))
|
|
|
|
((local-macro local-macro!) (chi-expr (chi-local-macro value e) r mr))
|
|
|
|
((macro macro!) (chi-expr (chi-macro value e) r mr))
|
|
|
|
((constant)
|
|
|
|
(let ((datum value))
|
|
|
|
(build-data no-source datum)))
|
|
|
|
((set!) (chi-set! e r mr))
|
|
|
|
((begin)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ x x* ...)
|
|
|
|
(build-sequence no-source
|
|
|
|
(chi-expr* (cons x x*) r mr)))))
|
|
|
|
((let-syntax letrec-syntax)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ ((xlhs* xrhs*) ...) xbody xbody* ...)
|
|
|
|
(unless (valid-bound-ids? xlhs*)
|
|
|
|
(stx-error e "invalid identifiers"))
|
|
|
|
(let* ((xlab* (map gen-label xlhs*))
|
|
|
|
(xrib (make-full-rib xlhs* xlab*))
|
|
|
|
(xb* (map (lambda (x)
|
|
|
|
(make-eval-transformer
|
|
|
|
(expand-transformer
|
2008-02-14 04:01:09 -05:00
|
|
|
(if (eq? type 'let-syntax)
|
|
|
|
x
|
|
|
|
(add-subst xrib x))
|
2007-10-09 08:54:28 -04:00
|
|
|
mr)))
|
|
|
|
xrhs*)))
|
|
|
|
(build-sequence no-source
|
|
|
|
(chi-expr*
|
|
|
|
(map (lambda (x) (add-subst xrib x)) (cons xbody xbody*))
|
|
|
|
(append (map cons xlab* xb*) r)
|
|
|
|
(append (map cons xlab* xb*) mr)))))))
|
|
|
|
((displaced-lexical)
|
|
|
|
(stx-error e "identifier out of context"))
|
|
|
|
((syntax) (stx-error e "reference to pattern variable outside a syntax form"))
|
2007-11-12 01:27:47 -05:00
|
|
|
((define define-syntax module import library)
|
2007-11-18 19:10:03 -05:00
|
|
|
(stx-error e
|
|
|
|
(string-append
|
|
|
|
(case type
|
|
|
|
((define) "a definition")
|
|
|
|
((define-syntax) "a define-syntax")
|
|
|
|
((module) "a module definition")
|
|
|
|
((library) "a library definition")
|
|
|
|
((import) "an import declaration")
|
|
|
|
(else "a non-expression"))
|
|
|
|
" was found where an expression was expected")))
|
2007-11-23 16:07:38 -05:00
|
|
|
((mutable)
|
|
|
|
(stx-error e
|
|
|
|
"attempt to reference an unexportable variable"))
|
2007-10-09 08:54:28 -04:00
|
|
|
(else
|
2007-12-15 08:22:49 -05:00
|
|
|
;(assertion-violation 'chi-expr "invalid type " type (strip e '()))
|
2007-10-09 08:54:28 -04:00
|
|
|
(stx-error e "invalid expression"))))))
|
|
|
|
|
|
|
|
(define chi-set!
|
|
|
|
(lambda (e r mr)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ x v) (id? x)
|
|
|
|
(let-values (((type value kwd) (syntax-type x r)))
|
|
|
|
(case type
|
|
|
|
((lexical)
|
2007-11-23 16:07:38 -05:00
|
|
|
(set-lexical-mutable! value #t)
|
2007-10-09 08:54:28 -04:00
|
|
|
(build-lexical-assignment no-source
|
2007-11-23 16:07:38 -05:00
|
|
|
(lexical-var value)
|
2007-10-09 08:54:28 -04:00
|
|
|
(chi-expr v r mr)))
|
2007-11-17 01:16:24 -05:00
|
|
|
((core-prim)
|
|
|
|
(stx-error e "cannot modify imported core primitive"))
|
|
|
|
((global)
|
|
|
|
(let ((loc (gen-global-var-binding x e)))
|
|
|
|
(let ((rhs (chi-expr v r mr)))
|
|
|
|
(build-global-assignment no-source loc rhs))))
|
2007-10-09 08:54:28 -04:00
|
|
|
((global-macro!)
|
|
|
|
(chi-expr (chi-global-macro value e) r mr))
|
|
|
|
((local-macro!)
|
|
|
|
(chi-expr (chi-local-macro value e) r mr))
|
2007-11-23 16:07:38 -05:00
|
|
|
((mutable)
|
|
|
|
(stx-error e
|
|
|
|
"attempt to assign to an unexportable variable"))
|
2007-10-09 08:54:28 -04:00
|
|
|
(else (stx-error e))))))))
|
|
|
|
|
2008-01-27 19:12:20 -05:00
|
|
|
(define (verify-formals fmls stx)
|
|
|
|
(syntax-match fmls ()
|
|
|
|
((x* ...)
|
|
|
|
(unless (valid-bound-ids? x*)
|
|
|
|
(invalid-fmls-error stx fmls)))
|
|
|
|
((x* ... . x)
|
|
|
|
(unless (valid-bound-ids? (cons x x*))
|
|
|
|
(invalid-fmls-error stx fmls)))
|
|
|
|
(_ (stx-error stx "invalid syntax"))))
|
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define chi-lambda-clause
|
2007-11-21 02:10:42 -05:00
|
|
|
(lambda (stx fmls body* r mr)
|
2007-10-09 08:54:28 -04:00
|
|
|
(syntax-match fmls ()
|
|
|
|
((x* ...)
|
2008-01-27 19:12:20 -05:00
|
|
|
(begin
|
|
|
|
(verify-formals fmls stx)
|
|
|
|
(let ((lex* (map gen-lexical x*))
|
|
|
|
(lab* (map gen-label x*)))
|
|
|
|
(values
|
|
|
|
lex*
|
|
|
|
(chi-internal
|
|
|
|
(add-subst (make-full-rib x* lab*) body*)
|
|
|
|
(add-lexicals lab* lex* r)
|
|
|
|
mr)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
((x* ... . x)
|
2008-01-27 19:12:20 -05:00
|
|
|
(begin
|
|
|
|
(verify-formals fmls stx)
|
|
|
|
(let ((lex* (map gen-lexical x*)) (lab* (map gen-label x*))
|
|
|
|
(lex (gen-lexical x)) (lab (gen-label x)))
|
|
|
|
(values
|
|
|
|
(append lex* lex)
|
|
|
|
(chi-internal
|
|
|
|
(add-subst
|
|
|
|
(make-full-rib (cons x x*) (cons lab lab*))
|
|
|
|
body*)
|
|
|
|
(add-lexicals (cons lab lab*) (cons lex lex*) r)
|
|
|
|
mr)))))
|
2007-11-21 02:10:42 -05:00
|
|
|
(_ (stx-error fmls "invalid syntax")))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define chi-lambda-clause*
|
2007-11-21 02:10:42 -05:00
|
|
|
(lambda (stx fmls* body** r mr)
|
2007-10-09 08:54:28 -04:00
|
|
|
(cond
|
|
|
|
((null? fmls*) (values '() '()))
|
|
|
|
(else
|
|
|
|
(let-values (((a b)
|
2007-11-21 02:10:42 -05:00
|
|
|
(chi-lambda-clause stx (car fmls*) (car body**) r mr)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(let-values (((a* b*)
|
2007-11-21 02:10:42 -05:00
|
|
|
(chi-lambda-clause* stx (cdr fmls*) (cdr body**) r mr)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(values (cons a a*) (cons b b*))))))))
|
|
|
|
|
|
|
|
(define chi-rhs
|
|
|
|
(lambda (rhs r mr)
|
|
|
|
(case (car rhs)
|
|
|
|
((defun)
|
|
|
|
(let ((x (cdr rhs)))
|
|
|
|
(let ((fmls (car x)) (body* (cdr x)))
|
|
|
|
(let-values (((fmls body)
|
2007-11-21 02:10:42 -05:00
|
|
|
(chi-lambda-clause fmls fmls body* r mr)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(build-lambda no-source fmls body)))))
|
|
|
|
((expr)
|
|
|
|
(let ((expr (cdr rhs)))
|
|
|
|
(chi-expr expr r mr)))
|
|
|
|
((top-expr)
|
|
|
|
(let ((expr (cdr rhs)))
|
|
|
|
(build-sequence no-source
|
|
|
|
(list (chi-expr expr r mr)
|
|
|
|
(build-void)))))
|
2007-12-19 23:42:27 -05:00
|
|
|
(else (assertion-violation 'chi-rhs "BUG: invalid rhs" rhs)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define chi-rhs*
|
|
|
|
(lambda (rhs* r mr)
|
|
|
|
(let f ((ls rhs*))
|
|
|
|
(cond ;;; chi-rhs in order
|
|
|
|
((null? ls) '())
|
|
|
|
(else
|
|
|
|
(let ((a (chi-rhs (car ls) r mr)))
|
|
|
|
(cons a (f (cdr ls)))))))))
|
|
|
|
|
|
|
|
(define find-bound=?
|
|
|
|
(lambda (x lhs* rhs*)
|
|
|
|
(cond
|
|
|
|
((null? lhs*) #f)
|
|
|
|
((bound-id=? x (car lhs*)) (car rhs*))
|
|
|
|
(else (find-bound=? x (cdr lhs*) (cdr rhs*))))))
|
|
|
|
|
|
|
|
(define (find-dups ls)
|
|
|
|
(let f ((ls ls) (dups '()))
|
|
|
|
(cond
|
|
|
|
((null? ls) dups)
|
|
|
|
((find-bound=? (car ls) (cdr ls) (cdr ls)) =>
|
|
|
|
(lambda (x) (f (cdr ls) (cons (list (car ls) x) dups))))
|
|
|
|
(else (f (cdr ls) dups)))))
|
|
|
|
|
|
|
|
(define chi-internal
|
|
|
|
(lambda (e* r mr)
|
|
|
|
(let ((rib (make-empty-rib)))
|
|
|
|
(let-values (((e* r mr lex* rhs* mod** kwd*)
|
|
|
|
(chi-body* (map (lambda (x) (add-subst rib x))
|
|
|
|
(syntax->list e*))
|
|
|
|
r mr '() '() '() '() rib #f)))
|
|
|
|
(when (null? e*)
|
|
|
|
(stx-error e* "no expression in body"))
|
2007-11-30 06:31:07 -05:00
|
|
|
(let* ((init*
|
|
|
|
(chi-expr* (append (apply append (reverse mod**)) e*) r mr))
|
|
|
|
(rhs* (chi-rhs* rhs* r mr)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(build-letrec* no-source
|
|
|
|
(reverse lex*) (reverse rhs*)
|
|
|
|
(build-sequence no-source init*)))))))
|
|
|
|
|
|
|
|
(define parse-module
|
|
|
|
(lambda (e)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ (export* ...) b* ...)
|
|
|
|
(begin
|
|
|
|
(unless (for-all id? export*)
|
|
|
|
(stx-error e "module exports must be identifiers"))
|
2007-12-13 06:41:44 -05:00
|
|
|
(values #f (list->vector export*) b*)))
|
2007-10-09 08:54:28 -04:00
|
|
|
((_ name (export* ...) b* ...)
|
|
|
|
(begin
|
|
|
|
(unless (id? name)
|
|
|
|
(stx-error e "module name must be an identifier"))
|
|
|
|
(unless (for-all id? export*)
|
|
|
|
(stx-error e "module exports must be identifiers"))
|
2007-12-13 06:41:44 -05:00
|
|
|
(values name (list->vector export*) b*))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
2008-04-19 17:55:30 -04:00
|
|
|
(define-record module-interface (first-mark exp-id-vec exp-lab-vec))
|
|
|
|
|
|
|
|
(define (module-interface-exp-id* iface id)
|
|
|
|
(define (diff-marks ls x)
|
|
|
|
(when (null? ls) (error 'diff-marks "BUG: should not happen"))
|
|
|
|
(let ([a (car ls)])
|
|
|
|
(if (eq? a x)
|
|
|
|
'()
|
|
|
|
(cons a (diff-marks (cdr ls) x)))))
|
|
|
|
(let ([diff
|
|
|
|
(diff-marks (stx-mark* id) (module-interface-first-mark iface))]
|
|
|
|
[id-vec (module-interface-exp-id-vec iface)])
|
|
|
|
(if (null? diff)
|
|
|
|
id-vec
|
|
|
|
(vector-map
|
|
|
|
(lambda (x)
|
|
|
|
(make-stx (stx-expr x) (append diff (stx-mark* x)) '() '()))
|
|
|
|
id-vec))))
|
|
|
|
|
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define chi-internal-module
|
|
|
|
(lambda (e r mr lex* rhs* mod** kwd*)
|
|
|
|
(let-values (((name exp-id* e*) (parse-module e)))
|
|
|
|
(let* ((rib (make-empty-rib))
|
|
|
|
(e* (map (lambda (x) (add-subst rib x)) (syntax->list e*))))
|
|
|
|
(let-values (((e* r mr lex* rhs* mod** kwd*)
|
|
|
|
(chi-body* e* r mr lex* rhs* mod** kwd* rib #f)))
|
|
|
|
(let ((exp-lab*
|
2007-12-13 06:41:44 -05:00
|
|
|
(vector-map
|
|
|
|
(lambda (x)
|
|
|
|
(or (id->label
|
|
|
|
(mkstx (id->sym x) (stx-mark* x)
|
2008-02-14 04:01:09 -05:00
|
|
|
(list rib)
|
|
|
|
'()))
|
2007-12-13 06:41:44 -05:00
|
|
|
(stx-error x "cannot find module export")))
|
|
|
|
exp-id*))
|
2007-10-09 08:54:28 -04:00
|
|
|
(mod** (cons e* mod**)))
|
|
|
|
(if (not name) ;;; explicit export
|
|
|
|
(values lex* rhs* exp-id* exp-lab* r mr mod** kwd*)
|
|
|
|
(let ((lab (gen-label 'module))
|
2008-04-19 17:55:30 -04:00
|
|
|
(iface
|
|
|
|
(make-module-interface
|
|
|
|
(car (stx-mark* name))
|
|
|
|
(vector-map
|
|
|
|
(lambda (x)
|
|
|
|
(make-stx (stx-expr x) (stx-mark* x) '() '()))
|
|
|
|
exp-id*)
|
|
|
|
exp-lab*)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(values lex* rhs*
|
2007-12-13 06:41:44 -05:00
|
|
|
(vector name) ;;; FIXME: module cannot
|
|
|
|
(vector lab) ;;; export itself yet
|
2007-10-09 08:54:28 -04:00
|
|
|
(cons (cons lab (cons '$module iface)) r)
|
|
|
|
(cons (cons lab (cons '$module iface)) mr)
|
|
|
|
mod** kwd*)))))))))
|
|
|
|
|
|
|
|
(define chi-body*
|
|
|
|
(lambda (e* r mr lex* rhs* mod** kwd* rib top?)
|
|
|
|
(cond
|
|
|
|
((null? e*) (values e* r mr lex* rhs* mod** kwd*))
|
|
|
|
(else
|
|
|
|
(let ((e (car e*)))
|
|
|
|
(let-values (((type value kwd) (syntax-type e r)))
|
|
|
|
(let ((kwd* (if (id? kwd) (cons kwd kwd*) kwd*)))
|
|
|
|
(case type
|
|
|
|
((define)
|
|
|
|
(let-values (((id rhs) (parse-define e)))
|
|
|
|
(when (bound-id-member? id kwd*)
|
|
|
|
(stx-error e "cannot redefine keyword"))
|
|
|
|
(let ((lex (gen-lexical id))
|
|
|
|
(lab (gen-label id)))
|
|
|
|
(extend-rib! rib id lab)
|
|
|
|
(chi-body* (cdr e*)
|
|
|
|
(add-lexical lab lex r) mr
|
|
|
|
(cons lex lex*) (cons rhs rhs*)
|
|
|
|
mod** kwd* rib top?))))
|
|
|
|
((define-syntax)
|
|
|
|
(let-values (((id rhs) (parse-define-syntax e)))
|
|
|
|
(when (bound-id-member? id kwd*)
|
|
|
|
(stx-error e "cannot redefine keyword"))
|
|
|
|
(let ((lab (gen-label id))
|
|
|
|
(expanded-rhs (expand-transformer rhs mr)))
|
|
|
|
(extend-rib! rib id lab)
|
|
|
|
(let ((b (make-eval-transformer expanded-rhs)))
|
|
|
|
(chi-body* (cdr e*)
|
|
|
|
(cons (cons lab b) r) (cons (cons lab b) mr)
|
|
|
|
lex* rhs* mod** kwd* rib top?)))))
|
|
|
|
((let-syntax letrec-syntax)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ ((xlhs* xrhs*) ...) xbody* ...)
|
|
|
|
(unless (valid-bound-ids? xlhs*)
|
|
|
|
(stx-error e "invalid identifiers"))
|
|
|
|
(let* ((xlab* (map gen-label xlhs*))
|
|
|
|
(xrib (make-full-rib xlhs* xlab*))
|
|
|
|
(xb* (map (lambda (x)
|
|
|
|
(make-eval-transformer
|
|
|
|
(expand-transformer
|
2008-02-14 04:01:09 -05:00
|
|
|
(if (eq? type 'let-syntax)
|
|
|
|
x
|
|
|
|
(add-subst xrib x))
|
2007-10-09 08:54:28 -04:00
|
|
|
mr)))
|
|
|
|
xrhs*)))
|
|
|
|
(chi-body*
|
|
|
|
(append (map (lambda (x) (add-subst xrib x)) xbody*) (cdr e*))
|
|
|
|
(append (map cons xlab* xb*) r)
|
|
|
|
(append (map cons xlab* xb*) mr)
|
|
|
|
lex* rhs* mod** kwd* rib top?)))))
|
|
|
|
((begin)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ x* ...)
|
|
|
|
(chi-body* (append x* (cdr e*))
|
|
|
|
r mr lex* rhs* mod** kwd* rib top?))))
|
|
|
|
((global-macro global-macro!)
|
|
|
|
(chi-body*
|
2008-02-14 04:01:09 -05:00
|
|
|
(cons (add-subst rib (chi-global-macro value e))
|
|
|
|
(cdr e*))
|
2007-10-09 08:54:28 -04:00
|
|
|
r mr lex* rhs* mod** kwd* rib top?))
|
|
|
|
((local-macro local-macro!)
|
|
|
|
(chi-body*
|
2008-02-14 04:01:09 -05:00
|
|
|
(cons (add-subst rib (chi-local-macro value e))
|
|
|
|
(cdr e*))
|
2007-10-09 08:54:28 -04:00
|
|
|
r mr lex* rhs* mod** kwd* rib top?))
|
|
|
|
((macro macro!)
|
|
|
|
(chi-body*
|
2008-02-14 04:01:09 -05:00
|
|
|
(cons (add-subst rib (chi-macro value e))
|
|
|
|
(cdr e*))
|
2007-10-09 08:54:28 -04:00
|
|
|
r mr lex* rhs* mod** kwd* rib top?))
|
|
|
|
((module)
|
|
|
|
(let-values (((lex* rhs* m-exp-id* m-exp-lab* r mr mod** kwd*)
|
|
|
|
(chi-internal-module e r mr lex* rhs* mod** kwd*)))
|
2007-12-13 06:41:44 -05:00
|
|
|
(vector-for-each
|
2007-10-09 08:54:28 -04:00
|
|
|
(lambda (id lab) (extend-rib! rib id lab))
|
|
|
|
m-exp-id* m-exp-lab*)
|
|
|
|
(chi-body* (cdr e*) r mr lex* rhs* mod** kwd* rib top?)))
|
2007-11-12 01:27:47 -05:00
|
|
|
((library)
|
2007-11-12 04:40:48 -05:00
|
|
|
(library-expander (stx->datum e))
|
2007-11-12 01:27:47 -05:00
|
|
|
(chi-body* (cdr e*) r mr lex* rhs* mod** kwd* rib top?))
|
2007-10-09 08:54:28 -04:00
|
|
|
((import)
|
|
|
|
(let ()
|
2007-11-12 04:40:48 -05:00
|
|
|
(define (module-import? e)
|
|
|
|
(syntax-match e ()
|
|
|
|
[(_ id) (id? id) #t]
|
|
|
|
[(_ imp* ...) #f]
|
|
|
|
[_ (stx-error e "malformed import form")]))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define (module-import e r)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ id) (id? id)
|
|
|
|
(let-values (((type value kwd) (syntax-type id r)))
|
|
|
|
(case type
|
|
|
|
(($module)
|
|
|
|
(let ((iface value))
|
2008-04-19 17:55:30 -04:00
|
|
|
(values
|
|
|
|
(module-interface-exp-id* iface id)
|
|
|
|
(module-interface-exp-lab-vec iface))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(else (stx-error e "invalid import")))))))
|
2007-11-12 04:40:48 -05:00
|
|
|
(define (library-import e)
|
|
|
|
(syntax-match e ()
|
|
|
|
[(ctxt imp* ...)
|
2007-12-13 05:57:15 -05:00
|
|
|
(let-values (((subst-names subst-labels)
|
|
|
|
(parse-import-spec*
|
2007-11-12 04:40:48 -05:00
|
|
|
(syntax->datum imp*))))
|
|
|
|
(values
|
2007-12-13 05:57:15 -05:00
|
|
|
(vector-map
|
|
|
|
(lambda (name)
|
|
|
|
(datum->stx ctxt name))
|
|
|
|
subst-names)
|
|
|
|
subst-labels))]
|
2007-11-12 05:01:25 -05:00
|
|
|
[_ (stx-error e "invalid import form")]))
|
2007-11-12 04:40:48 -05:00
|
|
|
(let-values (((id* lab*)
|
|
|
|
(if (module-import? e)
|
|
|
|
(module-import e r)
|
|
|
|
(library-import e))))
|
2007-12-13 05:57:15 -05:00
|
|
|
(vector-for-each
|
2007-10-09 08:54:28 -04:00
|
|
|
(lambda (id lab) (extend-rib! rib id lab))
|
|
|
|
id* lab*)))
|
|
|
|
(chi-body* (cdr e*) r mr lex* rhs* mod** kwd* rib top?))
|
|
|
|
(else
|
|
|
|
(if top?
|
|
|
|
(chi-body* (cdr e*) r mr
|
|
|
|
(cons (gen-lexical 'dummy) lex*)
|
|
|
|
(cons (cons 'top-expr e) rhs*)
|
|
|
|
mod** kwd* rib top?)
|
|
|
|
(values e* r mr lex* rhs* mod** kwd*)))))))))))
|
|
|
|
|
|
|
|
(define set-global-macro-binding!
|
2007-12-14 03:23:47 -05:00
|
|
|
(lambda (id loc b)
|
2007-12-17 11:37:10 -05:00
|
|
|
(define (extend-macro! id loc type transformer)
|
|
|
|
(let ([sym (id->sym id)]
|
|
|
|
[label (id->label id)])
|
|
|
|
(set-symbol-value! loc transformer)
|
|
|
|
(extend-library-subst! (interaction-library) sym label)
|
|
|
|
(extend-library-env! (interaction-library) label
|
|
|
|
(cons* type (interaction-library) loc))))
|
|
|
|
(case (binding-type b)
|
|
|
|
[(local-macro)
|
|
|
|
(extend-macro! id loc 'global-macro (cadr b))]
|
|
|
|
[(local-macro!)
|
|
|
|
(extend-macro! id loc 'global-macro! (cadr b))]
|
|
|
|
[($rtd)
|
|
|
|
(extend-macro! id loc 'global-rtd (cdr b))]
|
|
|
|
; (extend-library-subst! (interaction-library)
|
|
|
|
; (id->sym id) (id->label id))
|
|
|
|
; (extend-library-env! (interaction-library)
|
|
|
|
; (id->label id) b)]
|
|
|
|
[else
|
|
|
|
(assertion-violation 'set-global-macro-binding!
|
|
|
|
"BUG: invalid type" b)])))
|
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define gen-global-macro-binding
|
|
|
|
(lambda (id ctxt) (gen-global-var-binding id ctxt)))
|
|
|
|
|
|
|
|
(define gen-global-var-binding
|
|
|
|
(lambda (id ctxt)
|
|
|
|
(let ((label (id->label id)))
|
|
|
|
(let ((b (imported-label->binding label)))
|
|
|
|
(case (binding-type b)
|
2007-12-17 11:37:10 -05:00
|
|
|
((global global-macro global-macro! global-rtd)
|
2007-10-09 08:54:28 -04:00
|
|
|
(let ((x (binding-value b)))
|
|
|
|
(let ((lib (car x)) (loc (cdr x)))
|
|
|
|
(cond
|
|
|
|
((eq? lib (interaction-library))
|
|
|
|
loc)
|
|
|
|
(else
|
|
|
|
(stx-error ctxt "cannot modify imported binding"))))))
|
|
|
|
(else (stx-error ctxt "cannot modify binding in")))))))
|
|
|
|
|
|
|
|
(define chi-top*
|
|
|
|
(lambda (e* init*)
|
|
|
|
(cond
|
|
|
|
((null? e*) init*)
|
|
|
|
(else
|
|
|
|
(let ((e (car e*)))
|
|
|
|
(let-values (((type value kwd) (syntax-type e '())))
|
|
|
|
(case type
|
|
|
|
((define)
|
|
|
|
(let-values (((id rhs) (parse-define e)))
|
2007-12-14 03:23:47 -05:00
|
|
|
(extend-library-subst! (interaction-library)
|
|
|
|
(id->sym id) (id->label id))
|
2007-10-09 08:54:28 -04:00
|
|
|
(let ((loc (gen-global-var-binding id e)))
|
2007-12-14 03:23:47 -05:00
|
|
|
(extend-library-env! (interaction-library)
|
|
|
|
(id->label id)
|
|
|
|
(cons* 'global (interaction-library) loc))
|
2007-10-09 08:54:28 -04:00
|
|
|
(let ((rhs (chi-rhs rhs '() '())))
|
|
|
|
(chi-top* (cdr e*) (cons (cons loc rhs) init*))))))
|
|
|
|
((define-syntax)
|
|
|
|
(let-values (((id rhs) (parse-define-syntax e)))
|
|
|
|
(let ((loc (gen-global-macro-binding id e)))
|
|
|
|
(let ((expanded-rhs (expand-transformer rhs '())))
|
|
|
|
(let ((b (make-eval-transformer expanded-rhs)))
|
2007-12-14 03:23:47 -05:00
|
|
|
(set-global-macro-binding! id loc b)
|
2007-10-09 08:54:28 -04:00
|
|
|
(chi-top* (cdr e*) init*))))))
|
|
|
|
((let-syntax letrec-syntax)
|
2007-12-19 23:42:27 -05:00
|
|
|
(assertion-violation 'chi-top* "BUG: not supported yet at top level" type))
|
2007-10-09 08:54:28 -04:00
|
|
|
((begin)
|
|
|
|
(syntax-match e ()
|
|
|
|
((_ x* ...)
|
|
|
|
(chi-top* (append x* (cdr e*)) init*))))
|
|
|
|
((global-macro global-macro!)
|
|
|
|
(chi-top* (cons (chi-global-macro value e) (cdr e*)) init*))
|
|
|
|
((local-macro local-macro!)
|
|
|
|
(chi-top* (cons (chi-local-macro value e) (cdr e*)) init*))
|
|
|
|
((macro macro!)
|
|
|
|
(chi-top* (cons (chi-macro value e) (cdr e*)) init*))
|
2007-11-12 01:27:47 -05:00
|
|
|
((library)
|
2007-11-12 04:40:48 -05:00
|
|
|
(library-expander (stx->datum e))
|
2007-11-12 01:27:47 -05:00
|
|
|
(chi-top* (cdr e*) init*))
|
2007-11-12 04:40:48 -05:00
|
|
|
((import)
|
|
|
|
(begin
|
|
|
|
(syntax-match e ()
|
|
|
|
[(ctxt imp* ...)
|
2007-12-13 05:57:15 -05:00
|
|
|
(let-values (((subst-names subst-labels)
|
|
|
|
(parse-import-spec* (syntax->datum imp*))))
|
2007-11-12 04:40:48 -05:00
|
|
|
(cond
|
|
|
|
((interaction-library) =>
|
|
|
|
(lambda (lib)
|
2007-12-13 05:57:15 -05:00
|
|
|
(vector-for-each
|
|
|
|
(lambda (sym label)
|
|
|
|
(cond
|
|
|
|
((assq sym (library-subst lib)) =>
|
|
|
|
(lambda (p)
|
|
|
|
(unless (eq? (cdr p) label)
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax-violation 'import
|
2007-12-13 05:57:15 -05:00
|
|
|
"identifier conflict"
|
2007-12-19 23:42:27 -05:00
|
|
|
e sym))))
|
2007-12-13 05:57:15 -05:00
|
|
|
(else
|
|
|
|
(extend-library-subst! lib sym label))))
|
|
|
|
subst-names subst-labels)))
|
2007-12-15 08:22:49 -05:00
|
|
|
(else (assertion-violation 'import "BUG: cannot happen"))))])
|
2007-11-12 04:40:48 -05:00
|
|
|
(chi-top* (cdr e*) init*)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(else
|
|
|
|
(chi-top* (cdr e*)
|
|
|
|
(cons (cons #f (chi-expr e '() '()))
|
|
|
|
init*))))))))))
|
|
|
|
|
|
|
|
(define (expand-transformer expr r)
|
|
|
|
(let ((rtc (make-collector)))
|
|
|
|
(let ((expanded-rhs
|
|
|
|
(parameterize ((inv-collector rtc)
|
|
|
|
(vis-collector (lambda (x) (values))))
|
|
|
|
(chi-expr expr r r))))
|
|
|
|
(for-each
|
|
|
|
(let ((mark-visit (vis-collector)))
|
|
|
|
(lambda (x)
|
|
|
|
(invoke-library x)
|
|
|
|
(mark-visit x)))
|
|
|
|
(rtc))
|
|
|
|
expanded-rhs)))
|
|
|
|
|
|
|
|
(define (parse-exports exp*)
|
2008-04-28 14:01:49 -04:00
|
|
|
(define (idsyn? x) (symbol? (syntax->datum x)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(let f ((exp* exp*) (int* '()) (ext* '()))
|
|
|
|
(cond
|
|
|
|
((null? exp*)
|
2008-04-28 14:01:49 -04:00
|
|
|
(let ((id* (map (lambda (x) (make-stx x top-mark* '() '())) ext*)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(unless (valid-bound-ids? id*)
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax-violation 'export "invalid exports"
|
|
|
|
(find-dups id*))))
|
2007-12-19 19:05:23 -05:00
|
|
|
(values (map syntax->datum int*) (map syntax->datum ext*)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(else
|
|
|
|
(syntax-match (car exp*) ()
|
|
|
|
((rename (i* e*) ...)
|
|
|
|
(begin
|
2007-12-19 19:05:23 -05:00
|
|
|
(unless (and (eq? (syntax->datum rename) 'rename)
|
2008-04-28 14:01:49 -04:00
|
|
|
(for-all idsyn? i*)
|
|
|
|
(for-all idsyn? e*))
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax-violation 'export "invalid export specifier" (car exp*)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(f (cdr exp*) (append i* int*) (append e* ext*))))
|
|
|
|
(ie
|
|
|
|
(begin
|
2008-04-28 14:01:49 -04:00
|
|
|
(unless (idsyn? ie)
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax-violation 'export "invalid export" ie))
|
2007-10-09 08:54:28 -04:00
|
|
|
(f (cdr exp*) (cons ie int*) (cons ie ext*)))))))))
|
|
|
|
|
|
|
|
;;; given a library name, like (foo bar (1 2 3)),
|
|
|
|
;;; returns the identifiers and the version of the library
|
|
|
|
;;; as (foo bar) (1 2 3).
|
2007-10-26 00:55:00 -04:00
|
|
|
(define (parse-library-name spec)
|
2007-10-09 08:54:28 -04:00
|
|
|
(define (parse x)
|
|
|
|
(syntax-match x ()
|
2007-10-26 00:55:00 -04:00
|
|
|
[((v* ...))
|
2007-12-19 19:05:23 -05:00
|
|
|
(for-all
|
|
|
|
(lambda (x)
|
|
|
|
(let ([x (syntax->datum x)])
|
|
|
|
(and (integer? x) (exact? x))))
|
|
|
|
v*)
|
|
|
|
(values '() (map syntax->datum v*))]
|
2008-04-28 14:01:49 -04:00
|
|
|
[(x . rest) (symbol? (syntax->datum x))
|
2007-10-26 00:55:00 -04:00
|
|
|
(let-values ([(x* v*) (parse rest)])
|
2008-04-28 14:01:49 -04:00
|
|
|
(values (cons (syntax->datum x) x*) v*))]
|
2007-10-26 00:55:00 -04:00
|
|
|
[() (values '() '())]
|
|
|
|
[_ (stx-error spec "invalid library name")]))
|
|
|
|
(let-values (((name* ver*) (parse spec)))
|
|
|
|
(when (null? name*) (stx-error spec "empty library name"))
|
2007-10-09 08:54:28 -04:00
|
|
|
(values name* ver*)))
|
|
|
|
|
|
|
|
;;; given a library form, returns the name part, the export
|
|
|
|
;;; specs, import specs and the body of the library.
|
|
|
|
(define parse-library
|
|
|
|
(lambda (e)
|
|
|
|
(syntax-match e ()
|
|
|
|
((library (name* ...)
|
|
|
|
(export exp* ...)
|
|
|
|
(import imp* ...)
|
|
|
|
b* ...)
|
2007-12-19 19:05:23 -05:00
|
|
|
(and (eq? (syntax->datum export) 'export)
|
|
|
|
(eq? (syntax->datum import) 'import)
|
|
|
|
(eq? (syntax->datum library) 'library))
|
2007-10-09 08:54:28 -04:00
|
|
|
(values name* exp* imp* b*))
|
|
|
|
(_ (stx-error e "malformed library")))))
|
|
|
|
|
|
|
|
;;; given a list of import-specs, return a subst and the list of
|
|
|
|
;;; libraries that were imported.
|
|
|
|
;;; Example: given ((rename (only (foo) x z) (x y)) (only (bar) q))
|
|
|
|
;;; returns: ((z . z$label) (y . x$label) (q . q$label))
|
|
|
|
;;; and (#<library (foo)> #<library (bar)>)
|
2008-04-28 14:01:49 -04:00
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define (parse-import-spec* imp*)
|
2008-04-28 14:01:49 -04:00
|
|
|
(define (idsyn? x) (symbol? (syntax->datum x)))
|
2007-12-13 06:15:21 -05:00
|
|
|
(define (dup-error name)
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax-violation 'import "two imports with different bindings" name))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define (merge-substs s subst)
|
|
|
|
(define (insert-to-subst a subst)
|
|
|
|
(let ((name (car a)) (label (cdr a)))
|
|
|
|
(cond
|
|
|
|
((assq name subst) =>
|
|
|
|
(lambda (x)
|
|
|
|
(cond
|
|
|
|
((eq? (cdr x) label) subst)
|
2007-12-13 06:15:21 -05:00
|
|
|
(else (dup-error name)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(else
|
|
|
|
(cons a subst)))))
|
|
|
|
(cond
|
|
|
|
((null? s) subst)
|
|
|
|
(else
|
|
|
|
(insert-to-subst (car s)
|
|
|
|
(merge-substs (cdr s) subst)))))
|
|
|
|
(define (exclude* sym* subst)
|
|
|
|
(define (exclude sym subst)
|
|
|
|
(cond
|
|
|
|
((null? subst)
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax-violation 'import "cannot rename unbound identifier" sym))
|
2007-10-09 08:54:28 -04:00
|
|
|
((eq? sym (caar subst))
|
|
|
|
(values (cdar subst) (cdr subst)))
|
|
|
|
(else
|
|
|
|
(let ((a (car subst)))
|
|
|
|
(let-values (((old subst) (exclude sym (cdr subst))))
|
|
|
|
(values old (cons a subst)))))))
|
|
|
|
(cond
|
|
|
|
((null? sym*) (values '() subst))
|
|
|
|
(else
|
|
|
|
(let-values (((old subst) (exclude (car sym*) subst)))
|
|
|
|
(let-values (((old* subst) (exclude* (cdr sym*) subst)))
|
|
|
|
(values (cons old old*) subst))))))
|
|
|
|
(define (find* sym* subst)
|
|
|
|
(map (lambda (x)
|
|
|
|
(cond
|
|
|
|
((assq x subst) => cdr)
|
2007-12-19 23:42:27 -05:00
|
|
|
(else (syntax-violation 'import "cannot find identifier" x))))
|
2007-10-09 08:54:28 -04:00
|
|
|
sym*))
|
|
|
|
(define (rem* sym* subst)
|
|
|
|
(let f ((subst subst))
|
|
|
|
(cond
|
|
|
|
((null? subst) '())
|
|
|
|
((memq (caar subst) sym*) (f (cdr subst)))
|
|
|
|
(else (cons (car subst) (f (cdr subst)))))))
|
|
|
|
(define (remove-dups ls)
|
|
|
|
(cond
|
|
|
|
((null? ls) '())
|
|
|
|
((memq (car ls) (cdr ls)) (remove-dups (cdr ls)))
|
|
|
|
(else (cons (car ls) (remove-dups (cdr ls))))))
|
2007-10-26 12:41:55 -04:00
|
|
|
(define (parse-library-name spec)
|
|
|
|
(define (subversion? x)
|
|
|
|
(and (integer? x) (exact? x) (>= x 0)))
|
|
|
|
(define (subversion-pred x*)
|
|
|
|
(syntax-match x* ()
|
2007-12-19 19:05:23 -05:00
|
|
|
[n (subversion? (syntax->datum n))
|
|
|
|
(lambda (x) (= x (syntax->datum n)))]
|
|
|
|
[(p? sub* ...) (eq? (syntax->datum p?) 'and)
|
2007-10-26 12:41:55 -04:00
|
|
|
(let ([p* (map subversion-pred sub*)])
|
|
|
|
(lambda (x)
|
|
|
|
(for-all (lambda (p) (p x)) p*)))]
|
2007-12-19 19:05:23 -05:00
|
|
|
[(p? sub* ...) (eq? (syntax->datum p?) 'or)
|
2007-10-26 12:41:55 -04:00
|
|
|
(let ([p* (map subversion-pred sub*)])
|
|
|
|
(lambda (x)
|
|
|
|
(exists (lambda (p) (p x)) p*)))]
|
2007-12-19 19:05:23 -05:00
|
|
|
[(p? sub) (eq? (syntax->datum p?) 'not)
|
2007-10-26 12:41:55 -04:00
|
|
|
(let ([p (subversion-pred sub)])
|
|
|
|
(lambda (x)
|
|
|
|
(not (p x))))]
|
2007-12-19 19:05:23 -05:00
|
|
|
[(p? n)
|
|
|
|
(and (eq? (syntax->datum p?) '<=) (subversion? (syntax->datum n)))
|
|
|
|
(lambda (x) (<= x (syntax->datum n)))]
|
|
|
|
[(p? n) (and (eq? (syntax->datum p?) '>=) (subversion? n))
|
|
|
|
(lambda (x) (>= x (syntax->datum n)))]
|
2007-12-19 23:42:27 -05:00
|
|
|
[_ (syntax-violation 'import "invalid sub-version spec" spec x*)]))
|
2007-10-26 12:41:55 -04:00
|
|
|
(define (version-pred x*)
|
|
|
|
(syntax-match x* ()
|
|
|
|
[() (lambda (x) #t)]
|
2007-12-19 19:05:23 -05:00
|
|
|
[(c ver* ...) (eq? (syntax->datum c) 'and)
|
2007-10-26 12:41:55 -04:00
|
|
|
(let ([p* (map version-pred ver*)])
|
|
|
|
(lambda (x)
|
|
|
|
(for-all (lambda (p) (p x)) p*)))]
|
2007-12-19 19:05:23 -05:00
|
|
|
[(c ver* ...) (eq? (syntax->datum c) 'or)
|
2007-10-26 12:41:55 -04:00
|
|
|
(let ([p* (map version-pred ver*)])
|
|
|
|
(lambda (x)
|
|
|
|
(exists (lambda (p) (p x)) p*)))]
|
2007-12-19 19:05:23 -05:00
|
|
|
[(c ver) (eq? (syntax->datum c) 'not)
|
2007-10-26 12:41:55 -04:00
|
|
|
(let ([p (version-pred ver)])
|
|
|
|
(lambda (x) (not (p x))))]
|
|
|
|
[(sub* ...)
|
|
|
|
(let ([p* (map subversion-pred sub*)])
|
|
|
|
(lambda (x)
|
|
|
|
(let f ([p* p*] [x x])
|
|
|
|
(cond
|
|
|
|
[(null? p*) #t]
|
|
|
|
[(null? x) #f]
|
|
|
|
[else
|
|
|
|
(and ((car p*) (car x))
|
|
|
|
(f (cdr p*) (cdr x*)))]))))]
|
2007-12-19 23:42:27 -05:00
|
|
|
[_ (syntax-violation 'import "invalid version spec" spec x*)]))
|
2007-10-26 12:41:55 -04:00
|
|
|
(let f ([x spec])
|
|
|
|
(syntax-match x ()
|
|
|
|
[((version-spec* ...))
|
|
|
|
(values '() (version-pred version-spec*))]
|
2008-04-28 14:01:49 -04:00
|
|
|
[(x . x*) (idsyn? x)
|
2007-10-26 12:41:55 -04:00
|
|
|
(let-values ([(name pred) (f x*)])
|
2008-04-28 14:01:49 -04:00
|
|
|
(values (cons (syntax->datum x) name) pred))]
|
2007-10-26 12:41:55 -04:00
|
|
|
[() (values '() (lambda (x) #t))]
|
|
|
|
[_ (stx-error spec "invalid import spec")])))
|
2008-03-15 21:00:16 -04:00
|
|
|
(define (import-library spec*)
|
|
|
|
(let-values ([(name pred) (parse-library-name spec*)])
|
|
|
|
(when (null? name)
|
|
|
|
(syntax-violation 'import "empty library name" spec*))
|
|
|
|
(let ((lib (find-library-by-name name)))
|
|
|
|
(unless lib
|
|
|
|
(syntax-violation 'import
|
|
|
|
"cannot find library with required name"
|
|
|
|
name))
|
|
|
|
(unless (pred (library-version lib))
|
|
|
|
(syntax-violation 'import
|
|
|
|
"library does not satisfy version specification"
|
|
|
|
spec* lib))
|
|
|
|
((imp-collector) lib)
|
|
|
|
(library-subst lib))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(define (get-import spec)
|
|
|
|
(syntax-match spec ()
|
2008-03-15 21:00:16 -04:00
|
|
|
((x x* ...)
|
|
|
|
(not (memq (syntax->datum x) '(for rename except only prefix library)))
|
|
|
|
(import-library (cons x x*)))
|
|
|
|
((rename isp (old* new*) ...)
|
2007-12-19 19:05:23 -05:00
|
|
|
(and (eq? (syntax->datum rename) 'rename)
|
2008-04-28 14:01:49 -04:00
|
|
|
(for-all idsyn? old*)
|
|
|
|
(for-all idsyn? new*))
|
2007-12-19 19:05:23 -05:00
|
|
|
(let ((subst (get-import isp))
|
2008-04-28 14:01:49 -04:00
|
|
|
[old* (map syntax->datum old*)]
|
|
|
|
[new* (map syntax->datum new*)])
|
2007-12-13 06:15:21 -05:00
|
|
|
;;; rewrite this to eliminate find* and rem* and merge
|
2007-10-09 08:54:28 -04:00
|
|
|
(let ((old-label* (find* old* subst)))
|
|
|
|
(let ((subst (rem* old* subst)))
|
|
|
|
;;; FIXME: make sure map is valid
|
|
|
|
(merge-substs (map cons new* old-label*) subst)))))
|
|
|
|
((except isp sym* ...)
|
2008-04-28 14:01:49 -04:00
|
|
|
(and (eq? (syntax->datum except) 'except) (for-all idsyn? sym*))
|
2007-10-09 08:54:28 -04:00
|
|
|
(let ((subst (get-import isp)))
|
2008-04-28 14:01:49 -04:00
|
|
|
(rem* (map syntax->datum sym*) subst)))
|
2007-10-09 08:54:28 -04:00
|
|
|
((only isp sym* ...)
|
2008-04-28 14:01:49 -04:00
|
|
|
(and (eq? (syntax->datum only) 'only) (for-all idsyn? sym*))
|
2007-12-19 19:05:23 -05:00
|
|
|
(let ((subst (get-import isp))
|
2008-04-28 14:01:49 -04:00
|
|
|
[sym* (map syntax->datum sym*)])
|
2007-10-09 08:54:28 -04:00
|
|
|
(let ((sym* (remove-dups sym*)))
|
|
|
|
(let ((lab* (find* sym* subst)))
|
|
|
|
(map cons sym* lab*)))))
|
|
|
|
((prefix isp p)
|
2008-04-28 14:01:49 -04:00
|
|
|
(and (eq? (syntax->datum prefix) 'prefix) (idsyn? p))
|
2007-12-19 19:05:23 -05:00
|
|
|
(let ((subst (get-import isp))
|
2008-04-28 14:01:49 -04:00
|
|
|
(prefix (symbol->string (syntax->datum p))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(map
|
|
|
|
(lambda (x)
|
|
|
|
(cons
|
|
|
|
(string->symbol
|
2007-12-19 19:05:23 -05:00
|
|
|
(string-append prefix
|
2007-10-09 08:54:28 -04:00
|
|
|
(symbol->string (car x))))
|
|
|
|
(cdr x)))
|
|
|
|
subst)))
|
2007-12-19 19:05:23 -05:00
|
|
|
((library (spec* ...)) (eq? (syntax->datum library) 'library)
|
2008-03-15 21:00:16 -04:00
|
|
|
(import-library spec*))
|
|
|
|
((for isp . rest)
|
|
|
|
(eq? (syntax->datum for) 'for)
|
|
|
|
(get-import isp))
|
2007-12-19 23:42:27 -05:00
|
|
|
(spec (syntax-violation 'import "invalid import spec" spec))))
|
2007-12-13 06:15:21 -05:00
|
|
|
(define (add-imports! imp h)
|
|
|
|
(let ([subst (get-import imp)])
|
|
|
|
(for-each
|
|
|
|
(lambda (x)
|
|
|
|
(let ([name (car x)] [label (cdr x)])
|
|
|
|
(cond
|
|
|
|
[(hashtable-ref h name #f) =>
|
|
|
|
(lambda (l)
|
|
|
|
(unless (eq? l label)
|
|
|
|
(dup-error name)))]
|
|
|
|
[else
|
|
|
|
(hashtable-set! h name label)])))
|
|
|
|
subst)))
|
|
|
|
(let f ((imp* imp*) (h (make-eq-hashtable)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(cond
|
2007-12-13 05:57:15 -05:00
|
|
|
((null? imp*)
|
2007-12-13 06:15:21 -05:00
|
|
|
(hashtable-entries h))
|
2007-10-09 08:54:28 -04:00
|
|
|
(else
|
2007-12-13 06:15:21 -05:00
|
|
|
(add-imports! (car imp*) h)
|
|
|
|
(f (cdr imp*) h)))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; a top rib is constructed as follows:
|
|
|
|
;;; given a subst: name* -> label*,
|
|
|
|
;;; generate a rib containing:
|
|
|
|
;;; - name* as the rib-sym*,
|
|
|
|
;;; - a list of top-mark* as the rib-mark**
|
|
|
|
;;; - label* as the rib-label*
|
|
|
|
;;; so, a name in a top rib maps to its label if and only if
|
|
|
|
;;; its set of marks is top-mark*.
|
2007-12-13 05:57:15 -05:00
|
|
|
(define (make-top-rib names labels)
|
2007-10-09 08:54:28 -04:00
|
|
|
(let ((rib (make-empty-rib)))
|
2007-12-13 05:57:15 -05:00
|
|
|
(vector-for-each
|
|
|
|
(lambda (name label)
|
2008-04-28 14:01:49 -04:00
|
|
|
(unless (symbol? name)
|
|
|
|
(error 'make-top-rib "BUG: not a symbol" name))
|
|
|
|
(extend-rib! rib (make-stx name top-mark* '() '()) label))
|
2007-12-13 05:57:15 -05:00
|
|
|
names labels)
|
2007-10-09 08:54:28 -04:00
|
|
|
rib))
|
|
|
|
|
|
|
|
(define (make-collector)
|
|
|
|
(let ((ls '()))
|
|
|
|
(case-lambda
|
|
|
|
(() ls)
|
|
|
|
((x) (set! ls (set-cons x ls))))))
|
|
|
|
|
|
|
|
(define inv-collector
|
|
|
|
(make-parameter
|
|
|
|
(lambda args
|
2007-12-19 23:42:27 -05:00
|
|
|
(assertion-violation 'inv-collector "BUG: not initialized"))
|
2007-10-09 08:54:28 -04:00
|
|
|
(lambda (x)
|
|
|
|
(unless (procedure? x)
|
2007-12-19 23:42:27 -05:00
|
|
|
(assertion-violation 'inv-collector "BUG: not a procedure" x))
|
2007-10-09 08:54:28 -04:00
|
|
|
x)))
|
|
|
|
|
|
|
|
(define vis-collector
|
|
|
|
(make-parameter
|
|
|
|
(lambda args
|
2007-12-19 23:42:27 -05:00
|
|
|
(assertion-violation 'vis-collector "BUG: not initialized"))
|
2007-10-09 08:54:28 -04:00
|
|
|
(lambda (x)
|
|
|
|
(unless (procedure? x)
|
2007-12-19 23:42:27 -05:00
|
|
|
(assertion-violation 'vis-collector "BUG: not a procedure" x))
|
2007-10-09 08:54:28 -04:00
|
|
|
x)))
|
|
|
|
|
2007-11-12 04:40:48 -05:00
|
|
|
(define imp-collector
|
|
|
|
(make-parameter
|
|
|
|
(lambda args
|
2007-12-19 23:42:27 -05:00
|
|
|
(assertion-violation 'imp-collector "BUG: not initialized"))
|
2007-11-12 04:40:48 -05:00
|
|
|
(lambda (x)
|
|
|
|
(unless (procedure? x)
|
2007-12-19 23:42:27 -05:00
|
|
|
(assertion-violation 'imp-collector "BUG: not a procedure" x))
|
2007-11-12 04:40:48 -05:00
|
|
|
x)))
|
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define chi-library-internal
|
|
|
|
(lambda (e* rib top?)
|
|
|
|
(let-values (((e* r mr lex* rhs* mod** _kwd*)
|
|
|
|
(chi-body* e* '() '() '() '() '() '() rib top?)))
|
|
|
|
(values (append (apply append (reverse mod**)) e*)
|
|
|
|
r mr (reverse lex*) (reverse rhs*)))))
|
|
|
|
|
2007-11-30 06:31:07 -05:00
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define library-body-expander
|
2007-11-01 20:00:02 -04:00
|
|
|
(lambda (exp* imp* b* top?)
|
2007-11-12 04:40:48 -05:00
|
|
|
(define itc (make-collector))
|
|
|
|
(parameterize ((imp-collector itc))
|
|
|
|
(let-values (((exp-int* exp-ext*) (parse-exports exp*)))
|
2007-12-13 05:57:15 -05:00
|
|
|
(let-values (((subst-names subst-labels)
|
|
|
|
(parse-import-spec* imp*)))
|
|
|
|
(let ((rib (make-top-rib subst-names subst-labels)))
|
2008-02-14 04:01:09 -05:00
|
|
|
(let ((b* (map (lambda (x)
|
|
|
|
(mkstx x top-mark* (list rib) '()))
|
|
|
|
b*))
|
2007-11-12 04:40:48 -05:00
|
|
|
(rtc (make-collector))
|
|
|
|
(vtc (make-collector)))
|
|
|
|
(parameterize ((inv-collector rtc)
|
|
|
|
(vis-collector vtc))
|
|
|
|
(let-values (((init* r mr lex* rhs*)
|
|
|
|
(chi-library-internal b* rib top?)))
|
|
|
|
(seal-rib! rib)
|
2007-11-30 06:31:07 -05:00
|
|
|
(let* ((init* (chi-expr* init* r mr))
|
|
|
|
(rhs* (chi-rhs* rhs* r mr)))
|
2007-11-12 04:40:48 -05:00
|
|
|
(unseal-rib! rib)
|
2007-11-30 06:31:07 -05:00
|
|
|
(let ((loc* (map gen-global lex*))
|
|
|
|
(export-subst (make-export-subst exp-int* exp-ext* rib)))
|
2007-11-23 16:07:38 -05:00
|
|
|
(define errstr
|
|
|
|
"attempt to export mutated variable")
|
2007-11-12 04:40:48 -05:00
|
|
|
(let-values (((export-env global* macro*)
|
2007-11-17 09:53:22 -05:00
|
|
|
(make-export-env/macros lex* loc* r)))
|
2007-11-23 16:07:38 -05:00
|
|
|
(for-each
|
|
|
|
(lambda (s)
|
|
|
|
(let ([name (car s)] [label (cdr s)])
|
|
|
|
(let ([p (assq label export-env)])
|
|
|
|
(when p
|
|
|
|
(let ([b (cdr p)])
|
|
|
|
(let ([type (car b)])
|
|
|
|
(when (eq? type 'mutable)
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax-violation 'export
|
|
|
|
errstr name))))))))
|
2007-11-23 16:07:38 -05:00
|
|
|
export-subst)
|
2007-11-12 04:40:48 -05:00
|
|
|
(let ((invoke-body
|
2007-11-17 09:53:22 -05:00
|
|
|
(build-library-letrec* no-source
|
|
|
|
lex* loc* rhs*
|
|
|
|
(if (null? init*)
|
|
|
|
(build-void)
|
|
|
|
(build-sequence no-source init*))))
|
|
|
|
;(invoke-body
|
|
|
|
; (build-letrec* no-source lex* rhs*
|
|
|
|
; (build-exports global* init*)))
|
2007-11-12 04:40:48 -05:00
|
|
|
(invoke-definitions
|
2007-11-23 16:07:38 -05:00
|
|
|
(map build-global-define (map cdr global*))))
|
2007-11-12 04:40:48 -05:00
|
|
|
(values
|
|
|
|
(itc) (rtc) (vtc)
|
|
|
|
(build-sequence no-source
|
|
|
|
(append invoke-definitions
|
|
|
|
(list invoke-body)))
|
|
|
|
macro* export-subst export-env))))))))))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define core-library-expander
|
|
|
|
(lambda (e)
|
2007-11-14 13:54:54 -05:00
|
|
|
(parameterize ([interaction-library #f])
|
|
|
|
(let-values (((name* exp* imp* b*) (parse-library e)))
|
|
|
|
(let-values (((name ver) (parse-library-name name*)))
|
|
|
|
(let-values (((imp* invoke-req* visit-req* invoke-code
|
|
|
|
visit-code export-subst export-env)
|
|
|
|
(library-body-expander exp* imp* b* #f)))
|
|
|
|
(values name ver imp* invoke-req* visit-req*
|
|
|
|
invoke-code visit-code export-subst
|
|
|
|
export-env)))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define (parse-top-level-program e*)
|
|
|
|
(syntax-match e* ()
|
2007-12-19 19:05:23 -05:00
|
|
|
(((import imp* ...) b* ...)
|
|
|
|
(eq? (syntax->datum import) 'import)
|
2007-10-09 08:54:28 -04:00
|
|
|
(values imp* b*))
|
2007-12-19 19:05:23 -05:00
|
|
|
(((import . x) . y)
|
|
|
|
(eq? (syntax->datum import) 'import)
|
2007-12-19 23:42:27 -05:00
|
|
|
(syntax-violation 'expander
|
|
|
|
"invalid syntax of top-level program" (syntax-car e*)))
|
2007-11-06 01:14:27 -05:00
|
|
|
(_
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'expander
|
2007-11-06 01:14:27 -05:00
|
|
|
"top-level program is missing an (import ---) clause"))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define top-level-expander
|
|
|
|
(lambda (e*)
|
|
|
|
(let-values (((imp* b*) (parse-top-level-program e*)))
|
|
|
|
(let-values (((imp* invoke-req* visit-req* invoke-code
|
|
|
|
visit-code export-subst export-env)
|
2007-11-01 20:00:02 -04:00
|
|
|
(library-body-expander '() imp* b* #t)))
|
2007-10-09 08:54:28 -04:00
|
|
|
(values invoke-req* invoke-code)))))
|
|
|
|
|
|
|
|
;;; An env record encapsulates a substitution and a set of
|
|
|
|
;;; libraries.
|
2007-12-13 05:57:15 -05:00
|
|
|
(define-record env (names labels itc)
|
2007-10-09 08:54:28 -04:00
|
|
|
(lambda (x p)
|
|
|
|
(unless (env? x)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'record-type-printer "not an environment"))
|
2007-10-09 08:54:28 -04:00
|
|
|
(display "#<environment>" p)))
|
|
|
|
|
|
|
|
(define environment?
|
|
|
|
(lambda (x) (env? x)))
|
|
|
|
|
|
|
|
;;; This is R6RS's environment. It parses the import specs
|
|
|
|
;;; and constructs an env record that can be used later by
|
|
|
|
;;; eval and/or expand.
|
|
|
|
(define environment
|
|
|
|
(lambda imp*
|
2007-11-12 04:40:48 -05:00
|
|
|
(let ([itc (make-collector)])
|
|
|
|
(parameterize ([imp-collector itc])
|
2007-12-13 05:57:15 -05:00
|
|
|
(let-values (((subst-names subst-labels)
|
|
|
|
(parse-import-spec* imp*)))
|
|
|
|
(make-env subst-names subst-labels itc))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; R6RS's null-environment and scheme-report-environment are
|
|
|
|
;;; constructed simply using the corresponding libraries.
|
|
|
|
(define (null-environment n)
|
|
|
|
(unless (eqv? n 5)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'null-environment "not 5" n))
|
2007-10-09 08:54:28 -04:00
|
|
|
(environment '(psyntax null-environment-5)))
|
|
|
|
(define (scheme-report-environment n)
|
|
|
|
(unless (eqv? n 5)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'scheme-report-environment "not 5" n))
|
2007-10-09 08:54:28 -04:00
|
|
|
(environment '(psyntax scheme-report-environment-5)))
|
|
|
|
|
|
|
|
;;; The expand procedure is the interface to the internal expression
|
|
|
|
;;; expander (chi-expr). It takes an expression and an environment.
|
|
|
|
;;; It returns two values: The resulting core-expression and a list of
|
|
|
|
;;; libraries that must be invoked before evaluating the core expr.
|
|
|
|
(define expand
|
|
|
|
(lambda (x env)
|
|
|
|
(unless (env? env)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'expand "not an environment" env))
|
2007-12-13 05:57:15 -05:00
|
|
|
(let ((rib (make-top-rib (env-names env) (env-labels env))))
|
2008-02-14 04:01:09 -05:00
|
|
|
(let ((x (mkstx x top-mark* (list rib) '()))
|
2007-12-13 05:57:15 -05:00
|
|
|
(itc (env-itc env))
|
|
|
|
(rtc (make-collector))
|
|
|
|
(vtc (make-collector)))
|
|
|
|
(let ((x
|
|
|
|
(parameterize ((inv-collector rtc)
|
|
|
|
(vis-collector vtc)
|
|
|
|
(imp-collector itc))
|
|
|
|
(chi-expr x '() '()))))
|
|
|
|
(seal-rib! rib)
|
|
|
|
(values x (rtc)))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; This is R6RS's eval. It takes an expression and an environment,
|
|
|
|
;;; expands the expression, invokes its invoke-required libraries and
|
|
|
|
;;; evaluates its expanded core form.
|
|
|
|
(define eval
|
|
|
|
(lambda (x env)
|
|
|
|
(unless (env? env)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'eval "not an environment" env))
|
2007-10-09 08:54:28 -04:00
|
|
|
(let-values (((x invoke-req*) (expand x env)))
|
|
|
|
(for-each invoke-library invoke-req*)
|
|
|
|
(eval-core (expanded->core x)))))
|
|
|
|
|
|
|
|
;;; Given a (library . _) s-expression, library-expander expands
|
|
|
|
;;; it to core-form, registers it with the library manager, and
|
|
|
|
;;; returns its invoke-code, visit-code, subst and env.
|
2008-02-18 20:39:42 -05:00
|
|
|
(define library-expander
|
|
|
|
(case-lambda
|
|
|
|
[(x filename)
|
|
|
|
(define (build-visit-code macro*)
|
|
|
|
(if (null? macro*)
|
|
|
|
(build-void)
|
|
|
|
(build-sequence no-source
|
|
|
|
(map (lambda (x)
|
|
|
|
(let ((loc (car x)) (src (cddr x)))
|
|
|
|
(build-global-assignment no-source loc src)))
|
|
|
|
macro*))))
|
|
|
|
(define (visit! macro*)
|
|
|
|
(for-each (lambda (x)
|
|
|
|
(let ((loc (car x)) (proc (cadr x)))
|
|
|
|
(set-symbol-value! loc proc)))
|
|
|
|
macro*))
|
|
|
|
(let-values (((name ver imp* inv* vis*
|
|
|
|
invoke-code macro* export-subst export-env)
|
|
|
|
(core-library-expander x)))
|
|
|
|
(let ((id (gensym))
|
|
|
|
(name name)
|
|
|
|
(ver ver)
|
|
|
|
(imp* (map library-spec imp*))
|
|
|
|
(vis* (map library-spec vis*))
|
|
|
|
(inv* (map library-spec inv*))
|
|
|
|
(visit-proc (lambda () (visit! macro*)))
|
|
|
|
(invoke-proc
|
|
|
|
(lambda () (eval-core (expanded->core invoke-code))))
|
|
|
|
(visit-code (build-visit-code macro*))
|
|
|
|
(invoke-code invoke-code))
|
|
|
|
(install-library id name ver
|
|
|
|
imp* vis* inv* export-subst export-env
|
|
|
|
visit-proc invoke-proc
|
|
|
|
visit-code invoke-code
|
|
|
|
#t filename)
|
|
|
|
(values id name ver imp* vis* inv*
|
|
|
|
invoke-code visit-code
|
|
|
|
export-subst export-env)))]
|
|
|
|
[(x) (library-expander x #f)]))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; when bootstrapping the system, visit-code is not (and cannot
|
|
|
|
;;; be) be used in the "next" system. So, we drop it.
|
|
|
|
(define (boot-library-expand x)
|
2008-02-17 02:29:36 -05:00
|
|
|
(let-values (((id name ver imp* vis* inv*
|
|
|
|
invoke-code visit-code export-subst export-env)
|
2007-10-09 08:54:28 -04:00
|
|
|
(library-expander x)))
|
|
|
|
(values invoke-code export-subst export-env)))
|
|
|
|
|
|
|
|
(define (rev-map-append f ls ac)
|
|
|
|
(cond
|
|
|
|
((null? ls) ac)
|
|
|
|
(else
|
|
|
|
(rev-map-append f (cdr ls)
|
|
|
|
(cons (f (car ls)) ac)))))
|
|
|
|
|
|
|
|
(define build-exports
|
|
|
|
(lambda (lex*+loc* init*)
|
|
|
|
(build-sequence no-source
|
|
|
|
(cons (build-void)
|
|
|
|
(rev-map-append
|
|
|
|
(lambda (x)
|
|
|
|
(build-global-assignment no-source (cdr x) (car x)))
|
|
|
|
lex*+loc*
|
|
|
|
init*)))))
|
|
|
|
|
|
|
|
(define (make-export-subst int* ext* rib)
|
|
|
|
(map
|
|
|
|
(lambda (int ext)
|
2008-02-14 04:01:09 -05:00
|
|
|
(let* ((id (mkstx int top-mark* (list rib) '()))
|
2007-10-09 08:54:28 -04:00
|
|
|
(label (id->label id)))
|
|
|
|
(unless label
|
|
|
|
(stx-error id "cannot export unbound identifier"))
|
|
|
|
(cons ext label)))
|
|
|
|
int* ext*))
|
|
|
|
|
2007-11-17 09:53:22 -05:00
|
|
|
(define (make-export-env/macros lex* loc* r)
|
|
|
|
(define (lookup x)
|
|
|
|
(let f ([x x] [lex* lex*] [loc* loc*])
|
|
|
|
(cond
|
|
|
|
[(pair? lex*)
|
|
|
|
(if (eq? x (car lex*))
|
|
|
|
(car loc*)
|
|
|
|
(f x (cdr lex*) (cdr loc*)))]
|
2007-12-15 08:22:49 -05:00
|
|
|
[else (assertion-violation 'lookup-make-export "BUG")])))
|
2007-10-09 08:54:28 -04:00
|
|
|
(let f ((r r) (env '()) (global* '()) (macro* '()))
|
|
|
|
(cond
|
|
|
|
((null? r) (values env global* macro*))
|
|
|
|
(else
|
|
|
|
(let ((x (car r)))
|
|
|
|
(let ((label (car x)) (b (cdr x)))
|
|
|
|
(case (binding-type b)
|
|
|
|
((lexical)
|
2007-11-23 16:07:38 -05:00
|
|
|
(let ([v (binding-value b)])
|
|
|
|
(let ((loc (lookup (lexical-var v)))
|
|
|
|
(type (if (lexical-mutable? v)
|
|
|
|
'mutable
|
|
|
|
'global)))
|
|
|
|
(f (cdr r)
|
|
|
|
(cons (cons* label type loc) env)
|
|
|
|
(cons (cons (lexical-var v) loc) global*)
|
|
|
|
macro*))))
|
2007-10-09 08:54:28 -04:00
|
|
|
((local-macro)
|
|
|
|
(let ((loc (gensym)))
|
|
|
|
(f (cdr r)
|
|
|
|
(cons (cons* label 'global-macro loc) env)
|
|
|
|
global*
|
|
|
|
(cons (cons loc (binding-value b)) macro*))))
|
|
|
|
((local-macro!)
|
|
|
|
(let ((loc (gensym)))
|
|
|
|
(f (cdr r)
|
|
|
|
(cons (cons* label 'global-macro! loc) env)
|
|
|
|
global*
|
|
|
|
(cons (cons loc (binding-value b)) macro*))))
|
|
|
|
(($rtd $module) (f (cdr r) (cons x env) global* macro*))
|
|
|
|
(else
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'expander "BUG: do not know how to export"
|
2007-10-09 08:54:28 -04:00
|
|
|
(binding-type b) (binding-value b))))))))))
|
|
|
|
|
|
|
|
(define generate-temporaries
|
|
|
|
(lambda (ls)
|
|
|
|
(syntax-match ls ()
|
|
|
|
((ls ...)
|
2007-10-31 04:34:14 -04:00
|
|
|
(map (lambda (x)
|
|
|
|
(make-stx
|
|
|
|
(let ([x (syntax->datum x)])
|
|
|
|
(cond
|
|
|
|
[(or (symbol? x) (string? x))
|
|
|
|
(gensym x)]
|
|
|
|
[else (gensym 't)]))
|
2008-02-14 04:01:09 -05:00
|
|
|
top-mark* '() '()))
|
2007-10-31 04:34:14 -04:00
|
|
|
ls))
|
2007-10-09 08:54:28 -04:00
|
|
|
(_
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'generate-temporaries "not a list")))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define free-identifier=?
|
|
|
|
(lambda (x y)
|
|
|
|
(if (id? x)
|
|
|
|
(if (id? y)
|
|
|
|
(free-id=? x y)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'free-identifier=? "not an identifier" y))
|
|
|
|
(assertion-violation 'free-identifier=? "not an identifier" x))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define bound-identifier=?
|
|
|
|
(lambda (x y)
|
|
|
|
(if (id? x)
|
|
|
|
(if (id? y)
|
|
|
|
(bound-id=? x y)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'bound-identifier=? "not an identifier" y))
|
|
|
|
(assertion-violation 'bound-identifier=? "not an identifier" x))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
2007-12-19 19:05:23 -05:00
|
|
|
(define (extract-position-condition x)
|
|
|
|
(define-condition-type &source-information &condition
|
|
|
|
make-source-condition source-condition?
|
|
|
|
(file-name source-filename)
|
|
|
|
(character source-character))
|
|
|
|
(if (stx? x)
|
|
|
|
(let ([x (stx-expr x)])
|
|
|
|
(if (annotation? x)
|
|
|
|
(let ([src (annotation-source x)])
|
|
|
|
(if (pair? src)
|
|
|
|
(make-source-condition (car src) (cdr src))
|
|
|
|
(condition)))
|
|
|
|
(condition)))
|
|
|
|
(condition)))
|
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define syntax-error
|
|
|
|
(lambda (x . args)
|
|
|
|
(unless (for-all string? args)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'syntax-error "invalid argument" args))
|
2007-11-21 02:23:29 -05:00
|
|
|
(raise
|
|
|
|
(condition
|
|
|
|
(make-message-condition
|
|
|
|
(if (null? args)
|
|
|
|
"invalid syntax"
|
|
|
|
(apply string-append args)))
|
2007-11-27 06:11:30 -05:00
|
|
|
(make-syntax-violation
|
2007-12-19 19:05:23 -05:00
|
|
|
(syntax->datum x)
|
|
|
|
#f)
|
2008-03-25 21:23:23 -04:00
|
|
|
(extract-position-condition x)
|
|
|
|
(extract-trace x)))))
|
2007-11-21 02:23:29 -05:00
|
|
|
|
2008-02-14 04:01:09 -05:00
|
|
|
(define (extract-trace x)
|
|
|
|
(define-condition-type &trace &condition
|
|
|
|
make-trace trace?
|
|
|
|
(form trace-form))
|
|
|
|
(let f ([x x])
|
|
|
|
(cond
|
|
|
|
[(stx? x)
|
|
|
|
(apply condition
|
|
|
|
(make-trace x)
|
|
|
|
(map f (stx-ae* x)))]
|
|
|
|
[(annotation? x)
|
|
|
|
(make-trace x)]
|
|
|
|
[else (condition)])))
|
|
|
|
|
|
|
|
|
2007-12-23 19:52:18 -05:00
|
|
|
(define syntax-violation*
|
|
|
|
(lambda (who msg form condition-object)
|
2007-12-07 03:00:25 -05:00
|
|
|
(unless (string? msg)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'syntax-violation "message is not a string" msg))
|
2007-12-07 03:00:25 -05:00
|
|
|
(let ([who
|
|
|
|
(cond
|
|
|
|
[(or (string? who) (symbol? who)) who]
|
|
|
|
[(not who)
|
|
|
|
(syntax-match form ()
|
|
|
|
[id (id? id) (syntax->datum id)]
|
|
|
|
[(id . rest) (id? id) (syntax->datum id)]
|
|
|
|
[_ #f])]
|
|
|
|
[else
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'syntax-violation
|
2007-12-07 03:00:25 -05:00
|
|
|
"invalid who argument" who)])])
|
|
|
|
(raise
|
|
|
|
(condition
|
|
|
|
(if who
|
|
|
|
(make-who-condition who)
|
|
|
|
(condition))
|
|
|
|
(make-message-condition msg)
|
2007-12-23 19:52:18 -05:00
|
|
|
condition-object
|
2008-02-14 04:01:09 -05:00
|
|
|
(extract-position-condition form)
|
|
|
|
(extract-trace form))))))
|
2007-12-23 19:52:18 -05:00
|
|
|
|
|
|
|
(define syntax-violation
|
|
|
|
(case-lambda
|
|
|
|
[(who msg form) (syntax-violation who msg form #f)]
|
|
|
|
[(who msg form subform)
|
|
|
|
(syntax-violation* who msg form
|
|
|
|
(make-syntax-violation
|
|
|
|
(syntax->datum form)
|
|
|
|
(syntax->datum subform)))]))
|
2007-12-07 03:00:25 -05:00
|
|
|
|
2007-10-09 08:54:28 -04:00
|
|
|
(define identifier? (lambda (x) (id? x)))
|
|
|
|
|
|
|
|
(define datum->syntax
|
|
|
|
(lambda (id datum)
|
|
|
|
(if (id? id)
|
|
|
|
(datum->stx id datum)
|
2007-12-15 08:22:49 -05:00
|
|
|
(assertion-violation 'datum->syntax "not an identifier" id))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
(define syntax->datum
|
|
|
|
(lambda (x) (stx->datum x)))
|
|
|
|
|
2008-02-18 20:28:54 -05:00
|
|
|
(define compile-r6rs-top-level
|
2007-10-09 08:54:28 -04:00
|
|
|
(lambda (x*)
|
|
|
|
(let-values (((lib* invoke-code) (top-level-expander x*)))
|
2008-02-18 20:28:54 -05:00
|
|
|
(lambda ()
|
|
|
|
(for-each invoke-library lib*)
|
|
|
|
(eval-core (expanded->core invoke-code))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
|
|
|
|
;;; The interaction-library is a parameter that is either #f
|
|
|
|
;;; (the default, for r6rs scripts) or set to an extensible library
|
|
|
|
;;; that serves as the base for an r5rs-like top-level environment.
|
|
|
|
;;; The identifiers in the top-level library are copied on demand from
|
|
|
|
;;; the (ikarus) library which contains all the public bindings of the
|
|
|
|
;;; system.
|
|
|
|
|
|
|
|
(define interaction-library (make-parameter #f))
|
|
|
|
|
|
|
|
(define (interaction-sym->label sym)
|
|
|
|
(cond
|
|
|
|
((interaction-library) =>
|
|
|
|
(lambda (lib)
|
|
|
|
(cond
|
|
|
|
((assq sym (library-subst lib)) => cdr)
|
|
|
|
(else
|
|
|
|
(let ((subst
|
|
|
|
(if (library-exists? '(ikarus))
|
|
|
|
(library-subst (find-library-by-name '(ikarus)))
|
|
|
|
'())))
|
|
|
|
(cond
|
|
|
|
((assq sym subst) =>
|
|
|
|
(lambda (sym/lab)
|
|
|
|
(let ((label (cdr sym/lab)))
|
|
|
|
(extend-library-subst! lib sym label)
|
|
|
|
label)))
|
|
|
|
(else
|
|
|
|
(let ((label (gen-label sym)))
|
|
|
|
(extend-library-subst! lib sym label)
|
|
|
|
(extend-library-env! lib label
|
|
|
|
(cons 'global (cons lib (gen-global sym))))
|
|
|
|
label))))))))
|
|
|
|
(else #f)))
|
|
|
|
|
|
|
|
(define eval-top-level
|
|
|
|
(lambda (x)
|
|
|
|
(define (eval-binding x)
|
|
|
|
(let ((loc (car x)) (expr (cdr x)))
|
|
|
|
(cond
|
2007-11-18 22:46:00 -05:00
|
|
|
(loc (set-symbol-value! loc
|
|
|
|
(let ([g (gensym loc)])
|
|
|
|
(eval-core
|
|
|
|
(expanded->core
|
|
|
|
(build-application no-source
|
|
|
|
(build-lambda no-source
|
|
|
|
(list g) g)
|
|
|
|
(list expr)))))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(else (eval-core (expanded->core expr))))))
|
|
|
|
(let ((rtc (make-collector))
|
2007-11-12 04:40:48 -05:00
|
|
|
(itc (make-collector))
|
2007-10-09 08:54:28 -04:00
|
|
|
(vtc (make-collector)))
|
|
|
|
(let ((init*
|
|
|
|
(parameterize ((inv-collector rtc)
|
|
|
|
(vis-collector vtc)
|
2007-11-12 04:40:48 -05:00
|
|
|
(imp-collector itc)
|
2007-10-09 08:54:28 -04:00
|
|
|
(interaction-library
|
|
|
|
(find-library-by-name '(ikarus interaction))))
|
2008-02-14 04:01:09 -05:00
|
|
|
(chi-top* (list (mkstx x top-mark* '() '())) '()))))
|
2007-10-09 08:54:28 -04:00
|
|
|
(for-each invoke-library (rtc))
|
|
|
|
(unless (null? init*)
|
|
|
|
(for-each eval-binding (reverse (cdr init*)))
|
|
|
|
(eval-binding (car init*)))))))
|
|
|
|
|
|
|
|
;;; register the expander with the library manager
|
|
|
|
(current-library-expander library-expander))
|
|
|
|
|
|
|
|
|
|
|
|
|