1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 01:00:20 +02:00

*** empty log message ***

This commit is contained in:
Keisuke Nishida 2001-04-05 01:38:38 +00:00
parent 4ee5686f6c
commit ea9b4b29f3
13 changed files with 684 additions and 529 deletions

View file

@ -0,0 +1,33 @@
;;; Guile Emac Lisp language specification
;; Copyright (C) 2001 Free Software Foundation, Inc.
;; This file is part of Guile VM.
;; Guile VM is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; Guile VM 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 General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with Guile VM; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
(define-module (lang elisp spec)
:use-module (system lang language)
:use-module (lang elisp translate)
:export (elisp))
(define-language elisp
#:title "Emacs Lisp"
#:version "0.0"
#:reader read
#:expander id
#:translator translate
)

View file

@ -0,0 +1,45 @@
;;; Emacs Lisp to GHIL translator
;; Copyright (C) 2001 Free Software Foundation, Inc.
;; This file is part of Guile VM.
;; Guile VM is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; Guile VM 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 General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with Guile VM; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
(define-module (lang elisp translate)
:export (translate))
(define (translate x) (trans x))
(define (trans x)
(if (pair? x)
(trans-pair x)
x))
(define (trans-pair x)
(let ((name (car x)) (args (cdr x)))
(case name
((quote) `(@quote ,@args))
((defvar) `(@define ,@(map trans args)))
((setq) `(@set! ,@(map trans args)))
((if) `(@if ,(trans (car args)) (@begin ,@(map trans (cdr args)))))
((and) `(@and ,@(map trans args)))
((or) `(@or ,@(map trans args)))
((progn) `(@begin ,@(map trans args)))
((defun) `(@define ,(car args)
(@lambda ,(cadr args) ,@(map trans (cddr args)))))
((lambda) `(@lambda ,(car args) ,@(map trans (cdr args))))
(else x))))

View file

@ -0,0 +1,90 @@
;;; Guile Scheme specification
;; Copyright (C) 2001 Free Software Foundation, Inc.
;; Guile VM is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; Guile VM 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 General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with Guile VM; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
(define-module (language gscheme spec)
:use-module (system base language)
:use-module (ice-9 match)
:export (gscheme))
;;;
;;; Macro expander
;;;
(define (expand x)
(if (pair? x)
(let* ((s (car x))
(m (current-module))
(v (and (symbol? s) (module-defined? m s) (module-ref m s))))
(if (defmacro? v)
(expand (apply (defmacro-transformer v) (cdr x)))
(cons (expand (car x)) (expand (cdr x)))))
x))
;;;
;;; Translator
;;;
(define *primitive-procedure-list*
'(void car cdr cons + - < >))
(define (translate x) (if (pair? x) (translate-pair x) x))
(define (translate-pair x)
(let ((name (car x)) (args (cdr x)))
(case name
((quote) (cons '@quote args))
((set! if and or begin)
(cons (symbol-append '@ name) (map translate args)))
((define)
(if (pair? (car args))
`(@define ,(caar args)
(@lambda ,(cdar args) ,@(map translate (cdr args))))
`(@define ,(car args) ,@(map translate (cdr args)))))
((let let* letrec)
(match x
(('let (? symbol? f) ((s v) ...) body ...)
`(@letrec ((,f (@lambda ,s ,@(map translate body))))
(,f ,@(map translate v))))
(else
(cons* (symbol-append '@ name)
(map (lambda (b) (cons (car b) (map translate (cdr b))))
(car args))
(map translate (cdr args))))))
((lambda)
(cons* '@lambda (car args) (map translate (cdr args))))
(else
(if (memq name *primitive-procedure-list*)
(cons (symbol-append '@ name) (map translate args))
(cons (translate name) (map translate args)))))))
;;;
;;; Language definition
;;;
(define-language gscheme
:title "Guile Scheme"
:version "0.3"
:reader read
:expander expand
:translator translate
:printer write
)

View file

@ -26,9 +26,6 @@
(define (trans x) (if (pair? x) (trans-pair x) x))
(define *primitive-procedure-list*
'(void car cdr cons + - * / < >))
(define (trans-pair x)
(let ((name (car x)) (args (cdr x)))
(let ((il (case name
@ -45,10 +42,7 @@
(cons* '@lambda (trans-formals (car args))
(map trans (cdr args))))
(else
(if (memq name *primitive-procedure-list*)
;; FIXME: Temporary hack for direct optimization
(cons (symbol-append '@ name) (map trans args))
(cons (trans name) (map trans args))))))
(cons (trans name) (map trans args)))))
(props (source-properties x)))
(if (not (null? props))
(set-source-properties! il props))