1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 13:30:26 +02:00

Fix guild compile --to=cps / --from=cps

* module/language/cps/spec.scm (read-cps, write-cps): Fix CPS
  serialization and parsing, so that "guild compile" works with --to=cps
  and --from=cps.
This commit is contained in:
Andy Wingo 2017-02-23 11:37:44 +01:00
parent 23278d07de
commit f261eaf03a

View file

@ -19,19 +19,33 @@
;;; Code:
(define-module (language cps spec)
#:use-module (ice-9 match)
#:use-module (system base language)
#:use-module (language cps)
#:use-module (language cps intmap)
#:use-module (language cps compile-bytecode)
#:export (cps))
(define (read-cps port env)
(let lp ((out empty-intmap))
(match (read port)
((k exp) (lp (intmap-add! out k (parse-cps exp))))
((? eof-object?)
(if (eq? out empty-intmap)
the-eof-object
(persistent-intmap out))))))
(define* (write-cps exp #:optional (port (current-output-port)))
(write (unparse-cps exp) port))
(intmap-fold (lambda (k cps port)
(write (list k (unparse-cps cps)) port)
(newline port)
port)
exp port))
(define-language cps
#:title "CPS Intermediate Language"
#:reader (lambda (port env) (read port))
#:reader read-cps
#:printer write-cps
#:parser parse-cps
#:compilers `((bytecode . ,compile-bytecode))
#:for-humans? #f
)