add (ice-9 control)
authorAndy Wingo <wingo@pobox.com>
Sat, 30 Jan 2010 23:02:00 +0000 (00:02 +0100)
committerAndy Wingo <wingo@pobox.com>
Sun, 31 Jan 2010 19:40:24 +0000 (20:40 +0100)
* module/language/tree-il/primitives.scm (define-primitive-expander):
  Allow quoted datums. Allow all self-evaluating expressions to be
  constants.
  (prompt, control): Add primitive expanders to turn these into @prompt
  and @control.

* module/ice-9/control.scm: New module, for delimited continuation
  operators.

* module/Makefile.am: Add.

module/Makefile.am
module/ice-9/control.scm [new file with mode: 0644]
module/language/tree-il/primitives.scm

index 7b1bbea..fac005a 100644 (file)
@@ -178,6 +178,7 @@ ICE_9_SOURCES = \
   ice-9/and-let-star.scm \
   ice-9/calling.scm \
   ice-9/common-list.scm \
+  ice-9/control.scm \
   ice-9/debug.scm \
   ice-9/debugger.scm \
   ice-9/documentation.scm \
diff --git a/module/ice-9/control.scm b/module/ice-9/control.scm
new file mode 100644 (file)
index 0000000..75e9d37
--- /dev/null
@@ -0,0 +1,42 @@
+;;; Beyond call/cc
+
+;; Copyright (C) 2010 Free Software Foundation, Inc.
+
+;;;; This library is free software; you can redistribute it and/or
+;;;; modify it under the terms of the GNU Lesser General Public
+;;;; License as published by the Free Software Foundation; either
+;;;; version 3 of the License, or (at your option) any later version.
+;;;; 
+;;;; This library is distributed in the hope that it will be useful,
+;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+;;;; Lesser General Public License for more details.
+;;;; 
+;;;; You should have received a copy of the GNU Lesser General Public
+;;;; License along with this library; if not, write to the Free Software
+;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+;;; Code:
+
+(define-module (ice-9 control)
+  #:use-module (language tree-il primitives)
+  #:export (% prompt control))
+
+(eval-when (eval load compile)
+  (load-extension "libguile" "scm_init_control")
+  (add-interesting-primitive! '@prompt)
+  (add-interesting-primitive! '@control)
+
+  (define (prompt tag thunk handler)
+    (@prompt tag thunk handler #f))
+
+  (define (control tag . args)
+    (apply @control tag 'throw args))
+
+  (define-syntax %
+    (syntax-rules ()
+      ((_ expr handler)
+       (prompt (lambda () expr) handler))))
+
+  (add-interesting-primitive! 'prompt)
+  (add-interesting-primitive! 'control))
index ac81232..ed41ee7 100644 (file)
             ((symbol? in) `(cons* ,@(reverse out) ,in))
             ((pair? (car in))
              (lp (cdr in)
-                 (cons `(make-application src (make-primitive-ref src ',(caar in))
-                                          ,(inline-args (cdar in)))
+                 (cons (if (eq? (caar in) 'quote)
+                           `(make-const src ,@(cdar in))
+                           `(make-application src (make-primitive-ref src ',(caar in))
+                                              ,(inline-args (cdar in))))
                        out)))
             ((symbol? (car in))
              ;; assume it's locally bound
              (lp (cdr in) (cons (car in) out)))
-            ((number? (car in))
+            ((self-evaluating? (car in))
              (lp (cdr in) (cons `(make-const src ,(car in)) out)))
             (else
              (error "what what" (car in))))))
                      (make-application #f (make-lexical-ref #f 'thunk THUNK) '())
                      (make-lexical-ref #f 'post POST)))))))
               (else #f)))
+
+(hashq-set! *primitive-expand-table*
+            'prompt
+            (case-lambda
+              ((src tag thunk handler)
+               (make-prompt src tag (make-application #f thunk '())
+                            handler #f))
+              ((src tag thunk handler pre)
+               (make-prompt src tag (make-application #f thunk '())
+                            handler pre))
+              (else #f)))
+(hashq-set! *primitive-expand-table*
+            '@prompt
+            (case-lambda
+              ((src tag thunk handler pre)
+               (make-prompt src tag (make-application #f thunk '())
+                            handler pre))
+              (else #f)))
+
+(hashq-set! *primitive-expand-table*
+            'control
+            (case-lambda
+              ((src tag . args)
+               (make-control src tag 'throw args))
+              (else #f)))
+(hashq-set! *primitive-expand-table*
+            '@control
+            (case-lambda
+              ((src tag type . args)
+               (make-control src tag (if (const? type) (const-exp type) (error "what ho" type)) args))
+              (else #f)))