1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

add (ice-9 control)

* 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.
This commit is contained in:
Andy Wingo 2010-01-31 00:02:00 +01:00
parent b9c100d008
commit 9b2a2a391a
3 changed files with 79 additions and 3 deletions

View 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 \

42
module/ice-9/control.scm Normal file
View file

@ -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))

View file

@ -179,13 +179,15 @@
((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))))))
@ -399,3 +401,34 @@
(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)))