X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=jscl.lisp;h=47899f0bd1b4b96bebbc32e234a3c5771f078f49;hb=68cd2db6542fa3442d46b0331ecf8be8f86c09c2;hp=f31de86b90d9c17c3b0d3bfb48696e9e46497d1e;hpb=1d669532c55e448eded7c085a29cca314daeeb95;p=jscl.git diff --git a/jscl.lisp b/jscl.lisp index f31de86..47899f0 100644 --- a/jscl.lisp +++ b/jscl.lisp @@ -3,31 +3,39 @@ ;; Copyright (C) 2012, 2013 David Vazquez ;; Copyright (C) 2012 Raimon Grau -;; This program is free software: you can redistribute it and/or +;; JSCL 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 3 of the ;; License, or (at your option) any later version. ;; -;; This program is distributed in the hope that it will be useful, but +;; JSCL 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 this program. If not, see . +;; along with JSCL. If not, see . + +(defpackage :jscl + (:use :cl) + (:export #:bootstrap #:run-tests-in-host)) + +(in-package :jscl) (defvar *source* - '(("boot" :target) - ("compat" :host) - ("utils" :both) - ("print" :target) - ("read" :both) - ("compiler" :both) - ("toplevel" :target) - ;; Tests - ("tests" :test) - ("eval" :test) - ("tests-report" :test))) + '(("boot" :target) + ("compat" :host) + ("utils" :both) + ("list" :target) + ("string" :target) + ("print" :target) + ("package" :target) + ("ffi" :target) + ("read" :both) + ("defstruct" :both) + ("lambda-list" :both) + ("compiler" :both) + ("toplevel" :target))) (defun source-pathname (filename &key (directory '(:relative "src")) (type nil) (defaults filename)) @@ -39,7 +47,11 @@ (with-compilation-unit () (dolist (input *source*) (when (member (cadr input) '(:host :both)) - (compile-file (source-pathname (car input)))))) + (let ((fname (source-pathname (car input)))) + (multiple-value-bind (fasl warn fail) (compile-file fname) + (declare (ignore fasl warn)) + (when fail + (error "Compilation of ~A failed." fname))))))) ;;; Load jscl into the host (dolist (input *source*) @@ -62,27 +74,60 @@ with eof-mark = (gensym) for x = (ls-read in nil eof-mark) until (eq x eof-mark) - for compilation = (ls-compile-toplevel x) - when (plusp (length compilation)) - do (write-string compilation out))))) + do (let ((compilation (ls-compile-toplevel x))) + (when (plusp (length compilation)) + (write-string compilation out))))))) + + +(defun dump-global-environment (stream) + (flet ((late-compile (form) + (write-string (ls-compile-toplevel form) stream))) + ;; We assume that environments have a friendly list representation + ;; for the compiler and it can be dumped. + (dolist (b (lexenv-function *environment*)) + (when (eq (binding-type b) 'macro) + (push *magic-unquote-marker* (binding-value b)))) + (late-compile `(setq *environment* ',*environment*)) + ;; Set some counter variable properly, so user compiled code will + ;; not collide with the compiler itself. + (late-compile + `(progn + ,@(mapcar (lambda (s) `(%intern-symbol (%js-vref ,(cdr s)))) + (remove-if-not #'symbolp *literal-table* :key #'car)) + (setq *literal-table* ',*literal-table*) + (setq *variable-counter* ,*variable-counter*) + (setq *gensym-counter* ,*gensym-counter*))) + (late-compile `(setq *literal-counter* ,*literal-counter*)))) + (defun bootstrap () - (setq *environment* (make-lexenv)) - (setq *literal-symbols* nil) - (setq *variable-counter* 0 - *gensym-counter* 0 - *literal-counter* 0 - *block-counter* 0) - (with-open-file (out "jscl.js" :direction :output :if-exists :supersede) - (write-string (read-whole-file (source-pathname "prelude.js")) out) - (dolist (input *source*) - (when (member (cadr input) '(:target :both)) - (ls-compile-file (source-pathname (car input) :type "lisp") out)))) - ;; Tests - (with-open-file (out "tests.js" :direction :output :if-exists :supersede) - (dolist (input *source*) - (when (member (cadr input) '(:test)) - (ls-compile-file (source-pathname (car input) - :directory '(:relative "tests") - :type "lisp") - out))))) + (let ((*package* (find-package "JSCL"))) + (setq *environment* (make-lexenv)) + (setq *literal-table* nil) + (setq *variable-counter* 0 + *gensym-counter* 0 + *literal-counter* 0) + (with-open-file (out "jscl.js" :direction :output :if-exists :supersede) + (write-string (read-whole-file (source-pathname "prelude.js")) out) + (dolist (input *source*) + (when (member (cadr input) '(:target :both)) + (ls-compile-file (source-pathname (car input) :type "lisp") out))) + (dump-global-environment out)) + ;; Tests + (with-open-file (out "tests.js" :direction :output :if-exists :supersede) + (dolist (input (append (directory "tests.lisp") + (directory "tests/*.lisp") + (directory "tests-report.lisp"))) + (ls-compile-file input out))))) + + +;;; Run the tests in the host Lisp implementation. It is a quick way +;;; to improve the level of trust of the tests. +(defun run-tests-in-host () + (let ((*package* (find-package "JSCL"))) + (load "tests.lisp") + (let ((*use-html-output-p* nil)) + (declare (special *use-html-output-p*)) + (dolist (input (directory "tests/*.lisp")) + (load input))) + (load "tests-report.lisp")))