home *** CD-ROM | disk | FTP | other *** search
/ Dream 44 / Amiga_Dream_44.iso / RiscPc / programmation / scm4e2.arc / !Scm / slib / mwdenote < prev    next >
Text File  |  1994-08-09  |  9KB  |  274 lines

  1. ;"mwdenote.scm" Syntactic Environments
  2. ; Copyright 1992 William Clinger
  3. ;
  4. ; Permission to copy this software, in whole or in part, to use this
  5. ; software for any lawful purpose, and to redistribute this software
  6. ; is granted subject to the restriction that all copies made of this
  7. ; software must include this copyright notice in full.
  8. ;
  9. ; I also request that you send me a copy of any improvements that you
  10. ; make to this software so that they may be incorporated within it to
  11. ; the benefit of the Scheme community.
  12.  
  13. ;;;; Syntactic environments.
  14.  
  15. ; A syntactic environment maps identifiers to denotations,
  16. ; where a denotation is one of
  17. ;
  18. ;    (special <special>)
  19. ;    (macro <rules> <env>)
  20. ;    (identifier <id>)
  21. ;
  22. ; and where <special> is one of
  23. ;
  24. ;    quote
  25. ;    lambda
  26. ;    if
  27. ;    set!
  28. ;    begin
  29. ;    define
  30. ;    define-syntax
  31. ;    let-syntax
  32. ;    letrec-syntax
  33. ;    syntax-rules
  34. ;
  35. ; and where <rules> is a compiled <transformer spec> (see R4RS),
  36. ; <env> is a syntactic environment, and <id> is an identifier.
  37.  
  38. (define mw:standard-syntax-environment
  39.   '((quote         . (special quote))
  40.     (lambda        . (special lambda))
  41.     (if            . (special if))
  42.     (set!          . (special set!))
  43.     (begin         . (special begin))
  44.     (define        . (special define))
  45.     (let           . (special let))                ;; @@ added KAD
  46.     (let*          . (special let*))               ;; @@    "
  47.     (letrec        . (special letrec))             ;; @@    "
  48.     (quasiquote    . (special quasiquote))         ;; @@    "
  49.     (unquote       . (special unquote))            ;; @@    "
  50.     (unquote-splicing . (special unquote-splicing)) ; @@    "
  51.     (do            . (special do))                 ;; @@    "
  52.     (define-syntax . (special define-syntax))
  53.     (let-syntax    . (special let-syntax))
  54.     (letrec-syntax . (special letrec-syntax))
  55.     (syntax-rules  . (special syntax-rules))
  56.     (...           . (identifier ...))
  57.     (:::           . (identifier :::))))
  58.  
  59. ; An unforgeable synonym for lambda, used to expand definitions.
  60.  
  61. (define mw:lambda0 (string->symbol " lambda "))
  62.  
  63. ; The mw:global-syntax-environment will always be a nonempty
  64. ; association list since there is no way to remove the entry
  65. ; for mw:lambda0.  That entry is used as a header by destructive
  66. ; operations.
  67.  
  68. (define mw:global-syntax-environment
  69.   (cons (cons mw:lambda0
  70.           (cdr (assq 'lambda mw:standard-syntax-environment)))
  71.     (mw:syntax-copy mw:standard-syntax-environment)))
  72.  
  73. (define (mw:global-syntax-environment-set! env)
  74.   (set-cdr! mw:global-syntax-environment env))
  75.  
  76. (define (mw:syntax-bind-globally! id denotation)
  77.   (if (and (mw:identifier? denotation)
  78.        (eq? id (mw:identifier-name denotation)))
  79.       (letrec ((remove-bindings-for-id
  80.         (lambda (bindings)
  81.           (cond ((null? bindings) '())
  82.             ((eq? (caar bindings) id)
  83.              (remove-bindings-for-id (cdr bindings)))
  84.             (else (cons (car bindings)
  85.                     (remove-bindings-for-id (cdr bindings))))))))
  86.     (mw:global-syntax-environment-set!
  87.      (remove-bindings-for-id (cdr mw:global-syntax-environment))))
  88.       (let ((x (assq id mw:global-syntax-environment)))
  89.     (if x
  90.         (set-cdr! x denotation)
  91.         (mw:global-syntax-environment-set!
  92.          (cons (cons id denotation)
  93.            (cdr mw:global-syntax-environment)))))))
  94.  
  95. (define (mw:syntax-divert env1 env2)
  96.   (append env2 env1))
  97.  
  98. (define (mw:syntax-extend env ids denotations)
  99.   (mw:syntax-divert env (map cons ids denotations)))
  100.  
  101. (define (mw:syntax-lookup-raw env id)
  102.   (let ((entry (assq id env)))
  103.     (if entry
  104.     (cdr entry)
  105.     #f)))
  106.  
  107. (define (mw:syntax-lookup env id)
  108.   (or (mw:syntax-lookup-raw env id)
  109.       (mw:make-identifier-denotation id)))
  110.  
  111. (define (mw:syntax-assign! env id denotation)
  112.   (let ((entry (assq id env)))
  113.     (if entry
  114.     (set-cdr! entry denotation)
  115.     (mw:bug "Bug detected in mw:syntax-assign!" env id denotation))))
  116.  
  117. (define mw:denote-of-quote
  118.   (mw:syntax-lookup mw:standard-syntax-environment 'quote))
  119.  
  120. (define mw:denote-of-lambda
  121.   (mw:syntax-lookup mw:standard-syntax-environment 'lambda))
  122.  
  123. (define mw:denote-of-if
  124.   (mw:syntax-lookup mw:standard-syntax-environment 'if))
  125.  
  126. (define mw:denote-of-set!
  127.   (mw:syntax-lookup mw:standard-syntax-environment 'set!))
  128.  
  129. (define mw:denote-of-begin
  130.   (mw:syntax-lookup mw:standard-syntax-environment 'begin))
  131.  
  132. (define mw:denote-of-define
  133.   (mw:syntax-lookup mw:standard-syntax-environment 'define))
  134.  
  135. (define mw:denote-of-define-syntax
  136.   (mw:syntax-lookup mw:standard-syntax-environment 'define-syntax))
  137.  
  138. (define mw:denote-of-let-syntax
  139.   (mw:syntax-lookup mw:standard-syntax-environment 'let-syntax))
  140.  
  141. (define mw:denote-of-letrec-syntax
  142.   (mw:syntax-lookup mw:standard-syntax-environment 'letrec-syntax))
  143.  
  144. (define mw:denote-of-syntax-rules
  145.   (mw:syntax-lookup mw:standard-syntax-environment 'syntax-rules))
  146.  
  147. (define mw:denote-of-...
  148.   (mw:syntax-lookup mw:standard-syntax-environment '...))
  149.  
  150. (define mw:denote-of-:::
  151.   (mw:syntax-lookup mw:standard-syntax-environment ':::))
  152.  
  153. (define mw:denote-of-let
  154.   (mw:syntax-lookup mw:standard-syntax-environment 'let))        ;; @@ KenD
  155.  
  156. (define mw:denote-of-let*
  157.   (mw:syntax-lookup mw:standard-syntax-environment 'let*))       ;; @@ KenD
  158.  
  159. (define mw:denote-of-letrec
  160.   (mw:syntax-lookup mw:standard-syntax-environment 'letrec))     ;; @@ KenD
  161.  
  162. (define mw:denote-of-quasiquote
  163.   (mw:syntax-lookup mw:standard-syntax-environment 'quasiquote)) ;; @@ KenD
  164.  
  165. (define mw:denote-of-unquote
  166.   (mw:syntax-lookup mw:standard-syntax-environment 'unquote))    ;; @@ KenD
  167.  
  168. (define mw:denote-of-unquote-splicing
  169.   (mw:syntax-lookup mw:standard-syntax-environment 'unquote-splicing)) ;@@ KenD
  170.  
  171. (define mw:denote-of-do
  172.   (mw:syntax-lookup mw:standard-syntax-environment 'do))        ;; @@ KenD
  173.  
  174. (define mw:denote-class car)
  175.  
  176. ;(define (mw:special? denotation)
  177. ;  (eq? (mw:denote-class denotation) 'special))
  178.  
  179. ;(define (mw:macro? denotation)
  180. ;  (eq? (mw:denote-class denotation) 'macro))
  181.  
  182. (define (mw:identifier? denotation)
  183.   (eq? (mw:denote-class denotation) 'identifier))
  184.  
  185. (define (mw:make-identifier-denotation id)
  186.   (list 'identifier id))
  187.  
  188. (define macwork:rules cadr)
  189. (define macwork:env caddr)
  190. (define mw:identifier-name cadr)
  191.  
  192. (define (mw:same-denotation? d1 d2)
  193.   (or (eq? d1 d2)
  194.       (and (mw:identifier? d1)
  195.        (mw:identifier? d2)
  196.        (eq? (mw:identifier-name d1)
  197.         (mw:identifier-name d2)))))
  198.  
  199. ; Renaming of variables.
  200.  
  201. ; Given a datum, strips the suffixes from any symbols that appear within
  202. ; the datum, trying not to copy any more of the datum than necessary.
  203. ; Well, right now I'm just copying the datum, but I need to fix that!
  204.  
  205. (define (mw:strip x)
  206.   (cond ((symbol? x)
  207.      (let ((chars (memv mw:suffix-character
  208.                 (reverse (string->list
  209.                       (symbol->string x))))))
  210.        (if chars
  211.            (string->symbol
  212.         (list->string (reverse (cdr chars))))
  213.            x)))
  214.     ((pair? x)
  215.      (cons (mw:strip (car x))
  216.            (mw:strip (cdr x))))
  217.     ((vector? x)
  218.      (list->vector (map mw:strip (vector->list x))))
  219.     (else x)))
  220.  
  221. ; Given a list of identifiers, returns an alist that associates each
  222. ; identifier with a fresh identifier.
  223.  
  224. (define (mw:rename-vars vars)
  225.   (set! mw:renaming-counter (+ mw:renaming-counter 1))
  226.   (let ((suffix (string-append (string mw:suffix-character)
  227.                    (number->string mw:renaming-counter))))
  228.     (map (lambda (var)
  229.        (if (symbol? var)
  230.            (cons var
  231.              (string->symbol
  232.               (string-append (symbol->string var) suffix)))
  233.            (slib:error "Illegal variable" var)))
  234.      vars)))
  235.  
  236. ; Given a syntactic environment env to be extended, an alist returned
  237. ; by mw:rename-vars, and a syntactic environment env2, extends env by
  238. ; binding the fresh identifiers to the denotations of the original
  239. ; identifiers in env2.
  240.  
  241. (define (mw:syntax-alias env alist env2)
  242.   (mw:syntax-divert
  243.    env
  244.    (map (lambda (name-pair)
  245.       (let ((old-name (car name-pair))
  246.         (new-name (cdr name-pair)))
  247.         (cons new-name
  248.           (mw:syntax-lookup env2 old-name))))
  249.     alist)))
  250.  
  251. ; Given a syntactic environment and an alist returned by mw:rename-vars,
  252. ; extends the environment by binding the old identifiers to the fresh
  253. ; identifiers.
  254.  
  255. (define (mw:syntax-rename env alist)
  256.   (mw:syntax-divert env
  257.             (map (lambda (old new)
  258.                (cons old (mw:make-identifier-denotation new)))
  259.              (map car alist)
  260.              (map cdr alist))))
  261.  
  262. ; Given a <formals> and an alist returned by mw:rename-vars that contains
  263. ; a new name for each formal identifier in <formals>, renames the
  264. ; formal identifiers.
  265.  
  266. (define (mw:rename-formals formals alist)
  267.   (cond ((null? formals) '())
  268.     ((pair? formals)
  269.      (cons (cdr (assq (car formals) alist))
  270.            (mw:rename-formals (cdr formals) alist)))
  271.     (else (cdr (assq formals alist)))))
  272.  
  273. (define mw:renaming-counter 0)
  274.