3 ;; Copyright (C) 2012, 2013 David Vazquez
4 ;; Copyright (C) 2012 Raimon Grau
6 ;; JSCL is free software: you can redistribute it and/or
7 ;; modify it under the terms of the GNU General Public License as
8 ;; published by the Free Software Foundation, either version 3 of the
9 ;; License, or (at your option) any later version.
11 ;; JSCL is distributed in the hope that it will be useful, but
12 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 ;; General Public License for more details.
16 ;; You should have received a copy of the GNU General Public License
17 ;; along with JSCL. If not, see <http://www.gnu.org/licenses/>.
21 (/debug "loading compiler.lisp!")
23 ;;; Translate the Lisp code to Javascript. It will compile the special
24 ;;; forms. Some primitive functions are compiled as special forms
25 ;;; too. The respective real functions are defined in the target (see
26 ;;; the beginning of this file) as well as some primitive functions.
28 (define-js-macro selfcall (&body body)
29 `(call (function () ,@body)))
31 (define-js-macro bool (expr)
32 `(if ,expr ,(convert t) ,(convert nil)))
34 (define-js-macro method-call (x method &rest args)
35 `(call (get ,x ,method) ,@args))
37 ;;; A Form can return a multiple values object calling VALUES, like
38 ;;; values(arg1, arg2, ...). It will work in any context, as well as
39 ;;; returning an individual object. However, if the special variable
40 ;;; `*multiple-value-p*' is NIL, is granted that only the primary
41 ;;; value will be used, so we can optimize to avoid the VALUES
43 (defvar *multiple-value-p* nil)
45 ;;; It is bound dinamically to the number of nested calls to
46 ;;; `convert'. Therefore, a form is being compiled as toplevel if it
48 (defvar *convert-level* -1)
65 (defun lookup-in-lexenv (name lexenv namespace)
66 (find name (ecase namespace
67 (variable (lexenv-variable lexenv))
68 (function (lexenv-function lexenv))
69 (block (lexenv-block lexenv))
70 (gotag (lexenv-gotag lexenv)))
73 (defun push-to-lexenv (binding lexenv namespace)
75 (variable (push binding (lexenv-variable lexenv)))
76 (function (push binding (lexenv-function lexenv)))
77 (block (push binding (lexenv-block lexenv)))
78 (gotag (push binding (lexenv-gotag lexenv)))))
80 (defun extend-lexenv (bindings lexenv namespace)
81 (let ((env (copy-lexenv lexenv)))
82 (dolist (binding (reverse bindings) env)
83 (push-to-lexenv binding env namespace))))
86 (defvar *environment* (make-lexenv))
87 (defvar *variable-counter* 0)
89 (defun gvarname (symbol)
90 (declare (ignore symbol))
91 (incf *variable-counter*)
92 (make-symbol (concat "v" (integer-to-string *variable-counter*))))
94 (defun translate-variable (symbol)
95 (awhen (lookup-in-lexenv symbol *environment* 'variable)
98 (defun extend-local-env (args)
99 (let ((new (copy-lexenv *environment*)))
100 (dolist (symbol args new)
101 (let ((b (make-binding :name symbol :type 'variable :value (gvarname symbol))))
102 (push-to-lexenv b new 'variable)))))
104 ;;; Toplevel compilations
105 (defvar *toplevel-compilations* nil)
107 (defun toplevel-compilation (string)
108 (push string *toplevel-compilations*))
110 (defun get-toplevel-compilations ()
111 (reverse *toplevel-compilations*))
113 (defun %compile-defmacro (name lambda)
114 (toplevel-compilation (convert `',name))
115 (let ((binding (make-binding :name name :type 'macro :value lambda)))
116 (push-to-lexenv binding *environment* 'function))
119 (defun global-binding (name type namespace)
120 (or (lookup-in-lexenv name *environment* namespace)
121 (let ((b (make-binding :name name :type type :value nil)))
122 (push-to-lexenv b *environment* namespace)
125 (defun claimp (symbol namespace claim)
126 (let ((b (lookup-in-lexenv symbol *environment* namespace)))
127 (and b (member claim (binding-declarations b)))))
129 (defun !proclaim (decl)
132 (dolist (name (cdr decl))
133 (let ((b (global-binding name 'variable 'variable)))
134 (push 'special (binding-declarations b)))))
136 (dolist (name (cdr decl))
137 (let ((b (global-binding name 'function 'function)))
138 (push 'notinline (binding-declarations b)))))
140 (dolist (name (cdr decl))
141 (let ((b (global-binding name 'variable 'variable)))
142 (push 'constant (binding-declarations b)))))))
145 (fset 'proclaim #'!proclaim)
147 (defun %define-symbol-macro (name expansion)
148 (let ((b (make-binding :name name :type 'macro :value expansion)))
149 (push-to-lexenv b *environment* 'variable)
153 (defmacro define-symbol-macro (name expansion)
154 `(%define-symbol-macro ',name ',expansion))
158 ;;; Report functions which are called but not defined
160 (defvar *fn-info* '())
167 (defun find-fn-info (symbol)
168 (let ((entry (find symbol *fn-info* :key #'fn-info-symbol)))
170 (setq entry (make-fn-info :symbol symbol))
171 (push entry *fn-info*))
174 (defun fn-info (symbol &key defined called)
175 (let ((info (find-fn-info symbol)))
177 (setf (fn-info-defined info) defined))
179 (setf (fn-info-called info) called))))
181 (defun report-undefined-functions ()
182 (dolist (info *fn-info*)
183 (let ((symbol (fn-info-symbol info)))
184 (when (and (fn-info-called info)
185 (not (fn-info-defined info)))
186 (warn "The function `~a' is undefined.~%" symbol))))
187 (setq *fn-info* nil))
193 (defvar *compilations* nil)
195 (defmacro define-compilation (name args &body body)
196 ;; Creates a new primitive `name' with parameters args and
197 ;; @body. The body can access to the local environment through the
198 ;; variable *ENVIRONMENT*.
199 `(push (list ',name (lambda ,args (block ,name ,@body)))
202 (define-compilation if (condition true &optional false)
203 `(if (!== ,(convert condition) ,(convert nil))
204 ,(convert true *multiple-value-p*)
205 ,(convert false *multiple-value-p*)))
207 (defvar *ll-keywords* '(&optional &rest &key))
209 (defun list-until-keyword (list)
210 (if (or (null list) (member (car list) *ll-keywords*))
212 (cons (car list) (list-until-keyword (cdr list)))))
214 (defun ll-section (keyword ll)
215 (list-until-keyword (cdr (member keyword ll))))
217 (defun ll-required-arguments (ll)
218 (list-until-keyword ll))
220 (defun ll-optional-arguments-canonical (ll)
221 (mapcar #'ensure-list (ll-section '&optional ll)))
223 (defun ll-optional-arguments (ll)
224 (mapcar #'car (ll-optional-arguments-canonical ll)))
226 (defun ll-rest-argument (ll)
227 (let ((rest (ll-section '&rest ll)))
229 (error "Bad lambda-list `~S'." ll))
232 (defun ll-keyword-arguments-canonical (ll)
233 (flet ((canonicalize (keyarg)
234 ;; Build a canonical keyword argument descriptor, filling
235 ;; the optional fields. The result is a list of the form
236 ;; ((keyword-name var) init-form svar).
237 (let ((arg (ensure-list keyarg)))
238 (cons (if (listp (car arg))
240 (list (intern (symbol-name (car arg)) "KEYWORD") (car arg)))
242 (mapcar #'canonicalize (ll-section '&key ll))))
244 (defun ll-keyword-arguments (ll)
245 (mapcar (lambda (keyarg) (second (first keyarg)))
246 (ll-keyword-arguments-canonical ll)))
248 (defun ll-svars (lambda-list)
251 (ll-keyword-arguments-canonical lambda-list)
252 (ll-optional-arguments-canonical lambda-list))))
253 (remove nil (mapcar #'third args))))
255 (defun lambda-name/docstring-wrapper (name docstring code)
256 (if (or name docstring)
259 ,(when name `(= (get func "fname") ,name))
260 ,(when docstring `(= (get func "docstring") ,docstring))
264 (defun lambda-check-argument-count
265 (n-required-arguments n-optional-arguments rest-p)
266 ;; Note: Remember that we assume that the number of arguments of a
267 ;; call is at least 1 (the values argument).
268 (let ((min n-required-arguments)
269 (max (if rest-p 'n/a (+ n-required-arguments n-optional-arguments))))
271 ;; Special case: a positive exact number of arguments.
272 (when (and (< 0 min) (eql min max))
273 (return `(call |checkArgs| |nargs| ,min)))
276 ,(when (< 0 min) `(call |checkArgsAtLeast| |nargs| ,min))
277 ,(when (numberp max) `(call |checkArgsAtMost| |nargs| ,max))))))
279 (defun compile-lambda-optional (ll)
280 (let* ((optional-arguments (ll-optional-arguments-canonical ll))
281 (n-required-arguments (length (ll-required-arguments ll)))
282 (n-optional-arguments (length optional-arguments)))
283 (when optional-arguments
286 (dotimes (idx n-optional-arguments)
287 (let ((arg (nth idx optional-arguments)))
288 (collect `(case ,(+ idx n-required-arguments)))
289 (collect `(= ,(translate-variable (car arg))
290 ,(convert (cadr arg))))
291 (collect (when (third arg)
292 `(= ,(translate-variable (third arg))
295 (collect '(break)))))))
297 (defun compile-lambda-rest (ll)
298 (let ((n-required-arguments (length (ll-required-arguments ll)))
299 (n-optional-arguments (length (ll-optional-arguments ll)))
300 (rest-argument (ll-rest-argument ll)))
302 (let ((js!rest (translate-variable rest-argument)))
304 (var (,js!rest ,(convert nil)))
306 (for ((= i (- |nargs| 1))
307 (>= i ,(+ n-required-arguments n-optional-arguments))
309 (= ,js!rest (object "car" (property |arguments| (+ i 2))
310 "cdr" ,js!rest))))))))
312 (defun compile-lambda-parse-keywords (ll)
313 (let ((n-required-arguments
314 (length (ll-required-arguments ll)))
315 (n-optional-arguments
316 (length (ll-optional-arguments ll)))
318 (ll-keyword-arguments-canonical ll)))
322 (dolist (keyword-argument keyword-arguments)
323 (destructuring-bind ((keyword-name var) &optional initform svar)
325 (declare (ignore keyword-name initform))
326 (collect `(var ,(translate-variable var)))
329 `(var (,(translate-variable svar)
330 ,(convert nil))))))))
333 ,(flet ((parse-keyword (keyarg)
334 (destructuring-bind ((keyword-name var) &optional initform svar) keyarg
335 ;; ((keyword-name var) init-form svar)
337 (for ((= i ,(+ n-required-arguments n-optional-arguments))
341 (if (=== (property |arguments| (+ i 2))
342 ,(convert keyword-name))
344 (= ,(translate-variable var)
345 (property |arguments| (+ i 3)))
346 ,(when svar `(= ,(translate-variable svar)
350 (= ,(translate-variable var) ,(convert initform)))))))
351 (when keyword-arguments
354 ,@(mapcar #'parse-keyword keyword-arguments))))
356 ;; Check for unknown keywords
357 ,(when keyword-arguments
359 (var (start ,(+ n-required-arguments n-optional-arguments)))
360 (if (== (% (- |nargs| start) 2) 1)
361 (throw "Odd number of keyword arguments."))
362 (for ((= i start) (< i |nargs|) (+= i 2))
363 (if (and ,@(mapcar (lambda (keyword-argument)
364 (destructuring-bind ((keyword-name var) &optional initform svar)
366 (declare (ignore var initform svar))
367 `(!== (property |arguments| (+ i 2)) ,(convert keyword-name))))
369 (throw (+ "Unknown keyword argument "
372 (property |arguments| (+ i 2))
375 (defun parse-lambda-list (ll)
376 (values (ll-required-arguments ll)
377 (ll-optional-arguments ll)
378 (ll-keyword-arguments ll)
379 (ll-rest-argument ll)))
381 ;;; Process BODY for declarations and/or docstrings. Return as
382 ;;; multiple values the BODY without docstrings or declarations, the
383 ;;; list of declaration forms and the docstring.
384 (defun parse-body (body &key declarations docstring)
385 (let ((value-declarations)
387 ;; Parse declarations
389 (do* ((rest body (cdr rest))
390 (form (car rest) (car rest)))
391 ((or (atom form) (not (eq (car form) 'declare)))
393 (push form value-declarations)))
397 (not (null (cdr body))))
398 (setq value-docstring (car body))
399 (setq body (cdr body)))
400 (values body value-declarations value-docstring)))
402 ;;; Compile a lambda function with lambda list LL and body BODY. If
403 ;;; NAME is given, it should be a constant string and it will become
404 ;;; the name of the function. If BLOCK is non-NIL, a named block is
405 ;;; created around the body. NOTE: No block (even anonymous) is
406 ;;; created if BLOCk is NIL.
407 (defun compile-lambda (ll body &key name block)
408 (multiple-value-bind (required-arguments
412 (parse-lambda-list ll)
413 (multiple-value-bind (body decls documentation)
414 (parse-body body :declarations t :docstring t)
415 (declare (ignore decls))
416 (let ((n-required-arguments (length required-arguments))
417 (n-optional-arguments (length optional-arguments))
418 (*environment* (extend-local-env
419 (append (ensure-list rest-argument)
424 (lambda-name/docstring-wrapper name documentation
425 `(function (|values| |nargs| ,@(mapcar (lambda (x)
426 (translate-variable x))
427 (append required-arguments optional-arguments)))
428 ;; Check number of arguments
429 ,(lambda-check-argument-count n-required-arguments
431 (or rest-argument keyword-arguments))
432 ,(compile-lambda-optional ll)
433 ,(compile-lambda-rest ll)
434 ,(compile-lambda-parse-keywords ll)
436 ,(let ((*multiple-value-p* t))
438 (convert-block `((block ,block ,@body)) t)
439 (convert-block body t)))))))))
442 (defun setq-pair (var val)
443 (unless (symbolp var)
444 (error "~a is not a symbol" var))
445 (let ((b (lookup-in-lexenv var *environment* 'variable)))
448 (eq (binding-type b) 'variable)
449 (not (member 'special (binding-declarations b)))
450 (not (member 'constant (binding-declarations b))))
451 `(= ,(binding-value b) ,(convert val)))
452 ((and b (eq (binding-type b) 'macro))
453 (convert `(setf ,var ,val)))
455 (convert `(set ',var ,val))))))
458 (define-compilation setq (&rest pairs)
461 (return-from setq (convert nil)))
467 (error "Odd pairs in SETQ"))
469 (push `,(setq-pair (car pairs) (cadr pairs)) result)
470 (setq pairs (cddr pairs)))))
471 `(progn ,@(reverse result))))
474 ;;; Compilation of literals an object dumping
476 ;;; BOOTSTRAP MAGIC: We record the macro definitions as lists during
477 ;;; the bootstrap. Once everything is compiled, we want to dump the
478 ;;; whole global environment to the output file to reproduce it in the
479 ;;; run-time. However, the environment must contain expander functions
480 ;;; rather than lists. We do not know how to dump function objects
481 ;;; itself, so we mark the list definitions with this object and the
482 ;;; compiler will be called when this object has to be dumped.
483 ;;; Backquote/unquote does a similar magic, but this use is exclusive.
485 ;;; Indeed, perhaps to compile the object other macros need to be
486 ;;; evaluated. For this reason we define a valid macro-function for
488 (defvar *magic-unquote-marker* (gensym "MAGIC-UNQUOTE"))
491 (setf (macro-function *magic-unquote-marker*)
492 (lambda (form &optional environment)
493 (declare (ignore environment))
496 (defvar *literal-table* nil)
497 (defvar *literal-counter* 0)
500 (incf *literal-counter*)
501 (make-symbol (concat "l" (integer-to-string *literal-counter*))))
503 (defun dump-symbol (symbol)
505 (let ((package (symbol-package symbol)))
506 (if (eq package (find-package "KEYWORD"))
507 `(new (call |Symbol| ,(dump-string (symbol-name symbol)) ,(dump-string (package-name package))))
508 `(new (call |Symbol| ,(dump-string (symbol-name symbol))))))
510 (let ((package (symbol-package symbol)))
512 `(new (call |Symbol| ,(dump-string (symbol-name symbol))))
513 (convert `(intern ,(symbol-name symbol) ,(package-name package))))))
515 (defun dump-cons (cons)
516 (let ((head (butlast cons))
519 ,@(mapcar (lambda (x) (literal x t)) head)
520 ,(literal (car tail) t)
521 ,(literal (cdr tail) t))))
523 (defun dump-array (array)
524 (let ((elements (vector-to-list array)))
525 (list-to-vector (mapcar #'literal elements))))
527 (defun dump-string (string)
528 `(call |make_lisp_string| ,string))
530 (defun literal (sexp &optional recursive)
532 ((integerp sexp) sexp)
534 ((characterp sexp) (string sexp))
536 (or (cdr (assoc sexp *literal-table* :test #'eql))
537 (let ((dumped (typecase sexp
538 (symbol (dump-symbol sexp))
539 (string (dump-string sexp))
541 ;; BOOTSTRAP MAGIC: See the root file
542 ;; jscl.lisp and the function
543 ;; `dump-global-environment' for futher
545 (if (eq (car sexp) *magic-unquote-marker*)
546 (convert (second sexp))
548 (array (dump-array sexp)))))
549 (if (and recursive (not (symbolp sexp)))
551 (let ((jsvar (genlit)))
552 (push (cons sexp jsvar) *literal-table*)
553 (toplevel-compilation `(var (,jsvar ,dumped)))
554 (when (keywordp sexp)
555 (toplevel-compilation `(= (get ,jsvar "value") ,jsvar)))
559 (define-compilation quote (sexp)
562 (define-compilation %while (pred &rest body)
564 (while (!== ,(convert pred) ,(convert nil))
565 ,(convert-block body))
566 (return ,(convert nil))))
568 (define-compilation function (x)
570 ((and (listp x) (eq (car x) 'lambda))
571 (compile-lambda (cadr x) (cddr x)))
572 ((and (listp x) (eq (car x) 'named-lambda))
573 (destructuring-bind (name ll &rest body) (cdr x)
574 (compile-lambda ll body
575 :name (symbol-name name)
578 (let ((b (lookup-in-lexenv x *environment* 'function)))
581 (convert `(symbol-function ',x)))))))
583 (defun make-function-binding (fname)
584 (make-binding :name fname :type 'function :value (gvarname fname)))
586 (defun compile-function-definition (list)
587 (compile-lambda (car list) (cdr list)))
589 (defun translate-function (name)
590 (let ((b (lookup-in-lexenv name *environment* 'function)))
591 (and b (binding-value b))))
593 (define-compilation flet (definitions &rest body)
594 (let* ((fnames (mapcar #'car definitions))
595 (cfuncs (mapcar (lambda (def)
596 (compile-lambda (cadr def)
601 (extend-lexenv (mapcar #'make-function-binding fnames)
604 `(call (function ,(mapcar #'translate-function fnames)
605 ,(convert-block body t))
608 (define-compilation labels (definitions &rest body)
609 (let* ((fnames (mapcar #'car definitions))
611 (extend-lexenv (mapcar #'make-function-binding fnames)
615 ,@(mapcar (lambda (func)
616 `(var (,(translate-function (car func))
617 ,(compile-lambda (cadr func)
618 `((block ,(car func) ,@(cddr func)))))))
620 ,(convert-block body t))))
623 ;;; Was the compiler invoked from !compile-file?
624 (defvar *compiling-file* nil)
626 ;;; NOTE: It is probably wrong in many cases but we will not use this
627 ;;; heavily. Please, do not rely on wrong cases of this
629 (define-compilation eval-when (situations &rest body)
630 ;; TODO: Error checking
632 ;; Toplevel form compiled by !compile-file.
633 ((and *compiling-file* (zerop *convert-level*))
634 ;; If the situation `compile-toplevel' is given. The form is
635 ;; evaluated at compilation-time.
636 (when (find :compile-toplevel situations)
637 (eval (cons 'progn body)))
638 ;; `load-toplevel' is given, then just compile the subforms as usual.
639 (when (find :load-toplevel situations)
640 (convert-toplevel `(progn ,@body) *multiple-value-p*)))
641 ((find :execute situations)
642 (convert `(progn ,@body) *multiple-value-p*))
646 (defmacro define-transformation (name args form)
647 `(define-compilation ,name ,args
650 (define-compilation progn (&rest body)
651 (if (null (cdr body))
652 (convert (car body) *multiple-value-p*)
654 ,@(append (mapcar #'convert (butlast body))
655 (list (convert (car (last body)) t))))))
657 (define-compilation macrolet (definitions &rest body)
658 (let ((*environment* (copy-lexenv *environment*)))
659 (dolist (def definitions)
660 (destructuring-bind (name lambda-list &body body) def
661 (let ((binding (make-binding :name name :type 'macro :value
662 (let ((g!form (gensym)))
664 (destructuring-bind ,lambda-list ,g!form
666 (push-to-lexenv binding *environment* 'function))))
667 (convert `(progn ,@body) *multiple-value-p*)))
670 (defun special-variable-p (x)
671 (and (claimp x 'variable 'special) t))
673 ;;; Wrap CODE to restore the symbol values of the dynamic
674 ;;; bindings. BINDINGS is a list of pairs of the form
675 ;;; (SYMBOL . PLACE), where PLACE is a Javascript variable
676 ;;; name to initialize the symbol value and where to stored
678 (defun let-binding-wrapper (bindings body)
679 (when (null bindings)
680 (return-from let-binding-wrapper body))
685 (let ((s (convert `',(car b))))
686 (collect `(= tmp (get ,s "value")))
687 (collect `(= (get ,s "value") ,(cdr b)))
688 (collect `(= ,(cdr b) tmp)))))
693 (let ((s (convert `(quote ,(car b)))))
694 (collect `(= (get ,s "value") ,(cdr b)))))))))
696 (define-compilation let (bindings &rest body)
697 (let* ((bindings (mapcar #'ensure-list bindings))
698 (variables (mapcar #'first bindings))
699 (cvalues (mapcar #'convert (mapcar #'second bindings)))
700 (*environment* (extend-local-env (remove-if #'special-variable-p variables)))
702 `(call (function ,(mapcar (lambda (x)
703 (if (special-variable-p x)
704 (let ((v (gvarname x)))
705 (push (cons x v) dynamic-bindings)
707 (translate-variable x)))
709 ,(let ((body (convert-block body t t)))
710 `,(let-binding-wrapper dynamic-bindings body)))
714 ;;; Return the code to initialize BINDING, and push it extending the
715 ;;; current lexical environment if the variable is not special.
716 (defun let*-initialize-value (binding)
717 (let ((var (first binding))
718 (value (second binding)))
719 (if (special-variable-p var)
720 (convert `(setq ,var ,value))
721 (let* ((v (gvarname var))
722 (b (make-binding :name var :type 'variable :value v)))
723 (prog1 `(var (,v ,(convert value)))
724 (push-to-lexenv b *environment* 'variable))))))
726 ;;; Wrap BODY to restore the symbol values of SYMBOLS after body. It
727 ;;; DOES NOT generate code to initialize the value of the symbols,
728 ;;; unlike let-binding-wrapper.
729 (defun let*-binding-wrapper (symbols body)
731 (return-from let*-binding-wrapper body))
732 (let ((store (mapcar (lambda (s) (cons s (gvarname s)))
733 (remove-if-not #'special-variable-p symbols))))
736 ,@(mapcar (lambda (b)
737 (let ((s (convert `(quote ,(car b)))))
738 `(var (,(cdr b) (get ,s "value")))))
742 ,@(mapcar (lambda (b)
743 (let ((s (convert `(quote ,(car b)))))
744 `(= (get ,s "value") ,(cdr b))))
747 (define-compilation let* (bindings &rest body)
748 (let ((bindings (mapcar #'ensure-list bindings))
749 (*environment* (copy-lexenv *environment*)))
750 (let ((specials (remove-if-not #'special-variable-p (mapcar #'first bindings)))
752 ,@(mapcar #'let*-initialize-value bindings)
753 ,(convert-block body t t))))
754 `(selfcall ,(let*-binding-wrapper specials body)))))
757 (define-compilation block (name &rest body)
758 ;; We use Javascript exceptions to implement non local control
759 ;; transfer. Exceptions has dynamic scoping, so we use a uniquely
760 ;; generated object to identify the block. The instance of a empty
761 ;; array is used to distinguish between nested dynamic Javascript
762 ;; exceptions. See https://github.com/davazp/jscl/issues/64 for
764 (let* ((idvar (gvarname name))
765 (b (make-binding :name name :type 'block :value idvar)))
766 (when *multiple-value-p*
767 (push 'multiple-value (binding-declarations b)))
768 (let* ((*environment* (extend-lexenv (list b) *environment* 'block))
769 (cbody (convert-block body t)))
770 (if (member 'used (binding-declarations b))
776 (if (and (instanceof cf |BlockNLX|) (== (get cf "id") ,idvar))
777 ,(if *multiple-value-p*
778 `(return (method-call |values| "apply" this (call |forcemv| (get cf "values"))))
779 `(return (get cf "values")))
781 `(selfcall ,cbody)))))
783 (define-compilation return-from (name &optional value)
784 (let* ((b (lookup-in-lexenv name *environment* 'block))
785 (multiple-value-p (member 'multiple-value (binding-declarations b))))
787 (error "Return from unknown block `~S'." (symbol-name name)))
788 (push 'used (binding-declarations b))
789 ;; The binding value is the name of a variable, whose value is the
790 ;; unique identifier of the block as exception. We can't use the
791 ;; variable name itself, because it could not to be unique, so we
792 ;; capture it in a closure.
794 ,(when multiple-value-p `(var (|values| |mv|)))
795 (throw (new (call |BlockNLX|
797 ,(convert value multiple-value-p)
798 ,(symbol-name name)))))))
800 (define-compilation catch (id &rest body)
801 (let ((values (if *multiple-value-p* '|values| '|pv|)))
803 (var (id ,(convert id)))
805 ,(convert-block body t))
807 (if (and (instanceof cf |CatchNLX|) (== (get cf "id") id))
808 (return (method-call ,values "apply" this (call |forcemv| (get cf "values"))))
811 (define-compilation throw (id value)
813 (var (|values| |mv|))
814 (throw (new (call |CatchNLX| ,(convert id) ,(convert value t))))))
818 (or (integerp x) (symbolp x)))
820 (defun declare-tagbody-tags (tbidx body)
821 (let* ((go-tag-counter 0)
823 (mapcar (lambda (label)
824 (let ((tagidx (incf go-tag-counter)))
825 (make-binding :name label :type 'gotag :value (list tbidx tagidx))))
826 (remove-if-not #'go-tag-p body))))
827 (extend-lexenv bindings *environment* 'gotag)))
829 (define-compilation tagbody (&rest body)
830 ;; Ignore the tagbody if it does not contain any go-tag. We do this
831 ;; because 1) it is easy and 2) many built-in forms expand to a
832 ;; implicit tagbody, so we save some space.
833 (unless (some #'go-tag-p body)
834 (return-from tagbody (convert `(progn ,@body nil))))
835 ;; The translation assumes the first form in BODY is a label
836 (unless (go-tag-p (car body))
837 (push (gensym "START") body))
838 ;; Tagbody compilation
839 (let ((branch (gvarname 'branch))
840 (tbidx (gvarname 'tbidx)))
841 (let ((*environment* (declare-tagbody-tags tbidx body))
843 (let ((b (lookup-in-lexenv (first body) *environment* 'gotag)))
844 (setq initag (second (binding-value b))))
846 ;; TAGBODY branch to take
847 (var (,branch ,initag))
854 (collect `(case ,initag))
855 (dolist (form (cdr body))
857 (let ((b (lookup-in-lexenv form *environment* 'gotag)))
858 (collect `(case ,(second (binding-value b)))))
859 (collect (convert form)))))
863 (if (and (instanceof jump |TagNLX|) (== (get jump "id") ,tbidx))
864 (= ,branch (get jump "label"))
866 (return ,(convert nil))))))
868 (define-compilation go (label)
869 (let ((b (lookup-in-lexenv label *environment* 'gotag)))
871 (error "Unknown tag `~S'" label))
873 (throw (new (call |TagNLX|
874 ,(first (binding-value b))
875 ,(second (binding-value b))))))))
877 (define-compilation unwind-protect (form &rest clean-up)
879 (var (ret ,(convert nil)))
881 (= ret ,(convert form)))
883 ,(convert-block clean-up))
886 (define-compilation multiple-value-call (func-form &rest forms)
888 (var (func ,(convert func-form)))
889 (var (args ,(vector (if *multiple-value-p* '|values| '|pv|) 0)))
892 (var (|values| |mv|))
897 (collect `(= vs ,(convert form t)))
898 (collect `(if (and (=== (typeof vs) "object")
899 (in "multiple-value" vs))
900 (= args (method-call args "concat" vs))
901 (method-call args "push" vs))))))
902 (= (property args 1) (- (property args "length") 2))
903 (return (method-call func "apply" |window| args))))))
905 (define-compilation multiple-value-prog1 (first-form &rest forms)
907 (var (args ,(convert first-form *multiple-value-p*)))
908 (progn ,@(mapcar #'convert forms))
911 (define-transformation backquote (form)
912 (bq-completely-process form))
917 (defvar *builtins* nil)
919 (defmacro define-raw-builtin (name args &body body)
920 ;; Creates a new primitive function `name' with parameters args and
921 ;; @body. The body can access to the local environment through the
922 ;; variable *ENVIRONMENT*.
923 `(push (list ',name (lambda ,args (block ,name ,@body)))
926 (defmacro define-builtin (name args &body body)
927 `(define-raw-builtin ,name ,args
928 (let ,(mapcar (lambda (arg) `(,arg (convert ,arg))) args)
931 ;;; VARIABLE-ARITY compiles variable arity operations. ARGS stands for
932 ;;; a variable which holds a list of forms. It will compile them and
933 ;;; store the result in some Javascript variables. BODY is evaluated
934 ;;; with ARGS bound to the list of these variables to generate the
935 ;;; code which performs the transformation on these variables.
936 (defun variable-arity-call (args function)
938 (error "ARGS must be a non-empty list"))
943 (if (or (floatp x) (numberp x))
945 (let ((v (make-symbol (concat "x" (integer-to-string (incf counter))))))
947 (push `(var (,v ,(convert x)))
949 (push `(if (!= (typeof ,v) "number")
950 (throw "Not a number!"))
953 (progn ,@(reverse prelude))
954 ,(funcall function (reverse fargs)))))
957 (defmacro variable-arity (args &body body)
958 (unless (symbolp args)
959 (error "`~S' is not a symbol." args))
960 `(variable-arity-call ,args (lambda (,args) `(return ,,@body))))
962 (define-raw-builtin + (&rest numbers)
965 (variable-arity numbers
968 (define-raw-builtin - (x &rest others)
969 (let ((args (cons x others)))
970 (variable-arity args `(- ,@args))))
972 (define-raw-builtin * (&rest numbers)
975 (variable-arity numbers `(* ,@numbers))))
977 (define-raw-builtin / (x &rest others)
978 (let ((args (cons x others)))
982 (reduce (lambda (x y) `(/ ,x ,y))
985 (define-builtin mod (x y)
989 (defun comparison-conjuntion (vars op)
994 `(,op ,(car vars) ,(cadr vars)))
996 `(and (,op ,(car vars) ,(cadr vars))
997 ,(comparison-conjuntion (cdr vars) op)))))
999 (defmacro define-builtin-comparison (op sym)
1000 `(define-raw-builtin ,op (x &rest args)
1001 (let ((args (cons x args)))
1002 (variable-arity args
1003 `(bool ,(comparison-conjuntion args ',sym))))))
1005 (define-builtin-comparison > >)
1006 (define-builtin-comparison < <)
1007 (define-builtin-comparison >= >=)
1008 (define-builtin-comparison <= <=)
1009 (define-builtin-comparison = ==)
1010 (define-builtin-comparison /= !=)
1012 (define-builtin numberp (x)
1013 `(bool (== (typeof ,x) "number")))
1015 (define-builtin floor (x)
1016 `(method-call |Math| "floor" ,x))
1018 (define-builtin expt (x y)
1019 `(method-call |Math| "pow" ,x ,y))
1021 (define-builtin float-to-string (x)
1022 `(call |make_lisp_string| (method-call ,x |toString|)))
1024 (define-builtin cons (x y)
1025 `(object "car" ,x "cdr" ,y))
1027 (define-builtin consp (x)
1030 (return (bool (and (== (typeof tmp) "object")
1033 (define-builtin car (x)
1036 (return (if (=== tmp ,(convert nil))
1040 (define-builtin cdr (x)
1043 (return (if (=== tmp ,(convert nil))
1047 (define-builtin rplaca (x new)
1050 (= (get tmp "car") ,new)
1053 (define-builtin rplacd (x new)
1056 (= (get tmp "cdr") ,new)
1059 (define-builtin symbolp (x)
1060 `(bool (instanceof ,x |Symbol|)))
1062 (define-builtin make-symbol (name)
1063 `(new (call |Symbol| ,name)))
1065 (define-builtin symbol-name (x)
1068 (define-builtin set (symbol value)
1069 `(= (get ,symbol "value") ,value))
1071 (define-builtin fset (symbol value)
1072 `(= (get ,symbol "fvalue") ,value))
1074 (define-builtin boundp (x)
1075 `(bool (!== (get ,x "value") undefined)))
1077 (define-builtin fboundp (x)
1078 `(bool (!== (get ,x "fvalue") undefined)))
1080 (define-builtin symbol-value (x)
1083 (value (get symbol "value")))
1084 (if (=== value undefined)
1085 (throw (+ "Variable `" (call |xstring| (get symbol "name")) "' is unbound.")))
1088 (define-builtin symbol-function (x)
1091 (func (get symbol "fvalue")))
1092 (if (=== func undefined)
1093 (throw (+ "Function `" (call |xstring| (get symbol "name")) "' is undefined.")))
1096 (define-builtin lambda-code (x)
1097 `(call |make_lisp_string| (method-call ,x "toString")))
1099 (define-builtin eq (x y)
1100 `(bool (=== ,x ,y)))
1102 (define-builtin char-code (x)
1103 `(call |char_to_codepoint| ,x))
1105 (define-builtin code-char (x)
1106 `(call |char_from_codepoint| ,x))
1108 (define-builtin characterp (x)
1112 (and (== (typeof x) "string")
1113 (or (== (get x "length") 1)
1114 (== (get x "length") 2)))))))
1116 (define-builtin char-upcase (x)
1117 `(call |safe_char_upcase| ,x))
1119 (define-builtin char-downcase (x)
1120 `(call |safe_char_downcase| ,x))
1122 (define-builtin stringp (x)
1126 (and (and (===(typeof x) "object")
1128 (== (get x "stringp") 1))))))
1130 (define-raw-builtin funcall (func &rest args)
1132 (var (f ,(convert func)))
1133 (return (call (if (=== (typeof f) "function")
1136 ,@(list* (if *multiple-value-p* '|values| '|pv|)
1138 (mapcar #'convert args))))))
1140 (define-raw-builtin apply (func &rest args)
1143 (let ((args (butlast args))
1144 (last (car (last args))))
1146 (var (f ,(convert func)))
1147 (var (args ,(list-to-vector
1148 (list* (if *multiple-value-p* '|values| '|pv|)
1150 (mapcar #'convert args)))))
1151 (var (tail ,(convert last)))
1152 (while (!= tail ,(convert nil))
1153 (method-call args "push" (get tail "car"))
1154 (post++ (property args 1))
1155 (= tail (get tail "cdr")))
1156 (return (method-call (if (=== (typeof f) "function")
1163 (define-builtin js-eval (string)
1164 (if *multiple-value-p*
1166 (var (v (call |globalEval| (call |xstring| ,string))))
1167 (return (method-call |values| "apply" this (call |forcemv| v))))
1168 `(call |globalEval| (call |xstring| ,string))))
1170 (define-builtin %throw (string)
1171 `(selfcall (throw ,string)))
1173 (define-builtin functionp (x)
1174 `(bool (=== (typeof ,x) "function")))
1176 (define-builtin /debug (x)
1177 `(method-call |console| "log" (call |xstring| ,x)))
1180 ;;; Storage vectors. They are used to implement arrays and (in the
1181 ;;; future) structures.
1183 (define-builtin storage-vector-p (x)
1186 (return (bool (and (=== (typeof x) "object") (in "length" x))))))
1188 (define-builtin make-storage-vector (n)
1191 (= (get r "length") ,n)
1194 (define-builtin storage-vector-size (x)
1197 (define-builtin resize-storage-vector (vector new-size)
1198 `(= (get ,vector "length") ,new-size))
1200 (define-builtin storage-vector-ref (vector n)
1202 (var (x (property ,vector ,n)))
1203 (if (=== x undefined) (throw "Out of range."))
1206 (define-builtin storage-vector-set (vector n value)
1210 (if (or (< i 0) (>= i (get x "length")))
1211 (throw "Out of range."))
1212 (return (= (property x i) ,value))))
1214 (define-builtin concatenate-storage-vector (sv1 sv2)
1217 (var (r (method-call sv1 "concat" ,sv2)))
1218 (= (get r "type") (get sv1 "type"))
1219 (= (get r "stringp") (get sv1 "stringp"))
1222 (define-builtin get-internal-real-time ()
1223 `(method-call (new (call |Date|)) "getTime"))
1225 (define-builtin values-array (array)
1226 (if *multiple-value-p*
1227 `(method-call |values| "apply" this ,array)
1228 `(method-call |pv| "apply" this ,array)))
1230 (define-raw-builtin values (&rest args)
1231 (if *multiple-value-p*
1232 `(call |values| ,@(mapcar #'convert args))
1233 `(call |pv| ,@(mapcar #'convert args))))
1237 (define-builtin new ()
1240 (define-raw-builtin oget* (object key &rest keys)
1243 (var (tmp (property ,(convert object) (call |xstring| ,(convert key)))))
1244 ,@(mapcar (lambda (key)
1246 (if (=== tmp undefined) (return ,(convert nil)))
1247 (= tmp (property tmp (call |xstring| ,(convert key))))))
1249 (return (if (=== tmp undefined) ,(convert nil) tmp))))
1251 (define-raw-builtin oset* (value object key &rest keys)
1252 (let ((keys (cons key keys)))
1255 (var (obj ,(convert object)))
1256 ,@(mapcar (lambda (key)
1258 (= obj (property obj (call |xstring| ,(convert key))))
1259 (if (=== obj undefined)
1260 (throw "Impossible to set object property."))))
1263 (= (property obj (call |xstring| ,(convert (car (last keys)))))
1265 (return (if (=== tmp undefined)
1269 (define-raw-builtin oget (object key &rest keys)
1270 `(call |js_to_lisp| ,(convert `(oget* ,object ,key ,@keys))))
1272 (define-raw-builtin oset (value object key &rest keys)
1273 (convert `(oset* (lisp-to-js ,value) ,object ,key ,@keys)))
1275 (define-builtin objectp (x)
1276 `(bool (=== (typeof ,x) "object")))
1278 (define-builtin lisp-to-js (x) `(call |lisp_to_js| ,x))
1279 (define-builtin js-to-lisp (x) `(call |js_to_lisp| ,x))
1282 (define-builtin in (key object)
1283 `(bool (in (call |xstring| ,key) ,object)))
1285 (define-builtin delete-property (key object)
1287 (delete (property ,object (call |xstring| ,key)))))
1289 (define-builtin map-for-in (function object)
1292 (g (if (=== (typeof f) "function") f (get f "fvalue")))
1295 (call g ,(if *multiple-value-p* '|values| '|pv|) 1 (property o key)))
1296 (return ,(convert nil))))
1298 (define-compilation %js-vref (var)
1299 `(call |js_to_lisp| ,(make-symbol var)))
1301 (define-compilation %js-vset (var val)
1302 `(= ,(make-symbol var) (call |lisp_to_js| ,(convert val))))
1304 (define-setf-expander %js-vref (var)
1305 (let ((new-value (gensym)))
1306 (unless (stringp var)
1307 (error "`~S' is not a string." var))
1311 `(%js-vset ,var ,new-value)
1316 (defvar *macroexpander-cache*
1317 (make-hash-table :test #'eq))
1319 (defun !macro-function (symbol)
1320 (unless (symbolp symbol)
1321 (error "`~S' is not a symbol." symbol))
1322 (let ((b (lookup-in-lexenv symbol *environment* 'function)))
1323 (if (and b (eq (binding-type b) 'macro))
1324 (let ((expander (binding-value b)))
1327 ((gethash b *macroexpander-cache*)
1328 (setq expander (gethash b *macroexpander-cache*)))
1330 (let ((compiled (eval expander)))
1331 ;; The list representation are useful while
1332 ;; bootstrapping, as we can dump the definition of the
1333 ;; macros easily, but they are slow because we have to
1334 ;; evaluate them and compile them now and again. So, let
1335 ;; us replace the list representation version of the
1336 ;; function with the compiled one.
1338 #+jscl (setf (binding-value b) compiled)
1339 #-jscl (setf (gethash b *macroexpander-cache*) compiled)
1340 (setq expander compiled))))
1344 (defun !macroexpand-1 (form)
1347 (let ((b (lookup-in-lexenv form *environment* 'variable)))
1348 (if (and b (eq (binding-type b) 'macro))
1349 (values (binding-value b) t)
1350 (values form nil))))
1351 ((and (consp form) (symbolp (car form)))
1352 (let ((macrofun (!macro-function (car form))))
1354 (values (funcall macrofun (cdr form)) t)
1355 (values form nil))))
1357 (values form nil))))
1359 (defun compile-funcall (function args)
1360 (let* ((arglist (list* (if *multiple-value-p* '|values| '|pv|)
1362 (mapcar #'convert args))))
1363 (unless (or (symbolp function)
1364 (and (consp function)
1365 (member (car function) '(lambda oget))))
1366 (error "Bad function designator `~S'" function))
1368 ((translate-function function)
1369 `(call ,(translate-function function) ,@arglist))
1370 ((and (symbolp function)
1371 #+jscl (eq (symbol-package function) (find-package "COMMON-LISP"))
1373 (fn-info function :called t)
1374 `(method-call ,(convert `',function) "fvalue" ,@arglist))
1377 `(call ,(convert `#',function) ,@arglist))
1378 ((and (consp function) (eq (car function) 'lambda))
1379 `(call ,(convert `(function ,function)) ,@arglist))
1380 ((and (consp function) (eq (car function) 'oget))
1382 (call ,(reduce (lambda (obj p)
1383 `(property ,obj (call |xstring| ,p)))
1384 (mapcar #'convert (cdr function)))
1385 ,@(mapcar (lambda (s)
1386 `(call |lisp_to_js| ,(convert s)))
1389 (error "Bad function descriptor")))))
1391 (defun convert-block (sexps &optional return-last-p decls-allowed-p)
1392 (multiple-value-bind (sexps decls)
1393 (parse-body sexps :declarations decls-allowed-p)
1394 (declare (ignore decls))
1397 ,@(mapcar #'convert (butlast sexps))
1398 (return ,(convert (car (last sexps)) *multiple-value-p*)))
1399 `(progn ,@(mapcar #'convert sexps)))))
1401 (defun convert (sexp &optional multiple-value-p)
1402 (multiple-value-bind (sexp expandedp) (!macroexpand-1 sexp)
1404 (return-from convert (convert sexp multiple-value-p)))
1405 ;; The expression has been macroexpanded. Now compile it!
1406 (let ((*multiple-value-p* multiple-value-p)
1407 (*convert-level* (1+ *convert-level*)))
1410 (let ((b (lookup-in-lexenv sexp *environment* 'variable)))
1412 ((and b (not (member 'special (binding-declarations b))))
1414 ((or (keywordp sexp)
1415 (and b (member 'constant (binding-declarations b))))
1416 `(get ,(convert `',sexp) "value"))
1418 (convert `(symbol-value ',sexp))))))
1419 ((or (integerp sexp) (floatp sexp) (characterp sexp) (stringp sexp) (arrayp sexp))
1422 (let ((name (car sexp))
1426 ((assoc name *compilations*)
1427 (let ((comp (second (assoc name *compilations*))))
1429 ;; Built-in functions
1430 ((and (assoc name *builtins*)
1431 (not (claimp name 'function 'notinline)))
1432 (let ((comp (second (assoc name *builtins*))))
1435 (compile-funcall name args)))))
1437 (error "How should I compile `~S'?" sexp))))))
1440 (defvar *compile-print-toplevels* nil)
1442 (defun truncate-string (string &optional (width 60))
1443 (let ((n (or (position #\newline string)
1444 (min width (length string)))))
1445 (subseq string 0 n)))
1447 (defun convert-toplevel (sexp &optional multiple-value-p)
1448 ;; Macroexpand sexp as much as possible
1449 (multiple-value-bind (sexp expandedp) (!macroexpand-1 sexp)
1451 (return-from convert-toplevel (convert-toplevel sexp multiple-value-p))))
1452 ;; Process as toplevel
1453 (let ((*convert-level* -1)
1454 (*toplevel-compilations* nil))
1456 ;; Non-empty toplevel progn
1458 (eq (car sexp) 'progn)
1461 ,@(mapcar (lambda (s) (convert-toplevel s t))
1464 (when *compile-print-toplevels*
1465 (let ((form-string (prin1-to-string sexp)))
1466 (format t "Compiling ~a..." (truncate-string form-string))))
1467 (let ((code (convert sexp multiple-value-p)))
1469 ,@(get-toplevel-compilations)
1472 (defun compile-toplevel (sexp &optional multiple-value-p)
1473 (with-output-to-string (*standard-output*)
1474 (js (convert-toplevel sexp multiple-value-p))))