diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-11-18 06:15:40 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-11-18 06:15:40 -0800 |
commit | 0bfa413c5c5c61d48e94a46e48e52fed46c5860a (patch) | |
tree | 04b37db4de76140529109fb2053b4f5cc62a17bd /share | |
parent | dc84927c791873508f473f1d5679550882f86e91 (diff) | |
download | txr-0bfa413c5c5c61d48e94a46e48e52fed46c5860a.tar.gz txr-0bfa413c5c5c61d48e94a46e48e52fed46c5860a.tar.bz2 txr-0bfa413c5c5c61d48e94a46e48e52fed46c5860a.zip |
Adding a tagbody macro to the language.
This is a "disciplined goto" feature of Common Lisp.
This uses a new sys:switch operator, which could
also be used for optimizing case and cond forms.
* eval.c (switch_s): New symbol variable.
(op_switch, expand_list_of_form_lists, expand_switch):
New static functions.
(do_expand): Hook in the expansion of the sys:switch
operator.
(eval_init): Initialize switch_s special variable to
sys:switch symbol. Register sys:switch special op.
* lisplib.c (tagbody_set_entries, tagbody_instantiate): New
static functions.
(lisplib_init): Register autoloading of tagbody module
via new functions.
* share/txr/stdlib/tagbody.tl: New file.
* txr.1: Documented.
Diffstat (limited to 'share')
-rw-r--r-- | share/txr/stdlib/tagbody.tl | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/share/txr/stdlib/tagbody.tl b/share/txr/stdlib/tagbody.tl new file mode 100644 index 00000000..7cfcd3f1 --- /dev/null +++ b/share/txr/stdlib/tagbody.tl @@ -0,0 +1,75 @@ +;; Copyright 2016 +;; Kaz Kylheku <kaz@kylheku.com> +;; Vancouver, Canada +;; All rights reserved. +;; +;; Redistribution and use in source and binary forms, with or without +;; modification, are permitted provided that the following conditions are met: +;; +;; 1. Redistributions of source code must retain the above copyright notice, this +;; list of conditions and the following disclaimer. +;; +;; 2. Redistributions in binary form must reproduce the above copyright notice, +;; this list of conditions and the following disclaimer in the documentation +;; and/or other materials provided with the distribution. +;; +;; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND +;; ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +;; DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +;; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +;; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +;; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +;; CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +;; OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +;; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +(defmacro tagbody (:env env . forms) + (when forms + (let* ((tb-id (gensym "tb-id-")) + (next-var (gensym "next-")) + (bblocks [partition forms (op where [orf symbolp integerp chrp])]) + (start-lbl (and (car bblocks) [[orf symbolp integerp chrp] (caar bblocks)])) + (entry-lbl (if start-lbl (caar bblocks) (gensym "entry-")))) + (unless start-lbl + (push entry-lbl (car bblocks))) + (let* ((lbls [mapcar car bblocks]) + (forms [mapcar cdr bblocks]) + ;; This trickery transform the individually labeled form + ;; blocks into branches, such that each branch falls through + ;; to the next one thanks to substructure sharing. + (threaded-1 (mapcar (op member-if true) (conses forms))) + (threaded-2 [apply nconc forms]) ;; important side effect + (codes [mapcar car threaded-1])) + (unless (eql (length (uniq lbls)) (length lbls)) + (throwf 'eval-error "~s: duplicate labels occur" 'tagbody)) + (let* ((basic-code ^(let ((,tb-id (gensym "tb-dyn-id-"))) + (for ((,next-var 0)) + (,next-var) + ((set ,next-var + (block* ,tb-id + (sys:switch ,next-var #(,*codes)) + nil)))))) + ;; pass one: expand inner forms, including tagbody forms. + ;; if any inner tagbody forms leave (go ...) forms unexpanded, + ;; protect those (go ...)forms from falling victim to the + ;; global macro, by wrapping this with a harmless local go macro. + (pass-one (sys:expand ^(macrolet ((go (:form form label) form)) + ,basic-code)) env)) + ;; pass two: now expand the remaining go forms at this level, against + ;; this tagbody. If any go forms remain, they must refer to nonexistent + ;; labels. By calling sys:expand one more time, we flush these out + ;; using the global go macro --- unless we are nested inside the + ;; pass-one expansion of outer tagbody, which protects them! + ;; Thus, the outermost tagbody flushes out the undefined labels. + (sys:expand ^(macrolet ((go (:form form label) + (let ((index (posql label ',lbls))) + (cond + ((null index) form) + (t ^(return* ,',tb-id ,index)))))) + ,pass-one) env)))))) + +(defmacro go (label) + (if [[orf symbolp integerp chrp] label] + (throwf 'eval-error "~s: no ~s label visible" 'go label) + (throwf 'eval-error "~s: ~s isn't a symbol, integer or character" 'go label))) |