mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 20:00:19 +02:00
* module/language/elisp/compile-tree-il.scm (reference-with-check) (compile-without-void-checks, want-void-check?): Remove. (compile-function, compile-pair): Use `reference-variable' instead of `reference-with-check'. (compile-defvar): Only set `sym' if `sym' is not bound to a bound fluid, rather than requiring that its value be `void'. (process-options!): Remove `#:disable-void-check' option handling. * module/language/elisp/runtime.scm (void) (reference-variable-with-check): Remove. (ensure-fluid!): Use an undefined fluid as the initial value for global variables. * module/language/elisp/runtime/function-slot.scm (without-void-checks): Don't import or re-export. * module/language/elisp/runtime/macros.scm (prog1, cond, or, dolist): Don't use `without-void-checks'. * module/language/elisp/runtime/subrs.scm (symbol-value) (symbol-function, apply): Use `reference-variable' instead of `reference-variable-with-check'. (makunbound, fmakunbound, boundp, fboundp): Unset the variable's fluid (or the variable itself, if it isn't bound to a fluid). * test-suite/tests/elisp-compiler.test ("Variable Setting/Referencing")["disabled void check (all)", "disabled void check (symbol list)", "without-void-checks"]: Remove.
209 lines
6.9 KiB
Scheme
209 lines
6.9 KiB
Scheme
;;; Guile Emacs Lisp
|
|
|
|
;;; Copyright (C) 2009, 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 (language elisp runtime macros)
|
|
#:use-module (language elisp runtime))
|
|
|
|
;;; This module contains the macro definitions of elisp symbols. In
|
|
;;; contrast to the other runtime modules, those are used directly
|
|
;;; during compilation, of course, so not really in runtime. But I think
|
|
;;; it fits well to the others here.
|
|
|
|
(built-in-macro lambda
|
|
(lambda cdr
|
|
`(function (lambda ,@cdr))))
|
|
|
|
;;; The prog1 and prog2 constructs can easily be defined as macros using
|
|
;;; progn and some lexical-let's to save the intermediate value to
|
|
;;; return at the end.
|
|
|
|
(built-in-macro prog1
|
|
(lambda (form1 . rest)
|
|
(let ((temp (gensym)))
|
|
`(lexical-let ((,temp ,form1))
|
|
,@rest
|
|
,temp))))
|
|
|
|
(built-in-macro prog2
|
|
(lambda (form1 form2 . rest)
|
|
`(progn ,form1 (prog1 ,form2 ,@rest))))
|
|
|
|
;;; Define the conditionals when and unless as macros.
|
|
|
|
(built-in-macro when
|
|
(lambda (condition . thens)
|
|
`(if ,condition (progn ,@thens) nil)))
|
|
|
|
(built-in-macro unless
|
|
(lambda (condition . elses)
|
|
`(if ,condition nil (progn ,@elses))))
|
|
|
|
;;; Impement the cond form as nested if's. A special case is a
|
|
;;; (condition) subform, in which case we need to return the condition
|
|
;;; itself if it is true and thus save it in a local variable before
|
|
;;; testing it.
|
|
|
|
(built-in-macro cond
|
|
(lambda (. clauses)
|
|
(let iterate ((tail clauses))
|
|
(if (null? tail)
|
|
'nil
|
|
(let ((cur (car tail))
|
|
(rest (iterate (cdr tail))))
|
|
(prim cond
|
|
((prim or (not (list? cur)) (null? cur))
|
|
(macro-error "invalid clause in cond" cur))
|
|
((null? (cdr cur))
|
|
(let ((var (gensym)))
|
|
`(lexical-let ((,var ,(car cur)))
|
|
(if ,var
|
|
,var
|
|
,rest))))
|
|
(else
|
|
`(if ,(car cur)
|
|
(progn ,@(cdr cur))
|
|
,rest))))))))
|
|
|
|
;;; The and and or forms can also be easily defined with macros.
|
|
|
|
(built-in-macro and
|
|
(case-lambda
|
|
(() 't)
|
|
((x) x)
|
|
((x . args)
|
|
(let iterate ((x x) (tail args))
|
|
(if (null? tail)
|
|
x
|
|
`(if ,x
|
|
,(iterate (car tail) (cdr tail))
|
|
nil))))))
|
|
|
|
(built-in-macro or
|
|
(case-lambda
|
|
(() 'nil)
|
|
((x) x)
|
|
((x . args)
|
|
(let iterate ((x x) (tail args))
|
|
(if (null? tail)
|
|
x
|
|
(let ((var (gensym)))
|
|
`(lexical-let ((,var ,x))
|
|
(if ,var
|
|
,var
|
|
,(iterate (car tail) (cdr tail))))))))))
|
|
|
|
;;; Define the dotimes and dolist iteration macros.
|
|
|
|
(built-in-macro dotimes
|
|
(lambda (args . body)
|
|
(if (prim or
|
|
(not (list? args))
|
|
(< (length args) 2)
|
|
(> (length args) 3))
|
|
(macro-error "invalid dotimes arguments" args)
|
|
(let ((var (car args))
|
|
(count (cadr args)))
|
|
(if (not (symbol? var))
|
|
(macro-error "expected symbol as dotimes variable"))
|
|
`(let ((,var 0))
|
|
(while ((guile-primitive <) ,var ,count)
|
|
,@body
|
|
(setq ,var ((guile-primitive 1+) ,var)))
|
|
,@(if (= (length args) 3)
|
|
(list (caddr args))
|
|
'()))))))
|
|
|
|
(built-in-macro dolist
|
|
(lambda (args . body)
|
|
(if (prim or
|
|
(not (list? args))
|
|
(< (length args) 2)
|
|
(> (length args) 3))
|
|
(macro-error "invalid dolist arguments" args)
|
|
(let ((var (car args))
|
|
(iter-list (cadr args))
|
|
(tailvar (gensym)))
|
|
(if (not (symbol? var))
|
|
(macro-error "expected symbol as dolist variable")
|
|
`(let (,var)
|
|
(lexical-let ((,tailvar ,iter-list))
|
|
(while ((guile-primitive not)
|
|
((guile-primitive null?) ,tailvar))
|
|
(setq ,var ((guile-primitive car) ,tailvar))
|
|
,@body
|
|
(setq ,tailvar ((guile-primitive cdr) ,tailvar)))
|
|
,@(if (= (length args) 3)
|
|
(list (caddr args))
|
|
'()))))))))
|
|
|
|
;;; Exception handling. unwind-protect and catch are implemented as
|
|
;;; macros (throw is a built-in function).
|
|
|
|
;;; catch and throw can mainly be implemented directly using Guile's
|
|
;;; primitives for exceptions, the only difficulty is that the keys used
|
|
;;; within Guile must be symbols, while elisp allows any value and
|
|
;;; checks for matches using eq (eq?). We handle this by using always #t
|
|
;;; as key for the Guile primitives and check for matches inside the
|
|
;;; handler; if the elisp keys are not eq?, we rethrow the exception.
|
|
|
|
(built-in-macro catch
|
|
(lambda (tag . body)
|
|
(if (null? body)
|
|
(macro-error "catch with empty body"))
|
|
(let ((tagsym (gensym)))
|
|
`(lexical-let ((,tagsym ,tag))
|
|
((guile-primitive catch)
|
|
#t
|
|
(lambda () ,@body)
|
|
,(let* ((dummy-key (gensym))
|
|
(elisp-key (gensym))
|
|
(value (gensym))
|
|
(arglist `(,dummy-key ,elisp-key ,value)))
|
|
`(with-always-lexical
|
|
,arglist
|
|
(lambda ,arglist
|
|
(if (eq ,elisp-key ,tagsym)
|
|
,value
|
|
((guile-primitive throw) ,dummy-key ,elisp-key
|
|
,value))))))))))
|
|
|
|
;;; unwind-protect is just some weaker construct as dynamic-wind, so
|
|
;;; straight-forward to implement.
|
|
|
|
(built-in-macro unwind-protect
|
|
(lambda (body . clean-ups)
|
|
(if (null? clean-ups)
|
|
(macro-error "unwind-protect without cleanup code"))
|
|
`((guile-primitive dynamic-wind)
|
|
(lambda () nil)
|
|
(lambda () ,body)
|
|
(lambda () ,@clean-ups))))
|
|
|
|
;;; Pop off the first element from a list or push one to it.
|
|
|
|
(built-in-macro pop
|
|
(lambda (list-name)
|
|
`(prog1 (car ,list-name)
|
|
(setq ,list-name (cdr ,list-name)))))
|
|
|
|
(built-in-macro push
|
|
(lambda (new-el list-name)
|
|
`(setq ,list-name (cons ,new-el ,list-name))))
|